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

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>

<rfc ipr="trust200902" docName="draft-rescorla-tls-subcerts-02" category="std">

  <front>
    <title>Delegated Credentials for TLS</title>

    <author initials="R." surname="Barnes" fullname="Richard Barnes">
      <organization>Mozilla</organization>
      <address>
        <email>rlb@ipv.sx</email>
      </address>
    </author>
    <author initials="S." surname="Iyengar" fullname="Subodh Iyengar">
      <organization>Facebook</organization>
      <address>
        <email>subodh@fb.com</email>
      </address>
    </author>
    <author initials="N." surname="Sullivan" fullname="Nick Sullivan">
      <organization>Cloudflare</organization>
      <address>
        <email>nick@cloudflare.com</email>
      </address>
    </author>
    <author initials="E." surname="Rescorla" fullname="Eric Rescorla">
      <organization>RTFM, Inc.</organization>
      <address>
        <email>ekr@rtfm.com</email>
      </address>
    </author>

    <date year="2017" month="October" day="30"/>

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

    <abstract>


<t>The organizational separation between the operator of a TLS server and the
certificate authority that provides it credentials can cause problems, for
example when it comes to reducing the lifetime of certificates or supporting
new cryptographic algorithms.  This document describes a mechanism to allow TLS
server operators to create their own credential delegations without breaking
compatibility with clients that do not support this specification.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>Typically, a TLS server uses a certificate provided by some entity other than
the operator of the server (a “Certification Authority” or CA) <xref target="RFC5246"/>
<xref target="RFC5280"/>.  This organizational separation makes the TLS server operator
dependent on the CA for some aspects of its operations, for example:</t>

<t><list style="symbols">
  <t>Whenever the server operator wants to deploy a new certificate, it has to
interact with the CA.</t>
  <t>The server operator can only use TLS authentication schemes for which the CA
will issue credentials.</t>
</list></t>

<t>These dependencies cause problems in practice.  Server operators often want to
create short-lived certificates for servers in low-trust zones such as CDNs or
remote data centers.  This allows server operators to limit the exposure of keys
in cases that they do not realize a compromise has occurred.  The risk inherent
in cross-organizational transactions makes it operationally infeasible to rely
on an external CA for such short-lived credentials.  In contrast to OCSP
stapling, in which an operator could choose to talk to the CA frequently to
obtain stapled responses, failure to fetch an OCSP stapled response results only
in degraded performance, however failure to fetch a potentially large number of
short lived certificates would result in the service not being available which
creates greater operational risk.</t>

<t>To remove these dependencies, this document proposes a limited delegation
mechanism that allows a TLS server operator to issue its own credentials within
the scope of a certificate issued by an external CA.  Because the above
problems do not relate to the CAs inherent function of validating possession of
names, it is safe to make such delegations as long as they only enable the
recipient of the delegation to speak for names that the CA has authorized.  For
clarity, we will refer to the certificate issued by the CA as a “certificate”
and the one issued by the operator as a “Delegated credential”.</t>

</section>
<section anchor="solution-overview" title="Solution Overview">

<t>A Delegated credential is a digitally signed data structure with the following
semantic fields:</t>

<t><list style="symbols">
  <t>A validity interval</t>
  <t>A public key (with its associated algorithm)</t>
</list></t>

<t>The signature on the credential indicates a delegation from the certificate
which is issued to the TLS server operator.  The key pair used to sign a
credential is presumed to be one whose public key is contained in an X.509
certificate that associates one or more names to the credential.</t>

<t>A TLS handshake that uses credentials differs from a normal handshake in a few
important ways:</t>

<t><list style="symbols">
  <t>The client provides an extension in its ClientHello that indicates support
for this mechanism.</t>
  <t>The server provides both the certificate chain terminating in its certificate
as well as the credential.</t>
  <t>The client uses information in the server’s certificate to verify the
signature on the credential and verify that the server is asserting an
expected identity.</t>
  <t>The client uses the public key in the credential as the server’s
working key for the TLS handshake.</t>
</list></t>

<t>Delegated credentials can be used either in TLS 1.3 or TLS 1.2.  Differences
between the use of Delegated credentials in the protocols are explicitly stated.</t>

