<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.11 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-privacypass-auth-scheme-06" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.10 -->
  <front>
    <title abbrev="Privacy Pass Authentication">The Privacy Pass HTTP Authentication Scheme</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-auth-scheme-06"/>
    <author initials="T." surname="Pauly" fullname="Tommy Pauly">
      <organization>Apple Inc.</organization>
      <address>
        <postal>
          <street>One Apple Park Way</street>
          <city>Cupertino, California 95014</city>
          <country>United States of America</country>
        </postal>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author initials="S." surname="Valdez" fullname="Steven Valdez">
      <organization>Google LLC</organization>
      <address>
        <email>svaldez@chromium.org</email>
      </address>
    </author>
    <author initials="C. A." surname="Wood" fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2022" month="November" day="28"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document defines an HTTP authentication scheme that can be used by clients
to redeem Privacy Pass tokens with an origin. It can also be used by origins to
challenge clients to present an acceptable Privacy Pass token.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Privacy Pass tokens are unlinkable authenticators that can be used to
anonymously authorize a client (see <xref target="ARCHITECTURE"/>).
Tokens are generated by token issuers, on the basis of authentication,
attestation, or some previous action such as solving a CAPTCHA. A client
possessing such a token is able to prove that it was able to get a token
issued, without allowing the relying party redeeming the client's token
(the origin) to link it with the issuance flow.</t>
      <t>Different types of authenticators, using different token issuance protocols, can
be used as Privacy Pass tokens.</t>
      <t>This document defines a common HTTP authentication scheme (<xref section="11" sectionFormat="comma" target="RFC9110"/>),
PrivateToken, that allows clients to redeem various kinds of Privacy Pass
tokens.</t>
      <t>Clients and relying parties interact using this scheme to perform the token challenge
and token redemption flow. Clients use a token issuance protocol to actually fetch
tokens to redeem.</t>
      <figure anchor="fig-overview">
        <name>Token Architectural Components</name>
        <artwork><![CDATA[
 Client                             Relying Party (Origin)

    <------------------------------ Challenge \
                                              |
+----------------------------------\          |
|                                  |          |
|  Issuance Protocol               |          |
|                                  |          |
+----------------------------------/          |
                                              |
     Redemption -------------------------- >  /
]]></artwork>
      </figure>
      <t>In addition to working with different token issuance protocols, this scheme
supports optionally associating tokens with origin-chosen contexts and
specific origin names. Relying parties that request and redeem tokens can choose
a specific kind of token, as appropriate for its use case. These options allow
for different deployment models to prevent double-spending, and allow for both
interactive (online challenges) and non-interactive (pre-fetched) tokens.</t>
      <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.</t>
        <!-- TODO: Remove duplicates that occur in Architecture doc -->

<t>Unless otherwise specified, this document encodes protocol messages in TLS
notation from <xref target="TLS13"/>, Section 3.</t>
        <t>This document uses the terms "Client", "Origin", "Issuer", "Issuance Protocol",
and "Token" as defined in <xref target="ARCHITECTURE"/>. It additionally
uses the following terms in more specific ways:</t>
        <ul spacing="normal">
          <li>Issuer key: Keying material that can be used with an issuance protocol
to create a signed token.</li>
          <li>Token challenge: A requirement for tokens sent from an origin to a client, using
the "WWW-Authenticate" HTTP header field. This challenge is bound to a specific token
issuer and issuance protocol, and may be additionally bound to a specific context or origin name.</li>
          <li>Token redemption: An action by which a client presents a token to an origin,
using the "Authorization" HTTP header field.</li>
        </ul>
      </section>
    </section>
    <section anchor="challenge-redemption">
      <name>HTTP Authentication Scheme</name>
      <t>Token redemption is performed using HTTP Authentication (<xref section="11" sectionFormat="comma" target="RFC9110"/>), with
the scheme "PrivateToken". Origins challenge clients to present a token
from a specific issuer (<xref target="challenge"/>). Once a client has received a token
from that issuer, or already has a valid token available, it presents the
token to the origin (<xref target="redemption"/>).</t>
      <section anchor="challenge">
        <name>Token Challenge</name>
        <t>Origins send a token challenge to clients in an "WWW-Authenticate" header field with
the "PrivateToken" scheme. This challenge includes a TokenChallenge message,
along with information about what keys to use when requesting a token from
the issuer.</t>
        <t>Origins that support this authentication scheme need to handle the following
tasks:</t>
        <ol spacing="normal" type="1"><li>Select which issuer to use, and configure the issuer name and token-key to
include in WWW-Authenticate challenges.</li>
          <li>Determine a redemption context construction to include in the TokenChallenge, as
discussed in <xref target="context-construction"/>.</li>
          <li>Select the origin information to include in the TokenChallenge. This can
be empty to allow fully cross-origin tokens, a single origin name that
matches the origin itself, or a list of origin names containing the origin itself.</li>
        </ol>
        <t>The TokenChallenge message has the following structure:</t>
        <artwork><![CDATA[
struct {
    uint16_t token_type;
    opaque issuer_name<1..2^16-1>;
    opaque redemption_context<0..32>;
    opaque origin_info<0..2^16-1>;
} TokenChallenge;
]]></artwork>
        <t>The structure fields are defined as follows:</t>
        <ul spacing="normal">
          <li>"token_type" is a 2-octet integer, in network byte order. This type indicates
the issuance protocol used to generate the token. Values are registered
in an IANA registry, <xref target="token-types"/>. Challenges with unsupported token_type
values MUST be ignored.</li>
          <li>"issuer_name" is a string containing the name of the issuer. This is a
hostname that is used to identify the issuer that is allowed to issue
tokens that can be redeemed by this origin. The string is prefixed with a
2-octet integer indicating the length, in network byte order.</li>
          <li>"redemption_context" is an optional field. If present, it allows the origin
to require that clients fetch tokens bound to a specific context, as opposed
to reusing tokens that were fetched for other contexts. See <xref target="context-construction"/>
for example contexts that might be useful in practice. When present, this value
is a 32-byte context generated by the origin. Valid lengths for this field are
either 0 or 32 bytes. The field is prefixed with a single octet indicating the
length. Challenges with redemption_context values of invalid lengths MUST be
ignored.</li>
          <li>"origin_info" is an optional string containing one or more origin names, which
allows a token to be scoped to a specific set of origins. The string is prefixed
with a 2-octet integer indicating the length, in network byte order. If empty, any
non-origin-specific token can be redeemed. If the string contains multiple
origin names, they are delimited with commas "," without any whitespace. If this
field is not empty, the Origin MUST include its own name as one of the names in
the list.</li>
        </ul>
        <t>When used in an authentication challenge, the "PrivateToken" scheme uses the
following attributes:</t>
        <ul spacing="normal">
          <li>"challenge", which contains a base64url-encoded <xref target="RFC4648"/> TokenChallenge
 value. Since the length of the challenge is not fixed, the base64url value MUST
 include padding. As an Authentication Parameter (<tt>auth-param</tt> from <xref section="11.2" sectionFormat="comma" target="RFC9110"/>),
 the value can be either a token or a quoted-string, and might be required to be a
 quoted-string if the base64url string includes "=" characters. This challenge value
 MUST be unique for every 401 HTTP response to prevent replay attacks. This attribute
 is required for all challenges.</li>
          <li>"token-key", which contains a base64url encoding of the public key for
use with the issuance protocol indicated by the challenge. Since the length of
the key is not fixed, the base64url value MUST include padding. As an
Authentication Parameter (<tt>auth-param</tt> from <xref section="11.2" sectionFormat="comma" target="RFC9110"/>), the value can be
either a token or a quoted-string, and might be required to be a
quoted-string if the base64url string includes "=" characters. This attribute
MAY be omitted in deployments where clients are able to retrieve the issuer key
using an out-of-band mechanism.</li>
          <li>"max-age", an optional attribute that consists of the number of seconds for which
the challenge will be accepted by the origin.</li>
        </ul>
        <t>Clients can ignore the challenge if the token-key is invalid or otherwise untrusted.</t>
        <t>The header field MAY also include the standard "realm" attribute, if desired. Issuance protocols
MAY require other attributes.</t>
        <t>As an example, the WWW-Authenticate header field could look like this:</t>
        <artwork><![CDATA[
WWW-Authenticate: PrivateToken challenge="abc...", token-key="123..."
]]></artwork>
        <t>Upon receipt of this challenge, a client uses the message and keys in the
issuance protocol indicated by the token_type. If the TokenChallenge has a
token_type the client does not recognize or support, it MUST NOT parse or
respond to the challenge. If the TokenChallenge contains a non-empty
origin_info field, the client MUST validate that the name of the origin
that issued the authentication challenge is included in the list of origin
names; if validation fails, the client MUST NOT process or respond to the
challenge. Clients MAY have further restrictions and requirements around
validating when a challenge is considered acceptable or valid. For example,
clients can choose to ignore challenges that list origin names for which
current connection is not authoritative (according to the TLS certificate).</t>
        <t>Caching and pre-fetching of tokens is discussed in <xref target="caching"/>.</t>
        <t>Note that it is possible for the WWW-Authenticate header field to include multiple
