<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.6.2 (Ruby 3.0.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-applicability-15" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.3 -->
  <front>
    <title abbrev="QUIC Applicability">Applicability of the QUIC Transport Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-applicability-15"/>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind">
      <organization>Ericsson</organization>
      <address>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <author initials="B." surname="Trammell" fullname="Brian Trammell">
      <organization>Google</organization>
      <address>
        <postal>
          <street>Gustav-Gull-Platz 1</street>
          <city>8004 Zurich</city>
          <country>Switzerland</country>
        </postal>
        <email>ietf@trammell.ch</email>
      </address>
    </author>
    <date year="2022" month="March" day="07"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document discusses the applicability of the QUIC transport protocol,
focusing on caveats impacting application protocol development and deployment
over QUIC. Its intended audience is designers of application protocol mappings
to QUIC, and implementors of these application protocols.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>QUIC <xref target="QUIC"/> is a new transport protocol providing a number of
advanced features. While initially designed for the HTTP use case, it provides
capabilities that can be used with a much wider variety of applications. QUIC is
encapsulated in UDP. QUIC version 1 integrates TLS 1.3 <xref target="TLS13"/> to
encrypt all payload data and most control information. The version of HTTP that
uses QUIC is known as HTTP/3 <xref target="QUIC-HTTP"/>.</t>
      <t>This document provides guidance for application developers that want to use
the QUIC protocol without implementing it on their own. This includes general
guidance for applications operating over HTTP/3 or directly over QUIC.</t>
      <t>In the following sections we discuss specific caveats to QUIC's applicability,
and issues that application developers must consider when using QUIC as a
transport for their application.</t>
    </section>
    <section anchor="fallback">
      <name>The Necessity of Fallback</name>
      <t>QUIC uses UDP as a substrate. This enables userspace implementation and permits
traversal of network middleboxes (including NAT) without requiring updates to
existing network infrastructure.</t>
      <t>Measurement studies have shown between three <xref target="Trammell16"/> and
five <xref target="Swett16"/> percent of networks block all UDP traffic, though there
is little evidence of other forms of systematic disadvantage to UDP traffic
compared to TCP <xref target="Edeline16"/>. This blocking implies that all applications
running on top of QUIC must either be prepared to accept connectivity failure
on such networks, or be engineered to fall back to some other transport
protocol. In the case of HTTP, this fallback is TLS over TCP.</t>
      <t>The IETF TAPS specifications <xref target="I-D.ietf-taps-arch"/> describe a system with a
common API for multiple protocols. This is particularly relevant for QUIC as
it addresses the implications of fallback among multiple protocols.</t>
      <t>Specifically, fallback to insecure protocols or to weaker versions of secure
protocols needs to be avoided. In general, a application that implements
fallback needs to consider the security consequences. A fallback to TCP and
TLS exposes control information to modification and manipulation in the
network. Further, downgrades to older TLS versions than 1.3, which is used
in QUIC version 1, might result in significantly weaker
cryptographic protection. For example, the results of protocol negotiation
<xref target="RFC7301"/> only have confidentiality protection if TLS 1.3 is used.</t>
      <t>These applications must operate, perhaps with impaired functionality, in the
absence of features provided by QUIC not present in the fallback protocol. For
fallback to TLS over TCP, the most obvious difference is that TCP does not
provide stream multiplexing and therefore stream multiplexing would need to be
implemented in the application layer if needed. Further, TCP implementations
and network paths often do not support the Fast Open option <xref target="RFC7413"/>, which
enables sending of payload data together with the first control packet of a new
connection as also provided by 0-RTT session resumption in QUIC. Note that
there is some evidence of middleboxes blocking SYN data even if TFO was
successfully negotiated (see <xref target="PaaschNanog"/>). And even if Fast Open
successfully operates end-to-end, it is limited to a single packet of TLS
handshake and application data, unlike QUIC 0-RTT.</t>
      <t>Moreover, while encryption (in this case TLS) is inseparably integrated with
QUIC, TLS negotiation over TCP can be blocked. If TLS over TCP cannot be
supported, the connection should be aborted, and the application then ought
to present a suitable prompt to the user that secure communication is
unavailable.</t>
      <t>In summary, any fallback mechanism is likely to impose a degradation of
performance and can degrade security; however, fallback must not silently
violate the application's expectation of confidentiality or integrity of its
payload data.</t>
    </section>
    <section anchor="zero-rtt">
      <name>Zero RTT</name>
      <t>QUIC provides for 0-RTT connection establishment. Though the same facility
exists in TLS 1.3 with TCP, 0-RTT presents opportunities and challenges for
applications using QUIC.</t>
      <t>A transport protocol that provides 0-RTT connection establishment is
qualitatively different than one that does not from the point of view of the
application using it. Relative trade-offs between the cost of closing and
reopening a connection and trying to keep it open are different; see
<xref target="resumption-v-keepalive"/>.</t>
      <t>An application needs to deliberately choose to use 0-RTT, as 0-RTT carries a
risk of replay attack.  Application protocols that use 0-RTT require a profile
that describes the types of information that can be safely sent. For HTTP, this
profile is described in <xref target="HTTP-REPLAY"/>.</t>
      <section anchor="replay-attacks">
        <name>Replay Attacks</name>
        <t>Retransmission or (malicious) replay of data contained in 0-RTT packets could
cause the server side to receive multiple copies of the same data.</t>
        <t>Application data sent by the client in 0-RTT packets could be processed more
than once if it is replayed. Applications need to be aware of what is safe to
send in 0-RTT. Application protocols that seek to enable the use of 0-RTT need
a careful analysis and a description of what can be sent in 0-RTT; see Section
5.6 of <xref target="QUIC-TLS"/>.</t>
        <t>In some cases, it might be sufficient to limit application data sent in 0-RTT
to that which only causes actions at a server that are known to be free of
lasting effect. Initiating data retrieval or establishing configuration are
examples of actions that could be safe. Idempotent operations - those for which
repetition has the same net effect as a single operation - might be safe.
However, it is also possible to combine individually idempotent operations into
a non-idempotent sequence of operations.</t>
        <t>Once a server accepts 0-RTT data there is no means of selectively discarding
data that is received. However, protocols can define ways to reject individual
actions that might be unsafe if replayed.</t>
        <t>Some TLS implementations and deployments might be able to provide partial or
even complete replay protection, which could be used to manage replay risk.</t>
      </section>
      <section anchor="resumption-v-keepalive">
        <name>Session resumption versus Keep-alive</name>
        <t>Because QUIC is encapsulated in UDP, applications using QUIC must deal with
short network idle timeouts. Deployed stateful middleboxes will generally
establish state for UDP flows on the first packet sent, and keep state for
much shorter idle periods than for TCP. <xref target="RFC5382"/> suggests a TCP idle
period of at least 124 minutes, though there is no evidence of widespread
implementation of this guideline in the literature. Short network timeout for
UDP, however, is well-documented. According to a 2010 study
(<xref target="Hatonen10"/>), UDP applications can assume that any NAT binding or other
state entry can expire after just thirty seconds of inactivity.  <xref section="3.5" sectionFormat="of" target="RFC8085"/> further discusses keep-alive intervals for UDP: it
requires a minimum value of 15 seconds, but recommends larger values, or
omitting keep-alive entirely.</t>
        <t>By using a connection ID, QUIC is designed to be robust to NAT address
rebinding after a timeout. However, this only helps if one endpoint maintains
availability at the address its peer uses, and the peer is the one to send
after the timeout occurs.</t>
        <t>Some QUIC connections might not be robust to NAT rebinding because the routing
infrastructure (in particular, load balancers) uses the address/port four-tuple
to direct traffic. Furthermore, middleboxes with functions other than address
translation could still affect the path. In particular, some firewalls do not
admit server traffic for which the firewall has no recent state for a
corresponding packet sent from the client.</t>
        <t>QUIC applications can adjust idle periods to manage the risk of timeout. Idle
periods and the network idle timeout are distinct from the connection idle
timeout, which is defined as the minimum of either endpoint's idle timeout
parameter; see <xref section="10.1" sectionFormat="of" target="QUIC"/>). There are three options:</t>
        <ul spacing="normal">
          <li>Ignore the issue, if the application-layer protocol consists only of
interactions with no or very short idle periods, or the protocol's resistance
to NAT rebinding is sufficient.</li>
          <li>Ensure there are no long idle periods.</li>
          <li>Resume the session after a long idle period, using 0-RTT resumption when
appropriate.</li>
        </ul>
        <t>The first strategy is the easiest, but it only applies to certain applications.</t>
        <t>Either the server or the client in a QUIC application can send PING frames as
keep-alives, to prevent the connection and any on-path state from timing out.
Recommendations for the use of keep-alives are application-specific, mainly
depending on the latency requirements and message frequency of the application.
In this case, the application mapping must specify whether the client or server
is responsible for keeping the application alive.  While <xref target="Hatonen10"/> suggests
that 30 seconds might be a suitable value for the public Internet when a NAT
is on path, larger values are preferable if the deployment can consistently
survive NAT rebinding or is known to be in a controlled environment (e.g.
data centres) in order to lower network and computational load.</t>
        <t>Sending PING frames more frequently than every 30 seconds over long idle
periods may result in excessive unproductive traffic in some situations, and to
unacceptable power usage for power-constrained (mobile) devices. Additionally,
timeouts shorter than 30 seconds can make it harder to handle transient network
interruptions, such as VM migration or coverage loss during mobilty.
See <xref target="RFC8085"/>, especially Section 3.5.</t>
        <t>Alternatively, the client (but not the server) can use session resumption
instead of sending keepalive traffic. In this case, a client that wants to send
data to a server over a connection that has been idle longer than the server's
idle timeout (available from the idle_timeout transport parameter) can simply
reconnect. When possible, this reconnection can use 0-RTT session resumption,
reducing the latency involved with restarting the connection. Of course, this
approach is only valid in cases in which it is safe to use 0-RTT and when the
client is the restarting peer.</t>
        <t>The tradeoffs between resumption and keep-alives need to be evaluated on a
per-application basis. In general, applications should use keep-alives only in
circumstances where continued communication is highly likely; <xref target="QUIC-HTTP"/>, for
instance, recommends using keep-alives only when a request is outstanding.</t>
      </section>
    </section>
    <section anchor="use-of-streams">
      <name>Use of Streams</name>
      <t>QUIC's stream multiplexing feature allows applications to run multiple streams
over a single connection, without head-of-line blocking between streams.  Stream
data is carried within frames, where one QUIC packet on the wire can carry one
or multiple stream frames.</t>
      <t>Streams can be unidirectional or bidirectional, and a stream may be initiated
either by client or server. Only the initiator of a unidirectional stream can
send data on it.</t>
      <t>Streams and connections can each carry a maximum of
 2<sup>62</sup>-1 bytes in each direction, due to encoding limitations on
stream offsets and connection flow control limits. In the presently unlikely
event that this limit is reached by an application, a new connection would
need to be established.</t>
      <t>Streams can be independently opened and closed, gracefully or abruptly. An
application can gracefully close the egress direction of a stream by instructing
QUIC to send a FIN bit in a STREAM frame. It cannot gracefully close the ingress
direction without a peer-generated FIN, much like in TCP. However, an endpoint
can abruptly close the egress direction or request that its peer abruptly close
the ingress direction; these actions are fully independent of each other.</t>
      <t>QUIC does not provide an interface for exceptional handling of any stream.
If a stream that is critical for an application is closed, the application can
generate error messages on the application layer to inform the other end and/or
the higher layer, which can eventually terminate the QUIC connection.</t>
      <t>Mapping of application data to streams is application-specific and described for
HTTP/3 in <xref target="QUIC-HTTP"/>. There are a few general principles to apply when
designing an application's use of streams:</t>
      <ul spacing="normal">
        <li>A single stream provides ordering. If the application requires certain data to
be received in order, that data should be sent on the same stream. There is
no guarantee of transmission, reception, or delivery order across streams.</li>
        <li>Multiple streams provide concurrency. Data that can be processed
independently, and therefore would suffer from head of line blocking if forced
to be received in order, should be transmitted over separate streams.</li>
        <li>Streams can provide message orientation, and allow messages to be cancelled.
If one message is mapped to a single stream, resetting the stream to expire an
unacknowledged message can be used to emulate partial reliability
for that message.</li>
      </ul>
      <t>If a QUIC receiver has opened the maximum allowed concurrent
streams, and the sender indicates that more streams are needed, it
does not automatically lead to an increase of the maximum number of
streams by the receiver. Therefore, an application can use the maximum
number of allowed, currently open, and currently used streams when
determining how to map data to streams.</t>
      <t>QUIC assigns a numerical identifier to each stream, called the stream ID.  While
the relationship between these identifiers and stream types is clearly defined
in version 1 of QUIC, future versions might change this relationship for various
reasons. QUIC implementations should expose the properties of each stream
(which endpoint initiated the stream, whether the stream is unidirectional or
bidirectional, the stream ID used for the stream); applications should query for
these properties rather than attempting to infer them from the stream ID.</t>
      <t>The method of allocating stream identifiers to streams opened by the application
might vary between transport implementations. Therefore, an application should
not assume a particular stream ID will be assigned to a stream that has not yet
been allocated.  For example, HTTP/3 uses stream IDs to refer to streams that
have already been opened, but makes no assumptions about future stream IDs or
the way in which they are assigned <xref section="6" sectionFormat="of" target="QUIC-HTTP"/>).</t>
      <section anchor="stream-versus-flow-multiplexing">
        <name>Stream versus Flow Multiplexing</name>
        <t>Streams are meaningful only to the application; since stream information is
carried inside QUIC's encryption boundary, a given packet exposes
no information about which
stream(s) are carried within the packet.
Therefore, stream multiplexing is not intended to be used for differentiating
streams in terms of network treatment. Application traffic requiring different
network treatment should therefore be carried over different five-tuples (i.e.
multiple QUIC connections). Given QUIC's ability to send application data in
the first RTT of a connection (if a previous connection to the same host has
been successfully established to provide the necessary credentials), the cost
of establishing another connection is extremely low.</t>
      </section>
      <section anchor="prioritization">
        <name>Prioritization</name>
        <t>Stream prioritization is not exposed to either the network or the receiver.
Prioritization is managed by the sender, and the QUIC transport should
provide an interface for applications to prioritize streams <xref target="QUIC"/>.
Applications can implement their own prioritization scheme on top of QUIC: an
application protocol that runs on top of QUIC can define explicit messages
for signaling priority, such as those defined in
<xref target="I-D.draft-ietf-httpbis-priority"/> for HTTP; it can define rules
that allow an endpoint to determine priority based on context; or it can
provide a higher level interface and leave the determination to the
application on top.</t>
        <t>Priority handling of retransmissions can be implemented by the sender in the
transport layer. <xref target="QUIC"/> recommends retransmitting lost data before new data,
unless indicated differently by the application. When a QUIC endpoint uses
fully reliable streams for transmission, prioritization of retransmissions will
be beneficial in most cases, filling in gaps and freeing up the flow
control window. For partially reliable or unreliable streams,
priority scheduling of retransmissions over data of higher-priority streams
might not be desirable. For such streams, QUIC could either provide an
explicit interface to control prioritization, or derive the prioritization
decision from the reliability level of the stream.</t>
      </section>
      <section anchor="ordered-and-reliable-delivery">
        <name>Ordered and Reliable Delivery</name>
        <t>QUIC streams enable ordered and reliable delivery.  Though it is possible for an