<t>It was noted in <xref target="XPROT"></xref> that certificates in use by servers that support
outdated protocols such as SSLv2 can be used to forge signatures for
certificates that contain the keyEncipherment KeyUsage (<xref target="RFC5280"/> section
4.2.1.3) In order to prevent this type of cross-protocol attack, we define a
new DelegationUsage extension to X.509 which permits use of delegated
credentials.  Clients MUST NOT accept delegated credentials associated with
certificates without this extension.</t>

<t>Credentials allow the server to terminate TLS connections on behalf of the
certificate owner.  If a credential is stolen, there is no mechanism for
revoking it without revoking the certificate itself.  To limit the exposure of
a delegation credential compromise, servers MUST NOT issue credentials with a
validity period longer than 7 days.  Clients MUST NOT accept credentials with
longer validity periods.</t>

<section anchor="rationale" title="Rationale">

<t>Delegated credentials present a better alternative from other delegation
mechanisms like proxy certificates <xref target="RFC3820"/> for several reasons:</t>

<t><list style="symbols">
  <t>There is no change needed to certificate validation at the PKI layer.</t>
  <t>X.509 semantics are very rich.  This can cause unintended consequences if a
service owner creates a proxy cert where the properties differ from the leaf
certificate.</t>
  <t>Delegated credentials have very restricted semantics which should not
conflict with X.509 semantics.</t>
  <t>Proxy certificates rely on the certificate path building process to establish
a binding between the proxy certificate and the server certificate.  Since
the cert path building process is not cryptographically protected, it is
possible that a proxy certificate could be bound to another certificate with
the same public key, with different X.509 parameters.  Delegated credentials,
which rely on a cryptographic binding between the entire certificate and the
Delegated credential, cannot.</t>
  <t>Delegated credentials allow signed messages to be bound to specific versions
of TLS.  This prevents them from being used for other protocols if a service
owner allows multiple versions of TLS.</t>
</list></t>

</section>
<section anchor="related-work" title="Related Work">

<t>Many of the use cases for delegated credentials can also be addressed using
purely server-side mechanisms that do not require changes to client behavior
(e.g., LURK <xref target="I-D.mglt-lurk-tls-requirements"/>).  These mechanisms, however,
incur per-transaction latency, since the front-end server has to interact with
a back-end server that holds a private key.  The mechanism proposed in this
document allows the delegation to be done off-line, with no per-transaction
latency.  The figure below compares the message flows for these two mechanisms
with TLS 1.3 <xref target="I-D.ietf-tls-tls13"/>.</t>

<figure><artwork><![CDATA[
LURK:

Client            Front-End            Back-End
  |----ClientHello--->|                    |
  |<---ServerHello----|                    |
  |<---Certificate----|                    |
  |                   |<-------LURK------->|
  |<---CertVerify-----|                    |
  |        ...        |                    |


Delegated credentials:

Client            Front-End            Back-End
  |                   |<---Cred Provision--|
  |----ClientHello--->|                    |
  |<---ServerHello----|                    |
  |<---Certificate----|                    |
  |<---CertVerify-----|                    |
]]></artwork></figure>

<t>These two classes of mechanism can be complementary.  A server could use
credentials for clients that support them, while using LURK to support legacy
clients.</t>

<t>It is possible to address the short-lived certificate concerns above by
automating certificate issuance, e.g., with ACME <xref target="I-D.ietf-acme-acme"/>.  In
addition to requiring frequent operationally-critical interactions with an
external party, this makes the server operator dependent on the CA’s
willingness to issue certificates with sufficiently short lifetimes.  It also
fails to address the issues with algorithm support.  Nonetheless, existing
automated issuance APIs like ACME may be useful for provisioning credentials,
within an operator network.</t>

</section>
</section>
<section anchor="client-and-server-behavior" title="Client and Server behavior">

<t>This document defines the following extension code point.</t>

<figure><artwork><![CDATA[
    enum {
      ...
      delegated_credential(TBD),
      (65535)
    } ExtensionType;
]]></artwork></figure>

