<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.4.5) -->


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

<!ENTITY SELF "RFCthis">
]>

<?rfc rfcedstyle="yes"?>
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-suit-report-22" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="SUIT Reports">Secure Reporting of SUIT Update Status</title>

    <author initials="B." surname="Moran" fullname="Brendan Moran">
      <organization>Arm Limited</organization>
      <address>
        <email>brendan.moran.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="H." surname="Birkholz" fullname="Henk Birkholz">
      <organization abbrev="Fraunhofer SIT">Fraunhofer SIT</organization>
      <address>
        <postal>
          <street>Rheinstrasse 75</street>
          <city>Darmstadt</city>
          <code>64295</code>
          <country>Germany</country>
        </postal>
        <email>henk.birkholz@ietf.contact</email>
      </address>
    </author>

    <date year="2026" month="June" day="22"/>

    <area>Security</area>
    <workgroup>SUIT</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<?line 62?>

<t>The Software Update for the Internet of Things (SUIT) manifest provides
a way for many different update and boot
workflows to be described by a common format.
This document specifies a lightweight feedback mechanism that
allows a developer in possession of a manifest to reconstruct the
decisions made and actions performed by a manifest processor.</t>



    </abstract>



  </front>

  <middle>


<?line 71?>

<section anchor="introduction"><name>Introduction</name>

<t>This document specifies a
logging container, specific to Software Update for the Internet of Things (SUIT) Manifests (<xref target="I-D.ietf-suit-manifest"/>)
that creates a lightweight feedback mechanism for
developers in the event that an update or boot fails in the manifest
processor. In this way, it provides the necessary link between the
Status Tracker Client and the Status Tracker Server as defined in
<xref section="2.3" sectionFormat="of" target="RFC9019"/>.</t>

<t>A SUIT Manifest Processor can fail to install or boot an update for many
reasons. Frequently, the error codes generated by such systems fail to
provide developers with enough information to find root causes and
produce corrective actions, resulting in extra effort to reproduce
failures. Logging the results of each SUIT command can simplify this
process.</t>

<t>While it is possible to report the results of SUIT commands through
existing logging or attestation mechanisms, this comes with several
drawbacks:</t>

<t><list style="symbols">
  <t>data inflation, particularly when designed for text-based logging</t>
  <t>missing information elements</t>
  <t>missing support for multiple components</t>
</list></t>

<t>The CBOR objects defined in this document allow devices to:</t>

<t><list style="symbols">
  <t>report a trace of how an update was performed</t>
  <t>report expected vs. actual values for critical checks</t>
  <t>describe the installation of complex multi-component architectures</t>
  <t>describe the measured properties of a system</t>
  <t>report the exact reason for a parsing failure</t>
</list></t>

</section>
<section anchor="terminology"><name>Conventions and Terminology</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<?line -18?>

<t>The terms "Author", "Recipient", and "Manifest" are defined in 
<xref section="2" sectionFormat="of" target="I-D.ietf-suit-manifest"/>.</t>

<t>Additionally, this document uses the term
Boot: initialization of an executable image. Although this
document refers to boot, any boot-specific operations described
are equally applicable to starting an executable in an OS context.</t>

<t>The term "Reporting Engine" is used as a conceptual function that
collects reporting information from a Manifest Processor and decides
whether to emit report output. A Reporting Engine is not required to be
a separate implementation component. Implementations may expose this
function through one or more internal APIs. This document specifies the
report format and externally observable semantics; it does not specify a
mandatory local API.</t>

</section>
<section anchor="suit-record"><name>The SUIT_Record</name>

<t>The SUIT_Record is a record of a decision taken by the Manifest Processor.
It contains the information that the Manifest Processor used to make the
decision. The decision can be inferred from this information, so it is not
included.
If the developer has a copy of the
manifest, then they need little information to reconstruct what the
manifest processor has done. They need any data that influences
the control flow of the manifest. The manifest only supports the
following control flow primitives:</t>

<t><list style="symbols">
  <t>Set Component</t>
  <t>Set/Override Parameters</t>
  <t>Try-Each</t>
  <t>Run Sequence</t>
  <t>Conditions</t>
</list></t>

<t>Of these, only conditions change the behavior of the processor from the
default, and then only when the condition fails.</t>

<t>To reconstruct the flow of a manifest, a developer needs
a list of metadata about failed conditions:</t>

<t><list style="symbols">
  <t>the current manifest</t>
  <t>the current Command Sequence (<xref section="5.3.3" sectionFormat="of" target="I-D.ietf-suit-manifest"/>)</t>
  <t>the offset into the current Command Sequence</t>
  <t>the current component index</t>
  <t>the "reason" for failure</t>
</list></t>

<t>Most conditions compare a parameter to an actual value, so the "reason"
is typically the actual value.</t>

<t>Since it is possible that a non-condition command (directive) may fail in an
exceptional circumstance,
a failure code for a non condition command must be communicated to the developer. However,
a failed directive will terminate processing of the manifest. To accommodate
for a failed command and for explicit "completion," an additional "result"
element is included as well; however, this is included in the SUIT_Report (<xref target="suit-report"/>).
In the case of a command failure,
the failure reason is typically a numeric error code. However, these error
codes need to be standardised in order to be useful.</t>

<t>This approach effectively compacts the log of operations taken using the SUIT Manifest
as a dictionary. This enables a full reconstruction of the log using a matching
decompaction tool. The following CDDL (<xref target="RFC8610"/>) shows the structure of a SUIT_Record.</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Record = [
    suit-record-manifest-id        : [* uint ],
    suit-record-manifest-section   : int,
    suit-record-section-offset     : uint,
    suit-record-component-index    : uint,
    suit-record-properties         : {*$$SUIT_Parameters},
    * $$SUIT_Record_Extensions
]
]]></sourcecode></figure>

<t>suit-record-manifest-id identifies the manifest whose execution
produced the record. The manifest id is a list of integers that form a
walk of the manifest dependency tree, starting at the root manifest. An
empty list indicates the root manifest. If the list is not empty, each
integer is the Component Index, as defined for Set Component Index in
<xref section="8.4.10.1" sectionFormat="of" target="I-D.ietf-suit-manifest"/>, that selected a
dependency manifest from the manifest identified by the preceding path
elements. The final integer identifies the dependency manifest whose
execution produced the record.</t>

<t>suit-record-manifest-id and suit-record-component-index therefore refer
to different index domains. Each element of suit-record-manifest-id is a
Component Index that identifies a dependency envelope as a component of
the manifest at the previous level of the dependency tree.
suit-record-component-index is the current Component Index within the
manifest identified by suit-record-manifest-id.</t>

<t>For example, suppose that the root manifest has 3 dependency
components and each of those dependency manifests has 2 dependency
components of its own:</t>

<t><list style="symbols">
  <t>Root  <list style="symbols">
      <t>Dependency A (Component Index 0 in Root)      <list style="symbols">
          <t>Dependency AA (Component Index 0 in Dependency A)</t>
          <t>Dependency AB (Component Index 1 in Dependency A)</t>
        </list></t>
      <t>Dependency B (Component Index 1 in Root)      <list style="symbols">
          <t>Dependency BA (Component Index 0 in Dependency B)</t>
          <t>Dependency BB (Component Index 1 in Dependency B)</t>
        </list></t>
      <t>Dependency C (Component Index 2 in Root)      <list style="symbols">
          <t>Dependency CA (Component Index 0 in Dependency C)</t>
          <t>Dependency CB (Component Index 1 in Dependency C)</t>
        </list></t>
    </list></t>
</list></t>

<t>A suit-record-manifest-id of [1,0] would indicate that the record was
produced while executing Dependency BA. Similarly, a
suit-record-manifest-id of [2,1] would indicate Dependency CB.</t>

<t>suit-record-manifest-section indicates which Command Sequence of the manifest was
active. Only the "top level" Command Sequences, with entries in the Manifest are
identified by this element. These are:</t>

<t><list style="symbols">
  <t>suit-validate = 7</t>
  <t>suit-load = 8</t>
  <t>suit-invoke = 9</t>
  <t>suit-dependency-resolution  = 15</t>
  <t>suit-payload-fetch = 16</t>
  <t>suit-candidate-verification = 18</t>
  <t>suit-install = 20</t>
</list></t>

<t>This list may be extended through extensions to the SUIT_Manifest.</t>

<t>suit-record-manifest-section is used in addition to an offset so that the developer can
index into severable Command Sequences in a predictable way. The value of this
element is the value of the key that identified the Command Sequence in the
manifest.</t>

<t>suit-record-section-offset is the number of bytes into the current
Command Sequence at which the current command is located.</t>

<t>suit-record-component-index is the index of the component that was
specified at the time that the report was generated. This field is
necessary due to the availability of set-current-component values of
True and a list of components. Both of these values cause the manifest
processor to loop over commands using a series of component-ids, so the
developer needs to know which was selected when the command executed.</t>

<t>suit-record-properties contains any measured properties that led to the
command failure. For example, this could be the actual value of a
SUIT_Digest or class identifier. This is encoded as a map whose entries
are drawn from the $$SUIT_Parameters group defined in
<xref section="8.4.8" sectionFormat="of" target="I-D.ietf-suit-manifest"/>.</t>

</section>
<section anchor="suit-report"><name>The SUIT_Report</name>

<t>The SUIT_Report is a SUIT-specific logging container. It contains
the SUIT_Records needed to reconstruct the decisions made by a
Manifest Processor as well as references to the Manifest being 
processed, the result of processing, and an optional capability
report.</t>

<t>Some metadata is common to all records, such as the root manifest:
the manifest that is the entry-point for the manifest processor. This
metadata is aggregated with a list of SUIT_Records as defined in 
<xref target="suit-record"/>. The SUIT_Report
may also contain a list of any System Properties that were measured
and reported, and a reason for a failure if one occurred.
The following CDDL describes the structure of a SUIT_Report and
a SUIT_Reference:</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Report = {
  suit-reference              => SUIT_Reference,
  ? suit-report-nonce         => bstr,
  suit-report-records         => [
    * SUIT_Record / system-property-claims ],
  suit-report-result          => true / {
    suit-report-result-code   => int,
    suit-report-result-record => SUIT_Record,
    suit-report-result-reason => SUIT_Report_Reasons,
  },
  ? suit-report-capability-report => SUIT_Capability_Report,
  * $$SUIT_Report_Extensions
}

system-property-claims = {
  system-component-id => SUIT_Component_Identifier,
  + $$SUIT_Parameters,
}

SUIT_Reference = [
    suit-report-manifest-digest : SUIT_Digest,
    ? suit-report-manifest-uri : tstr
]
]]></sourcecode></figure>

<t>Further details for each element appear in subsequent sections: the
encoding of <spanx style="verb">suit-report-records</spanx> is defined in <xref target="suit-report-records"/>,
the result semantics in <xref target="suit-report-result"/>, and the optional
capability report in <xref target="capabilities"/>.</t>

<t>The suit-reference provides a digest and, when available, a reference URI
for a SUIT manifest. The digest is the digest of the manifest, exactly as
reported in SUIT_Authentication, element 0
(<xref section="8.3" sectionFormat="of" target="I-D.ietf-suit-manifest"/>). If the root manifest contains
a suit-reference-uri (<xref section="8.4.3" sectionFormat="of" target="I-D.ietf-suit-manifest"/>), the
SUIT_Report <bcp14>MUST</bcp14> include suit-report-manifest-uri, and its value <bcp14>MUST</bcp14>
exactly match that suit-reference-uri. If the root manifest does not contain
a suit-reference-uri, suit-report-manifest-uri <bcp14>MUST</bcp14> be omitted.</t>

<t>A recipient of a SUIT_Report cannot be assumed to already possess the
SUIT_Manifest needed to interpret it. SUIT_Records identify locations
in a manifest and contain Component Indices, so they are meaningful only
when the matching manifest can be obtained and validated using
suit-report-manifest-digest and, when present, suit-report-manifest-uri.
In contrast,
system-property-claims contain a SUIT_Component_Identifier rather than
only a Component Index. A recipient <bcp14>MAY</bcp14> process system-property-claims
without first obtaining the matching SUIT_Manifest, but <bcp14>MUST NOT</bcp14> use
SUIT_Records for manifest reconstruction unless the matching
SUIT_Manifest is available.</t>

<t>NOTE: The digest is used
in preference to other identifiers in the manifest because it allows
a manifest to be uniquely identified (collision resistance) whereas
other identifiers, such as the sequence number, can collide,
particularly in scenarios with multiple trusted signers.</t>

<t>suit-report-nonce provides a container for freshness or replay
protection information. This field <bcp14>MAY</bcp14> be omitted where the suit-report
is authenticated within a container that provides freshness already.
For example, attestation evidence typically contains a proof of
freshness.</t>

<t>suit-report-manifest-digest provides a SUIT_Digest (as defined in
<xref section="10" sectionFormat="of" target="I-D.ietf-suit-manifest"/>) that is the characteristic digest of the
Root manifest. This digest <bcp14>MUST</bcp14> be the same digest as is held in
the first element of SUIT_Authentication in the referenced
Manifest_Envelope.</t>