implementation to provide options that use streams for partial reliability
or out-of-order delivery, most implementations will assume that data is
reliably delivered in order.</t>
        <t>Under this assumption, an endpoint that receives stream data might not make
forward progress until data that is contiguous with the start of a stream is
available.  In particular, a receiver might withhold flow control credit until
contiguous data is delivered to the application; see <xref section="2.2" sectionFormat="of" target="QUIC"/>.
To support this receive logic, an endpoint will send stream data until it is
acknowledged, ensuring that data at the start of the stream is sent and
acknowledged first.</t>
        <t>An endpoint that uses a different sending behavior and does not negotiate that
change with its peer might encounter performance issues or deadlocks.</t>
      </section>
      <section anchor="flow-control-deadlocks">
        <name>Flow Control Deadlocks</name>
        <t>QUIC flow control <xref section="4" sectionFormat="of" target="QUIC"/> provides a means of managing access
to the limited buffers endpoints have for incoming data.  This mechanism limits
the amount of data that can be in buffers in endpoints or in transit on the
network.  However, there are several ways in which limits can produce conditions
that can cause a connection to either perform suboptimally or deadlock.</t>
        <t>Deadlocks in flow control are possible for any protocol that uses QUIC, though
whether they become a problem depends on how implementations consume data and
provide flow control credit.  Understanding what causes deadlocking might help
implementations avoid deadlocks.</t>
        <t>The size and rate of transport flow control credit updates can affect
performance. Applications that use QUIC often have a data consumer that reads
data from transport buffers. Some implementations might have independent
transport-layer and application-layer receive buffers. Consuming data does not
always imply it is immediately processed. However, a common flow control
implementation technique is to extend credit to the sender, by emitting MAX_DATA
and/or MAX_STREAM_DATA frames, as data is consumed. Delivery of these frames
is affected by the latency of the back channel from the receiver to the data
sender. If credit is not extended in a timely manner, the
sending application can be blocked, effectively throttling the sender.</t>
        <t>Large application messages can produce deadlocking if the recipient does not
read data from the transport incrementally. If the message is larger than the
flow control credit available and the recipient does not release additional flow
control credit until the entire message is received and delivered, a deadlock
can occur. This is possible even where stream flow control limits are not
reached because connection flow control limits can be consumed by other streams.</t>
        <t>A length-prefixed message format makes it easier for a data consumer to leave
data unread in the transport buffer and thereby withhold flow control credit. If
flow control limits prevent the remainder of a message from being sent, a
deadlock will result.  A length prefix might also enable the detection of this
sort of deadlock.  Where application protocols have messages that might be
processed as a single unit, reserving flow control credit for the entire message
atomically makes this style of deadlock less likely.</t>
        <t>A data consumer can eagerly read all data as it becomes available, in order to
make the receiver extend flow control credit and reduce the chances of a
deadlock.  However, such a data consumer might need other means for holding a
peer accountable for the additional state it keeps for partially processed
messages.</t>
        <t>Deadlocking can also occur if data on different streams is interdependent.
Suppose that data on one stream arrives before the data on a second stream on
which it depends.  A deadlock can occur if the first stream is left unread,
preventing the receiver from extending flow control credit for the second
stream.  To reduce the likelihood of deadlock for interdependent data, the
sender should ensure that dependent data is not sent until the data
it depends on has been accounted for in both stream- and connection- level flow
control credit.</t>
        <t>Some deadlocking scenarios might be resolved by cancelling affected streams with
STOP_SENDING or RESET_STREAM.  Cancelling some streams results in the connection
being terminated in some protocols.</t>
      </section>
      <section anchor="stream-limit-commitments">
        <name>Stream Limit Commitments</name>
        <t>QUIC endpoints are responsible for communicating the cumulative limit of streams
they would allow to be opened by their peer. Initial limits are advertised using
the initial_max_streams_bidi and initial_max_streams_uni transport parameters.
As streams are opened and closed they are consumed and the cumulative total is
incremented. Limits can be increased using the MAX_STREAMS frame but there is no
mechanism to reduce limits. Once stream limits are reached, no more streams can
be opened, which prevents applications using QUIC from making further progress.
At this stage connections can be terminated via idle timeout or explicit close;
see <xref target="sec-termination"/>).</t>
        <t>An application that uses QUIC and communicated a cumulative stream limit might
require the connection to be closed before the limit is reached. For example,
to stop the server to perform scheduled maintenance. Immediate connection close
causes abrupt closure of actively used streams. Depending on how an application
uses QUIC streams, this could be undesirable or detrimental to behavior or
performance.</t>
        <t>A more graceful closure technique is to stop sending increases to
stream limits and allow the connection to naturally terminate once remaining
streams are consumed. However, the period of time it takes to do so is dependent
on the peer and an unpredictable closing period might not fit application or
operational needs. Applications using QUIC can be conservative with open stream
limits in order to reduce the commitment and indeterminism. However, being
overly conservative with stream limits affects stream concurrency. Balancing
these aspects can be specific to applications and their deployments.</t>
        <t>Instead of
relying on stream limits to avoid abrupt closure, an application-layer graceful
close mechanism can be used to communicate the intention to explicitly close the
connection at some future point. HTTP/3 provides such a mechanism using the
GOAWAY frame. In HTTP/3, when the GOAWAY frame is received by a client, it
stops opening new streams even if the cumulative stream limit would allow.
Instead, the client would create a new connection on which to open further
streams.  Once all streams are closed on the old connection, it can be
terminated safely by a connection close or after expiration of the idle time out
(see also <xref target="sec-termination"/>).</t>
      </section>
    </section>
    <section anchor="packetization-and-latency">
      <name>Packetization and Latency</name>
      <t>QUIC exposes an interface that provides multiple streams to the application;
however, the application usually cannot control how data transmitted over those
streams is mapped into frames or how those frames are bundled into packets.</t>
      <t>By default, many implementations will try to maximally pack QUIC packets
DATA frames from one or more streams to minimize bandwidth consumption and
computational costs (see <xref section="13" sectionFormat="of" target="QUIC"/>). If there is not enough data
available to fill a packet, an implementation might wait for a short time, to
optimize bandwidth efficiency instead of latency. This delay can either be
pre-configured or dynamically adjusted based on the observed sending pattern of
the application.</t>
      <t>If the application requires low latency, with only small chunks of data to
send, it may be valuable to indicate to QUIC that all data should be sent out
immediately. Alternatively, if the application expects to use a specific
sending pattern, it can also provide a suggested delay to QUIC for how long to
wait before bundle frames into a packet.</t>
      <t>Similarly, an application has usually no control about the length of a QUIC
packet on the wire. QUIC provides the ability to add a PADDING frame to
arbitrarily increase the size of packets. Padding is used by QUIC to ensure that
the path is capable of transferring datagrams of at least a certain size, during
the handshake (see Sections <xref target="QUIC" section="8.1" sectionFormat="bare"/> and <xref target="QUIC" section="14.1" sectionFormat="bare"/> of <xref target="QUIC"/>) and for path validation
after connection migration (see <xref section="8.2" sectionFormat="of" target="QUIC"/>) as well as for Datagram
Packetization Layer PMTU Discovery (DPLMTUD) (see <xref section="14.3" sectionFormat="of" target="QUIC"/>).</t>
      <t>Padding can also be used by an application to reduce leakage of
information about the data that is sent. A QUIC implementation can expose an
interface that allows an application layer to specify how to apply padding.</t>
    </section>
    <section anchor="error-handling">
      <name>Error Handling</name>
      <t>QUIC recommends that endpoints signal any detected errors to
the peer. Errors can occur at the transport level and the application level.
Transport errors, such as a protocol violation, affect the entire connection.
Applications that use QUIC can define their own error detection and signaling
(see, for example, <xref section="8" sectionFormat="of" target="QUIC-HTTP"/>). Application errors can affect an
entire connection or a single stream.</t>
      <t>QUIC defines an error code space that is used for error handling at the
transport layer. QUIC encourages endpoints to use the most specific code,
although any applicable code is permitted, including generic ones.</t>
      <t>Applications using QUIC define an error
code space that is independent from QUIC or other applications (see, for
example, <xref section="8.1" sectionFormat="of" target="QUIC-HTTP"/>). The values in an application error code
space can be reused across connection-level and stream-level errors.</t>
      <t>Connection errors lead to connection termination. They are signaled using a
CONNECTION_CLOSE frame, which contains an error code and a reason field that can
be zero length. Different types of CONNECTION_CLOSE frame are used to
signal transport and application errors.</t>
      <t>Stream errors lead to stream termination. These are signaled using
STOP_SENDING or
RESET_STREAM frames, which contain only an error code.</t>
    </section>
    <section anchor="acknowledgment-efficiency">
      <name>Acknowledgment Efficiency</name>
      <t>QUIC version 1 without extensions uses an acknowledgment strategy
adopted from TCP <xref section="13.2" sectionFormat="of" target="QUIC"/>).
That is, it recommends every other packet is acknowledged.
However, generating and processing QUIC acknowledgments consumes resources
at a sender and receiver.  Acknowledgments also incur forwarding costs and
contribute to link utilization, which can impact performance over some
types of network.
Applications might be able to improve overall performance
by using alternative strategies that reduce the rate of acknowledgments.</t>
    </section>
    <section anchor="ports">
      <name>Port Selection and Application Endpoint Discovery</name>
      <t>In general, port numbers serve two purposes: "first, they provide a
demultiplexing identifier to differentiate transport sessions between the same
pair of endpoints, and second, they may also identify the application protocol
and associated service to which processes connect" <xref target="RFC6335"/>. The assumption
that an application can be identified in the network based on the port number
is less true today due to encapsulation, mechanisms for dynamic port
assignments, and NATs.</t>
      <t>As QUIC is a general-purpose transport protocol, there are no requirements that
servers use a particular UDP port for QUIC. For applications with a fallback to
TCP that do not already have an alternate mapping to UDP, usually the
registration (if necessary) and use of the UDP port number corresponding to the
TCP port already registered for the application is appropriate. For example,
the default port for HTTP/3 <xref target="QUIC-HTTP"/> is UDP port 443, analogous to HTTP/1.1
or HTTP/2 over TLS over TCP.</t>
      <t>Given the prevalence of the assumption in network management
practice that a port number maps unambiguously to an application, the
use of ports that cannot easily be mapped to a registered service name
might lead to blocking or other changes to the forwarding behavior by network
elements such as firewalls that use the port number for application
identification.</t>
      <t>Applications could define an alternate endpoint discovery mechanism to allow
the usage of ports other than the default. For example, HTTP/3 (Sections <xref target="QUIC-HTTP" section="3.2" sectionFormat="bare"/> and <xref target="QUIC-HTTP" section="3.3" sectionFormat="bare"/> of <xref target="QUIC-HTTP"/>) specifies the use of HTTP Alternative Services
<xref target="RFC7838"/> for an HTTP origin to advertise the availability of an equivalent
HTTP/3 endpoint on a certain UDP port by using the "h3" Application-Layer
Protocol Negotiation (ALPN) <xref target="RFC7301"/> token.</t>
      <t>ALPN permits the
client and server to negotiate which of several protocols will be used on a
given connection.  Therefore, multiple applications might be supported on a
single UDP port based on the ALPN token offered.  Applications using QUIC
are required to register an ALPN token for use in the TLS handshake.</t>
      <t>As QUIC version 1 deferred defining a complete version negotiation mechanism,
HTTP/3 requires QUIC version 1 and defines the
ALPN token ("h3") to only apply to that version.
So far no single approach has been selected for
managing the use of different QUIC versions, neither in HTTP/3 nor in general.
Application protocols that use QUIC need to
consider how the protocol will manage different QUIC versions.
Decisions for those protocols might be informed by choices made by other
protocols, like HTTP/3.</t>
      <section anchor="source-port-selection">
        <name>Source Port Selection</name>
        <t>Some UDP protocols are vulnerable to reflection attacks, where an attacker is
able to direct traffic to a third party as a denial of service. For example,
these source ports are associated with applications known to be vulnerable to
reflection attacks, often due to server misconfiguration:</t>
        <ul spacing="normal">
          <li>port 53 - DNS <xref target="RFC1034"/></li>
          <li>port 123 - NTP <xref target="RFC5905"/></li>
          <li>port 1900 - SSDP <xref target="SSDP"/></li>
          <li>port 5353 - mDNS <xref target="RFC6762"/></li>
          <li>port 11211 - memcached</li>
        </ul>
        <t>Services might block source ports associated with protocols known to be
vulnerable to reflection attacks, to avoid the overhead of processing large
numbers of packets. However, this practice has negative effects on
clients: not only does it require establishment of a new connection, but in
some instances, might cause the client to avoid using QUIC for that service for
a period of time, downgrading to a non-UDP protocol (see <xref target="fallback"/>).</t>
        <t>As a result, client implementations are encouraged to avoid using source ports
associated with protocols known to be vulnerable to reflection attacks. Note
that the list above is not exhaustive; other source ports might be considered
reflection vectors as well.</t>
      </section>
    </section>
    <section anchor="connection-migration">
      <name>Connection Migration</name>
      <t>QUIC supports connection migration by the client. If an IP address
changes, a QUIC endpoint can still associate packets with an existing
transport connection using the Destination Connection ID field
(see also <xref target="connid"/>) in the QUIC header.
This supports cases where address information changes, such as NAT rebinding,
intentional change of the local interface, or based on an indication in the
handshake of the server for a preferred address to be used.</t>
      <t>Use of a non-zero-length connection ID for the server is strongly recommended if
any clients are behind a NAT or could be. A non-zero-length connection ID is
also strongly recommended when active migration is supported. If a connection
is intentionally migrated to new path, a new connection ID is used to minimize
linkability by network observers. The other QUIC endpoint uses the
connection ID to link different addresses to the same connection
and entity if a non-zero-length connection ID is provided.</t>
      <t>The base specification of QUIC version 1 only supports the use of a single
network path at a time, which
enables failover use cases.  Path validation is required so that endpoints
validate paths before use to avoid address spoofing attacks.  Path validation
takes at least one RTT and congestion control will also be reset after path
migration. Therefore, migration usually has a performance impact.</t>
      <t>QUIC probing packets, which can be sent on multiple paths at once, are used to
perform address validation as well as measure path characteristics.  Probing
packets cannot carry application data but likely contain padding frames.
Endpoints can use information about their receipt as input to congestion control
for that path. Applications could use information learned from probing to inform
a decision to switch paths.</t>
      <t>Only the client can actively migrate in version 1 of QUIC. However, servers can
indicate during the handshake that they prefer to transfer the connection to a
different address after the handshake. For instance, this could be used to move
from an address that is shared by multiple servers to an address that is unique
to the server instance. The server can provide an IPv4 and an IPv6 address in a
transport parameter during the TLS handshake and the client can select between
the two if both are provided. See also <xref section="9.6" sectionFormat="of" target="QUIC"/>.</t>
    </section>
    <section anchor="sec-termination">
      <name>Connection Termination</name>
      <t>QUIC connections are terminated in one of three ways: implicit idle timeout,
