<?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.30 (Ruby 3.4.8) -->


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

]>

<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>

<rfc ipr="trust200902" docName="draft-ietf-teep-protocol-23" category="std" consensus="true" submissionType="IETF" tocDepth="4" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="TEEP Protocol">Trusted Execution Environment Provisioning (TEEP) Protocol</title>

    <author fullname="Hannes Tschofenig">
      <organization abbrev="H-BRS">University of Applied Sciences Bonn-Rhein-Sieg</organization>
      <address>
        <postal>
          <country>Germany</country>
        </postal>
        <email>hannes.tschofenig@gmx.net</email>
      </address>
    </author>
    <author initials="M." surname="Pei" fullname="Mingliang Pei">
      <organization>Broadcom</organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>US</country>
        </postal>
        <email>mingliang.pei@broadcom.com</email>
      </address>
    </author>
    <author initials="D." surname="Wheeler" fullname="David Wheeler">
      <organization>Amazon</organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>US</country>
        </postal>
        <email>davewhee@amazon.com</email>
      </address>
    </author>
    <author initials="D." surname="Thaler" fullname="Dave Thaler">
      <organization>Microsoft</organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>US</country>
        </postal>
        <email>dave.thaler.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Tsukamoto" fullname="Akira Tsukamoto">
      <organization>Openchip &amp; Software Technologies, S.L.</organization>
      <address>
        <postal>
          <street></street>
          <city></city>
          <region></region>
          <code></code>
          <country>ES</country>
        </postal>
        <email>akira.tsukamoto@gmail.com</email>
      </address>
    </author>

    <date year="2026"/>

    <area>Security</area>
    <workgroup>TEEP</workgroup>
    <keyword>Trusted Execution Environment</keyword>

    <abstract>


<?line 107?>

<t>This document specifies a protocol that installs, updates, and deletes
Trusted Components in a device with a Trusted Execution
Environment (TEE).  This specification defines an interoperable
protocol for managing the lifecycle of Trusted Components.</t>



    </abstract>



  </front>

  <middle>


<?line 115?>

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

<t>The Trusted Execution Environment (TEE) concept has been designed to
 separate a regular operating system, also referred to as a Rich Execution
 Environment (REE), from security-sensitive applications. In a TEE
ecosystem, device vendors may use different operating systems in the
REE and may use different types of TEEs. When Trusted Component Developers or
 Device Administrators use Trusted Application Managers (TAMs) to
 install, update, and delete Trusted Applications and their dependencies on a wide range
 of devices with potentially different TEEs, then an interoperability
 need arises.</t>

<t>This document specifies the protocol for communicating between a TAM
and a TEEP Agent.</t>

<t>The Trusted Execution Environment Provisioning (TEEP) architecture
document <xref target="RFC9397"/> provides design
guidance and introduces the
necessary terminology.</t>

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

<t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" 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.
<?line -6?></t>

<t>This specification reuses the terminology defined in <xref target="RFC9397"/>.</t>

<t>As explained in Section 4.4 of that document, the TEEP protocol treats
each Trusted Application (TA), any dependencies the TA has, and personalization data as separate
components that are expressed in SUIT manifests, and a SUIT manifest
might contain or reference multiple binaries (see <xref target="I-D.ietf-suit-manifest"/>
for more details).</t>

<t>As such, the term Trusted Component (TC) in this document refers to a
set of binaries expressed in a SUIT manifest, to be installed in
a TEE.  Note that a Trusted Component may include one or more TAs
and/or configuration data and keys needed by a TA to operate correctly.</t>

<t>Each Trusted Component is uniquely identified by a SUIT Component Identifier
(see <xref target="I-D.ietf-suit-manifest"/> Section 8.7.2.2).</t>

<t>Attestation related terms, such as Evidence and Attestation Results,
are as defined in <xref target="RFC9334"/>.</t>

</section>
<section anchor="messages"><name>Message Overview</name>

<t>The TEEP protocol consists of messages exchanged between a TAM
and a TEEP Agent.
The messages are encoded in CBOR and designed to provide end-to-end security.
TEEP protocol messages are signed by the endpoints, i.e., the TAM and the
TEEP Agent, but Trusted
Applications may also be encrypted and signed by a Trusted Component Developer or
Device Administrator.
The TEEP protocol not only uses
CBOR but also the respective security wrapper, namely COSE <xref target="RFC9052"/>. Furthermore, for software updates the SUIT
manifest format <xref target="I-D.ietf-suit-manifest"/> is used, and
for attestation the Entity Attestation Token (EAT) <xref target="RFC9711"/>
format is supported although other attestation formats are also permitted.</t>

<t>This specification defines five messages: QueryRequest, QueryResponse,
Update, Success, and Error.</t>

<t>A TAM queries a device's current state with a QueryRequest message.
A TEEP Agent will, after authenticating and authorizing the request, report
attestation information, list all Trusted Components, and provide information about supported
algorithms and extensions in a QueryResponse message. An error message is
returned if the request
could not be processed. A TAM will process the QueryResponse message and
determine
whether to initiate subsequent message exchanges to install, update, or delete Trusted
Applications.</t>

<figure><artwork><![CDATA[
  +------------+           +-------------+
  | TAM        |           |TEEP Agent   |
  +------------+           +-------------+

    QueryRequest ------->

                           QueryResponse

                 <-------     or

                             Error
]]></artwork></figure>

<t>With the Update message a TAM can instruct a TEEP Agent to install and/or
delete one or more Trusted Components.
The TEEP Agent will process the message, determine whether the TAM is authorized
and whether the
Trusted Component has been signed by an authorized Trusted Component Signer.
A Success message is returned when the operation has been completed successfully,
or an Error message
otherwise.</t>

<figure><artwork><![CDATA[
 +------------+           +-------------+
 | TAM        |           |TEEP Agent   |
 +------------+           +-------------+

             Update  ---->

                            Success

                    <----    or

                            Error
]]></artwork></figure>

</section>
<section anchor="detailmsg"><name>Detailed Messages Specification</name>

<t>TEEP messages are protected by the COSE_Sign1 or COSE_Sign structure as described in <xref target="teep-ciphersuite"/>.
The TEEP protocol messages are described in CDDL format <xref target="RFC8610"/> below.</t>

<figure><sourcecode type="cddl-teep-message"><![CDATA[
teep-message = $teep-message-type .within teep-message-framework

teep-message-framework = [
  type: $teep-type / $teep-type-extension,
  options: { * teep-option },
  * any; further elements, e.g., for data-item-requested
]

teep-option = (uint => any)

; messages defined below:
$teep-message-type /= query-request
$teep-message-type /= query-response
$teep-message-type /= update
$teep-message-type /= teep-success
$teep-message-type /= teep-error

; message type numbers, in one byte which could take a
; number from 0 to 23
$teep-type /= (0..23)
TEEP-TYPE-query-request = 1
TEEP-TYPE-query-response = 2
TEEP-TYPE-update = 3
TEEP-TYPE-teep-success = 5
TEEP-TYPE-teep-error = 6
]]></sourcecode></figure>

<section anchor="creating-and-validating-teep-messages"><name>Creating and Validating TEEP Messages</name>

<section anchor="creating-a-teep-message"><name>Creating a TEEP message</name>

<t>To create a TEEP message, the following steps are performed.</t>

<t><list style="numbers" type="1">
  <t>Create a TEEP message according to the description below and populate
  it with the respective content.  TEEP messages sent by TAMs (QueryRequest
  and Update) can include a "token".
  The TAM can decide, in any implementation-specific way, whether to include a token
  in a message.  The initial token value generated by a TAM MUST be produced
  using a cryptographically secure random source.  Subsequent token values
  MUST be different for each message the TAM creates.</t>
  <t>Create a COSE header containing the desired set of header
  parameters.  The COSE header MUST be valid per the <xref target="RFC9052"/> specification.</t>
  <t>Create a COSE_Sign1 or COSE_Sign object
  using the TEEP message as the COSE_Sign1 or COSE_Sign Payload; all
  steps specified in <xref target="RFC9052"/> for creating a
  COSE_Sign1 or COSE_Sign object MUST be followed.</t>
</list></t>

</section>
<section anchor="validation"><name>Validating a TEEP Message</name>

<t>When a TEEP message is received (see the ProcessTeepMessage conceptual API
defined in Section 6.2.1 of <xref target="RFC9397"/>),
the following validation steps are performed. If any of
the listed steps fail, then the TEEP message MUST be rejected.</t>

<t><list style="numbers" type="1">
  <t>Verify that the received message is a valid CBOR object.</t>
  <t>Verify that the message contains a COSE_Sign1 or COSE_Sign structure.</t>
  <t>Verify that the resulting COSE header includes only parameters
  and values whose syntax and semantics are both understood and
  supported or that are specified as being ignored when not
  understood.</t>
  <t>Follow the steps specified in Section 4 of <xref target="RFC9052"/> ("Signing Objects") for
  validating a COSE_Sign1 or COSE_Sign object. The COSE_Sign1 or COSE_Sign payload is the content
  of the TEEP message.</t>
  <t>Verify that the TEEP message is a valid CBOR map and verify the fields of
  the
  TEEP message according to this specification.</t>
</list></t>

</section>
</section>
<section anchor="queryrequest-message"><name>QueryRequest Message</name>

<t>A QueryRequest message is used by the TAM to learn
information from the TEEP Agent, such as
the features supported by the TEEP Agent, including
cipher suites and protocol versions. Additionally,
the TAM can selectively request data items from the
TEEP Agent by using the data-item-requested parameter. Currently,
the following features are supported:</t>

<t><list style="symbols">
  <t>Request for attestation information of the TEEP Agent,</t>
  <t>Listing supported extensions,</t>
  <t>Querying installed Trusted Components, and</t>
  <t>Request for logging information in SUIT Reports.</t>
</list></t>

<t>Like other TEEP messages, the QueryRequest message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><sourcecode type="cddl-query-request"><![CDATA[
query-request = [
  type: TEEP-TYPE-query-request,
  options: {
    ? token => bstr .size (8..64),
    ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
    ? challenge => bstr .size (8..512),
    ? versions => [ + version ],
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr .cbor SUIT_Report ],
    * $$query-request-extensions,
    * $$teep-option-extensions
  },
  supported-teep-cipher-suites: [ + $teep-cipher-suite ],
  supported-suit-cose-profiles: [ + $suit-cose-profile ],
  data-item-requested: uint .bits data-item-requested
]

version = uint .size 4
ext-info = uint .size 4

; data items as bitmaps
data-item-requested = &(
  attestation: 0,
  trusted-components: 1,
  extensions: 2,
  suit-reports: 3,
)
]]></sourcecode></figure>

<t>The message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (1) corresponds to a QueryRequest message sent from the TAM to
the TEEP Agent.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token parameter is used to match responses to requests,
such as to look up any implementation-specific state it might have saved about
that request, or to ignore responses to older QueryRequest messages before
some configuration changes were made that affected their content.
This is particularly useful when a TAM issues multiple concurrent requests
to a TEEP Agent. The token MUST be present if and only if the attestation bit is clear in
the data-item-requested value (i.e., the attestation bit, which is bit 0 in the bitmap, is not set).
When the attestation bit is
clear then a challenge will be included, which offers replay protection
capabilities. The size of the token is at least 8 bytes
(64 bits) and maximum of 64 bytes. The first usage of a token
generated by a TAM MUST be randomly created.
Subsequent token values MUST be different for each request message
to distinguish the correct response from multiple requests.
The token value MUST NOT be used for other purposes, such as a TAM to
identify the devices and/or a device to identify TAMs or Trusted Components.
The TAM SHOULD set an expiration time for each token to facilitate cleanup of  stale request state, and MUST ignore any messages with expired tokens. Implementations without explicit token management (e.g., simple TAMs that process requests synchronously  and do not maintain state) may not need explicit token expiration.
The TAM MUST expire the token value after receiving the first response
containing the token value and ignore any subsequent messages that have the same token
value. Implementations SHOULD use a timeout mechanism (see <xref target="tam"/>) to eventually
discard unanswered requests that have been awaiting responses for an excessive duration.</t>
  </dd>
  <dt>supported-teep-cipher-suites</dt>
  <dd>
    <t>The supported-teep-cipher-suites parameter lists the TEEP cipher suites
supported by the TAM. Details
about the cipher suite encoding can be found in <xref target="teep-ciphersuite"/>.</t>
  </dd>
  <dt>supported-suit-cose-profiles</dt>
  <dd>
    <t>The supported-suit-cose-profiles parameter lists the SUIT profiles
supported by the TAM for parsing SUIT Reports. Details
about the cipher suite encoding can be found in <xref target="eat-suit-ciphersuite"/>.</t>
  </dd>
  <dt>data-item-requested</dt>
  <dd>
    <t>The data-item-requested parameter indicates what information the TAM requests from the TEEP
Agent in the form of a bitmap.
</t>

    <dl>
      <dt>attestation (1):</dt>
      <dd>
        <t>With this value the TAM requests the TEEP Agent to return an attestation payload,
whether Evidence (e.g., an EAT) or an Attestation Result, in the response.</t>
      </dd>
      <dt>trusted-components (2):</dt>
      <dd>
        <t>With this value the TAM queries the TEEP Agent for all installed Trusted Components.</t>
      </dd>
      <dt>extensions (4):</dt>
      <dd>
        <t>With this value the TAM queries the TEEP Agent for supported capabilities
and extensions, which allows a TAM to discover the capabilities of a TEEP
Agent implementation.</t>
      </dd>
      <dt>suit-reports (8):</dt>
      <dd>
        <t>With this value the TAM requests the TEEP Agent to return SUIT Reports
in the response.</t>
      </dd>
    </dl>

    <t>Further values may be added in the future.</t>
  </dd>
  <dt>supported-freshness-mechanisms</dt>
  <dd>
    <t>The supported-freshness-mechanisms parameter lists the freshness mechanism(s) supported by the TAM.
Details about the encoding can be found in <xref target="freshness-mechanisms"/>.
If this parameter is absent, it means only the nonce mechanism is supported.
It MUST be absent if the attestation bit is clear.</t>
  </dd>
  <dt>challenge</dt>
  <dd>
    <t>The challenge field is an optional parameter used for ensuring the freshness of
attestation Evidence returned with a QueryResponse message. It MUST be absent if
the attestation bit is clear or the Passport model (see <xref target="RFC9334"/>) is used.
When a challenge is
provided in the QueryRequest and Evidence in the form of an EAT is returned with a QueryResponse message
then the challenge contained in the QueryRequest MUST be used to generate the EAT,
by copying the challenge into the eat_nonce claim (Section 4.1 of <xref target="RFC9711"/>) if
the nonce-based freshness mechanism is used for attestation Evidence.  For more details about freshness
of Evidence see <xref target="freshness-mechanisms"/>.
</t>

    <t>If any format other than EAT is used, it is up to that
format to define the use of the challenge field.</t>
  </dd>
  <dt>versions</dt>
  <dd>
    <t>The versions parameter enumerates the TEEP protocol version(s) supported by the TAM.
A value of 0 refers to the version of the TEEP protocol defined in this document.
If this field is not present, it is to be treated the same as if
it contained only version 0.</t>
  </dd>
  <dt>attestation-payload-format</dt>
  <dd>
    <t>The attestation-payload-format parameter indicates the IANA Media Type of the
attestation-payload parameter, where media type parameters are permitted after
the media type.  For protocol version 0, the absence of this parameter indicates that
the format is "application/eat+cwt; eat_profile=urn:ietf:rfc:rfcXXXX" (see <xref target="RFC9782"/>
for further discussion).
(RFC-editor: upon RFC publication, replace XXXX above with the RFC number
of this document.)
It MUST be present if the attestation-payload parameter
is present and the format is not an EAT in CWT format with the profile
defined below in <xref target="eat"/>.</t>
  </dd>
  <dt>attestation-payload</dt>
  <dd>
    <t>The attestation-payload parameter contains Evidence or an Attestation Result
for the TEEP Agent to use to perform attestation of the TAM.
If the attestation-payload-format parameter is absent,
the attestation payload contained in this parameter MUST be
an Entity Attestation Token following the encoding
defined in <xref target="RFC9711"/>.  See <xref target="attestation"/> for further discussion.</t>
  </dd>
  <dt>suit-reports</dt>
  <dd>
    <t>If present, the suit-reports parameter contains a set of TAM SUIT Reports related
to “boot” time (including the start of an executable in an OS context), as defined
by SUIT_Report in Section 4 of <xref target="I-D.ietf-suit-report"/>.
SUIT Reports are encoded as CBOR byte strings. When a SUIT Report includes its own COSE
protection (via signatures or MACs), the cryptographic key used MUST be distinct
from the key used for the TEEP message's COSE security wrapper since otherwise its authenticity relies on the TEEP message's signature/MAC keys without adding any additional security.
SUIT Reports can be useful in QueryRequest messages to
pass additional information about the TAM to the TEEP Agent without depending on a Verifier including
the relevant information in the TAM's Attestation Results.</t>
  </dd>
</dl>

</section>
<section anchor="query-response"><name>QueryResponse Message</name>

<t>The QueryResponse message is the successful response by the TEEP Agent after
receiving a QueryRequest message.  As discussed in <xref target="agent"/>, it can also be sent
unsolicited if the contents of the QueryRequest are already known and do not vary
per message.</t>

<t>Like other TEEP messages, the QueryResponse message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><sourcecode type="cddl-query-response"><![CDATA[
query-response = [
  type: TEEP-TYPE-query-response,
  options: {
    ? token => bstr .size (8..64),
    ? selected-version => version,
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr .cbor SUIT_Report ],
    ? tc-list => [ + system-property-claims ],
    ? requested-tc-list => [ + requested-tc-info ],
    ? unneeded-manifest-list => [ + SUIT_Component_Identifier ],
    ? ext-list => [ + ext-info ],
    * $$query-response-extensions,
    * $$teep-option-extensions
  }
]

requested-tc-info = {
  component-id => SUIT_Component_Identifier,
  ? tc-manifest-sequence-number => uint,
  ? have-binary => bool
}
]]></sourcecode></figure>

<t>The QueryResponse message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (2) corresponds to a QueryResponse message sent from the TEEP Agent
to the TAM.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token parameter is used to match responses to requests. The
value MUST correspond to the value received with the QueryRequest message
if one was present, and MUST be absent if no token was present in the
QueryRequest.</t>
  </dd>
  <dt>selected-version</dt>
  <dd>
    <t>The selected-version parameter indicates the TEEP protocol version selected by the
TEEP Agent. The absence of this parameter indicates the same as if it
was present with a value of 0.</t>
  </dd>
  <dt>attestation-payload-format</dt>
  <dd>
    <t>The attestation-payload-format parameter indicates the IANA Media Type of the
attestation-payload parameter, where media type parameters are permitted after
the media type.  For protocol version 0, the absence of this parameter indicates that
the format is "application/eat+cwt; eat_profile=urn:ietf:rfc:rfcXXXX" (see <xref target="RFC9782"/>
for further discussion).
(RFC-editor: upon RFC publication, replace XXXX above with the RFC number
of this document.)
It MUST be present if the attestation-payload parameter
is present and the format is not an EAT in CWT format with the profile
defined below in <xref target="eat"/>.</t>
  </dd>
  <dt>attestation-payload</dt>
  <dd>
    <t>The attestation-payload parameter contains Evidence or an Attestation Result.  This parameter
MUST be present if the QueryResponse is sent in response to a QueryRequest
with the attestation bit set.  If the attestation-payload-format parameter is absent,
the attestation payload contained in this parameter MUST be
an Entity Attestation Token following the encoding
defined in <xref target="RFC9711"/>.  See <xref target="attestation"/> for further discussion.</t>
  </dd>
  <dt>suit-reports</dt>
  <dd>
    <t>If present, the suit-reports parameter contains a set of "boot" (including
starting an executable in an OS context) time SUIT Reports
as defined by SUIT_Report in Section 4 of <xref target="I-D.ietf-suit-report"/>,
encoded using COSE as discussed in <xref target="eat-suit-ciphersuite"/>.
If a token parameter was present in the QueryRequest
message the QueryResponse message is in response to,
the suit-report-nonce field MUST be present in the SUIT Report with a
value matching the token parameter in the QueryRequest
message.  SUIT Reports can be useful in QueryResponse messages to
pass information to the TAM without depending on a Verifier including
the relevant information in Attestation Results.</t>
  </dd>
  <dt>tc-list</dt>
  <dd>
    <t>The tc-list parameter enumerates the Trusted Components installed on the device
in the form of system-property-claims objects, as defined in Section 4 of <xref target="I-D.ietf-suit-report"/>. The system-property-claims can
be used to learn device identifying information and TEE identifying information
for distinguishing which Trusted Components to install in the TEE.
This parameter MUST be present if the
QueryResponse is sent in response to a QueryRequest with the
trusted-components bit set.</t>
  </dd>
  <dt>requested-tc-list</dt>
  <dd>
    <t>The requested-tc-list parameter enumerates the Trusted Components that are
not currently installed in the TEE, but which are requested to be installed,
for example by an installer of an Untrusted Application that has a TA
as a dependency, or by a Trusted Application that has another Trusted
Component as a dependency.  Requested Trusted Components are expressed in
the form of requested-tc-info objects.
A TEEP Agent can get this information from the RequestTA conceptual API
defined in <xref target="RFC9397"/> Section 6.2.1.</t>
  </dd>
  <dt>unneeded-manifest-list</dt>
  <dd>
    <t>The unneeded-manifest-list parameter enumerates the SUIT manifests whose components are
currently installed in the TEE, but which are no longer needed by any
other application.  The TAM can use this information in determining
whether a SUIT manifest can be unlinked.  Each unneeded SUIT manifest is identified
by its SUIT Manifest Component ID (note that this is the Component ID for the manifest
itself, which is different from the Component ID of a component installed by the manifest,
see <xref target="I-D.ietf-suit-trust-domains"/> for more discussion).
A TEEP Agent can get this information from the UnrequestTA conceptual API
defined in <xref target="RFC9397"/> Section 6.2.1.</t>
  </dd>
  <dt>ext-list</dt>
  <dd>
    <t>The ext-list parameter lists the supported extensions. This document does not
define any extensions.  This parameter MUST be present if the
QueryResponse is sent in response to a QueryRequest with the
extensions bit set.</t>
  </dd>
</dl>

<t>The requested-tc-info message has the following fields:</t>

<dl newline="true">
  <dt>component-id</dt>
  <dd>
    <t>A SUIT Component Identifier; see <xref target="RFC9124"/>.</t>
  </dd>
  <dt>tc-manifest-sequence-number</dt>
  <dd>
    <t>The minimum suit-manifest-sequence-number value from a SUIT manifest for
the Trusted Component.  If not present, indicates that any sequence number will do.</t>
  </dd>
  <dt>have-binary</dt>
  <dd>
    <t>If present with a value of true, indicates that the TEEP Agent already has
the Trusted Component binary and only needs an Update message with a SUIT manifest
that authorizes installing it.  If have-binary is true, the
tc-manifest-sequence-number field MUST be present.</t>
  </dd>
</dl>

<section anchor="attestation"><name>Evidence and Attestation Results</name>

<t>Section 7 of <xref target="RFC9397"/> lists information that may appear
in Evidence depending on the circumstance.  However, the Evidence is
opaque to the TEEP protocol and there are no formal requirements on the contents
of Evidence.</t>

<t>TAMs consume Attestation Results and do need enough information therein to
make decisions on how to remediate a TEE that is out of compliance, or update a TEE
that is requesting an authorized change.  To do so, the information in
Section 7 of <xref target="RFC9397"/> is often required depending on the policy.</t>

<t>Attestation Results SHOULD use Entity Attestation Tokens (EATs) to use a standardized
format and to reduce TAM implementation complexity. Use of any other format, such as a widely
implemented format for a specific processor vendor, is permitted when standardized EAT
support is not available or when proprietary formats provide essential functionality,
but this increases the complexity of the TAM by requiring it to understand
the format for each such format rather than only the common EAT format and is not
recommended for interoperable deployments.</t>

<t>When an EAT is used, the following claims can be used to meet those
requirements, whether these claims appear in Attestation Results, or in Evidence
for the Verifier to use when generating Attestation Results of some form:</t>

<texttable>
      <ttcol align='left'>Requirement</ttcol>
      <ttcol align='left'>Claim</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>Freshness proof</c>
      <c>nonce</c>
      <c>Section 4.1 of <xref target="RFC9711"/></c>
      <c>Device unique identifier</c>
      <c>ueid</c>
      <c>Section 4.2.1 of <xref target="RFC9711"/></c>
      <c>Vendor of the device</c>
      <c>oemid</c>
      <c>Section 4.2.3 of <xref target="RFC9711"/></c>
      <c>Class of the device</c>
      <c>hwmodel</c>
      <c>Section 4.2.4 of <xref target="RFC9711"/></c>
      <c>TEE hardware type</c>
      <c>hwversion</c>
      <c>Section 4.2.5 of <xref target="RFC9711"/></c>
      <c>TEE hardware version</c>
      <c>hwversion</c>
      <c>Section 4.2.5 of <xref target="RFC9711"/></c>
      <c>TEE firmware type</c>
      <c>manifests</c>
      <c>Section 4.2.15 of <xref target="RFC9711"/></c>
      <c>TEE firmware version</c>
      <c>manifests</c>
      <c>Section 4.2.15 of <xref target="RFC9711"/></c>
</texttable>

<t>The "manifests" claim (see Section 4.2.15 of <xref target="RFC9711"/>) should include
information about the TEEP Agent as well as any of its dependencies such as firmware.</t>

</section>
</section>
<section anchor="update-msg-def"><name>Update Message</name>

<t>The Update message is used by the TAM to install and/or delete one or more Trusted
Components via the TEEP Agent.  It can also be used to pass a successful
Attestation Report back to the TEEP Agent when the TAM is configured as
an intermediary between the TEEP Agent and a Verifier, as shown in <xref target="fig-arch"/>,
where the Attestation Result passed back to the Attester can be used
as a so-called "passport" (see Section 5.1 of <xref target="RFC9334"/>)
that can be presented to other Relying Parties.</t>

<figure title="Example use of TEEP and Attestation." anchor="fig-arch"><artwork><![CDATA[
         +---------------+
         |   Verifier    |
         +---------------+
               ^    | Attestation
      Evidence |    v   Result
         +---------------+
         |     TAM /     |
         | Relying Party |
         +---------------+
 QueryResponse ^    |    Update
   (Evidence)  |    | (Attestation
               |    v    Result)
         +---------------+             +---------------+
         |  TEEP Agent   |------------>|     Other     |
         |  / Attester   | Attestation | Relying Party |
         +---------------+    Result   +---------------+
]]></artwork></figure>

<t>Like other TEEP messages, the Update message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><sourcecode type="cddl-update"><![CDATA[
update = [
  type: TEEP-TYPE-update,
  options: {
    ? token => bstr .size (8..64),
    ? unneeded-manifest-list => [ + SUIT_Component_Identifier ],
    ? manifest-list => [ + bstr .cbor SUIT_Envelope ],
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? err-code => (0..23),
    ? err-msg => text .size (1..128),
    ? err-lang => text .size (1..35),
    * $$update-extensions,
    * $$teep-option-extensions
  }
]
]]></sourcecode></figure>

<t>The Update message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (3) corresponds to an Update message sent from the TAM to
the TEEP Agent. In case of successful processing, a Success
message is returned by the TEEP Agent. In case of an error, an Error message
is returned. Note that the Update message
is used for initial Trusted Component installation as well as for updates
and deletes.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token field is used to match responses to requests.</t>
  </dd>
  <dt>unneeded-manifest-list</dt>
  <dd>
    <t>The unneeded-manifest-list parameter enumerates the SUIT manifests to be unlinked.
Each unneeded SUIT manifest is identified by its SUIT Manifest Component ID.
The SUIT manifest processor MAY execute uninstall section in the manifest. See
Section 7 of <xref target="I-D.ietf-suit-trust-domains"/> for more information about the 
suit-uninstall Command Sequence.</t>
  </dd>
  <dt>manifest-list</dt>
  <dd>
    <t>The manifest-list field is used to convey one or multiple SUIT manifests
to install.  A manifest is
a bundle of metadata about a Trusted Component, such as where to
find the code, the devices to which it applies, and cryptographic
information protecting the manifest. The manifest may also convey personalization
data. Trusted Component binaries and personalization data can be signed and encrypted
by the same Trusted Component Signer. Other combinations are, however, possible as well. For example,
it is also possible for the TAM to sign and encrypt the personalization data
and to let the Trusted Component Developer sign and/or encrypt the Trusted Component binary.</t>
  </dd>
  <dt>attestation-payload-format</dt>
  <dd>
    <t>The attestation-payload-format parameter indicates the IANA Media Type of the
attestation-payload parameter, where media type parameters are permitted after
the media type.  The absence of this parameter indicates that
the format is "application/eat+cwt; eat_profile=urn:ietf:rfc:rfcXXXX" (see <xref target="RFC9782"/>
for further discussion).
(RFC-editor: upon RFC publication, replace XXXX above with the RFC number
of this document.)
It MUST be present if the attestation-payload parameter
is present and the format is not an EAT in CWT format with the profile
defined in <xref target="eat"/>.</t>
  </dd>
  <dt>attestation-payload</dt>
  <dd>
    <t>The attestation-payload parameter contains an Attestation Result. If the
attestation-payload-format parameter is absent, the attestation payload
contained in this parameter MUST be an Entity Attestation Token following
the encoding defined in <xref target="RFC9711"/>.  See <xref target="attestation"/> for further
discussion.</t>
  </dd>
  <dt>err-code</dt>
  <dd>
    <t>The err-code parameter contains one of the error codes listed in the
<xref target="error-message-def"/>, which describes the reasons for the error when
performing QueryResponse in the TAM.</t>
  </dd>
  <dt>err-msg</dt>
  <dd>
    <t>The err-msg parameter is human-readable diagnostic text that MUST be encoded
using UTF-8 <xref target="RFC3629"/> in Net-Unicode format <xref target="RFC5198"/> with a maximum of 128 bytes.</t>
  </dd>
  <dt>err-lang</dt>
  <dd>
    <t>The err-lang parameter is an OPTIONAL RFC 5646 <xref target="RFC5646"/> language tag identifying the
language of the <spanx style="verb">err-msg</spanx> text.  When present, implementations MUST use the
language tag to aid human operators in interpreting diagnostic text.  The
err-msg field SHOULD be formatted in the language indicated by this tag.</t>
  </dd>
</dl>

<t>Note that an Update message carrying one or more SUIT manifests will inherently
involve multiple signatures, one by the TAM in the TEEP message and one from
a Trusted Component Signer inside each manifest.  This is intentional as they
are for different purposes.</t>

<t>The TAM is what authorizes
apps to be installed, updated, and deleted on a given TEE and so the TEEP
signature is checked by the TEEP Agent at protocol message processing time.
(This same TEEP security wrapper is also used on messages like QueryRequest
so that Agents only send potentially sensitive data such as Evidence to
trusted TAMs.)</t>

<t>The Trusted Component signer, on the other hand, is what authorizes the
Trusted Component to actually run, so the manifest signature could be
checked at install time, load (or run) time, or both, and this checking is
done by the TEE independent of whether TEEP is used or some other update
mechanism.
See Section 5 of <xref target="RFC9397"/> for further discussion.</t>

<t>The Update message has a SUIT_Envelope containing SUIT manifests. Following
are some example scenarios using SUIT manifests in the Update Message.</t>

<section anchor="directtam"><name>Scenario 1: Having one SUIT Manifest pointing to a URI of a Trusted Component Binary</name>

<t>In this scenario, a SUIT Manifest has a URI pointing to a Trusted Component Binary.</t>

<t>A Trusted Component Developer creates a new Trusted Component Binary and hosts it
at a Trusted Component Developer's URI. Then, the Trusted Component Developer
generates an associated SUIT manifest with the filename "tc-uuid" that contains
the URI. The filename "tc-uuid" is used in Scenario 3 later.</t>

<t>The TAM receives the latest SUIT manifest from the Trusted Component Developer,
and the URI it contains cannot be changed by the TAM since the SUIT manifest is
signed by the Trusted Component Developer.</t>

<t><xref target="fig-tc"/> shows the exchange graphically.</t>

<t>Pros:</t>

<t><list style="symbols">
  <t>The Trusted Component Developer can ensure that the intact Trusted Component
Binary is downloaded by devices</t>
  <t>The TAM does not have to send large Update messages containing the Trusted
Component Binary</t>
</list></t>

<t>Cons:</t>

<t><list style="symbols">
  <t>The Trusted Component Developer must host the Trusted Component Binary server</t>
  <t>The device must fetch the Trusted Component Binary in another connection