<t>suit-report-manifest-uri provides the reference URI that was provided in
the root manifest. This field is present only when the root manifest
contains suit-reference-uri.</t>

<section anchor="suit-report-records"><name>suit-report-records</name>

<t>suit-report-records is a list of 0 or more SUIT_Records or
system-property-claims. Because SUIT_Records are only generated on failure,
in simple cases this can be an empty list. SUIT_Records and
suit-system-property-claims are merged into a single list because this
reduces the overhead for a constrained node that generates this report.
The use of a single log allows report generators to use simple
memory management. Because the system-property-claims
are encoded as maps and SUIT_Records are encoded as lists, a recipient need
only filter the CBOR Type-5 entries from suit-report-records to obtain all 
system-property-claims.</t>

<t>System Properties can be extracted from suit-report-records by filtering
suit-report-records for maps. System Properties are a list of measured
or asserted properties
of the system that creates the SUIT_Report. These properties are scoped by
component identifier. Because this list is expected to be constructed on
the fly by a constrained node, component identifiers may appear more than
once. A recipient may convert the result to a more conventional structure:</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Record_System_Properties = {
  * component-id => {
    + $$SUIT_Parameters,
  }
}
]]></sourcecode></figure>

</section>
<section anchor="suit-report-result"><name>suit-report-result</name>

<t>suit-report-result provides a mechanism to show that the SUIT procedure
completed successfully (value is true) or why it failed (value is a map
of an error code and a SUIT_Record).</t>

<t>suit-report-result-reason gives a high-level explanation of the failure.
These reasons are intended for interoperable implementations. The reasons
are divided into a small number of groups:</t>

<t><list style="symbols">
  <t>suit-report-reason-cbor-parse: a parsing error was encountered by the
CBOR parser.</t>
  <t>suit-report-reason-cose-unsupported: an unsupported COSE (<xref target="RFC9052"/>) structure or
header was encountered.</t>
  <t>suit-report-reason-alg-unsupported: an unsupported COSE algorithm was
encountered.</t>
  <t>suit-report-reason-unauthorised: Signature/MAC verification failed.</t>
  <t>suit-report-reason-command-unsupported: an unsupported command was
encountered.</t>
  <t>suit-report-reason-component-unsupported: The manifest declared a
component/prefix that does not exist.</t>
  <t>suit-report-reason-component-unauthorised: The manifest declared a
component that is not accessible by the signer.</t>
  <t>suit-report-reason-parameter-unsupported: The manifest used a
parameter that does not exist.</t>
  <t>suit-report-reason-severing-unsupported: The manifest used severable fields
but the Manifest Processor does not support them.</t>
  <t>suit-report-reason-condition-failed: A condition failed with soft-
failure off.</t>
  <t>suit-report-reason-operation-failed: A command failed (e.g.,
download/copy/swap/write)</t>
  <t>suit-report-reason-invoke-pending: Invocation is about to be attempted
and the final outcome is not yet known.</t>
</list></t>

<t>The suit-report-result-code reports an internal error code that is
provided for debugging reasons. This code is not intended for
interoperability.</t>

<t>The suit-report-result-record indicates the exact point in the manifest
or manifest dependency tree where the error occurred.</t>

<t>NOTE: Some deployments use <spanx style="verb">SUIT_Command_Invoke</spanx>, which can transfer
control to invoked code that never returns to the Manifest Processor.
When a SUIT_Report is produced for remote attestation, implementations
often need to sign the report before attempting the invoke. Signing with
an unconditional "success" result would be misleading if the invocation
ultimately fails. Implementers can leave the invoke outcome
implicit—allowing a verifier to infer that execution was handed off—or,
when the result must be reported before invocation, use
<spanx style="verb">suit-report-reason-invoke-pending</spanx> to signal that invocation is about to
occur without asserting a final outcome.</t>

<t>suit-report-capability-report provides a mechanism to report the capabilities of the Manifest Processor. The SUIT_Capability_Report is described in <xref target="capabilities"/>. The capability report is optional to include in the SUIT_Report, according to an application-specific policy. While the SUIT_Capability_Report is not expected to be very large, applications should ensure that they only report capabilities when necessary in order to conserve bandwidth. A capability report is not necessary except when:</t>

<t><list style="numbers" type="1">
  <t>A client explicitly requests the capability report, or</t>
  <t>A manifest attempts to use a capability that the Manifest Processor does not implement.</t>
</list></t>

</section>
</section>
<section anchor="attestation"><name>Attestation</name>

<t>Where Remote Attestation (see <xref target="RFC9334"/>, the RATS Architecture) is in use, the RATS Verifier (Verifier hereafter) requires a set of
Attestation Evidence. Attestation Evidence contains Evidence Claims about the Attester. These Evidence Claims
contain measurements about the Attester. Many of these measurements are the same measurements that are generated in SUIT,
which means that a SUIT_Report contains most of the Claims and some of the Endorsements that a Verifier requires.</t>

<t>Using a SUIT_Manifest and a SUIT_Report improves a Verifier's ability to 
appraise the trustworthiness of a remote device.
Remote attestation is done by using the SUIT_Envelope
along with the SUIT_Report in Evidence to reconstruct the state of the device at boot time.
Additionally, by including SUIT_Report data as telemetry (i.e., debug/failure information) next to measurements in Evidence, both types of Evidence data can be notarized via verifiable data structure, such as an append-only log (<xref section="3" sectionFormat="of" target="I-D.ietf-scitt-architecture"/>) using the same conceptual message.</t>

<t>For the SUIT_Report to be usable as Attestation Evidence, the environment that
generated the SUIT_Report also needs to be measured. Typically, this means that
the software that executes the commands in the Manifest (the Manifest
Processor) must be measured; similarly, the piece of software that assembles
the measurements, taken by the Manifest Processor, into the SUIT_Report (the
Report Generator) must also be measured. Any bootloaders or operating systems
that facilitate the running of the Manifest Processor or Report Generator also need
to be measured in order to demonstrate the integrity of the measuring environment.</t>

<t>Therefore, if a Remote Attestation format that conveys Attestation Evidence, such as an Entity Attestation Token (EAT, see <xref target="RFC9711"/>), contains a SUIT_Report, then it <bcp14>MUST</bcp14> also include an integrity measurement of the Manifest Processor, the Report Generator and any bootloader or OS environment that ran before or during the 
execution of both.</t>

<t>If Reference Values (<xref section="8.3" sectionFormat="of" target="RFC9334"/>) required by the Verifier are delivered in a SUIT_Envelope, this codifies the delivery of appraisal information to the Verifier:</t>

<t><list style="symbols">
  <t>The Firmware Distributor:
  <list style="symbols">
      <t>sends the SUIT_Envelope to the Verifier without payload or text, but with Reference Values</t>
      <t>sends the SUIT_Envelope to the Recipient without Reference Values, or text, but with payload</t>
    </list></t>
  <t>The Recipient:
  <list style="symbols">
      <t>Installs the firmware as described in the SUIT_Manifest and generates a SUIT_Report, which is encapsulated in an EAT by the installer and sent to the Firmware Distributor.</t>
      <t>Boots the firmware as described in the SUIT_Manifest and creates a SUIT_Report, which is encapsulated in an EAT by the installer and sent to the Firmware Distributor.</t>
    </list></t>
  <t>The Firmware Distributor sends both reports to the Verifier (separately or together)</t>
  <t>The Verifier:
  <list style="symbols">
      <t>Reconstructs the state of the device using the manifest</t>
      <t>Compares this state to the Reference Values</t>
      <t>Returns an Attestation Report to the Firmware Distributor</t>
    </list></t>
</list></t>

<t>This approach simplifies the design of the bootloader since it is able to use an append-only log. It allows a Verifier to validate this report against signed Reference Values that is provided by the firmware author, which simplifies the delivery chain of verification information to the Verifier.</t>

<t>For a Verifier to consume the SUIT_Report, it requires a copy of the
SUIT_Manifest. The Verifier then replays the SUIT_Manifest, using the
SUIT_Report to resolve whether each condition is met. It identifies each
measurement that is required by attestation policy and records this
measurement as a Claim (<xref section="4" sectionFormat="of" target="RFC9711"/>). It evaluates whether the SUIT_Report
correctly matches the SUIT_Manifest as an element of evaluating
trustworthiness. For example there are several indicators that would show
that a SUIT_Report does not match a SUIT_Manifest. If any of the following
(not an exhaustive list) occur, then the Manifest Processor that created the
report is not trustworthy:</t>

<t><list style="symbols">
  <t>Hash of the SUIT_Manifest does not match suit-report-manifest-digest</t>
  <t>A SUIT_Record is issued for a SUIT_Command_Sequence that does not exist 
in the SUIT_Manifest identified by suit-report-manifest-digest.</t>
  <t>A SUIT_Record is identified at an offset that is not a condition and does
not have a reporting policy that would indicate a SUIT_Record is needed.</t>
</list></t>

<t>Many architectures require multiple Verifiers, for example where one Verifier
handles hardware trust, and another handles software trust, especially the
evaluation of software authenticity and freshness. Some Verifiers may not
be capable of processing a SUIT_Report and, for separation of roles, it
may be preferable to divide that responsibility. In this case, the Verifier
of the SUIT_Report should perform an Evidence Transformation
<xref target="I-D.ietf-rats-evidence-trans"/> and
produce general purpose Measurement Results Claims that can be consumed by a
downstream Verifier, for example a Verifying Relying Party, that does not
understand SUIT_Reports.</t>

</section>
<section anchor="capabilities"><name>Capability Reporting</name>

<t>Because SUIT is extensible, a manifest author must know what capabilities a device has available. To enable this, a capability report is a set of lists that define which commands, parameters, algorithms, and component IDs are supported by a manifest processor.</t>

<t>The CDDL for a SUIT_Capability_Report follows:</t>

<figure><sourcecode type="~CDDL"><![CDATA[
SUIT_Capability_Report = {
  suit-component-capabilities  => [+ SUIT_Component_Capability]
  suit-command-capabilities          => [+ int],
  suit-parameters-capabilities       => [+ int],
  suit-crypt-algo-capabilities       => [+ int],
  ? suit-envelope-capabilities       => [+ int],
  ? suit-manifest-capabilities       => [+ int],
  ? suit-common-capabilities         => [+ int],
  ? suit-text-capabilities           => [+ int],
  ? suit-text-component-capabilities => [+ int],
  ? suit-dependency-capabilities     => [+ int],
  * [+int]                           => [+ int],
  * $$SUIT_Capability_Report_Extensions
}

SUIT_Component_Capability = [*bstr,?true]
]]></sourcecode></figure>

<t>A SUIT_Component_Capability is similar to a SUIT_Component_ID, with one difference: it may optionally be terminated by a CBOR 'true' which acts as a wild-card match for any component with a prefix matching the SUIT_Component_Capability leading up to the 'true.' This feature is for use with filesystem storage, key value stores, or any other arbitrary-component-id storage systems.</t>

<t>When reporting capabilities, it is <bcp14>OPTIONAL</bcp14> to report capabilities that are declared mandatory by the SUIT Manifest <xref target="I-D.ietf-suit-manifest"/>. Capabilities defined by extensions <bcp14>MUST</bcp14> be reported.</t>

<t>Additional capability reporting can be added as follows: if a manifest element does not exist in this map, it can be added by specifying the CBOR path to the manifest element in an array and using this as the key. For example SUIT_Dependencies, as described in <xref section="5.2.2" sectionFormat="of" target="I-D.ietf-suit-trust-domains"/>,  could have an extension added, which was key 3 in the SUIT_Dependencies map. This capability would be reported as: [3, 3, 1] =&gt; [3], where the key consists of the key for SUIT_Manifest (3), the key for SUIT_Common (3), and the key for SUIT_Dependencies (1). Then the value indicates that this manifest processor supports the extension (3).</t>

</section>
<section anchor="eat"><name>EAT Claim</name>

<t>The Entity Attestation Token (EAT, see <xref target="RFC9711"/>) is a secure container for conveying
Attestation Evidence, such as measurements, and Attestation Results.
The SUIT_Report is a form of measurement done by the SUIT Manifest Processor as it attempts to invoke a manifest or install a manifest. As a result, the SUIT_Report can be captured in an EAT measurements type.</t>

<t>The log-based structure of the SUIT_Report is not conducive to processing by a
typical Relying Party: it contains only a list of waypoints through the SUIT
Manifest--unless system parameter records are included--and requires additional 
information (the SUIT_Manifest) to reconstruct the values that must have been
present at each test. A Verifier in posession of the SUIT_Manifest can reconstruct 
the measurements that would produce the waypoints in the SUIT_Report. The Verifier 
<bcp14>SHOULD</bcp14> convert a SUIT_Report into a more consumable version of the EAT claim by, for 
example, constructing a measurement results claim that contains the digest of a 
component, the Vendor ID and Class ID of a component, etc.</t>

</section>
<section anchor="container"><name>SUIT_Report Container</name>

<t>Transmission of the SUIT_Report <bcp14>MUST</bcp14> satisfy the requirements of <xref section="4.3.16" sectionFormat="of" target="RFC9124"/>: REQ.SEC.REPORTING.</t>