explicit immediate close, or explicit stateless reset.</t>
      <t>QUIC does not provide any mechanism for graceful connection termination;
applications using QUIC can define their own graceful termination process (see,
for example, <xref section="5.2" sectionFormat="of" target="QUIC-HTTP"/>).</t>
      <t>QUIC idle timeout is enabled via transport parameters. Client and server
announce a timeout period and the effective value for the connection is the
minimum of the two values. After the timeout period elapses, the connection is
silently closed. An application therefore should be able to configure its own
maximum value, as well as have access to the computed minimum value for this
connection. An application may adjust the maximum idle timeout for new
connections based on the number of open or expected connections, since shorter
timeout values may free-up resources more quickly.</t>
      <t>Application data exchanged on streams or in datagrams defers the QUIC idle
timeout. Applications that provide their own keep-alive mechanisms will
therefore keep a QUIC connection alive. Applications that do not provide their
own keep-alive can use transport-layer mechanisms (see <xref section="10.1.2" sectionFormat="of" target="QUIC"/>, and <xref target="resumption-v-keepalive"/>). However, QUIC implementation
interfaces for controlling such transport behavior can vary, affecting the
robustness of such approaches.</t>
      <t>An immediate close is signaled by a CONNECTION_CLOSE frame (see
<xref target="error-handling"/>). Immediate close causes all streams to become immediately
closed, which may affect applications; see <xref target="stream-limit-commitments"/>.</t>
      <t>A stateless reset is an option of last resort for an endpoint that does not have
access to connection state. Receiving a stateless reset is an indication of an
unrecoverable error distinct from connection errors in that there is no
application-layer information provided.</t>
    </section>
    <section anchor="connid">
      <name>Information Exposure and the Connection ID</name>
      <t>QUIC exposes some information to the network in the unencrypted part of the
header, either before the encryption context is established or because the
information is intended to be used by the network. For more information on
manageability of QUIC see also <xref target="I-D.ietf-quic-manageability"/>.
QUIC has a long header that
exposes some additional information (the version and the source connection ID),
while the short header exposes only the destination connection ID.
In QUIC version 1, the long header is used during connection establishment,
while the short header is used for data transmission in an established
connection.</t>
      <t>The connection ID can be zero length. Zero length connection IDs can be
chosen on each endpoint individually, on any packet except the first packets
sent by clients during connection establishment.</t>
      <t>An endpoint that selects a zero-length connection ID will receive packets with a
zero-length destination connection ID. The endpoint needs to use other
information, such as the source and destination IP address and port number to
identify which connection is referred to. This could mean that the endpoint is
unable to match datagrams to connections successfully if these values change,
making the connection effectively unable to survive NAT rebinding or migrate to
a new path.</t>
      <section anchor="server-generated-connection-id">
        <name>Server-Generated Connection ID</name>
        <t>QUIC supports a server-generated connection ID, transmitted to the client during
connection establishment (see <xref section="7.2" sectionFormat="of" target="QUIC"/>). Servers behind load
balancers may need to change the connection ID during the handshake, encoding
the identity of the server or information about its load balancing pool, in
order to support stateless load balancing.</t>
        <t>Server deployments with load balancers and other routing infrastructure need to
ensure that this infrastructure consistently routes packets to the server
instance that has the connection state, even if addresses, ports, and/or
connection IDs change. This might require coordination between servers and
infrastructure. One method of achieving this involves encoding routing
information into the connection ID. For an example of this technique, see
<xref target="QUIC-LB"/>.</t>
      </section>
      <section anchor="mitigating-timing-linkability-with-connection-id-migration">
        <name>Mitigating Timing Linkability with Connection ID Migration</name>
        <t>QUIC requires that endpoints generate fresh connection IDs for use on new
network paths. Choosing values that are unlinkable to an outside observer
ensures that activity on different paths cannot be trivially correlated
using the connection ID.</t>
        <t>While sufficiently robust connection ID generation schemes will mitigate
linkability issues, they do not provide full protection. Analysis of
the lifetimes of six-tuples (source and destination addresses as well as the
migrated CID) may expose these links anyway.</t>
        <t>In the limit where connection migration in a server pool is rare, it is trivial
for an observer to associate two connection IDs. Conversely, in the opposite
limit where every server handles multiple simultaneous migrations, even an
exposed server mapping may be insufficient information.</t>
        <t>The most efficient mitigations for these attacks are through network design
and/or operational practice, by using a load balancing architecture that
loads more flows onto a single server-side address, by coordinating the
timing of migrations in an attempt to increase the number of simultaneous
migrations at a given time, or through other means.</t>
      </section>
      <section anchor="using-server-retry-for-redirection">
        <name>Using Server Retry for Redirection</name>
        <t>QUIC provides a Retry packet that can be sent by a server in response to
the client Initial packet. The server may choose a new connection ID in that
packet and the client will retry by sending another client Initial packet with
the server-selected connection ID. This mechanism can be used to redirect a
connection to a different server, e.g., due to performance reasons or when
servers in a server pool are upgraded gradually, and therefore may support
different versions of QUIC.</t>
        <t>In this case, it is assumed that all servers belonging to a certain pool are
served in cooperation with load balancers that forward the traffic based on the
connection ID. A server can choose the connection ID in the Retry packet such
that the load balancer will redirect the next Initial packet to a different
server in that pool.  Alternatively the load balancer can directly offer a Retry
service as further described in <xref target="QUIC-LB"/>.</t>
        <t><xref section="4" sectionFormat="of" target="RFC5077"/> describes an example approach for constructing
TLS resumption tickets that can be also applied for validation tokens,
however, the use of more modern cryptographic algorithms is highly recommended.</t>
      </section>
    </section>
    <section anchor="quality-of-service-qos-and-dscp">
      <name>Quality of Service (QoS) and DSCP</name>
      <t>QUIC, as defined in <xref target="QUIC"/>, has a single congestion controller and
recovery handler. This design
assumes that all packets of a QUIC connection, or at least with the
same 5-tuple {dest addr, source addr, protocol, dest port, source port},
that have the same DiffServ Code Point (DSCP) <xref target="RFC2475"/> will
receive similar network treatment since feedback about loss or delay
of each packet is used as input to the congestion controller. Therefore,
packets belonging to the same connection should use a single DSCP.
Section 5.1 of <xref target="RFC7657"/> provides a discussion of DiffServ interactions
with datagram transport protocols <xref target="RFC7657"/> (in this respect the
interactions with QUIC resemble those of SCTP).</t>
      <t>When multiplexing multiple flows
over a single QUIC connection, the selected DSCP value should be the one
associated with the highest priority requested for all multiplexed flows.</t>
      <t>If differential network treatment is desired,
e.g., by the use of different DSCPs, multiple QUIC
connections to the same server may be used. However, in general it is
recommended to minimize the number of QUIC connections to the same server, to
avoid increased overhead and, more importantly, competing congestion control.</t>
      <t>As in other uses of DiffServ,
when a packet enters a network segment that does not support the DSCP value,
this could result in the connection not receiving the network treatment
it expects. The DSCP value in this packet could also be remarked as the
packet travels along the network path, changing the requested treatment.</t>
    </section>
    <section anchor="use-of-versions-and-cryptographic-handshake">
      <name>Use of Versions and Cryptographic Handshake</name>
      <t>Versioning in QUIC may change the protocol's behavior completely, except
for the meaning of a few header fields that have been declared to be invariant
<xref target="QUIC-INVARIANTS"/>. A version of QUIC
with a higher version number will not necessarily provide a better service,
but might simply provide a different feature set. As such, an application needs
to be able to select which versions of QUIC it wants to use.</t>
      <t>A new version could use an encryption scheme other than TLS 1.3 or higher.
<xref target="QUIC"/> specifies requirements for the cryptographic handshake as currently
realized by TLS 1.3 and described in a separate specification
<xref target="QUIC-TLS"/>. This split is performed to enable
light-weight versioning with different cryptographic handshakes.</t>
    </section>
    <section anchor="enabling-new-versions">
      <name>Enabling New Versions</name>
      <t>QUIC version 1 does not specify a version negotation mechanism in the base spec
but <xref target="I-D.draft-ietf-quic-version-negotiation"/> proposes an extension. This
process assumes that the set of versions that a server supports is fixed.  This
complicates the process for deploying new QUIC versions or disabling old
versions when servers operate in clusters.</t>
      <t>A server that rolls out a new version of QUIC can do so in three stages.  Each
stage is completed across all server instances before moving to the next stage.</t>
      <t>In the first stage of deployment, all server instances start accepting new
connections with the new version.  The new version can be enabled progressively
across a deployment, which allows for selective testing.  This is especially
useful when the new version is compatible with an old version, because the new
version is more likely to be used.</t>
      <t>While enabling the new version, servers do not advertise the new version in any
Version Negotiation packets they send.  This prevents clients that receive a
Version Negotiation packet from attempting to connect to server instances that
might not have the new version enabled.</t>
      <t>During the initial deployment, some clients will have received Version
Negotiation packets that indicate that the server does not support the new
version.  Other clients might have successfully connected with the new version
and so will believe that the server supports the new version.  Therefore,
servers need to allow for this ambiguity when validating the negotiated version.</t>
      <t>The second stage of deployment commences once all server instances are able to
accept new connections with the new version.  At this point, all servers can
start sending the new version in Version Negotiation packets.</t>
      <t>During the second stage, the server still allows for the possibility that some
clients believe the new version to be available and some do not.  This state
will persist only for as long as any Version Negotiation packets take to be
transmitted and responded to.  So the third stage can follow after a relatively
short delay.</t>
      <t>The third stage completes the process by enabling authentication of the
negotiated version with the assumption that the new version is fully available.</t>
      <t>The process for disabling an old version or rolling back the introduction of a
new version uses the same process in reverse.  Servers disable validation of the
old version, stop sending the old version in Version Negotiation packets, then
the old version is no longer accepted.</t>
    </section>
    <section anchor="unreliable-datagram-service-over-quic">
      <name>Unreliable Datagram Service over QUIC</name>
      <t><xref target="I-D.ietf-quic-datagram"/> specifies a QUIC extension to enable sending
and receiving unreliable datagrams over QUIC. Unlike operating directly over
UDP, applications that use the QUIC datagram service do not need to implement
their own congestion control, per <xref target="RFC8085"/>, as QUIC datagrams are
congestion controlled.</t>
      <t>QUIC datagrams are not flow-controlled, and as such data chunks may be dropped
if the receiver is overloaded. While the reliable transmission service of QUIC
provides a stream-based interface to send and receive data in order over
multiple QUIC streams, the datagram service has an unordered message-based
interface. If needed, an application layer framing can be used on top to
allow separate flows of unreliable datagrams to be multiplexed on one QUIC
connection.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no actions for IANA; however, note that <xref target="ports"/>
recommends that application bindings to QUIC for applications using
TCP register UDP ports analogous to their existing TCP registrations.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>See the security considerations in <xref target="QUIC"/> and <xref target="QUIC-TLS"/>; the security
considerations for the underlying transport protocol are relevant for
applications using QUIC, as well. Considerations on linkability, replay attacks,
and randomness discussed in <xref target="QUIC-TLS"/> should be taken into account when
deploying and using QUIC.</t>
      <t>Further, migration to an new address exposes
a linkage between client addresses to the server and may expose this linkage
also to the path if the connection ID cannot be changed or flows can
otherwise be correlated. When migration is supported, this needs to be
considered with respective to user privacy.</t>
      <t>Application developers should note that any fallback they use when QUIC cannot
be used due to network blocking of UDP should guarantee the same security
properties as QUIC; if this is not possible, the connection should fail to
allow the application to explicitly handle fallback to a less-secure
alternative. See <xref target="fallback"/>.</t>
      <t>Further, <xref target="QUIC-HTTP"/> provides security considerations specific to HTTP.
However, discussions such as on cross-protocol attacks, traffic analysis
and padding, or migration might be relevant for other applications using QUIC
as well.</t>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <t>The following people have contributed significant text to and/or feedback
on this document:</t>
      <ul spacing="normal">
        <li>Gorry Fairhurst</li>
        <li>Ian Swett</li>
        <li>Igor Lubashev</li>
        <li>Lucas Pardue</li>
        <li>Mike Bishop</li>
        <li>Mark Nottingham</li>
        <li>Martin Duke</li>
        <li>Martin Thomson</li>
        <li>Sean Turner</li>
        <li>Tommy Pauly</li>
      </ul>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>This work was partially supported by the European Commission under Horizon 2020
grant agreement no. 688421 Measurement and Architecture for a Middleboxed
Internet (MAMI), and by the Swiss State Secretariat for Education, Research, and
Innovation under contract no. 15.0268. This support does not imply endorsement.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="QUIC">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar">
              <organization/>
            </author>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the core of the QUIC transport protocol.  QUIC provides applications with flow-controlled streams for structured communication, low-latency connection establishment, and network path migration. QUIC includes security measures that ensure confidentiality, integrity, and availability in a range of deployment circumstances.  Accompanying documents describe the integration of TLS for key negotiation, loss detection, and an exemplary congestion control algorithm.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9000"/>
          <seriesInfo name="DOI" value="10.17487/RFC9000"/>
        </reference>
        <reference anchor="QUIC-TLS">
          <front>
            <title>Using TLS to Secure QUIC</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson">
              <organization/>
            </author>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes how Transport Layer Security (TLS) is used to secure QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9001"/>
          <seriesInfo name="DOI" value="10.17487/RFC9001"/>
        </reference>
        <reference anchor="QUIC-INVARIANTS">
          <front>
            <title>Version-Independent Properties of QUIC</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document defines the properties of the QUIC transport protocol that are common to all versions of the protocol.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8999"/>
          <seriesInfo name="DOI" value="10.17487/RFC8999"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="Trammell16" target="https://ripe72.ripe.net/wp-content/uploads/presentations/86-atlas-udpdiff.pdf">
          <front>
            <title>Internet Path Transparency Measurements using RIPE Atlas (RIPE72 MAT presentation)</title>
            <author initials="B." surname="Trammell">
              <organization/>
            </author>
            <author initials="M." surname="Kuehlewind">
              <organization/>
            </author>
            <date year="2016" month="May" day="25"/>
          </front>
        </reference>
        <reference anchor="Edeline16" target="https://arxiv.org/abs/1612.07816">
          <front>
            <title>Using UDP for Internet Transport Evolution (arXiv preprint 1612.07816)</title>
            <author initials="K." surname="Edeline">
              <organization/>
            </author>
            <author initials="M." surname="Kuehlewind">
              <organization/>
            </author>
            <author initials="B." surname="Trammell">
              <organization/>
            </author>
            <author initials="E." surname="Aben">
              <organization/>
            </author>
            <author initials="B." surname="Donnet">
              <organization/>
            </author>
            <date year="2016" month="December" day="22"/>
          </front>
        </reference>
        <reference anchor="Swett16" target="https://www.ietf.org/proceedings/96/slides/slides-96-quic-3.pdf">
          <front>
            <title>QUIC Deployment Experience at Google (IETF96 QUIC BoF presentation)</title>
            <author initials="I." surname="Swett">
              <organization/>
            </author>
            <date year="2016" month="July" day="20"/>
          </front>
        </reference>
        <reference anchor="PaaschNanog" target="https://www.nanog.org/sites/default/files/Paasch_Network_Support.pdf">
          <front>
            <title>Network Support for TCP Fast Open (NANOG 67 presentation)</title>
            <author initials="C." surname="Paasch">
              <organization/>
            </author>
            <date year="2016" month="June" day="13"/>
          </front>
        </reference>
        <reference anchor="Hatonen10">
          <front>
            <title>An experimental study of home gateway characteristics (Proc. ACM IMC 2010)</title>
            <author initials="S." surname="Hatonen">
              <organization/>
            </author>
            <author initials="A." surname="Nyrhinen">
              <organization/>
            </author>
            <author initials="L." surname="Eggert">
              <organization/>
            </author>
            <author initials="S." surname="Strowes">
              <organization/>
            </author>
            <author initials="P." surname="Sarolahti">
              <organization/>
            </author>
            <author initials="M." surname="Kojo">
              <organization/>
            </author>
            <date year="2010" month="October"/>
          </front>
        </reference>
        <reference anchor="RFC5077">
          <front>
            <title>Transport Layer Security (TLS) Session Resumption without Server-Side State</title>
            <author fullname="J. Salowey" initials="J." surname="Salowey">
              <organization/>
            </author>
            <author fullname="H. Zhou" initials="H." surname="Zhou">
              <organization/>
            </author>
            <author fullname="P. Eronen" initials="P." surname="Eronen">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a mechanism that enables the Transport Layer Security (TLS) server to resume sessions and avoid keeping per-client session state.  The TLS server encapsulates the session state into a ticket and forwards it to the client.  The client can subsequently resume a session using the obtained ticket.  This document obsoletes RFC 4507.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5077"/>
          <seriesInfo name="DOI" value="10.17487/RFC5077"/>
        </reference>
        <reference anchor="QUIC-HTTP">
          <front>
            <title>Hypertext Transfer Protocol Version 3 (HTTP/3)</title>
            <author fullname="Mike Bishop">
              <organization>Akamai</organization>
            </author>
            <date day="2" month="February" year="2021"/>
            <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.