challenges. This allows the origin to indicate support for different token
types, issuers, or to include multiple redemption contexts. For example,
the WWW-Authenticate header field could look like this:</t>
        <artwork><![CDATA[
WWW-Authenticate: PrivateToken challenge="abc...", token-key="123...",
PrivateToken challenge="def...", token-key="234..."
]]></artwork>
        <t>Origins should only include challenges for different types of issuance protocols with
functionally equivalent properties. For instance, both issuance protocols in <xref target="ISSUANCE"/>
have the same functional properties, albeit with different mechanisms for verifying the
resulting tokens during redemption. Since clients are free to choose which challenge they want
to consume when presented with options, mixing multiple challenges with different functional
properties for one use case is nonsensical.</t>
        <section anchor="context-construction">
          <name>Redemption Context Construction</name>
          <t>The TokenChallenge redemption context allows the origin to determine the context
in which a given token can be redeemed. This value can be a unique per-request
nonce, constructed from 32 freshly generated random bytes. It can also represent
state or properties of the client session. Some example properties and methods
for constructing the corresponding context are below. This list is not exhaustive.</t>
          <ul spacing="normal">
            <li>Context bound to a given time window: Construct redemption context as
SHA256(current time window).</li>
            <li>Context bound to a client location: Construct redemption context as
SHA256(client IP address prefix).</li>
            <li>Context bound to a given time window and location: Construct redemption
context as SHA256(current time window, client IP address prefix).</li>
          </ul>
          <t>An empty redemption context is not bound to any property of the client session.
Preventing double spending on tokens requires the origin to keep state associated
with the redemption context. The size of this state varies based on the size of the
redemption context. For example, double spend state for unique, per-request redemption
contexts does only needs to exist within the scope of the request connection or session.
In contrast, double spend state for empty redemption contexts must be stored and shared
across all requests until token-key expiration or rotation.</t>
          <t>Origins that share redemption contexts, i.e., by using the same redemption context,
choosing the same issuer, and providing the same origin_info field in the TokenChallenge,
must necessarily share state required to enforce double spend prevention. Origins
should consider the operational complexity of this shared state before choosing
to share redemption contexts. Failure to successfully synchronize this state and use
it for double spend prevention can allow Clients to redeem tokens to one Origin that
were issued after an interaction with another Origin that shares the context.</t>
        </section>
        <section anchor="caching">
          <name>Token Caching</name>
          <t>Clients can generate multiple tokens from a single TokenChallenge, and cache
them for future use. This improves privacy by separating the time of token
issuance from the time of token redemption, and also allows clients to avoid
any overhead of receiving new tokens via the issuance protocol.</t>
          <t>Cached tokens can only be redeemed when they match all of the fields in the
TokenChallenge: token_type, issuer_name, redemption_context, and origin_info.
Clients ought to store cached tokens based on all of these fields, to
avoid trying to redeem a token that does not match. Note that each token
has a unique client nonce, which is sent in token redemption (<xref target="redemption"/>).</t>
          <t>If a client fetches a batch of multiple tokens for future use that are bound
to a specific redemption context (the redemption_context in the TokenChallenge
was not empty), clients SHOULD discard these tokens upon flushing state such as
HTTP cookies <xref target="COOKIES"/>, or changing networks.
Using these tokens in a context that otherwise would not be linkable to the
original context could allow the origin to recognize a client.</t>
        </section>
      </section>
      <section anchor="redemption">
        <name>Token Redemption</name>
        <t>The output of the issuance protocol is a token that corresponds to the origin's
challenge (see <xref target="challenge"/>). A token is a structure that begins with a two-octet
field that indicates a token type, which MUST match the token_type in the TokenChallenge
structure.</t>
        <artwork><![CDATA[
struct {
    uint16_t token_type;
    uint8_t nonce[32];
    uint8_t challenge_digest[32];
    uint8_t token_key_id[Nid];
    uint8_t authenticator[Nk];
} Token;
]]></artwork>
        <t>The structure fields are defined as follows:</t>
        <ul spacing="normal">
          <li>"token_type" is a 2-octet integer, in network byte order. This value must
match the value in the challenge (<xref target="challenge"/>).</li>
          <li>"nonce" is a 32-octet message containing a client-generated random
nonce.</li>
          <li>"challenge_digest" is a 32-octet message containing the hash of the
original TokenChallenge, SHA256(TokenChallenge).</li>
          <li>"token_key_id" is an Nid-octet identifier for the the token authentication
key. The value of this field is defined by the token_type and corresponding
issuance protocol.</li>
          <li>"authenticator" is a Nk-octet authenticator that covers the preceding fields in
the token. The value of this field is defined by the token_type and corresponding
issuance protocol.</li>
        </ul>
        <t>The authenticator value in the Token structure is computed over the token_type,
nonce, challenge_digest, and token_key_id fields.</t>
        <t>When used for client authorization, the "PrivateToken" authentication
scheme defines one parameter, "token", which contains the base64url-encoded
Token struct. Since the length of the Token struct is not fixed, the base64url
value MUST include padding. As an Authentication Parameter (<tt>auth-param</tt> from
<xref section="11.2" sectionFormat="comma" target="RFC9110"/>), the value can be either a token or a quoted-string, and might be
required to be a quoted-string if the base64url string includes "=" characters.
All unknown or unsupported parameters to "PrivateToken" authentication credentials
MUST be ignored.</t>
        <t>Clients present this Token structure to origins in a new HTTP request using
the Authorization header field as follows:</t>
        <artwork><![CDATA[
Authorization: PrivateToken token="abc..."
]]></artwork>
        <t>For token types that support public verifiability, origins verify the token
authenticator using the public key of the issuer, and validate that the signed
message matches the concatenation of the client nonce and the hash of a
valid TokenChallenge. For context-bound tokens, origins store or reconstruct the
contexts of previous TokenChallenge structures in order to validate the token.
A TokenChallenge MAY be bound to a specific HTTP session with client, but
origins can also accept tokens for valid challenges in new sessions.
Origins SHOULD implement some form of double-spend prevention that prevents
a token with the same nonce from being redeemed twice. This prevents clients
from "replaying" tokens for previous challenges. For context-bound tokens,
this double-spend prevention can require no state or minimal state, since
the context can be used to verify token uniqueness.</t>
        <t>If a client is unable to fetch a token, it MUST react to the challenge as
if it could not produce a valid Authorization response.</t>
      </section>
    </section>
    <section anchor="user-interaction">
      <name>User Interaction</name>
      <t>When used in contexts like websites, origins that challenge clients for
tokens need to consider how to optimize their interaction model to ensure a
good user experience.</t>
      <t>Tokens challenges can be performed without explicit user involvement, depending
on the issuance protocol. If tokens are scoped to a specific origin,
there is no need for per-challenge user interaction. Note that the issuance
protocol may separately involve user interaction if the client needs to be newly
validated.</t>
      <t>If a client cannot use cached tokens to respond to a challenge (either because
it has run out of cached tokens or the associated context is unique), the token
issuance process can add user-perceivable latency. Origins need not block useful
work on token authentication. Instead, token authentication can be used in similar
ways to CAPTCHA validation today, but without the need for user interaction. If issuance
is taking a long time, a website could show an indicator that it is waiting,
or fall back to another method of user validation.</t>
      <t>An origin MUST NOT use more than one redemption context value for a given token type
and issuer per client request. If an origin issues a large number of challenges with
unique contexts, such as more than once for each request, this can indicate that the
origin is either not functioning correctly or is trying to attack or overload the client
or issuance server. In such cases, a client MUST ignore redundant token challenges for
the same request and SHOULD alert the user if possible.</t>
      <t>Origins MAY include multiple challenges, where each challenge refers to a different issuer
or a different token type, to allow clients to choose a preferred issuer or type.</t>
      <t>An origin MUST NOT assume that token challenges will always yield a valid token.
Clients might experience issues running the issuance protocol, e.g., because the attester
or issuer is unavailable, or clients might simply not support the requested token type.
Origins SHOULD account for such operational or interoperability failures by offering
clients an alternative type of challenge such as CAPTCHA for accessing a resource.</t>
      <t>To mitigate the risk of deployments becoming dependent on tokens, clients and servers SHOULD grease
their behavior unless explicitly configured not to. In particular, clients SHOULD
ignore token challenges with some non-zero probability. Likewise, origins SHOULD
randomly choose to not challenge clients for tokens with some non-zero probability.
Moreover, origins SHOULD include random token types, from the Reserved list of "greased"
types (defined in <xref target="token-types"/>), with some non-zero probability.</t>
    </section>
    <section anchor="sec-considerations">
      <name>Security Considerations</name>
      <t>The security properties of token challenges vary depending on whether the challenge
contains a redemption context or not, as well as whether the challenge is per-origin
or not. For example, cross-origin tokens with empty contexts can be replayed from one
party by another, as shown below.</t>
      <figure anchor="fig-replay">
        <name>Token Architectural Components</name>
        <artwork><![CDATA[
 Client          Attacker                  Origin

                       <----------- Challenge \
                                              |
   <--------- Challenge                       |
                                              |
   Redemption ---->                           |
                                              |
                       Redemption ----------> /
]]></artwork>
      </figure>
      <t>Token challenges that include non-empty origin_info bind tokens to one or more specific
