<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-quic-multipath-16" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.30.0 -->
  <front>
    <title abbrev="Multipath QUIC">Multipath Extension for QUIC</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-quic-multipath-16"/>
    <author fullname="刘彦梅" asciiFullname="Yanmei Liu" role="editor">
      <organization>Alibaba Inc.</organization>
      <address>
        <email>miaoji.lym@alibaba-inc.com</email>
      </address>
    </author>
    <author fullname="马云飞" asciiFullname="Yunfei Ma">
      <organization>Uber Technologies Inc.</organization>
      <address>
        <email>yunfei.ma@uber.com</email>
      </address>
    </author>
    <author initials="Q." surname="De Coninck" fullname="Quentin De Coninck" role="editor">
      <organization>University of Mons (UMONS)</organization>
      <address>
        <email>quentin.deconinck@umons.ac.be</email>
      </address>
    </author>
    <author initials="O." surname="Bonaventure" fullname="Olivier Bonaventure">
      <organization>UCLouvain and Tessares</organization>
      <address>
        <email>olivier.bonaventure@uclouvain.be</email>
      </address>
    </author>
    <author initials="C." surname="Huitema" fullname="Christian Huitema">
      <organization>Private Octopus Inc.</organization>
      <address>
        <email>huitema@huitema.net</email>
      </address>
    </author>
    <author initials="M." surname="Kuehlewind" fullname="Mirja Kuehlewind" role="editor">
      <organization>Ericsson</organization>
      <address>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <date/>
    <area>Transport</area>
    <workgroup>QUIC Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 80?>

<t>This document specifies a multipath extension for the QUIC protocol to
enable the simultaneous usage of multiple paths for a single connection.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    QUIC Working Group mailing list (quic@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/quic/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/quicwg/multipath"/>.</t>
    </note>
  </front>
  <middle>
    <?line 85?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document specifies an extension to QUIC version 1 <xref target="QUIC-TRANSPORT"/>
to enable the simultaneous usage of multiple paths for a single
connection, using the same or different 4-tuples (of source/destination
port numbers and source/destination IP addresses).</t>
      <t>Connection migration as specified in <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/>
directs a peer to switch sending through
a new preferred path, and, if successful, to release resources
associated with the old path. The multipath extension specified in this document
builds on this mechanism but introduces a path identifier, or path ID,
to manage connection IDs and packet number spaces per path, enabling the use
of multiple paths simultaneously.</t>
      <t>The connection ID of a packet binds the packet to a path ID, and therefore
to a packet number space. That means each connection ID is associated with exactly one path ID
but multiple connection IDs are usually issued for each path ID.
The same path ID is used in both directions, starting with 0 for the initial path.
Path IDs are generated monotonically increasing and cannot be reused.</t>
      <t>This extension uses multiple packet number spaces, one for each path.
Each path ID-specific packet number space starts at packet number 0.
As such, each path maintains distinct packet number states for sending and receiving packets, as in <xref target="QUIC-TRANSPORT"/>.
Using multiple packet number spaces enables direct use of the
loss detection and congestion control mechanisms defined in
<xref target="QUIC-RECOVERY"/> on a per-path basis.
However, use of multiple packet number spaces requires
non-zero connection IDs in order to identify the path and the respective
packet number space as well as a modified AEAD calculation including the
path ID (see <xref target="nonce"/>).</t>
      <t>As such, this extension specifies a departure from the specification of
path management in <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/> and therefore
requires a new transport parameter, as specified in <xref target="nego"/>, to indicate
support of the multipath extension specified in this document.</t>
      <t>Further, this document specifies the needed path management mechanisms for path
initiation in <xref target="path-initiation"/>, handling of per-path connection IDs in <xref target="consume-retire-cid"/>,
signaling of preferred path usage in <xref target="path-state"/>, and explicit
removal of paths that have been abandoned in <xref target="path-close"/>.
Note that in this extension, a QUIC server does not initiate the creation
of a path, but it has to validate a new path created by a client.</t>
      <t>This extension does not cover address discovery and management. Addresses
and the actual decision to setup or tear down paths are assumed
to be handled by the application. But this document does not prevent future extensions from
defining mechanisms to cope with the remaining scenarios.</t>
      <t>Further, this document does not specify scheduling algorithms that define
how multiple, simultaneously open paths are used to send packets.
As these differ depending on application requirements,
only some basic implementation guidance is discussed in <xref target="impl-consideration"/>.
This extension can be used with different scheduling algorithms that,
e.g., can range from support for failover to simulatenous
use of the aggregated capacity across all open paths.
There are currently no IETF specifications that define scheduling
algorithms for simultaneously (concurrently) using multiple paths.</t>
      <t>Specifically, while failover between Wi-Fi
and mobile networks is a well-known multipath use case,
it only temporarily uses two paths at the same time
to avoid transmission pauses.
Simultaneous path usage generally, however, needs more consideration
than specified in this document to avoid negative performance
impacts, e.g., when stream data is distributed over multiple paths with
different delays.</t>
      <section anchor="definition">
        <name>Conventions and Definitions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in BCP 14
<xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all
capitals, as shown here.</t>
        <t>We assume that the reader is familiar with the terminology used in
<xref target="QUIC-TRANSPORT"/>. When this document uses the term "path", it refers
to the notion of "network path" used in <xref target="QUIC-TRANSPORT"/>.</t>
      </section>
    </section>
    <section anchor="transport-handshake-and-cryptographic-packet-protection">
      <name>Transport Handshake and Cryptographic Packet Protection</name>
      <t>This document defines a new transport parameter initial_max_path_id
to indicate the support of the multipath extension.
If any of the endpoints does not advertise the initial_max_path_id transport
parameter, then the endpoints MUST NOT use any frame or
mechanism defined in this document.
If the use of the multipath extension is agreed after handshake completion,
a new AEAD usage applies to all 1-RTT packets, as specified in Section <xref target="nonce"/>
and new paths can be used, as specified in Section <xref target="path-management"/>.</t>
      <section anchor="nego">
        <name>initial_max_path_id Transport Parameter</name>
        <t>The new transport parameter is defined as follows:</t>
        <ul spacing="normal">
          <li>
            <t>initial_max_path_id (current version uses 0x0f739bbc1b666d0d): a
variable-length integer specifying the maximum path ID
an endpoint is willing to maintain at connection initiation.
This value MUST NOT exceed 2<sup>32</sup>-1, the maximum allowed value for the path ID due to
restrictions on the nonce calculation (see <xref target="nonce"/>).</t>
          </li>
        </ul>
        <t>The initial_max_path_id transport parameter limits the initial
maximum number of open paths that can be used during a connection.
For example, if initial_max_path_id is set to 1, only connection IDs
associated with path IDs 0 and 1 should be issued by the peer.
If an endpoint receives an initial_max_path_id transport parameter with value 0,
the peer aims to enable the multipath extension without allowing extra paths immediately.</t>
        <t>Setting initial_max_path_id parameter is equivalent to sending a
MAX_PATH_ID frame (<xref target="max-paths-frame"/>) with the same value.
As such to allow for the use of more paths later,
endpoints can send the MAX_PATH_ID frame to increase the maximum allowed path ID.</t>
        <t>If an initial_max_path_id transport parameter value higher than 2<sup>32</sup>-1
is received, the receiver MUST close the connection with an error of type
TRANSPORT_PARAMETER_ERROR.</t>
        <t>When advertising the initial_max_path_id transport parameter, endpoints
MUST use Source and Destination Connection IDs with non-zero lengths.
If an initial_max_path_id transport
parameter is received and the carrying packet contains a zero-length
connection ID, the receiver MUST treat this as a connection error of type
PROTOCOL_VIOLATION and close the connection.</t>
        <t>Cipher suites with a nonce shorter than 12 bytes cannot be used together with
the multipath extension. If such a cipher suite is selected and the use of the
multipath extension is supported, endpoints MUST abort the handshake with a
an error of type TRANSPORT_PARAMETER_ERROR.</t>
        <t>The initial_max_path_id parameter MUST NOT be remembered
for use in a subsequent connection (<xref section="7.4.1" sectionFormat="of" target="QUIC-TRANSPORT"/>).</t>
      </section>
      <section anchor="relation-to-other-transport-parameters">
        <name>Relation to Other Transport Parameters</name>
        <t>When the QUIC multipath extension is used, the active_connection_id_limit transport parameter
<xref target="QUIC-TRANSPORT"/> limits the maximum number of active connection IDs per path.
As defined in <xref section="5.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/> connection IDs that are issued
and not retired are considered active.</t>
        <t>If an endpoint receives a disable_active_migration transport parameter,
it is forbidden to establish new paths to the peer's handshake address. However,
establishment of additional paths to other peer addresses
(e.g., carried by peer’s preferred_address) is immediately valid.</t>
        <t>If the server uses the preferred_address transport parameter, clients
cannot assume that the initial server address and the addresses
contained in this parameter can be simultaneously used for multipath
(<xref section="9.6.2" sectionFormat="of" target="QUIC-TRANSPORT"/>).
Use of the preferred address with the same local address is considered as a migration event
that does not change the path ID. A such, the path ID for
the connection ID specified in the preferred_address transport parameter is 0.</t>
      </section>
      <section anchor="handling-ack-and-pathack-in-0-rtt-and-1-rtt">
        <name>Handling ACK and PATH_ACK in 0-RTT and 1-RTT</name>
        <t>The PATH_ACK frame (see <xref target="mp-ack-frame"/>) is used to
acknowledge 1-RTT packets.
Compared to the ACK frame, as specified in <xref section="19.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, the PATH_ACK frame additionally
contains the path ID to identify the path-specific packet number space.
ACK frames when used with the multipath extension acknowledge packets for the path with path ID 0.
As multipath support is unknown during the handshake, acknowledgments of
Initial and Handshake packets are sent using ACK frames.</t>
        <t>After the handshake concluded with support for the multipath extension,
endpoints SHOULD use PATH_ACK frames instead of ACK frames,
including for so far unacknowledged 0-RTT packets using path ID 0.
Endpoints MUST still process ACK frames that acknowledge 0-RTT packets or 1-RTT packets.
For example, a sender could negotiate multipath support for later use and keep
only the initial path with path ID 0 for a while. During this single-path period,
the sender might prefer to send ACK frames.</t>
      </section>
      <section anchor="nonce">
        <name>Nonce Calculation after Handshake Completion</name>
        <t><xref section="5.3" sectionFormat="of" target="QUIC-TLS"/> specifies AEAD usage, and in particular
the use of a nonce, N, formed by combining the packet protection IV
with the packet number. When multiple packet number spaces are used,
the packet number alone would not guarantee the uniqueness of the nonce.
Therefore, the nonce N is calculated for 1-RTT if the multipath extension is used
by combining the packet protection
IV with the packet number and with the 32 bits of the
path ID. In order to guarantee the uniqueness of the nonce, the path ID
is limited to a max value of 2<sup>32</sup>-1, as specified in <xref target="nego"/></t>
        <t>To calculate the nonce, a 96-bit path-and-packet-number is composed of the least
significant 32 bits of the path ID in network byte order,
two zero bits, and the 62 bits of the reconstructed QUIC packet number in
network byte order. The IV length is equal to the nonce length. If the IV is larger than 96 bits, the path-and-packet-number
is left-padded with zeros to the size of the IV. The exclusive OR of the padded
packet number and the IV forms the AEAD nonce. An AEAD algorithm where the nonce length
is less than 12 bytes cannot be used with the QUIC multipath extension.</t>
        <t>For example, assuming the IV value is <tt>0x6b26114b9cba2b63a9e8dd4f</tt>,
the path ID is <tt>3</tt>, and the packet number is <tt>54321</tt> (hex value <tt>0xd431</tt>),
the nonce will be set to <tt>0x6b2611489cba2b63a9e8097e</tt>.</t>
      </section>
      <section anchor="multipath-key-update">
        <name>Key Phase Update Process</name>
        <t>The Key Phase bit update process is specified in
<xref section="6" sectionFormat="of" target="QUIC-TLS"/>. The general principles of key update
are not changed in this specification. Following <xref target="QUIC-TLS"/>, the Key Phase bit is used to
indicate which packet protection keys are used to protect the packet.
The Key Phase bit is toggled to signal each subsequent key update.</t>
        <t>Because of network delays, packets protected with the older key might
arrive later than the packets protected with the new key, however receivers
can solely rely on the Key Phase bit to determine the corresponding packet
protection key, assuming that there is sufficient interval between two
consecutive key updates (<xref section="6.5" sectionFormat="of" target="QUIC-TLS"/>).</t>
        <t>When this specification is used, endpoints SHOULD wait for at least three times
the largest Probe Timeout (PTO) (see <xref section="6.2" sectionFormat="of" target="QUIC-RECOVERY"/>)
among all the paths before initiating a new key update
after receiving an acknowledgment that confirms the receipt of the previous key
update. This interval is different from that in <xref target="QUIC-TLS"/>
which used three times the PTO of the sole single path.</t>
        <t>As packets that arrive after their decryption key has been discarded will be dropped,
the choice of three times the largest PTO is a trade-off: Longer delays
reduce the probability of losing packets but keeping old keys
longer can negatively impact the security of the protocol.
The use of three times the largest PTO aims to minimize packet lost for all paths
and therefore limits the impact on performance.</t>
        <t>Following <xref section="5.4" sectionFormat="of" target="QUIC-TLS"/>, the Key Phase bit is protected,
so sending multiple packets with Key Phase bit flipping at the same time
should not cause activity across different paths to be linkable by an observer.</t>
      </section>
      <section anchor="connection-closure">
        <name>Connection Closure</name>
        <t>CONNECTION_CLOSE frames and their processing are unchanged from <xref target="QUIC-TRANSPORT"/>.
They can be sent on any open path. <xref section="10.2" sectionFormat="of" target="QUIC-TRANSPORT"/> specifies that
the closing and draining connection states "SHOULD persist for at least three times the current PTO".
When this specification is used, these states SHOULD instead persist for at least three
times the largest PTO among all paths.</t>
      </section>
    </section>
    <section anchor="path-management">
      <name>Path Management</name>
      <t>After completing the handshake indicating
multipath support, endpoints can start using multiple paths.
An endpoint can open a new path when both endpoints
have issued available connection IDs for at least one unused, common path ID,
as the same path ID is used in both directions.</t>
      <t>This documents specfies path initiation (see <xref target="path-initiation"/>),
issuing and retirement of per-path connection IDs (see
<xref target="consume-retire-cid"/>), path status management (see <xref target="path-state"/>) and
path closure (see <xref target="path-close"/>).
However, this document does not specify when a client decides to initiate or close a path,
or how multiple open paths are used for sending.</t>
      <t>For path management this extension specifies the following frames in <xref target="frames"/>:</t>
      <ul spacing="normal">
        <li>
          <t>PATH_ABANDON (see <xref target="path-abandon-frame"/>)</t>
        </li>
        <li>
          <t>PATH_BACKUP (see <xref target="path-backup-available-frame"/>)</t>
        </li>
        <li>
          <t>PATH_STATUS_AVAILABLE (see <xref target="path-backup-available-frame"/>)</t>
        </li>
        <li>
          <t>PATH_NEW_CONNECTION_ID (see <xref target="mp-new-conn-id-frame"/>)</t>
        </li>
        <li>
          <t>PATH_RETIRE_CONNECTION_ID (see <xref target="mp-retire-conn-id-frame"/>)</t>
        </li>
        <li>
          <t>MAX_PATH_ID (see <xref target="max-paths-frame"/>)</t>
        </li>
        <li>
          <t>PATHS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)</t>
        </li>
        <li>
          <t>PATH_CIDS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)</t>
        </li>
      </ul>
      <section anchor="path-initiation">
        <name>Path Initiation and Validation</name>
        <t>To open a new path, an endpoint MUST use a new connection ID associated
with an unused path ID. An endpoint
MUST use a connection ID associated to the same path ID as used in the packet
received by the endpoint when it intends to send packets on the same path.</t>
        <t>A client that wants to use a
new path MUST validate the peer's address before sending any data
as described in <xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>,
unless it has previously validated the 4-tuple used for that path.</t>
        <t>After receiving packets from the
client on a new path, if the server decides to use the new path,
the server MUST validate the peer's address before sending any data
as described in (<xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>),
unless it has previously validated the 4-tuple used for that path.
Until the client's address is
validated, the anti-amplification limit from <xref section="8" sectionFormat="of" target="QUIC-TRANSPORT"/>
applies.</t>
        <t>If an endpoint sends a PATH_RESPONSE, it MUST be sent on the same path
as used by the packet that contained the PATH_CHALLENGE frame,
using a connection ID associated with the same path ID.</t>
        <t>The server might receive packets for a yet unused path ID that do not
contain a PATH_CHALLENGE frame. Such packets are valid if they can be properly decrypted
given a valid connection ID.</t>
        <t>Each endpoint MUST also validate that a minimum QUIC packet MTU of 1200 bytes is supported
on the path. This can be done during initial path validation or separately later if
the amplification limit prevents it initially, as specified in <xref section="8.2.1" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        <t>An endpoint that receives packets on a new path and does not want to establish
this path is expected to close the path by sending a PATH_ABANDON
on another path, as specified in <xref target="path-close"/>.</t>
        <t>An endpoint that has no active connection ID for this path or
lacks other resource to immediately configure a new path could
delay sending the PATH_RESPONSE until sufficient resource are available.
Long delays might cause the peer to repeat the PATH_CHALLENGE and eventually
send a PATH_ABANDON, in which case the procedures specified in
Section <xref target="path-close"/> apply.</t>
        <t>PATH_ACK frames (see <xref target="mp-ack-frame"/>) can be returned on any path.
If the PATH_ACK is preferred to be sent on the same path as the acknowledged
packet (see <xref target="compute-rtt"/> for further guidance), it can be beneficial
to bundle a PATH_ACK frame with the PATH_RESPONSE frame during
path validation.</t>
        <t>If validation succeeds, the client can continue to use the path.
If validation fails, the client MUST NOT use the path and can
remove any status associated to the path initiation attempt.
As the used path ID is anyway consumed,
the endpoint MUST explicitly close the path, as specified in
<xref target="path-close"/>.</t>
        <section anchor="path-establishment-example">
          <name>Path Establishment Example</name>
          <t>In the example below it is assumed that both endpoints have