after receiving an Update message</t>
  <t>A device's IP address and therefore location may be revealed to the Trusted
Component Binary server</t>
</list></t>

<figure title="URI of the Trusted Component Binary." anchor="fig-tc"><artwork><![CDATA[
    +------------+           +-------------+
    | TAM        |           | TEEP Agent  |
    +------------+           +-------------+

             Update  ---->

    +=================== teep-protocol(TAM) ==================+
    | TEEP_Message([                                          |
    |   TEEP-TYPE-update,                                     |
    |   options: {                                            |
    |     manifest-list: [                                    |
    |       += suit-manifest "tc-uuid" (TC Developer) ======+ |
    |       | SUIT_Envelope({                               | |
    |       |   manifest: {                                 | |
    |       |     install: {                                | |
    |       |       override-parameters: {                  | |
    |       |         uri: "https://example.org/tc-uuid.ta" | |
    |       |       },                                      | |
    |       |       fetch                                   | |
    |       |     }                                         | |
    |       |   }                                           | |
    |       | })                                            | |
    |       +===============================================+ |
    |     ]                                                   |
    |   }                                                     |
    | ])                                                      |
    +=========================================================+

    and then,

    +-------------+          +--------------+
    | TEEP Agent  |          | TC Developer |
    +-------------+          +--------------+

                     <----

      fetch "https://example.org/tc-uuid.ta"

          +======= tc-uuid.ta =======+
          | 48 65 6C 6C 6F 2C 20 ... |
          +==========================+
]]></artwork></figure>

<t>For the full SUIT Manifest example binary, see <xref target="suit-uri"/>.</t>

</section>
<section anchor="scenario-2-having-a-suit-manifest-include-the-trusted-component-binary"><name>Scenario 2: Having a SUIT Manifest include the Trusted Component Binary</name>

<t>In this scenario, the SUIT manifest contains the entire Trusted Component
Binary as an integrated payload (see <xref target="I-D.ietf-suit-manifest"/> Section 7.5).</t>

<t>A Trusted Component Developer delegates the task of delivering the Trusted
Component Binary to the TAM inside the SUIT manifest. The Trusted Component
Developer creates a SUIT manifest and embeds the Trusted Component Binary,
which is referenced in the suit-integrated-payload element containing the
fragment-only reference "#tc", in the envelope. The Trusted Component Developer
transmits the entire bundle to the TAM.</t>

<t>The TAM serves the SUIT manifest containing the Trusted Component Binary to
the device in an Update message.</t>

<t><xref target="fig-tc-integrated"/> shows the exchange graphically.</t>

<t>Pros:</t>

<t><list style="symbols">
  <t>The device can obtain the Trusted Component Binary and the SUIT manifest
in one Update message.</t>
  <t>The Trusted Component Developer does not have to host a server to deliver
the Trusted Component Binary to devices.</t>
</list></t>

<t>Cons:</t>

<t><list style="symbols">
  <t>The TAM must host the Trusted Component Binary rather than delegating
storage to the Trusted Component Developer.</t>
  <t>The TAM must deliver Trusted Component Binaries in Update messages, which
increases the size of the Update message.</t>
</list></t>

<figure title="Integrated Payload with Trusted Component Binary." anchor="fig-tc-integrated"><artwork><![CDATA[
    +------------+           +-------------+
    | TAM        |           | TEEP Agent  |
    +------------+           +-------------+

             Update  ---->

      +=========== teep-protocol(TAM) ============+
      | TEEP_Message([                            |
      |   TEEP-TYPE-update,                       |
      |   options: {                              |
      |     manifest-list: [                      |
      |       +== suit-manifest(TC Developer) ==+ |
      |       | SUIT_Envelope({                 | |
      |       |   manifest: {                   | |
      |       |     install: {                  | |
      |       |       override-parameters: {    | |
      |       |         uri: "#tc"              | |
      |       |       },                        | |
      |       |       fetch                     | |
      |       |     }                           | |
      |       |   },                            | |
      |       |   "#tc": h'48 65 6C 6C ...'     | |
      |       | })                              | |
      |       +=================================+ |
      |     ]                                     |
      |   }                                       |
      | ])                                        |
      +===========================================+
]]></artwork></figure>

<t>For the full SUIT Manifest example binary, see <xref target="suit-integrated"/>.</t>

</section>
<section anchor="scenario-3-supplying-personalization-data-for-the-trusted-component-binary"><name>Scenario 3: Supplying Personalization Data for the Trusted Component Binary</name>

<t>In this scenario, Personalization Data is associated with the Trusted Component
Binary "tc-uuid" from Scenario 1.</t>

<t>The Trusted Component Developer places encrypted Personalization Data in the
SUIT manifest, and it will be delivered by the TAM. The SUIT manifest processor
decrypts it, then stores it in a file named "config.json", and then installs
the dependency component.</t>

<t>The TAM delivers the SUIT manifest of the Personalization Data which depends
on the Trusted Component Binary from Scenario 1.</t>

<t><xref target="fig-pers-data"/> shows the exchange graphically.</t>

<figure title="Encrypted Personalization Data." anchor="fig-pers-data"><artwork><![CDATA[
    +------------+           +-------------+
    | TAM        |           | TEEP Agent  |
    +------------+           +-------------+

             Update  ---->

      +================== teep-protocol(TAM) ======================+
      | TEEP_Message([                                             |
      |   TEEP-TYPE-update,                                        |
      |   options: {                                               |
      |     manifest-list: [                                       |
      |       +========= suit-manifest(TC Developer) ============+ |
      |       | SUIT_Envelope({                                  | |
      |       |   manifest: {                                    | |
      |       |     common: {                                    | |
      |       |       dependencies: {                            | |
      |       |         dependency-prefix 1: {                   | |
      |       |           [tc-uuid, 'suit']                      | |
      |       |         }                                        | |
      |       |       }                                          | |
      |       |       components: [                              | |
      |       |         ['config.json']                          | |
      |       |       ]                                          | |
      |       |     },                                           | |
      |       |     dependency-resolution: {                     | |
      |       |       override-parameters: {                     | |
      |       |         uri: "https://example.org/tc-uuid"       | |
      |       |       },                                         | |
      |       |       fetch                                      | |
      |       |     },                                           | |
      |       |     install: {                                   | |
      |       |       set-component-index 0,                     | |
      |       |       override-parameters: {                     | |
      |       |         content: h'48FE0794...'                  | |
      |       |         encryption-info: << ... >>               | |
      |       |       },                                         | |
      |       |       write,                                     | |
      |       |       set-component-index 1,                     | |
      |       |       process-dependency                         | |
      |       |     }                                            | |
      |       |   }                                              | |
      |       | })                                               | |
      |       +==================================================+ |
      |     ]                                                      |
      |   }                                                        |
      | ])                                                         |
      +============================================================+
]]></artwork></figure>

<t>For the full SUIT Manifest example binary, see <xref target="suit-personalization"/>.</t>

</section>
</section>
<section anchor="success-message"><name>Success Message</name>

<t>The Success message is used by the TEEP Agent to return a success in
response to an Update message.</t>

<t>Like other TEEP messages, the Success message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><sourcecode type="cddl-teep-success"><![CDATA[
teep-success = [
  type: TEEP-TYPE-teep-success,
  options: {
    ? token => bstr .size (8..64),
    ? msg => text .size (1..128),
    ? suit-reports => [ + bstr .cbor SUIT_Report ],
    * $$teep-success-extensions,
    * $$teep-option-extensions
  }
]
]]></sourcecode></figure>

<t>The Success message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (5) corresponds to a Success message sent from the TEEP Agent to the
TAM.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token parameter is used to match responses to requests.
It MUST match the value of the token parameter in the Update
message the Success is in response to, if one was present.  If none was
present, the token MUST be absent in the Success message.</t>
  </dd>
  <dt>msg</dt>
  <dd>
    <t>The msg parameter contains optional diagnostics information encoded in
UTF-8 <xref target="RFC3629"/> using Net-Unicode form <xref target="RFC5198"/> with max 128 bytes
returned by the TEEP Agent.</t>
  </dd>
  <dt>suit-reports</dt>
  <dd>
    <t>If present, the suit-reports parameter contains a set of SUIT Reports
as defined in Section 4 of <xref target="I-D.ietf-suit-report"/>, encoded as CBOR byte strings
containing either protected or unprotected SUIT Report payloads. When a SUIT Report
includes its own COSE protection (signatures or MACs), the cryptographic key used
MUST be distinct from the key used for the TEEP message's COSE security wrapper.
If a token parameter was present in the Update
message the Success message is in response to,
the suit-report-nonce field MUST be present in the SUIT Report with a
value matching the token parameter in the Update
message.</t>
  </dd>
</dl>

</section>
<section anchor="error-message-def"><name>Error Message</name>

<t>The Error message is used by the TEEP Agent to return an error in
response to a message from the TAM.</t>

<t>Like other TEEP messages, the Error message is
signed, and the relevant CDDL snippet is shown below.
The complete CDDL structure is shown in Appendix C.</t>

<figure><sourcecode type="cddl-teep-error"><![CDATA[
teep-error = [
  type: TEEP-TYPE-teep-error,
  options: {
     ? token => bstr .size (8..64),
     ? err-msg => text .size (1..128),
     ? err-lang => text .size (1..35),
     ? supported-teep-cipher-suites => [ + $teep-cipher-suite ],
     ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
     ? supported-suit-cose-profiles => [ + $suit-cose-profile ],
     ? challenge => bstr .size (8..512),
     ? versions => [ + version ],
     ? suit-reports => [ + bstr .cbor SUIT_Report ],
     * $$teep-error-extensions,
     * $$teep-option-extensions
  },
  err-code: (0..23)
]

; The err-code parameter, uint (0..23)
ERR_PERMANENT_ERROR = 1
ERR_UNSUPPORTED_EXTENSION = 2
ERR_UNSUPPORTED_FRESHNESS_MECHANISMS = 3
ERR_UNSUPPORTED_MSG_VERSION = 4
ERR_UNSUPPORTED_CIPHER_SUITES = 5
ERR_BAD_CERTIFICATE = 6
ERR_ATTESTATION_REQUIRED = 7
ERR_UNSUPPORTED_SUIT_REPORT = 8
ERR_CERTIFICATE_EXPIRED = 9
ERR_TEMPORARY_ERROR = 10
ERR_MANIFEST_PROCESSING_FAILED = 17
]]></sourcecode></figure>

<t>The Error message has the following fields:</t>

<dl newline="true">
  <dt>type</dt>
  <dd>
    <t>The value of (6) corresponds to an Error message sent from the TEEP Agent to the TAM.</t>
  </dd>
  <dt>token</dt>
  <dd>
    <t>The value in the token parameter is used to match responses to requests.
It MUST match the value of the token parameter in the
message the Success is in response to, if one was present.  If none was
present, the token MUST be absent in the Error message.</t>
  </dd>
  <dt>err-msg</dt>
  <dd>
    <t>The err-msg parameter is human-readable diagnostic text that MUST be encoded
using UTF-8 <xref target="RFC3629"/> using Net-Unicode form <xref target="RFC5198"/> with max 128 bytes.</t>
  </dd>
  <dt>err-lang</dt>
  <dd>
    <t>The err-lang parameter is an OPTIONAL RFC 5646 <xref target="RFC5646"/> language tag identifying the
language of the <spanx style="verb">err-msg</spanx> text. When present, implementations SHOULD use the
language tag to aid human operators in interpreting diagnostic text. The
err-msg field SHOULD be formatted in the language indicated by this tag.</t>
  </dd>
  <dt>supported-teep-cipher-suites</dt>
  <dd>
    <t>The supported-teep-cipher-suites parameter lists the TEEP cipher suite(s) supported by the TEEP Agent.
Details about the cipher suite encoding can be found in <xref target="teep-ciphersuite"/>.
This otherwise optional parameter MUST be returned if err-code is ERR_UNSUPPORTED_CIPHER_SUITES.</t>
  </dd>
  <dt>supported-freshness-mechanisms</dt>
  <dd>
    <t>The supported-freshness-mechanisms parameter lists the freshness mechanism(s) supported by the TEEP Agent.
Details about the encoding can be found in <xref target="freshness-mechanisms"/>.
This otherwise optional parameter MUST be returned if err-code is ERR_UNSUPPORTED_FRESHNESS_MECHANISMS.</t>
  </dd>
  <dt>supported-suit-cose-profiles</dt>
  <dd>
    <t>The supported-suit-cose-profiles parameter lists the SUIT profiles
supported by the TEEP Agent. Details
about the cipher suite encoding can be found in <xref target="eat-suit-ciphersuite"/>.
This otherwise optional parameter MUST be returned if err-code is ERR_UNSUPPORTED_SUIT_REPORT.</t>
  </dd>
  <dt>challenge</dt>
  <dd>
    <t>The challenge field is an optional parameter used for ensuring the freshness of
attestation Evidence included with a QueryRequest message.
When a challenge is provided in the Error message and Evidence in the form of an EAT is
returned with a QueryRequest message then the challenge contained in the Error message
MUST be used to generate the EAT, by copying the challenge value into the eat_nonce claim, as described in the
EAT profile <xref target="eat"/>, if the nonce-based freshness mechanism is used.
For more details see <xref target="freshness-mechanisms"/>.
</t>

    <t>If any format other than EAT is used, it is up to that
format to define the use of the challenge field.</t>
  </dd>
  <dt>versions</dt>
  <dd>
    <t>The versions parameter enumerates the TEEP protocol version(s) supported by the TEEP
Agent. This otherwise optional parameter MUST be returned if err-code is ERR_UNSUPPORTED_MSG_VERSION.</t>
  </dd>
  <dt>suit-reports</dt>
  <dd>
    <t>If present, the suit-reports parameter contains a set of SUIT Reports
as defined in Section 4 of <xref target="I-D.ietf-suit-report"/>, encoded as CBOR byte strings
containing either protected or unprotected SUIT Report payloads. When a SUIT Report
includes its own COSE protection (signatures or MACs), the cryptographic key used
MUST be distinct from the key used for the TEEP message's COSE security wrapper.
If a token parameter was present in the Update message the Error message is in response to,
the suit-report-nonce field MUST be present in the SUIT Report with a
value matching the token parameter in the Update
message.</t>
  </dd>
  <dt>err-code</dt>
  <dd>
    <t>The err-code parameter contains one of the error codes listed below.
Only selected values are applicable to each message.
Note that error codes are restricted to the range (0..23) to permit
encoding as single-byte CBOR unsigned integers. Error code values 0, 11-16,
and 18-22 are currently unassigned and reserved for future use.
Error code 0 is intentionally reserved to prevent accidental use.
Extensions that define new error codes SHOULD constrain values to this range;
however, implementations that receive unrecognized error code values greater than 23
SHOULD handle them gracefully, treating them as unknown errors.</t>
  </dd>
</dl>

<t>This specification defines the following initial error messages:</t>

<dl newline="true">
  <dt>ERR_PERMANENT_ERROR (1)</dt>
  <dd>
    <t>The received TEEP
message contained incorrect fields or fields that are inconsistent with
other fields.
For diagnosis purposes it is RECOMMENDED to identify the failure reason
in the error message field.
A TEEP implementation receiving this error might refuse to communicate further with
the problematic TEEP message sender, by silently dropping any TEEP messages
received, for some period of time until it has reason to believe
it is worth trying again, but it should take care not to give up on
communication.  In contrast, ERR_TEMPORARY_ERROR is an indication
that a more aggressive retry is warranted.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_EXTENSION (2)</dt>
  <dd>
    <t>The TEEP implementation does not support an extension included in the
TEEP message it received.
For diagnosis purposes it is RECOMMENDED to identify the unsupported
extension in the error message field.
A TAM implementation receiving this error might retry sending the last message it sent to
the sender of this error, without using any TEEP extensions.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_FRESHNESS_MECHANISMS (3)</dt>
  <dd>
    <t>The TEEP Agent does not
support any freshness algorithm mechanisms in the request message.
A TAM receiving this error might retry the request using a different
set of supported freshness mechanisms in the request message.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_MSG_VERSION (4)</dt>
  <dd>
    <t>The TEEP implementation does not
support the TEEP protocol version indicated in the received message.
A TAM receiving this error might retry the request using a different
TEEP protocol version.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_CIPHER_SUITES (5)</dt>
  <dd>
    <t>The TEEP Agent does not
support any cipher suites indicated in the request message.
A TAM receiving this error might retry the request using a different
set of supported cipher suites in the request message.</t>
  </dd>
  <dt>ERR_BAD_CERTIFICATE (6)</dt>
  <dd>
    <t>Processing of a certificate failed. For diagnosis purposes it is
RECOMMENDED to include information about the failing certificate
in the error message field.  For example, the certificate was of an
unsupported type, or the certificate was revoked by its signer.
A TEEP implementation receiving this error might attempt to use an alternate certificate.</t>
  </dd>
  <dt>ERR_ATTESTATION_REQUIRED (7)</dt>
  <dd>
    <t>Indicates that the TEEP implementation sending this error requires
attestation of the TEEP implementation receiving this error.</t>
  </dd>
  <dt>ERR_UNSUPPORTED_SUIT_REPORT (8)</dt>
  <dd>
    <t>Indicates that the TEEP Agent does not support the suit-cose-profile of
the SUIT Reports which was sent by the TAM. The TEEP Agent must report the
error code ERR_UNSUPPORTED_SUIT_REPORT supplying the
supported-suit-cose-profiles.</t>
  </dd>
  <dt>ERR_CERTIFICATE_EXPIRED (9)</dt>
  <dd>
    <t>A certificate has expired or is not currently
valid.
A TEEP implementation receiving this error might attempt to renew its certificate
before using it again.</t>
  </dd>
  <dt>ERR_TEMPORARY_ERROR (10)</dt>
  <dd>
    <t>A miscellaneous
temporary error, such as a memory allocation failure, occurred while processing the TEEP message.
A TEEP implementation receiving this error might retry the last message it sent to the sender
of this error at some later point, which is up to the implementation.</t>
  </dd>
  <dt>ERR_MANIFEST_PROCESSING_FAILED (17)</dt>
  <dd>
    <t>The TEEP Agent encountered one or more manifest processing failures.
If the suit-reports parameter is present, it contains the failure details.
A TAM receiving this error might still attempt to install or update
other components that do not depend on the failed manifest.</t>
  </dd>
</dl>

<t>New error codes should be added sparingly, not for every implementation
error.  That is the intent of the err-msg field, which can be used to
provide details meaningful to humans.  New error codes should only be
added if the TAM is expected to do something behaviorally different upon
receipt of the error message, rather than just logging the event.
Hence, each error code is responsible for saying what the
behavioral difference is expected to be.</t>

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

<t>The TEEP protocol operates between a TEEP Agent and a TAM.  While
the TEEP protocol does not require use of EAT, use of EAT is encouraged and
<xref target="query-response"/> explicitly defines a way to carry an Entity Attestation Token
in a QueryResponse.</t>

<t>As noted in <xref target="attestation"/>, Evidence is opaque to the TAM, while Attestation
Results are processed by the TAM in its role as the Relying Party. Although
Attestation Results required by a TAM are logically separate from the TEEP
protocol, this section defines requirements for building a compliant TAM
that uses EATs for Attestation Results.</t>

<t>Section 6 of <xref target="RFC9711"/> defines the requirement for
Entity Attestation Token profiles.  This section defines an EAT profile
for use with TEEP.</t>

<t><list style="symbols">
  <t>profile-label: The profile-label for this specification is the URI</t>
</list></t>
<t>&lt;urn:ietf:rfc:rfcXXXX&gt;.
(RFC-editor: upon RFC publication, replace XXXX with the RFC number
of this document.)</t>

<t><list style="symbols">
  <t>Use of JSON, CBOR, or both: CBOR only.</t>
  <t>CBOR Map and Array Encoding: Only definite length arrays and maps.</t>
  <t>CBOR String Encoding: Only definite-length strings are allowed.</t>
  <t>CBOR Preferred Serialization: Encoders must use preferred serialization,
and decoders need not accept non-preferred serialization.</t>
  <t>CBOR Tags: CBOR Tags are not used.</t>
  <t>COSE/JOSE Protection: See <xref target="eat-suit-ciphersuite"/>.</t>
  <t>COSE/JOSE Algorithms: See <xref target="eat-suit-ciphersuite"/>.</t>
  <t>Detached EAT Bundle Support: DEB use is permitted.</t>
  <t>Key Identification: COSE Key ID (kid) is used, where
the key ID is the hash of a public key (where the public key may be
used as a raw public key, or in a certificate) as specified in
<xref target="RFC9679"/>.  See <xref target="attestation-result-tam"/>
and <xref target="attestation-result-agent"/> for
discussion on the choice of hash algorithm.</t>
  <t>Endorsement Identification: Optional, but semantics are the same
as in Verification Key Identification.</t>
  <t>Freshness: See <xref target="freshness-mechanisms"/> for details.  When the
eat_nonce claim is used, the value is a single bstr.</t>
  <t>Claims Requirements:
  <list style="symbols">
      <t>The following claims are required: ueid, oemid,
hwmodel, hwversion, manifests, and cnf.  See <xref target="attestation"/> for discussion.  Other claims are optional.</t>
      <t>See <xref target="freshness-mechanisms"/> for discussion affecting whether the
eat_nonce claim is used.</t>
      <t>The sw-name claim for a Trusted
Component holds the URI of the SUIT manifest for that component.</t>
      <t>The manifests claim uses a SUIT manifest, where the manifest
body contains a SUIT_Reference as defined in Section 4 of
<xref target="I-D.ietf-suit-report"/>, and the content type is as defined
in <xref target="I-D.ietf-suit-report"/>.</t>
    </list></t>
</list></t>

<t>A TAM implementation might simply accept a TEEP Agent as trustworthy based on a
successful Attestation Result, and if not then attempt to update the TEEP Agent
and all of its dependencies.  This logic is simple but it might result in updating
some components that do not need to be updated.</t>

<t>An alternate TAM implementation might use any Additional Claims to determine whether
the TEEP Agent or any of its dependencies are trustworthy, and only update the
specific components that are out of date.</t>

<section anchor="relationship-to-ar4si"><name>Relationship to AR4SI</name>

<t><xref target="I-D.ietf-rats-ar4si"/> defines an EAT profile for arbitrary Relying Parties
to use with Attestation Results.  However the TAM as a Relying Party needs specific
claims that are not required in the AR4SI profile, and so needs its own more
specific profile.</t>

<t>In some deployments, a TAM can be used as an intermediary between Verifier and a
TEEP Agent acting as an Attester in the Passport model or acting as a Relying
Party in the Background Check Model of <xref target="RFC9334"/>.  This is depicted in the
example in Figure 1.  In such a case, both profiles need to be obtained from the
Verifier: one for use by the TAM itself, and the other to pass on to the TEEP
Agent.</t>

<t>When the TAM and Verifier are combined into the same implementation, obtaining
both profiles can be straightforward, but when they are on different machines,
the situation is more complex, especially if Nonces are used to ensure freshness
of Evidence. There are thus several such cases:</t>

<t><list style="numbers" type="1">
  <t>The protocol between the TAM and the Verifier (which is outside
the scope of TEEP itself) allows requesting multiple Attestation Results from
the same Evidence.  In this case, the TAM can request both EAT profiles be
returned.</t>
  <t>The protocol between the TAM and the Verifier only allows requesting one
Attestation Result format, but the Evidence freshness mechanism does not use
Nonces.  In this case, the TAM can send the same Evidence in two separate
requests, each requesting a different EAT profile for the Attestation Results.</t>
  <t>The protocol between the TAM and the Verifier only allows requesting one
Attestation Result format, and the Evidence freshness mechanism uses Nonces.
In this case, it is simpler to not have the TAM be an intermediary, since
the Verifier will require a separate Nonce for each Attestation Result, but
have the Attester or Relying Party contact the Verifier directly to get
Attestation Results in the AR4SI profile.</t>
</list></t>

</section>
</section>
<section anchor="tags"><name>Mapping of TEEP Message Parameters to CBOR Labels</name>

<t>In COSE, arrays and maps use strings, negative integers, and unsigned
integers as their keys. Integers are used for compactness of
encoding. Since the word "key" is mainly used in its other meaning, as a
cryptographic key, this specification uses the term "label" for this usage
as a map key.</t>

<t>Message parameter labels are current defined only in the range [0..23] to permit
encoding as single-byte CBOR unsigned integers, providing compact message representation.
Currently, labels 0, 5, and 22 are unassigned and reserved for future use.
Extensions that define new message parameters SHOULD constrain label values to this range.
If future standards require additional messages beyond this range, implementations
SHOULD be designed to handle gracefully any unrecognized labels, treating them
as unknown optional parameters without failing to process the message.</t>

<t>This specification uses the following mapping:</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Label</ttcol>
      <c>supported-teep-cipher-suites</c>
      <c>1</c>
      <c>challenge</c>
      <c>2</c>
      <c>versions</c>
      <c>3</c>
      <c>supported-suit-cose-profiles</c>
      <c>4</c>
      <c>selected-version</c>
      <c>6</c>
      <c>attestation-payload</c>
      <c>7</c>
      <c>tc-list</c>
      <c>8</c>
      <c>ext-list</c>
      <c>9</c>
      <c>manifest-list</c>
      <c>10</c>
      <c>msg</c>
      <c>11</c>
      <c>err-msg</c>
      <c>12</c>
      <c>attestation-payload-format</c>
      <c>13</c>
      <c>requested-tc-list</c>
      <c>14</c>
      <c>unneeded-manifest-list</c>
      <c>15</c>
      <c>component-id</c>
      <c>16</c>
      <c>tc-manifest-sequence-number</c>
      <c>17</c>
      <c>have-binary</c>
      <c>18</c>
      <c>suit-reports</c>
      <c>19</c>
      <c>token</c>
      <c>20</c>
      <c>supported-freshness-mechanisms</c>
      <c>21</c>
      <c>err-lang</c>
      <c>22</c>
      <c>err-code</c>
      <c>23</c>
</texttable>

<t>The following CDDL description is used:</t>

<figure><sourcecode type="cddl-label"><![CDATA[
; labels of mapkey for teep message parameters, uint (0..23)
supported-teep-cipher-suites = 1
challenge = 2
versions = 3
supported-suit-cose-profiles = 4
selected-version = 6
attestation-payload = 7
tc-list = 8
ext-list = 9
manifest-list = 10
msg = 11
err-msg = 12
attestation-payload-format = 13
requested-tc-list = 14
unneeded-manifest-list = 15
component-id = 16
tc-manifest-sequence-number = 17
have-binary = 18
suit-reports = 19
token = 20
supported-freshness-mechanisms = 21
err-lang = 22
err-code = 23
]]></sourcecode></figure>

</section>
<section anchor="behavior-specification"><name>Behavior Specification</name>

<t>Behavior is specified in terms of the conceptual APIs defined in
Section 6.2.1 of <xref target="RFC9397"/>.</t>

<section anchor="tam"><name>TAM Behavior</name>

<t>When the ProcessConnect API is invoked, the TAM sends a QueryRequest message.</t>

<t>When the ProcessTeepMessage API is invoked, the TAM first does validation
as specified in <xref target="validation"/>, and drops the message if it is not valid.
It may also do additional implementation specific actions such as logging the results
or attempting to update the TEEP Agent to a version that does not send invalid messages.
Otherwise, it proceeds as follows.</t>

<t>If the message includes a token, it can be used to
match the response to a request previously sent by the TAM.
The TAM MUST expire the token value after receiving the first response
from the device that has a valid signature and ignore any subsequent messages that have the same token
value.  The token value MUST NOT be used for other purposes, such as a TAM to
identify the devices and/or a device to identify TAMs or Trusted Components.</t>

<t>A TAM implementation that sends multiple concurrent requests to a TEEP Agent
needs to track outstanding requests and their associated tokens. To prevent
unbounded storage of token state, a TAM MUST implement a timeout mechanism
to eventually discard unanswered requests and their tokens. This timeout SHOULD be
configurable, with a recommended minimum duration of several hours to account for
scenarios where devices may take considerable time to process updates and resolve
dependencies (as noted in <xref target="tam"/>, such processing may take hours or longer).
A TAM MAY also implement a per-device maximum storage limit for outstanding requests,
reusing tokens for new requests once the per-device limit is reached (after discarding
the oldest outstanding request).</t>

<section anchor="handling-a-queryresponse-message"><name>Handling a QueryResponse Message</name>

<t>If a QueryResponse message is received, the TAM verifies the presence of any parameters
required based on the data-items-requested in the QueryRequest, and also validates that
the nonce in any SUIT Report matches the token sent in the QueryRequest message if a token
was present.  If these requirements are not met, the TAM drops the message and sends an
Update message containing an appropriate err-code and err-msg.  It may also do
additional implementation specific actions such as logging the results.  If the requirements
are met, processing continues as follows.</t>

<t>If a QueryResponse message is received that contains an attestation-payload, the TAM
checks whether it contains Evidence or an Attestation Result by inspecting the attestation-payload-format
parameter.  The media type defined in <xref target="eat"/> indicates an Attestation Result, though future
extensions might also indicate other Attestation Result formats in the future. Any other unrecognized
value indicates Evidence.  If it contains an Attestation Result, processing continues as in
<xref target="attestation-result-tam"/>.</t>

<t>If the QueryResponse is instead determined to contain Evidence, the TAM passes
the Evidence (via some mechanism out of scope of this document) to an attestation Verifier
(see <xref target="RFC9334"/>)
to determine whether the Agent is in a trustworthy state.  Once the TAM receives an Attestation
Result from the Verifier, processing continues as in <xref target="attestation-result-tam"/>.</t>

<section anchor="attestation-result-tam"><name>Handling an Attestation Result</name>

<t>The Attestation Result must first be validated as follows:</t>

<t><list style="numbers" type="1">
  <t>Verify that the Attestation Result was signed by a Verifier that the TAM trusts.</t>
  <t>Verify that the Attestation Result contains a "cnf" claim (as defined in Section 3.1 of <xref target="RFC8747"/>) where
the key ID is the hash of the TEEP Agent public key used to verify the signature on the TEEP message,
and the hash is computed using the digest algorithm specified by one of the SUIT profiles
supported by the TAM.  <vspace blankLines='1'/>
See Sections 3.4 and Section 6 of <xref target="RFC8747"/> for more discussion.</t>
</list></t>

<t>Note: The proof-of-possession functionality for the Attestation Result may not be supported by every attestation technology or may not be enabled for use in every deployment.</t>

<t>Based on the results of attestation (if any), any SUIT Reports,
and the lists of installed, requested,
and unneeded Trusted Components reported in the QueryResponse, the TAM
determines, in any implementation specific manner, which Trusted Components
need to be installed, updated, or deleted, if any.  There are typically three cases:</t>

<t><list style="numbers" type="1">
  <t>Attestation failed. This indicates that the rest of the information in the QueryResponse
cannot necessarily be trusted, as the TEEP Agent may not be healthy (or at least up to date).
In this case, the TAM might attempt to use TEEP to update any Trusted Components (e.g., firmware,
the TEEP Agent itself, etc.) needed to get the TEEP Agent back into an up-to-date state that
would allow attestation to succeed.  If the TAM does not have permission to update such components
(this can happen if different TAMs manage different components in the device), the TAM instead
responds with an Update message containing an appropriate err-msg, and err-code set to ERR_ATTESTATION_REQUIRED.</t>
  <t>Attestation succeeded (so the QueryResponse information can be accepted as valid), but the set
of Trusted Components needs to be updated based on TAM policy changes or requests from the TEEP Agent.</t>
  <t>Attestation succeeded, and no changes are needed.</t>
</list></t>

<t>If any Trusted Components need to be installed, updated, or deleted,
the TAM sends an Update message containing SUIT Manifests with command
sequences to do the relevant installs, updates, or deletes.
It is important to note that the TEEP Agent's
Update Procedure requires resolving and installing any dependencies
indicated in the manifest, which may take some time, and the resulting Success
or Error message is generated only after completing the Update Procedure.
Hence, depending on the freshness mechanism in use, the TAM may need to
store data (e.g., a nonce) for some time.  For example, if a mobile device
needs an unmetered connection to download a dependency, it may take
hours or longer before the device has sufficient access.  A different
freshness mechanism, such as timestamps, might be more appropriate in such
cases.</t>

<t>If no Trusted Components need to be installed, updated, or deleted, but the QueryResponse included
Evidence, the TAM MAY (e.g., based on attestation-payload-format parameters received from the TEEP Agent
in the QueryResponse) still send an Update message with no SUIT Manifests, to pass the Attestation
Result back to the TEEP Agent.</t>

</section>
</section>
<section anchor="handling-a-success-or-error-message"><name>Handling a Success or Error Message</name>