<t>A client which supports this document SHALL send an empty
“delegated_credential” extension in its ClientHello.</t>

<t>If the extension is present, the server MAY send a DelegatedCredential
extension.  If the extension is not present, the server MUST NOT send a
credential.  A credential MUST NOT be provided unless a Certificate message is
also sent.</t>

<t>When negotiating TLS 1.3, and using Delegated credentials, the server MUST send
the DelegatedCredential as an extension in the CertificateEntry of its end
entity certificate.  When negotiating TLS 1.2, the DelegatedCredential MUST be
sent as an extension in the ServerHello.</t>

<t>The DelegatedCredential contains a signature from the public key in the
end-entity certificate using a signature algorithm advertised by the client in
the “signature_algorithms” extension.  Additionally, the credential’s public
key MUST be of a type that enables at least one of the supported signature
algorithms.  A Delegated credential MUST NOT be negotiated by the server if its
signature is not compatible with any of the supported signature algorithms or
the credential’s public key is not usable with the supported signature
algorithms of the client, even if the client advertises support for delegated
credentials.</t>

<t>On receiving a credential and a certificate chain, the client validates the
certificate chain and matches the end-entity certificate to the server’s
expected identity following its normal procedures.  It then takes the following
additional steps:</t>

<t><list style="symbols">
  <t>Verify that the current time is within the validity interval of the
credential.</t>
  <t>Use the public key in the server’s end-entity certificate to verify the
signature on the credential.</t>
  <t>Use the public key in the credential to verify a signature provided
in the handshake. That is the CertificateVerify message in TLS 1.3 or
ServerKeyExchange in 1.2.</t>
  <t>Verify that the certificate has the correct extensions that allow the use
of Delegated credentials.</t>
</list></t>

<t>Clients that receive Delegated credentials that are valid for more than 7 days
MUST terminate the connection with an “illegal_parameter” alert.</t>

</section>
<section anchor="delegated-credentials" title="Delegated Credentials">

<t>While X.509 forbids end-entity certificates from being used as issuers for
other certificates, it is perfectly fine to use them to issue other signed
objects as long as the certificate contains the digitalSignature key usage
(RFC5280 section 4.2.1.3).  We define a new signed object format that would
encode only the semantics that are needed for this application.</t>

<figure><artwork><![CDATA[
struct {
  uint32 validTime;
  opaque publicKey<0..2^16-1>;
} DelegatedCredentialParams;

struct {
  DelegatedCredentialParams cred;
  SignatureScheme scheme;
  opaque signature<0..2^16-1>;
} DelegatedCredential;
]]></artwork></figure>

<t><list style="hanging">
  <t hangText='validTime:'>
  Relative time in seconds from the beginning of the certificate’s notBefore
value after which the Delegated Credential is no longer valid.</t>
  <t hangText='publicKey:'>
  The Delegated Credential’s public key which is an encoded
SubjectPublicKeyInfo <xref target="RFC5280"/>.</t>
  <t hangText='scheme:'>
  The Signature algorithm and scheme used to sign the Delegated credential.</t>
  <t hangText='signature:'>
  The signature over the credential with the end-entity certificate’s public
key, using the scheme.</t>
</list></t>

<t>The DelegatedCredential structure is similar to the CertificateVerify structure
in TLS 1.3.  Since the SignatureScheme defined in TLS 1.3, TLS 1.2 clients
should translate the scheme into an appropriate group and signature algorithm
to perform validation.</t>

<t>The signature of the DelegatedCredential is computed over the concatenation of:</t>

<t><list style="numbers">
  <t>A string that consists of octet 32 (0x20) repeated 64 times.</t>
  <t>The context string “TLS, server delegated credentials”.</t>
  <t>A single 0 byte which serves as the separator</t>
  <t>Big endian serialized 2 bytes ProtocolVersion of the negotiated TLS version,
defined by TLS.</t>
  <t>DER encoded X.509 certificate used to sign the DelegatedCredential.</t>
  <t>Big endian serialized 2 byte SignatureScheme scheme.</t>
  <t>The DelegatedCredentialParams structure.</t>
</list></t>