indicated an initial_max_path_id value of at least 2, which means
both endpoints can use path IDs 0, 1, and 2. Note that
path ID 0 is already used for the initial path.</t>
          <figure anchor="fig-example-new-path">
            <name>Example of new path establishment</name>
            <artwork><![CDATA[
   Client                                                  Server

   (Provide new CIDs for path 1 on an existing path 0)
   1-RTT[X]: DCID=S0, PATH_NEW_CONNECTION_ID[C1, Seq=0, PathID=1] -->
           <-- 1-RTT[Y]: DCID=C0,
                         PATH_NEW_CONNECTION_ID[S1, Seq=0, PathID=1],
                         PATH_ACK[PathID=0, PN=X]
           <-- 1-RTT[Y+1]: DCID=C0, PATH_NEW_CONNECTION_ID[S2, Seq=0,
                                                            PathID=2]
   ...
   (start sending packets on a new path using path ID 1)
   1-RTT[0]: DCID=S1, PATH_CHALLENGE[X] -->
        <-- 1-RTT[0]: DCID=C1, PATH_RESPONSE[X], PATH_CHALLENGE[Y],
                                             PATH_ACK[PathID=1, PN=0]
   1-RTT[1]: DCID=S1, PATH_RESPONSE[Y],
            PATH_ACK[PathID=1, PN=0], ... -->

]]></artwork>
          </figure>
          <t>In <xref target="fig-example-new-path"/>, the endpoints first exchange
new available connection IDs with the PATH_NEW_CONNECTION_ID frame,
as further explained in <xref target="consume-retire-cid"/>.
In this example, the client provides one connection ID (C1 with
path ID 1), and server provides two connection IDs
(S1 with path ID 1, and S2 with path ID 2).</t>
          <t>Before the client opens a new path by sending a packet on that path
with a PATH_CHALLENGE frame, it has to check whether there is
an unused connection ID for the same unused path ID available for each side.
In this example the path ID 1 is used which is the smallest unused path ID available
as recommended in <xref target="consume-retire-cid"/>.
Respectively, the client chooses the connection ID S1
as the Destination Connection ID of the new path when sending the PATH_CHALLENGE frame.
The server replies with a PATH_RESPONSE bundled with the PATH_ACK using connection ID S1
associated with the same path ID.</t>
        </section>
        <section anchor="relation-to-probing-and-migration">
          <name>Relation to Probing and Migration</name>
          <t><xref section="9.1" sectionFormat="of" target="QUIC-TRANSPORT"/> introduces the concept of