origins. As described in <xref target="challenge"/>, clients only accept such challenges from
origin names listed in the origin_info string. Even if multiple origins are listed, a
token can only be redeemed for an origin if the challenge has an exact match for
the origin_info. For example, if "a.example.com" issues a challenge with an origin_info
string of "a.example.com,b.example.com", a client could redeem a token fetched for this
challenge if and only if "b.example.com" also included an origin_info string of
"a.example.com,b.example.com". On the other hand, if "b.example.com" had an origin_info
string of "b.example.com" or "b.example.com,a.example.com" or
"a.example.com,b.example.com,c.example.com", the string would not match and the client
would need to use a different token.</t>
      <t>Context-bound token challenges require clients to obtain matching tokens when challenged,
rather than presenting a token that was obtained from a different context in the past. This
can make it more likely that issuance and redemption events will occur at approximately the
same time. For example, if a client is challenged for a token with a unique context at
time T1 and then subsequently obtains a token at time T2, a colluding issuer and origin can
link this to the same client if T2 is unique to the client. This linkability is less
feasible as the number of issuance events at time T2 increases. Depending on the "max-age"
token challenge attribute, clients MAY try to augment the time between getting challenged
then redeeming a token so as to make this sort of linkability more difficult. For more
discussion on correlation risks between token issuance and redemption, see
<xref target="I-D.ietf-privacypass-architecture"/>.</t>
      <t>As discussed in <xref target="challenge"/>, clients SHOULD discard any context-bound tokens upon flushing
cookies or changing networks, to prevent an origin using the redemption context state as
a cookie to recognize clients.</t>
      <t>Applications SHOULD constrain tokens to a single origin unless the use case can
accommodate such replay attacks. Replays are also possible if the client redeems a
token sent as part of 0-RTT data. If successful token redemption produces side
effects, origins SHOULD implement an anti-replay mechanism to mitigate the harm of
such replays. See <xref section="8" sectionFormat="comma" target="RFC8446"/> and <xref section="9.2" sectionFormat="comma" target="RFC9001"/> for details
about anti-replay mechanisms, as well as <xref section="3" sectionFormat="comma" target="RFC8470"/> for discussion about
safety considerations for 0-RTT HTTP data.</t>
      <t>All random values in the challenge and token MUST be generated using a cryptographically
secure source of randomness.</t>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <section anchor="authentication-scheme">
        <name>Authentication Scheme</name>
        <t>This document registers the "PrivateToken" authentication scheme in the "Hypertext
Transfer Protocol (HTTP) Authentication Scheme Registry" defined in <xref section="16.4" sectionFormat="comma" target="RFC9110"/>.</t>
        <t>Authentication Scheme Name: PrivateToken</t>
        <t>Pointer to specification text: <xref target="challenge-redemption"/> of this document</t>
      </section>
      <section anchor="token-types">
        <name>Token Type Registry</name>
        <t>IANA is requested to create a new "Privacy Pass Token Type" registry in a new "Privacy Pass
Parameters" page to list identifiers for issuance protocols defined for use with the Privacy
Pass token authentication scheme. These identifiers are two-byte values, so the maximum
possible value is 0xFFFF = 65535.</t>
        <t>Template:</t>
        <ul spacing="normal">
          <li>Value: The two-byte identifier for the algorithm</li>
          <li>Name: Name of the issuance protocol</li>
          <li>Publicly Verifiable: A Y/N value indicating if the output tokens are publicly verifiable</li>
          <li>Public Metadata: A Y/N value indicating if the output tokens can contain public metadata.</li>
          <li>Private Metadata: A Y/N value indicating if the output tokens can contain private metadata.</li>
          <li>Nk: The length in bytes of an output authenticator</li>
          <li>Nid: The length of the token key identifier</li>
          <li>Reference: Where this algorithm is defined</li>
        </ul>
        <t>New entries in this registry are subject to the Specification Required registration policy
(<xref section="4.6" sectionFormat="comma" target="RFC8126"/>). Designated experts need to ensure that the token type
is sufficiently clearly defined to be used for both token issuance and redemption,
and meets the common security and privacy requirements for issuance protocols defined
in <xref section="3.2" sectionFormat="of" target="ARCHITECTURE"/>.</t>
        <t>This registry also will also allow provisional registrations to allow for experimentation
with protocols being developed. Designated experts review, approve, and revoke provisional
registrations.</t>
        <t>Values 0xFF00-0xFFFF are reserved for private use, to enable proprietary uses and
limited experimentation.</t>
        <t>This document defines several Reserved values, which can be used by clients and servers
to send "greased" values in token challenges and responses to ensure that implementations
remain able to handle unknown token types gracefully (this technique is inspired by
<xref target="RFC8701"/>). Implemenations SHOULD select reserved values at random when including
them in greased messages. Servers can include these in TokenChallenge structures, either
as the only challenge when no real token type is desired, or as one challenge in a list
of challenges that include real values. Clients can include these in Token structures
when they are not able to present a real token response. The contents of the Token
structure SHOULD be filled with random bytes when using greased values.</t>
        <t>The initial contents for this registry are defined in the table below.</t>
        <table anchor="aeadid-values">
          <name>Token Types</name>
          <thead>
            <tr>
              <th align="left">Value</th>
              <th align="left">Name</th>
              <th align="left">Publicly Verifiable</th>
              <th align="left">Public Metadata</th>
              <th align="left">Private Metadata</th>
              <th align="left">Nk</th>
              <th align="left">Nid</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">0x0000</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x02AA</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x1132</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x2E96</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x3CD3</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x4473</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x5A63</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x6D32</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x7F3F</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x8D07</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0x916B</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xA6A4</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xBEAB</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xC3F3</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xDA42</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xE944</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xF057</td>
              <td align="left">RESERVED</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
            <tr>
              <td align="left">0xFF00-0xFFFF</td>
              <td align="left">Private Use</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">N/A</td>
              <td align="left">This document</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes. </t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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>
        <reference anchor="TLS13">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes.  It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="ARCHITECTURE">
          <front>
            <title>The Privacy Pass Architecture</title>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>LIP</organization>
            </author>
            <author fullname="Jana Iyengar" initials="J." surname="Iyengar">
              <organization>Fastly</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="17" month="October" year="2022"/>
            <abstract>
              <t>   This document specifies the Privacy Pass architecture and
   requirements for its constituent protocols used for constructing
   anonymous-credential authentication mechanisms.  It provides
   recommendations on how the architecture should be deployed to ensure
   the privacy of clients and the security of all participating
   entities.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-architecture-08"/>
        </reference>
        <reference anchor="COOKIES">
          <front>
            <title>Cookies: HTTP State Management Mechanism</title>
            <author fullname="Steven Bingler" initials="S." surname="Bingler">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Mike West" initials="M." surname="West">
              <organization>Google LLC</organization>
            </author>
            <author fullname="John Wilander" initials="J." surname="Wilander">
              <organization>Apple, Inc</organization>
            </author>
            <date day="7" month="November" year="2022"/>
            <abstract>
              <t>   This document defines the HTTP Cookie and Set-Cookie header fields.
   These header fields can be used by HTTP servers to store state
   (called cookies) at HTTP user agents, letting the servers maintain a
   stateful session over the mostly stateless HTTP protocol.  Although
   cookies have many historical infelicities that degrade their security
   and privacy, the Cookie and Set-Cookie header fields are widely used
   on the Internet.  This document obsoletes RFC 6265.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-11"/>
        </reference>
        <reference anchor="I-D.ietf-privacypass-architecture">
          <front>
            <title>The Privacy Pass Architecture</title>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>LIP</organization>
            </author>
            <author fullname="Jana Iyengar" initials="J." surname="Iyengar">
              <organization>Fastly</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="17" month="October" year="2022"/>
            <abstract>
              <t>   This document specifies the Privacy Pass architecture and
   requirements for its constituent protocols used for constructing
   anonymous-credential authentication mechanisms.  It provides
   recommendations on how the architecture should be deployed to ensure
   the privacy of clients and the security of all participating
   entities.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-architecture-08"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9001">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="RFC8470">
          <front>
            <title>Using Early Data in HTTP</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="W. Tarreau" initials="W." surname="Tarreau">
              <organization/>
            </author>
            <date month="September" year="2018"/>
            <abstract>
              <t>Using TLS early data creates an exposure to the possibility of a replay attack.  This document defines mechanisms that allow clients to communicate with servers about HTTP requests that are sent in early data.  Techniques are described that use these mechanisms to mitigate the risk of replay.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8470"/>
          <seriesInfo name="DOI" value="10.17487/RFC8470"/>
        </reference>
        <reference anchor="RFC8701">
          <front>
            <title>Applying Generate Random Extensions And Sustain Extensibility (GREASE) to TLS Extensibility</title>
            <author fullname="D. Benjamin" initials="D." surname="Benjamin">
              <organization/>
            </author>
            <date month="January" year="2020"/>
            <abstract>
              <t>This document describes GREASE (Generate Random Extensions And Sustain Extensibility), a mechanism to prevent extensibility failures in the TLS ecosystem. It reserves a set of TLS protocol values that may be advertised to ensure peers correctly handle unknown values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8701"/>
          <seriesInfo name="DOI" value="10.17487/RFC8701"/>
        </reference>
        <reference anchor="ISSUANCE">
          <front>
            <title>Privacy Pass Issuance Protocol</title>
            <author fullname="Sofia Celi" initials="S." surname="Celi">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Alex Davidson" initials="A." surname="Davidson">
              <organization>Brave Software</organization>
            </author>
            <author fullname="Armando Faz-Hernandez" initials="A." surname="Faz-Hernandez">
              <organization>Cloudflare</organization>
            </author>
            <author fullname="Steven Valdez" initials="S." surname="Valdez">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
              <organization>Cloudflare</organization>
            </author>
            <date day="6" month="July" year="2022"/>
            <abstract>
              <t>   This document specifies two variants of the the two-message issuance
   protocol for Privacy Pass tokens: one that produces tokens that are
   privately verifiable, and another that produces tokens that are
   publicly verifiable.  The privately verifiable issuance protocol
   optionally supports public metadata during the issuance flow.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-protocol-06"/>
        </reference>
      </references>
    </references>
    <section anchor="test-vectors">
      <name>Test Vectors</name>
      <t>This section includes test vectors for the challenge and redemption functionalities