<t>If a Success or Error message is received containing one or more SUIT Reports, the TAM also validates that
the nonce in any SUIT Report matches the token sent in the Update message,
and drops the message if it does not match.  Otherwise, the TAM handles
the update in any implementation specific way, such as updating any locally
cached information about the state of the TEEP Agent, or logging the results.</t>

<t>If an Error message is received with the error code ERR_ATTESTATION_REQUIRED, it indicates that the TEEP Agent is requesting attestation of the TAM.
In this case, the TAM MUST send another QueryRequest with an attestation-payload and optionally a suit-report to the TEEP Agent.</t>

<t>If any other Error message is received, the TAM can handle it in any implementation
specific way, but <xref target="error-message-def"/> provides recommendations for such handling.</t>

</section>
</section>
<section anchor="agent"><name>TEEP Agent Behavior</name>

<t>When the RequestTA API is invoked, the TEEP Agent first checks whether the
requested TA is already installed.  If it is already installed, the
TEEP Agent passes no data back to the caller.  Otherwise,
if the TEEP Agent chooses to initiate the process of requesting the indicated
TA, it determines (in any implementation specific way) the TAM URI based on
any TAM URI provided by the RequestTA caller and any local configuration,
and passes back the TAM URI to connect to.  It MAY also pass back a
QueryResponse message if all of the following conditions are true:</t>

<t><list style="symbols">
  <t>The last QueryRequest message received from that TAM contained no token or challenge,</t>
  <t>The ProcessError API was not invoked for that TAM since the last QueryResponse
message was received from it, and</t>
  <t>The public key or certificate of the TAM is cached and not expired.</t>
</list></t>

<t>When the RequestPolicyCheck API is invoked, the TEEP Agent decides
whether to initiate communication with any trusted TAMs (e.g., it might
choose to do so for a given TAM unless it detects that it has already
communicated with that TAM recently). If so, it passes back a TAM URI
to connect to.  If the TEEP Agent has multiple TAMs it needs to connect
with, it just passes back one, with the expectation that
RequestPolicyCheck API will be invoked to retrieve each one successively
until there are no more and it can pass back no data at that time.
Thus, once a TAM URI is returned, the TEEP Agent can remember that it has
already initiated communication with that TAM.</t>

<t>When the ProcessError API is invoked, the TEEP Agent can handle it in
any implementation specific way, such as logging the error or
using the information in future choices of TAM URI.</t>

<t>When the ProcessTeepMessage API is invoked, the Agent first does validation
as specified in <xref target="validation"/>, and if it is not valid then the Agent
responds with an Error message.
Otherwise, processing continues as follows based on the type of message.</t>

<section anchor="handling-a-queryrequest-message"><name>Handling a QueryRequest Message</name>

<t>When a QueryRequest message is received, it is processed as follows.</t>

<t>If the TEEP Agent requires attesting the TAM and the QueryRequest message did not
contain an attestation-payload, the TEEP Agent MUST send an Error Message
with the error code ERR_ATTESTATION_REQUIRED supplying the supported-freshness-mechanisms and challenge if needed.
Otherwise, processing continues as follows.</t>

<t>If the TEEP Agent requires attesting the TAM and the QueryRequest message did
contain an attestation-payload, the TEEP Agent checks whether it contains Evidence or an
Attestation Result by inspecting the attestation-payload-format
parameter.  The media type defined in <xref target="eat"/> indicates an Attestation Result, though future
extensions might also indicate other Attestation Result formats in the future. Any other unrecognized
value indicates Evidence.  If it contains an Attestation Result, processing continues as in
<xref target="attestation-result-agent"/>.</t>

<t>If the QueryRequest is instead determined to contain Evidence, the TEEP Agent passes
the Evidence (via some mechanism out of scope of this document) to an attestation Verifier
(see <xref target="RFC9334"/>)
to determine whether the TAM is in a trustworthy state.  Once the TEEP Agent receives an Attestation
Result from the Verifier, processing continues as in <xref target="attestation-result-agent"/>.</t>

<t>The TEEP Agent MAY also use (in any implementation specific way) any SUIT Reports in the
QueryRequest in determining whether it trusts the TAM.  If a SUIT Report
uses a suit-cose-profile that the TEEP Agent does not support, then the TEEP
Agent MUST send an Error Message with the error code ERR_UNSUPPORTED_SUIT_REPORT supplying
the supported-suit-cose-profiles.  Otherwise, processing continues as follows.</t>

<t>Once the Attestation Result is handled, or if the TEEP Agent does not require attesting the TAM,
the Agent responds with a
QueryResponse message if all fields were understood, or an Error message
if any error was encountered.</t>

<section anchor="attestation-result-agent"><name>Handling an Attestation Result</name>

<t>The Attestation Result must first be validated as follows:</t>

<t><list style="numbers" type="1">
  <t>Verify that the Attestation Result was signed by a Verifier that the TEEP Agent trusts.</t>
  <t>Verify that the Attestation Result contains a "cnf" claim (as defined in Section 3.1 of <xref target="RFC8747"/>) where
the key ID is the hash of the TAM public key used to verify the signature on the TEEP message,
and the hash is computed using the Digest Algorithm specified by one of the SUIT profiles
supported by the TEEP Agent.  <vspace blankLines='1'/>
See Sections 3.4 and Section 6 of <xref target="RFC8747"/> for more discussion.</t>
</list></t>

</section>
</section>
<section anchor="handling-an-update-message"><name>Handling an Update Message</name>

<t>When an Update message is received, the Agent attempts to unlink any
SUIT manifests listed in the unneeded-manifest-list field of the message,
and responds with an Error message if any error was encountered.
If the unneeded-manifest-list was empty, or no error was encountered processing it,
the Agent attempts to update
the Trusted Components specified in the SUIT manifests
by following the Update Procedure specified
in <xref target="I-D.ietf-suit-manifest"/>, and responds with a Success message if
all SUIT manifests were successfully installed, or an Error message
if any error was encountered.
It is important to note that the
Update Procedure requires resolving and installing any dependencies
indicated in the manifest, which may take some time, and the Success
or Error message is generated only after completing the Update Procedure.</t>

</section>
</section>
</section>
<section anchor="ciphersuite"><name>Cipher Suites</name>

<t>TEEP requires algorithms for various purposes:</t>

<t><list style="symbols">
  <t>Algorithms for signing TEEP messages exchanged between the TEEP Agent and the TAM.</t>
  <t>Algorithms for signing EAT-based Evidence sent by the Attester via the TEEP Agent and the TAM to the Verifier.</t>
  <t>Algorithms for encrypting EAT-based Evidence sent by the TEEP Agent to the TAM. (The TAM will decrypt the encrypted Evidence and will forward it to the Verifier.)</t>
  <t>Algorithms for signing and optionally encrypting SUIT reports sent by the TEEP Agent to the TAM.</t>
  <t>Algorithms for signing and optionally encrypting SUIT manifests sent by the Trusted Component Signer to the TEEP Agent.</t>
</list></t>

<t>Further details are provided for the protection of TEEP messages, SUIT Reports, and EATs.</t>

<section anchor="teep-ciphersuite"><name>TEEP Messages</name>

<t>The TEEP protocol uses COSE for protection of TEEP messages in both directions.
To negotiate cryptographic mechanisms and algorithms, the TEEP protocol defines the following cipher suite structure,
which is used to specify an ordered set of operations (e.g., sign) done as part of composing a TEEP message.
Although this specification only specifies the use of signing and relies on payload encryption to protect sensitive
information, future extensions might specify support for encryption and/or MAC operations if needed.</t>

<figure><sourcecode type="cddl-cipher-suite"><![CDATA[
; teep-cipher-suites
$teep-cipher-suite /= teep-cipher-suite-sign1-ed25519
$teep-cipher-suite /= teep-cipher-suite-sign1-esp256

;The following two cipher suites have only a single operation each.
;Other cipher suites may be defined to have multiple operations.
;It is MANDATORY for TAM to support them, and OPTIONAL
;to support any additional ones that use COSE_Sign_Tagged, or other
;signing, encryption, or MAC algorithms.

teep-operation-sign1-ed25519 = [ cose-sign1, cose-alg-ed25519 ]
teep-operation-sign1-esp256  = [ cose-sign1, cose-alg-esp256 ]

teep-cipher-suite-sign1-ed25519 = [ teep-operation-sign1-ed25519 ]
teep-cipher-suite-sign1-esp256  = [ teep-operation-sign1-esp256 ]

;MANDATORY for TAM and TEEP Agent to support the following COSE
;operations, and OPTIONAL to support additional ones such as
;COSE_Sign_Tagged, COSE_Encrypt0_Tagged, etc.

cose-sign1 = 18      ; CoAP Content-Format value

;MANDATORY for TAM to support the following, and OPTIONAL to
;implement any additional algorithms from the IANA COSE Algorithms
;registry.

cose-alg-esp256  = -9   ; ECDSA using P-256 curve and SHA-256
cose-alg-ed25519 = -19  ; EdDSA using Ed25519 curve
]]></sourcecode></figure>

<t>Each operation in a given cipher suite has two elements:</t>

<t><list style="symbols">
  <t>a COSE-type defined in Section 2 of <xref target="RFC9052"/> that identifies the type of operation, and</t>
  <t>a specific cryptographic algorithm as defined in the COSE Algorithms registry <xref target="COSE.Algorithm"/> to be used to perform that operation.</t>
</list></t>

<t>A TAM MUST support both of the cipher suites defined above.  A TEEP Agent MUST support at least
one of the two but can choose which one.  For example, a TEEP Agent might
choose a given cipher suite if it has hardware support for it.
A TAM or TEEP Agent MAY also support any other algorithms in the COSE Algorithms
registry in addition to the mandatory ones listed above.  It MAY also support use
with COSE_Sign or other COSE types in additional cipher suites.</t>

<t>Any cipher suites without confidentiality protection can only be added if the
associated specification includes a discussion of security considerations and
applicability, since manifests may carry sensitive information. For example,
Section 6 of <xref target="RFC9397"/> permits implementations that
terminate transport security inside the TEE and if the transport security
provides confidentiality then additional encryption might not be needed in
the manifest for some use cases. For most use cases, however, manifest
confidentiality will be needed to protect sensitive fields from the TAM as
discussed in Section 9.8 of <xref target="RFC9397"/>.</t>

<t>The cipher suites defined above do not do encryption at the TEEP layer, but
permit encryption of the SUIT payload using a mechanism such as <xref target="I-D.ietf-suit-firmware-encryption"/>.
See <xref target="security"/> and <xref target="eat-suit-ciphersuite"/> for more discussion of specific payloads.</t>

<t>For the initial QueryRequest message, unless the TAM has more specific knowledge about the TEEP Agent
(e.g., if the QueryRequest is sent in response to some underlying transport message that contains a hint),
the message does not use COSE_Sign1 with one of the above cipher suites, but instead uses COSE_Sign with multiple signatures,
one for each algorithm used in any of the cipher suites listed in the supported-teep-cipher-suites
parameter of the QueryRequest, so that a TEEP Agent supporting any one of them can verify a signature.
If the TAM does have specific knowledge about which cipher suite the TEEP Agent supports,
it MAY instead use that cipher suite with the QueryRequest.</t>

<t>For an Error message with code ERR_UNSUPPORTED_CIPHER_SUITES, the TEEP Agent MUST
protect it with any of the cipher suites mandatory for the TAM.</t>

<t>For all other TEEP messages between the TAM and TEEP Agent,
the selected TEEP cipher suite MUST be used in both directions.</t>

</section>
<section anchor="eat-suit-ciphersuite"><name>EATs and SUIT Reports</name>

<t>TEEP uses COSE for confidentiality of EATs and SUIT Reports sent by a TEEP Agent.
The TEEP Agent obtains a signed EAT and then SHOULD encrypt it using the TAM
as the recipient, unless the transport layer provides sufficient confidentiality
protection or the TEEP Agent's deployment environment does not permit access to
the TAM's public key. A SUIT Report is created by a SUIT processor, which
is part of the TEEP Agent itself. The TEEP Agent is therefore in control of signing
the SUIT Report and SHOULD encrypt it for the same reasons, to protect sensitive
information from intermediate processors and transport mechanisms. Again, the TAM is the recipient of the encrypted
content. For content-key distribution Ephemeral-Static Diffie-Hellman (ES-DH) is used
in this specification. See Section 8.5.5 and Appendix B of <xref target="RFC9052"/> for more details.
(If <xref target="I-D.ietf-suit-firmware-encryption"/> is used, it is also the same as discussed in
Section 6.2 of that document.)</t>

<t>ES-DH is a scheme that provides public key encryption given
a recipient's public key. Hence, the TEEP Agent needs to be in possession of the public
key of the TAM. See Section 5 of <xref target="RFC9397"/> for more discussion of TAM keys used by the
TEEP Agent. There are multiple variants of this scheme; this document uses the
variant specified in Section 8.5.5 of <xref target="RFC9052"/>.</t>

<t>The following two layer structure is used:</t>

<t><list style="symbols">
  <t>Layer 0: Has a content encrypted with the Content Encryption Key (CEK), a symmetric key.
For encrypting SUIT Reports and EATs the content MUST NOT be detached.</t>
  <t>Layer 1: Uses the AES Key Wrap algorithm to encrypt the randomly generated CEK with the
Key Encryption Key (KEK) derived with ES-DH, whereby the resulting symmetric key is fed
into the HKDF-based key derivation function.</t>
</list></t>

<t>As a result, the two layers combine ES-DH with AES-KW and HKDF.</t>

<t>This document reuses the CDDL defined in Section 6.2.3 of
<xref target="I-D.ietf-suit-firmware-encryption"/> and the context information structure defined in
Section 6.2.4 of <xref target="I-D.ietf-suit-firmware-encryption"/> although with an important modification.
The COSE_KDF_Context.SuppPubInfo.other value MUST be set to "SUIT Report Encryption" when a
SUIT Report is encrypted and MUST be set to "EAT Encryption" when an EAT is encrypted. The
COSE_KDF_Context.SuppPubInfo.other field captures the protocol in which the ES-DH content key
distribution algorithm is used.</t>

<t>This specification defines cipher suites for confidentiality protection of EATs and
SUIT Reports. The TAM MUST support each cipher suite defined below, based on definitions in
<xref target="I-D.ietf-suit-mti"/>.  A TEEP Agent MUST support at least one of the cipher
suites below but can choose which one.  For example, a TEEP Agent might
choose a given cipher suite if it has hardware support for it.
A TAM or TEEP Agent MAY also support other algorithms in the COSE Algorithms registry.
It MAY also support use with COSE_Encrypt or other COSE types in additional cipher suites.</t>

<figure><sourcecode type="cddl-suit-cose-profile"><![CDATA[
; suit-cose-profile
$suit-cose-profile /= suit-sha256-esp256-ecdh-a128ctr
$suit-cose-profile /= suit-sha256-ed25519-ecdh-a128ctr
$suit-cose-profile /= suit-sha256-esp256-ecdh-a128gcm
$suit-cose-profile /= suit-sha256-ed25519-ecdh-chacha-poly
]]></sourcecode></figure>

</section>
</section>
<section anchor="freshness-mechanisms"><name>Attestation Freshness Mechanisms</name>

<t>A freshness mechanism determines how a TAM can tell whether an attestation payload provided
in a QueryResponse is fresh.  There are multiple ways this can be done
as discussed in Section 10 of <xref target="RFC9334"/>.</t>

<t>Each freshness mechanism is identified with an integer value, which corresponds to
an IANA registered freshness mechanism (see the IANA Considerations section of
<xref target="I-D.ietf-rats-reference-interaction-models"/>).
This document uses the following freshness mechanisms which may be added to in the
future by TEEP extensions:</t>

<figure><sourcecode type="cddl-freshness"><![CDATA[
; freshness-mechanisms
FRESHNESS_NONCE = 0
FRESHNESS_TIMESTAMP = 1

$freshness-mechanism /= FRESHNESS_NONCE
$freshness-mechanism /= FRESHNESS_TIMESTAMP
]]></sourcecode></figure>

<t>An implementation MUST support the Nonce mechanism and MAY support additional
mechanisms.</t>

<t>In the Nonce mechanism, the attestation payload MUST include a nonce provided
in the QueryRequest challenge if the Background Check model is used, or in
the QueryRequest token if the Passport model is used.  The timestamp mechanism uses a timestamp
determined via mechanisms outside the TEEP protocol,
and the challenge is only needed in the QueryRequest message
if a challenge is needed in generating the attestation payload for reasons other
than freshness.</t>

<t>If a TAM supports multiple freshness mechanisms that require different challenge
formats, the QueryRequest message can currently only send one such challenge.
This situation is expected to be rare, but should it occur, the TAM can
choose to prioritize one of them and exclude the other from the
supported-freshness-mechanisms in the QueryRequest, and resend the QueryRequest
with the other mechanism if an ERR_UNSUPPORTED_FRESHNESS_MECHANISMS Error
is received that indicates the TEEP Agent supports the other mechanism.</t>

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

<t>This section summarizes the security considerations discussed in this
specification:</t>

<dl newline="true">
  <dt>Cryptographic Algorithms</dt>
  <dd>
    <t>TEEP protocol messages exchanged between the TAM and the TEEP Agent
are protected using COSE. This specification relies on the
cryptographic algorithms provided by COSE.  Public key based
authentication is used by the TEEP Agent to authenticate the TAM
and vice versa.</t>
  </dd>
  <dt>Attestation</dt>
  <dd>
    <t>A TAM relies on signed Attestation Results provided by a Verifier,
either obtained directly using a mechanism outside the TEEP protocol
(by using some mechanism to pass Evidence obtained in the attestation payload of
a QueryResponse, and getting back the Attestation Results), or indirectly
via the TEEP Agent forwarding the Attestation Results in the attestation
payload of a QueryResponse. See the security considerations of the
specific mechanism in use (e.g., EAT) for more discussion.
</t>

    <t>An impersonation attack, where one TEEP Agent attempts to use the attestation
payload of another TEEP Agent, can be prevented using a proof-of-possession
approach.  The "cnf" claim is mandatory in the EAT profile for EAT for this
purpose.  See Section 6 of <xref target="RFC8747"/> and <xref target="attestation-result-tam"/> and
<xref target="attestation-result-agent"/> of this document
for more discussion.</t>
  </dd>
  <dt>Trusted Component Binaries</dt>
  <dd>
    <t>Each Trusted Component binary is signed by a Trusted Component Signer. It is the responsibility of the
TAM to relay only verified Trusted Components from authorized Trusted Component Signers.  Delivery of
a Trusted Component to the TEEP Agent is then the responsibility of the TAM,
using the security mechanisms provided by the TEEP
protocol.  To protect the Trusted Component binary, the SUIT manifest format is used and
it offers a variety of security features, including digital
signatures and content encryption, if a SUIT mechanism such as <xref target="I-D.ietf-suit-firmware-encryption"/>
is used.</t>
  </dd>
  <dt>Personalization Data</dt>
  <dd>
    <t>A Trusted Component Signer or TAM can supply personalization data along with a Trusted Component.
This data is also protected by a SUIT manifest. Personalization data is signed and encrypted
by a Trusted Component Signer, if a SUIT mechanism such as <xref target="I-D.ietf-suit-firmware-encryption"/>
is used.</t>
  </dd>
  <dt>TEEP Broker</dt>
  <dd>
    <t>As discussed in Section 6 of <xref target="RFC9397"/>,
the TEEP protocol typically relies on a TEEP Broker to relay messages
between the TAM and the TEEP Agent.  When the TEEP Broker is
compromised, it can drop messages, delay the delivery of messages,
and replay messages, but it cannot modify those messages. (A replay
would be, however, detected by the TEEP Agent.) A compromised TEEP
Broker could reorder messages in an attempt to install an old
version of a Trusted Component. Information in the manifest ensures that TEEP
Agents are protected against such downgrade attacks based on
features offered by the manifest itself.</t>
  </dd>
  <dt>Replay Protection</dt>
  <dd>
    <t>The TEEP protocol supports replay protection as follows.
The transport protocol under the TEEP protocol might provide replay
protection, but may be terminated in the TEEP Broker which is not trusted
by the TEEP Agent and so the TEEP protocol does replay protection itself.
If attestation of the TAM is used, the attestation freshness mechanism
provides replay protection for attested QueryRequest messages.
If non-attested QueryRequest messages are replayed, the TEEP Agent will generate
QueryResponse or Error messages, but the REE can already conduct Denial of Service
attacks against the TEE and/or the TAM even without the TEEP protocol.
QueryResponse messages have replay protection via attestation freshness mechanism,
or the token field in the message if attestation is not used.
Update messages have replay protection via the suit-manifest-sequence-number
(see Section 8.4.2 of <xref target="I-D.ietf-suit-manifest"/>).
Error and Success messages have replay protection via SUIT Reports and/or the token
field in the message, where a TAM can detect which message it is in response to.</t>
  </dd>
  <dt>Trusted Component Signer Compromise</dt>
  <dd>
    <t>A TAM is responsible for vetting Trusted Components before distributing them to TEEP Agents.
It is RECOMMENDED to provide a way to
update the trust anchor store used by the TEE, for example using
a firmware update mechanism such as <xref target="I-D.ietf-rats-concise-ta-stores"/>.  Thus, if a Trusted Component
Signer is later compromised, the TAM can update the trust anchor
store used by the TEE, for example using a firmware update mechanism.</t>
  </dd>
  <dt>CA Compromise</dt>
  <dd>
    <t>The CA issuing certificates to a TEE or a Trusted Component Signer might get compromised.
It is RECOMMENDED to provide a way to update the trust anchor store used by the TEE, for example
by using a firmware update mechanism, Concise TA Stores <xref target="I-D.ietf-rats-concise-ta-stores"/>, Trust
Anchor Management Protocol (TAMP) <xref target="RFC5934"/> or a similar mechanism. If the CA issuing 
certificates to devices gets compromised then these devices will be rejected by a
TAM, if revocation is available to the TAM.</t>
  </dd>
  <dt>TAM Certificate Expiry</dt>
  <dd>
    <t>The integrity and the accuracy of the
clock within the TEE determines the ability to determine an expired
TAM certificate, if certificates are used.</t>
  </dd>
  <dt>Compromised Time Source</dt>
  <dd>
    <t>As discussed above, certificate validity checks rely on comparing
validity dates to the current time, which relies on having a trusted
source of time, such as <xref target="RFC8915"/>.  A compromised time source could
thus be used to subvert such validity checks.</t>
  </dd>
</dl>

<section anchor="operational"><name>Operational Considerations</name>

<t>This section summarizes operational and management guidance for
deployments using the TEEP protocol.  It complements the general
operational guidelines in the IETF operations-area document <xref target="I-D.ietf-opsawg-rfc5706bis"/>
and refers implementers to the architecture and conceptual APIs in
<xref target="RFC9397"/> for configuration and management points.</t>

<t><list style="symbols">
  <t>Configuration and placement: Protocol-specific configuration is
typically performed in the TAM, the TEEP Agent, and any Verifier used
by the TAM.  See the conceptual APIs in <xref target="RFC9397"/> for the
configuration points exposed by implementations (e.g., which
Trusted Components to manage, trust anchors, and per-device state).</t>
  <t>Token lifecycle and state management: Tokens are used to match
requests and responses and to provide limited replay protection.  The
guidance in this document requires random initial tokens and
non-reuse; implementers MUST ensure bounded storage of outstanding
tokens (timeouts, per-device caps) and MUST expire tokens after the
first valid response.  Operational deployments SHOULD tune token
timeouts to accommodate device processing time (see <xref target="tam"/>).</t>
  <t>Key and certificate lifecycle: Operators MUST run procedures for
certificate and key issuance, rollover, revocation, and timely
renewal.  Implementations SHOULD support certificate status checks
and have clear behavior when certificates are expired or revoked
(see err-code behaviors such as ERR_CERTIFICATE_EXPIRED and
ERR_BAD_CERTIFICATE).</t>
  <t>Logging, monitoring, and diagnostics: Implementations SHOULD log
operational events, but MUST avoid placing sensitive data (e.g., raw
Evidence, private keys) into logs.  Diagnostic fields, such as
<spanx style="verb">err-msg</spanx> (optionally accompanied by <spanx style="verb">err-lang</spanx>), are intended for
human operators; logs should capture structured error codes and
minimal diagnostic text to aid incident response.</t>
  <t>Rate limiting and DoS protection: Implementations SHOULD apply
rate limits and backoff policies to mitigate malformed or
high-volume requests.  Agents SHOULD limit the size and number of
concurrent manifests processed and protect local resources (CPU,
memory, storage) from exhausting.</t>
  <t>Time synchronization: Accurate device time is important for
certificate validity checks and for some attestation freshness
mechanisms.  Operators SHOULD ensure devices maintain adequate
time synchronization.</t>
  <t>Privacy and data minimization Attestation results, SUIT reports,
and system-property-claims can contain identifying information.  Do
not expose such data to unauthorised parties; apply least-privilege
principles when requesting or returning attestation or component
lists.</t>
  <t>Upgrade and rollback procedures: Manifest processing can be
disruptive.  Operators SHOULD plan for safe upgrade and rollback
procedures, including verification of manifests prior to execution,
mechanisms for retry, and consideration of partial failure modes.</t>
  <t>Transport and deployment-specific concerns: TEEP is transport
agnostic; operators MUST ensure the chosen transport provides
adequate confidentiality, integrity, authentication, and replay
protection.  See the HTTP binding draft <xref target="I-D.ietf-teep-otrp-over-http"/>
for transport-specific operational details when that binding is used.</t>
  <t>Scaling and batching: Large-scale deployments SHOULD consider
batching updates and asynchronous workflows to avoid overwhelming
devices or management servers.  Unsolicited messages and polling
behavior should be chosen to balance timeliness and operational
load.</t>
  <t>Emergency recovery: Provide procedures for emergency recovery,
including factory-reset processes, certificate revocation handling,
and operational steps for devices that become non-responsive after
updates.</t>
</list></t>

<t>Where operational considerations are covered by other documents (for
example, the TEEP architecture <xref target="RFC9397"/>), implementers SHOULD follow
the guidance in those documents as applicable.</t>

</section>
</section>
<section anchor="transport"><name>Transport Considerations</name>

<t>This specification defines the TEEP protocol as a set of messages to be exchanged
between a TAM and a TEEP Agent.  However, this specification is transport-agnostic
and does not mandate use of a specific transport protocol.  The TEEP protocol messages
are signed and can be optionally encrypted at the protocol layer, providing end-to-end
security independent of the underlying transport.</t>

<t>Companion specifications define how TEEP messages are transported over specific
protocols. For example, <xref target="I-D.ietf-teep-otrp-over-http"/> defines how TEEP messages
are transported over HTTP/HTTPS. TEEP transport specifications MUST provide the
following information:</t>

<t><list style="symbols">
  <t>Whether the transport provides reliability guarantees and ordered delivery</t>
  <t>How message loss and retransmission are handled</t>
  <t>Recovery mechanisms for mid-transaction transport failures</t>
  <t>How the transport handles duplicate messages and idempotency</t>
  <t>How transport-layer errors are reported to the TEEP Agent and TAM</t>
</list></t>

<t>Implementations SHOULD use a transport that provides authentication of the
remote endpoint and confidentiality protection of messages in flight, or
provide these protections at the TEEP protocol layer.  As discussed in
<xref target="RFC9397"/>, the TEEP protocol uses end-to-end cryptographic protection
via COSE to ensure that messages cannot
be modified by intermediaries, such as the TEEP Broker.</t>

<t>The token field in TEEP messages (present in QueryRequest and Update messages)
is used for request-response matching. As described in <xref target="tam"/>, the token MUST
be unique among outstanding requests for a given device at a given TAM, but
tokens MAY be reused for new requests once the previous request has received
a response or timed out. Token reuse across multiple devices or TAMs is permitted
but not required; implementations MAY choose to make tokens globally unique
for audit or logging purposes.</t>

</section>
<section anchor="privacy"><name>Privacy Considerations</name>

<t>Depending on
the properties of the attestation mechanism, it is possible to
uniquely identify a device based on information in the
attestation payload or in the certificate used to sign the
attestation payload.  This uniqueness may raise privacy concerns. To lower the privacy implications, the TEEP Agent MUST present its
attestation payload only to an authenticated and authorized TAM and, when using
an EAT, it SHOULD use encryption as discussed in <xref target="RFC9711"/> unless the transport
layer provides sufficient confidentiality protection. Encryption is particularly
important since confidentiality is not provided by the TEEP protocol itself and
the transport protocol under the TEEP protocol might be implemented
outside of any TEE. If any mechanism other than EAT is used, that
mechanism MUST specify how privacy is provided.</t>

<t>Since SUIT Reports can also contain sensitive information, a TEEP Agent
SHOULD also encrypt SUIT Reports as discussed in <xref target="eat-suit-ciphersuite"/>, particularly
when they contain device identifiers or other sensitive operational data.</t>

<t>In addition, in the usage scenario discussed in <xref target="directtam"/>, a device
reveals its IP address to the Trusted Component Binary server.  This
can reveal to that server at least a clue as to its location, which
might be sensitive information in some cases.</t>

<t>EATs and SUIT Reports from a TAM can also be present in
a QueryRequest. Typically, the ability to uniquely identify a TAM
is less of a concern than it is for TEEP Agents, but where confidentiality
is a concern for the TAM, such EATs and SUIT Reports SHOULD be encrypted
just like ones from TEEP Agents.</t>

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

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

<t>IANA is requested to assign a media type for
application/teep+cbor.</t>

<dl>
  <dt>Type name:</dt>
  <dd>
    <t>application</t>
  </dd>
  <dt>Subtype name:</dt>
  <dd>
    <t>teep+cbor</t>
  </dd>
  <dt>Required parameters:</dt>
  <dd>
    <t>none</t>
  </dd>
  <dt>Optional parameters:</dt>
  <dd>
    <t>none</t>
  </dd>
  <dt>Encoding considerations:</dt>
  <dd>
    <t>Same as encoding considerations of
application/cbor.</t>
  </dd>
  <dt>Security considerations:</dt>
  <dd>
    <t>See Security Considerations Section of this document.</t>
  </dd>
  <dt>Interoperability considerations:</dt>
  <dd>
    <t>Same as interoperability
considerations of application/cbor as specified in <xref target="RFC8949"/>.</t>
  </dd>
  <dt>Published specification:</dt>
  <dd>
    <t>This document.</t>
  </dd>
  <dt>Applications that use this media type:</dt>
  <dd>
    <t>TEEP protocol implementations</t>
  </dd>
  <dt>Fragment identifier considerations:</dt>
  <dd>
    <t>N/A</t>
  </dd>
  <dt>Additional information:</dt>
  <dd>
    <t><list style="symbols">
      <t>Deprecated alias names for this type: N/A</t>
      <t>Magic number(s): N/A</t>
      <t>File extension(s): N/A</t>
      <t>Macintosh file type code(s): N/A</t>
    </list></t>
  </dd>
  <dt>Person to contact for further information:</dt>
  <dd>
    <t>teep@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:</dt>
  <dd>
    <t>See the "Authors' Addresses" section of this document</t>
  </dd>
  <dt>Change controller:</dt>
  <dd>
    <t>IETF</t>
  </dd>
</dl>

</section>
<section anchor="teep-message-type-registry"><name>TEEP Message Type Registry</name>

<t>IANA is requested to create a new registry titled "TEEP Message Types" within the TEEP
registry.  The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>(Reserved)</c>
      <c>This document</c>
      <c>1</c>
      <c>TEEP-TYPE-query-request</c>
      <c>This document</c>
      <c>2</c>
      <c>TEEP-TYPE-query-response</c>
      <c>This document</c>
      <c>3</c>
      <c>TEEP-TYPE-update</c>
      <c>This document</c>
      <c>4</c>
      <c>(Reserved)</c>
      <c>This document</c>
      <c>5</c>
      <c>TEEP-TYPE-teep-success</c>
      <c>This document</c>
      <c>6</c>
      <c>TEEP-TYPE-teep-error</c>
      <c>This document</c>
      <c>7-23</c>
      <c>(Reserved for future use)</c>
      <c>This document</c>
</texttable>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-12: Standards Action</t>
  <t>13-23: Specification Required</t>
</list></t>

</section>
<section anchor="data-item-requested-bitmap-registry"><name>data-item-requested Bitmap Registry</name>

<t>IANA is requested to create a registry titled "TEEP data-item-requested Bits" within the TEEP
registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Bit</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>attestation</c>
      <c>TAM requests attestation payload</c>
      <c>This document</c>
      <c>1</c>
      <c>trusted-components</c>
      <c>TAM queries installed Trusted Components</c>
      <c>This document</c>
      <c>2</c>
      <c>extensions</c>
      <c>TAM queries supported extensions</c>
      <c>This document</c>
      <c>3</c>
      <c>suit-reports</c>
      <c>TAM requests SUIT Reports</c>
      <c>This document</c>
      <c>4-31</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>This document</c>