"probing" and "non-probing" frames. A packet that contains at least
one "non-probing" frame is a "non-probing" packet.
Migration as specified in <xref section="9.2" sectionFormat="of" target="QUIC-TRANSPORT"/> is initiated
by sending packets containing non-probing frames on a new (validated) path,
however, using the same path ID as on the old path.
When the multipath extension is negotiated, the reception of any packet,
no matter if "probing " or "non-probing", on a new path with a new, so far unused path ID
does not impact the path status of any existing
path. Therefore, any frame can be sent on a new path with a new path ID at any time
as long as the anti-amplification limits
(see <xref section="21.1.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/>) and the congestion control
limits for this path are respected.</t>
          <t>An endpoint could receive a packet with a connection ID
associated to an active path ID where the packet's 4-tuple does not match the 4-tuple
currently used with that path ID. This MUST be treated as path migration,
as specified in <xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, with the constraint that
all connection IDs used during path migration MUST be
associated with the current path ID of the path being migrated.</t>
        </section>
        <section anchor="address-validation-token">
          <name>Address Validation Token</name>
          <t>As specified in <xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/>, the server is expected to send a new
address validation token to a client following the successful validation of a
new client address. The client will receive several tokens. When considering using a token
for subsequent connections, it might be difficult for the client
to pick the "right" token among multiple tokens obtained in a previous connection.
The client is likely to fall back to the strategy specified in <xref section="8.1.3" sectionFormat="of" target="QUIC-TRANSPORT"/>,
i.e., pick the last received token. To avoid issues when clients make the "wrong" choice,
a server SHOULD issue tokens that are capable of validating
any of the previously validated addresses. Including more addresses increases the
probability that the token will be useful in the future, but at the cost of a larger token.
Further guidance on token usage can be found in <xref section="8.1.3" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        </section>
      </section>
      <section anchor="consume-retire-cid">
        <name>Handling Connection IDs</name>
        <t>When the multipath extension is used,
endpoints have to use the PATH_NEW_CONNECTION_ID and PATH_RETIRE_CONNECTION_ID frames
to indicate the respective path ID together with associated sequence number
(see <xref section="5.1.1" sectionFormat="of" target="QUIC-TRANSPORT"/>), at least for all paths with a path ID other than 0.
Each path ID has its own connection ID sequence number space whose initial value is 0.</t>
        <t>Endpoints SHOULD also use PATH_NEW_CONNECTION_ID and
PATH_RETIRE_CONNECTION_ID for the initial path with path ID 0.
However, the use of NEW_CONNECTION_ID and RETIRE_CONNECTION_ID
is still valid and endpoints need to process these frames
as corresponding to path ID 0.</t>
        <section anchor="issuing-new-connection-ids">
          <name>Issuing New Connection IDs</name>
          <t>In order to let the peer open new paths, it is RECOMMENDED to proactively
issue at least one Connection ID for each unused path ID up to the
minimum of the peer's and the local maximum path ID limits.</t>
          <t>If for any reason an endpoint does not want to issue connection IDs for all
unused path ID, it SHOULD NOT introduce discontinuity
in the issuing of path IDs as path initiation
requires available connection IDs for the same path ID on both sides. For instance,
if the maximum path ID limit is 2 and the endpoint wants to provide connection IDs
for only one path ID inside range [1, 2], it should select path ID 1 (and not path
ID 2).</t>
          <t>Similarly, endpoints SHOULD consume path IDs in a continuous way, i.e., when
creating paths. However, endpoints cannot expect to receive new connection IDs
or path initiation attempts with in-order use of path IDs
due to out-of-order delivery or path validation failure.</t>
          <t>Each endpoint maintains the set of connection IDs received from its peer for each path,
any of which it can use when sending packets on that path; see also <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/>.
Usually, it is desired to provide at least one additional connection ID for
all used paths, to allow for (unintentional) migration events (<xref section="9.5" sectionFormat="of" target="QUIC-TRANSPORT"/>).</t>
          <t>As further specified in <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/> connection IDs
cannot be issued more than once on the same connection
and therefore are unique for the scope of the connection,
regardless of the associated path ID.</t>
          <t>Endpoints MUST NOT issue new connection IDs with path IDs greater than
the Maximum Path Identifier field in MAX_PATH_ID frames (see <xref target="max-paths-frame"/>)
or the value of initial_max_path_id transport parameter if no MAX_PATH_ID frame was received yet.
Receipt of a frame with a greater path ID is a connection error as specified
in <xref target="frames"/>.</t>
          <t>When an endpoint finds it has not enough available unused path IDs,
it SHOULD either send a MAX_PATH_ID frame to increase the active path limit
(when limited by the sender) or a PATHS_BLOCKED frame
(see <xref target="paths-and-cids-blocked-frame"/>) to inform the peer that
its current limit prevented the creation of the new path.</t>
        </section>
        <section anchor="rotating-and-retiring-connection-ids">
          <name>Rotating and Retiring Connection IDs</name>
          <t><xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> indicates that an endpoint
can change the connection ID it uses to another available one
at any time during the connection. For the extension specified in
this document, endpoints MUST only rotate to another connection ID associated
with the same path ID. Use of a connection ID associated with
another path ID will be considered as an attempt to open a new path instead.</t>
          <t>An endpoint is supposed to retire any connection ID that is not being used,
and the server is expected to provide
replacements, as specified in <xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/>.
As such, when receiving a PATH_RETIRE_CONNECTION_ID frame, an endpoint
SHOULD provide new connection IDs for that path, if still open, using PATH_NEW_CONNECTION_ID frames.</t>
          <t>While it it expected that the peer provides at least one unused connection ID
for all active paths using the PATH_NEW_CONNECTION_ID after retirement
of an old connection ID, an endpoint MAY send
a PATH_CIDS_BLOCKED (see <xref target="paths-and-cids-blocked-frame"/>)
if it wants to change the connection ID but no
unused connection ID for a that path is available. Further, an
endpoint MAY also send a PATH_CIDS_BLOCKED frame if it wants to
open a new path and has no connection IDs available for an unused
path ID even though the Maximum Path Identifier value would allow
for more paths.</t>
          <t>Retirement of connection IDs will not retire the path ID
that corresponds to the connection ID or any other path resources
as the packet number space is associated to the path ID.</t>
          <t>The peer that sends the PATH_RETIRE_CONNECTION_ID frame can keep sending data
on the path that the retired connection ID was used on but has
to use a different connection ID for the same path ID when doing so.</t>
        </section>
      </section>
      <section anchor="path-state">
        <name>Path Status Management</name>
        <t>An endpoint can send PATH_STATUS_BACKUP and PATH_STATUS_AVAILABLE frames (see
<xref target="path-backup-available-frame"/>) to inform the peer that it should
send packets on the paths with the preference expressed by these frames.
Note that an endpoint might not follow the peer’s advertisements,
but these frames are still a clear signal of the peer's preference of path usage.</t>
        <t>Each peer indicates its preference of path usage independently of the other peer.
That means that peers could have different usage preferences for the same path.
Depending on the data sender's decisions, this might lead to usage of paths that have been
indicated as "backup" by the peer or non-usage of some locally available paths.</t>
        <t>PATH_STATUS_AVAILABLE indicates that a path is "available", i.e., it suggests to
the peer to use its own logic to split traffic among available paths.</t>
        <t>PATH_STATUS_BACKUP suggests that a path should only be used as backup, i.e., that no traffic
should be sent on that path if another path is available and usable.
If all established paths are indicated as backup paths, no guidance is provided about
which path should be used.</t>
        <t>Similarly, if no frame indicating a path usage preference was received for a certain path,
the preference of the peer is unknown and the sender needs to decide based on it
own local logic if the path should be used.</t>
        <t>If an endpoint starts using a backup path
because it has detected issues on the paths marked as "available", it is RECOMMENDED
to update its own path state signaling such that the peer avoids using the broken path.
An endpoint that detects a path breakage can also explicitly close the path
by sending a PATH_ABANDON frame (see <xref target="path-close"/>) in order to avoid
that its peer keeps using it and enable faster switchover to a backup path.
If the endpoints do not want to close the path immediately, as connectivity
could be re-established, PING frames can potentially be used to quickly detect
connectivity changes and switch back in a timely way.</t>
        <t>The PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames share a common, per-path sequence number space
to detect and ignore outdated information, as further described in <xref target="path-backup-available-frame"/>.
This is needed as they might arrive out-of-order,
e.g., if sent using different paths.</t>
      </section>
      <section anchor="path-close">
        <name>Path Close</name>
        <t>At any time in the connection, each endpoint can decide to
abandon a path, for example following changes in local
connectivity or local preferences.
An endpoint that wants to abandon a path MUST explicitly
close the path by sending a PATH_ABANDON frame (see <xref target="path-abandon-frame"/>).
This is true whether the decision to close the path results
from implicit signals such as an idle time-out (see <xref target="idle-time-close"/>)
or packet losses as well as for any other reason such as management
of local resources.</t>
        <t>The peers that send a PATH_ABANDON frame MUST treat all connection
IDs received from the peer for the path ID indicated in the PATH_ABANDON as immediately
retired, and subsequently cannot send any packet on that path anymore.
Note that while abandoning a path will cause
connection ID retirement, the inverse is not true: retiring the associated connection IDs
does not indicate path abandonment (see further <xref target="consume-retire-cid"/>).</t>
        <t>PATH_ABANDON frames can be sent on any open path,
not only on the path that is intended to be closed.
It is RECOMMENDED to send the PATH_ABANDON frames on another open path,
especially if connectivity on the to-be-abandoned path
is expected to be broken.</t>
        <t>When an endpoint receives a PATH_ABANDON frame, it MUST send a corresponding
PATH_ABANDON frame, if it has not already done so, and respectively treat all
connection IDs received from the peer for that path as immediately
retired. While that means retired connection IDs received from the peer cannot be used
for sending anymore, packets from the peer might still be in transit.
Therefore, knowledge of the
connection IDs issued to the peer and of the state
of the number space associated to the path SHOULD be retained for
3 PTO after the PATH_ABANDON frame has been received.
This avoids generating spurious stateless reset packets, as discussed in
<xref target="spurious-stateless-reset"/>, and helps acknowledge any
potentially reordered, outstanding packets from the peer (see <xref target="ack-after-abandon"/>).</t>
        <t>It is also possible that an endpoint will receive a PATH_ABANDON frame
before receiving or sending any traffic on a path. For example, if the client
tries to initiate a path and the path cannot be established, it will send a
PATH_ABANDON frame (see <xref target="path-initiation"/>). An endpoint could also decide
to abandon an unused path for any other reason, for example, removing a hole from
the sequence of path IDs in use. This is not an error.</t>
        <t>If a peer sends a PATH_ABANDON frame but never receives
a corresponding PATH_ABANDON frame, it might not be able to remove path state.
It is left to the implementation to handle this unexpected
behavior as it does not impact interoperability. If the endpoint is no longer
willing to process the issued connection IDs for the abandoned path,
it MAY close the connection, but SHOULD wait at least 3 PTOs after
sending the PATH_ABANDON frame.</t>
        <t>After a path is abandoned, the path ID MUST NOT be reused
for new paths, as the path ID is part of the nonce calculation <xref target="nonce"/>.</t>
        <t>If a PATH_ABANDON frame is received for the only open path of a QUIC
connection, the receiving peer SHOULD send a CONNECTION_CLOSE frame
and enter the closing state. Alternatively, a client MAY instead try to open a new path, if
available, and only initiate connection closure if path validation fails
or a CONNECTION_CLOSE frame is received from the server. Similarly,
the server MAY wait for a short, limited time such as one PTO if a
packet is received on a new path before sending the
CONNECTION_CLOSE frame.</t>
        <t>Note that other explicit closing mechanisms of <xref target="QUIC-TRANSPORT"/> still
apply on the whole connection. In particular, the reception of either a
CONNECTION_CLOSE (<xref section="10.2" sectionFormat="of" target="QUIC-TRANSPORT"/>) or a Stateless
Reset (<xref section="10.3" sectionFormat="of" target="QUIC-TRANSPORT"/>) closes the connection.</t>
        <section anchor="path-closure-example">
          <name>Path Closure Example</name>
          <t>In the example below, the client wants to close the path with path ID 0.
It sends the PATH_ABANDON frame to terminate the path with path ID 0
on the path with path ID 1 using the connection ID S1. After receiving
the PATH_ABANDON frame for path ID 0, the server also sends a
PATH_ABANDON frame with path ID 0 together with an PATH_ACK frame
on the same path using connection ID C1.</t>
          <figure anchor="fig-example-path-close1">
            <name>Example of closing a path.</name>
            <artwork><![CDATA[
Client                                                      Server

(client tells server to abandon a path with path ID 0)
1-RTT[X]: DCID=S1 PATH_ABANDON[path ID=0]->
                           (server tells client to abandon a path)
                    <-1-RTT[Y]: DCID=C1 PATH_ABANDON[path ID=0],
                                           PATH_ACK[PATH ID=1, PN=X]
1-RTT[U]: DCID=S1 PATH_ACK[path ID=1, PN=Y] ->
]]></artwork>
          </figure>
          <t>Note that if the PATH_ABANDON frame is instead sent on the to-be-abandoned path,
the last acknowledgment still needs to be send on a different path
as no further packets can be sent on the abandoned path after the
PATH_ABANDON frame.</t>
        </section>
        <section anchor="spurious-stateless-reset">
          <name>Avoiding Spurious Stateless Resets</name>
          <t>Due to network delays, packets sent on an abandoned path can
arrive well after the connection IDs have been retired.
If not recognized as bound to the local
connection, such packet triggers the peer to send a Stateless Reset
packet. The requirement to retain knowledge of connection ID and about
the packet number space for 3 PTOs
after receiving a PATH_ABANDON frame, as specified in <xref target="path-close"/> above,
is intended to reduce the risk of sending such spurious stateless
packets, but it cannot completely avoid that risk.</t>
          <t><xref section="10.3" sectionFormat="of" target="QUIC-TRANSPORT"/> specified that the Stateless Reset Tokens
associated with retired connection IDs cannot be used to identify Stateless Reset packets.
The immediate retirement of connection IDs received from the peer for an abandoned
path guarantees that spurious Stateless Reset packets
sent by the peer will not cause the closure of the QUIC connection.</t>
        </section>
        <section anchor="ack-after-abandon">
          <name>Handling PATH_ACK for Abandoned Paths</name>
          <t>When an endpoint sends a PATH_ABANDON frame, there might
still be some packets in transit from the peer.
Further, if an endpoint receives a PATH_ABANDON frame, it might still receive
reordered packets on the abandoned path. Endpoints SHOULD
promptly send PATH_ACK frames for all unacknowledged packets received on
an abandoned path if path state is still retained to do so.</t>
          <t>PATH_ACK frames have to be sent on a different path than the path being abandoned
after sending the PATH_ABANDON frame as connection IDs are immediately retired.</t>
          <t>When an endpoint finally deletes all state associated with the path,
the packets sent over the path and not yet acknowledged MUST be considered lost.
PATH_ACK frames received with an abandoned path ID are silently ignored,
as specified in <xref target="frames"/>.</t>
        </section>
      </section>
    </section>
    <section anchor="frames">
      <name>New Frames</name>
      <t>All frames defined in this document MUST only be sent in 1-RTT packets.
If an endpoint receives a multipath-specific frame in a different packet type,
it MUST close the connection with an error of type PROTOCOL_VIOLATION.</t>
      <t>Receipt of multipath-specific frames
that use a path ID that is greater than the announced Maximum Paths value
in the MAX_PATH_ID frame or in the initial_max_path_id transport parameter,
if no MAX_PATH_ID frame was received yet,
MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
      <t>If an endpoint receives a multipath-specific frame
with a path ID that it cannot process
anymore (e.g., because the path might have been abandoned), it
MUST silently ignore the frame.</t>
      <section anchor="mp-ack-frame">
        <name>PATH_ACK Frame</name>
        <t>The PATH_ACK frame (types TBD-00 and TBD-01)
is an extension of the ACK frame specified in <xref section="19.3" sectionFormat="of" target="QUIC-TRANSPORT"/>. It is
used to acknowledge packets that were sent on different paths, as
each path has its own packet number space. If the frame type is TBD-01, PATH_ACK frames
also contain the sum of QUIC packets with associated ECN marks received
on the acknowledged packet number space up to this point.</t>
        <t>PATH_ACK frame is formatted as shown in <xref target="fig-mp-ack-format"/>.</t>
        <figure anchor="fig-mp-ack-format">
          <name>PATH_ACK Frame Format</name>
          <artwork><![CDATA[
  PATH_ACK Frame {
    Type (i) = TBD-00..TBD-01
         (experiments use  0x15228c00-0x15228c01),
    Path Identifier (i),
    Largest Acknowledged (i),
    ACK Delay (i),
    ACK Range Count (i),
    First ACK Range (i),
    ACK Range (..) ...,
    [ECN Counts (..)],
  }
]]></artwork>
        </figure>
        <t>Compared to the ACK frame specified in <xref target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the packet number space of the 0-RTT and 1-RTT packets
which are acknowledged by the PATH_ACK frame.</t>
          </dd>
        </dl>
      </section>
      <section anchor="path-abandon-frame">
        <name>PATH_ABANDON Frame</name>
        <t>The PATH_ABANDON frame informs the peer to abandon a path.
After the PATH_ABANDON frame is sent on a path, the path can no longer be used for sending.</t>
        <t>PATH_ABANDON frames are formatted as shown in <xref target="fig-path-abandon-format"/>.</t>
        <figure anchor="fig-path-abandon-format">
          <name>PATH_ABANDON Frame Format</name>
          <artwork><![CDATA[
  PATH_ABANDON Frame {
    Type (i) = TBD-02 (experiments use 0x15228c05),
    Path Identifier (i),
    Error Code (i),
  }
]]></artwork>
        </figure>
        <t>PATH_ABANDON frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated to the to-be-abandoned path.</t>
          </dd>
          <dt>Error Code:</dt>
          <dd>
            <t>A variable-length integer that indicates the reason for abandoning
this path. NO_ERROR(0x0) indicates that the path is being abandoned
without any error being encountered. Other error codes can be found in <xref target="error-codes"/>.</t>
          </dd>
        </dl>
        <t>PATH_ABANDON frames are ack-eliciting. If a packet containing
a PATH_ABANDON frame is considered lost, the peer SHOULD repeat it.</t>
        <t>Use of the PATH_ABANDON frame is specified in section <xref target="path-close"/>.</t>
        <section anchor="error-codes">
          <name>Error Codes</name>
          <t>QUIC transport error codes are 62-bit unsigned integers
(see <xref section="20.1" sectionFormat="of" target="QUIC-TRANSPORT"/>. In addition to
NO_ERROR(0x0), the following QUIC error codes are defined
for use in the PATH_ABANDON frame:</t>
          <dl>
            <dt>APPLICATION_ABANDON_PATH (TBD-10):</dt>
            <dd>
              <t>The endpoint is abandoning the path at the
request of the application.</t>
            </dd>
            <dt>PATH_RESOURCE_LIMIT_REACHED (TBD-11):</dt>
            <dd>
              <t>The endpoint is abandoning the path because
it cannot allocate sufficient resources to maintain it.</t>
            </dd>
            <dt>PATH_UNSTABLE_OR_POOR (TBD-12):</dt>
            <dd>
              <t>The endpoint is abandoning the path because
the used interface is observed to be unstable or performance is consider poor. This condition can occur, e.g.,
due to frequent handover events during high-speed mobility or due to a weak wireless signal.</t>
            </dd>
            <dt>NO_CID_AVAILABLE_FOR_PATH (TBD-13):</dt>
            <dd>
              <t>The endpoint is abandoning the path due to
the lack of a connection ID for this path.
This might occur when the peer initiates a new path
but has not provided a corresponding connection ID for the path ID
(or the packet containing the connection IDs has not arrived yet).</t>
            </dd>
          </dl>
        </section>
      </section>
      <section anchor="path-backup-available-frame">
        <name>PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames</name>
        <t>PATH_STATUS_AVAILABLE frames are used by endpoints to inform the peer
that the indicated path is available for sending.</t>
        <t>PATH_STATUS_AVAILABLE frames are formatted as shown in <xref target="fig-path-available-format"/>.</t>
        <figure anchor="fig-path-available-format">
          <name>PATH_STATUS_AVAILABLE Frame Format</name>
          <artwork><![CDATA[
  PATH_STATUS_AVAILABLE Frame {
    Type (i) = TBD-04 (experiments use 0x15228c08),
    Path Identifier (i),
    Path Status Sequence Number (i),
  }
]]></artwork>
        </figure>
        <t>PATH_STATUS_BACKUP frames are used by endpoints to inform the peer
about its preference to not use the indicated path for sending.</t>
        <t>PATH_STATUS_BACKUP frames are formatted as shown in <xref target="fig-path-backup-format"/>.</t>
        <figure anchor="fig-path-backup-format">
          <name>PATH_STATUS_BACKUP Frame Format</name>
          <artwork><![CDATA[
  PATH_STATUS_BACKUP Frame {
    Type (i) = TBD-03 (experiments use 0x15228c07)
    Path Identifier (i),
    Path Status Sequence Number (i),
  }
]]></artwork>
        </figure>
        <t>Both PATH_STATUS_AVAILABLE and PATH_STATUS_BACKUP frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID that the status update corresponds to.
All path IDs below the maximum path ID limit can be indicated,
even if the path is not in active use yet.</t>
          </dd>
          <dt>Path Status Sequence Number:</dt>
          <dd>
            <t>A variable-length integer specifying the per-path sequence number assigned for
this frame.</t>
          </dd>
        </dl>
        <t>The sequence number space is common to the two frame types,
and monotonically increasing values MUST be used when sending PATH_STATUS_AVAILABLE or
PATH_STATUS_BACKUP frames for a given path ID.</t>
        <t>Frames might be received out of order. A peer MUST ignore an incoming
PATH_STATUS_AVAILABLE or
PATH_STATUS_BACKUP frame if it previously received another PATH_STATUS_BACKUP frame
or PATH_STATUS_AVAILABLE frame for the same path ID with a Path Status sequence number
equal to or higher than the Path Status sequence number of the incoming frame.</t>
        <t>The requirement of monotonically increasing sequence numbers
is per path. Receivers could very well receive the
same sequence number for PATH_STATUS_AVAILABLE or PATH_STATUS_BACKUP Frames
on different paths. As such, the receiver of
the PATH_STATUS_AVAILABLE or PATH_STATUS_BACKUP frame needs to use and compare the sequence numbers
separately for each path ID.</t>
        <t>PATH_STATUS_BACKUP and PATH_STATUS_AVAILABLE frames are ack-eliciting. If a packet containing a
PATH_STATUS_BACKUP or PATH_STATUS_AVAILABLE frame is considered lost, the peer SHOULD resend the frame
only if it contains the last status sent for that path -- as indicated
by the sequence number.</t>
        <t>A PATH_STATUS_BACKUP or a PATH_STATUS_AVAILABLE frame MAY be bundled with a PATH_NEW_CONNECTION_ID frame or
a PATH_RESPONSE frame in order to indicate the preferred path usage
before or during path initiation.</t>
      </section>
      <section anchor="mp-new-conn-id-frame">
        <name>PATH_NEW_CONNECTION_ID frame</name>
        <t>The PATH_NEW_CONNECTION_ID frame (type=TBD-05)
is an extension of the NEW_CONNECTION_ID frame specified in
<xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>.
It is used to provide its peer with alternative connection IDs for 1-RTT packets
for a specific path. The peer can then use a different connection ID on the same path
to break linkability when migrating on that path; see also <xref section="9.5" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
        <t>PATH_NEW_CONNECTION_ID frames are formatted as shown in <xref target="fig-mp-connection-id-frame-format"/>.</t>
        <figure anchor="fig-mp-connection-id-frame-format">
          <name>PATH_NEW_CONNECTION_ID Frame Format</name>
          <artwork><![CDATA[
PATH_NEW_CONNECTION_ID Frame {
  Type (i) = TBD-05 (experiments use 0x15228c09),
  Path Identifier (i),
  Sequence Number (i),
  Retire Prior To (i),
  Length (8),
  Connection ID (8..160),
  Stateless Reset Token (128),
}
]]></artwork>
        </figure>
        <t>Compared to the NEW_CONNECTION_ID frame specified in
<xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the connection ID. This
means the provided connection ID can only be used on the corresponding path.</t>
          </dd>
        </dl>
        <t>Note that, other than for the NEW_CONNECTION_ID frame of <xref section="19.15" sectionFormat="of" target="QUIC-TRANSPORT"/>,
the sequence number applies on a per-path context.
This means different connection IDs on different paths might have the same
sequence number value.</t>
        <t>The Retire Prior To field indicates which connection IDs
should be retired among those that share the path ID in the Path Identifier field.
Connection IDs associated with different path IDs are not affected.</t>
        <t>Note that the NEW_CONNECTION_ID frame can only be used to issue or retire
connection IDs for the initial path with path ID 0.</t>
        <t>The last paragraph of <xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> specifies how to
verify the Retire Prior To field of an incoming NEW_CONNECTION_ID frame.
The same rule
applies for PATH_NEW_CONNECTION_ID frames, but it applies per path. If the
multipath extension is used, the rule
for NEW_CONNECTION_ID frame is only applied for path ID 0.</t>
      </section>
      <section anchor="mp-retire-conn-id-frame">
        <name>PATH_RETIRE_CONNECTION_ID frame</name>
        <t>The PATH_RETIRE_CONNECTION_ID frame (TBD-06)
is an extension of the RETIRE_CONNECTION_ID frame specified in
<xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>. It is used
to indicate that an endpoint will no longer use a connection ID for a specific path ID
that was issued by its peer. To retire the connection ID used
during the handshake on the initial path, path ID 0 is used.
Sending a PATH_RETIRE_CONNECTION_ID frame also serves as a request to the peer
to send additional connection IDs for this path (see also <xref section="5.1" sectionFormat="of" target="QUIC-TRANSPORT"/>),
unless the path specified by the path ID has been abandoned. New path-specific connection IDs can be
delivered to a peer using the PATH_NEW_CONNECTION_ID frame (see <xref target="mp-new-conn-id-frame"/>).</t>
        <t>PATH_RETIRE_CONNECTION_ID frames are formatted as shown in <xref target="fig-mp-retire-connection-id-frame-format"/>.</t>
        <figure anchor="fig-mp-retire-connection-id-frame-format">
          <name>PATH_RETIRE_CONNECTION_ID Frame Format</name>
          <artwork><![CDATA[
PATH_RETIRE_CONNECTION_ID Frame {
  Type (i) = TBD-06 (experiments use 0x15228c0a),
  Path Identifier (i),
  Sequence Number (i),
}
]]></artwork>
        </figure>
        <t>Compared to the RETIRE_CONNECTION_ID frame specified in
<xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>, the following
field is added:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>The path ID associated with the connection ID to retire.</t>
          </dd>
        </dl>
        <t>Note that the RETIRE_CONNECTION_ID frame can only be used to retire
connection IDs for the initial path with path ID 0.</t>
        <t>As the PATH_NEW_CONNECTION_ID frames applies the sequence number per path,
the sequence number in the PATH_RETIRE_CONNECTION_ID frame is also per
path. The PATH_RETIRE_CONNECTION_ID frame retires the Connection ID with
the specified path ID and sequence number.</t>
        <t>The processing of an incoming RETIRE_CONNECTION_ID frame
is described in <xref section="19.16" sectionFormat="of" target="QUIC-TRANSPORT"/>. The same processing
applies for PATH_RETIRE_CONNECTION_ID frames per path, while with use of
the multipath extension the
processing of a RETIRE_CONNECTION_ID frame is only applied for path ID 0.</t>
      </section>
      <section anchor="max-paths-frame">
        <name>MAX_PATH_ID frame</name>
        <t>A MAX_PATH_ID frame (type=0x15228c0c) informs the peer of the maximum path ID
it is permitted to use.</t>
        <t>MAX_PATH_ID frames are formatted as shown in <xref target="fig-max-paths-frame-format"/>.</t>
        <figure anchor="fig-max-paths-frame-format">
          <name>MAX_PATH_ID Frame Format</name>
          <artwork><![CDATA[
MAX_PATH_ID Frame {
  Type (i) = TBD-07 (experiments use 0x15228c0c),
  Maximum Path Identifier (i),
}
]]></artwork>
        </figure>
        <t>MAX_PATH_ID frames contain the following field:</t>
        <dl>
          <dt>Maximum Path Identifier:</dt>
          <dd>
            <t>The maximum path ID that the sending endpoint is willing to accept.
This value MUST NOT exceed 2<sup>32</sup>-1, which is the maximum allowed value for the path ID due to
restrictions on the nonce calculation (see <xref target="nonce"/>).
The Maximum Path Identifier value MUST NOT be lower than the value
advertised in the initial_max_path_id transport parameter.</t>
          </dd>
        </dl>
        <t>Receipt of an invalid Maximum Path Identifier value MUST be treated as a
connection error of type PROTOCOL_VIOLATION.</t>
        <t>Loss or reordering can cause an endpoint to receive a MAX_PATH_ID frame with
a smaller Maximum Path Identifier value than was previously received.
MAX_PATH_ID frames that do not increase the path limit MUST be ignored.</t>
        <t>MAX_PATH_ID frames are ack-eliciting and SHOULD be retransmitted when lost
and no more recent MAX_PATH_ID frame has been sent in the meantime.</t>
      </section>
      <section anchor="paths-and-cids-blocked-frame">
        <name>PATHS_BLOCKED and PATH_CIDS_BLOCKED frames</name>
        <t>A sender can send a PATHS_BLOCKED frame (type=0x15228c0d) when
it wishes to open a path but is unable to do so due to the maximum path ID
limit set by its peer.</t>
        <t>A sender can send a PATH_CIDS_BLOCKED frame (type=0x15228c0e) when
it wishes to open a path with a valid path ID or change the connection ID on an established path
but is unable to do so because there are no unused connection IDs available
for the corresponding path ID.</t>
        <t>Note that PATHS_BLOCKED and PATH_CIDS_BLOCKED frames are informational.
Sending a PATHS_BLOCKED or a PATH_CIDS_BLOCKED frame does not imply a particular action from the peer
like sending a MAX_PATH_ID frame with a new Maximum Path Identifier value,
but informs the peer that the maximum path ID limit
or the absence of unused connection IDs prevented the creation or the usage of paths.
If the successful reception of a PATHS_BLOCKED/PATH_CIDS_BLOCKED frame was acknowledged but
no action is taken by the peer, this is likely a deliberate decision by the peer and
repeating the PATHS_BLOCKED/PATH_CIDS_BLOCKED frame will not change that.</t>
        <t>PATHS_BLOCKED frames are formatted as shown in <xref target="fig-paths-blocked-frame-format"/>.</t>
        <figure anchor="fig-paths-blocked-frame-format">
          <name>MAX_PATH_ID_BLOCKED Frame Format</name>
          <artwork><![CDATA[
PATHS_BLOCKED Frame {
  Type (i) = TBD-08 (experiments use 0x15228c0d),
  Maximum Path Identifier (i),
}
]]></artwork>
        </figure>
        <t>PATHS_BLOCKED frames contain the following field:</t>
        <dl>
          <dt>Maximum Path Identifier:</dt>
          <dd>
            <t>A variable-length integer indicating the maximum path ID that was
allowed at the time the frame was sent. If the received value is lower than
the currently allowed maximum value, this frame can be ignored.</t>
          </dd>
        </dl>
        <t>PATH_CIDS_BLOCKED frames are formatted as shown in <xref target="fig-path-cid-blocked-frame-format"/>.</t>
        <figure anchor="fig-path-cid-blocked-frame-format">
          <name>PATH_CIDS_BLOCKED Frame Format</name>
          <artwork><![CDATA[
PATH_CIDS_BLOCKED Frame {
  Type (i) = TBD-09 (experiments use 0x15228c0e),
  Path Identifier (i),
  Next Sequence Number (i),
}
]]></artwork>
        </figure>
        <t>PATH_CIDS_BLOCKED frames contain the following fields:</t>
        <dl>
          <dt>Path Identifier:</dt>
          <dd>
            <t>Identifier of the path for which unused connection IDs are not available.</t>
          </dd>
          <dt>Next Sequence Number:</dt>
          <dd>
            <t>The next sequence number that is expected to be issued for a connection ID for this path by the peer.</t>
          </dd>
        </dl>
        <t>Receipt of a value of Maximum Path Identifier or Path Identifier that is higher than
the local maximum value MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
        <t>Receipt of a value of Next Sequence Number that is higher than
the sequence number of the next expected to be issued connection ID for this path
MUST be treated as a connection error of type PROTOCOL_VIOLATION.</t>
        <t>PATHS_BLOCKED and PATH_CIDS_BLOCKED frames are ack-eliciting and MAY be retransmitted
if the path is still blocked when the lost is detected.</t>
      </section>
    </section>
    <section anchor="impl-consideration">
      <name>Implementation Considerations</name>
      <t>This section provides informational guidance for implementors.</t>
      <section anchor="migration">
        <name>Connection ID Changes, Migration, and NAT Rebindings</name>
        <t>With the multipath extension, each
path uses a separate packet number space.
This is a major difference from
<xref target="QUIC-TRANSPORT"/>, which only defines three number spaces (Initial,
Handshake and Application packets).</t>
        <t>For any given path, connection ID rotation, NAT rebinding, or client initiated migration
as specified in <xref target="QUIC-TRANSPORT"/> might occur, like on a single path.
These events do not change the path ID, and do not affect the packet number
space associated with the path.</t>
        <t>It is generally preferable to use multipath mechanisms such as
creating a new path and later abandoning the old path,
rather than doing migration of a single path as specified in <xref target="QUIC-TRANSPORT"/>.
This enables a smoother handover and allows a more controlled migration handling
at the server side. However, migration of a single path cannot be
avoided in case of NAT rebinding, or if the server requests migration
to a "preferred address" during the handshake.</t>
        <t><xref section="9.3" sectionFormat="of" target="QUIC-TRANSPORT"/> allows an endpoint to skip validation of
a peer address if that address has been seen recently. However, when the
multipath extension is used and an endpoint has multiple addresses that
could lead to switching between different paths, it should rather maintain
multiple open paths instead.</t>
        <t>Servers observing a 4-tuple change will
perform path validation (see <xref section="9" sectionFormat="of" target="QUIC-TRANSPORT"/>).
If path validation process succeeds, the endpoints set
the path's congestion controller and round-trip time
estimator according to <xref section="9.4" sectionFormat="of" target="QUIC-TRANSPORT"/>.</t>
      </section>
      <section anchor="using-multiple-paths-on-the-same-4-tuple">
        <name>Using Multiple Paths on the Same 4-tuple</name>
        <t>It is possible to create paths that
refer to the same 4-tuple. For example, endpoints might want
to create paths that use different Differentiated Service <xref target="RFC2475"/> markings.
This could be done in conjunction with scheduling algorithms
that match streams to paths, so that for example data frames for
low priority streams are sent over low priority paths.
Since these paths use different path IDs, they can be managed
independently to suit the needs of the application.</t>
        <t>There might be cases in which paths are created with different 4-tuples,
but end up using the same 4-tuples as a consequence of path
migrations. Consider the following example where all paths use the same
source and destination ports:</t>
        <ul spacing="normal">
          <li>
            <t>Client starts path 1 from address 192.0.2.1 to server address 198.51.100.1</t>
          </li>
          <li>
            <t>Client starts path 2 from address 192.0.2.2 to server address 198.51.100.1</t>
          </li>
          <li>
            <t>Both paths are used for a while.</t>
          </li>
          <li>
            <t>Server sends packet from address 198.51.100.1 to client address 192.0.2.1, with Connection ID indicating path ID 2.</t>
          </li>
          <li>
            <t>Client receives the packet, recognizes a path migration, updates the source address of path 2 to 192.0.2.1.</t>
          </li>
        </ul>
        <t>Such unintentional use of the same 4-tuple on different paths ought to
be rare. When they happen, the two paths would be redundant, and the
endpoint could want to close one of them.</t>
      </section>
      <section anchor="congestion-control">
        <name>Congestion Control</name>
        <t>When the QUIC multipath extension is used, senders manage per-path
congestion status as required in <xref section="9.4" sectionFormat="of" target="QUIC-TRANSPORT"/>.
However, in <xref target="QUIC-TRANSPORT"/> only one active path is assumed and as such
the requirement is to reset the congestion control status on path migration.
With the multipath extension, multiple paths can be used simultaneously,
therefore separate congestion control state is maintained for each path.
This means a sender is not allowed to send more data on a given path
than congestion control for that path indicates.</t>
        <t>When a Multipath QUIC connection uses two or more paths, there is no
guarantee that these paths are fully disjoint. When two (or more paths)
share the same bottleneck, using a standard congestion control scheme
could result in an unfair distribution of the bandwidth with
the multipath connection getting more bandwidth than competing single
paths connections. Multipath TCP uses the linked increased algorithm (LIA)
congestion control scheme
specified in <xref target="RFC6356"/> to solve this problem.  This scheme can
immediately be adapted to Multipath QUIC. Other coupled congestion
control schemes have been proposed for Multipath TCP such as <xref target="OLIA"/>.
Designers of congestion control algorithms specialized for Multipath QUIC
are advised to follow BCP 133; see <xref section="7.10" sectionFormat="of" target="RFC9743"/>.</t>
        <t><xref section="5.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/> indicates that an endpoint
can change the connection ID it uses to another available one
at any time during the connection. As such, a sole change of the Connection
ID without any change in the address does not indicate a path change and
the endpoint can keep the same congestion control and RTT measurement state.</t>
      </section>
      <section anchor="compute-rtt">
        <name>Computing Path RTT</name>
        <t>PATH_ACK frames indicate which path the acknowledged packets were sent on,
but they could be received through any open path. If successive acknowledgments are received
on different paths, the measured RTT samples can fluctuate widely,
which could result in poor performance depending e.g., on the used connection control.</t>
        <t>Congestion control state as defined in <xref target="QUIC-RECOVERY"/> is kept
per path ID. However, depending on which path acknowledgements are
sent, the actual RTT of a path cannot be calculated or might not be
the right value to be used.</t>
        <t>Instead of using the real RTT of a path, it is recommended to consider
the sum of two one-way delays: the delay
on the packet sending path and the delay on the return path chosen
for the acknowledgments.  When different paths have different
characteristics, the delays can vary
widely. Consider for example a multipath transmission using both a
terrestrial path, with a latency of 50ms in each direction, and a
geostationary satellite path, with a latency of 300ms in each
direction.  The sum of the two one-way delays will depend on the combination
of paths used for the packet transmission and the acknowledgement transmission,
as shown in <xref target="fig-example-ack-delay"/>.</t>
        <table anchor="fig-example-ack-delay">
          <name>Example of ACK delays using multiple paths</name>
          <thead>
            <tr>
              <th align="left">ACK Path \ Data path</th>
              <th align="left">Terrestrial</th>
              <th align="left">Satellite</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Terrestrial</td>
              <td align="left">100ms</td>
              <td align="left">350ms</td>
            </tr>
            <tr>
              <td align="left">Satellite</td>
              <td align="left">350ms</td>
              <td align="left">600ms</td>
            </tr>
          </tbody>
        </table>
        <t>The computed values reflect both the state of the network path and the
scheduling decisions of the acknowledgement sender. If we
assume that the PATH_ACK will be sent over the terrestrial
link, because this decision provides the best response time, the
computed RTT value for the satellite path will be about 350ms. This is
lower than the 600ms that would be measured if the PATH_ACK came over
the satellite channel, but it is still the right value for computing
for example the PTO timeout: if a PATH_ACK is not received after more
than 350ms, either the packet or its PATH_ACK were probably lost.</t>
        <t>The simplest implementation is to use the the delays measured when receiving new packet acknowledgements
to compute smoothed_rtt and rttvar per
<xref section="5.3" sectionFormat="of" target="QUIC-RECOVERY"/> regardless of the path through which PATH_ACK frames are
received. This approach will provide good results
as long as acknowledgements are sent consistently over one path.
If at any time the acknowledgement sender revisits its sending preferences,
this can also change the paths that are used to send acknowledgements.
However, this is not very
different from route changes on a single path.
The RTT, RTT variance and PTO estimates will rapidly converge to
reflect the new conditions.
There is one exception: the minimum RTT, which is also
a known challenge when route changes occurs on a single path.
An acknowledgement receiver
can, however, remember the path over which the PATH_ACK that produced
the minimum RTT was received, and restart the minimum RTT computation
if that acknowledgement path changes or is abandoned.
If acknowledgements are not send consistently over one path, the
acknowledgement receiver can monitor over which path acknowledgement
are received and only use samples for acknowledgements received on the same
path than the data was sent, if any.</t>
        <t>Further, congestion control functions that rely on delay estimates needs
to consider cases where acknowledgements are sent over multiple paths
with different delays explicitly.</t>
      </section>
      <section anchor="packet-scheduling">
        <name>Packet Scheduling</name>
        <t>The transmission of packets containing data is limited
by the arrival of data from the application and by congestion control.
Generally, QUIC packets that increase the number of bytes in flight can only be sent
when the congestion window for the selected path allows it.</t>
        <t>Most frames, including control frames (PATH_CHALLENGE and PATH_RESPONSE being the notable
exceptions), can be sent and received on any open path.
As such, a packet scheduler is needed to decide which path to use
for sending the next packet, among those paths with an open congestion window.
If multiple paths are used to send data frames belonging to the same stream,
data delivery will experience the maximum delay of all used paths due to in-order delivery.
The scheduling is a local decision, based on the preferences of the application and the
implementation.</t>
        <t>This implies that an endpoint might send and receive PATH_ACK
frames on a path different from the one that carried the acknowledged
packets. As noted in <xref target="compute-rtt"/>, RTT estimates computed using
the standard algorithm reflect both the characteristics of the
path and the scheduling algorithm of PATH_ACK frames. The estimates will converge
faster if the scheduling strategy of PATH_ACK frames is stable.
Implementations can choose different strategies such as, for instance, sending
PATH_ACK frames either simply on the path where the acknowledged packets was received,
or alternatively the shortest path, which results in shorter control loops
and potentially better performance.</t>
        <t>Since packets that only carry PATH_ACK frames
are not congestion controlled (see <xref section="7" sectionFormat="of" target="QUIC-RECOVERY"/>),
senders should carefully consider the load induced
by these packets, especially if the capacity is unknown on that path,
e.g., when that path is not used for sending data frames.</t>
      </section>
      <section anchor="retransmissions">
        <name>Retransmissions</name>
        <t>Simultaneous use of multiple paths enables different
retransmission strategies to cope with losses such as:
a) retransmitting lost frames over the
same path, b) retransmitting lost frames on a different or
dedicated path, and c) duplicate lost frames on several paths (not
recommended for general purpose use due to the network
overhead). While this document does not preclude a specific
strategy, more detailed specification is out of scope.</t>
        <t>As noted in <xref section="2.2" sectionFormat="of" target="QUIC-TRANSPORT"/>, STREAM frame boundaries are not
