<?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.11 -->

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

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

<rfc ipr="trust200902" docName="draft-nygren-httpbis-httpssvc-02" category="std">

  <front>
    <title abbrev="HTTPSSVC RR for DNS">HTTPSSVC service location and parameter specification via the DNS (DNS HTTPSSVC)</title>

    <author initials="B." surname="Schwartz" fullname="Ben Schwartz">
      <organization>Google</organization>
      <address>
        <email>bemasc@google.com</email>
      </address>
    </author>
    <author initials="M." surname="Bishop" fullname="Mike Bishop">
      <organization>Akamai Technologies</organization>
      <address>
        <email>mbishop@evequefou.be</email>
      </address>
    </author>
    <author initials="E." surname="Nygren" fullname="Erik Nygren">
      <organization>Akamai Technologies</organization>
      <address>
        <email>erik+ietf@nygren.org</email>
      </address>
    </author>

    <date />

    <area>General</area>
    <workgroup>HTTP Working Group</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This document specifies an “HTTPSSVC” DNS resource record type to
facilitate the lookup of information needed to make connections for
HTTPS URIs.  The HTTPSSVC DNS RR mechanism allows an HTTPS origin
hostname to be served from multiple network services, each with
associated parameters (such as transport protocol and keying material
for encrypting TLS SNI).  It also provides a solution for the
inability of the DNS to allow a CNAME to be placed at the apex
of a domain name.  Finally, it provides a way to indicate that the origin
supports HTTPS without having to resort to redirects, allowing
clients to remove HTTP from the bootstrapping process.</t>

<t>By allowing this information to be bootstrapped in the DNS,
it allows for clients to learn of alternative services before their first
contact with the origin.  This arrangement offers potential benefits to
both performance and privacy.</t>

<t>TO BE REMOVED: This proposal is inspired by and based on recent DNS
usage proposals such as ALTSVC, ANAME, and ESNIKEYS (as well as
long standing desires to have SRV or a functional equivalent
implemented for HTTP).   These proposals each provide an important
function but are potentially incompatible with each other, such as
when an origin is load-balanced across multiple hosting providers (multi-CDN).
Furthermore, these each add potential cases for adding additional record
lookups in-addition to AAAA/A lookups. This design attempts to provide a unified
framework that encompasses the key functionality of these proposals,
as well as providing some extensibility for addressing similar
future challenges.</t>



    </abstract>


  </front>

  <middle>


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

<t>The HTTPSSVC RR is intended to address a number of challenges
facing HTTPS clients and services, while also providing an extensible
model to handle similar use-cases without forcing clients to perform
additional DNS lookups and without forcing them to first make connections
to a default service for the origin.</t>