<t>This signature has a few desirable properties:</t>

<t><list style="symbols">
  <t>It is bound to the certificate that signed it.</t>
  <t>It is bound to the protocol version that is negotiated.  This is intended to
avoid cross-protocol attacks with signing oracles.</t>
</list></t>

<t>The code changes to create and verify Delegated credentials would be localized
to the TLS stack, which has the advantage of avoiding changes to
security-critical and often delicate PKI code (though of course moves that
complexity to the TLS stack).</t>

<section anchor="certificate-requirements" title="Certificate Requirements">

<t>We define a new X.509 extension, DelegationUsage to be used in the certificate
when the certificate permits the usage of Delegated Credentials.  When this
extension is not present the client MUST not accept a Delegated Credential even
if it is negotiated by the server.  When it is present, the client MUST follow
the validation procedure.</t>

<t>id-ce-delegationUsage OBJECT IDENTIFIER ::=  { TBD }</t>

<t>DelegationUsage ::= BIT STRING { allowed (0) }</t>

<t>Conforming CAs MUST mark this extension as non-critical.  This would allow the
certificate to be used by service owners for clients that do not support
certificate delegation as well and not need to obtain two certificates.</t>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>TBD</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<section anchor="security-of-delegated-private-key" title="Security of delegated private key">

<t>Delegated credentials limit the exposure of the TLS private key by limiting
its validity.  An attacker who compromises the private key of a delegated
credential can act as a man in the middle until the delegate credential
expires, however they cannot create new delegated credentials. Thus delegated
credentials should not be used to send a delegation to an untrusted party, but
is meant to be used between parties that have some trust relationship with each
other.  The secrecy of the delegated private key is thus important and several
access control mechanisms SHOULD be used to protect it such as file system
controls, physical security or hardware security modules.</t>

</section>
<section anchor="revocation-of-delegated-credentials" title="Revocation of delegated credentials">

<t>Delegated credentials do not provide any additional form of early revocation.
Since it is short lived, the expiry of the delegated credential would revoke
the credential.  Revocation of the long term private key that signs the
delegated credential also implictly revokes the delegated credential.</t>

</section>
<section anchor="privacy-considerations" title="Privacy considerations">

<t>Delegated credentials can be valid for 7 days and it is much easier for a
service to create delegated credential than a certificate signed by a CA. A
service could determine the client time and clock skew by creating several
delegated credentials with different expiry timestamps and observing whether
the client would accept it.  Client time could be unique and thus privacy
sensitive clients, such as browsers in incognito mode, who do not trust the
service might not want to advertise support for delegated credentials or limit
the number of probes that a server can perform.</t>

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

<t>Thanks to Kyle Nekritz, Anirudh Ramachandran, Benjamin Kaduk, Kazuho Oku,
Daniel Kahn Gillmor for their discussions, ideas, and bugs they’ve found.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC5246" target='https://www.rfc-editor.org/info/rfc5246'>
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.2</title>
<author initials='T.' surname='Dierks' fullname='T. Dierks'><organization /></author>
<author initials='E.' surname='Rescorla' fullname='E. Rescorla'><organization /></author>
<date year='2008' month='August' />
<abstract><t>This document specifies Version 1.2 of the Transport Layer Security (TLS) protocol.  The TLS protocol provides communications security over the Internet.  The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5246'/>
<seriesInfo name='DOI' value='10.17487/RFC5246'/>
</reference>



<reference  anchor="RFC5280" target='https://www.rfc-editor.org/info/rfc5280'>
<front>
<title>Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile</title>
<author initials='D.' surname='Cooper' fullname='D. Cooper'><organization /></author>
<author initials='S.' surname='Santesson' fullname='S. Santesson'><organization /></author>
<author initials='S.' surname='Farrell' fullname='S. Farrell'><organization /></author>
<author initials='S.' surname='Boeyen' fullname='S. Boeyen'><organization /></author>
<author initials='R.' surname='Housley' fullname='R. Housley'><organization /></author>
<author initials='W.' surname='Polk' fullname='W. Polk'><organization /></author>
<date year='2008' month='May' />
<abstract><t>This memo profiles the X.509 v3 certificate and X.509 v2 certificate revocation list (CRL) for use in the Internet.  An overview of this approach and model is provided as an introduction.  The X.509 v3 certificate format is described in detail, with additional information regarding the format and semantics of Internet name forms.  Standard certificate extensions are described and two Internet-specific extensions are defined.  A set of required certificate extensions is specified.  The X.509 v2 CRL format is described in detail along with standard and Internet-specific extensions.  An algorithm for X.509 certification path validation is described.  An ASN.1 module and examples are provided in the appendices.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5280'/>
<seriesInfo name='DOI' value='10.17487/RFC5280'/>
</reference>




    </references>

    <references title='Informative References'>