expected to be preserved when data is retransmitted. Especially when STREAM
frames have to be retransmitted over a different path with a smaller MTU limit,
smaller STREAM frames might need to be sent instead.</t>
      </section>
      <section anchor="pto-expiration">
        <name>PTO Expiration</name>
        <t>An implementation should follow the mechanism specified in <xref target="QUIC-RECOVERY"/>
for detecting packet loss on each individual path. A special case happens when
the PTO timer expires. According to <xref target="QUIC-RECOVERY"/>, no packet will be declared
lost until either the packet sender receives a new acknowledgement for this path,
or the path itself is finally declared broken. This cautious process minimizes
the risk of spurious retransmissions, but it might cause significant delivery delay
for the frames contained in these "lost packets".</t>
        <t>Endpoints could take advantage of the multipath extension, and retransmit the content
of the delayed packets on other available paths if the congestion control window on these
paths allows.</t>
      </section>
      <section anchor="paths-having-different-pmtu-sizes">
        <name>Paths Having Different PMTU Sizes</name>
        <t>An implementation should take care to handle different PMTU sizes across
multiple paths. As specified in <xref section="14.3" sectionFormat="of" target="QUIC-TRANSPORT"/> the
DPLPMTUD Maximum Packet Size (MPS) is maintained for each combination of local and remote IP addresses.
Note that with the multipath extension multiple paths could use the same 4-tuple
but might have different MPS.
One simple option, if the PMTUs are similar, is to apply the minimum PMTU of all paths to
each path, which could also help to simplify retransmission processing.</t>
      </section>
      <section anchor="idle-time-close">
        <name>Idle Timeout and Keep-Alives</name>
        <t><xref target="QUIC-TRANSPORT"/> defines an idle timeout for closing the connection
which applies in case of multipath usage
if no packet is received on any path for the duration of the idle timeout.</t>
        <t>This document does not specify per-path idle timeouts. An endpoint
can decide to close a path at any time, whether the path is in active
use or not. For example, an endpoint might wait to send
the initial PATH_ABANDON frame until it anyway sends another frame.
Note that the receiver of an initial PATH_ABANDON frame is, however,
required to immediately reply (see <xref target="path-close"/>).</t>
        <t>If a path is not actively used for a while, it might not be usable anymore,
e.g., due to middlebox timeouts. To avoid such path breakage, endpoints
can send ack-eliciting packets such as packets containing PING frames
(<xref section="19.2" sectionFormat="of" target="QUIC-TRANSPORT"/>) on that path to keep it alive.
However, this specification does not recommend sending keep-alives as it can
create unnecessary overhead, especially if there are other, actively used paths.</t>
        <t><xref section="5.3" sectionFormat="of" target="QUIC-TRANSPORT"/> defines an optional keep alive process.
This process can be applied to each path separately depending on application needs.
Some applications could decide to not keep any not-actively used path alive,
keep only one additional path alive, or multiple paths, e.g., for more redunancy.
As discussed in <xref section="10.1.2" sectionFormat="of" target="QUIC-TRANSPORT"/>, the keep-alive interval
needs to incorporate timeouts in middleboxes on the path.</t>
        <t>If a path was not actively used for a while and no keep alives have been sent,
an endpoint can probe it before switching to active use if there are still other paths
that are currently usable.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document defines a new transport parameter to
enable simultaneous use of multiple paths within one QUIC connection.
Further, it specifies new frame types for path management and new error codes
when a path is abandoned.</t>
      <t>The current draft defines provisional values for experiments,
but, if the draft is approved, IANA is requested to allocate short values
as permanent with "IETF" as change controller and
the QUIC WG as contact to the respective registries under
<eref target="https://www.iana.org/assignments/quic/quic.xhtml">https://www.iana.org/assignments/quic/quic.xhtml</eref>.</t>
      <t>The following entry in <xref target="transport-parameters"/> should be added to
the "QUIC Transport Parameters" registry under the "QUIC Protocol" heading.</t>
      <table anchor="transport-parameters">
        <name>Addition to QUIC Transport Parameters Entries</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Parameter Name.</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">TBD (current version uses 0x0f739bbc1b666d0d)</td>
            <td align="left">initial_max_path_id</td>
            <td align="left">
              <xref target="nego"/></td>
          </tr>
        </tbody>
      </table>
      <t>The following frame types defined in <xref target="frame-types"/> should be added to
the "QUIC Frame Types" registry under the "QUIC Protocol" heading.</t>
      <table anchor="frame-types">
        <name>Addition to QUIC Frame Types Entries</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Frame Name</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">TBD-00 - TBD-01 (experiments use 0x15228c00-0x15228c01)</td>
            <td align="left">PATH_ACK</td>
            <td align="left">
              <xref target="mp-ack-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-02 (experiments use 0x15228c05)</td>
            <td align="left">PATH_ABANDON</td>
            <td align="left">
              <xref target="path-abandon-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-03 (experiments use 0x15228c07)</td>
            <td align="left">PATH_STATUS_BACKUP</td>
            <td align="left">
              <xref target="path-backup-available-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-04 (experiments use 0x15228c08)</td>
            <td align="left">PATH_STATUS_AVAILABLE</td>
            <td align="left">
              <xref target="path-backup-available-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-05 (experiments use 0x15228c09)</td>
            <td align="left">PATH_NEW_CONNECTION_ID</td>
            <td align="left">
              <xref target="mp-new-conn-id-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-06 (experiments use 0x15228c0a)</td>
            <td align="left">PATH_RETIRE_CONNECTION_ID</td>
            <td align="left">
              <xref target="mp-retire-conn-id-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-07 (experiments use 0x15228c0c)</td>
            <td align="left">MAX_PATH_ID</td>
            <td align="left">
              <xref target="max-paths-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-08 (experiments use 0x15228c0d)</td>
            <td align="left">PATHS_BLOCKED</td>
            <td align="left">
              <xref target="paths-and-cids-blocked-frame"/></td>
          </tr>
          <tr>
            <td align="left">TBD-09 (experiments use 0x15228c0e)</td>
            <td align="left">PATH_CIDS_BLOCKED</td>
            <td align="left">
              <xref target="paths-and-cids-blocked-frame"/></td>
          </tr>
        </tbody>
      </table>
      <t>The following transport error code defined in <xref target="tab-error-code"/> are to
be added to the "QUIC Transport Error Codes" registry under
the "QUIC Protocol" heading.</t>
      <table anchor="tab-error-code">
        <name>Error Codes for Multipath QUIC</name>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Code</th>
            <th align="left">Description</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">TBD-10 (experiments use 0x004150504142414e)</td>
            <td align="left">APPLICATION_ABANDON_PATH</td>
            <td align="left">Path abandoned at the application's request</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">TBD-11 (experiments use 0x0052534c494d4954)</td>
            <td align="left">PATH_RESOURCE_LIMIT_REACHED</td>
            <td align="left">Path abandoned due to resource limitations in the transport</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">TBD-12 (experiments use 0x00554e5f494e5446)</td>
            <td align="left">PATH_UNSTABLE_OR_POOR</td>
            <td align="left">Path abandoned due to unstable interfaces or poor performance</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
          <tr>
            <td align="left">TBD-13 (experiments use 0x004e4f5f4349445f)</td>
            <td align="left">NO_CID_AVAILABLE_FOR_PATH</td>
            <td align="left">Path abandoned due to no available connection IDs for the path</td>
            <td align="left">
              <xref target="error-codes"/></td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The multipath extension retains all security properties of <xref target="QUIC-TRANSPORT"/> and <xref target="QUIC-TLS"/>
but requires some additional consideration regarding:</t>
      <ul spacing="normal">
        <li>
          <t>potential additional resource usage for per-path connection IDs and multiple concurrent path contexts;</t>
        </li>
        <li>
          <t>a potentially increased amplification risk for denial of service attacks if multiple paths are used simultaneously;</t>
        </li>
        <li>
          <t>changes to the nonce calculation due to the use of multiple packet number spaces.</t>
        </li>
      </ul>
      <section anchor="memory-allocation-for-per-path-resources">
        <name>Memory Allocation for Per-Path Resources</name>
        <t>The maximum path ID limit in initial_max_path_id or MAX_PATH_ID frame
limits the number of paths an endpoint is willing
to maintain and thereby also limits the associated path resources.
Furthermore, as connection IDs have to be issued by both endpoints for the
same path ID before an endpoint can open a path, each endpoint could also
control the per-path resource usage by only
issuing connection IDs for a limited number of paths. However, using
the maximum path ID limit in initial_max_path_id or the MAX_PATH_ID frame is preferred.</t>
        <t>To avoid unnecessary resource usage that could be exploited
in a resource exhaustion attack, endpoints SHOULD allocate additional path resources,
such as e.g., for packet number handling, only after path validation has successfully completed.</t>
      </section>
      <section anchor="denial-of-service-with-multiple-paths">
        <name>Denial of Service with Multiple Paths</name>
        <t>Path validation as specified in <xref section="8.2" sectionFormat="of" target="QUIC-TRANSPORT"/>
for migration is used
unchanged for path initiation in this extension.
Further, the multipath extension allows for the creation of multiple paths, which means
that in addition to the security considerations
on source address spoofing outlined in <xref section="21.5.4" sectionFormat="of" target="QUIC-TRANSPORT"/>,
there is a risk of amplified DoS attacks through simultaneous opening
or migration of multiple paths. For example, an attacker could set or spoof the
4-tuples used in multiple paths so that packets sent by the server would
travel through common network paths in an attempt to overwhelm a target.</t>
        <t><xref target="QUIC-TRANSPORT"/> only allows the use of one path
and the number of concurrent path validation attempts is
limited by number of issued connection IDs.
This extension, however, allows for multiple open paths that could in theory be migrated
all at the same time. Further, multiple paths could be initialized
simultaneously.
The anti-amplification limits as specified in <xref section="8" sectionFormat="of" target="QUIC-TRANSPORT"/>
limit the amplification risk for a given path,
but multiple paths could be used to further amplify an attack.</t>
        <t>Therefore, endpoints need to limit the maximum number of paths and might consider