<t>When clients need to make a connection to fetch resources associated
with an HTTPS URI, they must first resolve A and/or AAAA address resource
records for the origin hostname.  This is adequate when clients default
to TCP port 443, do not support Encrypted SNI <xref target="ESNI"/>,
and where the origin service operator does not have a desire
to put an CNAME at a zone apex (such as for “https://example.com”).
Handling situations beyond this within the DNS requires learning additional
information, and it is highly desirable to minimize the number of round-trip
and lookups required to learn this additional information.</t>

<section anchor="introductory-example" title="Introductory Example">

<t>As an introductory example, a set of example HTTPSSVC and associated
A+AAAA records might be:</t>

<figure><artwork><![CDATA[
www.example.com.  2H  IN CNAME   svc.example.net.
example.com.      2H  IN HTTPSSVC 0 0 svc.example.net.
svc.example.net.  2H  IN HTTPSSVC 1 2 svc3.example.net. "h3=\":8003\"; \
                                   esnikeys=\"...\""
svc.example.net.  2H  IN HTTPSSVC 1 3 svc2.example.net. "h2=\":8002\"; \
                                   esnikeys=\"...\""
svc2.example.net. 300 IN A       192.0.2.2
svc2.example.net. 300 IN AAAA    2001:db8::2
svc3.example.net. 300 IN A       192.0.2.3
svc3.example.net. 300 IN AAAA    2001:db8::3
]]></artwork></figure>

<t>In the preceding example, both of the “example.com” and
“www.example.com” origin names are aliased to use service endpoints
offered as “svc.example.net” (with “www.example.com” continuing to use
a CNAME alias).  HTTP/2 is available on a cluster of machines located
at svc2.example.net with TCP port 8002 and HTTP/3 is available on a
cluster of machines located at svc3.example.net with UDP port 8003.
An ESNI key is specified which allows the SNI values of “example.com”
and “www.example.com” to be encrypted in the handshake with these
service endpoints.  When connecting, clients will continue to treat
the authoritative origins as “https://example.com” and
“https://www.example.com”, respectively.</t>

</section>
<section anchor="goals-of-the-httpssvc-rr" title="Goals of the HTTPSSVC RR">

<t>The goal of the HTTSSVC RR is to allow clients to resolve a single
additional DNS RR in a way that:</t>

<t><list style="symbols">
  <t>Provides service endpoints authoritative for an origin,
along with parameters associated with each of these endpoints.
In particular:
  <list style="symbols">
      <t>to support connecting directly to <xref target="HTTP3"/> (QUIC transport)
service endpoints</t>
      <t>to obtain the <xref target="ESNI"/> keys associated with a service endpoint</t>
    </list></t>
  <t>Does not assume that all service endpoints have the same parameters
(such as ESNI keys) or capabilities (such as <xref target="HTTP3"/>) or are even
operated by the same entity.  This is important as DNS does not
provide any way to tie together multiple RRs for the same name.
For example, if www.example.com is a CNAME alias that switches
between one of three CDNs or hosting enviroments, records (such as A and AAAA)
for that name may have been sourced from different environments.</t>
  <t>Enables the functional equivalent of a CNAME at a zone apex (such as
“example.com”) for HTTPS traffic, and generally enables
delegation of operational authority for an HTTPS origin
within the DNS to an alternate name.  This addresses
a set of long-standing issues due to HTTP(S) clients
not implementing support for SRV records, as well as
due to a limitation that a DNS name can not have
both a CNAME record as well as NS RRs
(as is the case for zone apex names)</t>
</list></t>

</section>
<section anchor="overview-of-the-httpssvc-rr" title="Overview of the HTTPSSVC RR">

<t>This subsection briefly describes the HTTPSSVC RR in
a non-normative manner.</t>

<t>The HTTPSSVC RR has four primary fields:</t>

<t><list style="numbers">
  <t>SvcRecordType: A numeric flag indicating how to interpret the
subsequent fields.  When “0”, it indicates that the RR contains an
alias.  When “1”, it indicates that the RR contains an alternative service
definition.</t>
  <t>SvcFieldPriority: The priority of this record (relative to others,
with lower values preferred).  Applicable when SvcRecordType is “1”,
and otherwise has value “0”.  (Described in <xref target="pri"/>.)</t>
  <t>SvcDomainName: The domain name of either the alias target (when
SvcRecordType is “0”) or the uri-host domain name of the alternative service
endpoint (when SvcRecordType is “1”).</t>
  <t>SvcFieldValue: An Alternative Service field value describing the
alternative service endpoint for the domain name specified in
SvcDomainName (only when SvcRecordType is “1” and otherwise empty).</t>
</list></t>

<t>Cooperating DNS recursive resolvers will perform subsequent record resolution (for
HTTPSSVC, A, and AAAA records) and return them in the Additional Section
of the response.  Clients must either use responses included
in the additional section returned by the recursive resolver
or perform necessary HTTPSSVC, A, and AAAA record resolutions.
DNS authoritative servers may attach in-bailiwick HTTPSSVC, A, AAAA, and CNAME
records in the Additional Section to responses for an HTTPSSVC query.</t>

<t>When SvcRecordType is “1”, the HTTPSSVC RR extends the concept
introduced in the HTTP Alternative Services proposed standard
<xref target="AltSvc"/>.  Alt-Svc defines:</t>

<t><list style="symbols">
  <t>an extensible data model for describing alternative network endpoints
that are authoritative for an origin</t>
  <t>the “Alt-Svc Field Value”, a text format for representing this
information</t>
  <t>standards for sending information in this format from a server to a
client over HTTP/1.1 and HTTP/2.</t>
</list></t>

<t>Together, these components provide a toolkit that has proven useful and
effective for informing a client of alternative services for an origin.
However, making use of an alternative service requires contacting the
origin server first.  This creates an obvious performance cost: users
wait for a full HTTP connection initiation (multiple roundtrips) before
learning of an alternative service that is preferred by the origin.  The
first connection also publicly reveals the user’s intended destination
to all entities along the network path.</t>

<t>The SvcFieldValue includes the Alt-Svc Field Value through
the DNS.  This is in its standard text format, with the uri-host
portion of the alt-authority component
moved into the SvcDomainName field of the HTTPSSVC RR.
A client receiving this information during DNS resolution
can skip the initial connection and proceed directly to an
alternative service.</t>

</section>
<section anchor="additional-alt-svc-parameters" title="Additional Alt-Svc parameters">

<t>This document also defines one additional Alt-Svc parameter
that can be used within SvcFieldValue:</t>

<t><list style="symbols">
  <t>esnikeys (<xref target="esnikeys"/>): The ESNIKeys structure from Section 4.1 of <xref target="ESNI"/>
for use in encrypting the actual origin hostname
in the TLS handshake.</t>
</list></t>

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

<t>For consistency with <xref target="AltSvc"/>, we adopt the following definitions:</t>

<t><list style="symbols">
  <t>An “origin” is an information source as in <xref target="RFC6454"/>.</t>
  <t>The “origin server” is the server that the client would reach when
accessing the origin in the absence of Alt-Svc.</t>
  <t>An “alternative service” is a different server that can serve the
origin.</t>
</list></t>

<t>Abstractly, the origin consists of a scheme (typically “https”), a host
name, and a port (typically “443”).</t>

<t>Additional DNS terminology intends to be consistent
with <xref target="DNSTerm"/>.</t>

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

</section>
</section>
<section anchor="the-httpssvc-record-type" title="The HTTPSSVC record type">

<t>The HTTPSSVC DNS resource record (RR) type (RRTYPE ???)
is used to locate endpoints that can service an “https” origin.
The presentation format of the record is:</t>

<t>RRName TTL Class HTTPSSVC SvcRecordType SvcFieldPriority \
                         SvcDomainName SvcFieldValue</t>

<t>where SvcRecordType is a numeric value of either “0” or “1”,
SvcFieldPriority is a number in the range 0-65535,
SvcDomainName is a domain name,
and SvcFieldValue is a string
present when SvcRecordType is “1”.</t>

<t>The algorithm for resolving HTTPSSVC records and associated
address records is specified in <xref target="resolution"/>.</t>

<section anchor="httpssvc-rdata-wire-format" title="HTTPSSVC RDATA Wire Format">

<t>The RDATA for the HTTPSSVC RR consists of:</t>

<t><list style="symbols">
  <t>a 1 octet flag field for SvcRecordType, interpreted
as an unsigned numeric value (0 to 255, with only values
“0” and “1” defined here)</t>
  <t>a 2 octet field for SvcFieldPriority as an integer in network
byte order. If SvcRecordType is “0”, SvcFieldPriority MUST be 0.</t>
  <t>the uncompressed SvcDomainName, represented as
a sequence of length-prefixed labels as in Section 3.1 of <xref target="RFC1035"/>.</t>
  <t>the SvcFieldValue byte string, consuming the remainder of the record
(so smaller than 65535 octets and constrained by the RRDATA
and DNS message sizes).</t>
</list></t>

<t>When SvcRecordType is “0”, the SvcFieldValue SHOULD be empty (“”)
and clients MUST ignore the contents of non-empty SvcFieldValue fields.</t>

</section>
<section anchor="rrnames" title="RRNames">

<t>In the case of the HTTPSSVC RR, an origin is translated into the RRName
in the following manner:</t>

<t><list style="numbers">
  <t>If the scheme is “https” and the port is 443,
then the RRName is equal to the origin host name.  Otherwise the
RRName is represented by prefixing the
port and scheme with “_”, then concatenating them with the host name,
resulting in a domain name like “_8443._https.www.example.com.”.</t>
  <t>When a prior CNAME or HTTPSSVC record has aliased to
an HTTPSSVC record, RRName shall be the name of the alias target.</t>
</list></t>

<t>Note that none of these forms alter the HTTPS origin or authority.
For example, clients MUST continue to validate TLS certificate
hostnames based on the origin host.</t>

<t>As an example for schemes and ports other than “https” and port 443:</t>

<figure><artwork><![CDATA[
_8443._wss.api.example.com. 2H IN HTTPSSVC 0 0 svc4.example.net.
svc4.example.net.  2H  IN HTTPSSVC 1 3 svc4.example.net. "h2=\":8004\"; \
                                   esnikeys=\"...\""
]]></artwork></figure>

<t>would indicate that “wss://api.example.com:8443” is aliased
to use HTTP/2 service endpoints offered as “svc4.example.net” 
on port 8004.</t>

</section>
<section anchor="svcrecordtype" title="SvcRecordType">

<t>The SvcRecordType field is a numeric value defined to be either “0” or
“1”. Within an HTTPSSVC RRSet, all RRs must have the same value for
SvcRecordType.  Clients and recursive servers MUST ignore HTTPSSVC
resource records with other SvcRecordType values. If an RRSet contains
a record with type “0”, the client MUST ignore any records in the set
with type “1”.</t>

<t>When SvcRecordType is “0”, the HTTPSSVC is defined to be in “alias form”.</t>

<t>When SvcRecordType is “1”, the HTTPSSVC is defined to
be in “alternative service form”.</t>

</section>
<section anchor="httpssvc-records-alias-form" title="HTTPSSVC records: alias form">

<t>When SvcRecordType is “0”, the HTTPSSVC record is to be treated
similar to a CNAME alias pointing to the domain name specified in
SvcDomainName.  HTTPSSVC RRSets MUST only have a single resource
record in this form.  If multiple are present, clients or recursive
resolvers SHOULD pick one non-determinstically.</t>

<t>The common use-case for this form of the HTTPSSVC record is as an
alternative to CNAMEs at the zone apex where they are not allowed.
For example, if an operator of https://example.com wanted to
point HTTPS requests to a service operating at svc.example.net,
they would publish a record such as:</t>

<figure><artwork><![CDATA[
example.com. 3600 IN HTTPSSVC 0 0 svc.example.net.
]]></artwork></figure>

<t>The SvcDomainName MUST point to a domain name that contains
another HTTPSSVC record and/or address (AAAA and/or A) records.</t>

<t>Note that the RRName and the SvcDomainName MAY themselves be CNAMEs.
Clients and recursive resolvers MUST follow CNAMEs as normal.</t>

<t>Due to the risk of loops, clients and recursive resolvers MUST
implement loop detection.  Chains of consecutive HTTPSSVC and CNAME
records SHOULD be limited to (8?) prior to reaching terminal address
records.</t>

<t>The SvcFieldValue in this form SHOULD be an empty string and
clients MUST ignore its contents.</t>

<t>As legacy clients will not know to use this record, service
operators will likely need to retain fallback AAAA and A records
alongside this HTTPSSVC record, although in a common case
the target of the HTTPSSVC record might have better performance, and
therefore would be preferable for clients implementing this specification
to use.</t>

</section>
<section anchor="httpssvc-records-alternative-service-form" title="HTTPSSVC records: alternative service form">

<t>When SvcRecordType is “1”, the combination of SvcDomainName and
SvcFieldValue within each resource record associates an Alternative
Service Field Value with an origin.</t>

<t>The SvcFieldValue of the HTTPSSVC resource record contains an Alt-Svc
Field Value, exactly as defined in Section 4 of <xref target="AltSvc"/>,
but with the uri-host moved to the SvcDomainName field.</t>

<t>For example, if the operator of https://www.example.com
intends to include an HTTP response header like</t>

<figure><artwork><![CDATA[
Alt-Svc: h3="svc.example.net:8003"; ma=3600, \
         h2="svc.example.net:8002"; ma=3600
]]></artwork></figure>

<t>they could also publish an HTTPSSVC DNS RRSet like</t>

<figure><artwork><![CDATA[
www.example.com. 3600 IN HTTPSSVC 1 2 svc.example.net. "h3=\":8003\""
                         HTTPSSVC 1 3 svc.example.net. "h2=\":8002\""
]]></artwork></figure>

<t>This data type can be represented as an Unknown RR as described in
<xref target="RFC3597"/>:</t>

<figure><artwork><![CDATA[
www.example.com. 3600 IN TYPE??? \\# TBD:WRITEME
]]></artwork></figure>

<t>This construction is intended to be extensible in two ways.  First,
any extensions that are made to the Alt-Svc format for transmission
over HTTPS are also applicable here, unless expressly mentioned
otherwise.</t>

<t>Second, by defining a way to map non-HTTPS schemes and non-default
ports (<xref target="rrnames"/>), we provide a way for the HTTPSSVC to be used for them as needed.
However, by using the origin name for the RRName for scheme https and
port 443 we allow HTTPSSVC records to be included at the end of CNAME
chains for existing site implementations without requiring changes in
the zone containing the origin.</t>

</section>
</section>
<section anchor="differences-from-alt-svc-as-transmitted-over-http" title="Differences from Alt-Svc as transmitted over HTTP">

<t>Publishing an alternative services form HTTPSSVC record in DNS is
intended to be equivalent to transmitting this field value over HTTPS,
and receiving an HTTPSSVC record is intended to be equivalent to
receiving this field value over HTTPS.  However, there are some small
differences in the intended client and server behavior.</t>

<section anchor="omitting-max-age-and-persist" title="Omitting Max Age and Persist">

<t>When publishing an HTTPSSVC record in DNS, server operators MUST omit the
“ma” parameter, which encodes the “max age” (i.e. expiration time) of
an Alt-Svc Field Value.  Instead, server operators SHOULD encode the
expiration time in the DNS TTL, and MUST NOT set a TTL longer than the
intended “max age”.</t>

<t>When receiving an HTTPSSVC record, clients SHOULD synthesize a new “ma”
parameter from the DNS TTL if the resulting alt-value is being passed to
a subsystem that might employ caching.</t>

<t>When publishing an HTTPSSVC record, server operators MUST omit the
“persist” parameter, which indicates whether the client should use
this record on other network paths.  When receiving an HTTPSSVC record,
clients MUST discard any records that contain a “persist” flag.
Disabling persistence is important to prevent a local adversary in one
network from implanting a forged DNS record that allows them to
track users or hinder their connections after they leave that network.</t>

</section>
<section anchor="pri" title="Multiple records and preference ordering">

<t>Server operators MAY publish multiple SvcRecordType “1” HTTPSSVC
records as an RRSET.  When converting a collection of alt-values
into an HTTPSSVC RRSET, the server operator MUST set the
overall TTL to a value no larger than the minimum
of the “max age” values (following Section 5.2 of <xref target="RFC2181"/>).</t>

<t>Each RR MUST contain exactly one alt-value, as described
in Section 3 of <xref target="AltSvc"/>.</t>

<t>As RRs within an RRSET are explicitly unordered collections, the
SvcFieldPriority value is introduced to indicate priority.
HTTPSSVC RRs with a smaller SvcFieldPriority value SHOULD be given
preference over RRs with a larger SvcFieldPriority value.</t>

<t>Alt-values received via HTTPS are preferred over any Alt-value received via DNS.</t>

<t>When receiving an RRSET containing multiple HTTPSSVC records with the
same SvcFieldPriority value, clients SHOULD apply a random shuffle within a
priority level to the records before using them, to ensure randomized
load-balancing.</t>

</section>
<section anchor="constructing-alt-svc-equivalent-headers" title="Constructing Alt-Svc equivalent headers">

<t>For a client to construct the equivalent of an Alt-Svc HTTP response header:</t>

<t><list style="numbers">
  <t>For each RR, the SvcDomainName MUST be inserted as the uri-host.
If SvcDomainName is has the value “.” then the RRNAME for the final HTTPSSVC
record MUST be inserted as the uri-host.  (In the case of a CNAME 
or a HTTPSSVC SvcRecordType “0” record pointing to an HTTPSSVC record
with SvcRecordType “1” and SvcDomainName “.” then it is the
RRNAME for the terminal HTTPSSVC record that must be inserted as the uri-host.)</t>
  <t>The RRs SHOULD be ordered by increasing SvcFieldPriority, with shuffling
for equal SvcFieldPriority values.  Clients MAY choose to further
prioritize alt-values where address records are immediately
available for the alt-value’s SvcDomainName.</t>
  <t>The client SHOULD concatenate the thus-transformed-and-ordered SvcFieldValues
in the RRSET, separated by commas.  (This is semantically equivalent to
receiving multiple Alt-Svc HTTP response headers, according to Section 3.2.2
of <xref target="HTTP"/>).</t>
</list></t>

</section>
<section anchor="granularity-and-lifetime-control" title="Granularity and lifetime control">

<t>Sending Alt-Svc over HTTP allows the server to tailor the Alt-Svc
Field Value specifically to the client.  When using an HTTPSSVC DNS
record, groups of clients will necessarily receive the same Alt-Svc
Field Value.  Therefore, this standard is not suitable for uses that
require single-client granularity in Alt-Svc.</t>

<t>Some DNS caching systems incorrectly extend the lifetime of DNS
records beyond the stated TTL.  Server operators MUST NOT rely on
HTTPSSVC records expiring on time, and MAY shorten the TTL to compensate.</t>

</section>
</section>
<section anchor="client-behaviors" title="Client behaviors">

<section anchor="resolution" title="Client resolution">

<t>When attempting to resolve a name HOST, clients should follow in-order:</t>

<t><list style="numbers">
  <t>Issue parallel AAAA/A and HTTPSSVC queries for the name HOST.
The answers for these may or may not include CNAME pointers
before reaching one or more of these records.</t>
  <t>If an HTTPSSVC record of SvcRecordType “0” is returned for HOST,
clients should loop back to step 1 replacing HOST with SvcDomainName,
subject to loop detection heuristics.</t>
  <t>If one or more HTTPSSVC record of SvcRecordType “1” is returned for HOST,
clients should synthesize equivalent Alt-Svc Field Values based
on the SvcDomainName and SvcFieldValue.  If one of these alt-values
is selected to be used in a connection, the client will
need to resolve AAAA and/or A records for SvcDomainName.</t>
  <t>If only AAAA and/or A records are present for HOST (and no HTTPSSVC),
clients should make a connection to one of the IP addresses
contained in these records and proceed normally.</t>
</list></t>

<t>When selecting between AAAA and A records to use, clients may
use an approach such as <xref target="HappyEyeballsV2"/></t>

<t>Some possible optimizations are discussed in <xref target="optimizations"/>
to reduce latency impact in comparison to ordinary AAAA/A lookups.</t>

</section>
<section anchor="http-strict-transport-security" title="HTTP Strict Transport Security">

<t>By publishing an HTTPSSVC record, the server
operator indicates that all useful HTTP resources on that origin are
reachable over HTTPS, similar to HTTP Strict Transport Security
<xref target="HSTS"/>.  When an HTTPSSVC record is present for an origin,
all “http” scheme requests for that origin SHOULD logically be redirected
to “https”.</t>

<t>Prior to making an “http” scheme request, the client SHOULD perform a lookup
to determine if an HTTPSSVC record is available for that origin.  To do so,
the client SHOULD construct a corresponding “https” URL as follows:</t>

<t><list style="numbers">
  <t>Replace the “http” scheme with “https”.</t>
  <t>If the “http” URL explicitly specifies port 80, specify port 443.</t>
  <t>Do not alter any other aspect of the URL.</t>
</list></t>

<t>This construction is equivalent to Section 8.3 of <xref target="HSTS"/> , point 5.</t>

<t>If an HTTPSSVC record is present for this “https” URL, the client
should treat this as the equivalent of receiving an HTTP “302 Found”
redirect to the “https” URL.
Because HTTPSSVC is received over an often insecure channel (DNS),
clients MUST NOT place any more trust in this signal than if they
had received a 302 redirect over cleartext HTTP.</t>

<t>If the HTTPSSVC query results in a SERVFAIL error, and the connection
between the client and the recursive resolver is cryptographically protected
(e.g. using TLS <xref target="RFC7858"/> or HTTPS <xref target="RFC8484"/>), the client SHOULD
abandon the connection attempt and display an error message.  A SERVFAIL
error can occur if the domain is DNSSEC-signed, the recursive resolver is
DNSSEC-validating, and an active attacker between the recursive resolver
and the authoritative DNS server is attempting to prevent the upgrade to
HTTPS.</t>

<t>Similarly, if the client enforces DNSSEC validation on A/AAAA
RRs, it SHOULD abandon the connection attempt if the HTTPSSVC RR fails
to validate.</t>

</section>
<section anchor="cache-interaction" title="Cache interaction">

<t>If the client has an Alt-Svc cache, and a usable Alt-Svc value is
present in that cache, then the client SHOULD NOT issue an HTTPSSVC DNS
query.  Instead, the client SHOULD proceed with alternative service
connection as usual.</t>

<t>If the client has a cached Alt-Svc entry that is expiring, the
client MAY perform an HTTPSSVC query to refresh the entry.</t>

</section>
</section>
<section anchor="dns-server-behaviors" title="DNS Server Behaviors">

<t>Recursive DNS servers SHOULD resolve SvcDomainName records and include
them in the Additional Section (along with any relevant CNAME
records).  For SvcRecordType=0, recursive DNS servers SHOULD attempt
to resolve and include A, AAAA, and HTTPSSVC records.  For
SvcRecordType=1, recursive DNS servers SHOULD attempt to resolve and
include A and AAAA records.</t>

<t>Authoritative DNS servers SHOULD return A, AAAA, and HTTPSSVC records
(as well as any relevant CNAME records) in the Additional Section for
any in-bailiwick SvcDomainNames.</t>

</section>
<section anchor="optimizations" title="Performance optimizations">

<t>For optimal performance (i.e. minimum connection setup time), clients
SHOULD issue address (AAAA and/or A) and HTTPSSVC queries
simultaneously, and SHOULD implement a client-side DNS cache.
With these optimizations in place, and conforming DNS servers,
using HTTPSSVC does not add network latency to connection setup.</t>

<t>A nonconforming recursive resolver might return an HTTPSSVC response with
a nonempty SvcDomainName, without the corresponding address records.  If
all the HTTPSSVC RRs in the response have nonempty SvcDomainName values,
and the client does not have address records for any of these values in
its DNS cache, the client SHOULD perform an additional address query for
the selected SvcDomainName.</t>

<t>The additional DNS query in this case introduces a delay.  To avoid
causing a delay for clients using a nonconforming recursive resolver,
domain owners SHOULD choose the SvcDomainName to be a name in the
origin hostname’s CNAME chain if possible.  This will ensure that the required
address records are already present in the client’s DNS cache as part of the
responses to the address queries that were issued in parallel.</t>

<t>Highly performance-sensitive clients MAY implement the following special-
case shortcut to avoid increased connection time: if (1) one of the
HTTPSSVC records returned has SvcRecordType=0, (2) its SvcDomainName
is not in the DNS cache, and (3) the address queries for the
origin domain return usable IP addresses, then the client MAY ignore the
HTTPSSVC records and connect directly to the origin domain.  When the
SvcDomainNames and any needed HTTPSSVC records are available, the client
SHOULD make subsequent requests over connections specified by the HTTPSSVC
records.</t>

<t>Server operators can therefore expect that publishing HTTPSSVC records with
SvcRecordType=0 should not cause an additional DNS query for
performance-sensitive clients.  Server operators who wish to prevent this
optimization should use SvcRecordType=1.</t>

</section>
<section anchor="extensions-to-enhance-privacy" title="Extensions to enhance privacy">

<section anchor="esnikeys" title="Alt-Svc parameter for ESNI keys">

<t>An Alt-Svc “esnikeys” parameter is defined for specifying
ESNI keys corresponding to an alternative service.
The value of the parameter is an ESNIKeys structure <xref target="ESNI"/>
encoded in <xref target="base64"/>, or the empty string.  ESNI-aware
clients SHOULD prefer alt-values with nonempty esnikeys.</t>

<t>This parameter MAY also be sent in Alt-Svc HTTP response
headers and HTTP/2 ALTSVC frames.</t>

<t>The Alt-Svc specification states that “the client MAY fall back to using
the origin” in case of connection failure <xref target="AltSvc"/>.  This behavior is
not suitable for ESNI, because fallback would negate the privacy benefits of
ESNI.</t>

<t>Accordingly, any connection attempt that uses ESNI MUST fall back only to
another alt-value that also has the esnikeys parameter.  If the parameter’s
value is the empty string, the client SHOULD connect as it would in the
absence of any ESNIKeys information.</t>

<t>For example, suppose a server operator has two alternatives.  Alternative A
is reliably accessible but does not support ESNI.  Alternative B supports
ESNI but is not reliably accessible.  The server operator could include a
full esnikeys value in Alternative B, and mark Alternative A with esnikeys=””
to indicate that fallback from B to A is allowed.</t>

</section>
<section anchor="interaction-with-other-standards" title="Interaction with other standards">

<t>The purpose of this standard is to reduce connection latency and
improve user privacy.  Server operators implementing this standard
SHOULD also implement TLS 1.3 <xref target="I-D.ietf-tls-tls13"/> and OCSP Stapling
<xref target="RFC6066"/>, both of which confer substantial performance and privacy
benefits when used in combination with HTTPSSVC records.</t>

<t>To realize the greatest privacy benefits, this proposal is intended for
use with a privacy-preserving DNS transport (like DNS over TLS
<xref target="RFC7858"/> or DNS over HTTPS <xref target="RFC8484"/>).
However, performance improvements, and some modest privacy improvements,
are possible without the use of those standards.</t>

<t>This RRType could be extended to support schemes other than “https”.
Any such scheme MUST have an entry under the HTTPSSVC RRType in the IANA
DNS Underscore Global Scoped Entry Registry <xref target="Attrleaf"/>
The scheme SHOULD have an entry in the IANA URI Schemes Registry <xref target="RFC7595"/>.
The scheme SHOULD be one for which Alt-Svc is defined.</t>

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

<t>Alt-Svc Field Values are intended for distribution over untrusted
channels, and clients are REQUIRED to verify that the alternative
service is authoritative for the origin (Section 2.1 of <xref target="AltSvc"/>).
Therefore, DNSSEC signing and validation are OPTIONAL for publishing
and using HTTPSSVC records.</t>

<t>TBD: expand this section in more detail.  In particular:
* Just as with <xref target="AltSvc"/>, clients must validate the TLS server certificate
  against hostname associated with the origin.  Clients MUST NOT
  use the SvcDomainName as any part of the server TLS certificate validation.
* …</t>

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

<t>Per <xref target="RFC6895"/>, please add the following entry to the data type
range of the Resource Record (RR) TYPEs registry:</t>

<texttable>
      <ttcol align='left'>TYPE</ttcol>
      <ttcol align='left'>Meaning</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>HTTPSSVC</c>
      <c>HTTPS Service Location</c>
      <c>(This document)</c>
</texttable>

<t>Per <xref target="Attrleaf"/>, please add the following entries to the DNS Underscore
Global Scoped Entry Registry:</t>

<texttable>
      <ttcol align='left'>RR TYPE</ttcol>
      <ttcol align='left'>_NODE NAME</ttcol>
      <ttcol align='left'>Meaning</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>HTTPSSVC</c>
      <c>_https</c>
      <c>Alt-Svc for HTTPS</c>
      <c>(This document)</c>
</texttable>

<t>Per <xref target="AltSvc"/>, please add the following entries to the HTTP Alt-Svc
Parameter Registry:</t>

<texttable>
      <ttcol align='left'>Alt-Svc Parameter</ttcol>
      <ttcol align='left'>Meaning</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>esnikeys</c>
      <c>Encrypted SNI keys</c>
      <c>(This document)</c>
</texttable>

</section>
<section anchor="acknowledgements-and-related-proposals" title="Acknowledgements and Related Proposals">

<t>There have been a wide range of proposed solutions over the years to
the “CNAME at the Zone Apex” challenge proposed.  These include
<xref target="I-D.draft-bellis-dnsop-http-record-00"/>,
<xref target="I-D.draft-ietf-dnsop-aname-03"/>, and others.</t>

<t>Thank you to Ian Swett, Ralf Weber, Jon Reed, 
Martin Thompson, Lucas Pardue, Ilari Liusvaara,
and others for their feedback and suggestions on this draft.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference anchor="ESNI">
<front>
<title>Encrypted Server Name Indication for TLS 1.3</title>

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

<author initials='K' surname='Oku' fullname='Kazuho Oku'>
    <organization />
</author>

<author initials='N' surname='Sullivan' fullname='Nick Sullivan'>
    <organization />
</author>

<author initials='C' surname='Wood' fullname='Christopher Wood'>
    <organization />
</author>

<date month='March' day='11' year='2019' />

<abstract><t>This document defines a simple mechanism for encrypting the Server Name Indication for TLS 1.3.</t></abstract>

</front>

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



<reference anchor="HTTP3">
<front>
<title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>

<author initials='M' surname='Bishop' fullname='Mike Bishop'>
    <organization />
</author>

<date month='April' day='23' year='2019' />

<abstract><t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment.  This document describes a mapping of HTTP semantics over QUIC.  This document also identifies HTTP/2 features that are subsumed by QUIC, and describes how HTTP/2 extensions can be ported to HTTP/3.</t></abstract>

</front>

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



<reference  anchor="AltSvc" target='https://www.rfc-editor.org/info/rfc7838'>
<front>
<title>HTTP Alternative Services</title>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<author initials='P.' surname='McManus' fullname='P. McManus'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke'><organization /></author>
<date year='2016' month='April' />
<abstract><t>This document specifies &quot;Alternative Services&quot; for HTTP, which allow an origin's resources to be authoritatively available at a separate network location, possibly accessed with a different protocol configuration.</t></abstract>
</front>
<seriesInfo name='RFC' value='7838'/>
<seriesInfo name='DOI' value='10.17487/RFC7838'/>
</reference>



<reference  anchor="RFC6454" target='https://www.rfc-editor.org/info/rfc6454'>
<front>
<title>The Web Origin Concept</title>
<author initials='A.' surname='Barth' fullname='A. Barth'><organization /></author>
<date year='2011' month='December' />
<abstract><t>This document defines the concept of an &quot;origin&quot;, which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named &quot;Origin&quot;, that indicates which origins are associated with an HTTP request.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6454'/>
<seriesInfo name='DOI' value='10.17487/RFC6454'/>
</reference>



<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<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="RFC1035" target='https://www.rfc-editor.org/info/rfc1035'>
<front>
<title>Domain names - implementation and specification</title>
<author initials='P.V.' surname='Mockapetris' fullname='P.V. Mockapetris'><organization /></author>
<date year='1987' month='November' />
<abstract><t>This RFC is the revised specification of the protocol and format used in the implementation of the Domain Name System.  It obsoletes RFC-883. This memo documents the details of the domain name client - server communication.</t></abstract>
</front>
<seriesInfo name='STD' value='13'/>
<seriesInfo name='RFC' value='1035'/>
<seriesInfo name='DOI' value='10.17487/RFC1035'/>
</reference>



<reference  anchor="RFC3597" target='https://www.rfc-editor.org/info/rfc3597'>
<front>
<title>Handling of Unknown DNS Resource Record (RR) Types</title>
<author initials='A.' surname='Gustafsson' fullname='A. Gustafsson'><organization /></author>
<date year='2003' month='September' />
<abstract><t>Extending the Domain Name System (DNS) with new Resource Record (RR) types currently requires changes to name server software.  This document specifies the changes necessary to allow future DNS implementations to handle new RR types transparently.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='3597'/>
<seriesInfo name='DOI' value='10.17487/RFC3597'/>
</reference>



<reference  anchor="RFC2181" target='https://www.rfc-editor.org/info/rfc2181'>
<front>
<title>Clarifications to the DNS Specification</title>
<author initials='R.' surname='Elz' fullname='R. Elz'><organization /></author>
<author initials='R.' surname='Bush' fullname='R. Bush'><organization /></author>
<date year='1997' month='July' />
<abstract><t>This document considers some areas that have been identified as problems with the specification of the Domain Name System, and proposes remedies for the defects identified. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2181'/>
<seriesInfo name='DOI' value='10.17487/RFC2181'/>
</reference>



<reference  anchor="HappyEyeballsV2" target='https://www.rfc-editor.org/info/rfc8305'>
<front>
<title>Happy Eyeballs Version 2: Better Connectivity Using Concurrency</title>
<author initials='D.' surname='Schinazi' fullname='D. Schinazi'><organization /></author>
<author initials='T.' surname='Pauly' fullname='T. Pauly'><organization /></author>
<date year='2017' month='December' />
<abstract><t>Many communication protocols operating over the modern Internet use hostnames.  These often resolve to multiple IP addresses, each of which may have different performance and connectivity characteristics.  Since specific addresses or address families (IPv4 or IPv6) may be blocked, broken, or sub-optimal on a network, clients that attempt multiple connections in parallel have a chance of establishing a connection more quickly.  This document specifies requirements for algorithms that reduce this user-visible delay and provides an example algorithm, referred to as &quot;Happy Eyeballs&quot;.  This document obsoletes the original algorithm description in RFC 6555.</t></abstract>
</front>
<seriesInfo name='RFC' value='8305'/>
<seriesInfo name='DOI' value='10.17487/RFC8305'/>
</reference>



<reference  anchor="HSTS" target='https://www.rfc-editor.org/info/rfc6797'>
<front>
<title>HTTP Strict Transport Security (HSTS)</title>
<author initials='J.' surname='Hodges' fullname='J. Hodges'><organization /></author>
<author initials='C.' surname='Jackson' fullname='C. Jackson'><organization /></author>
<author initials='A.' surname='Barth' fullname='A. Barth'><organization /></author>
<date year='2012' month='November' />
<abstract><t>This specification defines a mechanism enabling web sites to declare themselves accessible only via secure connections and/or for users to be able to direct their user agent(s) to interact with given sites only over secure connections.  This overall policy is referred to as HTTP Strict Transport Security (HSTS).  The policy is declared by web sites via the Strict-Transport-Security HTTP response header field and/or by other means, such as user agent configuration, for example. [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6797'/>
<seriesInfo name='DOI' value='10.17487/RFC6797'/>
</reference>



<reference  anchor="RFC7858" target='https://www.rfc-editor.org/info/rfc7858'>
<front>
<title>Specification for DNS over Transport Layer Security (TLS)</title>
<author initials='Z.' surname='Hu' fullname='Z. Hu'><organization /></author>
<author initials='L.' surname='Zhu' fullname='L. Zhu'><organization /></author>
<author initials='J.' surname='Heidemann' fullname='J. Heidemann'><organization /></author>
<author initials='A.' surname='Mankin' fullname='A. Mankin'><organization /></author>
<author initials='D.' surname='Wessels' fullname='D. Wessels'><organization /></author>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<date year='2016' month='May' />
<abstract><t>This document describes the use of Transport Layer Security (TLS) to provide privacy for DNS.  Encryption provided by TLS eliminates opportunities for eavesdropping and on-path tampering with DNS queries in the network, such as discussed in RFC 7626.  In addition, this document specifies two usage profiles for DNS over TLS and provides advice on performance considerations to minimize overhead from using TCP and TLS with DNS.</t><t>This document focuses on securing stub-to-recursive traffic, as per the charter of the DPRIVE Working Group.  It does not prevent future applications of the protocol to recursive-to-authoritative traffic.</t></abstract>
</front>
<seriesInfo name='RFC' value='7858'/>
<seriesInfo name='DOI' value='10.17487/RFC7858'/>
</reference>



<reference  anchor="RFC8484" target='https://www.rfc-editor.org/info/rfc8484'>
<front>
<title>DNS Queries over HTTPS (DoH)</title>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<author initials='P.' surname='McManus' fullname='P. McManus'><organization /></author>
<date year='2018' month='October' />
<abstract><t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS.  Each DNS query-response pair is mapped into an HTTP exchange.</t></abstract>
</front>
<seriesInfo name='RFC' value='8484'/>
<seriesInfo name='DOI' value='10.17487/RFC8484'/>
</reference>



<reference  anchor="base64" target='https://www.rfc-editor.org/info/rfc4648'>
<front>
<title>The Base16, Base32, and Base64 Data Encodings</title>
<author initials='S.' surname='Josefsson' fullname='S. Josefsson'><organization /></author>
<date year='2006' month='October' />
<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="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='March' day='20' 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.  This document updates RFCs 4492, 5705, and 6066 and it obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t></abstract>

</front>

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



<reference  anchor="RFC6066" target='https://www.rfc-editor.org/info/rfc6066'>
<front>
<title>Transport Layer Security (TLS) Extensions: Extension Definitions</title>
<author initials='D.' surname='Eastlake 3rd' fullname='D. Eastlake 3rd'><organization /></author>
<date year='2011' month='January' />
<abstract><t>This document provides specifications for existing TLS extensions.  It is a companion document for RFC 5246, &quot;The Transport Layer Security (TLS) Protocol Version 1.2&quot;.  The extensions specified are server_name, max_fragment_length, client_certificate_url, trusted_ca_keys, truncated_hmac, and status_request.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6066'/>
<seriesInfo name='DOI' value='10.17487/RFC6066'/>
</reference>



<reference anchor="Attrleaf">
<front>
<title>DNS Scoped Data Through "Underscore" Naming of Attribute Leaves</title>

<author initials='D' surname='Crocker' fullname='Dave Crocker'>
    <organization />
</author>

<date month='November' day='16' year='2018' />

<abstract><t>Formally, any DNS resource record may occur under any domain name. However some services use an operational convention for defining specific interpretations of an RRset, by locating the records in a DNS branch, under the parent domain to which the RRset actually applies.  The top of this subordinate branch is defined by a naming convention that uses a reserved node name, which begins with an _underscore.  The underscored naming construct defines a semantic scope for DNS record types that are associated with the parent domain, above the underscored branch.  This specification explores the nature of this DNS usage and defines the "DNS Global Underscore Scoped Entry Registry" with IANA.  The purpose of the Underscore registry is to avoid collisions resulting from the use of the same underscore-based name, for different services.</t></abstract>

</front>

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



<reference  anchor="RFC7595" target='https://www.rfc-editor.org/info/rfc7595'>
<front>
<title>Guidelines and Registration Procedures for URI Schemes</title>
<author initials='D.' surname='Thaler' fullname='D. Thaler' role='editor'><organization /></author>
<author initials='T.' surname='Hansen' fullname='T. Hansen'><organization /></author>
<author initials='T.' surname='Hardie' fullname='T. Hardie'><organization /></author>
<date year='2015' month='June' />
<abstract><t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes.  It obsoletes RFC 4395.</t></abstract>
</front>
<seriesInfo name='BCP' value='35'/>
<seriesInfo name='RFC' value='7595'/>
<seriesInfo name='DOI' value='10.17487/RFC7595'/>
</reference>



<reference anchor="AltSvcSNI">
<front>
<title>The "SNI" Alt-Svc Parameter</title>

<author initials='M' surname='Bishop' fullname='Mike Bishop'>
    <organization />
</author>

<date month='May' day='24' year='2018' />

<abstract><t>HTTP Alternative Services provides a mechanism for an origin to declare that its content is accessible via some other combination of host, port, and protocol.  In the process of using such an alternative, an observer can identify that the client is requesting resources from a particular hostname.  This document extends HTTP Alternative Services, in combination with Secondary Certificate Authentication, to enable clients not to disclose the origin to which they intend to connect.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-bishop-httpbis-sni-altsvc-02' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-bishop-httpbis-sni-altsvc-02.txt' />
</reference>




    </references>

    <references title='Informative References'>





<reference  anchor="DNSTerm" target='https://www.rfc-editor.org/info/rfc8499'>
<front>
<title>DNS Terminology</title>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<author initials='A.' surname='Sullivan' fullname='A. Sullivan'><organization /></author>
<author initials='K.' surname='Fujiwara' fullname='K. Fujiwara'><organization /></author>
<date year='2019' month='January' />
<abstract><t>The Domain Name System (DNS) is defined in literally dozens of different RFCs.  The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has sometimes changed in the decades since the DNS was first defined.  This document gives current definitions for many of the terms used in the DNS in a single document.</t><t>This document obsoletes RFC 7719 and updates RFC 2308.</t></abstract>
</front>
<seriesInfo name='BCP' value='219'/>
<seriesInfo name='RFC' value='8499'/>
<seriesInfo name='DOI' value='10.17487/RFC8499'/>
</reference>



<reference  anchor="HTTP" target='https://www.rfc-editor.org/info/rfc7230'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the &quot;http&quot; and &quot;https&quot; Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='7230'/>
<seriesInfo name='DOI' value='10.17487/RFC7230'/>
</reference>



<reference  anchor="RFC6895" target='https://www.rfc-editor.org/info/rfc6895'>
<front>
<title>Domain Name System (DNS) IANA Considerations</title>
<author initials='D.' surname='Eastlake 3rd' fullname='D. Eastlake 3rd'><organization /></author>
<date year='2013' month='April' />
<abstract><t>This document specifies Internet Assigned Numbers Authority (IANA) parameter assignment considerations for the allocation of Domain Name System (DNS) resource record types, CLASSes, operation codes, error codes, DNS protocol message header bits, and AFSDB resource record subtypes.  It obsoletes RFC 6195 and updates RFCs 1183, 2845, 2930, and 3597.</t></abstract>
</front>
<seriesInfo name='BCP' value='42'/>
<seriesInfo name='RFC' value='6895'/>
<seriesInfo name='DOI' value='10.17487/RFC6895'/>
</reference>



<reference anchor="I-D.draft-bellis-dnsop-http-record-00">
<front>
<title>A DNS Resource Record for HTTP</title>

<author initials='R' surname='Bellis' fullname='Ray Bellis'>
    <organization />
</author>

<date month='November' day='3' year='2018' />

<abstract><t>This document specifies an "HTTP" resource record type for the DNS to facilitate the lookup of the server hostname of HTTP(s) URIs.  It is intended to replace the use of CNAME records for this purpose, and in the process provides a solution for the inability of the DNS to allow a CNAME to be placed at the apex of a domain name.</t></abstract>

</front>

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



<reference anchor="I-D.draft-ietf-dnsop-aname-03">
<front>
<title>Address-specific DNS aliases (ANAME)</title>

<author initials='T' surname='Finch' fullname='Tony Finch'>
    <organization />
</author>

<author initials='E' surname='Hunt' fullname='Evan Hunt'>
    <organization />
</author>

<author initials='P' surname='Dijk' fullname='Peter van Dijk'>
    <organization />
</author>

<author initials='A' surname='Eden' fullname='Anthony Eden'>
    <organization />
</author>

<author initials='W' surname='Mekking' fullname='Willem Mekking'>
    <organization />
</author>

<date month='April' day='15' year='2019' />

<abstract><t>This document defines the "ANAME" DNS RR type, to provide similar functionality to CNAME, but only for type A and AAAA queries.  Unlike CNAME, an ANAME can coexist with other record types.  The ANAME RR allows zone owners to make an apex domain name into an alias in a standards compliant manner.</t></abstract>

</front>

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



<reference  anchor="RFC2782" target='https://www.rfc-editor.org/info/rfc2782'>
<front>
<title>A DNS RR for specifying the location of services (DNS SRV)</title>
<author initials='A.' surname='Gulbrandsen' fullname='A. Gulbrandsen'><organization /></author>
<author initials='P.' surname='Vixie' fullname='P. Vixie'><organization /></author>
<author initials='L.' surname='Esibov' fullname='L. Esibov'><organization /></author>
<date year='2000' month='February' />
<abstract><t>This document describes a DNS RR which specifies the location of the server(s) for a specific protocol and domain.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2782'/>
<seriesInfo name='DOI' value='10.17487/RFC2782'/>
</reference>




    </references>


<section anchor="additional-examples" title="Additional examples">

<section anchor="equivalence-to-alt-svc-records" title="Equivalence to Alt-Svc records">

<t>The following:</t>

<figure><artwork><![CDATA[
www.example.com.  2H  IN CNAME   svc.example.net.
example.com.      2H  IN HTTPSSVC 0 0 svc.example.net.
svc.example.net.  2H  IN HTTPSSVC 1 2 svc3.example.net. "h3=\":8003\"; \
                                   esnikeys=\"ABC...\""
svc.example.net.  2H  IN HTTPSSVC 1 3 . "h2=\":8002\"; \
                                   esnikeys=\"123...\""
]]></artwork></figure>

<t>is equivalent to the Alt-Svc record:</t>

<figure><artwork><![CDATA[
Alt-Svc: h3="svc3.example.net:8003"; esnikeys="ABC..."; ma=7200, \
         h2="svc.example.net:8002"; esnikeys="123..."; ma=7200
]]></artwork></figure>

<t>for the origins of both “https://www.example.com” and “https://example.com”.</t>

</section>
</section>
<section anchor="comparison-with-alternatives" title="Comparison with alternatives">

<t>The HTTPSSVC record type closely resembles some existing record types
and proposals.  A complaint with all of the alternatives is that
web clients have seemed unenthusiastic about implementing them.
The hope here is that by providing an extensible solution that solves
multiple problems we will overcome the inertia and have a path
to achieve client implementation.</t>

<section anchor="differences-from-the-srv-rrtype" title="Differences from the SRV RRTYPE">

<t>An SRV record <xref target="RFC2782"/> can perform a similar function to the HTTPSSVC record,
informing a client to look in a different location for a service.
However, there are several differences:</t>

<t><list style="symbols">
  <t>SRV records are typically mandatory, whereas clients will always
continue to function correctly without making use of Alt-Svc or HTTPSSVC.</t>
  <t>SRV records cannot instruct the client to switch or upgrade
protocols, whereas Alt-Svc can signal such an upgrade (e.g. to
HTTP/2).</t>
  <t>SRV records are not extensible, whereas Alt-Svc and thus HTTPSSVC can be extended with
new parameters.  For example, this is what allows the incorporation of
ESNI keys in HTTPSSVC.</t>
  <t>Using SRV records would not allow a client to skip processing of the
Alt-Svc information in a subsequent connection, so it does not confer
a performance advantage.</t>
</list></t>

</section>
<section anchor="differences-from-the-proposed-http-record" title="Differences from the proposed HTTP record">

<t>Unlike <xref target="I-D.draft-bellis-dnsop-http-record-00"/>, this approach is
extensible to cover Alt-Svc and ESNIKeys use-cases.  Like that
proposal, this addresses the zone apex CNAME challenge.</t>

<t>Like that proposal it remains necessary to continue to include
address records at the zone apex for legacy clients.</t>

</section>
<section anchor="differences-from-the-proposed-aname-record" title="Differences from the proposed ANAME record">

<t>Unlike <xref target="I-D.draft-ietf-dnsop-aname-03"/>, this approach is extensible to
cover Alt-Svc and ESNIKeys use-cases.  This approach also does not
require any changes or special handling on either authoritative or
master servers, beyond optionally returning in-bailiwick additional records.</t>

<t>Like that proposal, this addresses the zone apex CNAME challenge
for clients that implement this.</t>

<t>However with this HTTPSSVC proposal it remains necessary to continue
to include address records at the zone apex for legacy clients.
If deployment of this standard is successful, the number of legacy clients
will fall over time.  As the number of legacy clients declines, the operational
effort required to serve these users without the benefit of HTTPSSVC indirection
should fall.  Server operators can easily observe how much traffic reaches this
legacy endpoint, and may remove the apex’s address records if the observed legacy
traffic has fallen to negligible levels.</t>

</section>
<section anchor="differences-from-the-proposed-esni-record" title="Differences from the proposed ESNI record">

<t>Unlike <xref target="ESNI"/>, this approach is extensible and covers
the Alt-Svc case as well as addresses the zone apex CNAME challenge.</t>

<t>By using the Alt-Svc model we also provide a way to solve
the ESNI multi-CDN challenges in a general case.</t>

<t>Unlike ESNI, this is focused on the specific case of HTTPS,
although this approach could be extended for other protocols.
It also allows specifying ESNI keys for a specific port, not an entire host.</t>

</section>
<section anchor="sni-alt-svc-parameter" title="SNI Alt-Svc parameter">

<t>Defining an Alt-Svc sni= parameter
(such as from <xref target="AltSvcSNI"/>) would
have provided some benefits to clients and servers not implementing ESNI,
such as for specifying that “_wildcard.example.com” could be sent as an SNI
value rather than the full name.  There is nothing precluding HTTPSSVC from
being used with an sni= parameter if one were to be defined, but it
is not included here to reduce scope, complexity, and additional potential
security and tracking risks.</t>

</section>
</section>
<section anchor="design-considerations-and-open-issues" title="Design Considerations and Open Issues">

<t>This draft is intended to be a work-in-progress for discussion.
Many details are expected to change with subsequent refinement.
Some known issues or topics for discussion are listed below.</t>

<section anchor="record-name" title="Record Name">

<t>Naming is hard.  The “HTTPSSVC” is proposed as a placeholder.
Other names for this record might include ALTSVC,
HTTPS, HTTPSSRV, B, or something else.</t>

</section>
<section anchor="applicability-to-other-schemes" title="Applicability to other schemes">

<t>The focus of this record is on optimizing the common case of the
“https” scheme.  It is worth discussing whether this is a valid
assumption or if a more general solution is applicable.  Past efforts
to over-generalize have not met with broad success.</t>

</section>
<section anchor="wire-format" title="Wire Format">

<t>Advice from experts in DNS wire format best practices would be greatly
appreciated to refine the proposed details, overall.</t>

</section>
<section anchor="extensibility-of-svcrecordtype" title="Extensibility of SvcRecordType">

<t>Only values of “0” and “1” are allowed for SvcRecordType.  Should we give
more thought to potential future values?  The current version tries to
leave this open by indicating that resource records with unknown
SvcRecordType values should be ignored (and perhaps should be switched
to MUST be ignored)?</t>

</section>
<section anchor="where-to-include-priority" title="Where to include Priority">

<t>The SvcFieldPriority could alternately be included as a pri= Alt-Svc attribute.
It wouldn’t be applicable for Alt-Svc returned via HTTP, but it is also
not necessarily needed by DNS servers.  It is also not used when SvcRecordType=0.
A related question is whether to omit it from the textual representation
when SvcRecordType=0.  Regardless, having a series of sequential numeric
values in the textual representation has risk of user error, especially
as MX, SRV, and others all have their own variations here.</t>

</section>
<section anchor="whether-to-include-weight" title="Whether to include Weight">

<t>Some other similar mechanisms such as SRV have a weight in-addition
to priority.  That is excluded here for simplicity.  It could always be
added as an optional Alt-Svc attribute.</t>

</section>
</section>
<section anchor="change-history" title="Change history">

<t><list style="symbols">
  <t>draft-nygren-httpbis-httpssvc-02
  <list style="symbols">
      <t>Remove the redundant length fields from the wire format.</t>
      <t>Define aSvcDomainName of “.” for SvcRecordType=1 
as being the HTTPSSVC RRNAME.</t>
      <t>Replace “hq” with “h3”.</t>
    </list></t>
  <t>draft-nygren-httpbis-httpssvc-01
  <list style="symbols">
      <t>Fixes of record name.  Replace references to “HTTPSVC” with “HTTPSSVC”.</t>
    </list></t>
  <t>draft-nygren-httpbis-httpssvc-00
  <list style="symbols">
      <t>Initial version</t>
    </list></t>
</list></t>

</section>


  </back>

<!-- ##markdown-source:
H4sIAPOrI10AA+V9W3fbRrbme/0KNPMQqQ/J6ObE0awst2wpHZ/x7UhyMj2T
WVkgCYk4JgE2CpTMdvu/z/72paoAUrJ75ryNenUskUBddu37rUajkWvLdlGc
Zr9cX7+7uvr1ReaL5q6cFtminuZtWVdZXs2yVd7ky6Itmsyviml5U+p3d2We
tfMiO39zle3hPzbMvssnk6a4Swa+vMxu6gaPulk9rWi802zW5DftqNrcNkU1
mrftalJ6/tf7u+no4MjN8pYe+3R+dn3x2dGkxW3dbE4z386cK1fNadY2a98e
HRz8SA/nTZGfZn8tqqLJF+6+bj7cNvV6JWvIfqO/y+o2+ys+cx+KDT0wO81e
VrStqmhH51iLc76lDf+RL+qKJt4U3q3K0+x/tfV0mPm6aZvixtNvmyV++d/O
5et2XjenLhu5jH7Kyp9mz8fZ1XR+nzftP/hD2evzoup+XDe3eVX+gyFJy67r
20XBXxTLvFycZhP610//cstfjKf1sjPJ63H2vPTzepVM8br8UKSf0gyn2dmH
nMbLrovpvKoX9W1Je0pmWU74+b8Ud8Xf18VNvR5Pis5EF+PsDR9QMtFFU35I
P/2aiQp659/Kor35i5z3mF5yrqqbJUHgrjilA61ukr9Go1GWT3zb5FM6lut5
6TPCm/WyqFrDwsITdmYDQ7EB42FT+HrdEAY3xZROOGs3qyJra3eTT8tF2RIO
Mcou6vrDepXVN1mYlhC6KopZQe/U2TInWE7rqiqm+MYDeR3PlL2/fOnHWXZN
owTsxsyE4UvaPB2qX2b5YlHf8/rkpbopb8vKzWvfAoaYYlIwtdF8N029zJbr
RVuuFgUtogXyGikSvhX5dJ7dl+3c5d7X05I2kRClz/b8mh7IPZFDXvkV4Wm2
ampC2nrB9EvYDtSnTdIpEG2AEItq2mxWLT6/fnWVXb15uU+betnSyn2N1+/K
GQBMaL9YM3DwFoGOzimfAJQbQM/In/bDW6YXXrw5e32hG1wt8imtNW/5wXxV
fHT0Uk5HSVhRMTrRrD/TkIvFZpiVbTrzfb7BMGU1A8PBuek4Cky/XmGvXkEM
ANXrNpvnd9gVvQlcIFjwb7OSEKIlYPIy6QE3XZSETF6+XtZ3cpxyGJhlUtct
8G+1wnC0LjoLP3bu+SaMQc8RXqYYJNuOr9LmaZ8KpaErW8MMQDNZwaLImwoA
zRdgSEwFAQNoSHqcEbdsspuy8a0j3GyJNHjXCVAYMWlNeUOocFswudQ3N8CS
Vd3SX3T+NFxV3JQ8sZvU9P6qaHgLFdENM/ymvMunG9rs9dvs+UV2efH67a8X
56cyNoFiVXsah/fuVwTZWTbZ8JuT3NMfBAiCNuYGv1/7/LYIb/nMsPXs1TXR
zjA7A8IM+fULwsP/fvE3Eif0/X2xIPz1jpjxbcaMGSAn3KAJGWh00kV2dfkr
7Z3Q5WZdMa3SwoiX0QYWtABXLommAAbQGT2HMwamg359uiomMsU+0C29SMiT
0xA2cDYh7CIpEyG52BAAiDWv6LwmRLp8GDwQQbVohrZVdz8vIEr1kAC4RZ3P
RpN8AZgTgUyb2vvIA8AnFOuwHtA4fzd6cf5mf+x+XjcYf0lIMcTh00Z41nw2
S455SmchiEafYzT8oxAS7uiEDeIYR/YlAHtGP9+dKZMkZifslwB/S7to22K5
EqwN4MrWFRjyzN2AKTH7YmotBDoeCwGSEidKzinykPQkhi6evc6Axfua2Gbx
kTbnS+U/ujXCBs9PlMtykTd0Xu2aTolY8YJQ4LYA0UKcLMvZjGSs+wZSv6ln
a14GhEvR0VMYrWkeFQU6A22yWi8npATRkuPYLFhocuFBRtHA5ci/7+clnWnC
WPkwqrAbWtSynhULwemKFml7yda+GMk5GnujTfOECfNQ8nXJ+YIn2+FiMf23
CeZLvMrMZEvaOWybDvwmJ6QLOqEKAOM0zv0GrLZ1QHYGyZkno/E0RUvoabKZ
lhTkmGOaCXKShCtj9IZogRYmy8N7CyL1M2zlO1oF8DOci43qBKd9b52ZyVxj
jeCOM+IQECn36Q50v9j89Yt3GcvRk5PjIUmrrKoJDiJvsgsRnbRd4lbZp09/
Atf66eXofAz9ZtQu/KjwVfn5M2EyQE+UWqQLMnjWdG55S4ud1QQSzMAMLVcW
h3WswHEqFalET3n2D9JMWZBGqY/9DlhtPv3uu+JjDo4HhXFAnOIXoJMQR7vO
RZWZFJua1sWyC9CPAopgSZwT3JXlUZdnuETOCbcmaUZDzMvbOTFCXnQOLggk
KCtC4H/ItiPZkO5dzUZtU64YMoagOussCkJeW4LOydSEd98kFEwGQXYhe3bu
jDWuMv1O4TGEJlNAFtonkeSxlAQhz/6N0cuwaUnbawlmpJNCnb2/vx8nMCak
OvqF9KY3ekZZRqZLeIBUubEowZ038KNvhUUc0P92vtr/cPvVw+wITx13HxvM
j3/6fXD69ODg+PfBf8t+d9nX/QB1iU17enk8Hv8+GHz1Ko7x1FF/FUe6iqP/
mlX0xj8+OMAqzvS1wx+Pxgfjo/HRFx7HAeMQDg4OT2eTp6en4YXjrxr/+AuP
b40vL7iXQmoraEcsBQJ6sh6mCvUgJWKgpxv00G5gvASMzbNSQuKUdS+iIRIa
gcmQGFvVRBHesRoIXcNng95xDrI9ZsPb00DNLKu1KtQ0sDMFn+eDJgUM+O6I
2eodmXrMAuA4IL5KLFwIf0naSVmBr8CvQERGvKx/OqI9Bc4LlGHS5PGPt8d3
j4yfyfjH2+O/P4/jH4/dWcU6JysmNINZluDaJbirKOs4FDxFOuWaJqEJO0fE
zGwbdmILFEFaKJ+FhPdzSEnT3QmqW8dFgBXxqnK0uh0GQXVfknKkJ8Pstm2K
nOQWTCx2SMDOhQEhSOL5yHcJCMEt+6a/gSFE6wqT3xULGANgvH+toSwroiZa
k6hRt/Rt8mWiUQUDsWN2iVwn1kz7IwbeU2DwZmWGIKmTxIL/nL0zA3ELZL3N
s3ZoKveQ6C9nQ4KBnhjPiUmdqO+mlcbzoAGIeunFtpyuSTU7ZYr+M/ZhikE8
q0zMzQUbsKQhAFDHrCKIz4sVBRJ6U3Z3jY4OPn/O9v7j/csX0YTfV1a5Tchh
3nrS5opUqoXQMOCaW5vKt4YhSJ6b2kFPr5dqX9Mh7YAsKyaYx8N5EaFHawlq
iNGR34c9Ns1X4iaAmyY8Y6D4/JkfAt8q7tiLJMqQGJJhIhgy7SZR3IJRhsGA
IqY60QjRdtuY64Amp39uCxhL0bi6vIw6Ik/D2iGN8DP8IsaQy5u+rGcWlHI/
gZgnCE/n7O2aFO19QUQLHY1RqCmKjEw2j82aTVdUd2VTwyT1w6BlBAixjssC
BAggy6RJ2Gm0pF3xSUwwiWi96j2alczdq1aHr3j8MZ3yRQWOKTxsp4nMXofH
VUxaSYfh7QdT+goIe3NTTkUjvBXvK+F9IdPSm2TYFLfiHaGZ5JxlDUavG6PV
jq8s6yunYCFVcJAUWarUqzHAEwZND/Q+Co6DkrCc4DATlomp9q72jR3Ra6CE
4C1glVnJGouDl0HPapglvonMxsuzBWm8rXqBmJJ40XxwU1q36fdAk5pJUkCu
fsrE5mXOx6SVM9Jj/7ABeSHxcFj07wtXfnsHki3uH2DMkGzriVd7bNKUxY1o
7NOmnChudCzgisR8VVej4J8l3CPe1oy3reU5WyDrBk6jZU4aN4nPxcwTrz4c
Z1d300ve3/VmVZwScpMtUDTlNLtZ5Lfm2QOs5yQZ2NdHh0vaEfv5wOh42X9f
A01lXJOLg4MB+wvNO+ije5AWxd4xlnzsoWZqDW8efuWbu3xxGI3sRDJvxBY5
4j3+jKW9a0pG5lN2Da/0LzmR0ts57zXFQkYEAwdj8pBNwqZJPhKjUi2DwEAk
TRoblKyz1WpBq2UnEzbRASyQBLvirRIV8rD3pS/4cHg4wIuG2TvXM2dt5NMn
WuXnz+N9d8zbOGev7Bv28WMPiZeWDaeS+SirGcL+8oZ4K+mOcwkEbC/qYMB8
Hq+sm3IEFtgfVYbbCWiTPzLDzj2TiXsSj+BXbJXQrMrOkhGvzH+BRxQcivvq
ChEc2VpDXICJi3TtUVcsbfcRgNleXRGJPbju3jnBo7ahvbgXtTJIWpgY5NN1
47EmVZYaVf/U55MSiGIYPygu+70QtRBH6zAIF2Nm+/wJEdyare5iaVrqWVTF
roRvOD0sKIV15cF6X6gux74aRQ8YH/YIHGmkpc9I4ddhEw3P2JFMHiX/9pYd
Qd/2SwoW8Xnwmcf2lQCBhCAA2dUNOfBCoIREzdsWKl9ZjSZkXpT35fRDd2yM
KzMwxw5+pgchpbqtgiCVbeCZdFjNxrxnO+l4ix+zo3CmkqCupsWqdebliIYF
hy92IL557OlJFoZ5M3OkiNGTNPtPlz+/+OHp8VNiAxleHtFnwuEKz/p2x0+Z
zfI2z8RZiX0lZJTSj4WwUp1VZGLTN1E6WjpNx/avrYOJOmOqHsCD09JKMvEE
8YtNQUzSq7gGl3VZ6iqi4WzDcgz0qKgCScSmVG+TDQttKlcEYcFOY4qSkNX4
iM3Rw/FhtE2PIBVVyzR3PNzeJKlBHNFJ3tb14kPZCijm6t0mJCCSuVlzqM4V
pMZNA2BknQzdsIYHQkQdOI7dLyRJ7rCcZc5hb1AlXt0p1KLbT6NKxhYTh2Wh
gSdTuKYwOSUCW0/uynrtO1GkKXH6U8xKNsJ9XspxIUZDrIvxNPEPszCVw9gL
Sjq7CuEpJBYl4S8XfJIPb4QhWyay05hKEh0rnHiVkxWIa349IRFLTLshyMHI
ZalFI3+bxAMI4Qk6gl1i0oqRwsFoti/Z46n4v8rbuapMHRFlbFHm2IHtMB3q
9e3cqe6bmkAEMMIqQ+yUJoYxGmjS1kGDVdVbJe0oqt0BSx3in2AkMJpktYks
E8G5rVqO3ZmhJRxa5d3OkOiM1hKkmXFlB5XYfyhXPKZgwKJzJByGrKeIKqTG
NCl0Ow5enRMJKzagJrZqL4uAD105HVts+SNvO8YsLHrCSDEz46SreoBhmusy
2/v0yX4ne1dUKg5w4kvfNuspx6mY45jkOCHGQoAO5rzagCBfmiwJ2vNh0gDw
t3TjHMwD+XsE9oO3CSACjK4LcBRkaGycg8VLQPelJ/yebgR/gmz4/JkwCnCp
V6If39QW+I46sEgJUrkGso4Bm8lVBwU0JSP3onX+iWTO9ydPTkjm0KsAy6DD
aQZm9RgXNv1cke2+Xi8g4jktQnTPfDrVKGASaDGdgzQk8CSCq57rWFe8A5Nk
+Yk9na6BkRZ/q9IYImFnmqmCJIZkAQpaLya2n5J+RZphu1mRKg8jWVxvg33I
NqZWnJ+oGrl4KdOHT06Ooe+6s66XrI0HqnzKq+sxnGzr9GCf0QtAAEj9pyc/
/ogTYPYE/+c9azWD1++vrkna8r/Zm7f8++XFf7x/eXlxjt+vfjl79Sr84vSJ
q1/evn91Hn+Lb754+/r1xZtzeZk+zTofucHrs78NZM+Dt++uX759c/ZqEKRy
pNbGkmaCjci+bDdLLZrnL95lhyeKYkeHh7RB/ePp4Q+Eb4wuMlnQzyXe6JCs
kTfscIR3NV+RhrIQY9+TdUr0RfggRNTN/UkSjXrW8a58pL3Ly31JSqLfrv/2
7iJ79uzZvqOtrtV7Ly7sxPnWQb2SUzQMcwIGisnJulBu2TpQZ4LOzpOXIFZi
3MzVr69fkQKfex8X3NVG+4btY9GbrsDoMEXnJAK6permwRsgNlk0McluhNnI
Nu3WKsokFK8Uzrku2cHo+ydPjp/wK8lihJ6j4SZR2Z485kynFoLKKRgftt2U
ZPLFLRY0X6oqClslZAJExPD9+GKMW6sZ4TumJOFrFJNMn+DaUeqen12fZb+R
RIS7ko5YFiMfm5ma2g4JDxJ9PiMJM23JbmcfjMh2dnGlWx2mZAb+yjx9XSEF
hJbZPbi9A+Dt0ZMnqoAwaYkXA57DA7F2YfWKuJ0xLe3zYo5sMek6ugeeW1S3
uJUjV/UKnrRNC2Y7K5px9vJmpwNiuD0gczbiJAdjNTjWnKbCDsRZF5WH0cYQ
diPuRRjcIlGQBdLOR1A4y4/0yCKfFAuvos6k+nGQ6sSJDg+On4jka7f0Qt6P
4OGQT269NJnWIJGSdNCmS9Psga8zv0RCCoupKmMyELgK9mEkkk9lYmVfMsY4
cRiBUS1hVt8i8+Qfhd9/2D49UPu0u3Bl+hN1ZWR7g8E+05mFexjmhDyax8aW
Bn9Bu4GnUV7rDqoeP6EA4Vo++/RN07Dr87OzcCo7R7fV02E344ojK4u8TfVc
GdScE1G9EW+n+DBfysAqvUsfeG/OSRSFCGr6HLki4JAtABdHx1dIN+H0nl5e
ivmw3wZPkHqj4qsp/tHZCaIlfiuenfONZIESyP1DTolVEIiTKm9D2k8wEsIK
eNk0C4wvNo+7HDNbILN48MdT2uH4D979uJ8HAa54NBYPay7eT3VwW6QgkZWw
fWO8WtyW/YeGBgOPXCtgFltWHa9hdELS7G9qyxGtQvylEK/50ou1GDHEDgFW
qZlDY9cJAHUwN422EmcrkZnO+vW0IPuKM+KLkN3rYxpk77zHlqNiSSjsleCD
E0qVhNZaHa2JoLcvgWWaiqLnce/9mLSVblbK0S+7sktOdqaXnHxdZsfJQ5kd
J/+PmR1O9Plunu+AtnX63Xe9jZ1iy6KiC/o4TXfQJITtyGUv6+Gkm/bg6Igs
G+BEMos6HC/Y7gkTFEm1Q38x4aZx/1SVcVAbSGqzyZji+uXlVdFyUjKHJdmR
2g22ythw5HaWkXhfxYNrTlNzbaYM16ZzPW3Uq7zmlXZ3KeKbuR+tl5cZYiMu
N0IWVoLng1xQGy2dHhHZntPUF2qTyMusVH1B4ASYcS5qCuqSTblSUuGWjwy1
5VvtDOXCUNuOJRu4o4vpnk6zOPnX7yKo5LoJzuEghLbMT44ppsFmRmhNxHk0
FtFRYDRBJyKbYgbraJpvKNkX/UTKjmcUtQE3MYTOWdAiliKjZC1Y0dDFcIWq
Biv41cGYIe1nhVitvhXjVlVqovBlXYWkV9VndQlbEj5CkDXEjl+IYMSw81Z7
EOOmIR9zw9vgBAjI/WLWEwAlo37I0qTpd+TQZPc5i2ZCHwkViXiBR7XwkuaS
9zI+2Z/b9lPqho6XJLyQfZEeQWLdpAbilfN3WP3x95J09ngqoTGyxDBiPJBF
S75vglBicwZ6r4RF9EGv6bhm0exJXq7m6O4bfXRkc6IXmf7UW9XZ31hN8QWh
D5JV9SDHbje/i4jG+xEdLhw+kkPISlrQGs41Vwqqc+k/SIJAvfLDTtb2QwPH
QgJ+KwMGs3IPRjzniDHywhHyma4ZBTv5pd3IUdSWOWlAGNne02f7qjhx/IhT
2m7VvYNsCYGyi1Dd5VdO6CXOAoWD9WsxLTjSsEsxh2PZFHNRVZC6Md10M89A
MR8qCdivWWUN4e1hCN8a2eg70CCJ4ViSOJmVQLUbIrxJTnzBECcLgUnH3nSP
wAmPv6UdErXP4SIXbVU5B7gG+8w1NP0Ay5CcXk2laaEYJrELdg9hkEaqboQi
J4UGFTgGn1bvdHJGeK2dKknVUMYPio7dwuaLMox2PNFIBLbZJSLsoIsZ6q5m
n2nfJxWcE6yaJhFEZ6HzNDRhCfvB+bmNhttg706YJlmoS9YlUwzB4Njhn0f5
nJjTJ2pMBy+1Q2XOVuwjk6DGwyGNsdti+Kyv7+D4PXPHJY5WjeWYWhciv9m8
yGGuA/WFbetWT7P58U/9FFxO1CY9epn/BIY+7CvUpG3veuUovuJEgEwZXWNE
y887CqfkVUKbi+vaymnfEimaYv5Ihvngcf2/b0w8kiU+sEANQs2sHmrYpeuJ
wa7eV+BDUE8FU6In2Imv5fjJjz98/vxQ6r5tE27YZ8+eZb///k12/fz89LfL
l9cXxK5lHeI8WWusslsbNCnS4Di4732N5EPPVY2Nb+Fs3NgzKL4IYfBlPgvy
yMJNSWibvRXL0nvOvLDA85WmetPh5jEjCKxqmK2rBYRw8ZEdWUQ8zJNI7Zm5
kGhCGE9EVFfEPycbDeJwdFkTJpf5ivUzmSs1TEVrkwIZMVL3Pn0yT8znfQ4U
xUg3httyRgq82M2t3y1ZQHPRbRKyppWt+6EcVkpsRNUfou0sZMpcz2xkDlyx
KrDljzWjQTJTTEEsKg5xiqCeikTnQtmPpeRtehLUkdlrLY3VVUkEneuy5nBG
A01c0DuV33X3xNZEdq6BJo7hIxJouGDlvKQfAOEDCjj3Tshai8geygZYbivK
FVN/6V0fhWMuKCeT66xBnqWJUxEVxY8eA7/bLpxd1JJO5XpR493zwIIx1GCp
zDTA5YDs9XSzBIRqXoZZ1Rq1ejwac1KgQLhuRCC/tY2+zj9mZ7eilL4jpY8O
XUXwqgPu3UAd2uhR7REra1lKKuNgmQ9iNHmo5QUoj7QsAHriY5bfFoNsrxyT
2UZ0XDaaTloui31CThfFZSqRYZsRiyJps2MZqgTKTLyU3sBJfTJCQhIcs9gf
Z9LmHCqCOmZOqZbLwBXEYeFmdz+GElHZ1oX5TQU3HWrFcmIF9xhu4GLHiVCO
reszIR29lUhpuLMozqTgstncq2sx5wS5DUFnKaxXVD/Shhc1yUrRscdfc9Jf
PuKVoM2Oc46ppmR8tpZEqbjp5yyx16y5xkRRqHX8aJpMEpJYH4VxV7eflX6a
s7EWvTCpeUdwj0tHTGjszktPgoUhKV9wtKOTf8/Vv8jdB34gZAkDBdYSUvNK
ToF3tnI+Q3DOXJTkHPzptphZhiOHT7X4QMttUJzqEFL/IElEnEAv4Y+Wq+DT
3gz5jfp2NygfvDMvsMwudP465BUlQTlR6CWSgxgS1vbpG+TEOtZ8u4dNdqkp
VMEP0lXPEeFKXG06kVcH2sV1UtNzB7ex5HWRwap6reR2jTRyxkGKnq/w4nqY
JkYETZUP2mvaNFgnHIqgFjbshTqqOlvAKoo0LGWa66VldkYWpCnIezEiYrr3
k/FRDGUdHT49JOFPIL6AXUFqWHCWA7FMi2fXi21s2FHVXBol66n1YoHCLXof
HKcMA6kb+Qj9p8T464qPD+w+ANMzoLajx4FTJPmTaZMJy9seuwTuPlTRaJjt
gWGjxX1boqwlRTCcVzKSHsXugbDzgAhK67RO9NuJWmDMceOxQd7hpe47SCDb
xZsFmIlyEvB6S2cy48r5NL7fXfUWb4eKuoEPi4iNOICfr29uFsEUzV3IkV8Q
IwnhMZtSm14EVXA5xBOkRyNpSoYkqYEeBqGTgvByIvcXQWend01kJrqHmGZe
7L+QW0nDB2VfdMJukUyUvrsMPYkWskEpxBDipH2fG2ufRMJqyKQ2KwdlXvbN
eVRZ64OazT8edMKM8BKbdnzD3qLAhziyxyz2i3Nn2V4vomoeaIzCkHogVQRR
Dp0ldVNvy6ZQ6rDNOTUrI9l22KUUmsfQaLrd4B/bSshhcY+AymN73kfUkjMo
LlO/nDGUCXf4aIqcsbCP95rvIIiN3JFM0vUk3LubSnwSuYFMmc7r2rMleCNd
PTioK6+wVhQZgXiu+/kj4AXlclnM4MFZbDiaGgplDUphlG99F8hj1H5cR21E
QRDDxhKKaudrP2LLAKZFMRvRaY0MSB3nD9cnloaZLLF8AY1IA9jw1HExzp5l
tPpiCcVAsty6BoIgr3KswJ0eo0JkbE0BGEXBmIKhVeEsY57hVU59Pzo+EAmG
2lbaH0o7OekE/QnKm4JVZLDIpl5AK5AEcltBsFLSSuGYO058daEHsMPNFf2E
C8ltjUqhaQrC/Hr+G2cKKfc3E79zxz+rJRIl5zKzHIjhxB3rkKxo8XYO1YNp
2cWl19YXZRvwae21Zspp3rgGkEaKQrcJGMsq5ly6K9hs0PlU785EMecqkbrR
HF+pdeAFB/jTDuO+kwYWyJVhvCJVh3axrbOZGdMUrIa4LbnGxhDnlIs1pOYP
0SWp5cQwNJFWNCkkCZH8oRnFdhcyDhalF9FjCdGhCufTN0lCl8ph7aKTNKqS
Qmj2c/zy9uo6ClO1DzSwUVZCdpqbgppGtjdILVlY3x6rTAjlJmURK17DDCxq
OJGt8vdQsfUJL4Wm9Af+4apI9XCKLGAGL7W/JqNDsIITL+hFfBgSMGLA4sji
yX1eXfdztyBQ2BbS2iCuNwVYMGsPMhyP4TACarHbYpUdwle40MY89FYQOUli
l1YX/mcxbSXrMg3qEDMhCYHoJJZ9zMtO9/bl9R9+/foTEzjhfjsMfc0rYS5W
7VAutvIaJWrbyYZJDAzwaXBfaMzBQcPuOQ2pmIXVCeyDxeDVGMrR5jxp7C/Q
lyb0pfIGBXu8KiLJ3S8l0eUAuGxPvJCxx+QuUO5sPhT3n71816kUNt031FD5
voEoBQgSQ1yEqi2BGbDLKr63A1gaHYt0TNTkEC6Dz25FI0NJTOvi6cPNxaYg
TXbhfz3iDO3jgyefPyvfXNVevMw1sY2lNo4UWMHCX3tv6aOdB+h96X+3RlfP
XNL8yRZH7zjOUKdfCdMVUhCbMOB7DcBC7Cq7apuS3rwOjQavEC8lTs998b7g
QInCMYQH+1W4sFu1HMqku7aMsrJqdQjTvh2zHekHEr2SWZJA8YUlA+pX11cA
9fc/IFBgYne3KzNFyaSxBJbMWVoD80aH4H8o39dFq3KF7pgi9DmqIeUtksuk
6V4E8XcWCdYKLssF68/SIU7LtdBiyVxPECNbykWheQ270ih6amNYODSEGm2w
fM1pCtvKohpNIL1GNDLWkyx77f3lK+lUxVqSyK5LZtGimnR3JimMARJHIQdT
H8Noifkf24FqKtdQP9qEjDlh4ue1Znu0ai+Lgy3nJifGImjw8QORn66f3DTL
p2N1XACXPn/OhppT8YSG2S3terjEGlcCqfREnTI2zg6SJ9WC6dqmW/7AbHB8
cETW6LqaDZzhmCmZyWRj97yY5pZCZ0lRwX2grgWaArpQydkN0luPOOyCu/7u
9/yN0LfkZAFiFpfcpjckJyCHHNmw8EKJN3fj5vksTppnWHtYNK9hiuo/rnXD
OgW0negSl9WqW9iLBLu6uPz157OXhCxNUzfDkHASxYMz/p0gtT21nQmScd3j
ZtXWpOKu5krDaLUq9LtXjG/HqrMjN1ScZD88ffKU0CI0zNB6lJOnJxw32yIn
l0/g3Kh6SzWVkddHHJ9AvOHEDuzNsrdRwxu27eQrRE/rKe3FXOea51NyB5Wr
ixcjSeofPrxrpw9q5itnp3NVQ4UaNDzMRdQfOLwSAbqjktuA2y0Chk2gVhMQ
vKMbm5eZrfYVAZ7DpqLJw6YQbs/dY29SYBaoP4PgkLVb1i77WUlefwcR58jo
514Q5rB6HPLlVop5dkMck9slWlKw+p9IMGmlUq5dJl92VjfP0+QHNohC4dfa
Mw+278xjGQpTSpWE+lLwA3WZMsiQW55smY9SgJ4EjXYIEFV8xFm5oztDCh2U
Lq05xWrHHmWVs+iEI0taujkxR1XzS5y1ljoKT7tJsH7hvKicNwSKuYZtW66m
/4aRSC3A59Eiuww4GJEsOHpMd+2q0akGqKaPax9tjUDKaewtJXGWRXGHMEkn
7wuNPH7uV9r8dDBMCGXHIhX7XGonxpV1GxT07VuZsJs5/NPh102YdSd0YcKt
JhJwVz9AzwmoucXEo6t1SdffHWC0x/YfOQjkSePNTjeHzvGyNosQb6hV7yrU
n77p6s/iI+bP8kWnxl3itBpDSfmFp72uJGob1H+ncFCSfCBjcpfljoxgkml5
VdRrDz7HZp6OFpISzYk94pQ5c7IQO/otNJnrbZSAyGJ6aCVC1msgOb2hE2kW
1hRalaLVsMX3zKwQ/3kHCkAN5I4kw++QMBKUVRTpKkzq3JPu51zZYYVCaZGW
pWEI40410J63lC1iVtl7nDykDkR/IiKJuydUT+4wiDPlXL1Grj1HrdgNSctj
deuWlUPiZTizRzX6Ki1TtxmEMwL3xcRSi75veLOzp1s8LG+aZsZu/xAY47rJ
gtQMUf/zu7qcOeiKErjkrzqZkPbNl8576FQFqe+rhEWYJ3zLryGeCXWOyTG5
ulv0/q1XHsGZO5DUZi9b6wR2jWr0KGQiW+fZraJMSbMipXu2yTpy1w7m2+TA
uFE1aad6si72flF9Oz2n0kzdezjzmR2w3W5OPDqnX6SjbsJrRh75Y8xbp0ns
IJJ/2ylfY/MnX4wcHyh7MqdryfLGIVpIgwOm0VNSou8TQW7vcD/xmWz7TINT
CwJ+S5btHe1zHnHnCJ36kZNck0Tl2Tve3wkmu3FAz1qRRtmEakmpR2dbF2Ig
haLD7a0o5wMIOl0mkswzmdU8AxpTTsSJKsIbuzxiew6gklnWHdtO8Z6dVp0+
Tuo+EMMnSXSIZR5axdnPNhjvSFyYSrBfs5lJ42JDEBiYuGt2Bnx7esOBedlw
kmIzdtlRZChgRY+i7y5v/f28pmmh16VaPym+qdxK0mV6uHcoTvmLJNcS4eI5
y2q90UDbhPS7ezCmhf6VpAKEvh3OnUUtfWAfJyk+aQkRJySK5wHBwDhgVyR1
+xh2uphchwiveiM68+TVrv4hsVeIJHmpF/BP8BV/fwLn1sn3J0/Ry0MjAGkp
AJ0DXh7l93Co9eL3kmHQiUBCmQgy0cBh/pK4WNAdZ6nyJSfCO3dG7ZxG7ZJu
SnovRMZXCViZg73cvYCIoz/KTgc9sr/hqlGNCrBkcpGqucGEBbkTHghzTmEa
slBUfliUB5bYVkgMMBzSI0IVoaxBSgcqtL8UuaZoGG/gqG8YTaAmWdRSVLzN
LgOUN8rhN8YtKXgJ+2SPOnLetFonJsapa9XXIY0gNKkJZyaxgg7OfetdSJfp
I84uJcU4KYrfrUuLiuukBwv2FtC429i9k43P7Td9EZtxBZ8xb+K+TknIS/ey
QFFnjr1Yi5KOaGPdYXBaqBQIalro6I8j6A7w3L70Qsd4T4XYjmH1PqD+QqcK
Ai0QcNz+KoD+zkp2OvOKSFzmpFd3NqTdia16djBwW3fjBLzjhLvnfJOH1Mpq
eZu1zjevRFr+GTqlCcGt1g1D39pXphHhGFBIcNSMADYVl9zZjFP3wmUyOzj+
jtIZa1BntiiQNqo58Kodjo9Bn537Fuj/h8efPzPo3r64gtM/X3FGhnYbOvj+
e3BA67IuaZlQUrFzEr3IaSx79l1yE44LBHsvYXnhsmkNDoNyy/5GZziERxd2
GcKt9E1rt1iBRt67l+toii3E6dpb6Y29OmLFtLkzmy3e/rTHBfv4jFUIgprr
+yLDlzuckkkufgoPPVXtXMwp1QhMoRtgsp/OU06uy1HaS620teEWkCzgnkmS
y0uOok6t9EqSAiTgaERr1QnbxfJo676R2JpGFJhTilFWqQtqbcmkqRUoVVai
Qr48e3PGrSPf40k/hfb010U9gbdhWuNmpwse6LK4LT1+gdBo22ZR5DfxNpBZ
5evVKNfPSUgzn5BVKY5315XMjttQcGkcbzOdBif55EfuIrI9HLKXKhFLguYm
O6Omom2MLBDG6XK4Zkg8A5J8uBV75jyjBCPhhCZRMJEkB8aldcWefrKnNECg
eBIKLGkIayXFnRRIz7/ZRHMsYeihI365q697op/vmevnKDRZMdG9z+CxxBb1
A8PZrTWQqU8YS7P2UzxFVI7Zyu/5QRL6fn5+Cq06tytVrK8prY2DHzPUOi7G
W+3j/5z9O6Iiud/RdS3EjPFE6DfBqSivgqs8bT2RZfktSlbaYBFv9YCPMEsz
0DRiQwOsd9re6olLzFubvtf9IgEmetuMx6KOMx738esdvf7p0zMw5qdAY+Iz
C9ij7FXqmrLqL9aSdysJc9LxSRd0aeWFl0mPLRR1QQUQqjl17p/8EVej/TN7
XeSMBb2ff9IQlrGrn9B7I/7hr0c7f7a/4PcCtuivoRPxK7td85+aBWdtzvbp
PYPOWeAZXwBPGR0NXXblHmNXDJHLSwPKP7M/3rw9v8jYibILPo+Bpg+CXYD6
EoywAinjktmSmjiF3k5gBWgF2vlaWFm7XE6HexdMlw58bBHx6wdQ5wvQeQww
D8MmaIrJNN3Lp/Tb3ZAhQ3eK+shFMZObAMXKuiykCdI7u3DNCZdMrhbIiWPM
rK0aEVnsH2xNlYXfA4ybIm/4JkEOLIdrBPDX/4QcOlsVHwfxwrQw1tiu4LMQ
Cx1ivCBjUiyI+6r05DsyhOOODg5Q79t5NpWz4Hyjg2PgQeiwLVpFXn3INvUa
p/+ShO3VfdG2w+wyX9xkvxUT6Dr/TgR5WSAQ6l6DT1e0wHq58kiAerUmaxFo
MEOe+0tkN2avyrW/ywkzxA8sc5l4wkWNNBar46wqrW9v0TuWYWfNDbF8sEkc
OJ7kM4v+FDWFJK/wwuL9U3aIGmZa6IQVgYDr/x9eVnX2/MW/fF/Vf8n9VIdH
x9bIaCtHJMn81ZM63V0KfryrFjwae7I5qfX+4ehfKw+Po8hK4yjOdXUpTiVm
E+nBO4Gkk9+uu4Q4rPYippP1Q8e+1xzTsvRZz18QR+BsZV8s+bYSve1RS2+T
Z73TxDzhXZzwgCS2RV5WrU0a7iBK5xcvRt66+2ISFCzmeb4g9kgqHjohz0nR
y5H4meUT2Co9E7VYiso9J4nKddc2qvRm23m5Y7xCV+6LQQzEu5DNTm/RQ0tE
PiVIAdY6rZeijZG6TqwoZ7hrux4UAnLz6em8LIJLtVeaLHkIW9XFrOBd/ppJ
71H2bsarTVQnO/rh6REZifAbx0Qyy6oLl6EmUrRTe7ijZ7mk137QvnKhs264
Y1x6gwcn6K5q34Jr2rKk1JebWSbXskiH2NAtdwmLEjcADqVsgrh3J0k+X6BM
32Wdzm5hczEd3WzWbh/1kP8fe+KMe8sh8EnEI6knivCQS4Pwvua0yAVGfGez
j0uO+SGVpU1JymgVcmEk6YhrJcR/ut9fiXU5ihi5PYFYL+ukz4o2XQiWNwcE
Mi7RjT21x71Lk1ot6bjvVnNKgj9Z7dauxGWJu72sOkB8L6U2yQbuQ9TB7phO
AIke4no5s/aGb7lOKFi93V7/eRppSVOc4WdKXIPiG+J2nx2f0Az5CMi0epi+
graknm6ue3LvK3bK/Atajqb7Wa5w6V3CUzjWDh0sPcHgVg3XxtIBvcK0zPiM
a9rIFjfjVccGWSGQKhob7TQMkbin4AddcpeEeCWHJAAEcjLNbiu42m/JBQbQ
7TSkvsrH4XuWZIXsBvADqmEfsFkHsO4rAXvdGUXaydt1ZFYZw4587Qhh0SGC
3tyuZSWk1EaB/Zv73DLn2w0tE8OqXhAMq/m+dI2ESsfOJN1l65pnv/MI/zUs
cGmgX9K3kuBziSmUb5u3IW3a9NVo49KGOv83aPPyJpsVKO7Xq8+3vdfEQDHx
zXohMYx4PW13LMdygsMrYuyU3E3vzD/6Fs1Ov1UajE6vO8PdHvBbprfdhmby
vtA699RHqq5hTBKTcyuJUyOn0CqDaIm7vOvg4ChcROnTRGbCNVtLCBC9tU0q
d/jsib3oTqx5pkUigGhopSQaFQH+W791NtY6SeaZKVCcTcOXhDEmYddVcbsg
fRPUxpW/X0ftLDC2iF1jn4/TtIT5QUYu1cg5AJimnH01Q3yetqix4eRanPvO
Td/WDAdnDb2P5+edhPvck8vERUDpJXq8vHHYqoQYTcDekKWftJi1sGiIaVqH
FmuS1oXOtl8dpCSO9KCFEC1p0FAFeQxtJ8JbdTebH575oYhqdmiDB2rjW/RW
pbe2r9Zw56EPUYwSk9HyU/JMvOwaeBF8pXbx9qQkWhARSr+O6OURbd2zE1jU
B8fKsx6KRi5CUAcMqHdzO2hx60ZAPgOX3rudwESi0H8Q15ih30b/Hl2FOEfD
JfmXBtP4KhFsiGGwzwpxwnC9oVoZiOpySw6iAeKPHXc0oOKk90m4nARTdKEI
KgVSc+aRJFVpQGAo8c025uloc6S5PqrxPg9P4lAMLrLOWs1GTCTOqkb3QJJx
zlt0gXVLtPJgU670HyQF87yARtvzDUsEb0V8gksbw6UtkOY72gnluLTiw4jE
H53sLXMkjUygIIrNoNcQweKD99Y4IhS8iWjWKu40AwdQwamPpfhK2ozpDZJc
lkN2Rn8uHn2Bbik4aSIZQXp1SnMalKP/yl2UxBIb9YFlAzvHQVYml3Vx+jSn
aM7rBVrcO24Trnc+h8qRTk/DkKTLORRDpzVRMsHlr0PEl4G2tCnBJuK+qsva
FYO4tHUTbie0MJs5mGiv/SsNS/ZoaZKOMcWkIaPp5FZ1IiMiIMJHSidI0Dcw
Ios69MgRXpdLaMHxNbUrsSAYl3MJsBi/DGa2sDrtjkbzvMtxPR1LX87VhyQY
6VuIy2qmJxl5dkv0hPjkzDQFAU/nyoWzmTRqBDMCPjVScgL3+z2e00ZuEwmM
ItgOmRY6SXIQeMF3jjSFxmgkrx31WR2pp5g7zLSriyxGk5z0rPrVp869jTcw
8G3VyRUMktnICQHb1z5AjRCl4l56mDip32EhIk1/jL6JSXH6kczyTDCZKJ5N
e7BPdhKow91ZXx7gCqib+yqE2z+Zde7uTb2WFn/dVDTbmipA6O/ASX4zqRKl
85jnq/RrvaOXS+xCGwx5Zf+ZHK9xOqMg69rQ7W8ZejlYm0W9jFZq+WJPOS9h
+p+iFdFKrLRgscqYUH3LrSmSRn44j+gu1CxL6/piPFoyOnzNWUhprb8mIBJo
kwzuQGYsyfGKCIit5qI/HeA6r0aDA5yBqLQU6LGWZldlG7UzVGSt2dBIb59x
O4fPEFshroc2hUMQnTiJvCR7Epoq+wVyaWd1F1KkH5mNtUtr6cspJ1rvVai5
BUrz2ev/McyYBSbOeij31m69bJCPTKjVlCqL9MYfwQ4DgeHHbwUYrhbnKqtU
H9mygFwp/dKHAl+4M9R9d18opx6Z2HSc8Kh9h0BIVhyTCmHWNqCNoOpxI8dq
SAhXFqESDO3QG9PsxF0YyK5aEX1EkfCSwZkmJnO1Ie5UBVWKeTYpUqODI714
/DIaA9AKyK6CL4+vQdEbOyJ6JMxwrK+fC5PLu2FmMKnxYJsh/XSYqaM7t+Zu
vZQN6ObjsDQpPBzM/z6wKtJjeKa/uLlDHeHn8qPgoso2VcJs4NDPiXVGkdsQ
2zJXEOOyni/PeqCzvtT775Rtytv/Byo57ZmfkQAA

-->

</rfc>