<reference  anchor="RFC3820" target='https://www.rfc-editor.org/info/rfc3820'>
<front>
<title>Internet X.509 Public Key Infrastructure (PKI) Proxy Certificate Profile</title>
<author initials='S.' surname='Tuecke' fullname='S. Tuecke'><organization /></author>
<author initials='V.' surname='Welch' fullname='V. Welch'><organization /></author>
<author initials='D.' surname='Engert' fullname='D. Engert'><organization /></author>
<author initials='L.' surname='Pearlman' fullname='L. Pearlman'><organization /></author>
<author initials='M.' surname='Thompson' fullname='M. Thompson'><organization /></author>
<date year='2004' month='June' />
<abstract><t>This document forms a certificate profile for Proxy Certificates, based on X.509 Public Key Infrastructure (PKI) certificates as defined in RFC 3280, for use in the Internet.  The term Proxy Certificate is used to describe a certificate that is derived from, and signed by, a normal X.509 Public Key End Entity Certificate or by another Proxy Certificate for the purpose of providing restricted proxying and delegation within a PKI based authentication system.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='3820'/>
<seriesInfo name='DOI' value='10.17487/RFC3820'/>
</reference>


<reference anchor="XPROT" >
  <front>
    <title>On the Security of TLS 1.3 and QUIC Against Weaknesses in PKCS#1 v1.5 Encryption</title>
    <author initials="T." surname="Jager">
      <organization></organization>
    </author>
    <author initials="J." surname="Schwenk">
      <organization></organization>
    </author>
    <author initials="J." surname="Somorovsky">
      <organization></organization>
    </author>
    <date year="2015"/>
  </front>
  <seriesInfo name="Proceedings of the 22nd ACM SIGSAC Conference on Computer and Communications Security" value=""/>
</reference>




<reference anchor="I-D.mglt-lurk-tls-requirements">
<front>
<title>Authentication Model and Security Requirements for the TLS/DTLS Content Provider Edge Server Split Use Case</title>

<author initials='D' surname='Migault' fullname='Daniel Migault'>
    <organization />
</author>

<author initials='K' surname='Ma' fullname='Kevin J. Ma'>
    <organization />
</author>

<date month='January' day='19' year='2016' />

<abstract><t>In the TLS/DTLS Content provider Edge Server Split use case, a TLS Client uses TLS/DTLS to authenticates the Content Provider while establishing a TLS/DTLS session with the Edge Server.  Such authentication scheme is designated as Split Authentication in this document.  In most cases, the Edge Server does not even belong to the Content Provider, but instead to a third party like, for example, a Content Delivery Network.  As a result, the Content Provider and the Edge Server must be able to interact and/or share some information. Interactions and shared information constitutes a split authentication model varies with the authentication method involved in the TLS session.  For each TLS/DTLS authentication method, the document provides the associated split authentication model that makes possible a split authentication.  The split authentication model is associated to security requirements and an analysis to show it does not introduce any weakness compared to the standard TLS authentication model.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-mglt-lurk-tls-requirements-00' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-mglt-lurk-tls-requirements-00.txt' />
</reference>



<reference anchor="I-D.ietf-tls-tls13">
<front>
<title>The Transport Layer Security (TLS) Protocol Version 1.3</title>

<author initials='E' surname='Rescorla' fullname='Eric Rescorla'>
    <organization />
</author>

<date month='July' day='3' year='2017' />

<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></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-tls-tls13-21' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-tls-tls13-21.txt' />
</reference>