</texttable>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-23: Standards Action</t>
  <t>24-31: Specification Required</t>
</list></t>

</section>
<section anchor="teep-error-code-registry"><name>TEEP Error Code Registry</name>

<t>IANA is requested to create a registry titled "TEEP Error Codes" within the TEEP
registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Description</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>(Reserved)</c>
      <c>Reserved to prevent accidental use</c>
      <c>This document</c>
      <c>1</c>
      <c>ERR_PERMANENT_ERROR</c>
      <c>Incorrect or inconsistent fields</c>
      <c>This document</c>
      <c>2</c>
      <c>ERR_UNSUPPORTED_EXTENSION</c>
      <c>Unsupported extension in message</c>
      <c>This document</c>
      <c>3</c>
      <c>ERR_UNSUPPORTED_FRESHNESS_MECHANISMS</c>
      <c>Unsupported freshness mechanism</c>
      <c>This document</c>
      <c>4</c>
      <c>ERR_UNSUPPORTED_MSG_VERSION</c>
      <c>Unsupported TEEP protocol version</c>
      <c>This document</c>
      <c>5</c>
      <c>ERR_UNSUPPORTED_CIPHER_SUITES</c>
      <c>Unsupported cipher suites</c>
      <c>This document</c>
      <c>6</c>
      <c>ERR_BAD_CERTIFICATE</c>
      <c>Certificate processing failed</c>
      <c>This document</c>
      <c>7</c>
      <c>ERR_ATTESTATION_REQUIRED</c>
      <c>Attestation is required</c>
      <c>This document</c>
      <c>8</c>
      <c>ERR_UNSUPPORTED_SUIT_REPORT</c>
      <c>Unsupported SUIT Report profile</c>
      <c>This document</c>
      <c>9</c>
      <c>ERR_CERTIFICATE_EXPIRED</c>
      <c>Certificate has expired or is invalid</c>
      <c>This document</c>
      <c>10</c>
      <c>ERR_TEMPORARY_ERROR</c>
      <c>Temporary error (e.g., memory allocation)</c>
      <c>This document</c>
      <c>11-16</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>17</c>
      <c>ERR_MANIFEST_PROCESSING_FAILED</c>
      <c>Manifest processing failure</c>
      <c>This document</c>
      <c>18-22</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>23</c>
      <c>(Reserved)</c>
      <c>Reserved for future use</c>
      <c>&#160;</c>
</texttable>

<t>Note: Error codes are constrained to the range 0-23 to permit encoding as single-byte
CBOR unsigned integers.</t>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>1-10, 17: Standards Action</t>
  <t>11-16, 18-23: Reserved for future use by Specification Required</t>
</list></t>

</section>
<section anchor="teep-cbor-label-registry"><name>TEEP CBOR Label Registry</name>

<t>IANA is requested to create a registry titled "TEEP CBOR Labels" within the TEEP registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Type</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>(Reserved)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>1</c>
      <c>supported-teep-cipher-suites</c>
      <c>array</c>
      <c>This document</c>
      <c>2</c>
      <c>challenge</c>
      <c>bstr</c>
      <c>This document</c>
      <c>3</c>
      <c>versions</c>
      <c>array</c>
      <c>This document</c>
      <c>4</c>
      <c>supported-suit-cose-profiles</c>
      <c>array</c>
      <c>This document</c>
      <c>5</c>
      <c>(Reserved)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>6</c>
      <c>selected-version</c>
      <c>uint</c>
      <c>This document</c>
      <c>7</c>
      <c>attestation-payload</c>
      <c>bstr</c>
      <c>This document</c>
      <c>8</c>
      <c>tc-list</c>
      <c>array</c>
      <c>This document</c>
      <c>9</c>
      <c>ext-list</c>
      <c>array</c>
      <c>This document</c>
      <c>10</c>
      <c>manifest-list</c>
      <c>array</c>
      <c>This document</c>
      <c>11</c>
      <c>msg</c>
      <c>text</c>
      <c>This document</c>
      <c>12</c>
      <c>err-msg</c>
      <c>text</c>
      <c>This document</c>
      <c>13</c>
      <c>attestation-payload-format</c>
      <c>text</c>
      <c>This document</c>
      <c>14</c>
      <c>requested-tc-list</c>
      <c>array</c>
      <c>This document</c>
      <c>15</c>
      <c>unneeded-manifest-list</c>
      <c>array</c>
      <c>This document</c>
      <c>16</c>
      <c>component-id</c>
      <c>SUIT_Component_Identifier</c>
      <c>This document</c>
      <c>17</c>
      <c>tc-manifest-sequence-number</c>
      <c>uint</c>
      <c>This document</c>
      <c>18</c>
      <c>have-binary</c>
      <c>bool</c>
      <c>This document</c>
      <c>19</c>
      <c>suit-reports</c>
      <c>array</c>
      <c>This document</c>
      <c>20</c>
      <c>token</c>
      <c>bstr</c>
      <c>This document</c>
      <c>21</c>
      <c>supported-freshness-mechanisms</c>
      <c>array</c>
      <c>This document</c>
      <c>22</c>
      <c>(Reserved)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>23</c>
      <c>err-code</c>
      <c>uint</c>
      <c>This document</c>
      <c>2-255</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>256-</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
      <c>&#160;</c>
</texttable>

<t>Note: Labels are not constrained to a specific range.</t>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-255:: Standards Action</t>
  <t>256 and above: Specification Required</t>
</list></t>

</section>
<section anchor="teep-cipher-suite-registry"><name>TEEP Cipher Suite Registry</name>

<t>IANA is requested to create a registry titled "TEEP Cipher Suites" within the TEEP
registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>teep-cipher-suite-sign1-ed25519</c>
      <c>This document</c>
      <c>1</c>
      <c>teep-cipher-suite-sign1-esp256</c>
      <c>This document</c>
      <c>2-255</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
</texttable>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-23: Standards Action</t>
  <t>24-255: Specification Required</t>
</list></t>

<t>Any new cipher suites MUST provide authentication, integrity, and SHOULD provide
confidentiality protection.</t>

</section>
<section anchor="teep-freshness-mechanism-registry"><name>TEEP Freshness Mechanism Registry</name>

<t>IANA is requested to create a registry titled "TEEP Freshness Mechanisms" within the TEEP
registry. The registry has the following format:</t>

<texttable>
      <ttcol align='left'>Value</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>FRESHNESS_NONCE</c>
      <c>This document</c>
      <c>1</c>
      <c>FRESHNESS_TIMESTAMP</c>
      <c>This document</c>
      <c>2-255</c>
      <c>(Reserved for future use)</c>
      <c>&#160;</c>
</texttable>

<t>Registration procedures are as follows:</t>

<t><list style="symbols">
  <t>0-23: Standards Action</t>
  <t>24-255: Specification Required</t>
</list></t>

</section>
</section>


  </middle>

  <back>


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

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



<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="RFC3629">
  <front>
    <title>UTF-8, a transformation format of ISO 10646</title>
    <author fullname="F. Yergeau" initials="F." surname="Yergeau"/>
    <date month="November" year="2003"/>
    <abstract>
      <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems. The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo. UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values. This memo obsoletes and replaces RFC 2279.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="63"/>
  <seriesInfo name="RFC" value="3629"/>
  <seriesInfo name="DOI" value="10.17487/RFC3629"/>
</reference>
<reference anchor="RFC5646">
  <front>
    <title>Tags for Identifying Languages</title>
    <author fullname="A. Phillips" initials="A." role="editor" surname="Phillips"/>
    <author fullname="M. Davis" initials="M." role="editor" surname="Davis"/>
    <date month="September" year="2009"/>
    <abstract>
      <t>This document describes the structure, content, construction, and semantics of language tags for use in cases where it is desirable to indicate the language used in an information object. It also describes how to register values for use in language tags and the creation of user-defined extensions for private interchange. 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="47"/>
  <seriesInfo name="RFC" value="5646"/>
  <seriesInfo name="DOI" value="10.17487/RFC5646"/>
</reference>
<reference anchor="RFC5198">
  <front>
    <title>Unicode Format for Network Interchange</title>
    <author fullname="J. Klensin" initials="J." surname="Klensin"/>
    <author fullname="M. Padlipsky" initials="M." surname="Padlipsky"/>
    <date month="March" year="2008"/>
    <abstract>
      <t>The Internet today is in need of a standardized form for the transmission of internationalized "text" information, paralleling the specifications for the use of ASCII that date from the early days of the ARPANET. This document specifies that format, using UTF-8 with normalization and specific line-ending sequences. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="5198"/>
  <seriesInfo name="DOI" value="10.17487/RFC5198"/>
</reference>
<reference anchor="RFC8747">
  <front>
    <title>Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)</title>
    <author fullname="M. Jones" initials="M." surname="Jones"/>
    <author fullname="L. Seitz" initials="L." surname="Seitz"/>
    <author fullname="G. Selander" initials="G." surname="Selander"/>
    <author fullname="S. Erdtman" initials="S." surname="Erdtman"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <date month="March" year="2020"/>
    <abstract>
      <t>This specification describes how to declare in a CBOR Web Token (CWT) (which is defined by RFC 8392) that the presenter of the CWT possesses a particular proof-of-possession key. Being able to prove possession of a key is also sometimes described as being the holder-of-key. This specification provides equivalent functionality to "Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)" (RFC 7800) but using Concise Binary Object Representation (CBOR) and CWTs rather than JavaScript Object Notation (JSON) and JSON Web Tokens (JWTs).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8747"/>
  <seriesInfo name="DOI" value="10.17487/RFC8747"/>
</reference>
<reference anchor="RFC8949">
  <front>
    <title>Concise Binary Object Representation (CBOR)</title>
    <author fullname="C. Bormann" initials="C." surname="Bormann"/>
    <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
    <date month="December" year="2020"/>
    <abstract>
      <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
      <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="94"/>
  <seriesInfo name="RFC" value="8949"/>
  <seriesInfo name="DOI" value="10.17487/RFC8949"/>
</reference>
<reference anchor="RFC9679">
  <front>
    <title>CBOR Object Signing and Encryption (COSE) Key Thumbprint</title>
    <author fullname="K. Isobe" initials="K." surname="Isobe"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="O. Steele" initials="O." surname="Steele"/>
    <date month="December" year="2024"/>
    <abstract>
      <t>This specification defines a method for computing a hash value over a CBOR Object Signing and Encryption (COSE) Key. It specifies which fields within the COSE Key structure are included in the cryptographic hash computation, the process for creating a canonical representation of these fields, and how to hash the resulting byte sequence. The resulting hash value, referred to as a "thumbprint", can be used to identify or select the corresponding key.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9679"/>
  <seriesInfo name="DOI" value="10.17487/RFC9679"/>
</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="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="28" month="May" year="2025"/>
      <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-34"/>
   
</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="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-suit-report">
   <front>
      <title>Secure Reporting of SUIT Update Status</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
         <organization>Fraunhofer SIT</organization>
      </author>
      <date day="9" month="December" year="2025"/>
      <abstract>
	 <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>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-report-18"/>
   
</reference>

<reference anchor="COSE.Algorithm" target="https://www.iana.org/assignments/cose/cose.xhtml#algorithms">
  <front>
    <title>COSE Algorithms</title>
    <author >
      <organization>IANA</organization>
    </author>
    <date year="n.d."/>
  </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-firmware-encryption">
   <front>
      <title>Encrypted Payloads in SUIT Manifests</title>
      <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
         <organization>University of Applied Sciences Bonn-Rhein-Sieg</organization>
      </author>
      <author fullname="Russ Housley" initials="R." surname="Housley">
         <organization>Vigil Security, LLC</organization>
      </author>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="David Brown" initials="D." surname="Brown">
         <organization>Linaro</organization>
      </author>
      <author fullname="Ken Takayama" initials="K." surname="Takayama">
         <organization>SECOM CO., LTD.</organization>
      </author>
      <date day="8" month="December" year="2025"/>
      <abstract>
	 <t>   This document specifies techniques for encrypting software, firmware,
   machine learning models, and personalization data by utilizing the
   IETF SUIT manifest.  Key agreement is provided by ephemeral-static
   (ES) Diffie-Hellman (DH) and AES Key Wrap (AES-KW).  ES-DH uses
   public key cryptography while AES-KW uses a pre-shared key.
   Encryption of the plaintext is accomplished with conventional
   symmetric key cryptography.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-firmware-encryption-26"/>
   
</reference>

<reference anchor="I-D.ietf-rats-ar4si">
   <front>
      <title>Attestation Results for Secure Interactions</title>
      <author fullname="Eric Voit" initials="E." surname="Voit">
         <organization>Cisco Systems</organization>
      </author>
      <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname="Thomas Hardjono" initials="T." surname="Hardjono">
         <organization>MIT</organization>
      </author>
      <author fullname="Thomas Fossati" initials="T." surname="Fossati">
         <organization>Linaro</organization>
      </author>
      <author fullname="Vincent Scarlata" initials="V." surname="Scarlata">
         <organization>Intel</organization>
      </author>
      <date day="15" month="August" year="2025"/>
      <abstract>
	 <t>   This document defines reusable Attestation Result information
   elements.  When these elements are offered to Relying Parties as
   Evidence, different aspects of Attester trustworthiness can be
   evaluated.  Additionally, where the Relying Party is interfacing with
   a heterogeneous mix of Attesting Environment and Verifier types,
   consistent policies can be applied to subsequent information exchange
   between each Attester and the Relying Party.

   This document also defines two serialisations of the proposed
   information model, utilising CBOR and JSON.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-rats-ar4si-09"/>
   
</reference>

<reference anchor="I-D.ietf-rats-reference-interaction-models">
   <front>
      <title>Reference Interaction Models for Remote Attestation Procedures</title>
      <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname="Michael Eckel" initials="M." surname="Eckel">
         <organization>Fraunhofer SIT</organization>
      </author>
      <author fullname="Wei Pan" initials="W." surname="Pan">
         <organization>Huawei Technologies</organization>
      </author>
      <author fullname="Eric Voit" initials="E." surname="Voit">
         <organization>Cisco Systems</organization>
      </author>
      <date day="5" month="November" year="2025"/>
      <abstract>
	 <t>   This document describes interaction models for remote attestation
   procedures (RATS) [RFC9334].  Three conveying mechanisms --
   Challenge/Response, Uni-Directional, and Streaming Remote Attestation
   -- are illustrated and defined.  Analogously, a general overview
   about the information elements typically used by corresponding
   conveyance protocols are highlighted.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-rats-reference-interaction-models-15"/>
   
</reference>

<reference anchor="I-D.ietf-teep-otrp-over-http">
   <front>
      <title>HTTP Transport for Trusted Execution Environment Provisioning: Agent Initiated Communication</title>
      <author fullname="Dave Thaler" initials="D." surname="Thaler">
         <organization>Microsoft</organization>
      </author>
      <date day="27" month="March" year="2023"/>
      <abstract>
	 <t>   The Trusted Execution Environment Provisioning (TEEP) Protocol is
   used to manage code and configuration data in a Trusted Execution
   Environment (TEE).  This document specifies the HTTP transport for
   TEEP communication where a Trusted Application Manager (TAM) service
   is used to manage code and data in TEEs on devices that can initiate
   communication to the TAM.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-teep-otrp-over-http-15"/>
   
</reference>

<reference anchor="I-D.ietf-opsawg-rfc5706bis">
   <front>
      <title>Guidelines for Considering Operations and Management in IETF Specifications</title>
      <author fullname="Benoît Claise" initials="B." surname="Claise">
         <organization>Everything OPS</organization>
      </author>
      <author fullname="Joe Clarke" initials="J." surname="Clarke">
         <organization>Cisco</organization>
      </author>
      <author fullname="Adrian Farrel" initials="A." surname="Farrel">
         <organization>Old Dog Consulting</organization>
      </author>
      <author fullname="Samier Barguil" initials="S." surname="Barguil">
         <organization>Nokia</organization>
      </author>
      <author fullname="Carlos Pignataro" initials="C." surname="Pignataro">
         <organization>Blue Fern Consulting</organization>
      </author>
      <author fullname="Ran Chen" initials="R." surname="Chen">
         <organization>ZTE</organization>
      </author>
      <date day="17" month="December" year="2025"/>
      <abstract>
	 <t>   New Protocols or Protocol Extensions are best designed with due
   consideration of the functionality needed to operate and manage them.
   Retrofitting operations and management considerations is suboptimal.
   The purpose of this document is to provide guidance to authors and
   reviewers on what operational and management aspects should be
   addressed when defining New Protocols or Protocol Extensions.

   This document obsoletes RFC 5706, replacing it completely and
   updating it with new operational and management techniques and
   mechanisms.  It also updates RFC 2360 to obsolete mandatory MIB
   creation and introduces a requirement to include an &quot;Operational
   Considerations&quot; section in new RFCs in the IETF Stream.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-opsawg-rfc5706bis-01"/>
   
</reference>
<reference anchor="RFC9397">
  <front>
    <title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>
    <author fullname="M. Pei" initials="M." surname="Pei"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="D. Thaler" initials="D." surname="Thaler"/>
    <author fullname="D. Wheeler" initials="D." surname="Wheeler"/>
    <date month="July" year="2023"/>
    <abstract>
      <t>A Trusted Execution Environment (TEE) is an environment that enforces the following: any code within the environment cannot be tampered with, and any data used by such code cannot be read or tampered with by any code outside the environment. This architecture document discusses the motivation for designing and standardizing a protocol for managing the lifecycle of Trusted Applications running inside such a TEE.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9397"/>
  <seriesInfo name="DOI" value="10.17487/RFC9397"/>
</reference>
<reference anchor="RFC9782">
  <front>
    <title>Entity Attestation Token (EAT) Media Types</title>
    <author fullname="L. Lundblade" initials="L." surname="Lundblade"/>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <author fullname="T. Fossati" initials="T." surname="Fossati"/>
    <date month="May" year="2025"/>
    <abstract>
      <t>The payloads used in Remote ATtestation procedureS (RATS) may require an associated media type for their conveyance, for example, when the payloads are used in RESTful APIs.</t>
      <t>This memo defines media types to be used for Entity Attestation Tokens (EATs).</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9782"/>
  <seriesInfo name="DOI" value="10.17487/RFC9782"/>
</reference>

<reference anchor="I-D.ietf-rats-concise-ta-stores">
   <front>
      <title>Concise TA Stores (CoTS)</title>
      <author fullname="Carl Wallace" initials="C." surname="Wallace">
         <organization>Red Hound Software</organization>
      </author>
      <author fullname="Russ Housley" initials="R." surname="Housley">
         <organization>Vigil Security, LLC</organization>
      </author>
      <author fullname="Thomas Fossati" initials="T." surname="Fossati">
         <organization>arm</organization>
      </author>
      <author fullname="Yogesh Deshpande" initials="Y." surname="Deshpande">
         <organization>arm</organization>
      </author>
      <date day="5" month="December" year="2023"/>
      <abstract>
	 <t>   Trust anchor (TA) stores may be used for several purposes in the
   Remote Attestation Procedures (RATS) architecture including verifying
   endorsements, reference values, digital letters of approval,
   attestations, or public key certificates.  This document describes a
   Concise Reference Integrity Manifest (CoRIM) extension that may be
   used to convey optionally constrained trust anchor stores containing
   optionally constrained trust anchors in support of these purposes.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-rats-concise-ta-stores-02"/>
   
</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="RFC8915">
  <front>
    <title>Network Time Security for the Network Time Protocol</title>
    <author fullname="D. Franke" initials="D." surname="Franke"/>
    <author fullname="D. Sibold" initials="D." surname="Sibold"/>
    <author fullname="K. Teichel" initials="K." surname="Teichel"/>
    <author fullname="M. Dansarie" initials="M." surname="Dansarie"/>
    <author fullname="R. Sundblad" initials="R." surname="Sundblad"/>
    <date month="September" year="2020"/>
    <abstract>
      <t>This memo specifies Network Time Security (NTS), a mechanism for using Transport Layer Security (TLS) and Authenticated Encryption with Associated Data (AEAD) to provide cryptographic security for the client-server mode of the Network Time Protocol (NTP).</t>
      <t>NTS is structured as a suite of two loosely coupled sub-protocols. The first (NTS Key Establishment (NTS-KE)) handles initial authentication and key establishment over TLS. The second (NTS Extension Fields for NTPv4) handles encryption and authentication during NTP time synchronization via extension fields in the NTP packets, and holds all required state only on the client via opaque cookies.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="8915"/>
  <seriesInfo name="DOI" value="10.17487/RFC8915"/>
</reference>
<reference anchor="RFC5934">
  <front>
    <title>Trust Anchor Management Protocol (TAMP)</title>
    <author fullname="R. Housley" initials="R." surname="Housley"/>
    <author fullname="S. Ashmore" initials="S." surname="Ashmore"/>
    <author fullname="C. Wallace" initials="C." surname="Wallace"/>
    <date month="August" year="2010"/>
    <abstract>
      <t>This document describes a transport independent protocol for the management of trust anchors (TAs) and community identifiers stored in a trust anchor store. The protocol makes use of the Cryptographic Message Syntax (CMS), and a digital signature is used to provide integrity protection and data origin authentication. The protocol can be used to manage trust anchor stores containing trust anchors represented as Certificate, TBSCertificate, or TrustAnchorInfo objects. [STANDARDS-TRACK]</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="5934"/>
  <seriesInfo name="DOI" value="10.17487/RFC5934"/>
</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="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>



    </references>

</references>


<?line 2292?>

<section numbered="no" anchor="a-contributors"><name>A. Contributors</name>

<t>We would like to thank Brian Witten (Symantec), Tyler Kim (Solacia), Nick Cook (Arm), and  Minho Yoo (IoTrust) for their contributions
to the Open Trust Protocol (OTrP), which influenced the design of this specification.</t>

</section>
<section numbered="no" anchor="b-acknowledgements"><name>B. Acknowledgements</name>

<t>We would like to thank Eve Schooler for the suggestion of the protocol name.</t>

<t>We would like to thank Kohei Isobe (TRASIO/SECOM), Ken Takayama (SECOM),
Kuniyasu Suzaki (TRASIO/AIST), Tsukasa Oi (TRASIO), and Yuichi Takita (SECOM)
for their valuable implementation feedback.</t>

<t>We would also like to thank Carsten Bormann and Henk Birkholz for their help with the CDDL.</t>

<t>Finally, we would like to thank the following IESG members for their review feedback: Sean Turner, Paul Kyzivat, Scott Hollenbeck, Luigi Iannone, Paul Wouters, and Yoshifumi Nishida</t>

</section>
<section numbered="no" anchor="c-complete-cddl"><name>C. Complete CDDL</name>

<t>Valid TEEP messages adhere to the following CDDL data definitions,
except that <spanx style="verb">SUIT_Envelope</spanx> and <spanx style="verb">SUIT_Component_Identifier</spanx> are
specified in <xref target="I-D.ietf-suit-manifest"/>.</t>

<t>This section is informative and merely summarizes the normative CDDL
snippets in the body of this document.</t>

<figure><sourcecode type="CDDL"><![CDATA[
teep-message = $teep-message-type .within teep-message-framework

teep-message-framework = [
  type: $teep-type / $teep-type-extension,
  options: { * teep-option },
  * any; further elements, e.g., for data-item-requested
]

teep-option = (uint => any)

; messages defined below:
$teep-message-type /= query-request
$teep-message-type /= query-response
$teep-message-type /= update
$teep-message-type /= teep-success
$teep-message-type /= teep-error

; message type numbers, in one byte which could take a
; number from 0 to 23
$teep-type /= (0..23)
TEEP-TYPE-query-request = 1
TEEP-TYPE-query-response = 2
TEEP-TYPE-update = 3
TEEP-TYPE-teep-success = 5
TEEP-TYPE-teep-error = 6

query-request = [
  type: TEEP-TYPE-query-request,
  options: {
    ? token => bstr .size (8..64),
    ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
    ? challenge => bstr .size (8..512),
    ? versions => [ + version ],
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr .cbor SUIT_Report ],
    * $$query-request-extensions,
    * $$teep-option-extensions
  },
  supported-teep-cipher-suites: [ + $teep-cipher-suite ],
  supported-suit-cose-profiles: [ + $suit-cose-profile ],
  data-item-requested: uint .bits data-item-requested
]

version = uint .size 4
ext-info = uint .size 4

; data items as bitmaps
data-item-requested = &(
  attestation: 0,
  trusted-components: 1,
  extensions: 2,
  suit-reports: 3,
)

; teep-cipher-suites
$teep-cipher-suite /= teep-cipher-suite-sign1-ed25519
$teep-cipher-suite /= teep-cipher-suite-sign1-esp256

;The following two cipher suites have only a single operation each.
;Other cipher suites may be defined to have multiple operations.
;It is MANDATORY for TAM to support them, and OPTIONAL
;to support any additional ones that use COSE_Sign_Tagged, or other
;signing, encryption, or MAC algorithms.

teep-operation-sign1-ed25519 = [ cose-sign1, cose-alg-ed25519 ]
teep-operation-sign1-esp256  = [ cose-sign1, cose-alg-esp256 ]

teep-cipher-suite-sign1-ed25519 = [ teep-operation-sign1-ed25519 ]
teep-cipher-suite-sign1-esp256  = [ teep-operation-sign1-esp256 ]

;MANDATORY for TAM and TEEP Agent to support the following COSE
;operations, and OPTIONAL to support additional ones such as
;COSE_Sign_Tagged, COSE_Encrypt0_Tagged, etc.

cose-sign1 = 18      ; CoAP Content-Format value

;MANDATORY for TAM to support the following, and OPTIONAL to
;implement any additional algorithms from the IANA COSE Algorithms
;registry.

cose-alg-esp256  = -9   ; ECDSA using P-256 curve and SHA-256
cose-alg-ed25519 = -19  ; EdDSA using Ed25519 curve

; suit-cose-profile
$suit-cose-profile /= suit-sha256-esp256-ecdh-a128ctr
$suit-cose-profile /= suit-sha256-ed25519-ecdh-a128ctr
$suit-cose-profile /= suit-sha256-esp256-ecdh-a128gcm
$suit-cose-profile /= suit-sha256-ed25519-ecdh-chacha-poly

; freshness-mechanisms
FRESHNESS_NONCE = 0
FRESHNESS_TIMESTAMP = 1

$freshness-mechanism /= FRESHNESS_NONCE
$freshness-mechanism /= FRESHNESS_TIMESTAMP

query-response = [
  type: TEEP-TYPE-query-response,
  options: {
    ? token => bstr .size (8..64),
    ? selected-version => version,
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? suit-reports => [ + bstr .cbor SUIT_Report ],
    ? tc-list => [ + system-property-claims ],
    ? requested-tc-list => [ + requested-tc-info ],
    ? unneeded-manifest-list => [ + SUIT_Component_Identifier ],
    ? ext-list => [ + ext-info ],
    * $$query-response-extensions,
    * $$teep-option-extensions
  }
]

requested-tc-info = {
  component-id => SUIT_Component_Identifier,
  ? tc-manifest-sequence-number => uint,
  ? have-binary => bool
}

update = [
  type: TEEP-TYPE-update,
  options: {
    ? token => bstr .size (8..64),
    ? unneeded-manifest-list => [ + SUIT_Component_Identifier ],
    ? manifest-list => [ + bstr .cbor SUIT_Envelope ],
    ? attestation-payload-format => text,
    ? attestation-payload => bstr,
    ? err-code => (0..23),
    ? err-msg => text .size (1..128),
    ? err-lang => text .size (1..35),
    * $$update-extensions,
    * $$teep-option-extensions
  }
]

teep-success = [
  type: TEEP-TYPE-teep-success,
  options: {
    ? token => bstr .size (8..64),
    ? msg => text .size (1..128),
    ? suit-reports => [ + bstr .cbor SUIT_Report ],
    * $$teep-success-extensions,
    * $$teep-option-extensions
  }
]

teep-error = [
  type: TEEP-TYPE-teep-error,
  options: {
     ? token => bstr .size (8..64),
     ? err-msg => text .size (1..128),
     ? err-lang => text .size (1..35),
     ? supported-teep-cipher-suites => [ + $teep-cipher-suite ],
     ? supported-freshness-mechanisms => [ + $freshness-mechanism ],
     ? supported-suit-cose-profiles => [ + $suit-cose-profile ],
     ? challenge => bstr .size (8..512),
     ? versions => [ + version ],
     ? suit-reports => [ + bstr .cbor SUIT_Report ],
     * $$teep-error-extensions,
     * $$teep-option-extensions
  },
  err-code: (0..23)
]

; The err-code parameter, uint (0..23)
ERR_PERMANENT_ERROR = 1
ERR_UNSUPPORTED_EXTENSION = 2
ERR_UNSUPPORTED_FRESHNESS_MECHANISMS = 3
ERR_UNSUPPORTED_MSG_VERSION = 4
ERR_UNSUPPORTED_CIPHER_SUITES = 5
ERR_BAD_CERTIFICATE = 6
ERR_ATTESTATION_REQUIRED = 7
ERR_UNSUPPORTED_SUIT_REPORT = 8
ERR_CERTIFICATE_EXPIRED = 9
ERR_TEMPORARY_ERROR = 10
ERR_MANIFEST_PROCESSING_FAILED = 17

; labels of mapkey for teep message parameters, uint (0..23)
supported-teep-cipher-suites = 1
challenge = 2
versions = 3
supported-suit-cose-profiles = 4
selected-version = 6
attestation-payload = 7
tc-list = 8
ext-list = 9
manifest-list = 10
msg = 11
err-msg = 12
attestation-payload-format = 13
requested-tc-list = 14
unneeded-manifest-list = 15
component-id = 16
tc-manifest-sequence-number = 17
have-binary = 18
suit-reports = 19
token = 20
supported-freshness-mechanisms = 21
err-lang = 22
err-code = 23
]]></sourcecode></figure>

</section>
<section numbered="no" anchor="d-examples-of-diagnostic-notation-and-binary-representation"><name>D. Examples of Diagnostic Notation and Binary Representation</name>

<t>This section includes some examples with the following assumptions:</t>

<t><list style="symbols">
  <t>The device will have two TCs with the following SUIT Component Identifiers:
  <list style="symbols">
      <t>[ 0x000102030405060708090a0b0c0d0e0f ]</t>
      <t>[ 0x100102030405060708090a0b0c0d0e0f ]</t>
    </list></t>
  <t>SUIT manifest-list is set empty only for example purposes (see Appendix E
for actual manifest examples)</t>
</list></t>

<section numbered="no" anchor="d1-queryrequest-message"><name>D.1. QueryRequest Message</name>

<section numbered="no" anchor="d11-cbor-diagnostic-notation"><name>D.1.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ query-request = /
[
  / type: / 1 / TEEP-TYPE-query-request /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / versions / 3 : [ 0 ]  / 0 is current TEEP Protocol /
  },
  / supported-teep-cipher-suites: / [
    [ [ 18, -9 ] ] / Sign1 using ESP256 /,
    [ [ 18, -19 ] ] / Sign1 using Ed25519 /
  ],
  / supported-suit-cose-profiles: / [
    [-16, -9, -29, -65534] / suit-sha256-esp256-ecdh-a128ctr /,
    [-16, -19, -29, -65534] / suit-sha256-ed25519-ecdh-a128ctr /,
    [-16, -9, -29, 1]      / suit-sha256-esp256-ecdh-a128gcm /,
    [-16, -19, -29, 24]     / suit-sha256-ed25519-ecdh-chacha-poly /
  ],
  / data-item-requested: / 3 / attestation | trusted-components /
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d12-cbor-binary-representation"><name>D.1.2. CBOR Binary Representation</name>

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