additional measures to limit the number of concurrent path validation processes
e.g., by pacing them out or limiting the number of path initiation attempts
over a certain time period.</t>
      </section>
      <section anchor="cryptographic-handshake-and-aead-nonce">
        <name>Cryptographic Handshake and AEAD Nonce</name>
        <t>The multipath extension as specified in this document is only enabled after a
successful handshake when both endpoints indicate support for this extension.
All new frames defined in this extension are only used in 1-RTT packets.</t>
        <t>As the handshake is not changed by this extension, the transport security mechanisms
as specified in <xref target="QUIC-TLS"/>, such as encryption key exchange and peer authentication,
remain unchanged. As such, the security considerations in <xref target="QUIC-TLS"/> apply unaltered.</t>
        <t>The limits as discussed on <xref section="B" sectionFormat="of" target="QUIC-TLS"/>
apply to the total number of packets sent on all paths,
not each path separately.</t>
        <t>This specification changes the AEAD calculation by using the path ID as part of
AEAD nonce (see <xref target="nonce"/>). To ensure unique nonces, path IDs
are limited to 32 bits and cannot be reused for another path of the same connection.</t>
      </section>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <t>This document is a collaboration of authors that combines work from
three proposals. Further contributors that were also involved
one of the original proposals are:</t>
      <ul spacing="normal">
        <li>
          <t>Qing An</t>
        </li>
        <li>
          <t>Zhenyu Li</t>
        </li>
      </ul>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thanks to Marten Seemann, Kazuho Oku, Martin Thomson, Magnus Westerlund, Mike Bishop,
Lucas Pardue, Michael Eriksson, Yu Zhu, and Gorry Fairhurst
for their thorough reviews and valuable contributions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="QUIC-TRANSPORT">
          <front>
            <title>QUIC: A UDP-Based Multiplexed and Secure Transport</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <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"/>
            <author fullname="S. Turner" initials="S." role="editor" surname="Turner"/>
            <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-RECOVERY">
          <front>
            <title>QUIC Loss Detection and Congestion Control</title>
            <author fullname="J. Iyengar" initials="J." role="editor" surname="Iyengar"/>
            <author fullname="I. Swett" initials="I." role="editor" surname="Swett"/>
            <date month="May" year="2021"/>
            <abstract>
              <t>This document describes loss detection and congestion control mechanisms for QUIC.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9002"/>
          <seriesInfo name="DOI" value="10.17487/RFC9002"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6356">
          <front>
            <title>Coupled Congestion Control for Multipath Transport Protocols</title>
            <author fullname="C. Raiciu" initials="C." surname="Raiciu"/>
            <author fullname="M. Handley" initials="M." surname="Handley"/>
            <author fullname="D. Wischik" initials="D." surname="Wischik"/>
            <date month="October" year="2011"/>
            <abstract>
              <t>Often endpoints are connected by multiple paths, but communications are usually restricted to a single path per connection. Resource usage within the network would be more efficient were it possible for these multiple paths to be used concurrently. Multipath TCP is a proposal to achieve multipath transport in TCP.</t>
              <t>New congestion control algorithms are needed for multipath transport protocols such as Multipath TCP, as single path algorithms have a series of issues in the multipath context. One of the prominent problems is that running existing algorithms such as standard TCP independently on each path would give the multipath flow more than its fair share at a bottleneck link traversed by more than one of its subflows. Further, it is desirable that a source with multiple paths available will transfer more traffic using the least congested of the paths, achieving a property called "resource pooling" where a bundle of links effectively behaves like one shared link with bigger capacity. This would increase the overall efficiency of the network and also its robustness to failure.</t>
              <t>This document presents a congestion control algorithm that couples the congestion control algorithms running on different subflows by linking their increase functions, and dynamically controls the overall aggressiveness of the multipath flow. The result is a practical algorithm that is fair to TCP at bottlenecks while moving traffic away from congested links. This document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6356"/>
          <seriesInfo name="DOI" value="10.17487/RFC6356"/>
        </reference>
        <reference anchor="OLIA">
          <front>
            <title>MPTCP is not pareto-optimal: performance issues and a possible solution</title>
            <author initials="R." surname="Khalili">
              <organization/>
            </author>
            <author initials="N." surname="Gast">
              <organization/>
            </author>
            <author initials="M." surname="Popovic">
              <organization/>
            </author>
            <author initials="U." surname="Upadhyay">
              <organization/>
            </author>
            <author initials="J." surname="Le Boudec">
              <organization/>
            </author>
            <date year="2012"/>
          </front>
          <seriesInfo name="Proceedings of the 8th international conference on Emerging networking experiments and technologies, ACM" value=""/>
        </reference>
        <reference anchor="RFC2475">
          <front>
            <title>An Architecture for Differentiated Services</title>
            <author fullname="S. Blake" initials="S." surname="Blake"/>
            <author fullname="D. Black" initials="D." surname="Black"/>
            <author fullname="M. Carlson" initials="M." surname="Carlson"/>
            <author fullname="E. Davies" initials="E." surname="Davies"/>
            <author fullname="Z. Wang" initials="Z." surname="Wang"/>
            <author fullname="W. Weiss" initials="W." surname="Weiss"/>
            <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="RFC9743">
          <front>
            <title>Specifying New Congestion Control Algorithms</title>
            <author fullname="M. Duke" initials="M." role="editor" surname="Duke"/>
            <author fullname="G. Fairhurst" initials="G." role="editor" surname="Fairhurst"/>
            <date month="March" year="2025"/>
            <abstract>
              <t>RFC 5033 discusses the principles and guidelines for standardizing new congestion control algorithms. This document obsoletes RFC 5033 to reflect changes in the congestion control landscape by providing a framework for the development and assessment of congestion control mechanisms, promoting stability across diverse network paths. This document seeks to ensure that proposed congestion control algorithms operate efficiently and without harm when used in the global Internet. It emphasizes the need for comprehensive testing and validation to prevent adverse interactions with existing flows.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="133"/>
          <seriesInfo name="RFC" value="9743"/>
          <seriesInfo name="DOI" value="10.17487/RFC9743"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA829224cWZY2dr+fIkxdNPk7M5ukDlXS3z1uFsWqklsHjkhV