<reference anchor="I-D.ietf-acme-acme">
<front>
<title>Automatic Certificate Management Environment (ACME)</title>

<author initials='R' surname='Barnes' fullname='Richard Barnes'>
    <organization />
</author>

<author initials='J' surname='Hoffman-Andrews' fullname='Jacob Hoffman-Andrews'>
    <organization />
</author>

<author initials='J' surname='Kasten' fullname='James Kasten'>
    <organization />
</author>

<date month='June' day='21' year='2017' />

<abstract><t>Certificates in PKI using X.509 (PKIX) are used for a number of purposes, the most significant of which is the authentication of domain names.  Thus, certificate authorities in the Web PKI are trusted to verify that an applicant for a certificate legitimately represents the domain name(s) in the certificate.  Today, this verification is done through a collection of ad hoc mechanisms.  This document describes a protocol that a certification authority (CA) and an applicant can use to automate the process of verification and certificate issuance.  The protocol also provides facilities for other certificate management functions, such as certificate revocation.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-acme-acme-07' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-acme-acme-07.txt' />
</reference>




    </references>



  </back>

<!-- ##markdown-source:
H4sIAOLP9lkAA81bW3PbRpZ+71/RKz/E3iJZthxnZpTZ2ciSnSi+rqQkszU1
m2oCTbKHIMBFA6Rpx/vb9zunL2iAoCe1T6uajCWy0X36XL9zwXQ6FY1pCn0h
r3Whl6rRubyqda7LxqjCykVVy/vXd0LN57XeXYi8ykq1wfK8VotmWmubVXWh
pk1hp7adZ7pu7PTxuciw07KqDxfSNrkQZltfyKZubXP++PGf8L2qtbqQdzpr
a9McxL6q18u6arcXYq0P+Cu/kDdlo+tSN9NrOkoI26gy/1UVVYnjD9qKrbmQ
f2uqbCJtVTe1Xlj8dtjQL38XQrXNqqovhJwK6X5MaS/k7Uw+V9jWhk/ddW5N
tlJ1PviuqpeqNB9VY6ryQr6pPpqiUOFLvVGmuJB1Mf/ObHcz+2F41N1M3hx0
uVR1/6y7dl7lq+F3/bNeqkzPq2o9OMzyo98t5rOs2gzPezvD1kVhdqrsH/jW
ZOujr/rnXRVVmy8KiGVwYolnv8vit2PnvpjJW68H/XNf1CY7+qp/7u39yzcT
iDqbDc7V6/q7ulls+EBhSijiBs/sNCQqb19ePf3j+eMLgd//+v723f2Ff9rr
8rtSNisd1UtWC1Ji+WT2VEKH5H/8dHMlL5cK1DfyF63WELnVFreR719d3T14
IndPZs/kizKrD1ui0+8eVYp/IhMcF+5n8ke11PX4tz9CNtlqr8v16e+rTVVX
O7s++K+sro22dPUL+b6uMq1zUy4t3YZud36Oq1xevZF3N9/fXV7Jq6pc6FqX
mZZVib822xYGxBfGH5sWkmSm287s3Dk5bPVCnj9+8kwIMZ1OpZrbplYZbO4e
56QCUwWo2qqa/5Bz3ey1dryuthqfwluAOsXcBvk7fz4WCHINZkE0aM9Ikkyz
Uo3c4tomJwE0MkucT6ZK/NdaTSvmhd7AwKEHQn9Qm22h5X6Fw+mZaoOHm0ri
2TYDj5iiwix0YzaaKEoOB/9q2NF2C5+BpaLUe8lyrpa12q6gsapYEnGrjZ1J
eb8yVsLrtRtQJUFkVps5NlFyo+EySmM3dLIqimrPntJfO/CD6cKl6NqgyuCb
fZncEluy32XB7HFq1TYSvlatiTjcbIvv5qYgZtHXMisMnrSOc3kly6oJ18Fn
INZudebuij1nTqIbk+eFFuIBnGpdgUms1eL+sMW6ojhM+jJrLd8wFZmXUS7n
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

-->

</rfc>