DO NOT DEPLOY THIS VERSION OF HTTP

   DO NOT DEPLOY THIS VERSION OF HTTP/3 UNTIL IT IS IN AN RFC.  This
   version is still a work in progress.  For trial deployments, please
   use earlier versions.

Note to Readers

   Discussion of this draft takes place on the QUIC working group
   mailing list (quic@ietf.org), which is archived at
   https://mailarchive.ietf.org/arch/search/?email_list=quic.

   Working Group information can be found at https://github.com/quicwg;
   source code and issues list for this draft can be found at
   https://github.com/quicwg/base-drafts/labels/-http.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-http-34"/>
        </reference>
        <reference anchor="RFC8085">
          <front>
            <title>UDP Usage Guidelines</title>
            <author fullname="L. Eggert" initials="L." surname="Eggert">
              <organization/>
            </author>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst">
              <organization/>
            </author>
            <author fullname="G. Shepherd" initials="G." surname="Shepherd">
              <organization/>
            </author>
            <date month="March" year="2017"/>
            <abstract>
              <t>The User Datagram Protocol (UDP) provides a minimal message-passing transport that has no inherent congestion control mechanisms.  This document provides guidelines on the use of UDP for the designers of applications, tunnels, and other protocols that use UDP.  Congestion control guidelines are a primary focus, but the document also provides guidance on other topics, including message sizes, reliability, checksums, middlebox traversal, the use of Explicit Congestion Notification (ECN), Differentiated Services Code Points (DSCPs), and ports.</t>
              <t>Because congestion control is critical to the stable operation of the Internet, applications and other protocols that choose to use UDP as an Internet transport must employ mechanisms to prevent congestion collapse and to establish some degree of fairness with concurrent traffic.  They may also need to implement additional mechanisms, depending on how they use UDP.</t>
              <t>Some guidance is also applicable to the design of other protocols (e.g., protocols layered directly on IP or via IP-based tunnels), especially when these protocols do not themselves provide congestion control.</t>
              <t>This document obsoletes RFC 5405 and adds guidelines for multicast UDP usage.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="145"/>
          <seriesInfo name="RFC" value="8085"/>
          <seriesInfo name="DOI" value="10.17487/RFC8085"/>
        </reference>
        <reference anchor="SSDP" target="https://openconnectivity.org/upnp-specs/UPnP-arch-DeviceArchitecture-v2.0-20200417.pdf">
          <front>
            <title>UPnP Device Architecture 2.0</title>
            <author initials="A." surname="Donoho">
              <organization/>
            </author>
            <author initials="B." surname="Roe">
              <organization/>
            </author>
            <author initials="M." surname="Bodlaender">
              <organization/>
            </author>
            <author initials="J." surname="Gildred">
              <organization/>
            </author>
            <author initials="A." surname="Messer">
              <organization/>
            </author>
            <author initials="Y." surname="Kim">
              <organization/>
            </author>
            <author initials="B." surname="Fairman">
              <organization/>
            </author>
            <author initials="J." surname="Tourzan">
              <organization/>
            </author>
            <date year="2020" month="April" day="17"/>
          </front>
        </reference>
        <reference anchor="TLS13">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol.  TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961.  This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="I-D.ietf-taps-arch">
          <front>
            <title>An Architecture for Transport Services</title>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Brian Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <author fullname="Anna Brunstrom">
              <organization>Karlstad University</organization>
            </author>
            <author fullname="Godred Fairhurst">
              <organization>University of Aberdeen</organization>
            </author>
            <author fullname="Colin Perkins">
              <organization>University of Glasgow</organization>
            </author>
            <date day="3" month="January" year="2022"/>
            <abstract>
              <t>   This document describes an architecture for exposing transport
   protocol features to applications for network communication, a
   Transport Services system.  The Transport Services Application
   Programming Interface (API) is based on an asynchronous, event-driven
   interaction pattern.  This API uses messages for representing data
   transfer to applications, and describes how implementations can use
   multiple IP addresses, multiple protocols, and multiple paths, and
   provide multiple application streams.  This document further defines
   common terminology and concepts to be used in definitions of a
   Transport Service API and a Transport Services implementation.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-taps-arch-12"/>
        </reference>
        <reference anchor="RFC7301">
          <front>
            <title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
            <author fullname="S. Friedl" initials="S." surname="Friedl">
              <organization/>
            </author>
            <author fullname="A. Popov" initials="A." surname="Popov">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <author fullname="E. Stephan" initials="E." surname="Stephan">
              <organization/>
            </author>
            <date month="July" year="2014"/>
            <abstract>
              <t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7301"/>
          <seriesInfo name="DOI" value="10.17487/RFC7301"/>
        </reference>
        <reference anchor="RFC7413">
          <front>
            <title>TCP Fast Open</title>
            <author fullname="Y. Cheng" initials="Y." surname="Cheng">
              <organization/>
            </author>
            <author fullname="J. Chu" initials="J." surname="Chu">
              <organization/>
            </author>
            <author fullname="S. Radhakrishnan" initials="S." surname="Radhakrishnan">
              <organization/>
            </author>
            <author fullname="A. Jain" initials="A." surname="Jain">
              <organization/>
            </author>
            <date month="December" year="2014"/>
            <abstract>
              <t>This document describes an experimental TCP mechanism called TCP Fast Open (TFO).  TFO allows data to be carried in the SYN and SYN-ACK packets and consumed by the receiving end during the initial connection handshake, and saves up to one full round-trip time (RTT) compared to the standard TCP, which requires a three-way handshake (3WHS) to complete before data can be exchanged.  However, TFO deviates from the standard TCP semantics, since the data in the SYN could be replayed to an application in some rare circumstances.  Applications should not use TFO unless they can tolerate this issue, as detailed in the Applicability section.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7413"/>
          <seriesInfo name="DOI" value="10.17487/RFC7413"/>
        </reference>
        <reference anchor="HTTP-REPLAY">
          <front>
            <title>Using Early Data in HTTP</title>
            <author fullname="M. Thomson" initials="M." surname="Thomson">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="W. Tarreau" initials="W." surname="Tarreau">
              <organization/>
            </author>
            <date month="September" year="2018"/>
            <abstract>
              <t>Using TLS early data creates an exposure to the possibility of a replay attack.  This document defines mechanisms that allow clients to communicate with servers about HTTP requests that are sent in early data.  Techniques are described that use these mechanisms to mitigate the risk of replay.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8470"/>
          <seriesInfo name="DOI" value="10.17487/RFC8470"/>
        </reference>
        <reference anchor="RFC5382">
          <front>
            <title>NAT Behavioral Requirements for TCP</title>
            <author fullname="S. Guha" initials="S." role="editor" surname="Guha">
              <organization/>
            </author>
            <author fullname="K. Biswas" initials="K." surname="Biswas">
              <organization/>
            </author>
            <author fullname="B. Ford" initials="B." surname="Ford">
              <organization/>
            </author>
            <author fullname="S. Sivakumar" initials="S." surname="Sivakumar">
              <organization/>
            </author>
            <author fullname="P. Srisuresh" initials="P." surname="Srisuresh">
              <organization/>
            </author>
            <date month="October" year="2008"/>
            <abstract>
              <t>This document defines a set of requirements for NATs that handle TCP that would allow many applications, such as peer-to-peer applications and online games to work consistently.  Developing NATs that meet this set of requirements will greatly increase the likelihood that these applications will function properly.  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="142"/>
          <seriesInfo name="RFC" value="5382"/>
          <seriesInfo name="DOI" value="10.17487/RFC5382"/>
        </reference>
        <reference anchor="I-D.draft-ietf-httpbis-priority">
          <front>
            <title>Extensible Prioritization Scheme for HTTP</title>
            <author fullname="Kazuho Oku">
              <organization>Fastly</organization>
            </author>
            <author fullname="Lucas Pardue">
              <organization>Cloudflare</organization>
            </author>
            <date day="17" month="January" year="2022"/>
            <abstract>
              <t>   This document describes a scheme that allows an HTTP client to
   communicate its preferences for how the upstream server prioritizes
   responses to its requests, and also allows a server to hint to a
   downstream intermediary how its responses should be prioritized when
   they are forwarded.  This document defines the Priority header field
   for communicating the initial priority in an HTTP version-independent
   manner, as well as HTTP/2 and HTTP/3 frames for reprioritizing
   responses.  These share a common format structure that is designed to
   provide future extensibility.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-priority-12"/>
        </reference>
        <reference anchor="RFC6335">
          <front>
            <title>Internet Assigned Numbers Authority (IANA) Procedures for the Management of the Service Name and Transport Protocol Port Number Registry</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="L. Eggert" initials="L." surname="Eggert">
              <organization/>
            </author>
            <author fullname="J. Touch" initials="J." surname="Touch">
              <organization/>
            </author>
            <author fullname="M. Westerlund" initials="M." surname="Westerlund">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <date month="August" year="2011"/>
            <abstract>
              <t>This document defines the procedures that the Internet Assigned Numbers Authority (IANA) uses when handling assignment and other requests related to the Service Name and Transport Protocol Port Number registry.  It also discusses the rationale and principles behind these procedures and how they facilitate the long-term sustainability of the registry.</t>
              <t>This document updates IANA's procedures by obsoleting the previous UDP and TCP port assignment procedures defined in Sections 8 and 9.1 of the IANA Allocation Guidelines, and it updates the IANA service name and port assignment procedures for UDP-Lite, the Datagram Congestion Control Protocol (DCCP), and the Stream Control Transmission Protocol (SCTP).  It also updates the DNS SRV specification to clarify what a service name is and how it is registered.  This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="165"/>
          <seriesInfo name="RFC" value="6335"/>
          <seriesInfo name="DOI" value="10.17487/RFC6335"/>
        </reference>
        <reference anchor="RFC7838">
          <front>
            <title>HTTP Alternative Services</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="P. McManus" initials="P." surname="McManus">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." surname="Reschke">
              <organization/>
            </author>
            <date month="April" year="2016"/>
            <abstract>
              <t>This document specifies "Alternative Services" 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="RFC1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System.  It obsoletes RFC-882.  This memo describes the domain style names and their used for host address look up and electronic mail forwarding.  It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="RFC5905">
          <front>
            <title>Network Time Protocol Version 4: Protocol and Algorithms Specification</title>
            <author fullname="D. Mills" initials="D." surname="Mills">
              <organization/>
            </author>
            <author fullname="J. Martin" initials="J." role="editor" surname="Martin">
              <organization/>
            </author>
            <author fullname="J. Burbank" initials="J." surname="Burbank">
              <organization/>
            </author>
            <author fullname="W. Kasch" initials="W." surname="Kasch">
              <organization/>
            </author>
            <date month="June" year="2010"/>
            <abstract>
              <t>The Network Time Protocol (NTP) is widely used to synchronize computer clocks in the Internet.  This document describes NTP version 4 (NTPv4), which is backwards compatible with NTP version 3 (NTPv3), described in RFC 1305, as well as previous versions of the protocol. NTPv4 includes a modified protocol header to accommodate the Internet Protocol version 6 address family.  NTPv4 includes fundamental improvements in the mitigation and discipline algorithms that extend the potential accuracy to the tens of microseconds with modern workstations and fast LANs.  It includes a dynamic server discovery scheme, so that in many cases, specific server configuration is not required.  It corrects certain errors in the NTPv3 design and implementation and includes an optional extension mechanism.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5905"/>
          <seriesInfo name="DOI" value="10.17487/RFC5905"/>
        </reference>
        <reference anchor="RFC6762">
          <front>
            <title>Multicast DNS</title>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="M. Krochmal" initials="M." surname="Krochmal">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>As networked devices become smaller, more portable, and more ubiquitous, the ability to operate with less configured infrastructure is increasingly important.  In particular, the ability to look up DNS resource record data types (including, but not limited to, host names) in the absence of a conventional managed DNS server is useful.</t>
              <t>Multicast DNS (mDNS) provides the ability to perform DNS-like operations on the local link in the absence of any conventional Unicast DNS server.  In addition, Multicast DNS designates a portion of the DNS namespace to be free for local use, without the need to pay any annual fee, and without the need to set up delegations or otherwise configure a conventional DNS server to answer for those names.</t>
              <t>The primary benefits of Multicast DNS names are that (i) they require little or no administration or configuration to set them up, (ii) they work when no infrastructure is present, and (iii) they work during infrastructure failures.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6762"/>
          <seriesInfo name="DOI" value="10.17487/RFC6762"/>
        </reference>
        <reference anchor="I-D.ietf-quic-manageability">
          <front>
            <title>Manageability of the QUIC Transport Protocol</title>
            <author fullname="Mirja Kuehlewind">
              <organization>Ericsson</organization>
            </author>
            <author fullname="Brian Trammell">
              <organization>Google Switzerland GmbH</organization>
            </author>
            <date day="21" month="January" year="2022"/>
            <abstract>
              <t>   This document discusses manageability of the QUIC transport protocol,
   focusing on the implications of QUIC's design and wire image on
   network operations involving QUIC traffic.  It is intended as a
   "user's manual" for the wire image, providing guidance for network
   operators and equipment vendors who rely on the use of transport-
   aware network functions.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-manageability-14"/>
        </reference>
        <reference anchor="QUIC-LB">
          <front>
            <title>QUIC-LB: Generating Routable QUIC Connection IDs</title>
            <author fullname="Martin Duke">
              <organization>Google</organization>
            </author>
            <author fullname="Nick Banks">
              <organization>Microsoft</organization>
            </author>
            <author fullname="Christian Huitema">
              <organization>Private Octopus Inc.</organization>
            </author>
            <date day="11" month="February" year="2022"/>
            <abstract>
              <t>   The QUIC protocol design is resistant to transparent packet
   inspection, injection, and modification by intermediaries.  However,
   the server can explicitly cooperate with network services by agreeing
   to certain conventions and/or sharing state with those services.
   This specification provides a standardized means of solving three
   problems: (1) maintaining routability to servers via a low-state load
   balancer even when the connection IDs in use change; (2) explicit
   encoding of the connection ID length in all packets to assist
   hardware accelerators; and (3) injection of QUIC Retry packets by an
   anti-Denial-of-Service agent on behalf of the server.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-load-balancers-12"/>
        </reference>
        <reference anchor="RFC2475">
          <front>
            <title>An Architecture for Differentiated Services</title>
            <author fullname="S. Blake" initials="S." surname="Blake">
              <organization/>
            </author>
            <author fullname="D. Black" initials="D." surname="Black">
              <organization/>
            </author>
            <author fullname="M. Carlson" initials="M." surname="Carlson">
              <organization/>
            </author>
            <author fullname="E. Davies" initials="E." surname="Davies">
              <organization/>
            </author>
            <author fullname="Z. Wang" initials="Z." surname="Wang">
              <organization/>
            </author>
            <author fullname="W. Weiss" initials="W." surname="Weiss">
              <organization/>
            </author>
            <date month="December" year="1998"/>
            <abstract>
              <t>This document defines an architecture for implementing scalable service differentiation in the Internet.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2475"/>
          <seriesInfo name="DOI" value="10.17487/RFC2475"/>
        </reference>
        <reference anchor="RFC7657">
          <front>
            <title>Differentiated Services (Diffserv) and Real-Time Communication</title>
            <author fullname="D. Black" initials="D." role="editor" surname="Black">
              <organization/>
            </author>
            <author fullname="P. Jones" initials="P." surname="Jones">
              <organization/>
            </author>
            <date month="November" year="2015"/>
            <abstract>
              <t>This memo describes the interaction between Differentiated Services (Diffserv) network quality-of-service (QoS) functionality and real- time network communication, including communication based on the Real-time Transport Protocol (RTP).  Diffserv is based on network nodes applying different forwarding treatments to packets whose IP headers are marked with different Diffserv Codepoints (DSCPs). WebRTC applications, as well as some conferencing applications, have begun using the Session Description Protocol (SDP) bundle negotiation mechanism to send multiple traffic streams with different QoS requirements using the same network 5-tuple.  The results of using multiple DSCPs to obtain different QoS treatments within a single network 5-tuple have transport protocol interactions, particularly with congestion control functionality (e.g., reordering).  In addition, DSCP markings may be changed or removed between the traffic source and destination.  This memo covers the implications of these Diffserv aspects for real-time network communication, including WebRTC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7657"/>
          <seriesInfo name="DOI" value="10.17487/RFC7657"/>
        </reference>
        <reference anchor="I-D.draft-ietf-quic-version-negotiation">
          <front>
            <title>Compatible Version Negotiation for QUIC</title>
            <author fullname="David Schinazi">
              <organization>Google LLC</organization>
            </author>
            <author fullname="Eric Rescorla">
              <organization>Mozilla</organization>
            </author>
            <date day="25" month="October" year="2021"/>
            <abstract>
              <t>   QUIC does not provide a complete version negotiation mechanism but
   instead only provides a way for the server to indicate that the
   version the client offered is unacceptable.  This document describes
   a version negotiation mechanism that allows a client and server to
   select a mutually supported version.  Optionally, if the original and
   negotiated version share a compatible first flight format, the
   negotiation can take place without incurring an extra round trip.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-version-negotiation-05"/>
        </reference>
        <reference anchor="I-D.ietf-quic-datagram">
          <front>
            <title>An Unreliable Datagram Extension to QUIC</title>
            <author fullname="Tommy Pauly">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="Eric Kinnear">
              <organization>Apple Inc.</organization>
            </author>
            <author fullname="David Schinazi">
              <organization>Google LLC</organization>
            </author>
            <date day="4" month="February" year="2022"/>
            <abstract>
              <t>   This document defines an extension to the QUIC transport protocol to
   add support for sending and receiving unreliable datagrams over a
   QUIC connection.