<t>Status reports from the device to any remote system <bcp14>MUST</bcp14> be performed over an authenticated, confidential channel in order to prevent modification or spoofing of the reports.</t>

<t>As a result, the SUIT_Report <bcp14>MUST</bcp14> be transported using one of the following methods:</t>

<t><list style="symbols">
  <t>As part of a larger document that provides authenticity guarantees, such as within a <spanx style="verb">measurements</spanx> claim in an Entity Attestation Token (EAT, <xref section="4.2.16" sectionFormat="of" target="RFC9711"/>).</t>
  <t>As the payload of a message transmitted over a communication security protocol, such as DTLS <xref target="RFC9147"/>.</t>
  <t>Encapsulated within a secure container, such as a COSE structure. In the case of COSE, the container <bcp14>MUST</bcp14> provide authenticity and integrity using <spanx style="verb">COSE_Sign1</spanx> or <spanx style="verb">COSE_Mac0</spanx>; confidentiality <bcp14>MAY</bcp14> be provided by carrying a <spanx style="verb">COSE_Encrypt0</spanx> object as the authenticated payload. The SUIT_Report or encrypted SUIT_Report <bcp14>MUST</bcp14> be the sole payload, as illustrated by the CDDL fragment below.</t>
</list></t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Report_Protected /= SUIT_Report_COSE_Sign1 \
                         .and SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_Sign1_Tagged \
                         .and SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_MAC0 \
                         .and SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_MAC0_Tagged \
                         .and SUIT_COSE_Profiles

SUIT_Report_COSE_Sign1_Tagged = #6.18(SUIT_Report_COSE_Sign1)
SUIT_Report_COSE_Sign1 = [
    protected : bstr,
    unprotected : {* int => any},
    payload : bstr .cbor SUIT_Report_Unprotected,
    signature : bstr
]
SUIT_Report_COSE_MAC0_Tagged = #6.17(SUIT_Report_COSE_MAC0)
SUIT_Report_COSE_MAC0 = [
    protected : bstr,
    unprotected : {* int => any},
    payload : bstr .cbor SUIT_Report_Unprotected,
    tag : bstr
]
SUIT_Report_Unprotected = SUIT_Report / SUIT_Report_COSE_Encrypt0
SUIT_Report_COSE_Encrypt0 = COSE_Encrypt0
]]></sourcecode></figure>

<t>Note that SUIT_Report_COSE_Sign1 and SUIT_Report_COSE_MAC0 <bcp14>MUST</bcp14> be combined with a SUIT_COSE_Profiles from <xref target="I-D.ietf-suit-mti"/> using the CDDL .and directive. The SUIT_Report_COSE_Encrypt0 carries a ciphertext payload that <bcp14>MUST</bcp14> contain just the ciphertext obtained by encrypting the following CDDL:</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Report_plaintext = bstr .cbor SUIT_Report
]]></sourcecode></figure>

<t>SUIT_COSE_Profiles, which use AES-CTR encryption, are not integrity protected and authenticated. For this purpose, SUIT_Report_Protected defines authenticated containers with an encrypted payload.</t>

<t>If a report cannot be constructed or authenticated according to local
policy, the recipient reports the failure through an
implementation-specific local error or logging mechanism. A recipient
<bcp14>MUST NOT</bcp14> emit an unauthenticated SUIT_Report when policy requires
authenticated reports. If a partial SUIT_Report is emitted, it <bcp14>MUST</bcp14>
satisfy the same authentication and integrity policy as any other
SUIT_Report emitted by that recipient.</t>

</section>
<section anchor="iana"><name>IANA Considerations</name>