85                  # array(5)
   01               # unsigned(1) / TEEP-TYPE-query-request /
   A2               # map(2)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      03            # unsigned(3) / versions: /
      81            # array(1) / [ 0 ] /
         00         # unsigned(0)
   82               # array(2) / supported-teep-cipher-suites /
      81            # array(1)
         82         # array(2)
            12      # unsigned(18) / cose-sign1 /
            28      # negative(8) / -9 = cose-alg-esp256 /
      81            # array(1)
         82         # array(2)
            12      # unsigned(18) / cose-sign1 /
            32      # negative(18) / -19 = cose-alg-ed25519 /
   84               # array(4) / supported-suit-cose-profiles /
      84            # array(4) / suit-sha256-esp256-ecdh-a128ctr /,
         2f         # negative(15) / -16 = SHA-256 /
         28         # negative(8) / -9 = ESP256 /
         38 1C      # negative(28) / -29 = ECDH-ES + A128KW /
         39 fffd    # negative(65533) / -65534 = A128CTR /
      84            # array(4) / suit-sha256-ed25519-ecdh-a128ctr /
         2f         # negative(15) / -16 = SHA-256 /
         32         # negative(18) / -19 = Ed25519 /
         38 1C      # negative(28) / -29 = ECDH-ES + A128KW /
         39 fffd    # negative(65533) / -65534 = A128CTR /
      84            # array(4) / suit-sha256-esp256-ecdh-a128gcm /
         2f         # negative(15) / -16 = SHA-256 /
         28         # negative(6) / -9 = ESP256 /
         38 1C      # negative(28) / -29 = ECDH-ES + A128KW /
         01         # unsigned(1) / A128GCM /
      84            # array(4) / suit-sha256-ed25519-ecdh-chacha-\
                                                               poly /
         2f         # negative(15) / -16 = SHA-256 /
         32         # negative(18) / Ed25519 /
         38 1C      # negative(28) / -29 = ECDH-ES + A128KW /
         18 18      # unsigned(24) / 24 = ChaCha20/Poly1305 /
   03               # unsigned(3) / attestation | trusted-\
                                                         components /
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d2-entity-attestation-token"><name>D.2. Entity Attestation Token</name>

<t>This is shown below in CBOR diagnostic form.  Only the payload signed by
COSE is shown.</t>

<section numbered="no" anchor="d21-cbor-diagnostic-notation"><name>D.2.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ eat-claim-set = /
{
    / cnf /          8: {
                         / kid /
                         3 : h'ba7816bf8f01cfea414140de5dae2223'
                             h'b00361a396177a9cb410ff61f20015ad'
                        },
    / eat_nonce /   10: h'948f8860d13a463e8e',
    / ueid /       256: h'0198f50a4ff6c05861c8860d13a638ea',
    / oemid /      258: h'894823', / IEEE OUI format OEM ID /
    / hwmodel /    259: h'549dcecc8b987c737b44e40f7c635ce8'
                          / Hash of chip model name /,
    / hwversion /  260: ["1.3.4", 1], / Multipart numeric  /
    / manifests /  273: [
                          [ 60,
                             / application/cbor, TO BE REPLACED /
                             / with the format value for a /
                            / SUIT_Reference once one is allocated /
                            {
                              / SUIT_Reference /
                              / suit-report-manifest-uri /
                              1: "https://example.com/manifest.cbor",
                              / suit-report-manifest-digest /
                              0:[
                                / algorithm-id /
                                -16 / "sha256" /,
                                / digest-bytes /
                                h'a7fd6593eac32eb4be578278e6540c5c'
                                h'09cfd7d4d234973054833b2b93030609'
                                ]
                            }
                          ]
                        ]
}
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d3-queryresponse-message"><name>D.3. QueryResponse Message</name>

<section numbered="no" anchor="d31-cbor-diagnostic-notation"><name>D.3.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ query-response = /
[
  / type: / 2 / TEEP-TYPE-query-response /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / selected-version / 6 : 0,
    / attestation-payload / 7 : h'' / empty only for example \
                                                           purpose /,
    / tc-list / 8 : [
      {
        / system-component-id / 0 : [ h'\
                                   0102030405060708090A0B0C0D0E0F' ],
        / suit-parameter-image-digest / 3: << [
          / suit-digest-algorithm-id / -16 / SHA256 /,
          / suit-digest-bytes / h'\
    A7FD6593EAC32EB4BE578278E6540C5C09CFD7D4D234973054833B2B93030609'
            / SHA256 digest of tc binary /
        ] >>
      }
    ]
  }
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d32-cbor-binary-representation"><name>D.3.2. CBOR Binary Representation</name>

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

82                  # array(2)
   02               # unsigned(2) / TEEP-TYPE-query-response /
   A4               # map(4)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      06            # unsigned(6) / selected-version: /
      00            # unsigned(0)
      07            # unsigned(7) / attestation-payload: /
      40            # bytes(0)
                    # ""
      08            # unsigned(8) / tc-list: /
      81            # array(1)
         A2         # map(2)
            00      # unsigned(0) / system-component-id: /
            81      # array(1)
               4F   # bytes(15)
                  0102030405060708090A0B0C0D0E0F
            03      # unsigned(3) / suit-parameter-image-digest: /
            58 24   # bytes(36)
               \
822F5820A7FD6593EAC32EB4BE578278E6540C5C09CFD7D4D234973054833B2B9303\
                                                                 0609
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d4-update-message"><name>D.4. Update Message</name>

<section numbered="no" anchor="d41-cbor-diagnostic-notation"><name>D.4.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ update = /
[
  / type: / 3 / TEEP-TYPE-update /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / manifest-list / 10 : [
      <<
        / SUIT_Envelope / {
          / suit-authentication-wrapper / 2: << [
            << [
              / suit-digest-algorithm-id: / -16 / suit-cose-alg-\
                                                            sha256 /,
              / suit-digest-bytes: / h'\
    DB601ADE73092B58532CA03FBB663DE49532435336F1558B49BB622726A2FEDD'
            ] >>,
            << / COSE_Sign1_Tagged / 18( [
              / protected: / << {
                / algorithm-id / 1: -7 / ES256 /
              } >>,
              / unprotected: / {},
              / payload: / null,
              / signature: / h'\
5B2D535A2B6D5E3C585C1074F414DA9E10BD285C99A33916DADE3ED38812504817AC\
        48B62B8E984EC622785BD1C411888BE531B1B594507816B201F6F28579A4'
            ] ) >>
          ] >>,
          / suit-manifest / 3: << {
            / suit-manifest-version / 1: 1,
            / suit-manifest-sequence-number / 2: 3,
            / suit-common / 3: << {
              / suit-components / 2: [
                [
                  h'544545502D446576696365',           / "TEEP-\
                                                            Device" /
                  h'5365637572654653',                 / "SecureFS" /
                  h'8D82573A926D4754935332DC29997F74', / tc-uuid /
                  h'7461'                              / "ta" /
                ]
              ],
              / suit-common-sequence / 4: << [
                / suit-directive-override-parameters / 20, {
                  / suit-parameter-vendor-identifier / 1: h'\
                                   C0DDD5F15243566087DB4F5B0AA26C2F',
                  / suit-parameter-class-identifier / 2: h'\
                                   DB42F7093D8C55BAA8C5265FC5820F4E',
                  / suit-parameter-image-digest / 3: << [
                    / suit-digest-algorithm-id: / -16 / suit-cose-\
                                                        alg-sha256 /,
                    / suit-digest-bytes: / h'\
    8CF71AC86AF31BE184EC7A05A411A8C3A14FD9B77A30D046397481469468ECE8'
                  ] >>,
                  / suit-parameter-image-size / 14: 20
                },
                / suit-condition-vendor-identifier / 1, 15,
                / suit-condition-class-identifier / 2, 15
              ] >>
            } >>,
            / suit-install / 9: << [
              / suit-directive-override-parameters / 20, {
                / suit-parameter-uri / 21: "https://example.org/\
                             8d82573a-926d-4754-9353-32dc29997f74.ta"
              },
              / suit-directive-fetch / 21, 15,
              / suit-condition-image-match / 3, 15
            ] >>
          } >>
        }
      >>
    ] / array of bstr wrapped SUIT_Envelope /
  }
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d42-cbor-binary-representation"><name>D.4.2. CBOR Binary Representation</name>

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

82                  # array(2)
   03               # unsigned(3) / TEEP-TYPE-update /
   A2               # map(2)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      0A            # unsigned(10) / manifest-list: /
      81            # array(1)
         59 014E    # bytes(336)
            A2025873825824822F5820DB601ADE73092B58532CA03FBB663DE495
            \
         32435336F1558B49BB622726A2FEDD584AD28443A10126A0F658405B2D53
            \
         5A2B6D5E3C585C1074F414DA9E10BD285C99A33916DADE3ED38812504817
            \
         AC48B62B8E984EC622785BD1C411888BE531B1B594507816B201F6F28579
            \
         A40358D4A401010203035884A20281844B544545502D4465766963654853
            \
         65637572654653508D82573A926D4754935332DC29997F74427461045854
            \
         8614A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55
            \
         BAA8C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411
            \
         A8C3A14FD9B77A30D046397481469468ECE80E14010F020F0958458614A1
            \
         15783B68747470733A2F2F6578616D706C652E6F72672F38643832353733
            \
         612D393236642D343735342D393335332D3332646332393939376637342E
            7461150F030F
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d5-success-message"><name>D.5. Success Message</name>

<section numbered="no" anchor="d51-cbor-diagnostic-notation"><name>D.5.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ teep-success = /
[
  / type: / 5 / TEEP-TYPE-teep-success /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF'
  }
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d52-cbor-binary-representation"><name>D.5.2. CBOR Binary Representation</name>