Discussion Venues

   This note is to be removed before publishing as an RFC.

   Discussion of this document takes place on the QUIC Working Group
   mailing list (mailto:quic@ietf.org), which is archived at
   https://mailarchive.ietf.org/arch/browse/quic/.

   Source for this draft and an issue tracker can be found at
   https://github.com/quicwg/datagram.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-quic-datagram-10"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIADEhJmIAA5V963MbR3bv9/4rJusPK6UAiNTbUnITWpK9SiSZEekkm1u3
XENgQMwKmEHmQYrr0v9+z+88uk8PQG+yVWtJ5Mx09+nzfs7n8zDUw7Z6VZzt
99t6WV7V23q4K9p1MWyq4t9+ef+muOzKpt+33VCcd+3QLtttKK+uuurmlfw+
ezOs2mVT7uiDq65cD/O6Gtbz/x7r5bz0j81Pn4VVOVSvwpL+e912d6+Kulm3
IdT77lUxdGM/PD45+f7kcfhS3d223epV8b4Zqq6phvlbfDmEfiib1a/ltm1o
tbuqD/v6VfF/aYOzoqfddtW6p7/d7fCX/xdCOQ6btnsVimJO/y9ouf5V8XFR
/OtYbbbVbd2s+Mey+Y9195dy+qu2u35VvOvqZd+3Df+k2pX19lWxw9OLL/Hp
f670ocWy3eUL/rAAPHe7art1y/3Q1WWT/4IX+6ltr7eVXwrw/OdBH1wsN/y7
ng5bDfQ4Qa28mf80brfz8205/LU45d8vCeKvipcnJ0+L/xppa/LWsh2bAYC/
uK2Hv1bdlsBJ8Kdb6HblUN9UgJXt6fT5K35JscXuojgvh41iSNlVzfKu+FiV
/dhVu6oZ+mLs6+a6+Pz+/F1xNmzLvniAv794XHw8uyz2XdXTU7RW2zzkr6c7
wv/m+uc9oDt44PAyh7K7BmA2w7DvXz161NX76sXjBf5Y0O4f3e7ny5aO0gyP
xv22LVf9I7+p/tHL5/MS+56Pq/2qXq8X+9Wav8zIWzw+OX0+P3k2f/yMfvhu
VW3rpppA6heGwC9vzwuCa4JbIqp3N+12xGrFg7L7z/oGYNl3dTMUp89PHy9O
Xrw8ff4/gM6/LmwD/1Pg/O8B/G5RnF1Vzb1vv20bOttRyJfd1/pmQUj9qLzq
H6WTTYF5+nj++DH98OK2GoYJKJnbvK3oou6AXcW7r3siNEK6qigHpZXiwft3
lz9+/1we/qH98X+LZe8XsvbRU9ze3i5AgXyQfdcuq2pF19s/+v75o35br6pe
/5h//1y43pOjGPNi/viEfnhelv1y86ls2uvsoJ+qgVjel+Ji3DOKAHMu35wX
P5b9UPy8rwhVPp19+vmn4vmL/+3x3ix01XvP12A7fMC+HuhAq2pdjtvh0bre
0r/k5V91h7/qDo8eki7zCf3wT+VAHLo5PcmOeNYUFV8fbrLcEgsbVyx2Nu2u
Kq7pM7flXbHclF25JJKp+4E4avGAJNCSkPDNx+L9xzdY5+Rhvu7J/PTkb0Ph
YmHbOv77s0Xx6a7b1Pc+8IGo7fq66oZ7v38xdO0tCaWjvz+n35dduy03Q30/
ubZ/aemHn3988+zkxQucBDg9/9Pl5Tmh6fztIslW3J88+vLk5TM8enHx9jzn
Q+fNORHPTU3UctYtN3S3y4H4dEGEmIHw8cn85On89MXfhuIZU3y7ae9lCJ/b
+7nRD+1qW1bNquqOP/Ivi+Knervqqnu4Fa3+ser7+17/MwGw3t27sx/LmqTc
PbdLS1+2Y/dX/f2USlqiwCVY3ZKkJIlWJpZx3+zn/b5a9o8A6nlJMJ4LvD24
5zcE7zmgfPL09AXTTQjz+bwgtjgA10O43NR9QWrUyExuVffLkY7Zs0JW3qul
DVGg7FVLm4U1fYTFDwmXZXlTlSSR692eVsEP9VsseuydYlXdVNt2z0uTPkD/
NnYb2puq47UWxXt8CHJzVa0IR1bChLHtqq+vm6rrsbejC+zop2CZYWj5YzNe
hna1ZZWhlVfpWH119AP9QuC1q1crUo3Cd5CpXbsal3gsBAbGb7/9Hf78RyKI
709OTr59w97Koqluj8AJf7mpVwySohl3V3TMdh3K1U1Jp1oVa4Ib3Vy/KP5j
QzyQDl4Pdbnd3tlpV8ygcROgTdJ5KoJ2X82KetBvEx9Ylnu5tpqvkgTWklS+
qwqPrwrSwDa0+m5cbujvRBPFTUmiTe7YgYE2wQes+0AgL/f9SGoevV83UDH0
l3RPPUB2ynd03dETfXH54aI4XTwh0PwT/fX0CWDz8unT5wSbocXHurs9XfmW
wFHeQRUCQyj5cnYtiR3oScSxiqgfknZbXNKZbTXaKB8fZwsjEFZ3Wnxp2tum
IOUPv3+ELURG9u3bYorwBrHieqxXuAGGrkcFxVFgGQPytqTXCJ1o0RDpId4u
QNuOQ0IxXDTdDH2IHq7prm/5JDVQerkdeemKcLjchvu2QDhKy5f8KSYLPRk9
tao7onRCjkQuIbzntegr2217i5f6ainfua2Mwgswj3pdLyOpKoX8sc/JfhaY
Yvp+NEy6Bzi7Ue6tZ4S63ZDeIOyAAUT3UYZEDYrCdXbOBegLl/ypWhKvVZ7z
I2HJVbn8Uvz23Vr/+k0Jj+8dyi6+XvQjM7WhUvhWTXlFSgSe6sheAMuwS5HN
42C09V099NgaUIt0A1qyUY1IqP6q/UpfeSDXhQN9Ort8GC+6q0gmdvjxuF8x
7gPBv0KFoJ/ZlwiPO1KnupHZMh3U2S2sjYBON7SFot8Afa/ovarCPZKtRSic
DCOiIFhOa7KY6OequNIP6SBLfCxtvy+uti3BDVQGINER13ThswIbv94A/l0V
CFB0zSS0iwqEAPSjT7T4JW5pxwyyv+uHCmS4BP4wrxrK6wo4474cyP6EXbbC
z6FB/vZbtFKI9ORWeE9MFHQZkTthjx7jQzc2jcqSod1jD3zjjGRVzbsjbgbj
xRYsl8tqzxgYRWWxJiuWoBzoKz2YnUFmBtqh96vmmnZX6ReAXgWjGv2jh2Yo
YIhoG4zMSSYJjYHzGi8CYOmAhqTgRWCDTJkEDWY9VQGDobg8O7+IFKg0Tqwy
qlkD8VqW6XSxxCGWXU2bLfUalH0D2js62Nn5eyanHanNNeG3k13KZ3pish3d
HXHvjlhFV20rXCC/pcQZiEWVK1J/ouzn64n8Z52OVdKi18dWC+HCTkTiapbe
IGiSolMtof/Fx3ED9IvbqvwC+SNsXZCNnwzpSbqhFfMnAOGmJSxd8QUo3ySZ
nvEkRqhI6n2I+4jfiVwKB+XlgCz4KREzSIBAd5btH9gMssOFkiXRAkpHZBQe
3bWreKsi0Mqm3kNy4gc1401QRCTNcOyAYzOSSLcNCc8VM5Ci3WJ7WC1Cho7V
QKbOiLfWhMs1c7ZVoC/mcnhGfOt6A85E8nrAitAbeE8NRIWAPLAIbmnJPX2O
70WkBO2Jrqb6WgKCMwaRfIkvJwq6prpuSTFhNYhQl+T7iycnp4SvbUNrMCsj
AK3BUqC/AMBpjaJeRxVBzyHkkathKlRE+tFe6M8NUYYQAFTLGpS7Hhv+KC8y
MwiThmvMzFQqE/ar4upOYNa0g5m0+l669UTrBI+QIYOjagEQ6yzt1U3djqRb
1Ot11ZmOytgI9Fm1tANaMOgu2I9W7iIlfWWVkPCF+TKh1PEnbttxu2JUFooI
EdNFMXN6O0N6W97RTus1vwLCiRiHTeUSsWdZbzJrXw4b3Dkp3rR5hlWvLgIs
ktwD7Z5XUix4evrk2zdF0mAymCDMohMY5BU+QsCKeSxfKcO/7pz+R2L7S8VC
jfXpYNy9ZQ2v3PZtdqkn88+Xl7RYz5QAtN3tjezElvhEKChKI4MZN8Sc3gs/
L/ajuLr48yfZMmk8gr8//ky6YB9IsEBbWY/Q0Y0qaDsPepbczuvy7dtD4isE
YftEBGH+EcV3aDCr+dDO6Q/W7llUk7ai8q6AdgUOHGFEiBmIS6z6DVE441Km
q9HuZ8XYbOsvqrUyuKCMELIBofnWoAmIfs5eQkYpWpklHS3wsGDVtYfgpbu9
S1q/2BVBzCzQiGMRkV7MDmG4Mh9fZ/SE3wPTCLEV2aqV0Ji7etKRQAQQB1f6
hBLORBAAOUnVGWD+GZ1DUawHoCVQh/ADwMSr0BOFXFVWQcCOjX2NjKCxKW9I
o8C7omYTfu3K7g7L3yXOsauWdAt1v5Mb+1IRlCADd5AbtP4K8FopXNaBbpsF
CHsW6RiAkDyShNPrgtTCiq8oLQPeyFRJdwbOHoj/wECbAoJUeni/loMtecCZ
ieHLNarODY3Y0ylr5v9VdW0B+vrtu7/SX+fdMJgiHq0oqBRChO66qh7grvsN
GA2UElM/i77cgeMuJZjDWjOQK8oG5grMZeWjeocwiIAaYyMGLkNtQ3AhfU42
ETIpkuwQOsjZMaOcrz2e4vdPAEz47xGA47gFLHPl+IMI6bYRFhNZfrEmROMD
79tadPSburpV14Pfq261JjB9rrb8fWx3Vc3b9bp3ZgGws+cvLbdtr6IjEBkT
NxHfgmeVII7uDj8nPPxSVXs2ScG7SXtO239N+FaRNE+Mc34zx+N02JuKreez
JiOxqFJBz79itrWFI7UFpouRLNCcgV8rXMuu41sLXd1/wRFIiycxVZTDQHi9
KCzGl3tiBKTxg2p4gZ7oEbiLg8Bc1WXRYoe7fcV6S6akOX9IX66x454xE4pP
0uSDflc9TfxVFrEk6PDU/PO78w9nfxbXxosTBs9339G98WHO+DB9CJ8rxrdd
LUKJlniwI3guoSs8tKPTDlm4QO6VdSPrKM4ze4e6STwvLEtAQPTWDjwTiiwg
3ZHNDGyJivmy3deVubeE0pSUzyZCgU8P8cloRUaZaENHlhebq4WoquCp6Rjo
wHgoO2sVUnImMPczT4VJZynKW+Adbe2WdfWerwGGM/SEuPbi9xCBMJWVMdEw
jIHjm7JvrBZKIFtFUpVIoNze9bXwilLvc2/88NZjhD8+U0RxIXQUni2e42n1
982JS/GlQxBAh4CI7FlSiwKOj40wjBmitFeW3gcyOV8xsDSCn4m1fNam+dJp
6+rFKVmIyfWL9UzAFLeXgHcNpwFJlm0pXoiK6Hs5wGaqWR7Tj3jhjlCzJltw
C6yMPA6/ZgFxPXZqxdA9q0EgrlbdiBCSIQbukNZYVSTnBnZFiNcKT87hdOjF
syWaISFJNdT8+U3ZJxxFuFL2q14dUXLit4q5gy5WDH8yySjYJ0phS9TGeAFr
b3dFJEUQXtXE30d2ptZHt0nMuSWkaYjxuQfMKmTHSHyYLv5nFtl2FeKAMC4n
6q3pmA3ZhVVp9u2WHRQiOXrCUKjGQV8olYSYmomE4ukS/ouCsMaZbsu7Xqj/
L4BYOmLI7ihCbGyY0up1IlIy24G8ELkTa2Diku/TZ0oFrZky7F9gNAqs28IR
tK2GythbsvzMeo1Yww5pmM1EodfxBUgGYacXh8o8LF2ys/6VBNOcJRNpJPeI
rBB+qIRlmnv4iCN7VtyjLYiKtapK8esG0jtJaYg+vRWAUO+qdhz6hYaK6aNE
RwPzHG9H3NbbrTksSFOLxCZPM11w1H7b3vbqLFZTSNV7MAlRc1l+x9cCe/F5
Z7DzsCcEOtuVegw0mrtQ8+zZk5ePyUjvx2vSlAYQGJuBCG7Ia0zfQ7GtYJuc
Pn5Kp2jGAXzNuw0Vp73VhEBCTwpauQoTPyuLoFpc7OwONDuVVChQEzyixUUG
WwUrH5BvKKq/NbzY2+3cPPgsZpbLlolI7CIEZiXEGx789luMCJP5NRNvsb9t
EFPZE/KozgZN/tPZZXFVq8XaiRcwCMQrJLHwS6RSs/qxBtz/AkShQ3YDdAni
nivVOkqL2hXw1qo+9mTxLNBvNYBK17EWm9yF374k5IZm3hGT7g1LXhGnC6r+
4AbphurduCvomZGv4vSZbWJWXLGPGqZMhU1tEV3s5FF2g4aWZBKLBLckLIOO
+BOR4A93ShCZRvn+7SxSVIxLifDp2isGRstgVKcibdcAKgAr7Yodh2MkEfdR
td334FJQpWnfojbvSDOCdtQHNcMkLlmKP0JXgu1CFEBLjCyNzTDkH9UiaFhB
b9kpEWQ7rCsqzrVLsrl644t8ynRyY4Jio04Omw55VSVFraOPgsHnMQC2rJNf
dlawsXVVbmEHdqQZjjEKKwd7pIGTsZsP4x7qbqvhH/O/R98OFLPZhP2QIWWO
st782uAPdkGspKqTUpgz6Q7wyossZhCWw4Ydr37brPkQp6puibH16igK5Qqa
jukosr0k/I278Tss/htRYDkYYvwQHu6O9rZvBaaOESaDStTVhdqhh5S9YsrM
2WIUNnw7aoNEdHyfeGEfsecYz1fbCSrW0u8oUQmzVX3auW1Fdq8KVXuMfGkT
GtkwjCfD3S8Y4HLZkVjtRC1NDOX0ZHFqMRL2Ml0yk8YGJYIkLrr+VQjz4v11
03ZyeA7rzUBoE5fBXNyG0T5mjznkBZNni/QbZkumZTB+0SW27Mq/E3mUgZ1D
LoxF+s0/QsvBR4Hw9L0DGoJZENXnBW38XYOQmQognI0W3CIY4dfBg58r5edV
9AUa15k+P1PuZjZlVDIQwKRdEUy6dt/BpacBHJHKEmm8vjOWQuKSrK1B+C3H
ewlODFBx6BNNg3Xl0fUQ3tVKidGeUyglM6wspqjNmM2W0vn7Tz8R5hFS9Aji
JA4Occ0urxvxSlRTdwDEHF0zSNpIjhGYLBQIPSIEMlxVaig9WdqBmlluMb4M
jz0W2poxzyZ9h7RI8wCr6Kclkb+pYkz0S46W0IWBNtedaN0x7yQLFL93XsnZ
geNPsz5EfZO93OFCI6wVunQggXpglRucRqwGHBXnY5Vi8nE+MolzSc/I9Iuo
Vokr4slJ1AWS5py8jyKuDar7kfTBZUrZ5AB6CZIILBWZ+85y+c1wp0teVx1/
Uek4qeyMKUq74iIkCrqBhM9Jre1S5oRIcUY89cJviVdVzU3dtQ1/9EG1uF6I
vQKWTYB7iOdJBas4pkc6LP3FWCY758geGEUbJF0akg7iVTHCIzEkl109YlUs
oipmKQ6a7CyOlByZ9Q6GQwx6VV85ieAGRs9eU3bEm8bCqFajva+HURBcdYUW
bl425cRHzIcZBScJTvxv5PGCAzAbf7BrSROpHiIZopbY4WpVy1m3dzMTAH1U
0vlQ7ji4pB089sQ3NqVBEY78bSXOSsZWBWhgxtuNe900B7ZJlPz7R2CZGsm0
0SWghF1vyRYuViPnKPBWSRsl4AN3owY6I/MfdMK2sVNT4S3aAiPV1Tnz5PMA
vA6KUGJfD/kw4BCHQRjaOGFhuRIbWO4+WmpJh8lJu7TFYu5NH1U3jSAlC5zx
ItNT+S0oGFdwmzLfB97YJaSN/7EPmWx/ED39SbLjgV/tAedENqksh+9h/dwF
6Ny8DSRy0drmkVA1N/7a+HlybB5CbkZfI/w1bmS8s25u2u2N5XN1sCm7wR5K
n18UP8PjTzqtLh5YqJWijLCgInZSszXMLiz8RZUV75xzWwShMIOC+9pEVW+x
YtsGVG4VmuzDzlzYTtSaUWvSxDkK4Zwa2VTHc6D0uefFVyR1+0kugFcBNVCE
jfsF+Mx1E5Z1R0akaCA9DsRBH+RsjdXqIPxTbIiJ04sS0XmdJ5bN2FQFhuNj
M29yiYJxsL4yeOZ1PYMPTAJVJvQ4B1x+EUF7wVHgXlRc0pqORYU1xI08GjgQ
MiDAPTQ2yTHc6/eUWtTBlvBlFnObNkSt83Y9Z5s9RkLtBvU7JAplh0KPTLlw
8AtaEioJa58pfGF7ScxIw5ZChbewpVla0ctQTargc1r0zPIpyA5ZO2Y1NrWY
QiJgkNzjfzBTr69BjuTElWVWEm4FSyi6O1AMiHaarTjG9XH4AxCNniypn6b9
iA+bYQG0GdxuRRQmU5LdCKBDOTRZ8uVXNQVC8fgf+nH/f54//odH+HN+Stsb
hDb5lbj4jHh7JZ7wZctMld3MlrlD+5GtgfqqYboJ9jjFcDu/2cfsJg23EQAk
agzH1U1kxszHxKXNDI12JVH4MlNzZ5oK69bkHIbgydzcYeKPzC+XdBTWHmUn
iFrBdsIpSLIh9ktCb1lp6Jww+gqycXuHUHuYas3uUX5bdPdrdhxEiMoFK9iu
wCnEaocRL9nPIoDooR/ffyJUUz394vLzu7OPgqTIWrZY9tFF6WNsd6dVjepK
Zpxz4WhgfbTITJJ1OXSP+CgcetFvAixSizGw0asQ+N0jdpHziM/ZvCb5y8Ft
Nb392jKmLSABpY3P5+6K7VlgKjsbzEKPIVFzHZeNWJLrUhNfobftlapYB9K8
EVgsciek/rsLMpf5siP6XNJL7DvIw5T4tSLLVJ0HxRqoC9KrwHXEBIl+2MN0
Gs5oQ0BR3ElmtAMrH5EYwA8hLKCl4vno9BZlthkkBjEg97SxgP3E0YS0DDVj
JsntpvYo/+WYxxHbS733FreEeNK8YQ5h+qRo5y4oSZTcmjQtUBm2rDnsAz2L
VhG5FcTnJ2HnSaqBmoe6O/Y4nJmQ0SuLgXY2GSDukAYyBXX0cJrtrAcP8Ltp
fCTaHTONuHM8LaaHsK9Ib5GjS4pAemBShZq2uB5JgSMU5G37WC1LccFF9l7A
ec2miFg65bKDZm1iEAf9OJGxEcvpXpdjxyWLi+JtjPQoh4sh1ZDxuui81HQw
Sf2CTwS5udBKN6pO5wKazEB6fkmfU4/sIbASiPTAA+tYHFDmzJ6hyg7mWbKd
ySz1FlVxg/F6UAGUkERFsokl9CKYkky90ALs/bpng32S1SSr4wpIakWt1mi+
je73hs01mK707esqORB8wQOe33HMJ4aqOrpMqyIWGxxxMnkXMd21OV4Ueh2b
ESp92G2nsppPy+qiXvGgEtc5n3uuPOLw3FJyxHm1lOMnPFRS9BDIDJFPluPQ
cuY1s4wtLhxgAtdc0ptCbH4/qabEPq2RfTuIYv+ancQTRmmWiPtgiB+0o84K
PaiKYzln+hmD3BZXdiG8Dte4IdxgF+x+ysmiF7cHc+mlPgbFzXRdkq20roX5
slwxDAFk9E4UPd6/Nf9MkIOLX7vf1HufQtNX7rOiGBl+cdoIS42Kc6bVZYtk
21Tvog5XUv1HVr5jqq54e5AExk5m1o7cFoBuKLhpR8RFyt4V2kwCsEqmknFs
3lMyggbN7HBwCA9ExsRoSVRvHWRmmRdMD4sE3Kn+HCb6cwZcuWBzXMmPH74+
anmRhkH8ci0ysc+2TzwmBSGI/cAYlAgeiVbZ4S7Z3ulmxaAkg3ujwUpCyqUk
NdiB3KU6Oam0q9TgdhvkvuhK7hJ6RPN+cie/Rz1y6MBkKyHF0sVKHAA5Ggxv
YJ9CZ7lCI0GRobirhsC+Cz0mwp15grYKdQ4XxRU0KWAt5GIQ4LxXTs0utwjU
3olbRAAjrmv4oTgcwwfYq353xbFYwXK3hqo6qJ2NLgP6wZ1oEna2FKZ4biSj
isdDDfHLFzWs/yOEx0dn3Dr7qas4jYJ+iPg6m9GavOmu4TVEyDKht8v8qlEZ
J8ZpzSUAVvLkMl7prM1KkjqL6xrZDGqpat4/VAb/TQGOJLXIkg/6h7zViR0s
ITR8ahEcDh0z52u5/Fj0KCI0kl1M2JNknsjosUilJTsxkk6/GiTx0mdTmRs0
lS/Fj4aDV42akypylU7HSkPKgERhkgQoUTO1IFkajfhpKPUham4BYKs704Bu
NK+mSm/dhJQXAT8UG2rOsHxQrzkfsJJMfO8IbJMSuEHmJBGYEFaWeu0MUZ/f
IiFAPAYeQXJXc2f7h5ab3A+I6Gc5VGUjhoEPCCITd0C4A7K8vRX8PydRAOPl
r8KNFN2hfLsfG04IFopKk4JHdmXKk6OoD+cHH5HYZ+SDopokVWVS3qss7V5r
beppiptOmo3YGsiUO5uGZyNvxdJSHDk9dr8kOVBN6sBeQe87WvDLzLMbm35a
OeaSpgiEyL+M6l7PCiC4VcnGpu7gLvnWJXnN4rY1V7ygWMt1nUG59lXdz+1l
ZHVoOulr+FHd+t1IxBGs7o24nTPgJZdWtKUq7gSOTvGBcgORr8NrDtnwV9Pd
RJsTRZnunnC1pMfcVBodMrsz0UUGSwEcoea5re7N8C5LZ01OGleFkmGW1eMk
lGKTeBHRwrtK48dF49+CUJnyr4TtwI/EZQyk9G852UM16lXiQERZhyJenfCq
0kdgQ2gGoXyxB5zpxvpNZg1OMPMIMCDXYZ5ekUBF4BqKa6MVzZIcuqYnmMM3
xTVKmXA3SNeUAlJJjCCUCOaRQ/8U4hMs8tV08Zuln47NdOuzEPEG1LMa77s7
Yd3sqVwr8szTq+omzvJdYPdzrFF2xPQRrR3l76yxCmtKbCNEokt4KZV4UueT
gVat7a6+MaU3Y5CralmzCh61Q2fMKfZb2rM6jMBmf4bpq67Dzwayt2rTq+lh
l69Zxa17JULZ3ACkiGkpg3hAY86pOKCmWXBOnGg2RhEz2j3OHTNQ4XQeB7ji
xfVgW5gJbk3NBlYvfVKbeuaDnuHOPuB8AgSjXxqpiYRDKWp/s5w7MXsV6RLV
Tf56QhOokOCot2W3wpHFeTiSwNwWWZIrh1quR0jqWP7FwaPMAVvHdC9g3TT9
qEz2uewAX9q0hIKZYxsim26JNxHcuhaySPA4qk9myTaPF49Trg2pcq0ri0up
u8S8rpEA4aHH98KqjYecQIZxKHhPxoxe7CVsmy5Rk90imHI7rtdGGtl3RF+S
2o38IiWr3ClvFpa9qshKqBmNV8llG4vbxJBQ+1aKMc19LJeAUMQIOi98cZM2
EWDaLlfwVvVCmazyv9Gremu/Q8E//WKudziPL1nVUXbD6X6epttJnsYy5V+z
AsQKGit+QW/cSuuu2L/WR1BpXf6aa6RIUln2PJM/9KlY7SXRE1ZRyx3OH8s6
vLOPCM6WqBu3SiuiksP95rRMdcI+S9J8tT1+gNxkJIFHA0x2YZ661bhk76Mk
JKjWIXG2kYvRch3Z+LbcGloqgFftSo2t2BXQtaVrqidBJE5KyXnh3URBiw07
LKs4OL8ErNJlu9PKHvrIrhCnKOt0cB9N+R2yMUatb2H0N0Z7hAcQKJnPWaTV
aj94S3Y+TpVgTEYmajjIi0cReobEcEn0UHpZUoBEzJcsWZvHeJG2i+CIDSdZ
+krASe1MlBSM+FKTK4Z8rBsCBDpj0OWql3CsiMi4EcW8RcG5rdNz6ZHLmyzo
llQ3zQqcFJbqT43vxSXe8J5isUmsfy63grBIk1DRWZP+t6qleCw6w32Eq9Bm
Bx6QBwKWCLGp/3uUsmt4iGE9G7jNAFRzh1TEytTMj2f/+evbs8uzIOEb/rfE
8vjHMYBdJnmh8F4togKR+gjJ48jakmtNGrElbijf5ipOMI+GFBany6g80x1j
ySDb5jCJnieag+oi4AgkklMIhDt8UlhFMJY+9fKmGtyZ1ttIRcqwIUodttHh
LguH8AGJZ3mWnTn4PavxFKTpaHSges9h9YgCQNDC4eem8g43OLalURuiuBoZ
ctECzYGzDJ5wjLpS+o4Ztofb4E4Y8KCXMV8rV7691iBhVM6L93uJsRWJtqkW
MeMSM4EEh2Q5p9z14zD2yNUykhhhKQ6H8XjNdWWwSYxds8t/P4xv12y4CiwU
j0Tyt58VqJkdNnNkEdZfXfhEHFzqDyQgcIJrJ/x8ynNaMS+DqjN8u+rwmrKe
FNKi3fyeroaLD8dO5ZNaO/QpZa2VNcaUO0pIdVVJ6yMumwl2G6KDSZYgKk31
/IWcXzkgl5C5wkKYzDEzgDOo0PKVpbsJRMQbqjwL1lVsMUtNATFfkhVSPaWv
d0NpswS/uhtO8DmC4+aBz7EylAMpKRIukttjtbQf7raV33LBBrSkdTAm5Jcq
uSlEZ2xulhzVUwHL+CAyuk+ENvM5oIHzGTN2puz4KLGyecX8g71pG0nIwp0G
B+EoDsQtM9mwGiBIKhEsF4UPQAKOMQ8MkuKwZO20NP1k2GQsQNKhaVtI2cps
Mi+dgl2n04W4chLiHPjDJA8eaKlATs1OkXu2hqOoXQRucdl7s62VgnJlD3C6
wvRSh4gJCE6P04RSe5Qs5ZjFpwoUY3xEgMiYjFPH1HY1J7bVelB6hk+B6c4E
Q7xXJja53L+FqLK/YEH44rL1186oWG9aCevEXa61OUGCknayMOkGhqZxMisQ
KO3E9rSJSzaQEj9n2ZrAU2gxqgRcBEvU5Q6tvR3M2TGfZFHN1etwRHpYHZEX
jP2SmEtXty4vnChdcjmv7ixULsVSqkHEcCrqEC8ufz7/9eLdp7fInKbNfX53
8e5SVRYC65v0vqQ467vWxqe2BgK2/SC8MuajrGJ2tO/ulCI1Hzjp6w2pZPUg
PZZC5lcTiTVNqHf5lJajOnJQnq1l/mTKGwlsCEjGgzhJJQaSBfHqTnJMtbA5
k5fl6gaBRvBVTsAMKYdv++uu/PqrLvQrIp3SFfLIL2m/xzJ9CRxnMfODlztI
S0uBsCh/TRNxxx5atKMlgRKVHuiUHzL5bYF+PQh/IqmoF6JvcvBuSKWZIZml
Q6QyS+/72YXHHMhUvZhxtbLPTYCXOcLekpmUH0ySTV3xLDMGkgPMFbTA0dxB
BL/B5BIna0yyIpGYkrDxpi7zyiuOf6o/kcH9OoiPhjjM3Lm3JcQ46VmRW6BW
n6CoiWvyF+ShJNRqlZcTGrI0F7l8x56nGZJ5f63A4dl2r/yxU8U/GuDiv4Ve
VnI0UGzD92Yv+Q1Iwp71CuA0Pv7ZKK0WStPwfXoGly2nypyNBCN8bDwBKvp5
JT0/FnA30SksLoIhtllmkKgnqe0y8xYKB+OYJUfGrU7NOIaOWTFGC9xlcYLB
MfPo8GIaZEdPcu64Z4UokD6G6ik2q021ijErFoRYHUS/alH2SCKfHYlmNWva
mWgcnBvIhSh0b0tRPaxxi342OVDXkyYRKNK1tgPlVnquTPwDjuyc1o+yYcZi
9tFxvxdNFlGY+aodr4BFzq6MMebv9DsHE5YanEa+vTuy3uR6WJJFn3GWEPcD
V70qk4Y9hhzGxABjRqPmIMZTK0OtO9+lgBtyWKEJPN53itz5fvAtduPklDLN
6VDnhmFpkJTaxFwnWWaOkRQicFB3Zc41ZVk+MzfraDZoNa0kWrAoXVh+R/Rk
qvKbthClQvjp57P/OPtzTEBu9N1ZrNUo/BOZ+Yq0bc1+5/wzUJ2kzEgb09sU
GtHmZRNJljFKJ7cXdhtZ6ZA8AFoeqsP88DYmk7SCtSo+QuRaIsJgkmR0K8xX
KQ+Gpa9qqM0FG5xo0f4/cvwJL+Vscq4b5WRD18ygSuIIgZnAvd5Y679HBH1X
nHPmh8UOgbkfxBtkupN2lcwi7HlbqmkFx7FYRdh4jpV3lpKsY01KNy0VLF98
1NNEUA56B2eraJYmmqRYvR4bV7caH7dCVOSHjChe02e1hZA0E9AG/6gMbe6O
R67QYYEzBL+q5xkf8EUjfXB+OdEzYCIhddurLfgGaqvhl70iiN/Wq2GjzD1W
HoW8NhGZHL317ovl1U+y4mrxSJmmhWgHRwHZmEh+JwCJ43C6aeYsE5elhqxK
tZFKrZsGXqGAN7DzPd9+pRXRS6lLsARgwSX1MK0q9FBhC95a5cJ8m1tXH9ww
8cy7pjRHgdTJgw+UnoKuWCNZRfG7R6Jex13rpgF2Tpmd4lxM4YZY1j3OVBoh
eavH/ZK9PzZf+hQskTZQ0khJSnW4CkyBaiF/a1hdxAbCR5O/iTqdd5nEZl7O
eFj6rr3yeqt4K6P8CRMwRJbi+1ByhS9XAVcrvQjb6FqphStX6ZR876opCsEY
SjPZlDFbLFwQFnDz3oOUQ5irRtlNiqdLUhqrn+Lfai2fORzWXS1iD3PhMwyQ
lItVrqATn5+9fRsLdbH7sruqiWd0NZd9aC7yYHEQbvQpZE+sb2UF/Swnrfsq
1yxFiz1IftywkRKyvSiUGkVZV11nkQSSxZLiFtvUlLFEAGvPtNhVyjBiO8yc
pvvi5eKU2fDp06x3gmRksM+HtsKFkaIIiyRwMiJV207YxUsfIH4Ifxk61uBP
fPetHiHkEuED6xnnHy9/Kd7WPRfv3hUP3p5/oJ+8fXjAkZ4uMp4UggE54qNp
JQcFWd4grMovnMK/DocpjdG3ZPF6aZJ3dixV2TricIPLJkwkmFUlNsdLaaxC
XzPDpcxkL+dh2fmOy3L+pFlIKjBd2hAvkpwPksnFYUfx3KJ+HZ9gq8GU8oV8
tnduMA2uu1Ql9uoc6y3Kv1mENFhJFkgpY2UKeUpbTsmlSN1U1GvrK35+J+Tn
0sdSqpyUKyXvNGewWxobKyUzLanSXGGHowepuFl6aJVAo1tGCs90x0XrCkhj
qo3UefFe+c5ll8sW7Uz3ESeMGfD++ImYZSbXcJgxpj4mlDKzHz3duLJqjhO1
secDhhvQqrNQbrV3FVDCphtwzeuKhbgMAeA+sqnLP9dA0SdIs+jzpomZuaWX
YucMR87pi+JYWZEgrjaWyk2aeGnh2KUlTpWuDaFnbQeBGGBOYwn2Qfak9kpX
MfC1hMk5MhPGq6dTfiD4QGB445qiCo5YSYq3uJP6y/sTP5hgZnRjleHNz58+
vXtz+f7nT7+++fDzxTuRLalDnDR7mqCQVPJK2QQpWBWnJUtOA3xU6EyrMm9B
jDT2ZbU+oMfX5P2pDReUfST0mzZSjsBQd+gEEJbGPwFCXx2BwtSVG7wr11VO
O4BoaxkPFGaSZzHlR8aVRT1RKTLVrVihKTvte0VoodUy/4h1uQnlilRRUCvQ
V0Y7JOU4E3fIbWe0Z+3IMWnp4iEorzoIQuQuUcm1ctSKTGuJrlGXNE0k22YM
x7OLm7gDPRu0SSaHByS+ZNVPE0hpx8ga/ohC09akBWYvXiVx6NdXo+icxKK+
FONA6pElK6biThl3lCU9SU0dmfUh4qAl9eQ85aC5In2MNDL5Ak/KSV8NV7Er
W1Jn7bbiUA3n0bGUlAngxDIFjl9IU0oVIl4UvLOUsaSW/PYd6AJ5WL7zAtOK
FIv14sos6JzFfuzYsn1V/IHjSzPxjEd1OayqvPYhq/TypQ5eMmuTjLwlMrL7
A6YCcG2USQfJbZfYky4Os0JuXRY7yBeOwps74pd93y6llorjsZK7am5wCQhG
LvoH7bT4/MmTZ1pb69IpNe37sOruyhWjxei5pfVnVpmDM09vQRh36LgHwIrO
lboBaJ9LxtHoLhIlVG0//laQSh1GCIHVp7NLFnlpqFJp1zzX6zw2AcylpnE/
N9fZiRV8cW/3alW5wig0ZYxjgaRP/4/T2gKdWeXmMATwIe2zLaWSWtQkiVFN
pI0qNoSSeTWzaDFBzeiIYphyrIAkFnqILTCmEsu4Ty2JzPvTaSo9diViQ7cj
C3ByaYw257XpvsnYJDrA2QfsMUkQOjbYCp+J23v69MmMOx6310hypY3xK6eL
02CvP9aO+/mAGinHkZRrtF6x3p5DhsPAzjgiiatJeGLbnrvBRZ0/g9QOue4j
4dyVJN5K4da0UQTAp+BmBhMlO3tZyh6m5lWVVQs74BppYsitZq2bSI6l0VHp
kuTV6EJzfD9GLK7uYsulSmfJRO0+NTyMavqENKfVMcGoO/pL8moY9lokZTLh
bkzZXUX+m8X22LhiRJEmVRF4rsmjQ6PF0erBB84wJnnOXO9JMjFN2zTFWp0E
Yxp+5P0qJEz4JnobDPPyyUsthynFJ42a8eu6Ee+CxmkFyXxjT276UICNMCoO
1r8gQoSTHsz0j9gfZSM++IfNkz94cTZnOzvYbOnik5tR8eDsw/mnh0U2zWZo
v1R8WfQrGxYmfntxZItosbBdypDW7t3rmKSbkoGs+HPsra2RlBn6jk2+yDS6
fcuj6kIckyHfUmssQcOLDj4FHwntYEA1ebd9b9kECQkzE1+Jz0BIDZfiPoRr
BSKoyAJHiU4XJ0SS+rlCWWpXKbZba1ltGG2P+dkhEd1nhgHRrzj5tCThieWJ
S3LbfABMeMgRBWvNqMWjRL/6hUW4wBSwDuJL4RhbZcW8EGnfrR01Yi65I4eU
5+N3R6K1UW9sbYEZWof/pbI1UwiPDT6QmUXSNifEIVYbDXm6GYTbrbU4vWcz
i/BWi2isr2Pb++FcEbvELaR5KZsWVE2fJr3NkgnTnK6ZtKeRo2m+CCvjEw1T
E2IYQ+OCQLabcdtoJ0OpXo4qqcxSsBZSpf2EO/oGeyFvhiviAS2ZV6xq3IlT
hphwLUP+VFwcClzU48i+hY9qMbNpgKKIeJrxfROzM4RjZ9CBSqO2IO6kdKXP
Ou6/CuHvhXyfPSnmxdtPF8qVTk+ePP32zX55+hi//XR5bs29vz955n77/ckJ
/RqzeWGu0R/pd8+e8Id36cvPXzx/7N49fXx6igeq3ZKzFtCuUZi64QYnZ+WA
mgAp3a6DUPjbtxxDsxyDIPhYmxNnBnIOcDBrw3ub83bSUSnhgvrqWgRUpcFo
Qkbh42SdQMdg1sDpwbVNdqwmw19sFFUWWuSmr03g6K31gOttDlvqBG2tDO18
PlnGWpCYFsNDbCYpB2lKXOx1jlEFnpLMURxHZUoGTM+qUs+BN+vXNy1q6Krk
XFtNN+kvOvyPLvpvkrMM4wraSwyJMnDlX8HkjcntG4Idbuy1ZS57fItMylhh
tfIUd0N/wi+j/ncCAxm7zn/10fz3VvsngrQ/7uPPxqNwDJDY0Pvz2D9bFcrZ
QY0p94QctCJPwBaHqggvgedc5oU6n6fbRNJm3lZ4TDbkTvL+rXjCsjg0PlCv
oLSpZOZtgZSQz89xwnRiTqlR7mp91F1AIB7O9N+sfewsxDQHRFClLEytBjSt
cLXIMnjTVBKOda+iISTZ/CliY+VtwiMlQCrdbrkmU/eZeiOghFFEsNAFT6nS
+Ncyh1ZMSOVPcxpa15LAv0seK1jh6wCPsbIICWxXm5o9kIAAu98k2oi4yO+v
CUmFmzm6kjSDlA61CefSFemkNJ+jEDR7WOGObO9a57CxJnqrHYMPsit4L2nu
hkbIA/xapnkn08diwJ00PlEyPKyinuay0CLmK0sqiJsw6toxuCNBf8OBaAv1
377FOk101BIsYFY+VzXW/7u2PRx5NtR3ipuFMoKfgCjTdoT75jMNMVyWbWcb
wY28lPM8aig5NqpD9+0kUhX0wUpnLWoseJTZWZqepGhOXKFdS3REued0rSDZ
aDEqipQIa9a6RNPbXmg5VpaDJWmkkLtsabIL9hIiEmb9bhJqmgdlI6EuX+XJ
PtBFmgx3lZr3995Z6vqzpWmyDIdy4Oy8WeaWt5RIA4gDsouw7mSuslwdsSKI
f5KhdPQlg0y2E+JUK02Gkf6b034jEOs6v8+c7xqWjJ1I38UYlLXOOhpIrbU+
bs9TjepmPw4aM5lcS+pFJtMWjjgJpougRVVjvnmDd+xQGKDzar08FE4SOfBa
As48wWibjf3igJ8liio/KY41vXJ6lrn1lhz41eSMlRUu+xC8ifo7ZePMBjS8
fyRrswwHrKNI4zqSkckafGq9O0lPNT5HpBoYRGnoRYpsb3iKNLG9lGOlp1I3
1eSFkTNUrXTYxIhuQTil/tB3zGON4eappYPS3587cZsNSI+p5h6SmW2d0snT
1Yltaj5xdgrBBU+8lIsXpF28csziIukKFsv5fvE8hXIWE33p0rUN+e27aZqb
0rtP5ObxE1lNAWdpQapjJgWqQF/pnOl6yBK8Z65dREp1Rk7eLMv95lIddoAz
A/udJqPeaQYSS2nHR8OWr+8bIHk8EB+/5lurqLUiId1wTxz+WQqeuaZY4nb3
Ge9xnr1kwx+tSSjeTH1SAextlCll9iU1KQx7Yu3nZB5B3rUI0t3NKTHEkrgz
camDITq6SrUt970Mj5p8MtjUUs3aRLve6fRWG4Psxr3aSDdNZOPGA3QDwbof
8o5mXiJINIBL/U3tkJQ/JNVnk5Pk6OgR5jxxk11x5Gil455S08XsrvCdfFhx
n7vhUkdFzm4VjBankntnZn3MZGyAzRGwYD92gs4x83Gfwp6SAEn6xvKLVPVN
RVr1VfTzVcqIttYDKbeKPXR9Mhr8HJtjhemuTZYShJsl5SJP3B4n3SsPMiun
bcFswMbhMhrmyVYLk9ViA8tJzbrbRZ5KFTA7x0ewJQR2/xDUh070HcmESrlP
vVY9yQwNNqJhPbmKWIs0YNM30nJOqFHzuWW6VAPMhcOKbS/1R0pOSjNljyzM
LMOAk5rvSXh4IJNeOYdgbpk3kt06+aIVlLhcaza5ltJBIKZWBuuwLBoeE4qm
DrmbtGYqll2CdPF5qjfoZcjslLFzkCwOGud8154H3FtI7KBHTRQBIP+QyN/h
Ga+BObtIDBA39PFlnY3KIYmAkkgZr8E13JKFlQ2CWh6kydRNVH9ijdZhnYHX
65xtQ4L4vfvNOyTacbt/ZeK5L+C379T2n6SWq3vKDcJtsyiz+gnGRrshVuI5
tTHF4jqYpZziWOLkuidqfzKWV66XHqz+NBIt5D0Zj/Y5VH9LbIDyo2V3+3fR
u5P93C5kJL6cpNtwozZu0Qa2OM+eB7aJW4TNGE7MlWNKxDqDnCsR9nt4gG2a
fhwb/oqfKrNXH86CjFfnBzjRW9eyZVrTxlfOz5N9gycf5fbsTP0saetm3avm
6HHRuzLv3Y5PzfOlATKWRJLM3OV6cSlmeG6mq62XZWb9V/pH/rQV/YQlIhJc
CsJNbl1b2zTFdSZOpLvUoRPtuiWg62Zn9sEGHJsn529A5livJFGtgSX3OyS0
t4D0Qcl9fMG/df/1suUQF47TtdlBwdEWh3m+PWHEOG36Hj+fPJSSSOUC1GRT
x/SXmGHmdL7oaRtarSsQowp19ZGXuYvp0YlbFTTa4XLjNIqM8/Z5z83aGqeo
YiMKyixo6ehEc/S9StJ69461MhtW5vqqU8wmy0JFnv8U5yxkXHTqFLYhQ24u
Q3Z1s6yAxhRNUcg1H/0+dJsmd7/IE+p0o735HjE+K8RBkSxobZRGbDk9pcFj
5vgsTgyR2uiVet5yt2vbHfFoQOt28yrZwdMiA6huQiwotK5oSajmrywkplRl
1XtCLvksTMZccTzqLM1iMkvTYqK+AQC7ASbPLd0oNP4WoZvRaWbLx0k+RezG
PAEqn2oWq+Gia1Py4CSR6hHnA+fcjW9I6UkCGBZnWrY8xFbDDTZkR+8eeYj5
YVDGnfXBXm7q6kZumU/Ow6H6NBbGzSFNwreJJlHGhn5UnUoM1jjBN9bmwusD
/fGf2HD98MM/5kIW9zeP9yeuhO+KjyQ+ryWp81LmDH5wPme++FyRmUZoYth/
kvAf53eQPdQfCBRLUOCsgtvMuQubedNKGa5ynzhQHSNvsDthMNA+x4FbRptH
XLHNXlnKoN+804f4M9XLyNMW6CEpw0PuGE+hDim+M5H1QWYMpimYjLU8cTYn
b0uXba1frmaZ7ATiuXNf2vBpJuTEpgJHdtO6Yf6W27sew6mk5GtbrytYgmKR
1F9jq+d75E9y+TuTXLwJGqx4Q5oRM7HU5b6vOHIArL+7Le+4oldDhFxdaoO6
DqN0dZOmwYEjsRwr4bqWGnyFf1Cbwa6SbzhG5+DZyHGIm5mBDqVmTKvj0Kml
ZuCmXUmWs35VRvj5ws0afy2bCml5cde9shHpksolrJYXYIMsbWJVQgXPla0n
PkofqviAXr7L8eAcdAkf2GxYLoswkpCpLtYGzdecWxh9lrKryqkEKDviQECc
WNGFB2ymow42z0Z8iEBlolI84e8nRqh2sE0lXTuYWbGDTA4Qf7crQksuFg/z
4N7nuI5kXkl0h0EkAHENhIR1/cJHVnH1uRpkqAH9LU5JSPEOazgpj6lq6jtA
mjZaJsexNUuprEJJNQdrbKKVgN6xDJxYgnkdKaBGcEx0NCv3mziLVVPFBq/u
Ynln7Fh+bHFpPZNE5DwmQh2osFlXzEmFfKcg4/HOmbc/60PasX8Fg0bjfDMf
ZNKxGQVPlK6amFp8QP/MyfdImaDl8YcaDvlkHcBS1RUXc4jzPCzmESZzZ4Wn
SKNdLUNhN0nU12CVxVQNS1S0fQUtrsXYxTYS21EFiD9tLXWHTZpi6t2KYXIP
Zz4EoZhyqBkqM8uQFXaFy8vwezHMsWQrNtG/HuBKfp8h4bn4CwkCSDz0pbhH
lmJXO6/DM6e5e5xsNFiWDFJxtbVMGnXF861MM2HlY9IcFqlSJy9efPsWX+q9
thNz/tR/l6a/IQDjBlcSRxTV0RE3ex1k8PNKJ73EOCVnIvazvEZfg8/MJXft
CuXV7E1pCVv3G8zx2l6j+/VGivB1CKVLHuA4zb8RXqvyrolaxYN/ay8khf3t
xZtz4U/SxDL2sY9N2GfqAUnDICdxya2U0QR1fGlP+KqLFeciOXopw4mkYMp1
LD/O0qbaLkWrrQN04JyAZ6JXFL9Bl2DhMIsWLv8jFR3wE6Dcmc8O+jYLqrlr
D3H+LArCAB4S5yukJcJufQDoWNbv46cvnhFasKPaDPleiq8PJ2qof35NxgeX
JIhtxON2ZVpYeRdsSE+qeBq11V8MAitNHgLch95jxDpjKkdyKPzM03ifOCJm
/lrMicO4muf8/NmLvFEy8sxH8fXQUxFkft574Nsy8/5ILUiff/1BrXyz4zHD
gzoBpwPkVcnvq510Xmx1AOqby/OHrA1XTT4nJSpWrF5MJpoeoJvILhVaAInG
fdwwtA0PKD1IcGO7Gf3xgWrWIF/nJyqZA9vj3irpc9hLVwRXw7Q9gkVKPmgb
GkTgqe/zIJ8Ye+5dQjinaXu/ikcJpyZYflQKXKSkY2087pORfN+MXJc6CPEe
Lsh9KyR1JTUui0mcJUqwxI27A8KUMucOAblqUJfchBAkfRHBY2bzHIxweAkv
Jk92MB8gsIpnhymg++p6Vx2EBVLL9sqhAphG9HOlUeITqSmtYy1q4D3o8VLR
VFD7SIjS5tDNaEE3vNReOZaIsyu7L8IhQCQmTzviY0iTlt4RbklJ8mK3QmrN
aIiZhv+4ecL/bmoNRMObTNT8yXxDIehTOquCL140zuhhMlr/Y+8iWZrHj0sV
b2ywgLIObhJRgCGT6m3mzMW+SNyas+xX1XJbdjEkUDcYmEbYQqL871iyv//0
72ef3599urz4R0wx//7771Fsdxb94oqtQevGdDRKLC8QlGZlRlrbS81XvXWV
iXDCDFVnKbmzwAOy2GcjQ77do24Ako5iRj5CcSYlQwdtO9izq+MZow9TkjfE
FTvVPUGmcfo50QBHyaD124lSbhDHwmJAxubnDLEYCErMKWp7OoXKIsRZLKm+
Jyvfi0kBGba4VJQ+jf9Dl+ItsQ4O4dha+SxS1dJtzqTP14v3S2/iYr8/QRmO
ahk9AXDQgn0tSxisUS9Z4XQx89tKZrkl7BVRFa/nniNIKew7fAovfSLIGp0c
1E8nJqKNK8q8bGVStWIcJCYnMh4dThBiz5l+aO7qX0Q6x+5QsWpbgGL9g4tM
9xJRx6G7iElalqdyITq2a1SzfeVKoEtJftgJnmqRl32fo0HsqLWOYFlFSSEx
UIVfu12F+Btm0GYUiaHDXHC5Rc+hTvpQmyOGC5dbVNbJLGSP49ksJ+m412gy
EbeRRIbfu5LnsGl7buNHsdVBss9Sor6FMnftjdOr2KzhDyX/kzXI1Tq75Lee
Hf+wjOlA9FmGG06zQqJy4U4pxV85bYtpYQlA1kST7aZgB8t2I0xE+67wdCup
voEyzN65axtfwYFa4DHsYlRfIo0p9ovzu1BwEk6CYVnqOrqs6RMzH+Pls7pX
WehrMmWWsi0+zsoob7JqSi+0It+sXjDbH8cCTXBllX3Rxw+XJ7wddvrYxNQi
g37ATVH+zsckzp8PrtSrdYU9CRXYGZN6PEa7xJ9ALxgdpVO8RtvSZtfL8Wjb
Mgsx/l7s5qfbDsdhUA6uiVbiFhKKOaYguatE6z3nI8pmRmRRPYWF16DdUTnT
m+hXayHpWzeHe8lytA8oxAwjww+LgUkPUMvlKqTkmAMMQGqzxiOmacHmKtUA
yjAPa6V9QOqFKMrcoDw2IZzeNteMaRGYkP/ERXcv7VtfXA5tzDJ/EhJshaOY
w+4ICfwO+ud45U84y8AuxSqJd7AU4IkF2hNso50qrXjK3WC+H1VwslkMjLtC
zEaFHEsLjAt7vNlrJRbbVb3kNpQcDfi943E3Vi0y87FY6f7BZfoazC4uhMVL
daB2IC5Ryirj+DibsdShvcxkJT+CTXpFkOxdlTK5wMSIEeNq5Ui/aQaXRjTw
dJ8p9iWscOX2kS4m3FgILQ3Hko1l8joK5JxTQ1hbUpp0U2BGM/AQj5joFPx6
VuQhtp4twp5rDowAqsapedXKe770wJmwyBr7suXtNvj7mMz4KvnN2Us8uRbo
Il3+K+QwiemThuRZ/7XoJ2OvAdsK4SBbyFwcmWpsFV6miCUl1I4TUscZHM6N
6HMN7GzZBe2OK2fVB8yzWM3riTgjt6woD9IhTdBKyrOdyjyjKi6NK8YkRQBN
kzQPbe0Z6I9UU1hUJy+fcTJkny/AvC0c81etYvq1f1Q6Grs5Xlsej8JdVSSB
RcY4SA9I9VasSN/dY9x2nCAjswZqARvcxFBY/yPmL0X4ZqlKBguzBZ2TS/MP
xX+ejSSU0bOpY5CNntVOyXwj+Uhb1xi7OrwIdqyi97MNE9TBEbJ2ShflAi+b
AH+0VR4yN63Fn+sfwN3DScww74pWlQbc1seRTxiz91e1kp0/cSlp7uHZpzMe
54QiS0HBIBWEq3Y5slCUedWFufPAfPDW6yL6ugkPVMT/9pu0D/oWpj38/Jk1
iafP2mceZuVzv5XYmsDaHvR5+xPBeauyLNIrehrmERcV2bCQb9OTolBCJaY8
sMwe8H50zR2OJuy3b6+zV8PkVROvaKLeSafqQ2eqNuffVjdlM0hh8PHihJj3
vpicAbfrUgAwWGaPzqRWci38iv7T7jjbWF3AFiNwx/HO0hJ9FaRVqczKkFhc
MhKlfY7tjoD8o8RqfCGZ5FZA0liems3ZLmXL11VMhrGeGwdlhKK4YLkskQDd
keQTUnqpj0uT0fWRYFhK1IhZ8p1SEpQvdqLcwvbgomNL4NDhssfrNrUeKaby
XVURB0w3Vqe4zIMAWWNOQn1TLg8y+NGLD1Kit2tIRAXlKDVHgp0D+cA6r9nM
GCFlfENjqrHBVGyQs2Ya0s9fj8RMiEG5EErEZPgkYIlJagfWeC1AFaOSs0p0
zNVB+Yd+HhWUiXWx1pO3KXUd0yXe5Ps/IQOB0GDOO8INx2ii1Db5IniPe3nf
pNRX/R7q9t3n8Y7rUpciJakzECQiDPJ5ot7Y10CDtqXm1DDVaUHhLCUrakaL
zYVJZH+sX6Tv1xLr3L+TYZpoWdd2vaiFotvKvIEWootNttTaTjqHsh8OznI4
P5g0ORXEQlwy1MDxfW5U8VOL6skfy7rbjF0/0E/eE0lf3FYD//2aPvBhJGm3
qW7o3x/GJe30vOwIBemfH6H5/FATRuzxr5KQ8VPLc/k25U5+Qv8o3o5fqvSv
y02768mK/Hu6aHg0x64hqfz3xSVJkzv69kgq+0FLRJNZjPC3Ze+mOqUeOhp6
eTcCu8tGhtyINsE8uvhT29V/pX89Pnl8Eq5BHQXJ1EqmmDdkXDx/+fLp49Pi
oxSixiEKZz47RmrZP9YrQumrlsRveA81gKixePDx7OP7h6Ih6WYuiOX0xQWP
pSIh1VUDfOGCEu9IYdds4M9VXyEHh9+lDzbtjdbq8sb5qtGdEJs8fbY4efz8
pflV1daPxr94t0kuE/pUEj/4/yxfipW9wwAA

-->

</rfc>