<t>IANA is requested to rename the overall SUIT registry group (https://www.iana.org/assignments/suit/suit.xhtml) "Software Update for the Internet of Things (SUIT)".</t>

<t>IANA is requested to allocate a CBOR tag for each of the following items. Please see <xref target="cbor-tag"/> for further details.</t>

<t><list style="symbols">
  <t>SUIT_Report_Protected</t>
  <t>SUIT_Reference</t>
  <t>SUIT_Capability_Report</t>
</list></t>

<t>IANA is requested to allocate a CoAP content-format <xref target="RFC7252"/> and a media-type for SUIT_Report <xref target="media-type"/>. Please see <xref target="media-type"/> and <xref target="coap-cf"/> for further details.</t>

<t>IANA is also requested to add the following registries to the SUIT registry group (https://www.iana.org/assignments/suit/suit.xhtml).</t>

<t><list style="symbols">
  <t>SUIT_Report Elements <xref target="iana-suit-report-elements"/></t>
  <t>SUIT_Record Elements <xref target="iana-suit-record-elements"/></t>
  <t>SUIT_Report Reasons <xref target="iana-suit-report-reasons"/></t>
  <t>SUIT_Capability_Report Elements <xref target="iana-suit-capability-report"/></t>
</list></t>

<t>For each of these registries, registration policy is:</t>

<t><list style="symbols">
  <t>-256 to 255: Standards Action With Expert Review</t>
  <t>-65536 to -257, 256 to 65535: Specification Required</t>
  <t>-4294967296 to -65537, 65536 to 4294967295: First Come First Served</t>
</list></t>

<t>Requests in the Standards Action and Specification Required ranges <bcp14>MUST</bcp14>
undergo designated expert review as described below; this guidance supplements
the normal IANA processing for those policies.</t>

<section anchor="expert-review-instructions"><name>Expert Review Instructions</name>

<t>The IANA registries established in this document allow values to be added based on expert review. This section gives some general guidelines for what the experts should be looking for, but they are being designated as experts for a reason, so they should be given substantial latitude.</t>

<t>Expert reviewers should take into consideration the following points:</t>

<t><list style="symbols">
  <t>Point squatting should be discouraged. Reviewers are encouraged to get sufficient information for registration requests to ensure that the usage is not going to duplicate one that is already registered, and that the point is likely to be used in deployments. The zones tagged as private use are intended for testing purposes and closed environments; code points in other ranges should not be assigned for testing.</t>
  <t>Specifications are required for the standards track range of point assignment. Specifications should exist for all other ranges, but early assignment before a specification is available is considered to be permissible. When specifications are not provided, the description provided needs to have sufficient information to identify what the point is being used for.</t>
  <t>Experts should take into account the expected usage of fields when approving point assignment. The fact that there is a range for standards track documents does not mean that a standards track document cannot have points assigned outside of that range. The length of the encoded value should be weighed against how many code points of that length are left, the size of device it will be used on, and the number of code points left that encode to that size.</t>
</list></t>

</section>
<section anchor="media-type"><name>Media Type Registration</name>

<section anchor="applicationsuit-reportcose"><name>application/suit-report+cose</name>

<t>IANA is requested to register application/suit-report+cose as a media type for the SUIT_Report.</t>

<dl spacing="compact">
  <dt>Type name:</dt>
  <dd>
    <t>application</t>
  </dd>
  <dt>Subtype name:</dt>
  <dd>
    <t>suit-report+cose</t>
  </dd>
  <dt>Required parameters:</dt>
  <dd>
    <t>n/a</t>
  </dd>
  <dt>Optional parameters:</dt>
  <dd>
    <t>n/a</t>
  </dd>
  <dt>Encoding considerations:</dt>
  <dd>
    <t>binary (CBOR)</t>
  </dd>
  <dt>Security considerations:</dt>
  <dd>
    <t><xref target="seccons"/> of &SELF;</t>
  </dd>
  <dt>Interoperability considerations:</dt>
  <dd>
    <t>SUIT Reports are encoded as CBOR and can be wrapped in COSE_Sign1 or COSE_Mac0, optionally carrying COSE_Encrypt0 as the authenticated payload. Receivers must be able to identify and process the COSE envelope used and support compatible COSE algorithms for validation or decryption. All versioning and structure are self-describing within the CBOR SUIT_Report format, and no media-type parameters are used for negotiation. Interoperability therefore depends on shared deployment profiles that specify the expected COSE protections and algorithms. Comprehension of SUIT_Records is dependent on obtaining a matching SUIT Manifest. System property claims can still be processed without the manifest because they contain SUIT_Component_Identifier values rather than only Component Indices.</t>
  </dd>
  <dt>Published specification:</dt>
  <dd>
    <t>&SELF;</t>
  </dd>
  <dt>Applications that use this media type:</dt>
  <dd>
    <t>SUIT Manifest Processor, SUIT Manifest Distributor, SUIT Manifest Author, RATS Attesters, RATS Verifiers</t>
  </dd>
  <dt>Fragment identifier considerations:</dt>
  <dd>
    <t>The syntax and semantics of fragment identifiers are as specified for "application/cose".</t>
  </dd>
  <dt>Person &amp; email address to contact for further information:</dt>
  <dd>
    <t>SUIT WG mailing list (suit@ietf.org)</t>
  </dd>
  <dt>Intended usage:</dt>
  <dd>
    <t>COMMON</t>
  </dd>
  <dt>Restrictions on usage:</dt>
  <dd>
    <t>none</t>
  </dd>
  <dt>Author/Change controller:</dt>
  <dd>
    <t>IETF</t>
  </dd>
  <dt>Provisional registration:</dt>
  <dd>
    <t>no</t>
  </dd>
</dl>

</section>
</section>
<section anchor="coap-cf"><name>CoAP Content-Format Registration</name>

<t>IANA is requested to assign a CoAP Content-Format ID for the SUIT_Report media type in the "CoAP Content-Formats" registry, from the "IETF Review with Expert Review or IESG Approval with Expert Review" space (256..9999), within the "CoRE Parameters" registry group <xref target="RFC7252"/> <xref target="IANA.core-parameters"/>:</t>

<texttable>
      <ttcol align='left'>Content Type</ttcol>
      <ttcol align='left'>Content Coding</ttcol>
      <ttcol align='left'>ID</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>application/suit-report+cose</c>
      <c>&#160;</c>
      <c>TBA</c>
      <c>&SELF;</c>
</texttable>

</section>
<section anchor="cbor-tag"><name>CBOR Tag Registration</name>

<t>IANA is requested to allocate a tag in the "CBOR Tags" registry <xref target="IANA.cbor-tags"/>, preferably in the Specification Required range:</t>

<texttable>
      <ttcol align='left'>Tag</ttcol>
      <ttcol align='left'>Data Item</ttcol>
      <ttcol align='left'>Semantics</ttcol>
      <c>TBA</c>
      <c>array</c>
      <c>SUIT_Report_Protected</c>
      <c>TBA</c>
      <c>array</c>
      <c>SUIT_Reference</c>
      <c>TBA</c>
      <c>map</c>
      <c>SUIT_Capability_Report</c>
</texttable>

</section>
<section anchor="iana-suit-report-elements"><name>SUIT_Report Elements</name>

<t>IANA is requested to create a new registry for SUIT_Report Elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Label</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>2</c>
      <c>Nonce</c>
      <c>suit-report-nonce</c>
      <c><xref target="suit-report"/> of &SELF;</c>
      <c>3</c>
      <c>Records</c>
      <c>suit-report-records</c>
      <c><xref target="suit-report"/> of &SELF;</c>
      <c>4</c>
      <c>Result</c>
      <c>suit-report-result</c>
      <c><xref target="suit-report"/> of &SELF;</c>
      <c>5</c>
      <c>Result Code</c>
      <c>suit-report-result-code</c>
      <c><xref target="suit-report"/> of &SELF;</c>
      <c>6</c>
      <c>Result Record</c>
      <c>suit-report-result-record</c>
      <c><xref target="suit-report"/> of &SELF;</c>
      <c>7</c>
      <c>Result Reason</c>
      <c>suit-report-result-reason</c>
      <c><xref target="suit-report"/> of &SELF;</c>
      <c>8</c>
      <c>Capability Report</c>
      <c>suit-report-capability-report</c>
      <c><xref target="suit-report"/> of &SELF;</c>
      <c>99</c>
      <c>Reference</c>
      <c>suit-reference</c>
      <c><xref target="suit-report"/> of &SELF;</c>
</texttable>

</section>
<section anchor="iana-suit-record-elements"><name>SUIT_Record Elements</name>

<t>IANA is requested to create a new registry for SUIT_Record Elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Label</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Manifest ID</c>
      <c>suit-record-manifest-id</c>
      <c><xref target="suit-record"/> of &SELF;</c>
      <c>1</c>
      <c>Manifest Section</c>
      <c>suit-record-manifest-section</c>
      <c><xref target="suit-record"/> of &SELF;</c>
      <c>2</c>
      <c>Section Offset</c>
      <c>suit-record-section-offset</c>
      <c><xref target="suit-record"/> of &SELF;</c>
      <c>3</c>
      <c>Component Index</c>
      <c>suit-record-component-index</c>
      <c><xref target="suit-record"/> of &SELF;</c>
      <c>4</c>
      <c>Record Properties</c>
      <c>suit-record-properties</c>
      <c><xref target="suit-record"/> of &SELF;</c>
</texttable>

</section>
<section anchor="iana-suit-report-reasons"><name>SUIT_Report Reasons</name>

<t>IANA is requested to create a new registry for SUIT_Report Reasons.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Label</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Result OK</c>
      <c>suit-report-reason-ok</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>1</c>
      <c>CBOR Parse Failure</c>
      <c>suit-report-reason-cbor-parse</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>2</c>
      <c>Unsupported COSE Structure or Header</c>
      <c>suit-report-reason-cose-unsupported</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>3</c>
      <c>Unsupported COSE Algorithm</c>
      <c>suit-report-reason-alg-unsupported</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>4</c>
      <c>Signature / MAC verification failed</c>
      <c>suit-report-reason-unauthorised</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>5</c>
      <c>Unsupported SUIT Command</c>
      <c>suit-report-reason-command-unsupported</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>6</c>
      <c>Unsupported SUIT Component</c>
      <c>suit-report-reason-component-unsupported</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>7</c>
      <c>Unauthorized SUIT Component</c>
      <c>suit-report-reason-component-unauthorised</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>8</c>
      <c>Unsupported SUIT Parameter</c>
      <c>suit-report-reason-parameter-unsupported</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>9</c>
      <c>Severing Unsupported</c>
      <c>suit-report-reason-severing-unsupported</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>10</c>
      <c>Condition Failed</c>
      <c>suit-report-reason-condition-failed</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>11</c>
      <c>Operation Failed</c>
      <c>suit-report-reason-operation-failed</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
      <c>12</c>
      <c>Invocation Pending</c>
      <c>suit-report-reason-invoke-pending</c>
      <c><xref target="suit-report-result"/> of &SELF;</c>
</texttable>

</section>
<section anchor="iana-suit-capability-report"><name> SUIT Capability Report Elements</name>

<t>IANA is requested to create a new registry for SUIT Capability Report Elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Label</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>Components</c>
      <c>suit-component-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>2</c>
      <c>Commands</c>
      <c>suit-command-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>3</c>
      <c>Parameters</c>
      <c>suit-parameters-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>4</c>
      <c>Cryptographic Algorithms</c>
      <c>suit-crypt-algo-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>5</c>
      <c>Envelope Elements</c>
      <c>suit-envelope-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>6</c>
      <c>Manifest Elements</c>
      <c>suit-manifest-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>7</c>
      <c>Common Elements</c>
      <c>suit-common-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>8</c>
      <c>Text Elements</c>
      <c>suit-text-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>9</c>
      <c>Component Text Elements</c>
      <c>suit-text-component-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
      <c>10</c>
      <c>Dependency Capabilities</c>
      <c>suit-dependency-capabilities</c>
      <c><xref target="capabilities"/> of &SELF;</c>
</texttable>

</section>
</section>
<section anchor="seccons"><name>Security Considerations</name>

<t>The SUIT_Report serves four primary security objectives:</t>

<t><list style="symbols">
  <t>Validated Identity</t>
  <t>Integrity</t>
  <t>Replay protection</t>
  <t>Confidentiality</t>
</list></t>

<t>The mechanisms for achieving these protections are outlined in <xref target="container"/>.</t>

<t>Ideally, a SUIT_Report <bcp14>SHOULD</bcp14> be conveyed as part of a remote attestation procedure,
such as embeding it in EAT tokens that represent RATS conceptual messages. This approach ensures that the SUIT_Report
is cryptographically bound to the environment (hardware, software, or both) in
which it was generated, thereby strengthening its authenticity.</t>

<t>A SUIT_Report may disclose sensitive information about the device on which it
were produced. In such cases, the SUIT_Report <bcp14>MUST</bcp14> be encrypted, as specified in
<xref target="container"/>.</t>

<t>Furthermore, failure reports, particularly those involving cryptographic operations,
can unintentionally reveal insights into system weaknesses or vulnerabilities. As such,
SUIT_Reports <bcp14>SHOULD</bcp14> be encrypted whenever possible, to minimize the risk of information
leakage.</t>

<t>In addition to these core security requirements, operational considerations must be taken
into account. When a SUIT_Report is included within another protocol message (e.g., inside
an encrypted EAT), care must be taken to avoid inadvertently leaking information and
to uphold the principle of least privilege. For example, in many EAT-based remote attestation flows,
the Verifier may not require the full SUIT_Report. Similarly, the Relying Party might not
need access to it either.</t>

<t>To support least-privilege access, the SUIT_Report should be independently encrypted, even
when the transport or enclosing token is also encrypted. This layered encryption ensures that
only authorized entities can access the contents of the SUIT_Report.</t>

<t>In other scenarios, the EAT Verifier might require full access to a SUIT_Report.
For example, the SUIT_Report must be accessible in its entirety for the EAT Verifier
to extract or convert the SUIT_Report content into specific EAT claims, such as <spanx style="verb">measres</spanx>
(Measurement Results). A typical case
involves translating a successful <spanx style="verb">suit-condition-image</spanx> check into a digest-based claim within
the EAT.</t>

<t>When applying cryptographic protection to the SUIT_Report, the same algorithm profile used for
the corresponding SUIT manifest <bcp14>SHOULD</bcp14> be reused. The available algorithm profiles are detailed
in <xref target="I-D.ietf-suit-mti"/>. If using the same profile is not feasible (e.g., due to constraints
imposed by <spanx style="verb">suit-sha256-hsslms-a256kw-a256ctr</spanx>), then a profile offering comparable security
strength <bcp14>SHOULD</bcp14> be selected—for instance, <spanx style="verb">suit-sha256-esp256-ecdh-a128ctr</spanx>.</t>

<t>In exceptional cases, if no suitable profile can be applied, the necessity of disabling a SUIT_Report functionality altogether might arise.</t>

<t>SUIT_Reports may expose information about the user to the Verifier, Firmware Distributor, or Manifest Author. Implementors <bcp14>MUST</bcp14> carefully consider user consent in the reporting system.</t>

</section>
<section anchor="acknowledgements"><name>Acknowledgements</name>

<t>The authors would like to thank Dave Thaler for his feedback.</t>

</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">




<reference anchor="I-D.ietf-suit-manifest">
   <front>
      <title>A Concise Binary Object Representation (CBOR)-based Serialization Format for the Software Updates for Internet of Things (SUIT) Manifest</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
         <organization>University of Applied Sciences Bonn-Rhein-Sieg</organization>
      </author>
      <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname="Koen Zandberg" initials="K." surname="Zandberg">
         <organization>Inria</organization>
      </author>
      <author fullname="Øyvind Rønningstad" initials="O." surname="Rønningstad">
         <organization>Nordic Semiconductor</organization>
      </author>
      <date day="18" month="June" year="2026"/>
      <abstract>
	 <t>   This specification describes the format of a manifest.  A manifest is
   a bundle of metadata about code/data obtained by a recipient (chiefly
   the firmware for an Internet of Things (IoT) device), where to find
   the code/data, the devices to which it applies, and cryptographic
   information protecting the manifest.  Software updates and Trusted
   Invocation both tend to use sequences of common operations, so the
   manifest encodes those sequences of operations, rather than declaring
   the metadata.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-manifest-37"/>
   
</reference>
<reference anchor="RFC9019">
  <front>
    <title>A Firmware Update Architecture for Internet of Things</title>
    <author fullname="B. Moran" initials="B." surname="Moran"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="D. Brown" initials="D." surname="Brown"/>
    <author fullname="M. Meriac" initials="M." surname="Meriac"/>
    <date month="April" year="2021"/>
    <abstract>
      <t>Vulnerabilities in Internet of Things (IoT) devices have raised the need for a reliable and secure firmware update mechanism suitable for devices with resource constraints. Incorporating such an update mechanism is a fundamental requirement for fixing vulnerabilities, but it also enables other important capabilities such as updating configuration settings and adding new functionality.</t>
      <t>In addition to the definition of terminology and an architecture, this document provides the motivation for the standardization of a manifest format as a transport-agnostic means for describing and protecting firmware updates.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9019"/>
  <seriesInfo name="DOI" value="10.17487/RFC9019"/>
</reference>
<reference anchor="RFC9052">
  <front>
    <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
    <author fullname="J. Schaad" initials="J." surname="Schaad"/>
    <date month="August" year="2022"/>
    <abstract>
      <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol. This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization. This specification additionally describes how to represent cryptographic keys using CBOR.</t>
      <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="96"/>
  <seriesInfo name="RFC" value="9052"/>
  <seriesInfo name="DOI" value="10.17487/RFC9052"/>
</reference>
<reference anchor="RFC9711">
  <front>
    <title>The Entity Attestation Token (EAT)</title>
    <author fullname="L. Lundblade" initials="L." surname="Lundblade"/>
    <author fullname="G. Mandyam" initials="G." surname="Mandyam"/>
    <author fullname="J. O'Donoghue" initials="J." surname="O'Donoghue"/>
    <author fullname="C. Wallace" initials="C." surname="Wallace"/>
    <date month="April" year="2025"/>
    <abstract>
      <t>An Entity Attestation Token (EAT) provides an attested claims set that describes the state and characteristics of an entity, a device such as a smartphone, an Internet of Things (IoT) device, network equipment, or such. This claims set is used by a relying party, server, or service to determine the type and degree of trust placed in the entity.</t>
      <t>An EAT is either a CBOR Web Token (CWT) or a JSON Web Token (JWT) with attestation-oriented claims.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9711"/>
  <seriesInfo name="DOI" value="10.17487/RFC9711"/>
</reference>
<reference anchor="RFC8610">
  <front>
    <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <author fullname="C. Vigano" initials="C." surname="Vigano"/>
    <author fullname="C. Bormann" initials="C." surname="Bormann"/>
    <date month="June" year="2019"/>
    <abstract>
      <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049). Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8610"/>
  <seriesInfo name="DOI" value="10.17487/RFC8610"/>
</reference>
<reference anchor="RFC8792">
  <front>
    <title>Handling Long Lines in Content of Internet-Drafts and RFCs</title>
    <author fullname="K. Watsen" initials="K." surname="Watsen"/>
    <author fullname="E. Auerswald" initials="E." surname="Auerswald"/>
    <author fullname="A. Farrel" initials="A." surname="Farrel"/>
    <author fullname="Q. Wu" initials="Q." surname="Wu"/>
    <date month="June" year="2020"/>
    <abstract>
      <t>This document defines two strategies for handling long lines in width-bounded text content. One strategy, called the "single backslash" strategy, is based on the historical use of a single backslash ('\') character to indicate where line-folding has occurred, with the continuation occurring with the first character that is not a space character (' ') on the next line. The second strategy, called the "double backslash" strategy, extends the first strategy by adding a second backslash character to identify where the continuation begins and is thereby able to handle cases not supported by the first strategy. Both strategies use a self-describing header enabling automated reconstitution of the original content.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8792"/>
  <seriesInfo name="DOI" value="10.17487/RFC8792"/>
</reference>
<reference anchor="RFC9334">
  <front>
    <title>Remote ATtestation procedureS (RATS) Architecture</title>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <author fullname="D. Thaler" initials="D." surname="Thaler"/>
    <author fullname="M. Richardson" initials="M." surname="Richardson"/>
    <author fullname="N. Smith" initials="N." surname="Smith"/>
    <author fullname="W. Pan" initials="W." surname="Pan"/>
    <date month="January" year="2023"/>
    <abstract>
      <t>In network protocol exchanges, it is often useful for one end of a communication to know whether the other end is in an intended operating state. This document provides an architectural overview of the entities involved that make such tests possible through the process of generating, conveying, and evaluating evidentiary Claims. It provides a model that is neutral toward processor architectures, the content of Claims, and protocols.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9334"/>
  <seriesInfo name="DOI" value="10.17487/RFC9334"/>
</reference>

<reference anchor="I-D.ietf-suit-mti">
   <front>
      <title>Cryptographic Algorithms for Internet of Things (IoT) Devices</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Øyvind Rønningstad" initials="O." surname="Rønningstad">
         <organization>Nordic Semiconductor</organization>
      </author>
      <author fullname="Akira Tsukamoto" initials="A." surname="Tsukamoto">
         <organization>Openchip &amp; Software Technologies, S.L.</organization>
      </author>
      <date day="22" month="July" year="2025"/>
      <abstract>
	 <t>   The SUIT manifest, as defined in &quot;A Manifest Information Model for
   Firmware Updates in Internet of Things (IoT) Devices&quot; (RFC 9124),
   provides a flexible and extensible format for describing how firmware
   and software updates are to be fetched, verified, decrypted, and
   installed on resource-constrained devices.  To ensure the security of
   these update processes, the manifest relies on cryptographic
   algorithms for functions such as digital signature verification,
   integrity checking, and confidentiality.

   This document defines cryptographic algorithm profiles for use with
   the Software Updates for Internet of Things (SUIT) manifest.  These
   profiles specify sets of algorithms to promote interoperability
   across implementations.

   Given the diversity of IoT deployments and the evolving cryptographic
   landscape, algorithm agility is essential.  This document groups
   algorithms into named profiles to accommodate varying levels of
   device capabilities and security requirements.  These profiles
   support the use cases laid out in the SUIT architecture, published in
   &quot;A Firmware Update Architecture for Internet of Things&quot; (RFC 9019).

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-mti-23"/>
   
</reference>
<reference anchor="IANA.cbor-tags" target="https://www.iana.org/assignments/cbor-tags">
  <front>
    <title>Concise Binary Object Representation (CBOR) Tags</title>
    <author>
      <organization>IANA</organization>
    </author>
  </front>
</reference>
<reference anchor="IANA.core-parameters" target="https://www.iana.org/assignments/core-parameters">
  <front>
    <title>Constrained RESTful Environments (CoRE) Parameters</title>
    <author>
      <organization>IANA</organization>
    </author>
  </front>
</reference>
<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <date month="March" year="1997"/>
    <abstract>
      <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="2119"/>
  <seriesInfo name="DOI" value="10.17487/RFC2119"/>
</reference>
<reference anchor="RFC8174">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <date month="May" year="2017"/>
    <abstract>
      <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
    </abstract>
  </front>
  <seriesInfo name="BCP" value="14"/>
  <seriesInfo name="RFC" value="8174"/>
  <seriesInfo name="DOI" value="10.17487/RFC8174"/>
</reference>



    </references>

    <references title='Informative References' anchor="sec-informative-references">




<reference anchor="I-D.ietf-suit-trust-domains">
   <front>
      <title>Software Update for the Internet of Things (SUIT) Manifest Extensions for Multiple Trust Domain</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Ken Takayama" initials="K." surname="Takayama">
         <organization>SECOM CO., LTD.</organization>
      </author>
      <date day="22" month="July" year="2025"/>
      <abstract>
	 <t>   A device has more than one trust domain when it enables delegation of
   different rights to mutually distrusting entities for use for
   different purposes or Components in the context of firmware or
   software update.  This specification describes extensions to the
   Software Update for the Internet of Things (SUIT) Manifest format for
   use in deployments with multiple trust domains.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-trust-domains-12"/>
   
</reference>

<reference anchor="I-D.ietf-scitt-architecture">
   <front>
      <title>An Architecture for Trustworthy and Transparent Digital Supply Chains</title>
      <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname="Antoine Delignat-Lavaud" initials="A." surname="Delignat-Lavaud">
         <organization>Microsoft Research</organization>
      </author>
      <author fullname="Cedric Fournet" initials="C." surname="Fournet">
         <organization>Microsoft Research</organization>
      </author>
      <author fullname="Yogesh Deshpande" initials="Y." surname="Deshpande">
         <organization>ARM</organization>
      </author>
      <author fullname="Steve Lasker" initials="S." surname="Lasker">
         </author>
      <date day="10" month="October" year="2025"/>
      <abstract>
	 <t>   Traceability in supply chains is a growing security concern.  While
   verifiable data structures have addressed specific issues, such as
   equivocation over digital certificates, they lack a universal
   architecture for all supply chains.  This document defines such an
   architecture for single-issuer signed statement transparency.  It
   ensures extensibility, interoperability between different
   transparency services, and compliance with various auditing
   procedures and regulatory requirements.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-scitt-architecture-22"/>
   
</reference>

<reference anchor="I-D.ietf-rats-evidence-trans">
   <front>
      <title>Evidence Transformations</title>
      <author fullname="Fabrizio Damato" initials="F." surname="Damato">
         <organization>AMD</organization>
      </author>
      <author fullname="Andrew Draper" initials="A." surname="Draper">
         <organization>Independent</organization>
      </author>
      <author fullname="Ned Smith" initials="N." surname="Smith">
         <organization>Independent</organization>
      </author>
      <date day="17" month="October" year="2025"/>
      <abstract>
	 <t>   Remote Attestation Procedures (RATS) enable Relying Parties to assess
   the trustworthiness of a remote Attester to decide if continued
   interaction is warrented.  Evidence structures can vary making
   appraisals challenging for Verifiers.  Verifiers need to understand
   Evidence encoding formats and some of the Evidence semantics to
   appraise it.  Consequently, Evidence may require format
   transformation to an internal representation that preserves original
   semantics.  This document specifies Evidence transformation methods
   for DiceTcbInfo, concise evidence, and SPDM measurements block
   structures.  These Evidence structures are converted to the CoRIM
   internal representation and follow CoRIM defined appraisal
   procedures.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-rats-evidence-trans-02"/>
   
</reference>
<reference anchor="RFC9124">
  <front>
    <title>A Manifest Information Model for Firmware Updates in Internet of Things (IoT) Devices</title>
    <author fullname="B. Moran" initials="B." surname="Moran"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <date month="January" year="2022"/>
    <abstract>
      <t>Vulnerabilities with Internet of Things (IoT) devices have raised the need for a reliable and secure firmware update mechanism that is also suitable for constrained devices. Ensuring that devices function and remain secure over their service lifetime requires such an update mechanism to fix vulnerabilities, update configuration settings, and add new functionality.</t>
      <t>One component of such a firmware update is a concise and machine-processable metadata document, or manifest, that describes the firmware image(s) and offers appropriate protection. This document describes the information that must be present in the manifest.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9124"/>
  <seriesInfo name="DOI" value="10.17487/RFC9124"/>
</reference>
<reference anchor="RFC9147">
  <front>
    <title>The Datagram Transport Layer Security (DTLS) Protocol Version 1.3</title>
    <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="N. Modadugu" initials="N." surname="Modadugu"/>
    <date month="April" year="2022"/>
    <abstract>
      <t>This document specifies version 1.3 of the Datagram Transport Layer Security (DTLS) protocol. DTLS 1.3 allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
      <t>The DTLS 1.3 protocol is based on the Transport Layer Security (TLS) 1.3 protocol and provides equivalent security guarantees with the exception of order protection / non-replayability. Datagram semantics of the underlying transport are preserved by the DTLS protocol.</t>
      <t>This document obsoletes RFC 6347.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9147"/>
  <seriesInfo name="DOI" value="10.17487/RFC9147"/>
</reference>
<reference anchor="RFC7252">
  <front>
    <title>The Constrained Application Protocol (CoAP)</title>
    <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
    <author fullname="K. Hartke" initials="K." surname="Hartke"/>
    <author fullname="C. Bormann" initials="C." surname="Bormann"/>
    <date month="June" year="2014"/>
    <abstract>
      <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks. The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s. The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
      <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types. CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="7252"/>
  <seriesInfo name="DOI" value="10.17487/RFC7252"/>
</reference>



    </references>

</references>


<?line 860?>

<section anchor="full-cddl"><name>Full CDDL</name>
<t>In order to create a valid SUIT_Report document the structure of the corresponding CBOR message <bcp14>MUST</bcp14> adhere to the following CDDL (<xref target="RFC8610"/>) data definition.</t>

<t>To be valid, the following CDDL <bcp14>MUST</bcp14> have the COSE CDDL appended to it. The COSE CDDL can be obtained by following the directions in <xref section="1.4" sectionFormat="of" target="RFC9052"/>. It must also have the CDDL from <xref target="I-D.ietf-suit-mti"/> appended to it. This CDDL is line-wrapped per <xref target="RFC8792"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
; NOTE: '\' line wrapping per RFC 8792
=============== NOTE: '\' line wrapping per RFC 8792 ================

SUIT_Report_Tool_Tweak /= SUIT_start
SUIT_Report_Tool_Tweak /= SUIT_Report_Protected
SUIT_Report_Protected /= SUIT_COSE_tool_tweak

SUIT_Report_Protected /= SUIT_Report_COSE_Sign1 .and \
                                                   SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_Sign1_Tagged .and \
                                                   SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_MAC0 .and \
                                                   SUIT_COSE_Profiles
SUIT_Report_Protected /= SUIT_Report_COSE_MAC0_Tagged .and \
                                                   SUIT_COSE_Profiles

SUIT_Report_COSE_Sign1_Tagged = #6.18(SUIT_Report_COSE_Sign1)
SUIT_Report_COSE_Sign1 = [
    protected : bstr,
    unprotected : {* int => any},
    payload : bstr .cbor SUIT_Report_Unprotected,
    signature : bstr
]
SUIT_Report_COSE_MAC0_Tagged = #6.17(SUIT_Report_COSE_MAC0)
SUIT_Report_COSE_MAC0 = [
    protected : bstr,
    unprotected : {* int => any},
    payload : bstr .cbor SUIT_Report_Unprotected,
    tag : bstr
]
SUIT_Report_Unprotected = SUIT_Report / SUIT_Report_COSE_Encrypt0
SUIT_Report_COSE_Encrypt0 = COSE_Encrypt0

SUIT_Report = {
  suit-reference              => SUIT_Reference,
  ? suit-report-nonce         => bstr,
  suit-report-records         => [
    * SUIT_Record / system-property-claims ],
  suit-report-result          => true / {
    suit-report-result-code   => int,
    suit-report-result-record => SUIT_Record,
    suit-report-result-reason => SUIT_Report_Reasons,
  },
  ? suit-report-capability-report => SUIT_Capability_Report,
  * $$SUIT_Report_Extensions
}

SUIT_Reference = [
    suit-report-manifest-digest : SUIT_Digest,
    ? suit-report-manifest-uri : tstr
]

SUIT_Record = [
    suit-record-manifest-id        : [* uint ],
    suit-record-manifest-section   : int,
    suit-record-section-offset     : uint,
    suit-record-component-index    : uint,
    suit-record-properties         : {*$$SUIT_Parameters},
    * $$SUIT_Record_Extensions
]

system-property-claims = {
  system-component-id => SUIT_Component_Identifier,
  + $$SUIT_Parameters,
}

SUIT_Capability_Report = {
  suit-component-capabilities  => [+ SUIT_Component_Capability]
  suit-command-capabilities          => [+ int],
  suit-parameters-capabilities       => [+ int],
  suit-crypt-algo-capabilities       => [+ int],
  ? suit-envelope-capabilities       => [+ int],
  ? suit-manifest-capabilities       => [+ int],
  ? suit-common-capabilities         => [+ int],
  ? suit-text-capabilities           => [+ int],
  ? suit-text-component-capabilities => [+ int],
  ? suit-dependency-capabilities     => [+ int],
  * [+int]                           => [+ int],
  * $$SUIT_Capability_Report_Extensions
}

SUIT_Component_Capability = [*bstr,?true]

suit-report-nonce = 2
suit-report-records = 3
suit-report-result = 4
suit-report-result-code = 5
suit-report-result-record = 6
suit-report-result-reason = 7
suit-report-capability-report = 8
suit-reference = 99

system-component-id = 0

suit-record-manifest-id = 0
suit-record-manifest-section = 1
suit-record-section-offset = 2
suit-record-component-index = 3
suit-record-properties = 4

SUIT_Report_Reasons /= suit-report-reason-ok
SUIT_Report_Reasons /= suit-report-reason-cbor-parse
SUIT_Report_Reasons /= suit-report-reason-cose-unsupported
SUIT_Report_Reasons /= suit-report-reason-alg-unsupported
SUIT_Report_Reasons /= suit-report-reason-unauthorised
SUIT_Report_Reasons /= suit-report-reason-command-unsupported
SUIT_Report_Reasons /= suit-report-reason-component-unsupported
SUIT_Report_Reasons /= suit-report-reason-component-unauthorised
SUIT_Report_Reasons /= suit-report-reason-parameter-unsupported
SUIT_Report_Reasons /= suit-report-reason-severing-unsupported
SUIT_Report_Reasons /= suit-report-reason-condition-failed
SUIT_Report_Reasons /= suit-report-reason-operation-failed
SUIT_Report_Reasons /= suit-report-reason-invoke-pending

suit-report-reason-ok = 0
suit-report-reason-cbor-parse = 1
suit-report-reason-cose-unsupported = 2
suit-report-reason-alg-unsupported = 3
suit-report-reason-unauthorised = 4
suit-report-reason-command-unsupported = 5
suit-report-reason-component-unsupported = 6
suit-report-reason-component-unauthorised = 7
suit-report-reason-parameter-unsupported = 8
suit-report-reason-severing-unsupported = 9
suit-report-reason-condition-failed = 10
suit-report-reason-operation-failed = 11
suit-report-reason-invoke-pending = 12

suit-component-capabilities        = 1
suit-command-capabilities          = 2
suit-parameters-capabilities       = 3
suit-crypt-algo-capabilities       = 4
suit-envelope-capabilities         = 5
suit-manifest-capabilities         = 6
suit-common-capabilities           = 7
suit-text-capabilities             = 8
suit-text-component-capabilities   = 9
suit-dependency-capabilities       = 10
  
]]></sourcecode></figure>