T7mnoA5mBsloZUbkRESKYqs18I0B3/rOvvGFDRgw4Ccw4Jcx/Bv438LruPfa
OyKSVE8P4AJmWszMiH1aex2/tdZ0OnVd2S2LZ9mrzbIr13l3nZ186oqqLesq
u6yb7B/fvTh2+cVFU3y0P6KPF/W8ylfw8KLJL7tpWXSX03/ZlPPpSn83PXji
FnkHP/n8/Oj85Iubwx9XdXP7LGu7hXPlunmWdc2m7Q7395/uH7q8KfJn2XmT
V+26bjp3Uzcfrpp6s35GQ2Z/gL/L6ir7AT9zH4pb+MHiWfai6oqmKrrpc5yJ
c22XV4v3+bKuYOjbonXr8ln2x66eT7IWXtsUly3863aF//jFuXzTXdfNMzd1
WXa5WS5pVfBv/O/Zs2znP/33/+N/+r/+t//3f/nvduTDvJ2X8Madn/NqVZTZ
y3KD3zQ17mSxKLu6gT/r5upZdrQsL/KLHGY4n8FnxSovl8+yVZnXfy5ny9vV
73L+wbSEH8zrFc0hnQTO4T//7//H//N//g//+X/9n2UOfgqb6hKm8Cqnz2nM
dxdFk50X8+uqXtZXZdHq6Dr8LT0zW+W/28BPw7Bl1cI+z7LnRXZcVzCjD/gp
n/E/boqqK6vku2TJMn5Vfiyatuxus/oye1VXbbb77tWb12d7Zg7/wu+bLYo5
v+53mxX8cpbPZxeFmc6bWfZdXeUf4debpgjzebMsP5awzuRLnsDxy3rzMYfZ
AhnATrQt0FVrBq/54dlFePh3m/mSH4rHP55lP27KDh4MYx9fN2XblXllv6KR
T5vyI5B49mbe1etNb+Ov+ee/k/+dAcmaoV7Nst9viutlcVNWizDaq7L5c558
M7jvJ005b9u6MgOu8NnZB//s7wr5DR26c1XdrPIOjgspDW/Y9Pzt0euz0zdv
z59lzeX86f7+vv/m5Zl+dqCfvT05fvPTyduf9YtDuNPVpX3p2++Pnzx8/AT/
+ebliyOmaGE6O69Oz49Ps7LNqrrL1nBIXT2t1125ymHu66KhN1XzAn7SboCO
4Thdnq3rti0vlgXc5eWmA07FV4IZzc7h/sEhf9DCYosW5wMfnzb1vIANq65a
pMruusi+BUZWEufI8S35MgNSvCyaAkeEbTxZFc0Vchs4phthPMUnmFa5Apqh
2WSduWaT7Oj4FQ+tHAX/PRWmQWf8Fs74Gu78sux/93qW/ZC3Xf8LIIzTel1/
LOf9797NsnfrfHF9m9/2v/yvZ9OfZ9nLAm7JBi4aHPh0Os3yi7Zr8jnwyfNr
2Htg4xtcUNaui3l5ifwizzwLhxVbeYD7Rpx43dTAT+tl1tWuqHI8DvyuLfHJ
vCpqoP5Nm18VuNv8NvgJvrGlF+Xw0+oKPoI9r4o5HsCMp7cqF4tl4dwDZOtN
vdjQl1smW5k5djVPjxgQ/H2Qff4c0/WXLw5+9G+ZsgtTnsADSBb0HritcBGz
RXlJRNRlj6bdBl4B7A9e2NabZl78elEA52CCcyjismqzAibM1NT/TfbiNMsX
C2BfbdHuwQ4d+7Fho64a/lHe+v1YwMnDms/kN09xLb0NWJQNfI/nvC6Ah8J+
tDdlN7+GK1MteD0gYK+u4bJVxQ2cdQErauDduBkTnOokK2FJm/kcJgbSaoLv
aIplkbcF/C+vo3U5sJp5CfdykcH7r2mb6iW/Zpadw19DdBYtpbOn7i425XIB
F1g+X8Hty6uyXWUXmw7vMpELETC9s1ygkIFXNRM8GfrsxfMJEgDwFTzpcJTw
BR/COp9/KPRcYDI5vhBuvSyeKEfPfNMWrk8slqKWtzMk3WQkPJVcR7oAxtzS
6+QDmF7uJ8ts5hooCmiwcPJdb4q4nXkHOwKqU1bkcJbxgLBb6WkUn4AJLEFI
V4WO5nAf/WrSzWlwwZt8Cc8QQ17QtaDB5PkZLZVugnyCA8Mu0Vle1PAR0x68
E1WwLm863Euaz77nMGVVgnhdMp24U34TT+CqqIqG1gDqArCgqpzzhKo56I50
GXHD5nmFMuUCqRGHnwn/CFQGn7b24PqHPqGdiZY4cydmtVOh1PnQ47w4mHSX
fLs/c0ct3h0kJv82kNdVB/8HxI66RTVPH4PXdQUzIr2luFDYzAKUGfiLfw6z
Bm5APCC99jP3jvZn66KFM7ZyTrhNIi/dEuRutig6IQna5rq6QmYFf8I/4fot
w53E316WFR29k9movvDlC95hZD/NlJZ/AUfXztyP9U3xEW+rDLt9qk0B5gZq
dlVdTf9SNHVKsbANYB8whxNecCsXDcaUi4X8ao0PfSzc0DnCdt4UyyX+L8jF
esGs6ejk6DlQ2XK+WTIPhiNbboR54ouY+nfbooCjgAnOiy9fkIH7s+9ierTS
d1GAMoRaaXbZ1CuWLkJqPFh96YRqkIuRQLyb7SecRHcvYybfqdGFihhc4A6P
oS9YKrDfvnwhfg9sC+dTuHazpgdFr/o6ng5b8v2mwWlN4i/MjuBbK9DeRALZ
ZRtyuxQW75h9yKnAnMkUDR/i9OGZBXFxmLMnwj71fP4Mn7UwnSnoprBZ03m5
gMddW16BvqjPR+JRVIgwMF1cHBO3H/THZTkvO9j9Vf0RWBw+T0KjQ/Z9DeYI
MK0C7sYF/LyudNvpTWChtAXe49d1V/ADupt+p2EY1oBA+4WbBLtZsHot62ed
B3klqSAih1CwkQjFKbR4uDC3EjVqoQ7eH3wKZnRxC5/OlyWfXsJX/YDzGscX
5QW5Gn1wS9sQDnCWHal64/RCglgCKQO3YF6qUtcWoEqhDO+KHBd1U8m2oUwA
wQZHtEDZCAyfjpZnSS9b447TasGUhDXGROanC6eIpiDY3nTx/IJauoOOeBlx
z0BwHTKcdRF0mwbNLvpVOwc+2pR1O07efmSm81t45rpYbIiq8uVV3cBbV0IX
zEnddX3jWeIkUTMymIndFBK6tHNep2lJ8sBcgLmyloqcRoQJ8uOwVcpbydKZ
uLqCAdoaxDoy6nlWrmAG+B3/+GoDtMJ2Gh30pm2VcPGXU7xEwH8buX6zlGZA
WuPJ0ZRpM4MOPb4pE1fMrmYTehh415UwS2VGyA0uwQgmKsR9wN0C8q1gt1yQ
all+ddUUV0TX8xz2Cd0W+bxBWQeKhdlV0m2Q2uD/5psGZwebUtXZi5Pz72P+
HJ2aWYIzSyBBHp/gLuyTf/OemBaxbgnkdKYjgdozyW6uS/jOL/QCTFVkH38o
p9+XdKFW9QX+QmzYlhRBEmjTDxVeo8CtcVPmoMBPHLABOvGuWMFeAh3Dv0lf
gncoiXXB6AGDnRXTj3W5YEGyAgURT3ad43Mzd2aNLMMmWZ2jlVyr7EdOD6pZ
3ZAGGgjHwaZukySZn0KFBwry3PoQHFAiMBbQj5hsbq5hm8AQLvIVug5yod2u
KYERwttpOxPFHmnTBdpcFMv8Fo/kwQN0iiH7oMPHbX9O/IL//vxg4f/6wtbA
h+I2Q99lm+28end2vjPh/81ev6F/vz0BHv725Dn+++zHo5cv/T/4Fw7+ePPu
pXyP/wpPHr959erk9XN+GD7Nko9eHf28Q8LI7bw5PX/x5vXRy53+XiKVMz8l
FwlwR9yUHJW6dg57xPv/3fFpdvAItLv/4u33x4cHB09By+A/vj345hH8gbvM
ko8Iiv8EwrlFZoOsHJ10y6WDq1d2+ZK11/YaCRMvG+ztH5S/851iNpujUgfT
vcxX5bKE13gWDHNdleSRuVW7ww2owtkf8PjjJTOFyzuyHTxy2Ci4CyTfW6Rw
UkRqUcGyHblURB073swZ0rzdg+DVzn6E/Wiv8w8Fbcxxc7vuajDl19fAWU9Z
Az1tatGzU8cHM5UtWptaT+9X+af3OLP3JYlGVdf43t6pss3cC9ANqlv9CYiJ
dV2i38sLrnwBd6Qr28IabXbYMD1nlMqOt96+UmmfeBAOetmwN8UFEz9YE6kC
+eJSjfFtKigyPmD1SMWXuE3X/hTmNYoz8ueIx4O0e+ZQJBQLEvYoDw6mb8/P
I1srYkiqgHuVn3iwalCtlXTbHiZ1LyhJTEEPBrc4kNWpp4DPD0hNZ1YzSibB
QMtRHC2X9U37zLnp4DC7Ipi8Z41uy/6n/ctvHj69uJgfXDx58mSxv9h7lqE7
/CMIDbQjp8uiuhI/6xWZVKTrqP8ERgDBsPLuh4y8eUIWOMObcsnOltpbyCh6
jKYe9Hr0tNNdAd11UwSaKj6h5zc7/A0Q/T88PPzNr/F/pweTaAY5Lh9+xc+q
I0LNuMUGuSHGeAqUEOy/YDcUMgRUfawt2Lf6zu+6IOZgluWq7Fp7p5zOUgxT
oHKj7RFftCrUYtOQvhT5Vr9HP8anfEWqY3k5OBvYu5b9TwcTZtixSdRz6K3V
NbNPrOwAWfdmuSCxwR4i0cLRzygcJZwv+y7YhXvfzaFh+ZD2J05fneUl6+PG
rzvEA/DpGmwAOm3258Mgso/lCowIXBz57M6KjlxTQxOLLhEqyjAhUUC8b8a9
Ovqn96dH5z++B/phdrb7+TO8hWzNdkofAXEE0UW6FC3Ne4iE64DarxSpjhHU
jnjaqNQ2oAx7ZoqkQFo//r4/CxIF5CwrBm+Ad+XJcd33ZPhQrsura1S4UVVL
b5wrWz3zxUQkOf3V8GUl+5bt00B2tD1INU1TE+V3t+vCeeEKi3t79Ork/OTt
+5O3b9+8RY0B5YvKJuU091zFJAglR3PC/T4jd7aodcE1fxy7C2ii3hPFfK+d
3WcTXURPukPePzXPm+Y2ePjI00aewjzDoYTFuuiqDm0v6rpi/pIvyzwQb+7p
2zfnb47fvHz/04s3L49QRWRn38DxYESiXOOJtxjTlF3IhScCN2g6pYaDQ2AG
+JPgmxUb9apA+5i16zFtJHtxyTcC5m0GZJa1hMmYDTM+yxFFQNQfJMNECckv
kB7wLUE/4DW5lAizbUQ4xvDDUXv5RE7qVYGcvVg4vOi4ABR0MM+LtqBQuT2t
3eDo+2b2aHYw5OzbY43hbSEiCW79G9rlAX2hlTvjg3sju8Zai3hogK7ehznB
0t6T3Bq6VAMKuBVyfeHGr0/9cRqDIe5otMGwG49nB8O7kb6KRCaaOCylWEmr
USKhl2/BNr7YnvgnzcdzxAEBhqYjSp73sjMhNjfEZNDALskFcFEuFgWdDjAW
DCy110ZbFIsDJdyvWkOQ4lSbZeovd/5pshFwCxeLUqLa/l01EQDLS+9021Uv
StOULK/xB//3f/s/tcGx+V5+voezNmKSvYS8LyTB2OfoDaneC4ZZLrsSWyeM
ITX3NBokb9dXeW+hX4owRmMjhNsm+lHicSEGhDfOU7wzl+vp7MnscORyvQvG
RvD/6tRikb6sQTf038GsLGVRUMETC7kgHTuPvB/1mpxbRh2dZUc+hhB0VFiG
S2QnfJq4S+55JjjLfeYgP6qn/Oj497TnpE3gH/DCfbKGSPXDfzHb8z8QrYeV
4dV6CuIrqD0aFwS1Gj6v6ptlsYBlRvbVzB2DaZY37MnE2fvXDsUm9NwOns4e
Dh0b71cyvXBRlrfOi1a7sUPBo62hP2BQ+vqW/UzBszmmmdo9kNXHVojVtyWG
GN6j5jxuasV+PTECIkk2McMwhqW+dC/keuEpBs+EzgE5YcveESUCXhiGsi5Z
uBeRLU1xMF2u9caOLN2qruLLQvkXHxNGY9quyBd4ruFT4KQ+7EYO1Tq7zIEB
VWY7F0KluiJeiNnJk1gDAAUP7Pw14oXgcpgZsNAw5xS/F4ZPiDcyuXLSyZET
kYWEBjrHY/qniCshrV7cIYvsQ1Gs2QmfhscTuhCgCnmFZ9lzpQFUeQi7woEu
xDDVCzafZFbAg647YQ4+bBCdNvCC16TVHRtLl10pgWyOvSsFnRBk/zpnBbS5
mC/PQDCHIF/wubDDsET7FlR4HIs5m+h1ol1OstcTXO6Kpda8Xl1w7MUgKdbe
jZa9+Mn5CxjdWfEFbg81a0RFTM7oJ4QzzW74WIFhX22AjVZdwTx7U5WowCEt
ibyg2Us0ASOxE+NFeE3yQTZYZBNTVbnVs4Vzc3fvgnvxUza8C7Tl/quHoKuX
nc7YebnzwgTU77XMSESh/Ud6H/PzHDU/MRvhmb5/Ziz6DGKmDptkB8uzp0+m
MHPm0bCkKS9yKosk4bta18iOZZqIWeoooEtBFeB08eIDkKXSIArZMbwRQA83
NZlh9IxH62RP4pc0CHNtu2ZDhgoj6KLtLyvXfztjpODM1ItG3oZ8mXlXNNIM
f0kWUsc/x33Omyu1vJ4+kcl56dXbGTqa4rKDTxeeeeOyvBLaln/xGs+Ln3hm
xSdgvi2q6m/ehu3CF7g+ccnc8MayfKULz5chO6r4Tx8gQ7nZFL1V8jzbdrtJ
6el4zJrBqGzEnFHl1FsDk2SihLH+tP/pycXhk4ODRxdP5xf54cWTh/nT4tvF
4tHln5QXeJzTnx7+KRBAcrzw7eNHDw8P/pTtXhdK9fD2xaOHB3/a41fxQtHl
Saoqe+LCDL61M9h/+k3xJ+bKvy9us9NrdOe8W1PI/lRk1+cHAYn/obidbuhr
cQuHp/C+8Fde6pXxzTMc/EnMv5kOJIoHj4M4LgnyCL/CGBe/F3H9RpcN+nkU
NZ1l39fql1OLEcdguo3na7RHH9cAoUdoqpTzwzzikLh8Z45pNrAlJZL+1dVS
wuiE+GDAlrHKwxrhLL4r5rnIKL3LHCKceCVBhk4AkUAg+CKSwQ4NMbhRrAAQ
mYd5Dr4A7UV43EdQvduHLCpESaOp1hQE9RvYS1gdorowbqbunQYxUTV7Mnlk
F29odGXYTmvYGbO5hPMsGZEEL0WMiwalYUtQw26L+Ybs+7B5rfVpPJk9jols
b+YdFCnNBLdET4m8yUtWpWB6xOTh8abgaHVL9414ZEvBNrhv5/A5+oZ3T8/f
7KnVEuYUDMEAYttz+aomZMLS89YWlotS3QcmyBMvZ+TvA6lNAbuXV4lmLk79
uroslV3Sr9edsTo/lhhNh9c6IUEOf/h9p4i2BqsFSZZ3NkSJu+v43vDlCDvE
ttL5Gx0PyUgx2+yFQRNEyVIcKkS5uZoFJeJL5hjeFKohcBHBmxAlkjcsaZjd
LZp6vVYFa35dl3MRN/GM/JnBzAjKANbropjWl5fPspeIRmzkzjmwGjdzsZvh
gPOLcikpKcu6NYBJAj6hgk0omOWC+IVb8rvwAimaAFGmhCEQX8cctOvuNpwH
A+KZlXgX5PjsNWQBlwh0or94iQGzE7pdiu9GgVGsLkbxIZ4PAi0C0oGEW2Ck
Qfd+FF+rEb7qOczEtSGekajH4uOIH75clmvaxR44RMJCJAKIRZKbzEBtAp16
b9UFrrT6QPEcRJyB6nnBLiCPuFA/xzHsGSYAueM3r1+fHKPH+v3xyzdnJ2q6
yQYCQYqEo1miSKhUJNH9GArdnyNaQd1H5F2rOC6uEbiZdT3sD3uMIjBj3jGR
Cx3i5BaNAMeM90YQvwrwWGPgtR1nacy6JUoLBLYzu5tpdoQFk4FkHDW0x8dz
IwTteaFClR5khN1+FeCanx+koW11I2gQPvVZKG4B4VM9U9myfZJ1iLkeAU4d
Gcct/pbOz6AbyVFDEPUQAiI8pkQy8495uSRqTJzJ0QahKbipeHdhSau6CmkH
eRuuxd3w+FmC/OBDJBLi5IaAchVh1cO5gl6Jkw9Y8U4gfdtgr/gyNwx83Zvw
0EgwIHkMDNfOQACve4Qx4hH4fka/EjDrngF934GPpANS4CmhQxeMy/DQVjgI
DlIJptXBBxYzOYiRNIh6MQtSjPEoUhtP89KzWu+ogiXyv798eebcfxBX1ndH
r5+/eR3tgYB8vVNUf/vd0fHv351GP70AtrtZTz0R9p45Oz86f3f2/uinoxcv
j757efJ1T78++cN7wzwDcn21nsINQQRnNS0Xvefenpy/eHsy+qgST/9pG5fW
3/di4zLK2fvvXr45/v3Jc7umloxYoIF2erGsQSb1J3f84vlXP4qShRNOwvXC
u/MT46HZsZVeNHJIJPxkEkWKfCyZfxD76AOqwmm0m1mIcfiHdznzrrH3eKPd
spo8sJpgUTgfbhakhp8yXbeS1XhKUIqxxGpL+CFQIdTLSergTY5MCx6juTrP
aGn+Hl9uAlwakBAFOqS53BJC06XowyB2vx2WuhO3qchbILh21Zk1csVbBROQ
TL3AEGgBuqpEWffuecnNcLLoOj7+MoqJGXa1kSi6/6kzv/u7bc7unbuz93fZ
nndVV7L1w9tgplq2zr9H4sbw4yn6XIIuwlFj0b78jAfTFgWK14/DtkSgubIk
+P3rsxOCbtJ2GsUtolinN0JBSpJ+J6aXxBJ9zOgY8bcnr38QrRJ2r01hVskt
jOOAAVhzHs6b/e5yCaPIT57dwmRiRpBJaBDlogardN3J9GbZ2ca7Q1jc0WEI
XXqVFhRi0ATgyMVUAyZ0BVPB1/Lvo9XB5CkDLmZs+bKtLdGiLch2zWYVOTtf
nb/Dkz043N8Xz50FY7haOROnh5YeL4mZMBrRiqIfHwNbJjGOEUyKTLP7pLyk
uzVEcZLv0TKLo1cub7dFFeEWDYMLkEUYYqTle2SA4ZZG1ySVX/Ub5JMRAsBJ
7Fo8vp/W7PDBdBMPweGsudvAByItw5HUkng/C6PeuuKUov4SkCNU9SAWQ3iA
TrJu3BKW2QrAQPN/STUzYAHyZlyhHmhzitAwdGSym+zjIr7KcAuQyRjfkh+D
8n9UrZk5dAGIA0CuFtubykg5T3ldiIWaXBzK0KKCEBQNJnEXb+wE944dJnMF
0JFJCcRZJE7TBM4rW02AYgQYpgHOkTi53ADQpDYNsiOxPpn5iss/hOQNaENs
6EHOl4kpYsOk6rKXeaA9tulA/+86mDRl03Aek8/22SMOK/O7KKoCDydfUhrW
BnOw/N75YLtniPHx8pd8v11yr5nbm3tOWefFQsIZIntxFsgPy4qQul7G+m0y
L8BkmfjpCH7ub5fkEXOqHsPSxfDpK1qpRZZ3mDvTacJVFjFx9FtVtzc5XQlK
XWMVIGaqmiqINye69r3L7HqX+YFqsScRLuiE4x2wowLA57/h8BBiyu4fSaZj
HhCbw5Se6P3tizFco4/oeaP4cCJ3htLTXfJWPDvc+AAmniD+GLf/cJb5XEef
U7tP01xiFsitVUnSvHH3r//6r1gN45gP+av/OyMJ7fAVu6dN/RH0N+Jbx2r0
04QO+EbCXlLetiAL9qnWDUVu//hPvzzLnsNDvz2DhQ1bW388hgWfFf/yW/wF
PA8/Pvglm07/wZn5/GY6lTf+rG883p+4kdlnY0OdDQx111vgBv9RfoyPvf7t
P/0yMrP/8sDMbXQKhzqF8XHv8Z/M6JDmMptRpZ1ddgGpKBkWvzEE5MCc1b4/
q4NJIh3gHKMTCYv2Dx3rQ8rZ4Jnea37ettv3OYEDOoH9X8KsD3qz9hNIRxt7
2QQ3kNZH1+bzs+wBCOupcAjyAdB+Ueme3+4IJ+FQl+xqhEHc+UJc5vPnobeo
7znwgMuyAT5RfGJvLNmKo/62WIj0PReinWNSi0gsZKV5gIsOubZmzBNJ35Kg
sBEQa77+Lbn3YlVo9/iAkcuBnJh3iYLvH0WgQJJOsXt2EON3hO2dHcYfH+5R
dJEMPzMr9Di0lq4jfVDEOYl+sdbEvTBszpjk7/l1Mf+ADoCOsfwc23PBLzGk
DYp6kRgs4RR9IQ3EPva2O4JaHHi3KIuNUhynK1DL0Ns8NgaeOSItQOmsFttP
+60v+oBav9Ukruta8avxMs8O1IM7mgXgsS+RU7mn16ammjUIQTulfDN7VF5R
Yr1qkVwB1K+YpQ1M+E5j9EECE8doqHqMXyky1YK4no5grE39Hdm8eUHxSrez
5nfu0Et3MEnCfyL4suxoyPxuvQ7h8OYNPMlBwPgLjem/uk+BpJF4DcVR2a1M
wKpUoMgEqTxYGFt1eS9udr0DZE98PdehxElUOcp46URb95WSAjp/BP3lwYQm
rWatWapsLeCsJ67CNLqOLeNMTyXbQds52sJJIjA1q6O4mQSMpb2DLtSZCCFS
GyuQiaiW5NTG9xi4kPWZxtqGphG2q6MnKcoIW7ekEFS71dkEfDcO7h8ezA7G
Mgf2QhpOr9aNk0hsbA2jRSolZajuUBR3ojCoens8j5Z1RbfXxUYGIQQ4p11W
HgBS/JZftd5P5w8DDnt+bV14LlQusEgpkQ/kaia/i/rNOin5kcviPFSd5Ovo
nRqBX3sWxGC4XH0NDoOGiZS3mYzx0Dq5QeamAVDdJQviuygoLkjvoaNB1ifl
R6yD/7z+UFRcqecrF2gcuYnnRnwJQLpO3aPGJO1wRMZEihgKYSV6p6+0Fnm8
LsWtLs/4tJDzIM4IXqEE1yLnIfggDNcK8FWzEXAs9WjSDygVaTADqSVlgf0r
F1xLBGG6AebNg6MnYF2CJoEf7TT48x1ZKseKfVyOJ5TVFyF/Iw8IF5tuZpZG
aNIP6FnqkCUhjCTHwST00eEpX92Ou/MORk7RlbNiNgkzX6IJ68MkNFXYYq01
IaUpSdBLIgtcuw98M3dumholEuNZMLtcqENj7fiwrt4nJWEdkgtWrvW0sXZI
dZtifyJHvc+DQZiuguIpT9R/4xM/iUE6C4vx2TZ8PorKgVuIRCchI66Nw6WC
5OdzRKsQKFsRp7Q/WvQmlIbxVM5p9cLkL+tNdd+DSfJRkvTLzw8GFD13p+hk
UHfs4rAOpBEbwyfCDAZAWQvoFV0IhcZMbolJfrR+Jb50sG+Cz01E1mimGxof
6naJQEQqZDxj7Hye7n5c1o6sAMIu31RpNlE8K6mQdnNdt8H54rGzmEB0kqLy
KFTg8zsGN9Zt2dgBR08vM8bgCTwQa/gEh8ZAhDGngHD4g3zCfhVYm0YgpHOG
ISOARs47bxPoZFfbeZG4eSF4jNfoSIqtQWfR9cuiC05rCi37tMCJeOpMXReZ
Ui4GjWO+EoFSjnsmGxljiSm1WQv/dBq+UZYjUUhRhjinLSnfIOoVe2yJ+CrE
neateMhUC+pFPni6Q7Ca5dLFM6TFh5I3wejgCmPkAQZ+5oRjKfxFyqxxGcke
gMbUwtsG8unp6rWAdlB+tghfbgg9hfwOpIgkbAztER7fod/MEHLXiLk4DVJ/
AU6CsoBMyU4cEX/KJbD++Y8Hk+zwn3+hbRLUHedHG+N6V9NdySeg/oUzmBjw
cDSHe1haYa1hD0lAy3ajiL7J4TGWmygJHReYE9XNJKrGbl+cAytJHJdhLaUH
kGidOlv7Hnbha2U15asj910n6rhyR1Zvuml9Kb9ZFMuSStHpa5PgwIYKD8Vx
zlCfk3U8EnoJjXgdgaLZyEHp9kYVRCcqx8Wz0Xn3d+QqiEAWop3/xwxlADHQ
SBAMy8p3XKlVmQUQaNl43kXEFbEHky/cc+6Qeu4vYTuJq1LsbiqCiPDTe2k2
awTtfmqh3XGy+lFw141obCNLTWkl5IIIcG/FbjOE/Kkiohc5PJpgbBkbiilN
4eZTrT9hh6YEtMPycc1iaVKfjBwPfpYkzZCYF/G9Pr0nxVWuyAhjYU2BolfC
Uxio5IscZ/D/lrRpvaof7RaQlazPh23uW/ADGFxVDxQYucnNVbhFR8zbAF3P
bSQw90uzobF+YQpraroIX+fLfRjxckn1lEuNYAOLqbCYteHtsUhpKR9fOF1R
MgmyuXZ39RRrlBNrd7t0kTXPTaAlnGW5lxGuI8a00Xvd/eBpPDwCvU1EGw1o
ZDZq+kb4BgGwaMHP1EGp/r+6k0wF1IpQf+5r2HEe58GY30wUXjVnDG6NYrQh
mT2pT63112oPXAjnBQzKGUePzW02tiHJXw5rDpWddRG8tFf4g+Rqg/tQ2Els
R+r13KnZO81R3QoKchacQc4csbeS0gBezJEMSwDLAtROXEwKqJFcJzaGaOvi
GXEqCF8QdoywKaRKybAbQ2SHQy81qP5cHnSLe3WUUEwRbLovJhfmLsMqQlY6
RcebAO2g6iZClAvXk36P+6lu2G2hpJaYDBbRLKlCbtgPtZnpHvpAzwAWPHHt
qWFmmEdr/MFjppHgEBXETcV7K3ITJ7V/IuTp0c/EfZyGff4GUCyWCzPa6egl
Rr9AVbvRIFFuXI2lUbbh6mqNXJBw0dRJ3bFAnGj+EgKIpufSe4IULWCmtKJ9
FJzy4S0fykMOmmHFsCu+6mNyl0UnZ4CTYkQnHGp0AQG9jbD3PXEPxBDqz9hY
mJNwiJqVPh836SfAxpZhKrYLg0U3RpZ7OYpl8ThFL2MEZWnQO2MXlFRazKjy
6iwhVA26L1wdrbgTL+dGkZloYW1IkjsFEptcoS1hSOMlx5rUVJO5ngV49xmH
JfqpKZy94HrpIkSDFmkvIP08+TgA8I3i5e7C4Y8J9mDGuSHwtfHsiF9Q+9cA
kyKfn2og3kthq4dbPsHeXCRCdj37eVApIF/qUwpCX1Ah7fBWrhNCbBVd2FjZ
VTJmY/+BmaFaaeQPVHuLFh50CLKhRh7Bn1H1ag5nyDihxhH6in1HDOY7BTZa
4RgM+fkCJfEbw1ADBv/MPbfFsvE7qhvMqt2vWl+vvJVMFt7RJeZSEe1KZxk+
s7jcuwVVtdkOk8mOLZ6INxwjdP41VI2b3DCw+MDIlN8Mk2SqnXlWvOPfsKN2
PFLe5gpDXsRVA1nyPVQHIfY+mlOEY73k8l8YDNBksK3zkhsURjFzEt8FaWWa
1o/Jo7QzOkV6ANi6DOpC9cmAevTy5jJCxEbyhy7xpmUIKWLLgYw9mkXNXq4X
Zs+JJ6NGcVVHddBFHVhgRblN5zQ5PSxNVhV7XtimErHmE990U1IqjU0tlrBz
uKd5WZnMgvgC+XM0tYKCzke1YLgAN6WFY9IC1nxnVgzWDR85Ov/44EsTX+st
LIXpc0cUDTKZ7XMXkjovVht3GSl8dCVid6u8+SAXJaLa1ClKEoPrGiix+oh0
kYUWDlxoM9LlKLRjVbKLhmIXzAd6UGmerm87dAHG1gcNcpACM4rldKMQ7rh6
lsV37kV9TWiqTmSFeJxQ9ursy05c2KzngF6K0p/aPWlp/OgoPKjYFnyOvLUJ
CN1AvMkSUKGM6b1urhTRFFNzoybZ6YvXP6jswG1a1+RCIm4WKkNm2E/yAyUn
4A47+25RQ6VzFvevogAg+SbRTsSC47n2XxpmiKn0FpYkE2uvCV4uiZyTkDI5
GAdxUkhhzjsO9IUKIFx+js/5xnjUpCN4u5KUpq16gnROKFtth8K6nZSO0AR8
6+zULglo9YQyXkm6tdGLjulwRRdiggNdyNje4li3PdCKyFOKpymMA2u7cYqj
7zJyGcqumBi3HmUpzCU+aCyHRSzHyOeBW+jtk3jMFE3t7ptEMXAD04TNcB5d
syksYi7qXpKMCIrZZtm1jt3EK56YMCSp+8vGf4kgetz1KRWm4Ingh1P6UPkB
u8e1eAB6UUzPosvINJBojI4Rklwd1UXATfaGgzEA2mABDG+SKTAbYzlc3zHu
uWxaZTsIVyGyaKA8Kj3pxHAQrKVHKSxvNbDAk/Xgp1gbgM/RPLPKMHfSkBM2
QpeMM5JOcYldY4lPJCiJNVcKdaogRTzjH6kUMbZW4rQ2bXokYMzT5NmEFGtl
GiP52T6txB5Ou7V6AYLCOo0qJQaaFBMhLCVnkxDJgWh/MRSB9EWnh+ZgMpLM
2BQRZ65fXmbxra8EjzC9KKahHRJJzcQrdaECesgdbIq09ucVkgSFtqMA7sBm
TsTboL5lzUOgDLW2nkiifQCXhlvh5tvCRcmt8IQ6SPUI3SmXQrhs4Qwa0qOD
xAWzXNxVjq5GqFkUP8mShk29CxYHGBsou6iiXSiSKCXk0t5aHJoxBW65SYjk
zKKG5tRVHTdjG/RWiBOQ86QYQoRxq4dcl8KXqRxgXL4ijW6UsHTRAKXdIKmJ
601DcCSaHYV74JwL7dPHblDb/QiMfn1m6p+Z0jPaDuy6WIKiZmtKwu47qws1
BYlxZHQgA6ix9VAOMm+hSAjMH6NF67VhzsB3lvRR30K35waI8GJDN8ZJAnJw
2Ma04y1AL4DZMW97D1iIWFMmRRzy4LXz5xvINVIiS5kv392B2zpeGSNKqRef
AG0Nqy7OqhFxOv6QQI30mklGGWMsQq6xbBJ1EGMDS/RGi0coKf6rxZuErUjo
S4woPt4ozTleJ3lebfGv1iW8bIz5Bb/PBUo/AuNlkvIWzCXl+FgjUG9e0gQM
PuXWa+z92FTKoYFirvOPJcfxSgP/EKgw1avCJGTBovlKhjamAVYxl2RypiWI
QeEoRxmBbcTygwJ+6F0eKmnP8DZbRMw79ImftMxQXA/VH+2trxsQfCx+DnHd
5rgOvGfHBu7jHbg+RoqFUaM6m1H7Ed95RKlngGDKxHFAvrPKtpHjMBbGbaKG
x921vftEl7JXIkGHazA5NkKVE2vtIyau7Ggpbbg5HcOjYPGMtB5R19wORMGQ
nzhvJ5lWU56fGIrQOjTl5SDug3AmYwuId8y35eSCVFlw4UTFHGD6oQwdt0OY
hBKoaE6pJo7qA9U0Q0yvaKx2xBgInxSBQAE7PGuggKDhMsdSS8ifgeloCEc+
UKufhD1VX/Ba2Q3xNRt8fWHL9Q6kIUhgPe9PdPfu8lkSOD9TKYrpO5iqHD05
CBrd4zue5vPYHFmpHrY9OzbKEQqRsNiwS5GIL3pBk/gSIiOluou+1kf/LVHY
JE4WM/6pNPEHrlRctcSNTMHnseJYEYDdR97aYdGaFJ5OkKxVkvqtywjBmaGM
peMDSdv9W3N28T/N293VYjRgCbe6qr57IF7HnkuTdg+ibfuj/PK3+7/E2bnp
f7s6II2uU0lH3xt8xW+maZ7v6CS+Kpc0JH/CPzKf/flPv8ii3/UWDb/Vsfi3
P/+SwbqHUkSDx+hgIEvUF7tjlRDTQ00X28uxG1KGwu+2kMGQUTiRmp5tl9bS
ZGPFe7XZEhaWGnvCHIeJ1cr2yV6x/dxXKIKNMXBTNNEELQrcgjM1JDw7y4id
IYZ91GBw7jkjGccqywbjPp0b1jAQzyA7hbw9lChLofuwmpmoPnBcel5fVeVf
JO5BoH3RAmN/HWoIbag7A0K7vLpi/1EIH4mikCxfpB5nr5j2s4JiwZhGZFUm
AJtKIy1jsW7kdKzA9cuvDirH20um4GgfEeYb+0hM1dGmbD9QpE6kNO1L34p0
3n6UDsxi7EhBxILCe9RYlQrLwEtnFoo1JvjM3H1sI9lxTnTqd3UbcSX0+jaF
thjpi30LhHOyE8R/kRQgvL87xNI0gzN88Xn1TI7cKZ2Jo+th46kecxEKxKh6
KIo1FS7qqQw+/yTIN5jhkb9ypxSj+vygb4QP+KbGLToSxTAXrgnt3S0U9dUr
H3wv8Z7NQsvpcrRh0VZzkMeTXzvvg0jhBzGjmWVptgdmGK3W6JMN6AlT8UZh
UEm7Dh3E6L6uz9VUh+donk/a8P4fDMbUjPlIx9UcnyjJNBYEmSm87TMHAw0y
A9luAdpYmOKNmiKqiOTZ7CCIlfw/wOYLjNfjPvFSh7IeTbA3EgcfC+NhV9Q/
lhWLNlyTPQ34EIsQz3ob509EdbzkTJAPo1lSLtkTzyGwxVCuqAHwugeUDfM9
j/H5gXwFBjSsWUYea/5qsJt6mvCTpA/LeNeuUB/f9/PR2HtCEizNbtfcHfsr
2xVm/Y56BAnzqOixebQc2N34kqYWuWlh4XwdgT9vwPBfREA16YeqGTF9SDNl
rUgE435NEt19od8TN5BIPN55cHifvv74XJLrpkgqkWDiNnLi6c6kBZpiEPyF
YV4YtCJP7VT5ipeW0Do9HLS+wPKIurEjgy3vNdwvC3eizc6/ez7d57aq9M+D
PUd1owy6WeRUePQr+2GB0Y6E5FScD/Wg4tBY0QRWmcSOUU9yPr0lyh0cao2l
vj0xgPHQS1ms1q4JDMeRDap1Dsl85Iw0U1Ow7aVOnhy/JoxIIEU1PgfETKwj
avobutiQ2HrCQ9r2URGFRehVXmqlGz1e+glxNy5CldIBWW3nuPrdci/7rZz2
bMYbEWy6XXSiNiXXf0bizPY/HTw+PPx2vr8/9f882GMzMMWlwrv5i5dSpvvI
boD/Fuf1nCrwRR+9JZTvMbCULnzxPRXqCV8PPLE7m+1hNSH+/I94HPSSlr4h
i/VLZEFGm6a2Y7Jj39OXaDaOtoRLyX84Pd+DDpxky1C90mLxDI463r5n7hnZ
Il60DQrePhHJtUx643lNNJPUL4KW2PMQ7TQmOMtGRLtQVjKASLAMJbajq9B3
R82w2BMxM+3chg3xoCux49VGZ4J/3tsHcV3toZAw7sC2yxQvcPhKxXsyeK0O
+7fI35zHd92cE5JPx/XCk3pMuwNzjCk4mmCg4sEwvWF0pqw4kmn7VeQpN2PI
S4JAW78kfMXRaK92aRYSEKOFwkdIcfdACdgTX/1klr1+wz1wd/c/7e+lgNMA
Gmt7OnUWunNjoRiaJP+mqObIPwoKfHMXW/56Xi8CusGUEqBvp/QtEcwY8SHX
KcgZjkSacaQtarJMhRdG7kOiLk/C5ZKAiBQaxdC47Rc6crss82oHS4eKBRrO
D7Vlu1bnSDAGlc1uEy74ySF1R9tUCDaioeio+xVx9kfSStHNr6miCO+KTjth
sCyl0ymIJm/7HA9vClD80enpyxfHpAfqd6RwZrt4sQ/29/QO2EihQfAE04dI
D0gM/UpF62NnVFF6rnVGtdbWm3dvj0/ev3zx6sU5/Hl0/CNmytCIB/ceUZRJ
GDLonZgaQtiegUK25JnUJGMmGZrOu9dn54hUfP/m7fvTN2/eykQO/4aJ4EdS
AB7u0qXkf0hTFcXRbCoKsJNVYHrKWHoH1ahutD4zBpc5toapSPP5BnO8UZ2G
ASX3+rKRAjIYHiaTVBKDJY0PW8ajAk+putqlp9Gnc9A+8w/AGxp26zBMDuNa
bzAXKGA533+PWxSo4+G9t4hHkh3CSsZDGXxRkScsNXkeMP60bk418TxA44+2
QB88JdksmdghAhFPQvXDeS3C6OElu/6ThFcNe3UFUkAuYDLL9oxW8ZWQWFE7
RgCqY3kHhudqwfUAL+6nvjjT+1khgX3Q/oCCsW3guzWNsJhBXaP38m1Kx6Mt
Sse3dykd9IVkKJ0pZOQ165hbtJBk/pEeMjL5RCEZPPJ7nxr539OcnY7B42pY
Jwc6fob9Odx5gEKUW09PXrvt6B5uObpv9v49Ti6a+NCxRbMOZ/YdFh/5W27x
v03T9LdTavtJkkWcpIgs8kiKDxEf4iLT+NhwSRRR4zyB4F5RAqZNMSkVJau5
s3g6VGPAbdn67Xqu9BfyImEM5A8KNmtNCC0UnVdttHML7kpTLKUPlGrlN7Xx
frSccQ3f1x2IJU7nkgoDOCPy3YV6fFIU1VQKGT5+mOH46TMahbs8yBlg5yP+
0ld1C+73DelL0pH2iMUbTUh8XlQHHBbpEbNfMx3B05qSZn5gxQuPPYpwnS1s
fyQhVOqqGmpJa235HrvYPgq2w/pYtzynSqXuRUQcNqCJDt+x807e2aLTby05
a7PsrXb2FMQiVbGhoK5CNlHNpfWmk7sc3ax6cIeZHFzf4QckoJn7AQtGqw8Y
k3uOwcfkA/Pa7XzOHp6s618qDOT5Hh9RYR0m4r8lQffelqDiYOL330GE9zMU
PXRewTIMiC9NJVyPbmiV+qouAYtPpwSxVA7qfPGRaA+pUdPwQvKtS0E4G0Lt
bRHifGvpBLz4aQ1jH2DxKWxRkbzQv0JQQvmVxxyTVRAqggZAr9Fnx2ZCrvd+
KzPjMRt7khzyvyXV4PGoE37s4ZE2ygdPZweDpZAUaGt6FVNdC5/bx7se8JJD
iNfY4SjgQ42QMCc5VxKcM2Or7kiuT+Fb1OUD8xylSSebbSSZpACUpklvq141
Ug9KL/JYQY471UE46jB9f9ipZjgyRtANU83w8RbN8CkpdyOK4YgqyEUhstMG
wdHntX78kvWTXbYT4sJ9u9/OZgdP9vmtQ3CObPfgEB/sudjHNyTSOMf2Y9wB
//ci/X8P/3zcvIpsdtg4rQlQBBM8pnZyZtjU81qzHuPO2ORP9Ti2iS2qqcrH
KGe8zO6zJ26AgWfSCE2c8aaPZwd8SRJYeI0j17kdCOTZcKdedZeOTOqoqDQp
9Wr1MfX4SpukONEt5IgryogrBXTXHExHLM+1Cn+PeDe6V1rubOaSQrApGSTA
DsVhkEsEvpEq3QGMuO3QenThi1fWWpknzXS6V8lS2k8S7qjcAPtcX8cEMl5w
K3QjxU6nXe1AF0NIVjd6Qlw2yGupI2uVpgS46maDrRWE5rweOcacPY5Nnwjq
K8d+3bZSvKxT4oA40Ng5oN8Sj4GHWMQoZqMMbKlRQ/rAYH9SoxJseZ6cjPtP
RhWCLY9uYYxPtsTpOVUv1peGsrdCKG6oSeiANuDLDCF8Q/JoQHVUlYOKXZvK
RPH7aFKmIFto3FxXPcKfGMC4LGjmzuLs6y0bJ5D05iOnOOfenW/yCJ0HmI5U
tEzr9e/ev6pm6JjpuVM4S99EsvNFlGPUyIxgTjFcpQ+xxML2UqBUUBmsp91Z
HixKeBtp2xuCHKNVq++jW5lrcx8Va3C0cS3ryRYtK/9qLaunB905+Ugd2jL3
cY3o73j3/92VolAksCcF76jwlQrCf4v8O2rvJO3WC5QhlUiFzLDCZIOMW1bl
02OBjQQz6a6neN08rVhZp1KPNB9/6v5cql6Nd623wOg0qVptJfX4HFw52hp5
i1TxAj4M2Rfz21iF33QpnkDHyhWYadlDgr7jxgN2idsI7R6Svg9DBNmelLlF
l0f/d2zZe+Yy3+vjZOrBKt6Oiw2tMXmrE8QF5vA6N1B5906GGs81ZaH2jeNM
85stTHNO3HGseOEQlxyckfLF/oQCJxxY/pZYA7CvkVkpG0tDBSH0IEqDje2a
zOB8jqmHPkzLBRp9pm3xCTuIZoe/aTfrf3h4+Jtf4/9ODyZxuzEdmyo6FtrX
Mi1a4oPHwAK6puT+KKr79HNzRT5Lgu4ez/CuypI2RRjnYvzRjO3NQoE+Xzzl
nmDeGIhM7IYbH9xjSgmu17L+e+B6X9ZYMbvREgcU+MYSwTn7gU11n1Abfqgk
MxfUle5wzR3zpo27iZudh9IPA+RrOm7HlZ+JADh0pZshePdxNhC5mbnVn61c
gacjDIWLSNdt5xi2z9VEcaaUFp3ugdc2FQJPBFxgCyyLIQyVU71XvF9PVYP8
oxVhkZlKqThfGXOwqnXKYBd73B2A6ja01wx6kYRuBqts2NCptBABpXAoFGSI
EfMBoPfLWizjMxyqH5vMsrhrluL45muifABBTmN1cTktL60o6EZWa3DoUoke
jn+opq4BQzjfeannoeLASNDsvoIOuOKhL1uGsJvYWAtPhODBwAbbig8oy02m
OMVxEVJoE5gc9nUyVbmG77wAa7bed65U2ke/qhgZDEVrRfz8otViHcPbP1Zj
vRGsla346evqmV5ecZ++eEd/PbaZyLxi3PCmc9KonR0pXY5+YJPsJgVJQ8Os
nHpgXGBpG1OpzKbHYR8exi9as/Mes/NpdXoZcsWyDZLXXaCOhPcM2ZfhvePq
0bdb1KPF16pH4/MaUJGSycWAm96W/M3K0ji8wZQRHaJ4dfygDiGKjnYCw/oU
PiZJdIfSxadw+Di97/gUdBMB04Vug/puHZ5vpwFRePyHl6FuK1+6Ew0Egutu
2olfP04/T7fQT7HNJ/EaLJ/7OCa2TjnySAzMOEFxDW3Z1yN+zFpsE0UUNKwm
j4gk9a374u4gfAY2QTX8Cr9L7XVNcUuKvIlvUgrdjsMzLSdL9NvQ5mTswqPh
m3yk0zFgEC42EHXBGleMvzLhbXi+g5Q0NrMRaApt9vCmbtnOv0cS31dqHX1F
WcAHkZbsEmiYpEnzDQp4XFSjuQdSp+Ee9yB7EZevOhaQRs4G3OcHqKtM5/ZT
igxQIgwv23d8iHSkUAUaN9EXyaobKbMau4iOufLpJLRa5hpGr4/Os7fFRUkq
EE7Ht1XCPHL15A04WLgcqxPwBMGPFTIzmJDnK5jmQMh/RoSFxMvmUrdsKJGK
GQA5ZhjPj7pVU8TQtzbbfcE26MT96KMCuLijALtXlAK6pr+XymoBmTZJyJL6
s9AicX8a3Z8Jad/SFVS7NodGVAPpx70wmgFyT0hL4uAq+qiWWv/9nAreK3i9
jtUc7xHg85OvOcKYGbC2YMx65QyjXG5frY/rDyJGjHExaimgAAqHbyo4ST2p
0IAtaYSxpJThBAWvnaYnDjbMR7C5a0Jo50XsyGzIQIGMPpCDqIuLTxMprmqO
kftcACrcgfKIKBCNXOmuvLRHyKXlyEGp/h+qrkO95EN3uS2T9dUrHFXT4BnP
c2kP2aMm4Sy+KTvFmVpDUxSZ2QloJWmyupMNxcJmcf/04YIdugux56P9UK7j
pr9OIkLaR5immvv2v9YXIHUtUQMzu6SMcVsgls/FTAXf6vv1ho6y1H2KwYja
6YBrceMeXBTdDc6hlzIcmhMKwWnmi/ND+Dp0vgIQVsqn49CkFSZvbXotNxEN
ECeZK3zyZvOSNKenI83oXvTrw2mpQbLeikXLcZkAh8cCNnp7f9UONAtfCq03
mKY27Ro4VWpajr8C0YGsbw7Gu/YNteTyaLwb7jtyor/STTul/RLn4xmqhtr3
W/hJKPxZs72qRfXpHImYfQNl83hSwjMsm9km1kNzQ28kPhVO/7n+i1kenmY5
xwP5r95+f3z46JvHyIjz5gOKPGEdvoA8FdgtaTv/vKlMsYV2fl0sNuT4zZdX
dQOfraRuArc/b1FtWbXajbWlFvb0vS1GTr08AkDaIVh9jcAJxLXpK3KfB49c
IfqJGPlnZcXlf9rQ16kYwKAQ/dyq0cN1uLG3nW1pgndpU3aiuSFIdjBt7TwU
iqEqHjl3es5Cywme+Fy0twQVI0csTV3QU7ZZm2izJYPWa35pIVPnGWM786pU
YmzoTnPj+tCYWFNDGHBE2XAsQvFqVHL96qZDO+U/ZFIZTnpJ0HYesPdI+d/B
08PZ/uxwdsC1priYnf/u29njg9nB/v7sYPhlh8MvO7z7ZZSNEbbbJ0HnHB2b
wU/ORGpR2R9RCJLhwiu5wKDt7B6WNuFTjHVJY+mrdX84C6v0hTOCNjIJlb18
94pVUEQ5sUMCrnIwMhMtYEv74qeFLHpDpqFpCao9WVNqGsKgYastFHsOVX3Y
RelRT3flGsi+kAqkmETBT9wEPNkCOGuO1dildnDoJMZcJG5ggfyEZ7Xyirny
7GPm2dxUXD6cCiO3TcUpw3UrnIm90Fpp34P1nBEQguem0imUJJBEcEcFgBfo
wyqt7xRse1Ryx6/NSiU8a4yuS1IUypajLm2hbd5TeabTrquEbGZ3mCdewvP5
CQek29KW+GVeFRSXoVB+o5VOxYQZmQi5n1SJkHvnUwMiRKQ2bPKVlsUxpbAh
UkFJGJABEGwRR0rxwPgxBt/jH31VJxHP+GVSUkxaXt5QpkloF6e1v2iGzpc6
815rL1rID7ahMlFl+2cqWCL3BV65G71zzwVYJV3Ci7rrlmBdzD9oD8Q8o/Li
ebMY3GUQs6tCVD3uYEFpWFgc+zIv0W7E+CfIEAOCQzPjplxIzCTBBJh9uCo6
Yls03/CQ7PhqXXAFdlLnndCNfxokTtjh8+NT2VU0/MvqA90mDtstgoKQ7b58
cbTnxteZGDagnzx5+PgJ3Cqkk3r5Uapcg1oI2tRqJnFmfpgqLto6X1hZe5Gv
xecSk4NWNICNXS8Lu/UunpKtzwjDcodPpL148VpQ+PPnN7BEZBPPC8pba1op
upeuOGhNmXRjoEKP8aupDjR5ZhYfSwH8SKO472DUg4cPGeAf2NY3IMVwRNTt
nn7z6CGprP9/byHrU5tyPGVvVAg5B3HrBN2j5Srkd+JgVSHZ7+ohMlZ+jkEW
a0aExon+mg6dF/boPT9HfoblCqXEKRVpZzG2Wm/ovpAbE3+JYgw/LKZN133p
F8Tz0zNdymgdQ2X5bDEo3wjwNjOdniQs0F033HfZthuh6IGEwCigH5VqZZZm
yzb1TEcJbOPKeRta0ipZkFwuN/NuQysBBRRFiILQY66FFQyi8gYL39qPa4GJ
CZU6uOUIZgj5G5FDeVSsTsQyNkr56eTtz0jdLZzwunOKnaK8BC/JF7bFoDkN
cxJ+n6im5UQOqsOURdyO+tITma/XqQAUTGRooor/LPjpA8FH1LZ/m5TexQCo
NwiAlSYjae811CWB62kpVPWdskOaC3eRrKuK6U1+KxVsn9FL6d+h1DUpxhr/
9b4r/0M9nqboNk2lVwoYYuXj4AldAYMmwZjqm3EbSAf3soG9LBqQZeVcqI3n
SfT1MW9uHZOWMXOsGWmK0mXiqW5bFvXkEUEbIXcd+oxQXHpctAS08ZCqOXWz
fLy/IjOO1JgFKGbz4B3O3VVRt+wLhSnBHcAy06XY3kNve7hvXuf862YMP9LT
Ec06PiGO6TJlhkSY1YXYZs73tPQWjznEaA/0EBNqjn7ExSLjeJ6WmMaoAM2J
ZAkyMGJx/5w9R32N9lz/+2t2bvYY/z7TPXLTbf/99V6fOfv2v2YHtLvwj4d4
as4PlfnP8B9P8Fe9utl+UQNVs3GJcghMP7HyvCO5CsLdF5otDkrzEt3ORG10
+4g1+SAQV5C298oZL4rvY+rdDclxsQJNnPymcGxOBEiFFy7a0zwuRWpI36F+
ZusulqGJagiukB6JIH/GtbQcmKar6fzCkR/F+Lz4SvjJcI0KOhLfccUlmDo6
JwmMq1TzIieqVQ6rnFMy10dlc35UFPFVsfTZMD48lXLcSyqPJDLbWV5C45y/
ofXCrJ9RNd8wshgwIV2e6rehCs2mCi1yoo0XzJ1E9zaIkHBQKNFRkwVN6VZK
v3L2D0Wv2i5t9VL6dG060cAj/S4lPd05BEGDp5KM/IZ8jBodWLwHNYWdpV0H
LJfw2FZzDP5zI1ib4gpMl6U4J3xARrUQFqap5oNi1MP/mB7yNWwF8lwiGc2/
vaprVSCoo/aS2tu2g4KZKZ7EX9tJd2LKkK80uoP55UYZHb9kGaIUWzytkov6
skQMfRDRSC7b0Gk0iUepDt0EmD6D4ZJpG2dCZ9oQYX0BF2QmuapgO7vCd2wc
jJLhdZzInYSLXolDD2lZ3N2FSJUmX5cL7NlXY/O8K4LSKvdiXnUTaky10mKM
QeEFwXgJPsU6xKqsKA5Pg3skL+6KyzNudAuzXiI8phACjZeCwb+hFR1VvdPR
qgdokUww8473DrVxicsL+dHB82QitsEOg6bGavFsBJjpR3V0fUs5dFKmC5Wr
w4LYB4KSyRqTgwC3thcR0+IQEfseiuOEzEx4bG+IKFd1VWJww+zDkELrrN4f
mvggi1H9nlyp6URtfxzvQ5Z7n5sm3Qpekoro2BQ2FEkf8ulIiEHuT1Nw6xuW
04GGySvvjK4r3ndxcY/yBtqNWJa7xC0vHDX0LdUmrcRFz4K4RrAufjYNIlzU
gkj3Ii1N2lmEiha0OYQLpJ5EWjGCaoVx83aJiwg600Qe6JQubgd2b+Z+0LD1
JC7VKyUlDYo64FMubjuOW1wuSTraFCPcNOfxHGbEGzBd65sg9IslQ1uYxjig
SsX0XiEGRBNUYQbLjVZa4/NmcbDLoJQfj16+PHn9g6mi5KtXcEVKmnlNhfKc
50Lt3iTqFMLX1vRviuxgZ1wNavDwAYpvkhv8hi7c1jYn4Rt1bfToHnXs27Rq
8ZRLaXKaQ28PiREkvtme2LBBMqznVF1JuNL7KzhSNnH0S8ljvGVezwC6QuJj
HjYlFh13Xfdt9loFfZcVNzL2L5PE5HABCLvCUCzVHiehZzlx4iAvB0JoXgeO
tZyZoH2oQe+AM0pbJXCbWX/UnsU72afa48YTQUrIi0o05zleuaJnHi20Owi5
poDk1K1gHTpfWNYGtuTVYjIanFgA7NoNLtCelZBYv9q6M7K/h6Kt+MNEseLk
skTYq5B30oVcMRbhlUA98POr24E3sgLNgMIYusXaD9j/dRRplXfh0YlPlLs0
IpoAVZKJ3p2eO0w05pbR6t4pgVYE8fVx15gV29RMzva148ViD7ii7ULe3Nw3
hKbKr/R94xnTsq7XLeWAxB3Su66IPFgYeaPQc8RqiX8iad32S6uLiB9CKixS
oMQ3Awr33sRpcEuwHDBQweGIuY0AL+ucykKQpsMCpvXzBPskagFMdJjDlxhT
p+QI1txsKRntaS4CwUdeWq00GBWftkyLZejbwkrGFncuxJ00WpmwQoUwBV9R
E73FkhvpA2tJUpCO3EKCz1y+ZzGMOL9lEE3eTHa+0A6wsu1PxJ0q6saB2DAl
Fll9nO8BP2WOV6SPt6i75hqN34U9dNaTh1spMLRsvWkw7sCYhpCUIx4Fh7O/
LvLFXuhPbHt1eHc48GMUwIUpROD06k8kAod9XJAS9Qfe8pRydC1uMWcOG7bo
CxgPxxYm2dn525OjVwI5p0ZWOXWglevgEnDsGkOgVB6XiE3VpQiFOstOAgnT
z3gQFQCm3Uyc48X4txQcIr47n852/o61M7hu8pFdg0JwUF2wPW0CZgqVRjC8
Tj6tS4GuoUGTWPRygyWiwz52wRQOYvwCGyAthJG1oTExUT3SFjkvMbwARvRG
aAxrCMqGMQCPA/stZ11Zpwc1q8TcangkBkclk5hgipQMrZ4e0AWWmJTviNw3
wDqXA74Qb2b7piJocqYmTQSHnrjaGHhglxfLS+oL4Vv28MDak5zdCvMcI6Ob
1iPJyIpD4IX44KVZmDayitlLqKqyEuWYTKPyqqK7wfYC61rsSleNOIb/++xQ
eHiH9kXY8A7WhfeoLg6XdATXXXyEt+chBjYY02f9R2lblXSUV9rFm2ZVRB2k
0hCdgP0uxwAHouvXsgCJA7OSr8YRfvJjTj4nDzbLTvEOndFWj5M+rXZOIXLf
yHgRv6JlmMy8AeJ2sXzgyOFI+5VHI4BP5PPPT1/iu5+bdAQ28GCsbPfV6dne
GLLBuODx7awA80GsMNnvxWmAac5M/t/NFnRGD5xBW2MBWh5QiORoKkaFrYI5
z9ybSr2HYG5w3EIdp7BasYS5Z+5E3IncX9b6N2jTxTAQZ1YdWs1MMhvbI+cX
tlMnW4V09svb5BKZOgdMLy/wkM/Zu0pb9/uiWE+PlsQJPj8o4esp8iEpwO8G
sPAe/46Z09T8Wl5Hbl1pehlHmSUmqZUWDAw5nAiXPeQ2SyPdgKvbkJBDN2wT
oM/4t52N2jJ9USzFb0MVMftYG3VJp+i7GKMeRaXd2oM3k/Qyw2ZZM/MVex3p
Vw0OnqBK+7YV9U4W25O4pBYROe23UGAGX9I8MHYlrfUECCAlreL6JqZ0KSe+
j768bIOTz3mUFlqnUTc3JGDbcV76Nuz5Lu5GTeXdYB9XhBPsd2UHYkD+KO2q
VPsV/WtVLuDELupP5tDOa2kZKa04MSMKazUCTRnwrgup0VG2jW8hJ0iSAbfR
6YvXP6ghsRvVGhlr32wVdZg1gRzwsPCupc7nWOXzpOqVUq/Z41umOV9X7i2P
yBtBIW/wvsFtx/ioKqYD1oakWNfsCoxPRTC9I7GHES7A/A7oiNZIs1PGI0A0
1QDEWaSlTWBbQjVbU+Y2wgRYvwV5H2fuDHtCms+VbYerirvHs4E7Cn9M+8vk
iU4c/SwgB0MNLfMjAhFEgkJ6PhAZS6GCxaYCu/SW/FyLsp1v2rYnGPfHMEAc
eA/Hyy0rPuZL54sFY1UcMEYIFKiUj6/396ForekeXcGb/I47KL0SzRFa9BU5
kp1lV3iSGEDDOq2+ObtPg+hqW608IjsOCTKPYjewj9eE3Fm+/5K1dvT6KMlV
6/F2pUVSZQdKfpAY5aID7d2WL+oLWK23GuiIGvqMdqYQIQ5rKpyHmj0Mgl2p
cxR/Z9rDsIM3cEkTo+AoN29Itmjyy7BKCtC1TKMS/uYYqs/WJZCS1z/4aY3z
UXyF9rRsNctHyq75Zi3okZFXY+QPi/7AhlWiSe28ODn/foeafXLoLc73ILFF
+/aHH6QjaJfPfcW6hvgR0UZTXBGCskCnB8JmfnPddev22a9/fXNzMyth62Z1
c/VrrkJPC/s1yKE5/b/Zp+tutfwH2SgDuYep3PKl83Qw9XTQYvlIX4+TCooh
aeC8dmjK5552Tv0zOzrRW55mFn5+2tRdPa+XOxnyWtayfqIY933/+2sYKHuN
EpuRG1YebEdv/M1wju+eZ7tKYJhi5NG5+5/2L795+PTiYn5w8eTJkwUWMfnr
YHGdv2Jdn+KqBpsYMR5DG64Qj6PQQikb3enspCJyQJRHcq72dkVoM84apy/u
OlxOHcdE96890688VDlZHg9P1X76bznb0QMeO2JsqDmVZpNbEvqjzopIk+o6
DdOmCouhkecXd49Oc4PkbnVN83ZSH+PefjLG9u4ko2PEpd7DGCONfGSw7V1s
7hos1I+P17V9zO1FtkfH7FcN9Oc0UAnT3aPS5OhQQ+XqZKjBgrIy2vYSbUOj
2bo30RcwVlLgTsbYXudkbEUhBd+e02j9Jxlre02M0d2LUv7vMRbh5QJbG2Wh
hp9ZzhkzzqHWeDEH7fKLaeiph2m55BJyholmQxLSdOVL2an720XkX7n15MDn
z6ncI1cPGvr+/ox1mIOOf77te8eN+YYoY3//0cHj/cfw/x8dwv8VyFlHG/z9
lZGdoXelmOzGzPmVV9iIiqKejzyNQR6/v//48PHDR/NHTx8tHj19/Ggv3OrB
xn+9mYjdrY372Dkvhpfg/wOVjcxsUFDAzB4/Kh5fwsyKx48ePfEz6/UAHJuT
b97nO/wR3qeHdh+Z1aBogWMrHl3CrB7CvB49vsRZjbfeG5sZ1qfyjt6RCrGk
9/enRrpUdCk9UNY0wuxnq5Da9CADY3NDCbp9o2nYBdoU3G8FvY6tPowJN1hf
kQEEA25AtGf045dnMG30j4qnqM1aMtGjgtRhLoJcBGbwzLlpiPPaBzy1cVGx
Sz5QX/c/KsCDSWxqwsF3qtXqb7FHQPsfYaA8CimbJClynqqTgQITHOOpSoYE
tZK3nXdgynwgl/0YcCTO6MNRFYemocNehUwTV+wbpL36JS2ZxQ+yV8WqBn57
xFYbvocq2MIecRaMttmUcx/sQFZWg3o9UlZagI7rDrYJhEkWXw1VJXW2v6eg
KZri4pY91+Z1piYITc93CPXmNnkBxZiMOz36QGOo4k7ojpCwL5fNRT2xxGOR
ejRMzUOuKmO+9k53n6VGV1hpMqHXi1vyKTmcVq/BpTYkEwxaup8mOybAWb72
APGZfhXBsg3thtB2VrepdR0mK2GwjppViM6rCTiHhxp+W3y6zjccveJLYmsm
SMlP72BInWz+wCdOXbDBuxZfAa2KMpEiyYQAp5eY0hXXeWuKDhI6Ax3uXAgJ
rs5zf7G1IAM5NuKiElIizLy2X/1F/XrfDjv1KCYZKrRoQ4NNxSzB1HYOjZ1Y
olIlMOHPxuk0FsQS3J8vienrMqZ8SkNIlBnsBJxo+xsLqFCEwDyWIBg7jJPi
QebXl+So3XTLoFJ6UMLB7PFwLrekOjOUTUPBwofhLc/rM89sFc8eee7wpuLV
iDa4t9x+vIVfytmnywWVUUXgDC6DuISv+yB9g1M+r4U0fMgABY3vOka1DiiD
woFG9LFY+slLR0SbidJKNjHW9FutyUGGXvub62K5gk3p8uaK2jyOJbrLoRux
oShlp9i1wFhSsWjJmsfnvBDhSLCi8OxQvTT17JuQuMeEG2ocKm5jGAprjyjG
Lgo5R7gfqIdo0SPy+mBF38xfgsGI7YUPlWEqr4ulMAMosTTwNBb1IoS2XOzB
a828l0TXsOZgs+g5Y3Rs0go2veTVyQtvA6lquZNLEoGBpyr8JcxFJURfOi8U
Q6H5iYYBSwJLG7/rXoQjUR1QMZhbX2B8di7h3xXDlhp+qQfsRnOzbE+p0AlG
aA7KJ5VvxHQRVNFrYd7Hze26q6ljUDnPkjJrJ0fPs9eoYI1ru+lhx4gtrb7P
0QJNMcqdqWEb+r2Q+z5RN3xmcbtZk0HkkTSGoWObWB8ziBya8S85UFdpvAa+
jxrdhTYSYU4SbFUJQ6wpvqexveZ5fSipNlo9DtX8iY+SFqA/37I5/qG4xdwU
n+Mt5bo2MBRcOr4dGEZGdTDz4i/pqzkiddIJCGxiUxHU1MdKwlUOsbcanzxa
UzDxU/ZduMtkrwj8QnrU1h1cBkuehr+zhBUJ6nB7h8KWCjmIg7le+4dBiDyt
5n9xa9KMVbOjAHSDkD9HD7DBkJbRx5A3nOgG7Y6q/JeNGBatbzjEgFdl6LDM
h4fZBW0RoiN9pnRThFBgFcJyUfkaGwBzD7hWDNa9qJteKK7kcklLsHtrU5gO
KKFuPOtHGA9CpFESUsVFLqXINR5AxfbMnkNLMpSAebiUUovx0I9YlgKT5j1W
q27Kq5L0Sn0XXiEqo/SPuM9HFfzrvwGqvN1kL0tczFGcNo3ryasPxA5fwSkg
trEAuq3g4vw+/8vmus7efNhM6DsgzPPretXipXqVX1WglvwBo2nNclMtsL4l
XMfvyva6Xk/cy80czvUUrF4sAvwKdLActIOTpvzQ0vM/b2BaG8aV/VAjfPn7
vGyuN03bKbKtxP9fszqBSXLFDZ8lBurUy+DrkQBv+P8AS0NWLu0cAQA=

-->

</rfc>