<figure><artwork><![CDATA[
82                  # array(2)
   05               # unsigned(5) / TEEP-TYPE-teep-success /
   A1               # map(1)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="d6-error-message"><name>D.6. Error Message</name>

<section numbered="no" anchor="d61-cbor-diagnostic-notation"><name>D.6.1. CBOR Diagnostic Notation</name>

<figure><artwork><![CDATA[
/ teep-error = /
[
  / type: / 6 / TEEP-TYPE-teep-error /,
  / options: /
  {
    / token / 20 : h'A0A1A2A3A4A5A6A7A8A9AAABACADAEAF',
    / err-msg / 12 : "disk-full"
  },
  / err-code: / 17 / ERR_MANIFEST_PROCESSING_FAILED /
]
]]></artwork></figure>

</section>
<section numbered="no" anchor="d62-cbor-binary-representation"><name>D.6.2. CBOR binary Representation</name>

<figure><artwork><![CDATA[
83                  # array(3)
   06               # unsigned(6) / TEEP-TYPE-teep-error /
   A2               # map(2)
      14            # unsigned(20) / token: /
      50            # bytes(16)
         A0A1A2A3A4A5A6A7A8A9AAABACADAEAF
      0C            # unsigned(12) / err-msg: /
      69            # text(9)
         6469736B2D66756C6C # "disk-full"
   11               # unsigned(17) / ERR_MANIFEST_PROCESSING_FAILED /
]]></artwork></figure>

</section>
</section>
</section>
<section numbered="no" anchor="suit-examples"><name>E. Examples of SUIT Manifests</name>

<t>This section shows some examples of SUIT manifests described in <xref target="update-msg-def"/>.</t>

<t>The examples are signed using the following ECDSA secp256r1 key with SHA256 as the digest function.</t>

<t>COSE_Sign1 Cryptographic Key:</t>

<figure><artwork><![CDATA[
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgApZYjZCUGLM50VBC
CjYStX+09jGmnyJPrpDLTz/hiXOhRANCAASEloEarguqq9JhVxie7NomvqqL8Rtv
P+bitWWchdvArTsfKktsCYExwKNtrNHXi9OB3N+wnAUtszmR23M4tKiW
-----END PRIVATE KEY-----
]]></artwork></figure>

<t>The corresponding public key can be used to verify these examples:</t>

<figure><artwork><![CDATA[
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhJaBGq4LqqvSYVcYnuzaJr6qi/Eb
bz/m4rVlnIXbwK07HypLbAmBMcCjbazR14vTgdzfsJwFLbM5kdtzOLSolg==
-----END PUBLIC KEY-----
]]></artwork></figure>

<section numbered="no" anchor="suit-uri"><name>Example 1: SUIT Manifest pointing to URI of the Trusted Component Binary</name>

<section numbered="no" anchor="cbor-diagnostic-notation-of-suit-manifest"><name>CBOR Diagnostic Notation of SUIT Manifest</name>

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / SHA256 /,
      / digest-bytes: / h'\
    B39B52B0B747EA79588C190F567BFC2C8437BA8A73F7EA983182E79F0148D59B'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -9 / ESP256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'\
B35BF8C5276ACF6131F4661E76A7F19945FF928A4B7D79572583E857C695DFD48725\
        C1B8253EF6E805A9EEE9262CAAB61A09DF69CCBD996F2431BC2515EB59FF'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / components / 2: [
        [
           'TEEP-Device',
           'SecureFS',
          h'8D82573A926D4754935332DC29997F74', / tc-uuid /
           'ta'
        ]
      ],
      / shared-sequence / 4: << [
        / directive-override-parameters / 20, {
          / parameter-vendor-identifier / 1: h'\
                                   C0DDD5F15243566087DB4F5B0AA26C2F',
          / parameter-class-identifier / 2: h'\
                                   DB42F7093D8C55BAA8C5265FC5820F4E',
          / parameter-image-digest / 3: << [
            / digest-algorithm-id: / -16 / SHA256 /,
            / digest-bytes: / h'\
    8CF71AC86AF31BE184EC7A05A411A8C3A14FD9B77A30D046397481469468ECE8'
          ] >>,
          / parameter-image-size / 14: 20
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
       'TEEP-Device',
       'SecureFS',
      h'8D82573A926D4754935332DC29997F74',  / tc-uuid /
       'suit'
    ],
    / install / 20: << [
      / directive-override-parameters / 20, {
        / parameter-uri / 21: "https://example.org/8d82573a-926d-\
                                           4754-9353-32dc29997f74.ta"
      },
      / directive-fetch / 21, 15,
      / condition-image-match / 3, 15
    ] >>,
    / uninstall / 24: << [
      / directive-unlink / 33, 15
    ] >>
  } >>
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="cbor-binary-in-hex"><name>CBOR Binary in Hex</name>

<figure><artwork><![CDATA[
A2025873825824822F5820B39B52B0B747EA79588C190F567BFC2C8437BA
8A73F7EA983182E79F0148D59B584AD28443A10128A0F65840B35BF8C527
6ACF6131F4661E76A7F19945FF928A4B7D79572583E857C695DFD48725C1
B8253EF6E805A9EEE9262CAAB61A09DF69CCBD996F2431BC2515EB59FF03
590108A601010203035884A20281844B544545502D446576696365485365
637572654653508D82573A926D4754935332DC29997F7442746104585486
14A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55BA
A8C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411A8
C3A14FD9B77A30D046397481469468ECE80E14010F020F05844B54454550
2D446576696365485365637572654653508D82573A926D4754935332DC29
997F7444737569741458458614A115783B68747470733A2F2F6578616D70
6C652E6F72672F38643832353733612D393236642D343735342D39333533
2D3332646332393939376637342E7461150F030F1818448218210F
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="suit-integrated"><name>Example 2: SUIT Manifest including the Trusted Component Binary</name>

<section numbered="no" anchor="cbor-diagnostic-notation-of-suit-manifest-1"><name>CBOR Diagnostic Notation of SUIT Manifest</name>

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / SHA256 /,
      / digest-bytes: / h'\
    CEDB0457952F7DD0A33FA4692F73BC833A6A6E2300B16F6605993F0192E3F219'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -9 / ESP256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'\
6A9F4D3DE3B8BC49A47F12E13A3EF76C5E2B4BB1D8EE6EFFA659220A6D8D164B3926\
        A722220283A9C7B48DA012A188F0C6F98F3962613E63CD4C597D4C01F56C'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / components / 2: [
        [
           'TEEP-Device',
           'SecureFS',
          h'8D82573A926D4754935332DC29997F74', / tc-uuid /
           'ta'
        ]
      ],
      / shared-sequence / 4: << [
        / directive-override-parameters / 20, {
          / parameter-vendor-identifier / 1: h'\
                                   C0DDD5F15243566087DB4F5B0AA26C2F',
          / parameter-class-identifier / 2: h'\
                                   DB42F7093D8C55BAA8C5265FC5820F4E',
          / parameter-image-digest / 3: << [
            / digest-algorithm-id: / -16 / SHA256 /,
            / digest-bytes: / h'\
    8CF71AC86AF31BE184EC7A05A411A8C3A14FD9B77A30D046397481469468ECE8'
          ] >>,
          / parameter-image-size / 14: 20
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
       'TEEP-Device',
       'SecureFS',
      h'8D82573A926D4754935332DC29997F74',  / tc-uuid /
       'suit'
    ],
    / install / 20: << [
      / directive-override-parameters / 20, {
        / uri / 21: "#tc"
      },
      / directive-fetch / 21, 15,
      / condition-image-match / 3, 15
    ] >>,
    / uninstall / 24: << [
      / directive-unlink / 33, 15
    ] >>
  } >>,
  "#tc" : 'Hello, Secure World!'
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="cbor-binary-in-hex-1"><name>CBOR Binary in Hex</name>

<figure><artwork><![CDATA[
A3025873825824822F5820CEDB0457952F7DD0A33FA4692F73BC833A6A6E
2300B16F6605993F0192E3F219584AD28443A10128A0F658406A9F4D3DE3
B8BC49A47F12E13A3EF76C5E2B4BB1D8EE6EFFA659220A6D8D164B3926A7
22220283A9C7B48DA012A188F0C6F98F3962613E63CD4C597D4C01F56C03
58CEA601010203035884A20281844B544545502D44657669636548536563
7572654653508D82573A926D4754935332DC29997F744274610458548614
A40150C0DDD5F15243566087DB4F5B0AA26C2F0250DB42F7093D8C55BAA8
C5265FC5820F4E035824822F58208CF71AC86AF31BE184EC7A05A411A8C3
A14FD9B77A30D046397481469468ECE80E14010F020F05844B544545502D
446576696365485365637572654653508D82573A926D4754935332DC2999
7F744473756974144C8614A11563237463150F030F1818448218210F6323
74635448656C6C6F2C2053656375726520576F726C6421
]]></artwork></figure>

</section>
</section>
<section numbered="no" anchor="suit-personalization"><name>Example 3: Supplying Personalization Data for Trusted Component Binary</name>

<t>This example uses the following parameters:</t>

<t><list style="symbols">
  <t>SUIT Profile: suit-sha256-esp256-ecdh-a128ctr (see <xref target="I-D.ietf-suit-mti"/> Section 3.2)
  <list style="symbols">
      <t>Algorithm for payload encryption: A128CTR (-65534)</t>
      <t>Algorithm for key wrap: ECDH-ES + A128KW (-29)</t>
    </list></t>
  <t>KEK (Receiver's Private Key):
  <list style="symbols">
      <t>kty: EC2</t>
      <t>crv: P-256</t>
      <t>x: h'5886CD61DD875862E5AAA820E7A15274
C968A9BC96048DDCACE32F50C3651BA3'</t>
      <t>y: h'9EED8125E932CD60C0EAD3650D0A485C
F726D378D1B016ED4298B2961E258F1B'</t>
      <t>d: h'60FE6DD6D85D5740A5349B6F91267EEA
C5BA81B8CB53EE249E4B4EB102C476B3'</t>
    </list></t>
  <t>COSE_KDF_Context
  <list style="symbols">
      <t>AlgorithmID: -3 (A128KW)</t>
      <t>SuppPubInfo
      <list style="symbols">
          <t>keyDataLength: 128</t>
          <t>protected: &lt;&lt; {/ alg / 1: -29 / ECDH-ES+A128KW / } &gt;&gt;</t>
          <t>other: 'SUIT Payload Encryption'</t>
        </list></t>
    </list></t>
</list></t>

<section numbered="no" anchor="cbor-diagnostic-notation-of-suit-manifest-2"><name>CBOR Diagnostic Notation of SUIT Manifest</name>

<figure><artwork><![CDATA[
=============== NOTE: '\' line wrapping per RFC 8792 ================

/ SUIT_Envelope / {
  / authentication-wrapper / 2: << [
    << [
      / digest-algorithm-id: / -16 / SHA256 /,
      / digest-bytes: / h'\
    506D4796D65AE599EE0A3F7D123ED6819E0FA1A324A5DE547F6D7F50D465508A'
    ] >>,
    << / COSE_Sign1_Tagged / 18([
      / protected: / << {
        / algorithm-id / 1: -9 / ESP256 /
      } >>,
      / unprotected: / {},
      / payload: / null,
      / signature: / h'\
9AF4896B66B0642122C5317D1D8A81BB4CE3C0B022A7A53879224BA14AE954DE456D\
        01069DEF0B5CE2E6B0325ACF21B5059320ABBA8480602C8A6FD7BF7894FF'
    ]) >>
  ] >>,
  / manifest / 3: << {
    / manifest-version / 1: 1,
    / manifest-sequence-number / 2: 3,
    / common / 3: << {
      / dependencies / 1: {
        / component-index / 1: {
          / dependency-prefix / 1: [
             'TEEP-Device',
             'SecureFS',
            h'8D82573A926D4754935332DC29997F74', / tc-uuid /
             'suit'
          ]
        }
      },
      / components / 2: [
        [
          'TEEP-Device',
          'SecureFS',
          'config.json'
        ]
      ],
      / shared-sequence / 4: << [
        / directive-set-component-index / 12, 0,
        / directive-override-parameters / 20, {
          / parameter-vendor-identifier / 1: h'\
                                   C0DDD5F15243566087DB4F5B0AA26C2F',
          / parameter-class-identifier / 2: h'\
                                    DB42F7093D8C55BAA8C5265FC5820F4E'
        },
        / condition-vendor-identifier / 1, 15,
        / condition-class-identifier / 2, 15
      ] >>
    } >>,
    / manifest-component-id / 5: [
      'TEEP-Device',
      'SecureFS',
      'config.suit'
    ],
    / validate / 7: << [
      / directive-set-component-index / 12, 0,
      / directive-override-parameters / 20, {
        / NOTE: image-digest and image-size of plaintext config.\
                                                               json /
        / parameter-image-digest / 3: << [
          / digest-algorithm-id: / -16 / SHA256 /,
          / digest-bytes: / h'\
    8273468FB64BD84BB04825F8371744D952B751C73A60F455AF681E167726F116'
        ] >>,
        / image-size / 14: 61
      },
      / condition-image-match / 3, 15
    ] >>,
    / dependency-resolution / 15: << [
      / directive-set-component-index / 12, 1,
      / directive-override-parameters / 20, {
        / parameter-image-digest / 3: << [
          / algorithm-id / -16 / SHA256 /,
          / digest-bytes / h'\
    B39B52B0B747EA79588C190F567BFC2C8437BA8A73F7EA983182E79F0148D59B'
        ] >>,
        / parameter-image-size / 14: 389,
        / parameter-uri / 21: "https://example.org/8d82573a-926d-\
                                         4754-9353-32dc29997f74.suit"
      },
      / directive-fetch / 21, 2
    ] >>,
    / install / 20: << [
      / directive-set-component-index / 12, 1,
      / directive-process-dependency / 11, 0,

      / NOTE: fetch encrypted firmware /
      / directive-set-component-index / 12, 0,
      / directive-override-parameters / 20, {
        / NOTE: encrypted payload and encryption-info /
        / parameter-content / 18: h'\
6D5BE4F569E98AE01F38B071EF025437B742FF28854AB32C868BC6A76CD33B5CA112\
             FF22BA95EA4672B7199C89A7829183794A21A6BE345C4371DCB0DC',
        / parameter-encryption-info / 19: << 96([
          / protected: / h'',
          / unprotected: / {
            / alg / 1: -65534 / A128CTR /,
            / IV / 5: h'67E3BA7CD42D02BBC39C508B5EA0F1C4'
          },
          / payload: / null / detached ciphertext /,
          / recipients: / [
            [
              / protected: / << {
                / alg / 1: -29 / ECDH-ES + A128KW /
              } >>,
              / unprotected: / {
                / ephemeral key / -1: {
                  / kty / 1: 2 / EC2 /,
                  / crv / -1: 1 / P-256 /,
                  / x / -2: h'\
   F2452399667F57993B14C5F1107F667884854C190894FC08531C1E2290A7BA19',
                  / y / -3: h'\
    275EDDE29FD75C9393AFFA706F8FAD3C49D03D67D47F8B0C027BE5F0BCA884CB'
                }
              },
              / payload: / h'\
                    7D806DA1ACEC6F704D803F0CFE7420525C81E1957699FCCE'
            ]
          ]
        ]) >>
      },

      / decrypt encrypted firmware /
      / directive-write / 18, 15 / consumes the \
                                         SUIT_Encryption_Info above /
      / NOTE: decrypted payload would be ``{"name":"FOO Bar","secret\
                             ":"0123456789abfcdef0123456789abcd"}'' /
    ] >>,
    / uninstall / 24: << [
      / directive-set-component-index / 12, 1,
      / directive-process-dependency / 11, 0,
      / directive-set-component-index / 12, 0,
      / directive-unlink / 33, 15
    ] >>
  } >>
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="cbor-binary-in-hex-2"><name>CBOR Binary in Hex</name>

<figure><artwork><![CDATA[
A2025873825824822F5820506D4796D65AE599EE0A3F7D123ED6819E0FA1
A324A5DE547F6D7F50D465508A584AD28443A10128A0F658409AF4896B66
B0642122C5317D1D8A81BB4CE3C0B022A7A53879224BA14AE954DE456D01
069DEF0B5CE2E6B0325ACF21B5059320ABBA8480602C8A6FD7BF7894FF03
590242A801010203035886A301A101A101844B544545502D446576696365
485365637572654653508D82573A926D4754935332DC29997F7444737569
740281834B544545502D4465766963654853656375726546534B636F6E66
69672E6A736F6E04582D880C0014A20150C0DDD5F15243566087DB4F5B0A
A26C2F0250DB42F7093D8C55BAA8C5265FC5820F4E010F020F05834B5445
45502D4465766963654853656375726546534B636F6E6669672E73756974
075831860C0014A2035824822F58208273468FB64BD84BB04825F8371744
D952B751C73A60F455AF681E167726F1160E183D030F0F5872860C0114A3
035824822F5820B39B52B0B747EA79588C190F567BFC2C8437BA8A73F7EA
983182E79F0148D59B0E19018515783D68747470733A2F2F6578616D706C
652E6F72672F38643832353733612D393236642D343735342D393335332D
3332646332393939376637342E7375697415021458D88A0C010B000C0014
A212583D6D5BE4F569E98AE01F38B071EF025437B742FF28854AB32C868B
C6A76CD33B5CA112FF22BA95EA4672B7199C89A7829183794A21A6BE345C
4371DCB0DC13588AD8608440A20139FFFD055067E3BA7CD42D02BBC39C50
8B5EA0F1C4F6818344A101381CA120A401022001215820F2452399667F57
993B14C5F1107F667884854C190894FC08531C1E2290A7BA19225820275E
DDE29FD75C9393AFFA706F8FAD3C49D03D67D47F8B0C027BE5F0BCA884CB
58187D806DA1ACEC6F704D803F0CFE7420525C81E1957699FCCE120F1818
4A880C010B000C0018210F
]]></artwork></figure>

</section>
</section>
</section>
<section numbered="no" anchor="suit-reports"><name>F. Examples of SUIT Reports</name>

<t>This section shows some examples of SUIT reports.</t>

<section numbered="no" anchor="f1-example-1-success"><name>F.1. Example 1: Success</name>

<t>SUIT Reports have no records if no conditions have failed.
The URI in this example is the reference URI provided in the SUIT manifest.</t>

<figure><artwork><![CDATA[
{
  / suit-report-manifest-digest / 1:<<[
    / algorithm-id / -16 / "sha256" /,
    / digest-bytes / h'a7fd6593eac32eb4be578278e6540c5c'
                     h'09cfd7d4d234973054833b2b93030609'
  ]>>,
  / suit-report-manifest-uri / 2: "tam.teep.example/personalisation",
  / suit-report-records / 4: []
}
]]></artwork></figure>

</section>
<section numbered="no" anchor="f2-example-2-failure"><name>F.2. Example 2: Failure</name>

<figure><artwork><![CDATA[
{
  / suit-report-manifest-digest / 1:<<[
    / algorithm-id / -16 / "sha256" /,
    / digest-bytes / h'a7fd6593eac32eb4be578278e6540c5c09cfd7d4d23497
3054833b2b93030609'
  ]>>,
  / suit-report-manifest-uri / 2: "tam.teep.example/personalisation",
  / suit-report-records / 4: [
    {
      / suit-record-manifest-id / 1:[],
      / suit-record-manifest-section / 2: 7 / dependency-resolution /,
      / suit-record-section-offset / 3: 66,
      / suit-record-dependency-index / 5: 0,
      / suit-record-failure-reason / 6: 404
    }
  ]
}
]]></artwork></figure>

<t>where the dependency-resolution refers to:</t>

<figure><artwork><![CDATA[
{
  authentication-wrapper,
  / manifest / 3:<<{
    / manifest-version / 1:1,
    / manifest-sequence-number / 2:3,
    common,
    dependency-resolution,
    install,
    validate,
    run,
    text
  }>>,
}
]]></artwork></figure>

<t>and the suit-record-section-offset refers to:</t>

<figure><artwork><![CDATA[
<<[
  / directive-set-dependency-index / 13,0,
  / directive-set-parameters / 19,{
    / uri / 21:'tam.teep.example/'
               'edd94cd8-9d9c-4cc8-9216-b3ad5a2d5b8a',
    } ,
  / directive-fetch / 21,2,
  / condition-image-match / 3,15
]>>,
]]></artwork></figure>

</section>
</section>


  </back>

<!-- ##markdown-source:
H4sIAAAAAAAAA+y963IbybUm+j+fIo/kGJFtABKpO2V5bzQF7ea4KXFIti/h
8MjJqgRQW4UquLJACpa4Yx7knIjzLOdR5klOrEveqhIgqZa3PTN2zEVNVGXl
ZeW6r28Nh0NhWlXlH1RZV/pAts1Ki2LZ4L9Mu//o0ctH+yKvs0ot9IHMGzVt
h4Vup8NW6+Vw2dRtndXlsFStNq3IVHsgTZsLs7pYFMYUddWul/pAHk3O34pl
cSCkNG1TZO2BfLDW5oGQsq2z6D9yvWznB/LBE/hvs140emr8A6Zu2vgvWb1Y
qnBAs7rwf6vqB6It2lIfyHNYkc7l5JPOVm1RV3JSXRZNXS101cqTpr4sYMJF
NZM755PJyS78DZcn1MVFoy8PJPw5+Guj1YE809mqKdq1uJrRA+Lj1Q0fE7lq
9YHcf7T/TKhVO6+bAyHkUEg5XZUlbfUPqqq0kecmm9dTXRUzIWXdzFRV/FXB
eAfyp6q41I0p2rWsp3K8XJaFzuVZVugq00Z+X1fV8HSui2p4Vmh43a7ih+H3
p2e4c6uqbdYH8t90s1DVWkipF6ooD+S9OX591Lqv/+ts8WlU6fYezbOozIE8
HskTXQgpacbHRTUrC1XN+K91MzuQ3ze1yrN6QQevNZwJnlrRrvmfjZ7heujv
da7dP3l6P535mS3sR0ZLXfzrBY8+gi8EM3szkr+ba13qxs3ujbos8uCvOLvx
Qv21rr7V3HJ1qa/mWv+rwmETkzqfq86ctP8bzui4yJra1NP2W05q1OI3RnBx
/3UGf+/ObTyS52b1US3qtnbTG38sGhX9Haf44P1SV9m8WMr/Is/qaXulGi3P
dTav6rKeFdoM5Nnox9GDn7OCSbACBdMYtXYa4QKqulmotrjUwFhO3x6+fPR0
n//5+Nn+S/7n02dPntl/7r18wf988fzJc/vPl09e9kd4+ey5++vzvT3459Hw
DW7i0KyKdrhQVTHVpk380hb9PyJHHeb1QsGW935u9LJucKzD92eT0bic1U3R
zhfwFymZh92D36T7zdzDHy0Pkfg/PKSj8bsxvaiaGRzBvG2X5uDhw6urq1Gh
KjWqm9lDZUwxQ5ZkHma10fj/jD7N20V5X7mPiKKahhsdz3taNAsggaGusma9
JN4UPtWo1gxV88TEe4J/bvRUN8CvhkXV6kZl8PpwUee6jLcIxU3dNsthfamb
Iawm+r1eGnU1GzbT7OnzR88uCmNP7vHL5+4QX+z3Z5DVVVYYPWzV0LR1o+2L
L57tPcJ1IH3sPbUE9PLxEze0/+fe/pMDIYbDoVQXpoV1CCHO54WReZ2tUMCY
pc6KaaGNVNLKTdnOVQs3sFVlaQZytQTJYAZSVbnMdalbbYQVJYf1YllXcFay
qKSSub4sMi2vinYuVV/giFC6gUDbHUmJU+KZZChHZK6nBUgaVUk8g3qpG3VR
auEmOa0buVCVmoFobOdalsVUZ+us1CB4+tMb0U4sijwvtRD35VHVNnW+wsOV
n+8XwX9eCyHP5/oG4YzTl3BUetnKuTLyQmuYOpCvziUwJ6OXqlGtlgrYy6pU
jcSltDBrszatXgykKk0tkegafE0qOI7TIpsHGxd/+nQy2R3IaVMvpGFRPzS6
MgVcB6lA7NJOmpE8gnM5n0yEzmr7ST6mS13ldWPkQq3lymiZF1Mk/bY3Szze
dq7F6WSChNB/BZQqg5s/mRiUdVX/HOQbfalLGN3IuhHwnzCRcb4oqgKItIX5
wMD21bFfjDyGA4dXd87Hx2YXt5gJ1dJpSKapMQz+3s510chcL3WV6yqDC1DD
Nl0VuZaNqmZawEpomwyR87JuddUWqizXwaphsQMYr+oQa1GC/iUrrXOpmsJo
IMFNtw8IOCLtrF4sVhXOuZrJC91eAW0peT4+FrAARWrfeKarFse9iVpTqqRq
snnR6qxdNVq4WX3+zCzq+hrmdFnk2jBVi9mqyFWVadxEe2Vo/qLSmTZGNWvZ
6mZRoOBdjwTctXP/B5rrR72WV3WTG3nv+Kez83sD+v/lu/f479PJf/vp6HTy
Bv599sP4xx/dPwQ/cfbD+59+fOP/5d88fH98PHn3hl5+9/5cRn8S947Hf7hH
RHLv/cn50ft34x/vEXGHRwPqQ1vLC01Humw0bK0yItcma4oLDcuX3x+e/H//
794T+fnz/3X69nB/b+/l9TX/x4u950+ur+XVXFf0tboq1/yf7VyvhVoutWqQ
a5alzNSyaBWwW2WkmddXlZzrRo/Er/6lLCoth8/+5deWe8esstErwxQU7Dtz
UJxlcKAjIcZG6k/LUtlfzzSxwCejJ0DyyPztNuBUidK8dGi0ao3QKpsn7+jO
+XgXVryOrxcONAY2SdsBHKCuVMmWg8xVq3DtzDFF5iULzglORH9aNtoYnvhP
R+fSqjs8qor/KhbFbN4Cj25VUcm6kU62y8WqbItlqeVFUakGprhjtJafP6f1
qetrgSKnbrTMdauK0uzSbppVNh+4/U+wvJ3zw90+heFMDLJ7YXQLe+9mEq2z
s6aBo0vke/iMQHYwkvJd3WrersREgGcXVVauci3rSku7nvOxAabyEPlONS1m
qyY8lCqH+2qQlelcXqyRD8E0SEpomdVNo7O2hOs+CQnDf7swclUVf1npci2L
HBjptLCD4fr8o0f250bccCSOeF+Mno/2R/t4Ii1Y/fZugA8gx4MxAzwpoLEJ
8DTLxcLnT7VZla0ZgBUND/Yv0eMneInuy2PgdTMt31/q5rLQV/Lz/QX9yVwz
P46uTVZXpjAtCkj7oNSfsjkIm/xGDg8DutfwKlRgouDUDr9/f8pSz6kelnNL
XeXDth7qKneawkjEU4vG5REu1kjRusqXdVHB9SpGesT8YHxshajwcxzIi1Vr
D15EEhfoDpWcC5w3KOTATGFK7mspenW6AqgKKU1hlNjoqm6J1wJbFLg3MDH8
Psy+0cA/UU+yGyKvGuDGzQBtzHKNxg6f+KOn+9fXI/l21bRz3cB1GaCANtbI
ZPUYxwZCFpY8Jdkn28i3QFUnR96F7EUFxAgDTqoW5hfS6Hn9UVdyZzI+3+Up
Pt/bI+4EXwP5sFqC1QZbXLbzejWbyxomH41Oj9OZ494sQXi0rc5HSTFjNfIp
bJylmAP531a6WZ/qv6yQM/F/mWVdGT0QP7FGdrbKQDUgFj1pGjg4MUY6+stK
N2R+kK71wMhs1aBmBTN1lkT4Hfv5EYzh6E9eFaAFqmkLK12BRtZa/QnvE9qj
xV+tvdDYSZONK8LNcbZlXQ1kWZgWZXTfqGBRxlcteEuqi3rV+pMQ3nDFV/Sn
FrR1uBzI4aONc+uT40pq2C77F1kY0eh21SBTmobrEFm9KnOk/gvUJTMUICNJ
+wybY/+KryW/iHSYa9IjtLiaa6SbtpZFVbQFnIdZXRj4YuWOwXExQw921PG6
6WjjEW8YCfEf//Ef/yGk/OUw+N8vpf9f9MPwl0LKL7gk/t+X4NEvATlI+eUu
o6JfIqIy/unXQsjN/4u2MfHkr3gUdoJsHUvS3aANEeJ3QPlwVHSN/Bnh6jO0
NkzbrLI2khXBIUgS6oL3PxL5CQPZ8VJ/nyKS4QmA9cgUIh2FsFgojLtnQPRV
Hj7Rdxp4qzkQBFUwREIonMGTDdx9ZivB5ZDucoCijbNiQ7au/LdAsyxRnzc0
Aji41wMB/LeiM7BjCmScV4XRjlBvT6e3J9O7Uan7HxOGvJlM7V6lH/qVpdCb
CDSkz/vyDarBOre6kJFnkcj4fJ8U5YWZgUoEa45UDRDZOmu9tgFi9wOc7x7Q
qfsvSVS+sjpZYIB9/ow+uKxYznUD0lWDetZXCqLvRiMcvnnzo5fU7GO7vpYX
uqyv+NBlluclefssXYT/IV/LX4T/PQRPiByB5AKtP/xl2qiFvqqbj0Kk/y5f
yz9CyAkDVDQqjvYw+I+hkx4DcH+jd9McyM/yO/oY/UVew6/fgSX2Sk5JfZG6
1AsSXHo0G5EmA0r+sGj1YsiiROfiTzw/Huq13FkVVStf/xqG2xXild9RqyPj
hh2IxE48fI1ifm3Hv+EZ5qXph0iqbPgR/8h3etsjKFODReB2y2q1uNANaLoV
ssqLNagfc3DDkWxt1UctlXjFT5L77RHw2/3HIjyr13Ln0Wi0/3gXiX54/oeT
yTDaAfla7iV+Y2H8Wu4HP9KK5Wv5OPhjuFL5Wj7t/kRaw2v5zF7W+/IQ7Har
DP1WlUVO/4kXxd5geDJ8VIa3VojzWmbwm+78QnbBtC7L+gp9hq1e8h3XDVwu
1Cr3RjRy922psqxuclTMSEenG0q0h3RFela9XIE9B/GhlhTDjkIPhj6YS1LG
3MYAp71YAz82cieU8hCBrHLmpLssVclCVvJeC7r2vZGQ5A5msZvrrMg10gm4
OQqQJnCrkOsNrdosr9R6ICMVyo6Lw2KUSyqv7OE3SM8q6RF5qcqVljNdoZnt
TO9jic4y0vPAAZcLKVeGTgzNq3rWqOW8yNBZiWYOujVz8BfXqyaDz515TS74
mhHSje69nMAn0OPjbozdDzxQ0zldtJ/mWuW6sc4Xq3aDjQpubnZ50ENCSvD6
LECvMLwT4Rh2QpdAtkBTOFRgoMXGSmI2KbFSX/y7zlq3dc7V5cjSbJVKJ2pd
1ip/BbYBhhWB5q1LN/AZ0ATRqevuFQfUNs/KLZkuFd4fuJrBxVXR1ZWf71/y
bxjAQPd7556hgpTp4lLn5OyC5Z2Qhneu9dIOxTGNlSrl+ORIBF4Q6295Ntof
7cH5Bb7F3YGIuYCfT5IhyKMp3p96Kih+g4oePTlVRcle9d6x2J1p9L+j9kCn
/VvdFNM1+b6IK/BCg8UrJiB0CtA+p19e+I0A2jVbiMjpJpumAR4l2I2QnpkV
GHJUeNJnbkQXUV7Na6OlWVet+kTeEr1QYNTSTl7U7Vyuqlw3pq1r9Kdgook1
/uvGO049WaISDPMpZlXdWE25qvEeuMFoMW/xKHEdCep2jmNPB0TqO/dgZ+Ab
73GPzb1dIH8hHUUg9W6/ACPHBFLPLOnuwaHC7JjvgzY07RFM+mC6FyOijYVa
0kHYl7ScFrrMwXsH2tkcZNA2EdZ1n2AY5H5sXx5bqSrGSfeG9Q5Z7RjYbVvL
UqumEqGvAfWQNjLenK+TrqRWQKGhZ8iOGbxBRFlUM0HqtER92lgXBynSmNyD
YcVxnhfweYW2UxvIR6NLksfl2nonyJNcYCDRTjfwHcJ0PBNOKKT+jozkIfmH
7Fc9v3HLRIq3S8UsJmn3tutkC/cxpB3aE3jzx8JQHNTtnXfe4AN4dnijnEd+
g6eoO5Gyns3oRT8JG9g4Ra8UCNYfi4+aHXiRVjMI/ThdyhFkUA+soxZc4fpS
VS0ZPKYqlktN3kIMNrG5c46XicxjftLZXu7ZooKAj67y4pM8jEykWM3vqrze
sNmgFsfmDFqi/8K6yetfS8hhkCNT/FXLnRej0bMnuwN+xB3NcNpoM6+0McOF
BqdUYRYG3v2j/KX8ReJH+Sc7RjaHo6vAmut96unevvuWvQB2VP5vP1BAXUNm
U0O2L1//Wrb6U7vlSftxvzKXhOO+SJPLLuoGKeUDUYqdwHfyF7+INnUYkSs/
ERh3we9CktHo9zOwrofEDg5oL3s/0Pf9mzhzyNyBfMxpUbo3ez/Qm4lLfyDR
6BxdFK3ZZKXa7X/Nz+KZPRH6UzuEW9X9u3gVciKQhUW7UEsjUjzntfwvOyCR
/TEdyEcw15au99CHKA/kHvzgt/JA7tN++PM7kI8HYpcNsiCeg46pDidDYXMg
xOcDeWmWKtOvHzx6cC3g9ogDlIxkGtRTubO3S/E3sB5zCiimuQJaQV5YoDgh
aRYnE5B5En6Gcj/4KjpW7ARUW8uFarO5tCYszoI30tA+UOQN5Fddf5Sr5VbT
iVz/RSspfjuHlESjQJtDvzpOWrXehV+TgYUaTTyJugR9K7UdoAdN60Zj/u5C
dyKf1qN9pRstFyq3UdXplDxWlEBi7U3BSUyFgd1piwwyfSgENV2VpGIpdpAa
UO1c8BlUbY532P3CjOM4/IdHQbvvLT+N51lMfXYBRwRC+XZRIJPPSso14ONO
UTud9I4P83WGGbAvpMBLIx9ZoqAbNIC/Q/DB6HYX9uN3VnfvzwZyKnE+lDUT
sF50OWNsG/Xj3H6znmKsvNHLUq2t3xCzoiBxgnJtCm1on/CqsyynPQP1rgXF
ybTyBfp1YA47z57AhMwu5zN9KharBbwIf4dnaLhp0ZhWrvAG1dPAet9ilpOp
Xa7ZPM5hQzaY29uM7SamWCKMnPSRVWHmrPti7N2RPd1wR2CWqqwTI3Qs2JQb
+DxeZPgyaRrLVbOsjQ6C5spzDI7fr9mgpxwpTiBwKYBwIe1z6Hepm2TUwftW
OJMHPAOqghyIgi9jWyy03xVaQVvLqcrg4DEBodSqWi3hgIB5+HUTKyE1CJfL
TAK4j2ME6ErC7yEz+6gxbS7iTfQQxPQgeabICnuKmIOoKSuPfKoGuRqtGZmG
jaHYowCTLps3dVWvTLkmky+v8fZAGi6mquC0dzFyDn/HLLLOl/0GhZuIi6S1
BDeAzptio2QZW2WbyNt5XWXXXxO9D0lffv/6oUBeMPJrtBrVQrv7gmP095VP
HVL+FJ40bLJX0DgDpFWL62tI+JP6UlfgmiihNCAvTKaaXK4qVRng1bnfZT8V
jPqoK1WgIu/lw5QiPvoTHA/4D/OV3VCxTQdi2bjtkUBKlgXNhqVsZFxFBru3
80YcW0GHAEaS8aYHb1L+BywHLC70E62qLSERsU0z662n/0hyPWiouEHSS8FN
XqoGrbvIsvlZa9Sq5Vl21pnSE2l5W81KWVQ52OrodsH0Z2+S2ZU4yooMbiHZ
hmV5CO+RoCDJOMKQWigFd/Z2MS3+QHKItzB8wXpfinUz0qogwolR0mBINh9I
wXdOZ5fnxJwJopuQNkJk3098Gtg12CtCc++ru3Jn/6Yl2MSOzgrwypXlVluZ
vhqkSOw8+Rlf80QZqgq0UXEqhtU2FKjhXuAhk4EEfyLQYBA6ZiYC6eggYnC0
mMiO23nx888/vEn08eTRcdqS1TVAnFxoqXLOHEN6XbH3crsV3eMRSVM7xSXc
g56r75jdNN8T0nKFgCdsYQOpSQAbkOBcxo2NrBV1YcjVBRJGVex/hW9UNeaE
OrETplHhcN4jT4PcpGyPhHB6Le+d13PRvsMJVezwUGUwU6eL6cqsGiep3T6i
EzL8sLvoPv8hSpvq5hWlVsOmwUbjoSb6P1HGoL8B62GseHa5kbvWKHQ2QKjf
o+7P6VKOACPjDDPE7Gq6HBXZV5zmsWWZtCAawk+B1ZsNn7e7Ys1aq+NTMt74
HBjsxVpm9XJtjyVYXcXhS63aD0RQWamKhdzxOdZB0ATT9nb9zuMbwwuFh9+/
M87a7row7XaNpHzbyVDmS+RGIwe52186u013iC4RKHrsvqo5kcefAyUvEpWs
luT6VmCe8xvAPDF4hAsEFY/tss5VGDlHjuUzzs3mb4WuVgs8jIAtdv3S2xjL
2PtMHgXZ163/WuQBdkMH4a8ogzvkMu5Cg7LOprndGErXbskS9GqxMnT0RRvQ
JPIjO5tHIyE2exN5o7a4G1PKDXweyvDksc4LJc8hX4FWHbMU55B0g2AsG5wh
+CImOvjAlQ3tUQYpGRpM1v55JtDumclH7G8ATpTxdGLOHUxftTyuz3e9F9Q7
PdSq/WV21b7CS8i66etVUx1AAu5BM83g//7+97///b2Qdz1/sX99TXTrcmVA
7K+wXBwdGjunbw+HOi/aujmQqyUoTW8P5XJ1YT89IP9EpiUMD1fvUvssBXiY
8kZslCokpd1YxATOnTZ9xn53gISMe8O6+/3uAEXaG1vJw9+d29/c1HiXwJwK
c3mcoo3MIDGHzRQYnJ0LoTqus0n75O3vqzzAN9raRo4j3mcvLN3wo43blbgS
ThtICD67jI6wiIiSzwpDtpvztL1PN9Rkgq12aQIoDiAtA4kymA0nD/TJEnU2
r1eKA9gAx3yQ0YRqZ+JMlE3DQPdLoFLayglyOf3P//F/X9R1+z//x/9Drpgd
Fyrk2LBqWhbQGovPoFST0mPk+zPykn5qdwdBSQXJ0TB+0Y8op0qRSbmLphpW
QyhDAVzM3QJQh2pmSxFV+JaPwENsAYJaEFsm5YR9i3LnslCYl8pRxbqRx+ND
s0tbG6XZYD0bCmfvzQMvHWaXOGvRPRSROWsrDwxlCHRrEqQp8NLYPFScsEtv
hwcbXXL9YmJMN/+Hx+NDKuOxjiyV55QOtsZ/shbqi0Q628zKN7u0i2qDUx0d
hEtlTDhoPzM+CGh3LrydHlWPwQyxMhPj94XLnaBLFAU2O1FU/sIDk6rwGYXh
eFYbfSJNnI/H5TzphHlOQPCJxN4P2wuxs1j0/rcNZQ1Sjo295pZDKBjg+hp1
CjgJW04Dd12sKlOjZ9BXBXBkwlgOGSvZWPPRaJWv5ccKqD9wQV6qZi2A8Hz6
xK0i0L2N+fuGoNmf2Uut3BaEtnUrXxmFxrQHnQ9dTPLXVsX5B4kN/4tssyGW
s/DjVNsNTr6lbtr1EM0V4x93jrJh58XoBwy0undWFdUJujqn6EWclXP1fPCl
fn4AiN2Gr7hYbiLCTSd2xxA3xI37C3iNZ+18XMMCN3zjfOFDuJ9umeQLz/SQ
04Nf/xpjz/Qg+KGHWN+5xnOs61JcB7Hg9CW6fWQ4HRre3xwa7nypExt2PIsU
AKdjfevYMIbYbGyAhKefsLPO8EeX0Of01hTzBG14iunbV8p4ZciFfyL/TVXz
tINnLc5BXAwEqlbneluHWPfWb7K6kvaqe52lhU0rC8K+tzOLQqNSFnBs4ZrY
TeLt339alv+0LP/PsSwtxky4sg0bEnPHgksHisqrdb38GrhrdsFd76nR8PF/
2qVfa5feA7vzXmBwYqI9pNig5bLV3CRbtRMoCYr6v9L+xDwvNjcpZxXtNtVT
2TeFKMmt2hOYfRnUpbKw9mKjNRKTqiWiYAVD8kyTx7J3Cyof2OV9IdnhZDQK
8zg5IGSnW+Y9uqVBGa8ptCijoKzTSr6ZxZi2E1nzZZZk9eDNbukUMJaNdbKN
ThkyQnYDHBvUcUqIN4MOIsXtvCWkpKQHzhTkZQThDswttwk8Nnunm6EMguB8
Mtn0O8u6IE0JHqDIamJzgmrlwnkwXEJdj611+LWQX8OxHb9O5nI6xt2xEgIq
6NtFd6EHW5UBmIZ1a/EOIH8vgHSxW0GwGhyYboJPd2FgBrzx+pPC/CMqpbY/
N+yf+6lqE5g9nCpDMW/iksrD96wxwTLC6Ei/XLGPgOv8ZVC13RlxJG0ifDID
oAf2E2hmsJC+9cZ3hOI8gcsFmMxMtyQkk0UTPI/zcbfsKSELCRQrKoIaCZG2
eJlUNpjDG+klRjXiGqAs2hkwU+9EMxVk3VYz3YQQPgityrgg/jRHcakjut67
W1dUDgGAmKrNN+kgFTkOX5VF9REqviSCA9kt6TwNX3HAQOQfBl8nPnRsHwpQ
gt7IncrBHbWcfgs7ED1jfa0OEgoibkaX0yCfNUi9tFQRjYFpHpmHMnJbzi4+
B80E2kkCsCgC2WS1icK0sSFwR8r9qWp+Nu1aZwtTq/O9pBI5UhUwIxlD2uW1
NlxNxpFf8C+Hz/9nMfYgf8gz9B7zRubxFe6W0E8kDuR4M4bVK+mNwb19go/a
4jbig4C7BenIEWJQz8VEKhkSRPfuUcFdUgKRRRJHqiM7mLI7+Vu22h1zs/N6
JETgy4p0+56bAYC7e2N3feLsh54rs2m+kv1mLs8d2AfmznSQUfj7MQQc1wo4
TBGnj6HewpsRuueAi+DEWUHY4uJLKtFcqXsTyJj8fD80poSwV/N5p66Wb2Cc
kagIzY1ABEURpABFWjClVDbZagGI6pgj8kN9pS/B6YIpLS7Vxoh6qf6y0lFE
xjlU2PiHuAHJE5xLiXepaAhTwn2PQw8iSDWBqwf50ICCtlro5H7YGASmOlcI
W9XJwmw0yLhaLACIAarw6XoDtguUqYJbEX1CFmGAkWyNBOugnlJYoYB9QI2G
kRUIHNU+ytyB7csAiYYqQoB/1TBNU9MOxoJx8yHCLKatruyW5f2DWkIQZ92B
sLO7E6RJbzLqDaKCISwqp1MjjL5qckTjYVeDIsdqowE4gGpSooRFDr58ghig
/IlSdrBMG0U8DRJWBQBkarkWbhCKb8KXMFHJ1cHaNPi6YdhZLBnxnj0skgkn
DI4lm5To3E2XqijR3K8begNsmqbQLdxci2nmsO+MIcRWOV1VGcUii3Y9EBcr
J1ehQsPiZ/qVB4kFIOTpzIhh4O5SoTSUdAYuMVehgJvDf2yUz5py2YaA7lqT
5yw4FVojxAfrxQIUZYoURwDIQDVlvV5wnuzvGHc2yseKRZi39UJLb6FRtaiN
FuEdHoR4TUbblz1WaQotUeIk3V0XVuVyBjjTI54XZ9TBzFJkDlZwTdUeiwMh
vqB6zrMDEKVDTKiDP1sczy/ii3zr0uWWTV1P5RfO5/wiN2fe4YsMKkjIlF79
bOQXudJFHg2wnx7it0jMlmDYdv4ia73ovf849f5hqYzpvT6/ovzKeIAnqQGA
0c1VkyMaIXrP4XXrAo8HeHrjAP69O49hQdftJLwV09nGm0fwX77LIKje3XNv
3LPpl6CAbX13F8LKAPHDaSFiQ8JCoLZAaSAgrBnGsEBbJUK8tSzSLopyDlhl
8ckGJIWGCzMb5nrKyQYdxSaNBBCjvMnNKG8isKwhqSVeywgDBGFSgWUSlMYR
JDd0JBNy5guVfUylcTjsDoKFs+WVhKJsobJRXDdrB3/a3WXEQbV8JMBGpuTv
YjYECGvwyVIECV7vcxVcB+xeMFN6CnzOni8KlGemHmZk3d1bcq7zvZiEnkbQ
J5j1TOoDj8V6IO0hic1TXaKf7ARc1zpAPUzivBHKoQWLk9JzUkY1vPkt+t9/
pwGCLeEnnN6HsHSXUvocvNvNSOK5PpSdGX2JVrq+YbKxhfff3dhE/fDqjp3o
Lv/0Re70VxPPDFbDy9nd8vnoxe2rjeH6wud+TXvxHg+5txfyoaezzjncaaf8
gpJTRVL6fCDv2wtBjTle35uwK5ATr3EZHWtkdO/6pvyeHi/6+yT2MPKbg0NL
JfIw5uhXJvD87MyV5HvdlJxJRaDGfyPECN00QwhOwd8ZhS78aWFmdlC7CXuj
0d7+i+ipEhom9R97/HTX59ew3Lpz6o3PeekQ1s+EQXjcz3XpOQhuh4AAHTMy
RXcmSOxj+6WoZgNwMjDMoAyFtKtL6eX+RYMqhvUd9PFGZTjMKMBz799EetYl
lFrkuAT0OukJrM14xWXqbGALPMXdXW7O83H1DrfJ8fnbesgpDOJ8zOIOTuab
Xcy2sjoexFuyx+M/cAwajQhWyAwrCrxl9r0RxNAhrTb2EdzSV5xWSS3GiP/4
Yb1YwFmesa9qJERq1+PN7p1nVleXeu2USYsmEO89JYfxhyFtNdxnICl5sapy
6siz0K2idgI49wTcu3cqsDIHV3NasIwBnjYIbCQ8ePbgtxTBsD2KotRsjLL6
nbP53RzA9kcT7okHrOdt6DSrYLia0SZXZWFRs1I9LlhJZMBjrEC1kPgU9HDJ
XBuxj1nfyOoFfI7K6BUA08+tb29ZG1OAu4Cv+wjzozg0OKCqI8g0QeB3+6xL
SyfzAmYYzo98VIklMfPA+HG7wYXrofztsA+xvtGPvMnt+79fqtrts/r+mZL2
n5CS9m2T0TYkoB1tIa9tSWCbUsA8UMe2JLDbpYAxjbky669NAWM8DpcEZlVR
G1u0mmli11DO0PkTdDE8aCwmqEvJ/fwZf3WozuAwubaBXAvrbdgmUQb4omVq
NCx4JSCbiErJYLGdKKPzWfD8F2YWTB+05+iU5quFqoYQwSLnbKFmVW3aIiPV
GTU3exacNObwZn86fzt8QTsMfSEhRlDJd7od/lQVuE8hKjn0iIR2UhThCsCK
9vYZ0WgkpLC6ezBlVOVjyqqkbXyFFxU6UfJHnj15BvEmVc1WmGimZlGWDx2C
+5kP7M+8M3/GNY+47NuHFjt4L7gdlFcQjQYfA6W9yGlXGbkf2sEVle/ChQQa
bzOxVAj58hGRNsMRkwu7kZ6S/Ects2WNHUJ/ajYSIuij1DMiMtUQ3mPoaeum
bRSYzzTXlKUhiuqyLi+DplO+rmzAYOPeWZbAvKXQJ4V6RapVDmkGoIth4AOh
mp1u48DJCozMUU0WWVtrbHVECVs2CcJiP9m+cuTAu4qjqNC/zPRykNieyMMu
fDml482KS2gIyO0DjXcYCrcX6Cec6+xjyoKShKQU4fkHNhlme47EDrWuQfUJ
Xu2V01mtBxXduvJphiU4QaLMRUPl7PR5xoowGoHIfSdA33URtbtei6m2Fjbj
CiKgo924WZ8/QVQIm4ENBpI7Zq6qfJDYfZlupwH3JyNwJNmsqoHdZqfY+q0m
SPsLLeyG+56fuJUDiRJuB3qmrapd/hvkgdXt3Lp+7HlhZMyIPKRkyBCsrEMc
w682tIQHY20NbKW0sOtlJ48DIhiJs9Dx2g2qbsw/3uRfUB0fTAB2Fd9gC34M
4hHhZGGONrXOZBq0/NowJ+9cfr7AsaefswLO+FW5B920Ly0biS1QbLnFWMJK
/nR6xEAzvfP+njIWPt/PC8CAA5AsIY5YG7CzHNiUCDc+7QSMG39p0weoW9MW
nZ5R4KWSlb7aPE8gmnmNWwT9lrb3/HpgYIZomFWDm6wKYYE6ULwpY+qsQLYe
G+5OCwQVEHp9yXttNlytivweXXWrkGBY134+9bQlX8jDtUf6WELNdBOwTa5Z
Mix0QG/qpuk4Z9TmxQ2EVXThyDxeBAZ1ueGT6yPn5QgVDvc8Jt6B6x7e/OmR
EBRnaTMA2Z8DLhJqU9zySQZ9BkZCnDS1IbzlNI8LKAZ8YIBuE7i3APoua/uv
gV/xe5ebk9dXFbAmmj87A9wnx8cuBY1h6Gri2SW0nO6wBNMFu/OZqz3iFeIQ
/Mm3WtxiBZesNpsMW16M0c0laM00IId+8d2pBm/a1pex3KFmP0BVOTzMHshf
T4GBD459u7WjE6jUhkxbn+UDuKiyrDnBl1GjGn2pValdWd6WzbJL81GuO3T3
2tbfKwrFfLnbyDf2Tvrl6/7/qGGM1Tug7fCu7D/lpj2ZnHxghr/zR3nr/30R
dqW9WMYd3w+6Ad3hf/59GTsGAbP5ju/DPsZpiwHb3Dk/9PfE7uQvO+9/iYX0
zk1L+dJ736/iNhuRel9aZegWA6TflxIw45oi10PvIkqOtul9KVdNcSDvQV95
c/DwIasfo7qZPeQdHbXq3sb3r29HPBvfJy70te9f3+7jG96//dup96937/B6
7/0UH9j2v5h+/3SXT9sZuPfvsu7++3+607q779913SH/wwFYflQD0efMIWvu
hLBD7ul4ezA5GTKNFNffOna6oR22vLO/EaHfdM/CkexWSf+7dHsRTv3JC/ns
qXx2iP/nrdw/lPuP5Gg0CuP92za+E91vMxvbZ6tgm46Asf237P+CHocdM8BV
CuHTA85Tp3BSU1Cf49Bk2XcmS9egsK2tts0mZZj0lVOn2pJHsi1SvSqFtSeM
5ESiGQFxW7/sbdtGPx893b3RuAEvxszFDVplPsLG57osoD1MR3PsaUJBnSI7
Z3qLHqUVSpGyr+LdwujM4gKy4bdtPaRHcamL63/ufGG4N34PnW+bWwV2VGQx
bdQM/j5Ed4hvp37vfpvdcwCymmX3hqUFhlvbqMosijY6cQ4bRsgTVr1H1TIR
Cd6gy/d1U/DIeH2byoZjDTmweoKdubsBxJ8AW6e+QFjvrROzVl63fsE2JOxO
8haWSM8WQqtEsX5O+IxIx4jzu33XrK016plC4+PbmjxhNjTfKwpASNPWDbqB
65tt0u53eQ2bPltgzUfX9uOwAe1vmAUe9g/o0cX/UgZNLFluMmWs4LqLGfPF
vXN70yV857bmSvjObU2U+B3ci9gu6Rkjv+y9c7Mp8iXxzk3mR/qd7SbHpne2
mRmb37GmBTDt235nszmx+Z3NJsSmd7YpwOl3tps56Xdw4Qdy/iDUz0aj0YON
79xkUvTfuVmd7tLb7UyH8J3bmgv+ndubCF8SPORmQ6Cjrgby02quR/4v3EKT
/LJ/AzU2FN7Ugi9QZx8fyLPVcslJuJ28ljcQzHEJMXdQaZMDQdDJ+6SdF3qj
YusdJugf9kGD0abokRf5mJVhfFLRhhlRSD1SNSiqU7SuDQ/L1U5rii35cCLX
+FVw8HP7TpDrCLNJ3W6x4Rf40nN5j0oCRv9u6uqeSyZ2kAWGtTQLGeALsANl
kGeYUgdZgidXbxMGYGwj6hv0sv4ZkHYIuVBDiPrdRjP8X1hxuKX+8PM0iY3s
5+u9ol+pa2wd5Ov8o2ltxO7rdqVks7i4u6f0K/WVWw4iua7xZw4iozKqGwbb
puJ43jFcNnpafIKg6130MfrfH5kZD+QDOKkHG6T0tkFu7dXbon3ddohtg4QN
C28g3G3L+eODgHVv2o/tg9zBS7pRU7w1F9gySEAjjTZ1uWqLzQT8NTr4HQa5
hb//3o2D3GFXvkZtv/Ug3+R0bh+D2boco9thANhR5foTQEPebZBvdMSMjkC2
x9vJo+cvnzi749aDsHIHOaSQ3H4gf/UrdCr/+te3HuSb0MlVU9w6RHmn09m7
6+mwCjoM9MW7zuROoZcNpuhdhvg6O/MWg3xFHOfrLNH+XL7CNN0yyNeGs77S
eE3osZE16/R9V1+51cb6GXZrp8rCGq+26My3jkdbjP+4qVg82T7OFrYBZkmE
p5TwhW8vD+1//u9TH4rWCa9KhP+xoVY0fORrK0Zvrqb8ugbe4dx+ToVl92x+
Zonl0wScePcTm4DE2bEv5N8ISDyoKaHH2nDqyYHDNM0OvKpdVR9QNQEvbvG0
6K/YRCTAuo3bNlvw8Sp1d6BUz9UbxLUGvlLCtovzSfAxNpTFpkXQxH6NAWWs
dssM+kUGC/XJ1xYIua209dvB/W4G6701Ou/WVjBxe1tdUKtjKgmkXORV5f8z
RMHlqGiymQyWGCbayUTNZO7YSCZAqLatZH5mI5m7AA9vvRP/YGDD3bkSzApV
VXuUlX7dEHHIqPr6dqKTi7d7ktONEhaY3yg+uxP4OwpPXJbw/9wmOKl+vS82
byM3bwlFcEssAhSyWxoxs9D9Re8nK3CjAZJdTe0QiR+TgyTaJ9shej8FA/im
iP3Ne7q379frmiPyqBYtKZzLXdUOr1bQVelqHTeoHQMuvwLee2CBJ6DRyqsN
tX8DbI7inpycnn44mZwej99N3p1/mJyevj+Vr+Ue/v2nd2c/nZy8Pz2fvPkw
+f355N3Z0ft38rXc7/369nRy9sO7ydnZh+PJ4Q/jd0dnx2fytXzce/D47N8+
/HZyygM96f1+eHTyw+T0A+zTBEZ4ik98P37z4XByen709uhwfD6Rr+Uz/Pv4
/Hxydj6GmroPp5P/9tPR6eSNfC2f94alfZ/Af8nX8gX+Hgz4YfL7E373Jf52
Pjk+eX86Pv2D35FH+MPx+N3R28nZ+YeT0/eHk7Ozo3f/9uHt+OhHfHfveaAC
xvzlZyqAz1IYG/EXbtD//sG0v7+P2hft2N+j0PSrlECe6N+9vnR7eWmAk/kN
C0y/dX3pNonV67SdEGopeGa8a/QY8n+dboYb6O2pZtvhANs6bweTCjpbYPWl
71WY6G1tidTZE8XUS4fCyK2c+B+hS/kN+/dVzcq//balJGG0e30dpbd3CTUm
tXOov7tB5NYtsxsGxt2dSW5zQ5Vvv3+BpP77dHJni7Lb4jzuFJnusd7rsB5L
6Fu1WA8t/i0zkLfpsN5FuLqxyfrmFutWV0g3WucOKQQDEcBGwJKsus1QHwML
N3LLruuw1b3u6v+n9E+HIn3pe9J967sWKOP/9CX9b+pLitTsntPlH9SP9M0A
bNhJI+V7wpDgno84OYKNYlSnC6p6IPwOz+Q9HEk4OLUDAnLMWl+W22DyGdvV
3Dd9gR0hnWgFGN2impV6iASNpL2quCgccyZ1Y0Z8TLhinumjgdzbG+49GzDk
196L4f4+zsM3pFlVygTgZnBGzSXT13SFDqmVwVUF4z/qoJNgaQm/CEuA2mOA
AMkytBdU6cbwXT5wf5hdAgxBuFWsq0P7gbaBQgxeEO4ZlMXApr0S0iOode0K
HJ3r+eWqApD2WYUw9bq3TTMs12FWv/8YIP/o+wDnUeIdWEB6YAadz8r1QLbw
AtPnAo5nVVFfZhybgFjAi8dQ+gy9hkvt2vMWBlKHdyxh36ccLjt7u67BFTdb
Zd7vsG8C2Y6egIyxA5ET8b9sfyt8pjJwBbg5iOs4RE9aocrmFmguDD3DMvF0
cvj++Hjy7s3kDSINsq1IS1ZFuWos0JNvphYt3IpH11un0+vAl8kjGfC7xWwO
Zz1dkWcXstpWFdpxDm2EV9MSothFqSH6ksWgPYA7AKR0sZYGECTgduRNvVza
tuuROxg1Ltr1AV4WhBxZ6qaoc2Qt0M1wVbVFCZsDjhxaOWHwlIW+1A7X76pu
IMWYYIrUTBUVtYSCPjgEdN5CC42MmnmgnjFDul5K3Eq/YmoJBdilddU2CpKE
U46pgivxcn7HdV0hhUnNZgAwAJ9odEs4DleqaRSgZI/EFi/fzr4lydTxufIm
2yYCW0IyR/AqtFMEo+Mp3H3OfxYhriqnMYVth26mx37rja3k2DYEP2TlWKkC
PRw7HKGXzQpPJD4Hvsd4s7ZVIjmAHA0G/Zn6h5F0qu48js6FXHxB8yd/IOtA
rVblrG6Kdr6QgTXO+9T0bZtxAKKyZVPCt3lhHs0KW3K1BOVr9dqEnr95Glt9
xztPbkOewX5s1LwDV5GbCfPgb78jyRkklhq7wXee3v7MQ5vepNb2n3bY3Zls
OeWuf3/nGSz4xGOMUSM43bQkhUkIAU7zNuYhZI99cLl0GtIXxkQHiP/Odukm
I3BXMgSCOYJOjqY9OIQ9r8K4HiJ6pV5o9GX90SMkEzjZV8lR8G4slq1rSgRt
JlrdVPCl4Kt8BMlQys5zOIejDX3EOlPxLNJNhDvcmI6vxZbP33I9ifsRxnN2
XmybZHxZInbQDwmiV6hj0hguWoHDQU7fLckJPoNFsWQ4seALdNRtazCuHope
2+YL5O1Iha92Xu5iT7yQqEBh0Z+W2PmqbixWqzMbyFQrvk5VC0is0aD6A8nG
1+eCMI2IYwBgNChFvISuMrOz94jmvyhMpstSVbpeIdi1XizrBkqCWJz6LlgL
vaihhLt0qEmsnw5kneEqocMVHG4IWdgxt79ST7VscYNCEKgDARovDaFaUjMR
uIzQ4IK+mNYlpTvT4X3bEoTc2XuekBVggK4gzqLzCDyzW0iGcUnaPsOuhi2u
Hw8IPIjA0UIjgT12t5IzpoXyt4CmLCyig8t3ZkzQl5WszxqpmpKQLZIjyQiP
9iDEu451yjo5xAlz0FfNUoGLCSxDGA79x5ca1OboGASxJXB/E/pxSyBqDLfY
BrFEFBT2ZONWYMJ2S7NezYVW4NKClgcAGAChMmjbuWHSCANxoQXNvPBt0wq8
79q6JrBl3kK36Ia50HN1WdQNGvoeeBSApgWezLKNvSlM1YMIQODfgc2V9Wzm
2thfYljmB40d/tCJEjA+RL9AJ5NDOzdqTc2piVULPy83K+yNGK3kAlOM0IV7
Yp3K98GpzGWJkW5FMUZtXIcj1e9vhCxc/g64g+jrh05msBSzbmB0lPt/4yzh
fgGKArpexOfPfwGX/dC61q6vYR1lkRVoibL7QMkrhfAOiGu7DTFaYAVnBJg8
klKIMc7PAkZH8NCDsMOk7HSYHB8PmCeGLX1cO8jG8coY1xCCta2RTU3w9i32
cA5a6YzkuAQrZzZPNlJ0/RepofX4GL9U1jMq1ZRGA2tpdZzEIOx5DLjgl32x
dhejRphAWheroiRnm2s72cLXqFPUCrRDaNaIz6Ybz7tWvd1GZ6HjJ/gutnzd
iPbtxDZHy7oL4KCEhUfH3iCGId1hA0ZCfGd/HZbqQpfE3qM/sRO556pi3vTT
6ZH4VQqe/tcjcVfE+RTWfAJpXnxne1j+17P37wbo63Qwtgfk+gQWNhLf0X8c
qyX1SGoatZYTdpkekOcWNwuilBB7AQ8zPES4iQu1NG6QMwwRbHp7yG9zIIH8
v+C/A0cEj3CCyDpApme6KVwlwAGNCRXPqOTBES3doyZ8dOB6uvAL2FgVAfIz
aBUNka/hhnfdNM7VzBz4f0rrMKKQ2HcYHXj4XyFEcOLiEweME78pXBu+NbYO
AXPzWxA6zubUF1R+TwhBZ6SgHsg3k+9xM8KWovDSb/Ta9WLOeAsxpIE/vJE7
H4t814fisLsDK98f6Qmm3bkyc7L/iCbx5x3fdi74K+FlYvoNxY6UbNRV8ITt
mBnZkrvolqdrY9O36dY/e/4yDb8PnH1VtkPA/b3m404+oEDaEF5yBNLvWvbO
64KaUeAynZsGdnAC7S0NcZjuTr7n4B95F41eqArz0RVvCuBwU+ytqLiJHXOE
/rnAt1wfT0sN6dgq4ZWzSschcLZz4oBw3BOVg8cYI8TwB6ZEIkFSm9Og16g5
EJDyeJ5qpUpxF5IiB9gndEDtPuHKcePOgW+fOfDQ0NyfpppuaaYQ4FjbxnLB
d224dYTTu3mT/FGr6ZQb3wQtXjdv2cit31wNEfyYfqamvh771aMlzOsyd3ze
qm+9puQWZ9lhOdjPePxs+hCKyA7gmW2/0gbPY3bqRZ2vwxgwJ7haDW5z8Bff
3hwAVq77EKnV2PEF0TzsgDgAKj7pMQheru/qZVsD/rq2HDnWDbENuWnRl7+W
lKEA5yiCnmR9zYFBPKi/O2ZnhA4YisXGXglEl0b7pt/E1GoLqB5hInlBNWsU
TLAWKLYmLCoaHwC90KjcYB2hHOKuXdQtAPYodAtt3C5yIK3lOM8LTjvgq4uZ
EtBQFKJ/TOAiXicw3U29WpFh+d0e+F7zfsuE62TdXRheTGoxnpMr6/590Ekp
dDgv0Iwenz45OwLoEEcnjWrNUDVPTBEodbEeRtetuShadDt02ogK21gZdKGU
Eum6vTvlGaVR3HkSzsMrbIKZjVtYYHo49y2uxc5xYBs60EA2awEsexE2/4Zn
RwiZg9QRNLIesCIeGqYe27HXJNZ1Q0XCFeGdIQangjY8PsB/wt1cJXVWho31
j9s9EbQn/Mr3Kvs4azAD7RD6HMhjejVq/hr018j1kmLxHHGyJZ5FJd9i81u5
R9E0chxhQ8ABqqJOPw+vB4EGYsCCTBFhl35A3UBYSQ+No9bocuoZF+cccS9f
ihY6m8aWb/0u7NULb/odxk4R0GaMMgNqJ9Y7F3TAk4UtjNdj+51B3H02b6d1
c6WanDQG2yR4TVeoCnwBCwUZG9oM8Babol05UwJ9RtyrfSA10hiabsVUvgNJ
RvfZppcxzLyTkmAmWKsUXaegfqNQWYFZdKnB/McDguOB0PneyJo6ZJJH3Yp5
y9qw4fmOc6HVqxZAPy28osnqpe/FSoe1S8q/sUEJIEnXJyZlwWITGDsgHIVf
jbSAVERZdoJwBjbkgacTsBhDuqpvOin277pcZJT9RdQVDpxoyExhD6IBTAiy
ToJUBp5zgKwMjkdHvHWtiPjf2x68lVe1s/Bp1VRBwO6iYPZBWKnHkdtkn2kz
Eo//07bOjrR161CH4v2C8eIdo9A2SXTkER4olKdLHcRCJjygthKW/Nw6EDLM
eqiUd6K8o7wt8GDC/qb0lYsV6nDuw45v101HUqGCl7Xxl6n1SbmmTNI2vW0m
KbnQj3esKCHDXkpbM3ji+/q1NZnAP4KPw8jP91s1M9RpBWzJQdcPgEyZrfuB
rBDl9FK7zCo6PJtwJeyf2ZlVNGAiGmgYa/9umdm0JpezylqbPWxzukbyzLX7
uKqbXN77qNfYpgQaiZZr160ExTMKBfbzYtKsEr3UwUHKkbOyIKlAEfIeOn3u
ea/PCjN8KSCiljDKSAi7oUHuOO1jkDfm1HO8DzZIi5lsf8RMtj8FmWx3y2Mb
cDo0GnC0eS5I0miOHLAFemjDUQM7x0cD+ZTOixPdbpvetiUxbdHdkER+GrnT
UllqI3E0tV8yrapy1eTGXz2vGbsmJxd6Xdt2TThEL7tN+FqWXPPqwPdP6Wo+
Uw315yj5jbapk8Emggy2fn6wcVkoNtKNGX7o6SXLzgXlE1lvjgK9Wb6gG3wg
xBf5Dhj+VmAQusXyi/iyvcRGOjCUPXzYp1xvHBn+t48Pu/Tr7Q8/7kwjUXHh
H35CD3Py6NDmjaRHfoYPp3pWJh5+jg+3GfUCvmHOL/Bh/and/jQ9/BIfjnsN
b3p47xE9bGabp+AfpkOx8a0bHt7ftBu29Wb4MB0KC2OgjfS+0MN0KBtaWHcf
fkqE5LGO8u6gwcPP7KG4MQ13dB6Suzt8mE4QROiQ4GS27cYLprogmrr5YTpB
ypne8j98eP9Rh56T1Vf2YX+CWEO4feR99zDG8rY/DCcoYtcdlsRTacjS2hEg
Eg/CKnhkZuKV5f3QtVotwaOLAk7rZYJ1d+qYt5eiyz0RFHnLfeErueXjrcVZ
WKXcu/tQgJy641B7bMkW6ozdbYXC4phGsaQYS/Hl3p5wdflyb39L22X4/bHo
X5HXcu/Jhmbv8NtTEdH+a7n3TGwjcCxlDon6tdx7IeLadrn3UjDigNx/dEN5
IDyzJzyqgNzfd0n+8F+PuXD6vvyeI8HyLJQ+Qri/F7GzHhUi48pzQOtdQiNG
OT45Cp2PPqo32h/tdfoZkuMIFG/3GdA1oamfM9E5G+2Qen7B8JQ6j+la3goC
C8hsLBvrDXeu9dLqaZuGnBaN4RQmTNWhHekELeTnz/5H60GFpOdItIOlXriG
zZz4cxT0Xc/rUJPpZnhZp5LKKDffpuGEuQDklDQCk1zQAcqaRtIHSgAe9lqx
t9LmamksQMRZOqVqJN7bEig0pFB/AfeXMsx1IITLiStu1bayhwtnKF8lzsbw
5esxuIg136EUoqhXhlqPRmlgDhUZC2Qo2SqoeKHwR7c9HKpSeLL2e8IFvrl/
BW4H9YykTfBdRNHXPKswx7taS7O6oDvceu2T3770ESGaj8D5cDv0cIY4+3fv
fYkgcF8yWWxiZZh5Rd3qRZSSzZ0qbJt55VYSpG5DN1YwMXuwz2aTyx5XQhfL
+WfgprMJY10J3EvT+9fJLwpKfKOyj+gSAr0ddt+9w+Z80YRA4bgrZiTPXQWM
WFUX4I6EgC03zACWg7sHrFpbVypuops/EFyx0KBzO2YIzmMcc8VZOCZTDZil
qjJXmKKVmJybEZay85DOeBAEC7tqoI5pYOtGwVpYLDROelFU2Lg6XzUuB9O6
3Ob1imxtlWGaGEYrfatVivzYkwVOQTUMNXbVaah0qkDqctYE3XVjLTVowSwi
v/+OinJXMJDKxBXkormP0RTrRpZ1NdPN7ogJ5Xj8B+Jb4Y4vdTO0TR25X7c9
s7JYFBQNSxHDQDSaEhVpu/FBMBzdgdTW1A++QWNikhOFyXfoqvPBgmMWHcJl
jujo/e/ucr+nH8DqIw9Y3BzdoQ5i6V/8W1DM56tYrOS4JF+N4XIZsLgp2gw8
w6tSwqfm2GAXXmbVqmHR6oUZOo3DughC8UayBo+BRRBzH1w3hTix2886KhVE
hmu9GnSRgqLCZNFz4UofRQ8PpJ1ro+N0IBtFWejW70lfJmIUhcR2Jbo9x32l
KSRQL5dNvWyASXiVGHtBkfo2QjSUQJiKbyNM3Qqj9WF/ZFxbcGVgwkWF1Y0d
gXgLyol78eKK+6qo20rqYG1cWDvMAXXeUYz9pfypkOBewSZY78UWM1E4WmWx
hU5RCgoH8WUuMXdVDyb9aVgAZKmxM0f4Ihyb1owchQdhCbjRI+w8nDTaSI4h
1ElNtQOHjbAV9HZqYexgGu3dhklvOuSiEpuTU7wuFB8+6pmm1Sr34ducau5w
Fm56/uJAIEtTcwh3ujuXhaKoovd9c0DWRVyizLBdxi4KywGsR1lw9zgX4NsV
qegyuZNReaQKZhXF61EaQwaHZdVRP+h4b4U9Sat42als2+0tqUDEyENOniT9
z/c3DEDGc+INak6M2uKFdlw2D+44Rctw/mtfApEYCusYXBtq5f35vm4CFDvY
UYMhqVuMGSSA3Muq6T3OJNlJp388DuyvF8+fPL++3nX5X1sSwDqGQ5D3ZQOO
l3amOtCUbZORIN0fgdVsHAeHh9BMvViuYE9XrkQgL2bY7M8Vz3mD62IdVp53
kVgSUA6IviUp+4g3wsjHoyc4j37GKe0LKiCEfOGTk4SAqnSXBFpPh/V0uKzh
cqIRNV1VGYkcSEjdHDVDOcVdzKP5Usp7eENbnc2ruqxnaywd8O/pCtS/3AXE
i4rf9kkGIyHF96FawTIN1ZDgGzsFqiW7g66iYHwbdsK+gTwSqgwAXcepJvSY
dYIkzAuuzOkpMcQSvVhzHMcMrN6ySXYvVFUBt6Cwc/+TIkgqCObM6TeYjgjd
+PDftH4ScDYyvl5ycnQ7b7QO4+LhedpiOMqG6BdCNUFbnrD0LbUNQKPc3b7S
wAFVU2ChAbEEBMg03bsYUMRcqxLY8A4VuZQaamOongXWvJsIh1qekyxbw694
7wFWzvZPdkePZqMBcMjFlWrognfmaBM0dJuNdiUTCYUuu49egLWISRcKUquG
bT3Ej6NosUgx8grLMDCEHF+WmjC+4USs2oaKZ9QSEkNqdGH96ij5wVOPlHKH
N6qSc0AAqYBMfHwcbemFqkCP838N0qT4iMlU2fV7zcKfIvGMKkhmYxeH/AYV
eGFmA6cCoz4MhaBtLTcVFaJMCamXNwsMJ1OnVJWAYtlnQ2l7JP9QGO76lAZD
oWiIKvfpxHkEfA6ct3lQyanLAlpeYScptDid7ZfAVsS8g+RaaE+q2o2Etgj+
xNp4mpBvzy9Ex+O47dwi/Hs+aPANQLGK9f0aLhZqQ+hb2xLMTsEEUzDoOQSO
A8V5rSJnXuUQU+KtemCsaYWez3zlc3kNuwiIwnL7UVsoH/oNRK+gOcxQBR7s
XAaolYJfIkT0BcmDG8Jw9XXTx8SxqFgcEydjniF+rWbQXYqrfaLJUiYJWQUp
aCuMpgaMT63twQts24amt2VqikzoXY9NAavqFh+jabyoLyBThm47u7+AhVVo
O0FNNnmvmevk9VWFYQsVtONB36jdRdFxvNhyzsBJCf5Js5pOi6xgpBhtwGAd
B9XhiU3wnkRYjWnVYmkGLAIuNKNXBLymoNw9gSKQrlBV/7wb5FhGl98QeoXo
m0DgbuJT8WnBm4M1QeTdWdgJLiJScniXyyHRCd6/3HiFq7pzswcu4bCj8llD
ByVbkInogOQ7/ieLx+ruR+yC6v2c8iUE/CesOY00O5+f9W29R/FukWa4KRji
5DIOaXP/KcBgp0cJGWT8sqy+QTO8UmtP4jY9G9+AQuWyXIuMvIVpLAJSNXpW
z4CuYt9BxDJly3G4uq1OSXpKRlOK2taK+iJKm0tV94PFk1b00EfOhE2eksjb
Z/WQVIAV08OXDqtKhdH0JGGzqKXPbNydOIuR02+4dWbvkEV8yMBFPn/u49xf
WzhI4z3xjGmFnBxoY85XjgOQfnuDOCTVEAWhQ96n83E6YugHIYdBx0sH2cze
nXs+xqqKEgCO155hOqdU6kf8Tpj9TZ4hYEcot0ImA6SOXjt/qUTRs+WzeV0z
sjTBaHGc0IYT6mlIbGTGsB4gzsdIrd5okzs3X81dd95QMmN5uUCljP/osDzZ
gve7Tmsip7e9z9JFYKgEEH7kbaHtCD5HXjaMIrc1uYxdHAOZN76hxAZ37dTW
jMTJWFldkavZFVXoA6jCPLcABUmPelcuqZZugYMbq2pmr8AzbArFgMflIDZd
KyDGKwrrWIr0dUeoqLpEyXA+zux0ok11xWVBIQb+aOD4gTkFUBd1VATP/JX0
8NZiYIz6F+kEdX6qM7jhRuUacPCMcJcpINgIu8sysbU1m8lUY+XBVvAIInxX
ps9FXgAJRubIqioRFp3oO7N1L4xDxjdTBDhpjs/znsNGQl7l7ggutKkpZh4Q
prJkKXpk2bum8E0XgMX1FK03qfhlARPAzyBMQPiturLBSZRDWNrvI7xiw3HY
psiWpqgjSAO4a5TbDNoFl2YVl7pcCwJra50bpapZn6Quy8Di/T2zXEsxmDsq
1+J8vgJbB2vY3MVFgUHJ+j3KoEz/hcb8meCQhGefRCd5ilDseSUyRPzl2kKX
Xaklbq2aRDAO+Km6Ed4F2nEXcforla0iX+a9+YrUllBGfU1ySz+VRTpQZNKr
e56NDv5/oOjdEEGLA6MYd4IktaDxTSp8S6zWqc4MOpuObIa6CC3LYzCkUluC
w3dmNClMDuAmKHtIfjMvkDMKG/LZGu7znwu1t451cBcdM8Y8uil3Ect3PdT2
1PlSbn+G33rv7rpvt46WJtAz/hkt/VtHS7lSvxcvpWO/a7i0qxv/g0RNWTO6
Rcw0vCF/69Cp3/oObJXTiiEQcCutvhs6svWg8WFWbnvCqvyi5ainM18ZaztE
Cefi+D503G1Q5wZeQPky0C38dKPNfiOMnGhvaCgRuzlu5pyOMhI3G7rkoO5B
7rW+eddDUuoxW/JmW4KLpPZ2M4iRjyFvTkJ6XmPauqZ5dOW9oAAb7yVYGQEs
2s+J3FsD/R8idh9k1v6DhvAhyvK3j92/odj9+FvE7kN/0jcK4XdpjR2WHV2x
5/btuay4/J5ipmiGraqyqD4CpYsIwsNh4rMA3lAtQEj/dZQ/Te6M7dq03H67
WKhu+Cg+vli2BNBT1elRQjZVtCHLiNZPSIF4cP3oQFw60MVJMeJiHbhUUpEe
P4JIgI/YgayN0tmzfivPqVC2P7U/KORmHmykjHxvd+dsN0Xp/v6BuW8fjhP3
5SHhD59RCdDn+yGulRDkv/Tqv8PDwgt7CanPKw8ojJ60cfwMsCmYQAQmL/Un
ivjmcQl6DD3o/OMbB52Mz7k3jtMaw6oDV6oNmuTmD1gvrJUTiQ9qaqV+i2+m
WwrKHVv8gH6aXONwpLS4Lu1uPJgbPsdoFKh0dea4u3lXOt7/YO54g2xt0s2z
/upP+EsafaTLaOQZ4jYnIxJvuZOBhf1kvEVyNtt0raDrjK2P9+1r4xAatpUa
nxtuVR/W0mPJfLdfXAotE9VahGeDCWz5ONxuBLKg6n9Crj8HCJpZzW7QqJ69
Y8L7axYYSh5xM9lYI+pS5prrDoRHy2UVgjgzImnWTa4JXA+tKgIDRXnNHlg4
7l2Zgx6gENMWn8PEGcY2j/GBLbJlqjYf+ZIVCzR7hgcNiaqBVhGIBGNjWZa2
KBjPmw50ZQqALRCB721gPW8969su2gJbh3caIopUiHM8Pgw3IfCfBFWYYc2k
eCUTDRITvXwfvu4/OIR17w11vv/06d7Lu75llvtPnwnxKq4jBfyQGFEe06hI
JlhYObdEdAyPxCuGcYveI5RAp9Viuf2l9o5tv08j8Ypk5/H43Zvx+fvTP+D2
MmMNoMQXdAtt903xKvgZJGVQBVBXNqAKNAJX7gPwig/najZj8Y7uEPGKiWcQ
HOeA204F9wh6ulJzYJ51vPnQSlqi5Yd/HtC/VTlzD/xpw/t4DHLL+/TAn/j7
m88fh9g6xz9tHiKYxbZpQr/j/iHBmcT8P4R/D2qU359NxCt/7vFphu91D5K9
6OJV/yDxLxM6ukfur5B9KITfUKyspRLqV/KwHp/IQ0K8G76lHBJ0hCVXt2k5
vdmLV0F1VEyNodpjHTlH43djkgVeRIpXjZ4Vpm3WdvYBCcjXcvgSFzA5fHM2
ZiPsZAi/ZavmksT+2Q9j+IvoEeBrOdx7iW/n/u0J/4jvc3HwBIM97oqjF4tC
ZZGIwFbLV7XUpQWUFN9JhSsadn2g1mrb9wXBj57uX19zBIdxMm2aCbv93RRs
VFJ5L1Qs/XzmeGxGw2idHZZ2g+Xnz/DTyP0Es6nDto1L3WDbSJyjm4wrniR/
ElMGympbHB2xQTsddVFf6pHDvw99UpboOY1XBFYzbDAkPkDgiYOYJI/rqpea
FqErRnHP5PlRXAdOca6aHNJ5I+FWtLb4D+5BwlkYMl7yLAdUnt584TYfiIqv
h1XeIEsSuhWv6cqzFW237SjxZcDLQoPPcQXH1unLQEkm/BYkEISng8CM3WYu
Fr0FUw2QNCnFP1DX4DgYGF6GwPAiKG7tIET70ugQnnbqWw+6Qk9OLqhyYZvm
FfB9RqYKVGOQsARq7pSZMJA4isgjBbeNRfmMOmSSHeEE+W8xUaRRFeELuikX
OGOrYdpoIdJt72HhsnS6+0ognv6EArWKdC9Oeedc8qISod3r0zVB0FPaIncy
Zfxo/NvAd75zwKrdidgIuE9a7ymL1hHq0wsRc1Lwmcbc7uXoRR8A4Xw7h3At
FupIvQy8jqVaY9O1VSvo5MIHI2cb67+2i5APgtigdNetYvP6h35EmDOh8NqD
vL5mHOY0knXKEYd07pAybXdQId6yFWZ7+qVCgAObnOFzBBkh0Y0IQEylzqHE
1CX2BWmfNhkkHW+y6YwhGgGRE7i5OXDqqNl3+YwKOOW8qNpdcpW50GUA6+c5
1B65qAIWT8cekQQ3s+NImDMaicVR43qrRftWqQNhITMxW8PLRIuMxtiwfREV
Oyy3tm73GGd1fzsH0tS2LV4gMXhA687yS18gH2WPtPJLcW5MV86BlsPG8+au
H6Fw67gkeApmIAqSI8He8lmGb7t4ULg6pteeQ5az/BMho6i7WDK+LyyDKVqf
yZQ8Iy8dXR9bTGPBKUGeGkq92IeQAmcMclwpeGV7teIP0S5EbaxT/ghwg2CP
B9Q7w3Ag9gvpMwf2BsZekC4XpnYfiUGtJ0hFfp5OLJNQWg2TE4Pps6uuskgO
zN5g130kA0rSlG06kRXLAvOAA+bjuQCyYJ92GqTldxYjQhdP06GAByYo35O6
uiyaulpEgTxm8JTsDyYGT/SBCWI7IzmOUrYhUIMNWjl6ZSMvMEZti+hE4d0x
HcKkCq5e0y2KMTVUmFBww8y6DPwvou10KSZ7pLvlloARKoV6fHJG/TbXDKco
OqjOVvs1MYJHwKWtN2wkx9QdNAjLRyfs2vBYJ6pgKHRSIvg/hhBCg97STXGx
wtlMlnMN3cbL4VmLnVHfFNNpoYc/6LJcqEruTM6Gb35wnReo9qDr0hqFMS75
YvR09JR6cyyxuuWT/L5rL3nhahs+7Rz1G3wn5Xi3Hzuq0u4cwHAKdJgQxom2
CBGDfNsRXB73GshgK+gRdyeC0GOgnqAZIpTf/g4h/5DM7QiryYpKBjW4fHg0
hMBUVZ8VH23u067Wu0FNARoBeFLieuR3DnKwQzxlJ4MhiqGq1rh8EtqRV3Fy
iUN2FPx8HCSLqSA+9lEX7Q3MQmJCzlEbAL4N5Y/426MD+QNCCFl0fx8pcBKO
3SBy4g8JWlfsHE5+AyXC0qwXC8gCpQPiNrJdb73l0NZFTvKLRw7hjnJucTJy
c9w7gP41XEgzOcOP/66BHjVOf2mdKkxXV1V5vSjXQcTqcPIbtyIhcYzuen4z
+c2uzHXjazSQgrnhwoXtu2kL16Jlw9ZOsROCQwj/4Tdv3nIQB1kDDMxsisvC
R9g3SvGYA2fN47EZCzpOs2CA+8nZ8De/w02E4S08qKMfAM3hnWK0v55/BUDX
HgNs7u04QtT94VMbZaF6wtoA7vaEiPRW37FefRvS9kHSRZ0HHVLO2Wfw4Tdv
3n44pFmNoAfOyeriqJrWI1JzAhytC1cIey+UPP747xEIuxIdEenvAuxCdyzQ
GvpjVEEjMnoZ+YG4xZQp3p+pJerqLvaE8ZiiYhUWs9eQIOzl+ajXIpI7/lq4
PibbeqfHSmRK3YqDUFbzCnfLsCrQ9XmhmRFpjJZSLnRZXwW1e9wYimIiVY84
F22BXQZudo2FdhN9WfDS8JP/6K6yW7rJpHcCb3B7Se/2Yir9Cs+Xj0j18tbE
q37qnfhFPxvv4Wt6zszV/tNn7Kge6iyfD9Xe/ousbW7zFvmg7/xa52OzbHHX
j2Vzlc3VcFmXaweMGeZsuXZN8tjHVz/fT/YjArdwEt3fF0zNAcHAVb+1uixd
UmQn6dS6bmy8OtGZEIUSfC9CsnA6yRXgtTtMAxC9ALnf0fKc3Nh71O35wWGA
ZFm18R773LN0giMn3uw6cdaNS81pa6EqinoQfWPkOPUBzLT1IZLYL2ocs+q1
mmlsP6QhmgkE+DXEbijm+np31JGnCaTtZON0n1fjvL1Yj4TaBseLL3qN5iPg
Xd+b45VMUY/wPejfvX93OJGv5aPgb+dHx5DXf3yCCLviF4khgM47g9ziOTcw
k/+46ub9RmwYNosaHvjxUHqO/5AI3YnADBNUotp7fdDNsXekTwCP3Eica/Oj
+9Bz5kV1C22quw01xnF2EDapE71xqA6Px+g01bFCl1E9bUl9tyWF8j+JIJEd
sogCwuLeKf0MDY/EE6zJUMTBecH7GxCmqcVv+pdYaU5UN7idnyIaB5rlHCPH
brSOmCzMHdYasmPNM57kFULb0GYlBwAqdo6CqxYGGxdFYt22L+BcEGpCbPFc
7GB8z6OWOnF/W9kAeA319KMuv0VLbayjAuWgbHDZFCCci7/qyH+JgCyfiEZb
143IdTO6odhmI8Yj4i32q2J83Y9tcOFYMhWld/yP/p4fTw5/GL87Ojs+I+el
6IERhlXoSddp6ruY/3dmo0EdRv35vosYWBWVWbdZLRaqKf7KH9sUAYskFYgy
Eem4B0J8PpCXZqky/frBowfX4jAKCgdhx4NOAtRNWYRBVVIQR5A2hawlUiLX
IQaRZUIF94lIZJVuCFmbqAKaRpMn3nuCSjR8ewUezDboOLsyqdxpLGHxzzps
Pm6fiVgigAOtwEAN6kwOXONwO212oKaazYRT9unxkDOuCyQR19nLda/pR6E2
sj8h5c6FfaNTv2OBN3wpl/0S36YUR8M2iKqLQwbbMdMt8kJXPJ5Y7S5LCrsU
IVPpoJxpaRnrlhY9wQyFDObY7z19xnrQphtCbEjIACitA35j8/Am4/PdDSny
UpLU142pK8bHaFuVfbTNKIHhhXmvYRK40TcsqQoCEwytwQopIz5rH6BMoOzB
uQE6jcpYz42qJoowLsK7221lBf9t+/fA3CjTeBSVF/SrCTZ2mkX8SbSQ5fZW
tN3aMiE37H8/qfV7aAYAyd4HEpXw/hPcLqCIy1Q2pceO5FHrHd/cIb6wwRai
IM50anSpWLoyqHES4Q8lHHCZusEuOZu+DPVPb3RZIFYh38L+s73sXZ5stXnG
VMwkg/CNuyOBgO1iS2A1mHR8BijKRx3SCca00wMfVQ/zDiBxzDJiIgnQI0C7
ISz5ptA0Yze5qeZgLau2MPu8mBWtAq7ng7lUiBu7bTETqnCVcl8ZzodJOs/R
CV162xZbvlGtIkmwKdOak+KwCR1WwcllZwyq8gccK1uN0RsM/Mhki8GzNhbh
JasPW9ndHsnuVO2rQa8qH8OR2y/Et95GpNzvm/qjbmD3NhjZ3cSbgZB92Rdg
UXpJzO4q+oK/plaNgeXeqL4EfaSj0ZArQkJ2Uy8KGx6C4wUcpyAZPsdPtghI
5i60/53VC2xhvw5e40a6DHWJ3l4YpfYlhmYkd8b8orBwjxc6SNghTI5kodiu
HIeTtzec15bhWI3GNPUot15FbYO54AYz2kugHtsoA4Vyn3zlUR/d0/EFasfJ
Ng/PBydrOvqjgsikaYnuACNu1qhcs/D1UAggOJhrEG/xG+G+ySFbIU5p/32z
enEg+2UITqfn4wp8wGE1Khu5LqzqyxggNSZBu5SuxVzXH6kfnuiBXSkutczp
biFdurID7PPs2nH39V1uzpsoc6h1aoV2r6jqOAmoFbdVD59JWLe0QAtA1f3a
lPuzIAWlDFvDM6nqarj9Qe7LDl9IQJNg8poNiQnZcRZ2K76MR+U7nUzwvlsA
FQA4WmWtfKMryMmqp/JMNwh0KB1tWtINMv8e+rQUbLvh0ih7BzPqzc6tEPN8
+psI6vYNpwAMiGdA/hsKuNjLGRRPBuMULkEL28HHRaBbZ0OJUkElYre3E9gw
JgruPxntpyJmvpQRMXvplDBxIq5h3DqdbhT2YbgVwEASm2HVe++RJj5r/Z12
yyz8e5Agl9RaWUE4dNzYmZTobGAljrXyS7a7ErolQ1/6qBc3XQRG7emdrg3O
7XRy+P74ePLuzeQNZ5Eg+1HgAwevswxbIiEnkarK5pA2iiCgHTt6QDl03Nka
FUzUW60aYEfbqjigPxp65xRGD1s1xC8Z7qUNkEdFUrIIabcRetIrW4LpRHPg
nNq0KFAjb7msbYsaCXE4jg8Tg7OAY2dWWC/mEcF8SyAsm92sPZKAACjoYFm3
PsmfcY4kOW5c9QCcWHBmANh3hmd2m1Md0IrRlMYJHSNUNEYZTqw42gE/+y4p
gE9fQpCFNssUi6JUoVfNQoIFmw06Wme/baegmW5NpANZy8n4bkI2s7nR/+41
bLL6kBQbfVl7x5K6VEVJ/YaCUk4BhHcYwMBNAOltzYSB4R80cazqqcCfqrLA
xszKOvuIcsHL+zA+RtmwZOZF2CqqsrBybKkGe4Hzj/bGthMGEg5VQ+iddFav
mkx3lXRMwR1EGHeIH4EuF4ITajR6nanDbkM8wT2T2zNBlz23y6LSa2KmXpUH
uEmkQa/SGJwTbhO+4tkJ+CNe7j3l4Hh0xrAYfhG1XLQlViasXzGri0vdsH7Z
WQ8Xsb63VS2q7Ltva//jFg9u8BT3h3akP1sVueL22MKnOpow6TJSDJAPUM05
PQiPkE5TivBDMLIukWiYlI4m52+DksKharTyob7gDtdLo65mw2aaPX3+6NlF
Ya6vGXYBzXYX/uK+2EiTTTYvQDTajnDd9oeY0xCnlkU4ld2NWdYFtWEbwq53
nluWKsPHDhzvGPq6p+hxtN28wcgFS4E+Ddc71hMHDk/TgZqsTKRZIyCP9Tz2
V9pLouO7HU2MFgiXtmam3C0uYb8k5aLKlB7Q1rxlg4jZc9Vg0BgMUZV2cTfP
UfUri6nO1lnJLacQ4tfv/gE9FbQdxy+1OI+oJZzVeDi91AskbEWm874yRj5K
IT3p27zPIIvLYj5gHpurfeBWaORGqtCfuDL6VUyQ1PgQDUyZ6JMXND0DwqAR
d7iNHTQK95uWqaXZ9alPtpkiTwLBH+hgCVGHcP8a55mOOEd4tTndt11VXvu0
E7C97xaLGsUuTyWAG0G2xkBb6GmlY4UMPrx3AYN2h3zAc6nt/jSrisbM0Wae
ok4UvgpDUVqfWSlMOG3A5EVfg5eEDJtRLDS6/Btd6SuFPKpDyrxkGwAPvwS0
tzLMc9lFgmp8VmoFKO+MPozpZT0hxjKPuiMgoqO1KlwTCDuCb2sGQcDDyen5
0dujw/H55MPk9ycIA0iEBb9+P34TPkFb/CPhUw7koq6Ktm5cgWteqFlVm7bI
zMGmpZc10FvIoNG1z0YmHoq6rAvibRjUcfVUIQJ/o65gig7ibYlJlQhyZHYp
97KsZ+hTdpPigiwnNYWUf+Z+GX+WOyGEdYaiu2Jkoj/bJrl/hjTXhhSYiqEh
hJTzFWRx15ayXuGXbbSY0/h8jmQeIIfZO4ytIOF2+LlikiVcggJYdIZZNP5S
wTGcEmkvitbiGbypzwIGs/EIoFQQydQNQFwLAlv1dEoNNwrSUmD0GTHFkgUG
rbmYzYeXdblaaMcIR855Zc8a2zCi/QvRcIT9pW7G6N8P+oX6QsUAYrPKncOd
AJ0B+gbUGCN3Dk9+GiBA8aIGlzsztl2KNuhPc7VCMDPi9KgArats3tQV+4QP
5Bh1Ts9akJ9EoDx9btDV9GCKrqYw6XXAOfoKg4D/uGIHs4p6eRaMYJnrv6zI
PdMm5o8LOwGiz4jf4eVAOrJe7zCsyJj0gwiUxTpizdq0egFZcEvdtOshBswo
GcxiKdpOsYjzFJaNyjc1yqCWBTh7KGEyCHzFgR84TyghKbR5RfRHSZpDuLdF
qWcaXWNA6Evo8I1MLsAXR7YGML89ZPvGt9YRkrpR4d78tGQXKQjnuiwxautZ
/YHr0BAh7WG4UUjQ95vVErhO6syWpSJvnVFTMAz7XyJHH38rDOBQpCxzXsSQ
8IG7QwL7J51hAu8gIh7OtWmB3Fmx9Do4DIX7q0psPQUkBVlItBfnzi2LlOJE
cKQrZrqpDGc/QEzNvgNEwkzplWdykXpB2Ue1AVsy9ACjoxPeZ1ruJhQPvCk4
6CQt2OSWnls4UDh/OD8/gaAbRcYaNY2Ud8KmaJvlEKT1cN62SwzFoB5qZ+l3
oI6UFIIBuiLrWLXuKz6OM5RnmSot570AnbCoZgfyR9XM9NBkCpu+9JQde2qg
RPM7UWdeZe85QF1d1c3HKWIdgyBAqQhruZrrckF6m2Ub2ALO2QxGN5cUUP2p
MsjMQQP1vmFgrDWChmE4iBULFlgX/ixreaFKVE1RtSnQjUpoTG6z4NLVinZk
stDNDBrWYHcFiPugXYJ6cKxlSd17dIA1E/aeTFUGkXqIlGt3ReEqhew4cEXY
rg2Wp4XHaVq9pK/a7aIzhQ4QmvVncjleck9w5wc0BKLd6GjAbvk9wG/DGhjI
kKCkWIk3cgfkiEsndyZWZCkGhtLuINbjmXAo0oIZiLHBAEzXfwxqeBgJoCTM
NX/5e1a7uwbXWwsD+uESrBRiICff3BzT5VyalLBxRuWijCqOMf5gg3YJAKeQ
Aw0t/6GeMb43TIWmAQM7BYgf/TAUJ4SkU7uwaW8QG+akkz7kGPzexvUYXGFP
zA4IV1c5NKfT2MbLYR9YXD5XQ5iqGGcnlKpCEF2b4IZngWnhceEuNZbgETQx
CPeysPM0McDDjXzSnX3vgyL5QWDFD+H/ORtxe0AP6hAvBOWGNY4xK9plVAeK
BQLE/C6ASe7LFXSUWRfgbKUaVbWauZvFGrPhZ/EdEJuLU5S1sVY7jmu7/sHS
GDZXfCdPmTF1ZfCiyIf4muKuXW5qLHkNfy6eN/crkvkKr2cYPEIwjFwvlnUL
LNG+7uifyvfQbHCRPdr8fjoMFm6Pj4XYoPyvsHDFTysuxexkDrI7ttELAKfU
VY7OGqt+bKkNCuPn0xI8+ZAYJ4JzNyGgnolQK+LLBVZFp+A0TIxIvIZp1f4e
drIp/VcFhMOoBKb2qowKoqiUiiCw+VnukGp9YTFkXgVd0+KwNFdidkKM8e3d
4X7p8EsUyIUt7sQYd4XNH5r6HohDF2pbsDoxwu3SJmuKC4sqj/6RQRDxREAB
8P9WxV9WWqoFpOAELqGgxWLQ/oQtJQRtcA1RCF6EvUGQ3Y+xAzfPSl/5wWoL
WQ0JfYjmyT9hwZTNMsaiXx+MBt0jh8mN2GeHo0uVNXCNXTJ5oApRHxTDJfHg
OQffQoB2nb/qORlh5j6HewGoqLymWVlfoBSgzRK4I6u8aMPGXxaVFEWutct6
AndJP1wL8SZoSihYooD1VWibqhmZOUHUiTtR1IYipG0taF4ASctWGjYPxKNy
ZXX9HrMimf3aWH9wqGe5KAFgimx4dcRpWjQZCrirtWxUgTedNsSaGXCSsqyv
tEXWpJ/hTKygSPe4cNelNen5QzYiA/MHic0k18MkRNJIBqTiU+CWSjZxgwNe
GSLrdJK1iA0939u7vk5iP4hbYz9E9k1QjszAC0W2KlVTroX3TRC+U3cYTlJI
5TIGJaSY1IKep55kvU3ODlTWOwU1FzY1u+YGqpMJBiXh30H+NgtyXxZrc2ZU
62t/uIKI4TNB9XCU4RM0R0Kc4eKjRAbKSjG++0MS5iqu5hTWHwbv2bLxOD2i
d+JpIKNBfExsN+q1mw1fR1cLRw08aVf8TCMbVLWKSqFsldTAwYSjEmMyDam/
dXeGlHrOHN8yAgEJ1KqE7lBGHp3AmA3BhGzIZf2esobJkuS7LaihEgxELypr
avqiWyUzqLdW1DgOEM6di5ziN46GkgeEPUXBKrM9RdPwLpRT7NIb8AApTZyF
qYh7+ozkuY18Dbqh4xT3BAUKsiq40Z2yjIsomDjwNCrgZf81pcl0kV0KEwwR
YPKw6pBeIxPnRYg3gu27yuKjJtw73IYoz0XcTxZCfr4Pf73GOO4xdp45B+DE
U6odplx8gS/6HpLE8pVBpq/ChjVgz7KRCW8+BAvil9lFjRoPPFCphT4QBzJ4
SIiz1UUb/ujeEthlDKMXvjsrPFFBGap4z2ZY8sdJldU598gIFgwPnDFUiU4/
winmwTJ4BWfpAgockpK0kiVMZ175jYJ4eIdbjdLdUt3myRadR8lL3qnj6E5a
9ltzYTbAk5dYnIsFQmbehRk8wGyMeKZjP3KAiIvr8ed/0KuR6uhSQrxt1Aw9
UZ7hJRb97uFYiLEvOo/svwM5lG/0stEsv8sC+hiqBfuPcE44GxxGyqE8VrMi
4wDDjtn1P7yF+g5XbRv9dAwxprY2c0kdY4BAITDjHuK0d9dXKKMy/ikDhnem
DDT9r2BVj+pmRgePcSLk2PAA5Cy9fwcUDxlrbPvUlX+AyHqMmoolOeAW9+hP
5oEcE+vW5l5Q39ypHxGH6IOxuEulxrEg76GHRx5xgvUGLkAYUVBai9o8A3O2
RVvqXN7rDWfudTJ3ThyaJzti3Bhz1aurxg09EOKL/C1id3yR7+B2fJGntmZb
fhFfhvS/L9H/R/8WX+Qj+UXunGqUTvmu/BJTOrwv9+Cvk8nJ8PwPJ5PhX0Ba
DK01knp+P/k8mympFx5HL3D6WOrBJzdP9mk0FrpsuBlF8vFn/ccp6Jh6+Plw
/3E4AyZw9EuuoOt1/yURSo7QtQvOiaiJznfy0XBv/0CegWGpmtzIMdne38m9
x8P9xwfyLPL7WVGAdAo60LCA2JSnxu+LdqGWtybYNLFuGHgr3d6ebL8vWk+0
b9ASJ3U+RcIJAk6Tc2jufOHyS5uAkrCENpE855INM589Q6MBRRfa+L4mqUSb
TRcjwMCPR/Ode+JHkrclaBxtumuMdKPkLRo+3ruBjH8uISO59gl5Hz69lZCR
6Chd+xBSMX4e9fqBvhHBdvjsTSR7B6KN2Jo7GUyPwrQPSLVAHUGh224j1UIu
ysnk9Hj8bvLu/MPk9PT9qfwijyoEDcla8lughmFaamGK0LubyLVb/T75/fnk
3dnR+3fyC4TM+jQLWpX1Hm+i3luV1MfjpxBNNkmI7vDHZ//24beT08SsY+XM
1idtEitbkUg7I8cQUZskTyJxSH6J0oGDkDv4zHWaXT3nsZKtSr9E+Q18g9CI
SA31IrHQsEtfvMwQ/svWB6dGfcmjpnKo4gXD9QtStKjvLubJJSn+EQ98Pjk+
eX86Pv2DI/lziBI0YJqTQOd0KMqDAXRXNrc36Dx7w71nNzJJfNJu/vH43dHb
ydn5h5PT94eTs7Ojd//24e346EdcYiqHwqYfJL//Yri/f6vvxypJxD3iV+QX
CXz8Xd3qA+aMnFlFhjgwd9tUpCVIwJlGXs64/YyKTTYiNvODviXDi3WrxeH3
70/lquLYIMMWmdGdxMbecO/RQO49T+tAcCAD3JfHBxuXeLG+UbjgTH9UF7r8
mcLFD9QXLvJrhAtNygkXNDduI1VuFCdfnHTYBkMNmlPTqPVGWeDBb77IC9Om
dWSgRmak20d8Ek2n3+Rz68tP00uEG2uxl4eena8gFLeJbyZaEW9bH/DHNqPO
f9tm+JJ0vZsfRBYWdxTc+jgc48LMYBqQ+Jh8BhVNytfc+tzj9Pq5FfPWV+H4
3G0Z3mZH9uDQNvRQ3PoenKpTwocoCVAiOW37w5F3niRHeE6HtqmscBuJ7MGB
Q3bxkOEhvsiLui7Tz77sq+ZbrhQcPAUZt9Dbfnxtk5BHW7+yn74qKDZcxvOW
Ddgf7j99epMkgueePhve+BhLH+KaKAMgCtMRPkF+Csqgu0mRRzDfg7T58fQZ
hbegMulmMyTswfhzZUXYzvFvYorc0eVzU9urjUbx9l5XX09A38q+hMPfeLLQ
lgYcc7F2HiXadJMrw7xLD7zOT/eanQTRSU9HCcDLn0lOKQjNfwSq6gIubqKi
FAjjPzjpDIdDiXn/AvFMR4jxjaXUdWMAM41Eic5fP6jqB9dC/E4z6gZGoSgK
WP3/7V15U1tHtv//fop+ZOoBE4R6XzTGU303m3iNcZLxONRESFegGCQsgbGd
4ru/6u67615JiHiSmWdNTcpIvW/nnN/Z3gHfRCkHPxljiwnYOfp0YYyxBrt7
4PWn82QGnpi01UdT49HR390Dz8eDdyCYTt+BHT272HVnEDwbT86m4M10CnYO
pxZ72s2UZWMXXT+LbDz3Umb+xaWxQbEeX4Xv7IvXs5e7mTfleDI6t0RxmMYj
seqsPPh6JcK+WQJ/H+hBnjTE2lTeYRmiDwk4MlYkZtJ57oLrU5P3uhyDPhur
0Wfst7b2ZHqWjMHhfHqSgJ3Xr/TR4YvukXF73t0DT8zE++/6n/oXfbCTfus9
uZ6MP/Xn1+Do+nP/3TivpQ+PXpvNmF+/68/74EX+S7r2b67Hg7OxaXB8lTfn
FYtvArVaJ99axM9RkgzN6SnPwSpjqxMJ+jMDywDf3MiJc118nJhjM569O5ue
fy7t81lyflkKOR+GT03mkvHE6W5vmleqevEPo6NHRiI+MWr2omVjcpTc5GM2
upX+BLy+ntkoPy/71+fgyafPxo1oDxwNpldX4LFRnUxOEhPf7On1+HQMDo1B
2CRJi/80vTbqyHQNp/Oz8ej6Ygyej+dn42HfJjzet+jpeXLl5tJ0ln60OEDN
qnNoFcnpMS+lRbTB3I13RSlO9p6XfDSel05j94vlIqPJh+R8epn8Ysf2Sytn
+Yt5Trya9rAt6sR+zbXXwhipAixNKXiRWO/nWtjGSV7GLsJ8Mr68TIoodyfT
4acmxakNimtruGyUGQJ3AP5S/tulENzPCEX5l5FRGRsz+moLxfcmjaVzjE16
aau2tW7pj04OA9rIIZdOgQl+A3/NEmDa1bBBmv5qDF/+lusHs4SHe8DhNNYI
fVH54B3nKUNtUwdgx3KuBw9Nc7ue97fiaFQCp/e8hpXoHoCKOmtFGafCaimU
pm5v/rGsh1pWxEJVpUk4Pau7B9Y7xsYNNIhLHgva3HGbmrzv/S1zGrPmDtBc
Cky88l4dgB24v4/Jrtem0DOxkFuVdwcAewuKugNAvBaN2wFg9Z8cGHcAuOfV
Oy6OV8vgqofKM3lH/55KUAcPnQi1b/3nduT+Pqe7e2mRFeLTwUPwFnwLGgM7
H2dtFODHYlcM4byvHPtIW81QiLyhJfL2wUMrcC8pmXVezKwkbKY9usFZcwcH
3Dp4Nh3AX8Ff/lJZ1OLOzosSpStW+t0D7uouQ5F6bi0XsyYfV2suAj5pzcVg
87Zmw1vQc0Lr/omxnmp5K7LlP0jL2j2jnkFmzINc/977WxoC7yq5sEZtJ1aJ
Ovea9KAH4H93XPimbJt6ANr4cwuawx5ANo5rEcgcYLcexf71ANnz7Av2NXn1
1+TVX5NXf01e/SdIXv3/MGfJnzabhLfAjS3jmNKA3JuyTHUtysHDjJX5kzAy
f8/VMGnxFuf8vPiitiKtWPnBcgV5nRZ1RVqxXQuRN5CrgNIqOePRwI65Hbsj
P2aYnMUJHNi9rihNDh62j9d09PelGpKDh5ZRcgXL6hCzj9PpuXfrebk80HQs
3Y+bHsd770NjvfoBy6CAL8Ss59qWg4eZGFb+ySjr0kazRUD7+wjLSikTXaWh
GGG7xWlxa73BQaoJb037WC6y6W6unulmck15bJvOPpNPW+duCzTMfJ2pr7nT
a251RbJt0Odncm2LLPY7icaVRhrU+FkTLXLdHYTr1dL1RienOBl2axcOzhoC
cXazezm8Ythiq3bJL33ulLHnRM6sZJPBnmEh2i3vDAqzlgmdQWaWGcMdALrw
e9WozQA4TUZqBr9pNTg7AGKh2bIJ2QGQXpsx2AFQXpM91wFA0FthZXUAkDDL
fu60yzZmzKUJSWaR7STJA6+XHGRqm7H8PgHklU4qwF5xHAHxlt8CQL1Fngpw
r5FuAOHlPAqQXsFEAOXVKJlZF/ueAIS8/HEBCDe1nNMugIjXwA8BRL02UgsQ
86oMBUDcW8ozmP2o8AoASa96QQFSXvpsAgxX5XY6ANhN0j2NAGOvIKoG68zy
DYb7IHIRHOw5KEU2ez69KqJCpr57r5LUH845YDVoHqpgvsufNnf+d0nWT66K
KcTb/nx+fZGSCRte6CwPomWDx1r4w+Arr4PG+ta8snA1LBibec865fz8FsCP
EEIEMSSQQgY5FFBCBfvwBA7gECZwBH4+LgqjNQp3qlki3P7b+V8BE9w/TWVS
jnycOXW7QHp5pu0ojSLUH9hgl0U0/3TNdq2SPNxH+1Wf/tRFpmknvkkroH1n
gNewtU3V7MHogjrk3PUMne+mlL4LEOi2urp092zRnOx3TbIaSyG6KeXvGpue
Hjjb1lAjjTXRVDPNtdBSK621rwMd6kjH23tpvfwB6QICDAAKwbH5Htp882nI
Nwuk5FrbbkZ0uitw2K7lYQB4C94CJPcMUnAMjkHXho1GmbR/9NKABd29alHU
WDZFBswIjusjaMJz8xFY082O2gMdbP7DGSP02FZfChnkw3L10YoGGtCDWgtZ
A+jYAT/LR3A6uGgbAabHTQ20QArlFWvEsc3ud2t+Kw3uJ13vOHvh0luA01uw
9kPmqh9UPyaReNQD2z9vAxO6CtzM+peXNlZDMgOv4gBIoTCoVTrwPMnAwucb
Z4u2w3bNwkG08HNmJLyDdpddNlNb44XaF/3LHbzr+DJjhNjcNIa72aV099R8
GKyWNlq0+Q7iWWumwxX3Ni0JSUu/ZLd0p4ueJaqWdytk5+9ufLcYAoRNDUM7
SLm4Hq4pvLviNVg5lGIApU6K5r1yLYQX91KaEZTA1W6lBpZZjUlyatXbO7ZC
x2CQdVDzjx0qyWvkQ3U1Oqg62NJjCGTlIJaGQ3dXPJLFbOmS+mu9km6lR6U2
ihkwNwMODjI0uDztbHvadigjEkUNIgEKFmpgVwXbOkH4uBMdgW+BRlg++alS
W4HRaDSs1TaPur1A7nkHB7Zm8PrVndeokRDcc40IbqxUOhpl8vgfsUxN5O6L
nCT+xU5Sib7UKYsp/Ch4dq/Dk9LwnysvxAafnAm4z9ouO4G/+9lDMteOlemq
XS5sDl1w1g/O+hh2X07PPyECmatdJY0N1LGZybnHClf4o4w7AqFhjaLJlTHK
Lbu/2bhYrRLe2Aajvpk4kyFjbmO5q1KwaSNAm0C3NnqSMVBMRfY8Y6Rn9XdZ
Q/sZq4Y3FFhMFB2ryOgY6csILJnIMZiMQLdYBpnjkE2fLng3HtYoXeVDrNxy
0hcS8ZORHEE0GCV9iiiicJiwYT/BGJPt5dt0tn0CIeGoTxRHQvTV4IQiOBpx
NMIQItYftjdwm4lESf/qXy4vuZkdgmZcisqRlBwOEelTThKZ5BLUdWImljaC
GTfFIVJyxGCfjkZ8AJnkaJDV5kQm/bzyNLkoamMmTWWpqMRkew90wWEUReDF
D4dZVsoX0TNwGKbL2AVnNy59edfVVqY2o2o4SAYDeaKkGAgiTihNKByJASds
kMhlK9gFj/vzM4NXDM7Gl2ludGP4mlF402WGHXUBwBz2wNsttE/26ZYRasyY
n1ljiv7sypyoZDYegHy8RQRlU1mQXiqeNX/eAg73lu93dyHAyh54/QL4EXgV
vXyqgyhcduRcCyXUo9C6p7H0llfuZmBuZqI+df9JXO5L69+ZLD30ACy7M82d
rJhQRk0cwFVgY9ez8cqqqAe2TFDRea/bTRGS/cH0opun6zQrvLViT9oGMByf
5nLVkg/sLTsTWQ+58UJn+auSfgxJ64ItR2G3KvxqaxduvNa5dL5GF2fbfTEa
cqZI0h8QnJzQk4QJiYVMOKNwwAYr3i7bBlSD0VAM6RATqgSBjEpCTvCJIpBA
DtXqNo6Xlrhd8mt7zWPvtkzYyH4t0d9KtIxsRHx+J5CgCxbMFuqoG24EAtLi
XwJ2W0Diu4CD1HgPVJmUHJTvAmE72TY0qhkFvRefmEKoxVufofJdIEHxVBcP
VjezeKig8gY7NEDi2fZao2lAgzX0YQBDGMF4O9eRFQ9LrjvpjC+M/XL2sADS
Aw8eVEhKWiO9ytVHI30Ujh7rEv7YVC19AfIJaRGH5p5HOiA48qkfuXsemXse
sACqIA5FSMPyHfax33yH8xGk0zC29YMsE3jx7ByDhw/TP9wdPk6VxmU4jmwI
x/1eaFwdHVqAReAiflSw9s1oXHYJLRy3iHIYOI7+4XAcb+nXyp31u16MAMKW
ejAbAxQtJcRu8ytRNE4bpwd3Gy/lN2BrK+tSVn/Iu7SCW/omrIYWS4tYFhsr
8Gl1FSrzb35cejVCnHXe1G26CnF5b1nT7Je/QNWhkoWhkt3l71J9yEwa8bUY
E+ELY/rZkxjHTGJ4n6fm3piBOddQlQk/3c8CXa+k+PSPpfi5JVid0pPKI5MW
+xIUvqq87JooCwUNffCgRNSqll/dikSQHq2qT3DHrkMyM6NaIHlg8YtldLCX
E8ICGjbo8v1Oj2O0F/nsBsLaK1HW0OcQ6TASBCrsM8kIDjQkse9zTsKIKkYw
JYwQHiPGpE+V73OMBeYax1EYVimrIZl79ZXpFnb3KLXMNpsjdxrWLM/pbsb4
4EGDqFYXRIwE1REGDjuqYWf2c7swIgsgTCod/Xa7WKR43MHk+vy8YVnHpxOb
TD5bTubjkBGmsc9DFpGASRYgKGhMEQ21ihD0QyxZoJQmRCEe6jAiUUikRJhB
KpHQQXEGqPQ59mWkJI0Cs+KS+SEKKEJSSj9iBPnIZ4oyaOAbH0MU8xhLJpSm
9U3ZLTiZpl3qVhNw52xddfFrpUpsNEo9XdrL1q1E7C0ijXVsUsNJyxjKpXIA
0LS1KMA2ibQGqqGMMgZxSClngnPFCWfbe5UerL/9Pa9jaC0+thql2LNtRjjj
RDCBOaOckcoA8mHYYLpJfNTWigwlZoJohXlIBaPK3FMcBlgpJWJBLZ51Nehc
X7dI7GfbgnK0vXwmXbB11W8aQl14PW55etyO5mcAdAFteEJB+a0yUevGHxKb
c2U2HiYFobf7DfcaMZwFpuBDMhlOZ51SmF17WNcUkwIYhiGLETMPIOdQitCn
MfOh1pgHOKM7K8YwOO/P59Uh4LWHEPoUxwIqEsqAMV9rGTDMWRwYTiWm0XpD
WCmzNezAWlRr8yti6F0bxWoayQLdkkEskA4k1zFBfoTMKyk0ZJoipGVANKJx
qHwhNIEhpJwoQSWiXFEuoyBqxGQXqdfSBbXWql2AaM9YsdUrLZCU0n2YOI+g
5vO5BxBbo27TuTJV65ey+vQ3EcS06TSyKegC1XhA7nU5F5bQYqMAN8Gf09lp
d8XJkkP78vU7CvNhx7x9HfP4dQgeDuzrNxJ0/6q/VWulgczX5jRKrgZndmBN
27CwCe4g2Nwy5mItrH9t9W/Lf2a4YPqVsWxyEZ2mI2e87FjOYZ1ZbQAh6J8e
hFilIVyUD7w/sy2QbukX2X4rcshdxHamAEQ0Kg+P1IVVjSFmUhCJmcQ0k1pX
s/GVRkrXazl7zyTVIZaUEo0gwlzDmDNJoeN129q8Dw/c1qYONueIW9ukkDAZ
Uk0hSiEJwqSkZo0lkpT6zfwile1zrzJ2DK5i0ig2PBikTDLa1qbkyI6RwVU8
CcQMVpmGtjYXmQkz9+JELSOwreu5BuGFETKrHUMMY6iYpMzOrrVNxIQkPpeC
CiqgIETjGMecCckRDwXkAWc44rHAXOCYSE6JJJgwIkj7HiEcEkUw4ZzikFAi
CCPUfkfc9hBCMKecEEyU/Z/gnAhCcVRp02wdYjCGBMZl1Ibtg6PUo2olbMM2
tBKo+W3VURdWeVUrhX9P7KWBGrENqdEaZKRue1p6etnukglbYrJolmqICfrj
iEnpwPD9NDrvyuPC73NcMke3+mHhi2vnin4JmC5zWOkaS80e2BqO5+86o+vz
863Cyr1wruqaSJ7dVcGW61bSPD+DJ3c7g3VGpXQGiTuDfOHnqu6heR3/1OxM
0NIvsgqidL+Knrmqlje+ijuq1C+nXAnCfRxyLhgPeGC0HZV9NjFtW9cRWVXL
yi3PHH+iquOPdWR5ltu9/PaNZdoz95Pbla4+xoir7ueTNVuY09RySKbutxfz
084wGaXBwEoNlJLoOseKqtOPC+UwTwbGPHOGgPFgs1YyqaYyDd+YyvCj60kW
b7KAVkFQSeT5JPnUSw+1DdfoR48On4OXrw5/NL58T6I39lvv2eGjx/o00s/8
Z4/8T+8fHT2jSp9Gj4Ig/fdN9Nh/BG/6N4e+/v77U335zze//jP44dHTZwz+
6Ade8Oubo6t/fAvVr48uJp++ezm7DJ++/tw9G//jxdkr/TzQ+ig6n0b92en1
+/fqu7MfP44T8Xx68eH9+6fy1dUH7+W3J+Orn34anA0/6Nnr+ejJu6t58Cb6
ePPk+dXs+eN/jNULnzz/9maif7iaf754hckzevVk/JObVvQ8XJyUOxhm/W0G
BKPPHLo0lCfn44Fd3DSLcZa70Sae/5RmXs02rWn9fvCfHgal5Yvf3UQ3bx4/
mf7z8POvMNDfvzlM/x3q7wfh96c6Ovuu7z96T5++f//h6M2PgzeT68/972b8
/bgbnXgnn7sXdPbj+eTwHyc3T6B4/Ony6Ym+8J8Ngl9P+p9fIfrh9enw82j+
3U389OQZeze8+vzi6dH0/PTgoLQCtWG5BTCkJb0YBvaq3Atgc9XagzgFP7w6
zIIvtua6S6/R9WzceIPMs9tGlRYu5ZdXRjUpeLpgLZ1OCfrILZKagbC6HUPV
gKmMVvlE+Qz70BdURFooJmWAFIwZF34c4EBSInwttSCxiLSSBEkcCRVDRGXI
lL+dQgQZdLNMq1IMvl2Z0qhEUVaJUrHVLoNFS7QmrdqSBi2JT5gfG8lDcB3E
HBEUU85RJLgWMVKKsjhWWGrqi1AoJjCTJJJMBFyxMA6pFJgVrHyAfIkZiWIe
Sci0iqJIYY4DrX2ONFRhzFUQ+KFSPMaUID/ADLHIZyqO00VNlSPZ4hbie00H
UZLrm1QfpZ+XaTuMF0qjgqML2nUaFShu2zIYTr9QxX+3M4VB5ev76Am2r/oF
UJrh/cel3T3rz4yLSzu0b+7E3QDDLvhDAPxyt/8+zL7c6xow/R0fpFqlLwqi
LyoV18PLS5isuQJ3gMbLxVeg4TkOWzxopftas6VjpavXfNkWL9pal6zplm0b
qpq+RNnACiQew16dHt3lMpX3YAXgXkXU76TYWQm/3+41jL8ZaS/vaRu4flza
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

-->

</rfc>