</section>


  </back>

<!-- ##markdown-source:
H4sIAAAAAAAAA+1923Ib2XXoe3/FPlQqQ8oAJFJ3TpQxRVEe1hmNFJJjl2s0
JTWABtBRoxvuboiCKbryEfmAfEs+JV9y1nVf+gJS4zg5D55yIgLY17XXXve1
9nA4jOq0zpJDc55M1mVizpJVUdZpPjfFzJz/dHphflpN4zox53Vcr6soHo/L
5NMh/8SNq2haTPJ4CYNMy3hWD9Okng2rdVoPS2owPDiIJjDGvCg3h6aqp1FV
l0m8PDSnJxevoihdlYemLtdVfXD//rP7B1EMv8qK0noTXRblx3lZrFc8bfQx
2cBXU+ie10mZJ/XwJc4bwbBxPn0fZ0UOa9kkVbRKDyNjytkkmVb1JpNvjamL
ifdnmk+TvNYvKlhxmcwq+3mzDD7WZTqxjSfFcgl97a9pnqW5myb5XA+ztKqH
MMi4yKDZsLj7G/gFILaMVyuAM7eN1/WiKGGxQ/iR/ktzaP1iZF4XZZzrlwzl
F2WST+M8/Kko53Ge/jmu0yI/NEfl0vyQLtM6mWqDZBmn2aEZc+fREjuP8Kh+
O8dfRrAVnZ7m/n5kXqTlx0WR/Tlyc3+f5B/D72HiQ/OqjNf5opglpTmHE8Lv
FVM6fpKlLGCs0VjG+i0uBRaR1/GkplaIJAlA+myRwILqMq6qxDx5RL9Niiks
5pvHDw+ePfqGvwFMOTQv43IJWDCtpdU6rxHnfpeUyzjfAKrlswL+rNNPCWLG
6fDlyGEroeBwWsDqAADBzzB6PYzLyQIgOqnhogQ/l3FdDZNPKaDRJIFhYu5+
9ur42f7Bw8Mo758TlpXOkqrW9vf3n8EVwV9wNv3y0cEhbKZK5POT/f1Dc3J0
wR+fPt6/f2iOX778QT4/eXagwz148LBjzpquxenRj0ejybgoh3U8r9w3RZkM
V3EJxw23C76PAMERuNDg/OSHV4dmB0auF2m1A99Ew+EQjhqPB44tulgApShm
9SVcYaUcAHFTw/d6W5GyXCwA9Suzi/d5zygQzKosEIpwH8xlvKGeeG5mms4A
f2AdZs1jwj0346KoiTbMsuKygotsxomBzpMyHSfw88bEdD+L3PChj2B5aYV3
b42X1lSrZJLO0qSChlk6X9SXCf5/M0uS6TiefDTLZLKApVVLWH9cR3FGE8Uw
yackK1aA0WluVgXgZVXBtcONxW4zsKAyAYQG2KwnNYIgmsKE2LKCVlPeBYCN
voDRcJW6cB8kExi+KEcRwXqZTqdZEkV3EJ5lMV1T/6h/a1FWzOdI0OluAXUq
B/rzBNf49cf1WtYGX1xddaPz9fVehDAzEyDl9W0gDNNGFq4VAhYXAV/kNUEf
gKWHDwvEszczoCK2pc4cOYDBFgziKeLSwKQOvahDnmCzuNzAyoCmjRNYXEJj
RczrzAXg9Ec45OMsxVXgaWHHxq/nSfkJ/okB+skMwDuFFUVXV8C98GDMwegB
QnBo7/T1NZzkETNQhaR5q4s2E9gnbgyPBskeIJ3dsAOB3owIwFsB+oyAzCZ/
WsMyM9gqQa4scbQCtztP4NShG+FWtZ4sgKlVdbKsdKZIIGO8E7hM64VJ8mI9
XxhLNmFDsC7Y5tSUuKJJvK7wdPMpDgHImMCUZYl7/5Qobg/gHlTrjKQKOC1g
imVskhkMKZdEuka4GqCtsJsfBGdxJ9y5QigmMaydIIcXGw8EwVWly1WWzjZ0
2Hr+AOQ/LNIswXMHFMBbmo7hI09IU4dj+8MihpS48yj5DOwbV6K3CIAa14DR
NUPDInA1YFyDERIBXgXALOMsAqnoErEdaeldA+cXI0AzGmBggNTW6WSdxWW2
MZfAE5GGpXNEJLqKKEOM4wo+yhJgjGUKuyFounNJsoREEe/nar2inRK24AGs
Mjyf5QoEJGxJ5Pr4xZszU4z/Fc7MR2HejSUoRPsQPdIJ3p+CtiKAjA1S/wSB
uIBGDksvY4+uufbJZyA/iI2f4KQBR9ZxZj7F2RoGxpUC/QaAwHeTRQJAQ5AJ
Uacjk0vBm4YpcT9Z8pk3OLS7Mz63bg2yhGsD30+RJMAKa6SURL35Yri10lX6
DIs0fNNohTEeGkFYMBbJsTkucqRWRM0RNS9A6EjzAk5tY67u1O7TNQMexFiD
cmxldl7/dH6xM+B/zY9v6O+zk3/56fTs5CX+ff790Q8/2D8iaXH+/Zuffnjp
/nI9j9+8fn3y40vuDN+a4Kto5/XRH+EXXOTOm7cXp29+PPphp+PMy0S4aoq8
YFUmeGgxyPuWyUKfF8dv//M/9h+aq6v/A3LBwf7+s+tr+fB0/8lD+IBIzbMV
ueA40ahNBCJwEhMXRTI3iVcpHC3cJMCbClApBxGxTOAm3/0ZIfPLofmn8WS1
//Cf5QvccPClwiz4kmDW/qbVmYHY8VXHNBaawfcNSIfrPfpj8Fnh7n35T9+h
8mCG+0+/++coYiRBtAEEOSL9gA4XOPcK+ZEeoPKQHTov7wL7TAiRu49TIzua
TlNsCKewGTSwgAh8LUuJXgDVP4TRoXmcibpBNwfpOihsdYxENl3G82RkjjJY
NfIPIsx2RFCnkMEgasFouI0N/TW0YgneyZhvksU11AoN8DhcowHEyYBGCEEH
gsA6a2MVOX7x5pwkHyCjIwdShKMquic5UNVkB7nEuiIEJ8ERRPkVkabZOmco
khA4KbKMSGVpB/Cp8KwsltC9g7HjYaH8h+ItXAGAaIlrT0BJU2JTrOvVuga4
mebqcHF5gQ3/tE6RbtG9BDG5SlBUrxHkK2YAvA5LB0EKCn5B0XODJBjUCT4X
b3/E8+CWkowFGqLcfMALc/T2FKh1n5SJUpNsgmFB2wWYU2c4sGJcgZxEx1KB
+gdkclJ9i7x5WiS8NR4MjjZCDhzXBUpmxYSnHiGFJeUCuPS793AJgHACVRUr
A34Sqho0SPEo+Wcm7yqAmzr+CJx2vCHMbp/WKDqtVWCuhO14IhDKo90dGYXg
dJYwQSDzj2j9dgEouBBlhbuAB0qIQzfPmwkk9UIEGAARaK+TbD1NprC6Gc3v
FJGFYO1qgxvFefWCE6kluXYDMi+KEaDLZklTpvNVlUvZX9TWQmiiKWAIbUdG
JBUNxRoCDMo2a9SEqwjXiFAsC7hGKEDw2qywzjCxsxB7EKGFcWpWoNyh2osd
ZlWibQNETBSphiCC18B9BeH58703IHuVKNK+taos/HJRboYnIETCn2frHBr+
iVYKH4F7Mw0EsegNrbJKBryiif3JoLA3ZxFinCziTylARPbkQCRHiUc/i0Eq
GajqkDsGaAQ0PDCrMkifWjqjhZvTCQeBCoongAoz2pmwHew1psOIx0BPaGQ4
IrcHghjNvi5JpbaaU/j1sUjYCiNU9pSfPBo9YLWmX/vjwYrZrEoQJQDDtg3e
mNtJcWib+yy/7rAItkMymJW8XhdVHRwR9EVWQUIanzziN1w3X9Skm+UPGsEd
qzcrFDwzpgp+czia8xSB0NQmSDOFy5kP3WGqbrI7TUUT2iOiS8oWMSVQK5C7
EMc1k7QEeoq2y0kygIOUnZHuJuJmTqM2x1+uYedjkuiX6zydkIYngLb4MTLf
F5eoiOjQ0MauC/QUkLtYNEUmIjgs5t/GTQUYTsiegrJ9xAuz2MUrwv/DH4C9
AHsGWO2wdE60bIfOwEoaCHlUvnYi0VwM0T6mcMiEL5Ms+xY1Clq90EaviSj+
SvCJ+QCOeoZnwEMglXLXQIXia6SLFTgPiEop0EXKD5AB4A/8rgS5xCnVDqxM
KviniPVtIoosOZNJOi6nacUrBk7E+Ai/AauYrbOR2G5ApCkL1G9BM+bTIdID
yDxhYoj6H+7AE46Yi60rVZUDo0JELGGa0pWNy41w7yRHLow/weSZT25ElNOp
eFgkO/UE7T/IyXg5zDKKjMm3o9Fog8QjGOIfAHwS4nntPANCmM7A59IAgL/8
5S9kv8SvlXc/Nz+zGdixeEtghulUrNrm0Px816yBwJhfBv3tKyFc2B7atltK
g6EQLB553dnUEqchEadtTT3t0q336u4//ANt1HGma+5618gvDIL3JyA/5WQv
jH5BGEVRHzDQ9FxbUcxx1MsFinksE6OZUCwtUzF+EPhDHpyK1KTsBAXAOYnr
SOpQZAAJ7TLOPjYpBJCcVYKelAmQzzJBCmvFcjG2oMXIEZQjIIPLVb3hqQCW
RMGqrqYi7nBDFhep64AsQpGskW4tWjQs9zjFAxr4tjmkToG4wG1Cm93T0cPR
/v3R/jYON2CAVEnGtow48vZvYaKigA9fOampSp+gV8OJIJxWcb1QaljJ5UqR
VNoNhsfcNSOdeGRP3HSdeD8eIV3chuuotSSzggglCK4REDJnm+cm4j8ZmRMi
ZkLbAZK9uItG6uZ5sCTpthv7m01yZm6qqmnXYhYFsBa8AwCDoLauTIZMUfG2
ga6jaNu+BbM88SVYLZr7mB1FPQfds3k4ilfEL2NkkwMWfqvEaRjBRSDh+4G3
8sgZ81jhQpDT/nCQDvSoaIiDniHwuuM/lzmZ987QwSKE6aUb68jsNvd/H1kb
Nt+L1N3Y6NPXyW+z19P3Rbvvfrtve6F9/bYt9MUtFvqiZ6EvbrHQF10LPW73
O7hpoce3WOhxz0KPb7FQ6Bsd9d5ZwJR3P+8P7r/7xVwW62xqybeHuczGL+PK
cZ1LssgLcQKCFwB+ZM5BqyM7OJDsXhJFUx8M9ttTBzvsI3IqCTh+A4uCW9NS
d5rsDTcSk1w2Mm9y0RF26mLFZGWnNUI1UB9KXSIJE3nV2gxASYma3ADlM6aY
RP7hEsfoa4bLSJsBXSQly/pz80S/y4oYhaWn+jnNPxUfscUz/cZddoBGVWTM
GKDF/iNtsoo3OM5wloCsh7881l8msCWacwjCLhrn2GIATbwZ2U313BzcF2GW
ODXqPOOErED5lDgQ25cSK9aotsLioELmxqMTQ13q1AnR8ER6I9VO0NApyrCT
SKg5qqPsnUElrnVwNDKyDRSeqcllvGF+TNog40Za+ZpLHf7I5v2Qi01VOgkR
rcE4GrtvCKYyEygk44RMD+NNTQsOFeyoNUtcC6I39GxqhSdWkP7YmL2HD/IH
2ajjv7RdvCdqGJwqC67TZUAaSFlD95B1TYp2Ap3wSleRc89O14niSfwJ1LR4
nGZpTXYugMhQ9uJ5fsSXBNLARbkWL7uVZx27G5kXRS3sEm+adCOXZo9LGdeR
FXDlC3T5WmehakpVUoojyYPbtFJbQ9Qw2uBoH/PiUg4GwWHFSc9GxEfERLN1
QJ6GYc2VaI7rcnAR/DNrI4gaivDIBKKIeDORworTzDeIkBoX8b19mc7JegcQ
yeKqcghfyqGS1omqsRjXl/FKNROmjWTbRzdp7iRmVoXeeVqSoSCwbjc7iuxP
b/ByhBZkQkFrQSZzQWhBpgakC+E3zjnRiqcA/cQZiyPfJjEh9x4eNkO9adtr
xINg5EfU5TpgYwj+S2I3Eym5E7b9OMFVKbIm04Hn4UbIOOMOGySRXlobVLyS
ayVmfDR4FcvEWRPZtb0UUiuGg5KQGwMK4g697TCUxpkYcjs8981wVaDergEn
HSEvhD6Rv4Z4Pi+TOVm6iLm6ix3CPAjHQFeY7ym4HrUwIUJmFWdwUeUgvZHx
Pp2TXxjPJLhNl3AY9q5FCFUGH0Kf6U7gNlYrUzpjJ8uEiNd0FHXYUdTxtdV+
wv73HKa2Xwl+HLasKtT2ubmKrI1Cmprgv+f/bKSD/Iy2ie+Md0+GeeH3gg4Y
/zVw41IjwQ+/2c8i+vpmnnvicldKthkCEUmXFZtzwgEJk/0Ba6Tv92hLXW2H
ZEKllk3zjN9KJFW3cfy4pTUdqGuNP8I/FIeDva7bAHPXS76x3Y/tLzISdvbs
QDS4ZwcCGtUDLzlZ/tHnP24u/fL9qaXQON1vdDpHagc4UYgGTYMcbczKZlPm
ARyhKxyBQfhdd4d1mULrGhBHbVuv1iU5Radw3TGwiwzJvg3BRQtU63HF4U5G
5KPqkFgasRkxX3/owMYPSEM8whCYi7XR9TXbhAXhrL+yqwO2QGOQBocpRY3c
kau4Q73t10BCiCnhzW9cRxumhtZbAiuMPmCRQCQgZNCxYwbmp7NTsciTCTj0
r8kgQnrlU0O9GXCUC1q7q0hpGC6ZzhPDDxBjJuKV1BO5H+36LHi7S8ia8UKb
hmWccQMOhCK7IYvfPgNxvCigjRQmIi6DXkTk40PTB8s22ClSeJD5W4x9rfX1
7Mk6tWVznXsb9F8MWjVIXcUyrVnmO0J+y4EfHRwAVBucbYwWsWq9ZGEjzoBU
TTcaoOrBxooMTjKxET4AhlGDl4o8x+54dpESf3R2tnxq2WZgV0hJC2bpd0Px
KcArc7ifs3VGvtDIyrnqZfAQgz3kxZikLLZNqgI8ZZk72kaL3KWBfVWwon6A
k5eIPMwxkq0eCuskA4aP3eo7j6Aa0GYotGMB6ia5e+OmuRADPNxpvj76o0o8
PawwQkmHfLlpiTeXAKIuHwu38GgHZrwW7MeoJFBpovBQJYKUQd1wAq3zTBDG
OX8amIOimJIiQE+Y4+SwQWxQR0dEWTkyBYhWEHScitAK4IUzZxUslahDpAx+
UDV6zvIUqD/A1tOtdzEyh2Mr4LhT9qfuIQIgx45a84aCa6V6MmvWA8I+GnEK
AlAQo4n8Z5LkcZkWEuhpYyspgwDWQvGbZeV0NU9s8qi71SDYow3LXuQIePgA
XbJ4g8J8bQ1WNl4j0JURfxyp4P3yltzU6NyOHQ0X4ZlQ2a2BSJxdnVuN0JFR
aKn2g2A19cHzmTplFIdEr+UsskM24NK8uB6EAgVzty/Gev/+VrYQaB6TRYyp
CqCpVwCLkBtGZ6HbiaOduIWSZIIsSEmWNZN6uyCrRc6uZLqlnuODNxHyUMV6
ezemVvF79/5E/Bt9cEIWEcSyB4KANcNoG7uysmN7anBRItkIUQm6RPZUOzgh
6Nd3OhWAQMe2Mla4NW0buB7v2yi0kHQVZQ+FHpkXQjsayiCqTbgtFwgvMTfk
/08lhJyDBCqxfDD3wYhC66RsMkZUvGgXPQyDGV45pxNAjmyQaWXiyFQ6R5ZE
0ALXEzlNNC4t4MqJ0sikmXlgjgoNna9uRZarWjuS4LVGOuhsxVwoqYqi0rng
KExszwAAVXuJcXdw4PFczNAvEmcR6+FPFJnpDDzLeMXuqPYpeK0QBhVLscoK
URxhnjlLM4rb0fj0i80qGT6ypnQyEnXhDzKYMTPpLDN9aAKqTUudl/Om5ASy
wPXOMdblNQWQMmCtK0DH9jQcmeRitcRyQEaeKiGh21nsIhHSeRsmSKhphr6o
v2AVzlVN4CM6F5yfL7DPvfCQ0PrXbYA+c1srG9C9YRoHZyQJViFyDkzXPBx0
Kvob3WgRjyZJKAxhswnG0Qf5GSTNcr+JDbKPM2cUYWNHK4bkPcP/vQd/1pLv
mqaCzCaETk0YNHrQhv9COmqLxNHymhSOlMImgaOWHmvzkssKCpRx9nHS4Ugm
nGKIm8RQoVyxnqCciIE7G7PLygrytXINkg7g0OVig2KTRGW5BmRyjSRM28Yw
iYXKv6V7o65lq81jjhGX0GORzhdDdqZjpBcQCz92SM3JESOkZCgRNqKWQa4g
vCKkclAwE4eMB1HKrLlKXzYPp8rLmJIu8YY7PwjZhivnKrMbwBGGlOaISRvJ
oZe9waBATol0aY3rsWEZEdEd6lKOegYtKmB9uQSsJtNDSn1xn83xm/MTiofC
lhQP5ax4ZYQkPmlN3zNXnM1vngoaFSUIdktywtw86DrnvGMMTjs05yC0xri4
e6+Pjk3g7WOE6gUDuRG2Lk9dDbdbl7ucwZhBnNI0AWJeUuCNbX4PVY1Ugkes
Dk4pXLeYyYfFjVNZmRJniOlWUkCoxPSwAtAzqY1L3bI9zkSIvBDWW++JHJuA
3jeN7hygJANWEWqMgUfBeSBclL6klEG7ZS9MJVB1yGhzCBQ+jHRW431VzOqh
Zv2h87ZnRBvxGIzonFdI65LRfDSIpsVljo7sexgJf6+6jFf3LuFGJHvdA7Ov
fIjucUrFP4XPKp9XEkDNPBDVHZADxchf28gsaIEZf4oJm6Qml14eWvZaNmn+
CqUkl2HhEWZBrsgK8Egvp8l4zZ4nm/R5wT66qZ3fJ7CRR2DJENm/JrGAhzF4
nPbGPppmkq1vPGgEUnkaKO/IeTnETECOJeiVFRuKdCMB9IOaqPFU35/SwXwY
iGsUhTNKq8eYM80EIKsVNpt6QMsRqQFAQMfytovMy+/4A1lTW84+G6oyIyV8
WdSJr+oOmnwKmCpA3Eb84r33XdxjDpYT7FGbDS97RBQXv8PLEBHFtPcE46OF
2++oFHSpzthlWmXAPCj3aGZHZMSN0BaxhEPMNpJV4BKAUBBDUELnT4m3EsXi
iBJpJ2n9X//277E6o2JhBRy2TPkqDGoXY4gsDGQZxDu4xNC5KAfOsier12h1
a1wW2LilD8hM9eHGe/pBIQ1AkoyTrmsbEeIZNZ6xfM07Cu5uQ+Rp+2r6hDYv
RdQ366sc1IF1ntvROX589AsyK1veAure4VionCOXjoit3R3x8QMK4S8JcyQn
ghPpiLhaD/eqgO82I8MJ1PUNa2Z+FGgMgDGgMceg+Q78GSirE3E4yVHtsQLv
hrXzUo3ZHiwJi1wsiB9Bj6oH5t6bMaDeZTqtF6hLdIIHl+gG4eQLGhrkxX3q
xSn+mrdAi/nTmgIm6y6YD1CAO8CeXrAp3XGrUcd+r20ZY5a3WtJCsQrmyJEd
zGVPqDoPESTvF7NbAcm9upJiHxyXDA2PLs7NkZcBvcepE7gyr8Xv9Wbv2r/I
XAo0rdzTZMOKIlsoutaf+ESMfiPT9a0zANpvjsUowtdzodvgKBHUFBot1dqk
WjLziq7ur9FDb+N4wualZ7ILfuHUHfjZGYXE3YW0C7kO+iq0XcPfoptbFs6V
pvvDEGrkcPL1ST4tQInwJ3VwVxDDif8kQUQNQ3uoozFCL5Ei0bnoQN8gYATV
CoN51aCTi9GGjNKX0HGRsnV5RkYXwiRO6B9FZy1OR9QIgxRAog0TTJx9MsJS
S8y+WqQGgWkPtCP0BaexMOJlYLAY1bnAaLFRIyl5vBHC5nwdMhEnuwFsyeRa
wwXfTUfJaMAC0z0bc+Hs53tADD6TZBdghLdimA9jw+rNium53QlNJrYiuLNx
mf4ZCxmkyiVJnqZGVtdzjgamt8DEhkTv0C7n+Tcbvs1WySFUIN1JEEJ7WcpL
JG7zRALKW6ehGUe0PlhK152VwiH5p7Qs8qUqOZG7H61RKWDGxrKNXSjMCC12
7AqQSDJ3mciAVGnVGU+UELnThtU1A2Z3/U+RJaB7VrTQ2b9Fc6ZGEmOnVZpw
RG84LYoES0yG4kAlDxcGNyUID1zIZZiARm4E/vt3amWVFRK0AiAdSeY7qiwo
nKG0zLoOVu/gGi1cR2cWT/B6c4Q1CFHrPPey9Dq4CvyvuQx3XFF4WgFbnQIp
IJterSJincxLCbh0cCL7iUMV1i04N2SAUmncxawkN5wNmWjJ2/RhondlTqj8
VNDuosDD2T05uoCWxP+G8DdFAHiOp1DyQe8LGsfIkUOQUEFJlDDepIcF/dAV
FtqCbz61xQz4SPEY3py37pQpiYKQ/IsSAIMTx/QydzC4F4gQQPZ0ZlwYzu85
TLUdeGFFAMu5bYqR5TdcIiJLPyVy7HGDpNu4z6mfZkQdCAGEs1BOUpA/7k9D
VjiUVV+l5ZKu28sU6+aN1zUVuaMgsCrhOjtNptIczArwEqNupCgOe7iJ9zSB
c8sZbCkNO0VzoEHHZLIM2aEdQ7d1ysHwldgIZP9xQ7R3iwoYvXPqNLGXJRIO
pI1XoFCpwIIX5OhCD1pC8RPGRfLnyWa7jmIka8aiHr9uwa681//IcvuxSg6b
uLYaV5qItKvFMrAeBdK6OVXh2JNhHfYyVM6cxKIxmG2RxTFkaxvh3sechi7u
Oe5q8a4TXc/EaAEg8mmdY+B9cGkmEEs9LHd9ySoh6/ZoU+VltGspFdJcWmIK
RTjb8ne/9+wBNiPF80KaeI4UuDZSxqpFu9R2as1bgg4O+8gUq2jU2o+QI1DF
U9pXYKveQpdEOAp3gIe8XvpqriJxWvsqkF9bo5GvEqAPMxqO36g67s3A4UzU
FNEoPecTmdAoXIXCH53tlMSomg7DS42kFFifbSl4fS7gS/as3huOVha/KcdZ
uzEoTp80Gp/TPKRSdsxqaRkJupgki0pK2jQDq6UenEbSJV0wEU7vxUzIwOhi
begvQZoCjlUm7OnkamtqxCw0ZZmtZuhgi7pUOat9c5xfU/+iAD+nXrog7Wg3
54p8yedFDAvEagroP91je6erutIlnHmeXJKqo9BU4Xa8IVb6fVxpnkoTcI3l
bwmrgXGOWtVx0qpaJxpoYKPaUPx+996mDnW4HkzUzRM6k167VjPqXo7rzhUf
JespcLZ4F4JqKsHCIvxhgUbN2KvLJHjuYYFNFYxbU3MoJFAIMiYExeP0Irk4
L73rICDMPGRkyzcqzdogQrMoVltYxOWUFQ88W03A4KA0beOUE26TkEFO65FE
eiVYNLSNbVwXSq/kEbFhVmxpt4sl7zrWERqLRStLwryQjsQC3qAwTpm6LDIU
jVJOmhgnEuGnLIQdtSLnwh6AvqbigLAVOTHQZhDQ5ijAb1mAmAulhiAJD6qI
X5A7QCl95BUi7ajGe30dlKhkMSszq3VJ2davPcJ3JhUhxZrDN5X1feEUTE/J
1cR1rO0eQmwQNrNBwJ6BzIH/vo3LejMIb1S0zlH5q/2IGRJgyAzobK5eUbCr
O4FlOIr8uCeO4KCMAYkTdzZK4qusjUrmWdwwuMYq2VBFKRviieVfuHIIHeAg
NG868qWmQg7vkY1SzJ66ckS7H7jyPDiaeq6rgUQT24jZlxLIYn3J/fVxkQ1T
7kxAz9pGaybiVStqpJWM4afLOFdxAC/Ka/lNM8HCjfSL15/c5GFvPzvmN6iG
urQXB5+uPh0dJuVmVWOkQHFzB8nK0EoKt+5gyfhtO3DSWPeuOztQwdNuIG3r
0H06nR28fOjWPGGHu/AB/zb9/zU7SABRC5UaSTy9+IJpNncpn+o7DOuR3Jgj
x5w15NzrggoGG7w4Uqodnv5SctGRN2nBjklyiCIu0nB1H2VEzm09KLlrFAnz
Da7mG7nEVJKIRMTLNEOUBh7KAgjdvHzjXWBJ05PQDBuu7nmVOvekDs71SqV4
WsHoGwlbTShUBbc+46p7PNEsBd7E4XIVyIAxeqAwE5tDofAr0epJpiP2G5fj
FLhEuQmzpqS7muGonjAL9kKEfdwZiBqlVT0992CAYtbpYGNKlrbYoShBYWHo
/gLbI8cacGQNjB5v/Px6jVpWp2tQ67NNwXlbHPg6lThNJZZs1LN0V2X1hlyo
RWSX8YpgEoyGIiFXeVQMkCArNLUXgRZtx2ebQVyWMUs3qjyllYbuw/GGOoEE
jestp+Np2jP8WnYHo476qMFjAOhWk1xoljJzB2Te28BL4kZ8exAaTfzFIGw0
dMMdgHXuW/94DDB/9/ODgYH/YbULoDTw8d0vAy/CAqdCsYSYrVd4gMochaL5
7gPOj2r8fsxJvfSrhraELYK17+7vkbrLm5MAQy9shKy7dP6typF+YUcPfDAz
+zvRLsQa59UduN2Sjf011l8VQCZcPs9PrmBrM+pt2+3NoRMAARLaYkg4HPXk
iZOQ6sJ65X7kSffVDvK709CBLHEZ3n2jgEmusxF7MfxHXOG0ojKTLflZBdd4
VaudXwxwoSt0Q7kGuKmsmEu18SDjuO3ds/ltIFGj7guL9hQJkpAlGyQUfonn
WCO9JEhpPPRlvKF4I1t/3U5ssyOGQ8lOEirvIuRKL85ciwQOh2zlUCuOo32R
byfabauye11Oy0+e/YqEaKIG4yTBymqcPoHeLLTa1Hw8zizET0W4lyI6tGc8
Ln/KllvK12VVmcE2Dm4dQR8N81QkRa01zLrpXM6DYGtQeEjoh6b+whGFKJge
Tpq1nshmBrlUMi4f6F0GLbfPXdUN5Irsumyc2LhYS1UU0ZEO+gDdymOqNAEf
tKSjNk3qCZOTYFfHlhiA6qR/I4VB7ZDK5TcPxc8frQBLqhnfYcGlpRbM8oxj
owej/cfqidk/eHh9fWjOTv5ldH5yPDo7efvm7OL0x9+NsJ6TPCGhhmpb80JU
LwrN2aiPXhBdWbl7KISKkCBz9DO7CP4zNqRQDf04z5Ms8PBhPTQKticnj5hN
kUCvimLmeRVLq4ZupzI2NQqBKcyL2TQVOWgYztCEuSimXIcWBsbcOj5FChgq
XXnpMCEtsHPM13Dt8zpJvDQ+m9L2wb8yHwTZhPRt5yb+YR7IYaq5k1dL3mR1
RJFAxH533rzk4PHBeHVZccRKnrPCHdXFpMjcyl9e/HAOc39HePPwCeaFD2Gp
nufE7q3J3DxPKceAW7ItxhZX+RR/HoiHXW8DHZ0+/tGyJDmvKB/nBxziPUYt
7n9AhOHPr+PJ/Q/fBmiHXSQv0bfxg55QbpgqcFfYI+qs9z/IAxQq0oW5igJv
Fz2niIcyH4+QTIMfgmS9IrNHRnJgmmVr9m9bxwMbDUDcJ7wbg0p82a5KSlrc
W07IhK73ngcFIBxozLuoV1scqZGH28NopLB87RTvL+I5ZpX9TWd6fXR8/28/
w1+xlWg7cJ6bO49H+093u1vt9fS2ZS5WdumHtr6JMevc//7qLt4RlMyBXksR
V6UO3MvQC1vB1n9yQ0iREU28kD7RL+21+aDijT1pbwwbdeyLDvJ/flt1PO/e
kNfSBFhh7rVxRElEe1v6C4wRtiSLyY+FFiP0edU76vpOjrppcdVfCWBKQ4CK
j0mzFkOGqE3UUFGROXhLV6/T62vPQ0xUhpDZFuBuFyLSoe3ukGiyYXaSrhaY
IvjZxULQBmmlGiz5r+tKQpJda1tCAY0DPK6uKSw61F006P0KOCi9oAGg7j59
hnkXaFQxRgvN0cn58PjizK4BQ75RWtfMhbnlj1JTF50kPitgPZ8UTLHdDxrA
cwSHDSLNvHfL+iR1HzV5y0KU0VDETewMOFpcI0iELBsjB5HV9HBFxA4orcOl
wSY2PGHhyo6ruoMlCoMEA7/s2MQmicD/tAqZjUgPEikjW/mB3heh3IJwuYEE
x1Uy2F2mylIUtldhkPyh/GgVLKepEyYsAQ000CryRWcKWYzDNPhQzFDPdOXM
c6GPXMZnvk3+Jdkwy/z4gCHK+hVIHFoj/epOGucxyPr0o7jFk6rWimz4riUt
ryD/Me8Jvp9jgMVGas7tLup6VR3eu3d5eTnC8UZFOb8HKgjQERIz7+GNp/83
+ryol9me2fnqh/V2Rj2LxMgLcVuSwQwpq62O1JKvUzJXmrdZgoIfG0j0mUeg
R1RqIiy1hC8s9d0j7xexGttv2p6VW6y/OHrL7/Hk9VDCAVnyfXLw6ID9dCRV
T9N4iHYJzxAlOHB15X5FM2iwUf8nGgv2XsSr4WTWu3VdMsUEhuueThuwFbRI
Xfm9/x5saZ2AOZEy4LABHCF4T1dLhF9fe73Ikd3Ti0pFdvaiuaR4WddUkmrm
9enwp3XO2sqjgTG4hIjDWkoPVogO9O8gSiXlnN7hwaPHCPKDR48OUX2mRxUq
c8Ta2h+QlJ98xiRv2MynNLnELo8fPXpAnaDzk4GREfBbHEPoqhr2OFQGuz08
ePbw2eMnB8+4L7aH3nYw+zMM8opKfRyjl53/pMcgp1F0ptkjao9prphEj84l
YGzoPGHTPbuG54XEcBEhTnibJW0ztGuT4vIt88f5Op1iBRwyu+rTgLgUeow2
Y1LpWeyYOqE3nACfUk7CnTshVCm6UaoEyfOBNI53LVCvHmdptdC4wfYrgmpF
KzzPAJkcsZSMvzuxkmvdX04/p9wK9eDjLpOM+PyM8t9jfbIPh7H5RmM0bBYf
ZZ8czFlrSSqum+lBOK5sf3Yk8yVwhazcqLgkLkdXx2xwwYcJ6/UU7akn/l5Q
4pB+GFrOdraJz6oapIYNeoT8bykHs/rTOq45MtzOP02rSbFGPxXIRmd2Ii21
wb8gpOdYFnk9m+HJklfFe7KMMh29m+dSn4pmphZmEMxttum8EHFnuuYcLw5+
0WgdLUDGg2PEsboYtDA/55Zi4YmPGJRpn0Uh1PEyRFlM/nOB51yzEkTlbdJP
OOeay2SH1QXQwENgZDmR83ImWYGDe+HY1becPOrMp+wUlEsokHbF1fyHOWkC
DGQKLjJD38beKdevLAXAAiMfeQIKvyEgOOYwag6nOXPkXyOExCdhvVUyPidU
nMqNY3NP7Wu/LkNSwzq4qivjoE3eW6H7l9PZMQUQ8bu9P4SImnYGGmYKZGil
j06w0cfmhpChvAcB0d+hJeYuW7jB15OQYsYxwCfh5XbXCUXwde4owIQtkTED
mrPcpYziipao1ywA/wXJ5ZPa4mkpNTT4yCgeqnGYSuAqLx4vieWhuLi3uaoW
BBzBQItjxbrGc2FOySkDc9EXsySf28rVtqaOuLgtbaC3lvGmSDQulhhZsm/e
IbyOLkPi0WbJTKy8Vfpnml/M0mnN70XpHS1y5zJ0hTj80XEoHp8XyUITVlKE
kZm/vEaBjer7AP3yiNDVHU+Uw5Z3/EzSe56M8ht6Gb1PvGfSs7WvFKWmhViR
s+VFiaKrQ3n/6Dqi9aLmcBgd+mODDrwe1/6P7YVaRu8/sn5o8ntxFL3RPF7v
N6M/nmhx04BtUOdxii88mV1UD/ZgEWprbre8ugJ2OiGRjt0X/4iPuqNsdtoo
F9DRmYTdM61dENZzIs1En2RG9CsxiJwouWddA8hao/HAjzuxtuHQtrPdIAxS
b4Kx4JVNAdMgREtQcEVaXpGMMGgktw/IcJkNevRmJZmdcMI1lfIIS6qwLCDh
7uIwmSZqx8C3TjN1kvFLpL4HleOTs9lQZDVN+hfpkEDn28GYNvLtygtfG3J4
QYMqWQRCOy9A/uC1tE6yts/2cOwTOl6BUlAAimOzCCc2Z/EdlQc5A2pKQHFV
CZmtOiCNKO+hTBbi3Jfqd66UaGXLRWClOa+WpXtnLHST2yJaWsTLaDVOfPm7
Fnpki57bVJ4gmMSVWktsacL+msgqoHqVPNlR3aptCkTh7Vql3YBL8lWzd+vI
T4In6NqiW47u2BvWlXAW/uBlfzR/OpLcCU4BlxzpahAmfIPw/krdHa5MV8eN
R3ZTbQBgnyVFR2shI0NtjyAFzirjXoBA7NzxyS9SQTR1vIXmgAL/aGDMNENF
oKRLKiXYJ3Wgr3sCg4XTH35nsCs9z47C0S4S29+iARYV7j0maSQRkhCA/fBx
5jc/IhFGAAoOY8lTbZDDAcN5ERDvHfNzn1JxJMPcoENzenLxKsL0009UbTTO
AumZxyDWRraOY7F1vGJbR4PHqW2iz3BCwoCaTRpDnb7sZFQ+IxP6stPRncqK
sNVi4BzQO7g5VfYuW1o1Er3Tk/PfmSOSn2Dr7TY7cPb4Gvwu6Nuj0TP4b2/g
EztYzNmJ9yrrTtN6QsUMxBp0dYVwGQHxSLx42OtrUItkOyw6fNHdwb/EIr8g
eL641KNoOBx+8f4v2iYQfDFfLl4cffHuL54m1SGM560jVNPazcYvtNtZKMhw
/v51tzIihZ3Z2PqNtSVsMRsAXHCJX8xLTEE/Rbr5xZzrpfWBEMEO4TcOrPvS
a/3rbqVA5V/xOY8vW2yCALwe09adftNWDzQ5aQaf5ARstIBr2Qh1CiAzP8Tj
JIP1/Yh23i/shNHv+tHjAHtQvd4vHU8ffGk8MxpKUg9oZGZ4XxrllvTbrQM8
pAGoak6zv3y5tfsj1/0Yhe6uMbgM1Q0DPXYDiX2xc6hSf9s62BN/MCon2DOY
/LZ1sKd4ks3MiMaA7UI+Nwz67JmPEm4098XW7j6eN4yxd/qNsb8az4MpfjWe
34dfrehAJLPv3TVv9/yISrj7fX8gjaLpGa2yP28d8oBoFzd9w4lg4YCNt7Fu
GO4BcYnw1bvGgM3nrm4Y8aG96H6J13DIlf/D1tFadNKa5dtkUs3yfx2VlAn+
KuSRK/3m/7auM5fu+9i8NvbRjDb+EE98iyU3zStxjHYO6qp53nJwxKSfmtUy
z71inOZ7LsbZPV2jzuctJ33QNemRLdHZOVWjzCc0utVUiIi2fKe5Z3oKeHbP
6Ve+vOXWHjW2RtK4PjnXA8NWkdBbzvW4Zy65x32ztQuI3nK+JzSfgOTPv2LC
r4bm064dWgG5e8LOGqK3nO8Z0VUuEhpM3DlTVznR297p+yyYS7buqy1I2Cwa
etsZkGy80fKgW2doFhG97QxIO7y6oG+5BmH3HGGdwlvOgIT/P/+Dsawl0nTK
EG3X6q/iA1um+9UsYd9nspYX9mTnfWmVOGyT7WOtBuWGaqdR3jQQkmLvHcEv
2xMsbxoNqe0xGv6KeRmvFunEUXW3zJ5czJvGRspq69TYw/+yLVvzpiEf+5JZ
c8jufM6bhnwiB4MpNI0Bu/I9bxoOCeAFhpc1B2vngt401LNAyNsy6K/DSKJo
/jvDYeet6aU3jU1JC2q4bwUxqdW+441KqoKJ9ul1iT7RJXoCbLQ5B1aj55wC
7n9vH1Bie2e9gS9PNQAL/j6jwiWeiRe+Ow5Du3kJNvBMvOSTRZp8krBCfofA
2YhLKjGbuVfXXA4GvoEGS+FKcY1cFMlUGUvZ/424fW3CQLs+r6uaP4g0MD5Z
jhOulctFCY8ugDR+TNQQCxRUUnfIQtouqad1lm19HfaJ22y3Rr0TdKn6xIGz
aot1ru+uBtXAdrUwxMBWdKD0VCxktIfvtkglpcZruQM26WNCZV2S6y7JeYth
osTIpQ6rdRAOF6MG0BOORZOqlEqX+P5YV2JTHH9Y4leWEdGLl1olmXIMCM70
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

-->

</rfc>