described in <xref target="challenge"/> and <xref target="redemption"/>. Each test vector lists the following values:</t>
      <ul spacing="normal">
        <li>token_type: The type of token issuance protocol, a value from <xref target="token-types"/>. For these test vectors,
token_type is 0x0002, corresponding to the issuance protocol in <xref target="ISSUANCE"/>.</li>
        <li>issuer_name: The name of the issuer in the TokenChallenge structure, represented as a hexadecimal string.</li>
        <li>redemption_context: The redemption context in the TokenChallenge structure, represented as a hexadecimal string.</li>
        <li>origin_info: The origin info in the TokenChallenge structure, represented as a hexadecimal string.</li>
        <li>nonce: The nonce in the Token structure, represented as a hexadecimal string.</li>
        <li>token_key: The public token-key, encoded based on the corresponding token type, represented as a hexadecimal string.</li>
        <li>token_authenticator_input: The values in the Token structure used to compute the Token authenticator value, represented as a hexadecimal string.</li>
        <li>token_authenticator: The output Token authenticator which verifies under token_key, represented as a hexadecimal string.</li>
      </ul>
      <t>Test vectors are provided for each of the following TokenChallenge configurations:</t>
      <ul spacing="normal">
        <li>TokenChallenge with a single origin and non-empty redemption context</li>
        <li>TokenChallenge with a single origin and empty redemption context</li>
        <li>TokenChallenge with an empty origin and redemption context</li>
        <li>TokenChallenge with an empty origin and redemption context</li>
        <li>TokenChallenge with an empty origin and non-empty redemption context</li>
        <li>TokenChallenge with a multiple origins and non-empty redemption context</li>
      </ul>
      <t>These test vectors are below.</t>
      <artwork><![CDATA[
token_type: 2
issuer_name: 6973737565722e6578616d706c65
redemption_context:
40ff3cdc296a1e823f43b49355df1a2ee4c5f65e5d38ebb3e24ecf4d874997c6
origin_info: 6f726967696e2e6578616d706c65
nonce: 4437fb872eab95b5831a5d01005ee2995e417862ecfd2079ee4c246859a060ae
token_key: 30820252303d06092a864886f70d01010a3030a00d300b060960864801650
3040202a11a301806092a864886f70d010108300b0609608648016503040202a20302013
00382020f003082020a0282020100d730ce8b3ec7336b48a4f5897564d87c87627298f21
ba4bf34e7931142875c0e52c5aef3222d67e86124403e436d0136ebd806de37730427f81
4f7f0485eace93015471d14e56f3824e8bc5fbe44cf67e241c7642ac3a39452a283ff806
84ddbd66929a371d01e50feef1faee7f63f3ceb4b5ceacb939e06a558c2a6bccfd96fb74
16d3edce151bc7b0a6582f0ce99a7c0e7d5793b13d41292105e510e1aa00e082975a1386
6dfaf3a0a51c0dd1ecb64cc55cc607ca1813b5f91fd8e9cb9db18ffd81ac985a6cfdd5cc
2a0b8a5e4e9fa1ea5f149c1662155bb071c95218cae9ae4af613351baf470b1597bb984c
5ea8326f98aff64f72b60bcd035f6b970eb6edd2f9f2180d5aa8a17ed400056af3faa520
4b73c89b4eada6a057dd3dda9d8e18b3a6d2347c1027e2711f21eb7d96fef50cc3dacb2f
5ccc36e4c138ab75953974ade74982f85b91f419654d390378e2ea5aae33f1b4acf534d0
6de2f114acfdd88d6d708f4d2b646a8112b0fe181489916e2ba5c634cdf9b95762d1e120
169482dd27f959132705079fc4a00eee1f353a81c1e810ade20d070d839277169e09150c
08605afe7cea2aec41d2f85c2af7bef5d577343b4385e2c6c159926c1c8267d00433b88b
ad314a5ddcef58936126f1dd8da7b5728da192f54b304e60f4088e5b0620404f82a5939d
975e6714453a533c172c8a9b4b5da976ea60a5aa91fef0203010001
token_authenticator_input: 00024437fb872eab95b5831a5d01005ee2995e417862e
cfd2079ee4c246859a060ae055038620bd58190f057b86af2883352fd9ec612487979b00
74a489aece337e79f9293b4d62e4b4759af064df8fa5759c79ab51a00f692541b26d466d
ab48091
token_authenticator: 9c2fc25cb429a7cfe6e21193b6122ffe18c2c09c1df10dfea3d
155c297ce3f4132d273bf2ad490c41e592219bb253378c21215657905fe713aca31f6ab7
1206c1c872210c71d53a8d9b3ee635cf22c47d518454f9f5a898218ed7aae78414e9d85f
4a62244babdb63accc1257f1f1824493549465a3c63d69e9e307a328121402022a4f1aea
a7e6ff46edf4884b5ab47531b8c949a225a9f5a9c1b7608af0641c2070533402683e6f86
d547b6083d6cfa2a985f4673bf46ae09864d31613acd5a7d61dae7a29133e37093baabe1
20e59714d662162324406403c1fb44312b03c509202041a44dc351ea3659d446ea024e96
23b522171d9af0c8ac81f8a6a0018cb049bda21d12c9783ae6f7057144f8d26699d20f19
023269256ff607ca1ab37b0d95704aa0299e64b3b823c148ff8c46e835c7060dbb3c247e
6034892b3f6b7401fb67366e8afe8267182d6f36bf3618712371e6ae4654c0897f7475d3
9e9c186189162e29a9d8b3e37860457843a1c2fa3cacc133bdb8c7f77aae0ea3a5649300
35a7689f3a24ea726d4506d19f0b1aedb8739cb3fe7177cfaed08c8902162ed530ef19a0
266ca61a1a0b1bfc329fd2d1c1ad307a32f531f5be6faf75d96a49020acca8e37a4cb55f
f4072916711c397daf5bcbd229132b47d10b16f646d1d675cdf58c6f057333b1cbb94b2d
c44320cd2e9cba6f1c33a708ae1bb97f0739a

token_type: 2
issuer_name: 6973737565722e6578616d706c65
redemption_context:
origin_info: 6f726967696e2e6578616d706c65
nonce: 4437fb872eab95b5831a5d01005ee2995e417862ecfd2079ee4c246859a060ae
token_key: 30820252303d06092a864886f70d01010a3030a00d300b060960864801650
3040202a11a301806092a864886f70d010108300b0609608648016503040202a20302013
00382020f003082020a0282020100d730ce8b3ec7336b48a4f5897564d87c87627298f21
ba4bf34e7931142875c0e52c5aef3222d67e86124403e436d0136ebd806de37730427f81
4f7f0485eace93015471d14e56f3824e8bc5fbe44cf67e241c7642ac3a39452a283ff806
84ddbd66929a371d01e50feef1faee7f63f3ceb4b5ceacb939e06a558c2a6bccfd96fb74
16d3edce151bc7b0a6582f0ce99a7c0e7d5793b13d41292105e510e1aa00e082975a1386
6dfaf3a0a51c0dd1ecb64cc55cc607ca1813b5f91fd8e9cb9db18ffd81ac985a6cfdd5cc
2a0b8a5e4e9fa1ea5f149c1662155bb071c95218cae9ae4af613351baf470b1597bb984c
5ea8326f98aff64f72b60bcd035f6b970eb6edd2f9f2180d5aa8a17ed400056af3faa520
4b73c89b4eada6a057dd3dda9d8e18b3a6d2347c1027e2711f21eb7d96fef50cc3dacb2f
5ccc36e4c138ab75953974ade74982f85b91f419654d390378e2ea5aae33f1b4acf534d0
6de2f114acfdd88d6d708f4d2b646a8112b0fe181489916e2ba5c634cdf9b95762d1e120
169482dd27f959132705079fc4a00eee1f353a81c1e810ade20d070d839277169e09150c
08605afe7cea2aec41d2f85c2af7bef5d577343b4385e2c6c159926c1c8267d00433b88b
ad314a5ddcef58936126f1dd8da7b5728da192f54b304e60f4088e5b0620404f82a5939d
975e6714453a533c172c8a9b4b5da976ea60a5aa91fef0203010001
token_authenticator_input: 00024437fb872eab95b5831a5d01005ee2995e417862e
cfd2079ee4c246859a060ae11e15c91a7c2ad02abd66645802373db1d823bea80f08d452
541fb2b62b5898b9f9293b4d62e4b4759af064df8fa5759c79ab51a00f692541b26d466d
ab48091
token_authenticator: 4be4655a33566de7409e7cfdcdb764c251c04138602a046a7d7
1540aa9bcdb34e7df5dfabe17e16a3569f67c36460a79e9e7278b454c4f505580ae99750
b9308022b20aa8807ee054881126d9a4afd134331d0ebb3f9a4f2948731cd0ad2fe468b1
f8c6fcf2d5b9a2991a684b3fb0dec6a3e32fd3335e546f58c2217736683d378076355727
0493eb0f607c7936633a0532d1828dc860f0bf3954c82f0e1ab6089eae92d9d97e3237f2
58c5c82e711bef1682deb6edd19b24bb543f4418825e5d41e126de82f1a4b63321f07c12
3029a7499356fa8bdc11982451c69fa3d1940a4781b646c99e33e83b95810dc1e7a32a25
953ba0a0e37917c9f85bb4f0e7687c826e7138c9a2e71e87644b36c3891b4fec6af02519
aafaa36d559c71d090ea081ceed6cb738ffb730fa5dcbe889362591eb0a89f8ba4057f09
3ca35cc684f3b4cdc7c177f275a9d74a75e98eb395689842a5626d61af84072c9eb858ea
ed7e467b570c771e6530e02dda20b47f6860bb341ca4f849168dc7b6cb8c6743b8113c3e
f09ce9b9b2eaf172204cc26ea7c3de962cc1a851195cf143c9f27cb8f1df219df1209097
5ba657de1d021f2044829a689decf1072e5f79fbef0d3ae6085532f81b32b2a47968b073
2928193894dabb521c3f4c4a6858d43c8abd4695db4e49d3b5d46059032819d8485b0ccb
c3d24c5c72ac3e44d9ff94946cb8f8ca69fb1

token_type: 2
issuer_name: 6973737565722e6578616d706c65
redemption_context:
origin_info:
nonce: 4437fb872eab95b5831a5d01005ee2995e417862ecfd2079ee4c246859a060ae
token_key: 30820252303d06092a864886f70d01010a3030a00d300b060960864801650
3040202a11a301806092a864886f70d010108300b0609608648016503040202a20302013
00382020f003082020a0282020100d730ce8b3ec7336b48a4f5897564d87c87627298f21
ba4bf34e7931142875c0e52c5aef3222d67e86124403e436d0136ebd806de37730427f81
4f7f0485eace93015471d14e56f3824e8bc5fbe44cf67e241c7642ac3a39452a283ff806
84ddbd66929a371d01e50feef1faee7f63f3ceb4b5ceacb939e06a558c2a6bccfd96fb74
16d3edce151bc7b0a6582f0ce99a7c0e7d5793b13d41292105e510e1aa00e082975a1386
6dfaf3a0a51c0dd1ecb64cc55cc607ca1813b5f91fd8e9cb9db18ffd81ac985a6cfdd5cc
2a0b8a5e4e9fa1ea5f149c1662155bb071c95218cae9ae4af613351baf470b1597bb984c
5ea8326f98aff64f72b60bcd035f6b970eb6edd2f9f2180d5aa8a17ed400056af3faa520
4b73c89b4eada6a057dd3dda9d8e18b3a6d2347c1027e2711f21eb7d96fef50cc3dacb2f
5ccc36e4c138ab75953974ade74982f85b91f419654d390378e2ea5aae33f1b4acf534d0
6de2f114acfdd88d6d708f4d2b646a8112b0fe181489916e2ba5c634cdf9b95762d1e120
169482dd27f959132705079fc4a00eee1f353a81c1e810ade20d070d839277169e09150c
08605afe7cea2aec41d2f85c2af7bef5d577343b4385e2c6c159926c1c8267d00433b88b
ad314a5ddcef58936126f1dd8da7b5728da192f54b304e60f4088e5b0620404f82a5939d
975e6714453a533c172c8a9b4b5da976ea60a5aa91fef0203010001
token_authenticator_input: 00024437fb872eab95b5831a5d01005ee2995e417862e
cfd2079ee4c246859a060aeb741ec1b6fd05f1e95f8982906aec1612896d9ca97d53eef9
4ad3c9fe023f7a49f9293b4d62e4b4759af064df8fa5759c79ab51a00f692541b26d466d
ab48091
token_authenticator: 31c2ae70c45f171ed822a9397ba844d6ee20d09323491f4f9fb
3db54d7d3c7b403fd8ee1e2eedebd693d2493b3b1973142cd85f54257c009edda7cd5ad5
3cf8a07d8a3252c62da14d688d225727faa294b5ed57bd0913482c845b502fd967c27b92
d7c4ee7566894134fc71999e55073bf9d19f95b10f0d2044bef815dccfa7632903af7fd2
09af17c008c93fe76e6c4dffd90de933d711366ee72adc32d1289205a306de9b15bb6639
9b2e89c7cb129eadf062be9c4fd54b1ffea79840d0451544f30cc4eab6c36a06ad6dac87
741059803aa57006ce5aea4e71e053f4901f9901dd1f9fa489763f1c499fdf8ec1903a31
79259c79f7a496eefbe937f5b6d69f17f2b96b184cfab98dc0e46b2b0f5fb57764f894bf
2025d5f26505d70d3fa8766406d246bc037d588f035ea7230969323cb237da949a87db95
854f09ba24363a608d0a56427fac57907204aa8c57dc29633a36a83cff385f1eefcfffc9
730eda756d80109a20394c21b40ddc3e0121bd08e4a1eae48daa3a3c7a78f682ee208a78
686960c270e0ffd0042f38e9f786276ef01f7bda5ee323692c8de4f590014c4f4ea1f583
bf3db5cee7ba39d612c73535ef488c796ea33d2f9049a3b34cbc7db3d58208a11ceaf1b0
ab7853b817f53a3ff470bd3e353ca9d4365de09b6a70d94ee4e9118a0901013026360e99
64b2d6c51d47d4307328cedff3561d65a5583

token_type: 2
issuer_name: 6973737565722e6578616d706c65
redemption_context:
40ff3cdc296a1e823f43b49355df1a2ee4c5f65e5d38ebb3e24ecf4d874997c6
origin_info:
6f726967696e2e6578616d706c652c6f726967696e322e6578616d706c65
nonce: 4437fb872eab95b5831a5d01005ee2995e417862ecfd2079ee4c246859a060ae
token_key: 30820252303d06092a864886f70d01010a3030a00d300b060960864801650
3040202a11a301806092a864886f70d010108300b0609608648016503040202a20302013
00382020f003082020a0282020100d730ce8b3ec7336b48a4f5897564d87c87627298f21
ba4bf34e7931142875c0e52c5aef3222d67e86124403e436d0136ebd806de37730427f81
4f7f0485eace93015471d14e56f3824e8bc5fbe44cf67e241c7642ac3a39452a283ff806
84ddbd66929a371d01e50feef1faee7f63f3ceb4b5ceacb939e06a558c2a6bccfd96fb74
16d3edce151bc7b0a6582f0ce99a7c0e7d5793b13d41292105e510e1aa00e082975a1386
6dfaf3a0a51c0dd1ecb64cc55cc607ca1813b5f91fd8e9cb9db18ffd81ac985a6cfdd5cc
2a0b8a5e4e9fa1ea5f149c1662155bb071c95218cae9ae4af613351baf470b1597bb984c
5ea8326f98aff64f72b60bcd035f6b970eb6edd2f9f2180d5aa8a17ed400056af3faa520
4b73c89b4eada6a057dd3dda9d8e18b3a6d2347c1027e2711f21eb7d96fef50cc3dacb2f
5ccc36e4c138ab75953974ade74982f85b91f419654d390378e2ea5aae33f1b4acf534d0
6de2f114acfdd88d6d708f4d2b646a8112b0fe181489916e2ba5c634cdf9b95762d1e120
169482dd27f959132705079fc4a00eee1f353a81c1e810ade20d070d839277169e09150c
08605afe7cea2aec41d2f85c2af7bef5d577343b4385e2c6c159926c1c8267d00433b88b
ad314a5ddcef58936126f1dd8da7b5728da192f54b304e60f4088e5b0620404f82a5939d
975e6714453a533c172c8a9b4b5da976ea60a5aa91fef0203010001
token_authenticator_input: 00024437fb872eab95b5831a5d01005ee2995e417862e
cfd2079ee4c246859a060ae175a86e01410befaee0307ec86990b8a6e1b8192dfca7f0a9
692e06813ec9d199f9293b4d62e4b4759af064df8fa5759c79ab51a00f692541b26d466d
ab48091
token_authenticator: 6b25498e0c809b8c83ec22f6d46a98cd866354ad56b7aa78ef3
fc237ebe9b7fc5ea3346257ddf085166931653d94016e37896df38a767c438d4b2ca440c
47ae62f5e9074f9a72b06bdf103b4f205b20075d07465750a06e463106bb1ff0f9393f00
1ac5377b9ba7edc28b88aeab4e0d4ca9bd101af13967a4d681be02f8f3308224c0115ef8
7ed890e04441486db438538a3a8a82050377d5882001689216c82bb74513ecab47eebaa4
17f030ee887a83f0cc805becc5dd417a3c1c79f828d28068872b0102e8b2fd21743d4aea
4d4bbe8193b496d4167c312c1bea39c5c337701b33f07706daf2e07d8e0ad178878604b3
adcd766ea93e70a70a0b7d1447d20a6af222d8a785db417f462639e89aa57fd664c1c93d
b0b75dc2189345ab83aa823a7b1eb7c3f965fca97780e46d019044dc9583fc3a4e13705c
7c97594c4e983c975f2ac6e5a3a3fe46bc811e9bb46e8f1d2997152d19eff15e2e238f7b
541413f05141d31154e4a59c4b552192ef1d39b0399c5a9b935d4133f4d4e2b3737e7f45
8f92a90719cf5620b05884a74a16db6dbc48b7e819543290cef76d0e761dff156a6800a7
4430a79cba2cc46178ab72b169222fb082f9e05874ccaf0734e2b24315fb2c429c0b1b42
dc6513d76b891b7ce1c9c819303a050c9251aaa8ea2bb61a3bbbfc770ccad6a53dfd29d9
a65f81e91de499d752b29a43294f0cdaf361a
]]></artwork>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1923Ycx5Xle3xFNvTQUk8BzvuFtuxGg9SIqyWKQ0LW6uXu
UUdGRgI5rKqsrqwCiKbpb5lvmS+bfU5EZEZWFShpLDfngfQyCVRlxuVc97lE
6Pz8XOy63VI/Ca5vdfBy291J9RC8lMMQfH19/TK43O9u9XrXKbnr+nXwWt3q
lRayrrf67sn8+fmjounVWq4wcLOV7e6807v2fGOe3+Dxc4nHzwce7zzMBd7S
N/324Ukw7Bohus32SbDb7oddHIZVGIs3+uG+3zZPgufrnd6u9e78KY0rxLCT
6+ZHuezXmOtBD2LTPQn+tOvVIhj67W6r2wE/Pazoh38Tgqbtt09EcC4C/OnW
A7Z+gR3slw/8iVn0db9aPXif9tubJ8HlZrPUWIC64M8GDK53T4Lv1tp+9VJu
3wQ/SPOK6nbYzdV+o7e7bt0vgiu57Np+u+5kUGVhlJqn+v16R9v+ft3tdBO8
3oEQQ9C3weVKb0FMfkqvZLcEQTa0oH+UNNmF6lezXby+CP4ol43+T28br3f6
Tq/9z3kj/73vb7Dcb7658kcf7vixf1S3237V7VcXeHY2w9VFcHkR/ND3jTfF
1e22G3b95lZvZ9/yRFfLft+0S7nV/kRK3v/jrZabbn1Td7vhAtwU4vz8PJA1
aCoVfru+7YYAIrRfQaSCRrfdGlSRayOVci6VRoqC3a3cYex1UOtgP4CW9UOg
lh0eHMSuD7a60Xo1l9ld/0avh+C+293S4P22u+nWF8FzM45cDr0/mPma3hLq
Vi6Xen2j3Qz4MNhs9UDLpVeV0pudrJf6xIQXZrerrmmWWojPSKa3fbNXvJt3
n3Xer++FOLViUDTYr5fd+g3P4RGk3w7HlMCK5bpfP6z6/bB8CIwSdP+JF+36
g88HrYN37/5w+erq6+fXz66uv3/17Mvn508vjhV3q24hqmq33+r377+4ENfT
km70Wm/lzpCLlxp0w7DXW+ggtoZFBrUcOpbvORMXQu4g+DvzC0gN7QVPQdK7
DosGQQ2r9wqcGvDl8g7ig/VfXb68vvoakndptyI2/TDoYaCvzePjSgImFnOq
v7MC0+2Cezl9c6N37gXBS28WLB79Hp8vl/09DUv72OrlA/28kdvdgxUu951Z
yN9bbonP6TMjPF/QHMQ2npfEjr6jieRa6aDFBJCOp13b6i2xZfew0YfU6oma
e95fMz04EpsHwgZhAvslnoQcCCcH2OgJabp4VN9gnlar/oNa9/m7d3/36qur
KorCRfBaGzZFESRjYSR3p1lAFobcTMPB1xqrl3dyy4x+060b3rG/UDEu9Mq+
CKM/Y0GH5XbkGiAoljg72pOzDeC53sL6rpjghlqjEgsazXxGq1lteBPMjMBN
CPp5knRAZhofE+8x3kPQ6p26tSueNoi1/+UvfxF2vOBDf17Zfb1k0fr8OyM5
gk3o784/+Afm2BmmfxUfnOToz5/Ff/vw2PTnX/3n//wzBj14/rmj3EtHuQ8/
/4vG/xnr/43//E8PP5vKPP9qEpAPsOH3QfAb5ve7J8FnbXdzDnuzvev0fcBw
68sz1ongcrKlchlc9asNYAyk7Qxm/zm8SNN0PBOkCOjnDQkFG42fo/ee+Ith
v9kADEGveOUsplCrXnXQZVIVzw8aQ3WubvuBdKSHUr01CieGjVZd2yn7DCOA
4WKUV6eHrOhb/R972HOrqKzidhZyTBgdwwsZjEOS3pPa74yxIJO8wW7geWBB
AmguLKbRQiUHfUF4FT+b/QzGrAh6aiJNozfL/oEN2qpv9NL56Dv+st/D4p9j
+nWDtS94nTwKz1X3u1vh7EkHX/F5T95WTzZj+IJfgVc9nz2HCc7ZAujmi8m+
fvZZcK23cBD9sr95IHurA0Ba4iqs3dm337++PluYf4MX3/HPr579j++fv3r2
lH5+/fXlN9+MPwj7xOuvv/v+m6fTT9ObV999++2zF0/Ny/g0mH0kzr69/Jcz
s+Wz715eP//uxeU3ZzCfRmZGN0AefccIiHeIne3Yh4hGD2rb1fgF7/zT1cv/
87+jNDB+II6i6v17+0sZFSl+ub9ljhJ/1xA88yvM8IMAi7Xc0iigKhi76XaS
ZJc8/G1/vw6AKjXIJ373d1Cq6++efvcE0rYi593sN0tyRU7eeqX2PJKnU5r2
AjX9vRDfr5fABAHYqrf3HSTHCh759/mu9VpBWobJtkPGB3nD/iW4/ua1WPcG
pQQtcDLtFB9GyZe03zTN37+f3GBy5Fkhv4PxQJAGMN54A+KSsfL003NGTO6n
mbUE75hpbD3OiEzGVTMj3r3zwdv794xjnQkhlRfj7G0/QhleB95e9Vs9aeO9
fBieAKYGZjEkq0+Cf9as5isQHVq5PIaZDkcfmSPC32qrSZOh8t3NWjcTFA6u
594YgRZbj26rmWakj9Z0MLxmso9onV2vxRMWFgna4tkPP/xw7sWk+sygGAQe
DTYEzi8bsiLgzgTm8UuNgKwxg47U8ODgluX4aINGvFfygWjh0/zkeNaoEsr1
LKlHiwmFgBhrB35r0p2OEa1F7TbiGEZkQvM4yiyEw0GgxqWF/Cy5p0hBccjj
IT+ikpFK59Pq4KYOF0w0tFALTDYrODXuB3AjyxEz0aK3Mx9Inl0E39lA7MNR
mGWbEZeJ+JaNmH98ncIYhPHKi4duoVtbrTRsejMfykQNPAjHKXIJwW4e+A0J
GLvsHJaUdwh3KbBYENofeYWNiZFbU2hAK/IoS5EVuw1+coJ1HiNAfUcJjDwu
0yMLqZ2lDNnY9Smt8KVgovyc5JYRx/qyVst9w5ECPzgt0xpN2Ktl71BLtyap
MOyXNUVU90RL2BZmHPl28g0OOpj4zmyJKC9cqKS3F9POmR0W3xhLfjpOWWu2
OWDTuqFQz7eCYieHN2TvoguI4hLCaBXNyopZnNFx6C7wHPmWaTmsvsEYRJyT
Z0fIbalDpD8ku4cjLnjap3rH+IBE0FMmZynw77Db2gwBluMNTcuYE3/BProb
1H4YnGuwA537A8FF+Fv2RNHn1E/N5oTChJm08Ac2QwZL7ckGqi1C8vPRXpMp
X7AjWFMayjOBzE2BicGzYbag3aCXrdE3xM/AlYCKPgplSslu7Qze7L0LA7hO
iygr7twpGgqBx09M0GZ+D95xBLAHGIryHy30/pEi9N+ajNdGQm6tSPxIq/pd
dHER/88oP49+P3tkYvCPli+/Cy8uknj+lNnCj8QL+noc6P3BRn7La+Qdjgs3
6mySMg4iYJtmi8azn03rP+PcSBCf92qnd4z2bsi6EXH1jiIP+J4drQiWwvKb
3sMDjcFgo27Ow2KbfBrzQlPwzcnKvTYr3OobsBRQrxHGTD2/fHFpP90+LCC+
Rq84G0LAZty7jVn2a2sBHK7gbYk7MwWjakKxN2uAnIb97JnHJrt9zEXMPxAk
FkuKSybjYwhA7wgESbtRcOkjt+OuIVVvH3wr4Z5h1bCP0TdjrsDDUyZksok0
ms7lJi2baXnkabdg7tsReokDFjoGuc0QzXa3jzGW6XIsm4Y86zF2dNjpeet8
Gvs3m9mZlM8kXRnH2a1ZV8ThkYN0H8BHHAf04CtoagazgMYj170mYTfxFiNF
Rvhj2ErGTT9q/jhg1G/lipL3Y6TL4666m9udBbYwYkSxDcd4CgbvB/JS496Z
PSxqguUoic+ZqM52z5OiI3lYA4AVDE8GA3NpKOOJKWeuO95MSGYviZlVg5EA
88yxAIw21UqBz31hZjrWnmOWB1ZzIPfd+m62TKtMYqZMnqk6kpZjterXRAMT
cfg2fGG8rrCS5GHamqBgv9GHgjJozxEMjymHsLT5q5SDxJ2dG8GAB0Fxv82U
zMOEQwXmF3fTuiwdhmC1X+46CJ6Yk4DiYmu2l92Ka0K8fMrEQh3OFmdTPnrN
AQGEYiNJLHmibhCjcCBSdWumFRjIZDg4unRKCt1b70vqth6tnfGrpMdEHJhi
8Jolf29RBdU55lhLTRDkURA5xsBicrhyB+LUe+zEuKZxnDMrExPZJFUQdJ7u
t8tzE6o3NtuQ5mn5/tA5CiPKsAMdeaaJz26Xs+CPCMYis3C1CjOTGYQpJ0bS
bSjOW99cBJcs8AfxzUu5Bf12FGn8O9c6N/TBv49JgxOxz0XMWXOe2kxoZcna
AacQDIL+Y99DNs6NVNnw09ksa3UbqzpSzJ8OuvZge+5zB+fPvjwjwpDB09vh
CPYbYzf61f26I7zCxvRObx+CNIxMzAcTuYHF1X7mbas3S8TJYLlUb9zYowAI
YsO4/pbjq+UcLTvoQjD7g/JhUjlsccyGN/t6SalGaBhGFhxwHNVgRvDiwM1o
t9UEeU9IE6sJDf3z5OgRMRK/lhgdSZH4q6Xo1xCiidHfXv4LDdvDxu2MPZkS
tgMFgtsprCd76Cp0W40R9N0s/gLZbbKDPM9+d9635zVvRmMF625YGblZybfn
kq2K76HGNVmYAomFtRtGO7hf1ZgDvw0a3zXGVRtXNbcg9x1klUjF1d8jhz9V
r4gjxoEe2qB2gsjnVpicB3bghtOX1DWwB2ZubGwzi+KJtFy8djJm/A8IIrcN
QTy5XJ1N217QtOAYMftiKtGMtQRmlUNyBl9NBhvzG/tncZQRvKN4d7Y+1e/x
97Lv38CvvNHstWyodfiibTKxPmSi1JdnslYXFxdg5UisL8+iOKHPTED0PUyP
yeFsdoaXvhFbTLmeMS3qIkKSHM5KmIBX/AzbMEUdo8M/CDc5PySm57xKcdD0
2hgNLLe/WVNlnirgJqZhdO0qA1RkobrHVhjb2rgkkmecTs/vWUgCL4wLhAfc
DG8W/rJ4UhY+6ZTjMCRyUH9MijX88WO4wMgzC2Xj0gnzcF4w7PgtiaSdmVPt
sjM1rfnamCDbXnFqfxvMSSI8kjjFI0m+lTAe7X7LgoxXIMnKVpG4VjVmnsnu
UHQi3EIokUUASM43xAajofDV7/vAevi9i+CrKcpYCOWZAFMF4zjQGIPJzxlq
G9L4aY7J9Kj9lstcmH1tbb/1PLa9g6oUVJHCmgBhTeBkBOOb14GirqSWZZgS
jVdS3Rrz2QRjBct5ThNuURnjIKdkXuI00ot+NzVUEPbuh6EjMpiw5qcsgpdk
GnGx5/St7ziMMM1rRhPHHOC8CGgSt5w4WHi9KNtTM55IvA0H3Pv4tm3eVeG/
1Oj26KU4SSeDOCaLb3mNXIxzNPAk74CArgPluMZsssXtfq3GagcpD6Te1CZ6
bn3TloaYeUfvL7i4emo4Fqrnr19/f/ni6hmic1ZUdl1kcKZ5vKFhxZe1dr00
06pHv2+2A1TatQ8uDobOE8enTEKzZ+Qysd8BPB9/tFttEupGaS3snFLtFLfd
y/WOa12wCPuVTWfbRIEL5GzJegGg9ZbLaU761EFYPu1m2rqYtm6yHWs91sSN
+gNtwxopueTywWd+v8KVDe6v/GTyu89O5kZOZkxPJKZP6mQzJrPZYJtHKbXn
ylc33Z1ePxYvX4/5FPeddCEGtn5uqwMUgZMwjaumcIFAcRITq4ZbSOOUednC
sOE7m0Hx+/sQjhj+UCcpR/ueeI1BovE53FbG0kG9aS5x5D1uICesbzNwbmki
qesM67fWSblcABMR4lVrbjfizbPZd/H721sJoAeCMYR1PPTSZpaYHckbrGF/
/2Ti8EmWDSIIXn99GWf5586JeG/DHZycxtJg2Ruf/ksmMW8+f0mV0S35apOZ
eWymow0xXT88sQi8qT+wu0XwgdWIy7UtYJzYkeXHtM71g2P9wyNyAlPNMS+3
6nHDSeAaTrgd0lgfizgOleiN1pvAyKRr1XGpLNN/eLhCm/5i8GjRrnmdWusw
PEVqjWvDnB4je3g8lO/1Zmu3Y5J0G6Vc+Frpc2RMqDK6ZW9DRTiu9em3JOK0
GQsCOb3nyOgG86ANwWFH1edmnVs57B5d22NspLzbwOHtsOsZsdFriFJBW8l1
Kk442BUMFGd1Sy8e02833Va6JW1tK8hRPfLWlDWOZgcGudAXC4oapuI8u7fj
h4EVydXMnnJ1Z4PT+ruumX19BOcfKRAKJgJoSwHPtgNnzIoN/fzAX1MlUOk5
mW0qh02h3bewoMJhYSPMG21oBZ+tepKlt51TFpJOJrudtNatQcBmy+RFH6Ui
xBPxwN60Jw17RdswlcbhYU3t6xxBeRpA5IKbFJ2Fh6c3Y50C1S2vjvpTp35O
8rk2lcrlSi5B2NhHtjtuERl7UWlY2xZjImfvTbPBwXeS1mnbor8F5XDRFmnP
MwhjVW2EEHaRruXB1AKOisNUxcaAmtDsignS7rlouB9cNbdbcYs02UbThQuB
HTTlnkZXxkbVhQdTiGx7JA6+97joWu2G/kQzsLzrOygiTCs1TBKwpiFMIwZN
vKYOSrPJu06eTtzZcMaVAg2t2Pz4dTWGZgzauNzMWm/Nj62d2uB/Tr4nXqTv
AgouIi5OlFFs09uklBcj//o9ZdlIfHcs9rMFj5Z6WtTglrXgZn4iU7DbPtio
zsroWDEh4RpzCry/i2CK0LR05TdhmlYsurLeywIr1wFhmq5c4d5XxxMNK8/b
CSmYqpzJyBKFsZEjQZ3JnlkdgyEOu+e1nhMu+fO5IxyrVyeNnqA2/7Ei8sVi
FDvbPEnBLaXHDLHtAvcbbgTfD7emL8AEmnwGQXCGWyHQI+f67t0frr777p+f
P3s9nZq43e02dTecb1uVx3mGH6k5kGAhYpMbI85cZxouxPfOzk9zd5xosFsy
PY5j+u+ejS3jER2Mx0Bs3sMIHNtc1z1CTxvLNgcZU77Jsc3vOvJih3efzbu+
aJT9brPf+bXxgxzZMBfICfsO886nvx+88zT2IMq8N+vSO8LhNTnwsLVmv2tr
fKCnqfLZKphJSbg2hWlBrL5GxDmTZIzAPJP3iByN81/8ku4Q+qL80WrXn5L4
3+Yfj/v9sekQAe6OnzADAoP82DV/etE1B1/PDoj86cWbfxsbRT5Of4gJ4Ahn
iIm25kNLVo/nB/zm6ZlQdubETe0ytF412Qnu+WG0ZyLEi3lB0ZL3Z4xLS4R5
dIXCSasO/akNNuYff+EVqizTXGUcvHOENE0iHSWPbJpslMCDFCodgDQA39DQ
Yaix1uu4eJSPtl1rXtx5nM82i52JkKXQizd2rbMvnULDRxv4siEXzVh0dJ5i
XMbfdN3XtwfH3+ZCZgzZJPecrl3BbpGDvbM41XPpY1rhQGAWU3ufZafd6awo
zjG/8X7Sb7g9WQ4/YLCtjruzV4QyN674t7CSdFzunJXgXEFc+Lt+vPTtP/Wh
qqX4yarlLyl+i19UtfyltW9xWLX8K0vf4hIQbL9+s6YmCY55p06zkT3szz7I
Xep+Z2WXVE476kdzqND1LrOKHIouhR42yGRoQFjYVtlNuDw1v8+6vef56ZmV
J8cwe/YgJc00H9PRxo985drxbWp41oBrK+ycb+1k3S07aj5xyzZp2EnlxFxx
p4jYK9TPWu8Mr48rUuZIgXBW3G8ghaaQ61/bmH2Wp2FdN4rtGXtp6j1Hba5f
9WNf2bnLAplWVrc/g+W5EDVm/kwlyiUf+nY60nqQXB0ZzexlV0os9zbrzKm4
PHzX1tJP9dKxhNjUie0ksmcl6v1OuJWP6VBTwPLxuSGGl5xmr3/vxoSKuNSH
BdIdBfp8coOP8PKhS+zbP3HlB93MRPv7IJyej3kuzmsYRnFoWWuXqucwbnfP
HXkMOdwg46lvfuHMNJzgrTN/WyMb/DLToywW9ozQ6S0Q9Vx9fN0HYyJ5BSSx
4hY4SVX2geyw8KL9gzPao34wBUxQBlcwHMRV1GW6dnjf9FJaqk2V4q2mc7CH
pWGKWmAAOxcRkMHf8FFzPR5dmJsO18DDx0O+HyCSz6fExkE72CjkXPe61/VA
rWmTdhjMcHRkgzpxLF9cj/6YRLqlgKXnksnKpHR0t53lVvhkn0lUDWQkpbjp
e072UP5yA4JqAwKvbS5gkmNL/Omwiuurw3uwPt3OjNKt7/rlHQv0glpUTP5W
2DzqMSTh8ruZjFNqp/oW3QGd3a3JHZHU8OZZMvX2fCKTXcO4Yz+Q9xcgpvNq
cszVaK7w8fqPBnKu0NlCl5qt6azE/fLBVb3ZQfnyB7qR4Jiyk5+24HhyrMD7
RfLPrRevtZI2D8cHbPbcrUPWYT6SBcNT3tvPwhvFsFjhIPvkmgHYnjVGDs5B
UMofscosyReoh+kMEZOdA+llr97Ydl/BMY1L0R/4cnAYth0+dXHy65lSQy0G
iO5SbgUdqSO62AsL/O6GXd/IBzbIowxyn4WTiGMZeD7VY6npeCffmFCID9tQ
5o3aW6wKWmWnA5UmM9n4IN6U6+9lR4m9haCEDGWdaglicJXDpC1NVYs4xYuZ
Fm+qJr3XWkpNGSQcK9PexMm3k7VDg/O4x29WEeTefXfMTrNCONmzUIcJMB0B
5OcoWgGdb/yGrYOSqnCJrjEb7+6T8NeqbAWBsmR2PtvkrSbyTRooxkU4rMo4
2pZsTZkPQYzaLekGEXpsytuZJkju7ILtX/ay8VRS8NNWsEH0O+5CtndgUMF3
8HqYDDg3XSQgNVyXHE+Hz2v7wis5TEe0re+WS701wmdkrh0bObwSB6GNo96J
aZKFbd5jAiqveNxapCy90rZhsWAZODzVbpI041kiL01sa/CSS3d6S3DfygqJ
NTVhnZRK2JO9O6txRBpu3pNLVtMHA5X903xT6taEGpNzceIHazYmDk4cENUX
N1T4MRbQmDe+8cTs3i7f+Pbp3OAYT7ppB0JXDyxi06G3kZXOgloaHAAzagTa
2wO1LER+faa3FoY/M8Cdu64YkNLlN8QbcnxjTwQhRrqLybQZccjuq9yoW87g
saJzrcbYKgzc77fWOWN7u+7G4dxtN7xhzOh1hIJyPd+wYnwwiclYQ52SuVzO
Y10Zt30DMDQw7urIA91K4D4K5PhAuPP1dErNnewz/mDXs7bxpQZqD8tymDEW
roPzWJKAXRn7UqPdf4KmJAa1pepF8A3wEWVxJ2hkBzR5K1rK2BhGKzmJmZyr
/InJxLdYIhmXw8lGDbatEV5It5iKOK80E7MZm/TODDWbM9NTFXw+O4A+O6Zl
D/J+aHEAla+12m9J2K4s6JOmF+/dZ4NW52r2oU08D+6Vg0aNQz7cye3DhNhI
WmCY2ELPULHwOiNPeKmeDTqfRbrXZCKG08PYg8/2VIgwrx0U0k8chDQ0MuXq
EUGPPTEUubjGFnhRYW4bgjpav+xdlWAaSB65ZeaSHQ2WfPTH2Ajx2GUo/n0z
f9XlMrOxvJE+8PwvHf/gapbf/9Tzv3T8U39OXgfz+4PLX+yRh5999cv1oSTb
KoZR2LF7d1bur7u1D8T9M1Yu7HDRPiftZnd4zPLvk53joqnNCBjU4SEJSuXN
WlPJRExdvf7aTI7tInhGGK/zyoDOJFGgZF5fuB7p01Vb9iET7js8wsPlTG5F
V7buOSIevwo7V0qMciYv7K90rd7ZBCj93n7/jjgeR9jcYX84wKKeDefBNAPF
D8q1/vFFPsA1Ow8w3ptC65wPPGvybw5WF4yrEx9cHd18YDjGNo3Oxy9OzXUr
D2fw93/wMHYy/2ghDx/44KoW6oCCu9vxBN1U+7SV+/UMNduvbSrBXNt1gCwp
43qc5fGl22VzPMzZ1+QkzJz+nUm3/pvNAk7c+gY5tn76NxmYU6t00o7Hc8bd
X+NBGXsjh53JcAnSiZV8Q8f2jGpTqmX5EIzt99IlND1HZpNijG/NLTlUZafL
ld52K5MjoDCGQwIKHY/Vw089TVu1kZuXr5s6CVwr3k5wG8h15LhE4Us9EFpd
c0BUO89rQ2nbrHcds9L0S0i2Oc053r1idZ/uG+CL9Dgys5ku3oNba4tRpnzB
mAwzVW7XaEmVcwN26VcgQtEC33Dnur0WYIomRwJbik6LJR1kXDTQTQ5+ix+V
fdypI3EgZv4JHCdoFFshPuSoZ3+zMsUA20xT69291tT3s2ORmlghdre2NcNc
QujISQldJg4LjWmIopABm/G3zqJE8kdA12IW+sxdIsGZ87WJY5c2MQiEPowr
ctX5kwKIKFtr8e7dH37GdZLmNNHhOYNTvumga4Nahk5lbucdHMK1a5xqwuBQ
051SnJzMVJU4AQ5df6aQthNk3lRhF0u72pjrqhjb2rWbGoGcoKBJEs5uxbBh
io3ITZ83iT7FcqtV34wNKYfHKl/x7/boHLmJ8UTGPO9nhGY8mmS6fSA0hDRJ
TsLzV9fXAeaRnHSZuu2O+4FsKhkyBsguNMyZ2g3HccdYHqAIEsbRwaOxZ58F
1g8HbyWXEIS30fFk/x/svVtTLZEOAZMEmu+qMIym7yoqM5oeQL2jM0XCXERz
ch3DDPS7qQqvbJm4wSY94fFgTOHUH4J5+MKPGnpyVYaJKrjCaIMwe+z+qEFi
up/S1Q6nZgd77hGxxcNm199s5eaW2v+XD4LjJIgHR9ncR8ez2JLCZ+aWjaOw
q5Nr+Z6bgE5f/nxwo5m7u2P46RK3OwBut3f29QNFb3Q04BorG+D9pmshPycK
ffHIZVSv7M0gZ/Prz06UlfOL1BiVk+O84BuM/SUL8bLnNAi35lncbJO0WOgT
3xr592C9HxsbHGG8NqprSo24NYPCfpQsBHPBHnp2KZzpsjSqtJ3N7mydxjwb
r0iZCsKzZ8VYhx/OoNDmQihzuGDsPDFSeeI0jiOtTUBPFTk7g5hukD3NZ3dH
oz8XXyl435sLMoy00z3dPC7cZLfar8RoqGwjxxCEb7/Cn+DLIM+yJKN8EehO
mfwnQvyDuUjGXGA+Dn2is0Yub+hQ3O0KrxjGvzi42mV+Zd0/BC+5Cg2U8kdb
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
qYHNldy/+n8BJ0awmAOgAAA=

-->

</rfc>
