<?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.5 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-welzl-ccwg-ratelimited-increase-01" category="std" consensus="true" submissionType="IETF" updates="RFC5681, RFC9002, RFC9260, RFC9438" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.19.4 -->
  <front>
    <title abbrev="Constrained cwnd Increase">Increase of the Congestion Window when the Sender Is Rate-Limited</title>
    <seriesInfo name="Internet-Draft" value="draft-welzl-ccwg-ratelimited-increase-01"/>
    <author initials="M." surname="Welzl" fullname="Michael Welzl">
      <organization>University of Oslo</organization>
      <address>
        <postal>
          <street>PO Box 1080 Blindern</street>
          <city>0316  Oslo</city>
          <country>Norway</country>
        </postal>
        <email>michawe@ifi.uio.no</email>
        <uri>http://welzl.at/</uri>
      </address>
    </author>
    <author initials="T." surname="Henderson" fullname="Tom Henderson">
      <organization/>
      <address>
        <postal>
          <city>Mercer Island, WA</city>
          <country>United States</country>
        </postal>
        <email>tomh@tomh.org</email>
        <uri>https://www.tomh.org/</uri>
      </address>
    </author>
    <author initials="G." surname="Fairhurst" fullname="Godred Fairhurst">
      <organization>University of Aberdeen</organization>
      <address>
        <postal>
          <street>Fraser Noble Building</street>
          <city>Aberdeen, AB24 3UE</city>
          <country>UK</country>
        </postal>
        <email>gorry@erg.abdn.ac.uk</email>
        <uri>https://www.erg.abdn.ac.uk/</uri>
      </address>
    </author>
    <date year="2024" month="February" day="22"/>
    <area>Transport</area>
    <workgroup>Congestion Control Working Group</workgroup>
    <abstract>
      <?line 60?>

<t>This document specifies how transport protocols increase their congestion window when the sender is rate-limited.
Such a limitation can be caused by the sending application not supplying data or by receiver flow control.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://mwelzl.github.io/draft-ccwg-constrained-increase/draft-welzl-ccwg-constrained-increase.html"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-welzl-ccwg-ratelimited-increase/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        Congestion Control Working Group Working Group mailing list (<eref target="mailto:ccwg@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/ccwg/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/ccwg/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/mwelzl/draft-ccwg-constrained-increase"/>.</t>
    </note>
  </front>
  <middle>
    <?line 66?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>A sender of a congestion controlled transport protocol becomes "rate-limited" when it does not send any data
even though the congestion control rules would allow it to transmit data.
This could occur because the application has not provided sufficient data to fully utilise the congestion window (cwnd).
It could also occur because the receiver has limited the sender using flow control
(e.g., by the advertised TCP receiver window (rwnd) or by the conection or stream flow credit in quic).
Current RFCs specifying congestion control mechanisms diverge regarding the rules for increasing the cwnd when the sender is rate-limited.</t>
      <t>Congestion Window Validation (CWV) <xref target="RFC7661"/> provides an experimental specification defining how to manage a cwnd that has
become larger than the current flight size.
In contrast, this present document concerns the increase in cwnd when a sender is rate-limited. These two topics are distinct,
but are related, because both describe the management of the cwnd when the sender does not fully utilise the current cwnd.</t>
      <t>This document specifies a uniform rule that congestion control mechanisms <bcp14>MUST</bcp14> apply and provides a recommendation that congestion control implementations <bcp14>SHOULD</bcp14> follow.
An appendix provides an overview of the divergence in current RFCs and some current implementations regarding cwnd increase when the sender is rate-limited.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>This document uses the terms defined in <xref section="2" sectionFormat="of" target="RFC5681"/>.</t>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" 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>
      <?line -18?>

</section>
    <section anchor="rules">
      <name>Increase rules</name>
      <t>Irrespective of the current state of a congestion control mechanism, senders using a congestion controlled transport protocol:</t>
      <ol spacing="normal" type="1"><li>
          <t><bcp14>MUST</bcp14> include a limit to the growth of cwnd when FlightSize &lt; cwnd.</t>
        </li>
        <li>
          <t><bcp14>SHOULD</bcp14> limit the growth of cwnd when FlightSize &lt; cwnd with inc(maxFS).</t>
        </li>
      </ol>
      <t>In rule #2, "inc" is a function that returns the maximum unconstrained increase that would result from the congestion control mechanism within one RTT, based on the "maxFS" parameter.
For example, for Slow Start, as specified in <xref target="RFC5681"/>, inc(maxFS)=2*maxFS, such that equation 2 in <xref target="RFC5681"/> becomes:</t>
      <artwork><![CDATA[
cwnd_new = cwnd + min (N, SMSS)
cwnd = min(cwnd_new, 2*maxFS)
]]></artwork>
      <t>Similarly, with rule #2 applied to Congestion Avoidance, inc(maxFS)=1+maxFS, such that equation 3 in <xref target="RFC5681"/> becomes:</t>
      <artwork><![CDATA[
cwnd_new = cwnd + SMSS*SMSS/cwnd
cwnd = min(cwnd_new, 1+maxFS)
]]></artwork>
      <t>maxFS is the largest value of FlightSize since the last time that cwnd was decreased.
If cwnd has never been decreased, maxFS is the maximum value of FlightSize since the start of the data transfer.</t>
      <section anchor="discussion">
        <name>Discussion</name>
        <t>If the sending rate is less than permitted by cwnd for multiple RTTs, limited either by the sending application or by the receiver-advertised window, continuously increasing the cwnd would cause a mismatch between the cwnd and the capacity that the path supports (i.e., over-estimating the capacity).
Such unlimited growth in the cwnd is therefore disallowed by the first rule.</t>
        <t>However, in most common congestion control mechanisms, in the absence of an indication of congestion, a cwnd that has been fully utilized during an RTT is permitted to be increased during the immediately following RTT.
Thus, such an increase is allowed by the second rule.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>While congestion control designs could result in unwanted competing traffic, they do not directly result in new security considerations.</t>
      <t>Transport protocols that provide authentication (including those using encryption), or are carried over protocols that provide authentication,
can protect their congestion control mechanisms from network attack. This is orthogonal to the congestion control rules.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requests no IANA action.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC5681">
          <front>
            <title>TCP Congestion Control</title>
            <author fullname="M. Allman" initials="M." surname="Allman"/>
            <author fullname="V. Paxson" initials="V." surname="Paxson"/>
            <author fullname="E. Blanton" initials="E." surname="Blanton"/>
            <date month="September" year="2009"/>
            <abstract>
              <t>This document defines TCP's four intertwined congestion control algorithms: slow start, congestion avoidance, fast retransmit, and fast recovery. In addition, the document specifies how TCP should begin transmission after a relatively long idle period, as well as discussing various acknowledgment generation methods. This document obsoletes RFC 2581. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5681"/>
          <seriesInfo name="DOI" value="10.17487/RFC5681"/>
        </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>
        <reference anchor="RFC9438">
          <front>
            <title>CUBIC for Fast and Long-Distance Networks</title>
            <author fullname="L. Xu" initials="L." surname="Xu"/>
            <author fullname="S. Ha" initials="S." surname="Ha"/>
            <author fullname="I. Rhee" initials="I." surname="Rhee"/>
            <author fullname="V. Goel" initials="V." surname="Goel"/>
            <author fullname="L. Eggert" initials="L." role="editor" surname="Eggert"/>
            <date month="August" year="2023"/>
            <abstract>
              <t>CUBIC is a standard TCP congestion control algorithm that uses a cubic function instead of a linear congestion window increase function to improve scalability and stability over fast and long-distance networks. CUBIC has been adopted as the default TCP congestion control algorithm by the Linux, Windows, and Apple stacks.</t>
              <t>This document updates the specification of CUBIC to include algorithmic improvements based on these implementations and recent academic work. Based on the extensive deployment experience with CUBIC, this document also moves the specification to the Standards Track and obsoletes RFC 8312. This document also updates RFC 5681, to allow for CUBIC's occasionally more aggressive sending behavior.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9438"/>
          <seriesInfo name="DOI" value="10.17487/RFC9438"/>
        </reference>
        <reference anchor="RFC9260">
          <front>
            <title>Stream Control Transmission Protocol</title>
            <author fullname="R. Stewart" initials="R." surname="Stewart"/>
            <author fullname="M. Tüxen" initials="M." surname="Tüxen"/>
            <author fullname="K. Nielsen" initials="K." surname="Nielsen"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This document describes the Stream Control Transmission Protocol (SCTP) and obsoletes RFC 4960. It incorporates the specification of the chunk flags registry from RFC 6096 and the specification of the I bit of DATA chunks from RFC 7053. Therefore, RFCs 6096 and 7053 are also obsoleted by this document. In addition, RFCs 4460 and 8540, which describe errata for SCTP, are obsoleted by this document.</t>
              <t>SCTP was originally designed to transport Public Switched Telephone Network (PSTN) signaling messages over IP networks. It is also suited to be used for other applications, for example, WebRTC.</t>
              <t>SCTP is a reliable transport protocol operating on top of a connectionless packet network, such as IP. It offers the following services to its users:</t>
              <t>The design of SCTP includes appropriate congestion avoidance behavior and resistance to flooding and masquerade attacks.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9260"/>
          <seriesInfo name="DOI" value="10.17487/RFC9260"/>
        </reference>
        <reference anchor="RFC9002">
          <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="RFC4341">
          <front>
            <title>Profile for Datagram Congestion Control Protocol (DCCP) Congestion Control ID 2: TCP-like Congestion Control</title>
            <author fullname="S. Floyd" initials="S." surname="Floyd"/>
            <author fullname="E. Kohler" initials="E." surname="Kohler"/>
            <date month="March" year="2006"/>
            <abstract>
              <t>This document contains the profile for Congestion Control Identifier 2 (CCID 2), TCP-like Congestion Control, in the Datagram Congestion Control Protocol (DCCP). CCID 2 should be used by senders who would like to take advantage of the available bandwidth in an environment with rapidly changing conditions, and who are able to adapt to the abrupt changes in the congestion window typical of TCP's Additive Increase Multiplicative Decrease (AIMD) congestion control. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4341"/>
          <seriesInfo name="DOI" value="10.17487/RFC4341"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC7661">
          <front>
            <title>Updating TCP to Support Rate-Limited Traffic</title>
            <author fullname="G. Fairhurst" initials="G." surname="Fairhurst"/>
            <author fullname="A. Sathiaseelan" initials="A." surname="Sathiaseelan"/>
            <author fullname="R. Secchi" initials="R." surname="Secchi"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This document provides a mechanism to address issues that arise when TCP is used for traffic that exhibits periods where the sending rate is limited by the application rather than the congestion window. It provides an experimental update to TCP that allows a TCP sender to restart quickly following a rate-limited interval. This method is expected to benefit applications that send rate-limited traffic using TCP while also providing an appropriate response if congestion is experienced.</t>
              <t>This document also evaluates the Experimental specification of TCP Congestion Window Validation (CWV) defined in RFC 2861 and concludes that RFC 2861 sought to address important issues but failed to deliver a widely used solution. This document therefore reclassifies the status of RFC 2861 from Experimental to Historic. This document obsoletes RFC 2861.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7661"/>
          <seriesInfo name="DOI" value="10.17487/RFC7661"/>
        </reference>
      </references>
    </references>
    <?line 156?>

<!-- # Acknowledgments
{:numbered="false"}

TODO acknowledge. Note, numbered sections shouldn't appear
after an unnumbered one - so either move this last, or take
the numbering rule out. -->

<section anchor="the-state-of-rfcs-and-implementations">
      <name>The state of RFCs and implementations</name>
      <t>This section is provided as input for IETF discussion, and should be removed before publication.</t>
      <section anchor="tcp-reno-congestion-control">
        <name>TCP ("Reno" congestion control)</name>
        <section anchor="specification">
          <name>Specification</name>
          <t><xref target="RFC5681"/> does not contain a rule to limit the growth of cwnd when the sender is rate-limited. This statement (page 8) gives an impression that such cwnd growth might be expected:</t>
          <ul empty="true">
            <li>
              <t>Implementation Note: An easy mistake to make is to simply use cwnd, rather than FlightSize, which in some implementations may incidentally increase well beyond rwnd.</t>
            </li>
          </ul>
          <t><xref target="RFC7661"/> also suggests there is no increase limitation in the standard TCP behavior (which <xref target="RFC7661"/> changes), on page 4:</t>
          <ul empty="true">
            <li>
              <t>Standard TCP does not impose additional restrictions on the growth of
the congestion window when a TCP sender is unable to send at the
maximum rate allowed by the cwnd. In this case, the rate-limited
sender may grow a cwnd far beyond that corresponding to the current
transmit rate, resulting in a value that does not reflect current
information about the state of the network path the flow is using.</t>
            </li>
          </ul>
        </section>
        <section anchor="tcp-impl">
          <name>Implementation</name>
          <ul spacing="normal">
            <li>
              <t>ns-2 allows cwnd to grow when it is rate-limited by rwnd. (Rate-limited by the sending application: not tested.)</t>
            </li>
            <li>
              <t>ns-3 allows cwnd to grow when it is rate-limited by either an application or the rwnd.</t>
            </li>
            <li>
              <t>In Congestion Avoidance, Linux only allows the cwnd to grow when the sender is unconstrained.
Before kernel version 3.16, this also applied to Slow Start.
The check for "unconstrained" is perfomed by checking if FlightSize is greater or equal to cwnd.
Since kernel version 3.16, which was published in August 2014, in Slow Start, the increase
implements rule #2 in <xref target="rules"/> in the <tt>tcp_is_cwnd_limited</tt> function in <tt>tcp.h</tt>.</t>
            </li>
          </ul>
        </section>
        <section anchor="assessment">
          <name>Assessment</name>
          <t>Linux implements a limit to cwnd growth in accordance with rule #1 in <xref target="rules"/>;
in Slow Start, this limit follows rule #2, while in Congestion Avoidance, it is more conservative than rule #2.
The specification and the ns-2 and ns-3 implementations are in conflict with rules #1 and #2 in <xref target="rules"/>.</t>
        </section>
      </section>
      <section anchor="cubic">
        <name>CUBIC</name>
        <section anchor="specification-1">
          <name>Specification</name>
          <t><xref section="5.8" sectionFormat="of" target="RFC9438"/> says:</t>
          <ul empty="true">
            <li>
              <t>Cubic doesn't increase cwnd when it's limited by the sending application or rwnd.</t>
            </li>
          </ul>
        </section>
        <section anchor="implementation">
          <name>Implementation</name>
          <t>The description of Linux described in <xref target="tcp-impl"/> also applies to Cubic.</t>
        </section>
        <section anchor="assessment-1">
          <name>Assessment</name>
          <t>Both the specification and the Linux implementation limit the cwnd growth in accordance with rule #1 in <xref target="rules"/>;
in Congestion Avoidance, this limit is more conservative than rule #2 in <xref target="rules"/>,
and in Slow Start, it implements rule #2 in <xref target="rules"/>.</t>
        </section>
      </section>
      <section anchor="sctp">
        <name>SCTP</name>
        <section anchor="specification-2">
          <name>Specification</name>
          <t><xref section="7.2.1" sectionFormat="of" target="RFC9260"/> says:</t>
          <ul empty="true">
            <li>
              <t>When cwnd is less than or equal to ssthresh, an SCTP endpoint <bcp14>MUST</bcp14> use the slow-start algorithm to
increase cwnd only if the current congestion window is being fully utilized and the data sender
is not in Fast Recovery.
Only when these two conditions are met can the cwnd be increased; otherwise, the cwnd <bcp14>MUST NOT</bcp14> be increased.</t>
            </li>
          </ul>
        </section>
        <section anchor="assessment-2">
          <name>Assessment</name>
          <t>The quoted statement from <xref target="RFC9260"/> prescribes the same cwnd growth limitation that is also specified for Cubic and implemented for both Reno and Cubic in Linux.
It is in accordance with rule #1 in <xref target="rules"/>, and more conservative than rule #2 in <xref target="rules"/>.</t>
          <t><xref section="7.2.1" sectionFormat="of" target="RFC9260"/> is specifically limited to Slow Start.
Congestion Avoidance is discussed in <xref section="7.2.2" sectionFormat="of" target="RFC9260"/>
However, this section neither contains a similar rule, nor does it refer back to the rule that limits the growth of cwnd
in Section 7.2.1. It is thus implicitly clear that the quoted rule only applies to Slow Start, whereas the rules in <xref target="rules"/> apply to both Slow Start and Congestion Avoidance.</t>
        </section>
      </section>
      <section anchor="quic">
        <name>QUIC</name>
        <section anchor="specification-3">
          <name>Specification</name>
          <t><xref section="7.8" sectionFormat="of" target="RFC9002"/> states:</t>
          <ul empty="true">
            <li>
              <t>When bytes in flight is smaller than the congestion window and sending is not pacing limited, the congestion window is underutilized. This can happen due to insufficient application data or flow control limits. When this occurs, the congestion window <bcp14>SHOULD NOT</bcp14> be increased in either slow start or congestion avoidance.</t>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t>A sender that paces packets might delay sending packets and not fully utilize the congestion window due to this delay. A sender <bcp14>SHOULD NOT</bcp14> consider itself application limited if it would have fully utilized the congestion window without pacing delay.</t>
            </li>
          </ul>
        </section>
        <section anchor="assessment-3">
          <name>Assessment</name>
          <t>With the exception of pacing, this specification conservatively limits the growth in cwnd, similar to Cubic and SCTP.
The exception for pacing in the second paragraph requires that when pacing is enabled, it is specifically taken into account. Pacing could occur over various timescales, but
is typically done with delays below an RTT; thus, rule #2 in <xref target="rules"/> should cover this case.</t>
        </section>
      </section>
      <section anchor="dccp-ccid2">
        <name>DCCP CCID2</name>
        <section anchor="specification-4">
          <name>Specification</name>
          <t><xref section="5.1" sectionFormat="of" target="RFC4341"/> states:
&gt;    There are currently no standards governing TCP's use of the
   congestion window during an application-limited period.  In
   particular, it is possible for TCP's congestion window to grow quite
   large during a long uncongested period when the sender is application
   limited, sending at a low rate.  [RFC2861] essentially suggests that
   TCP's congestion window not be increased during application-limited
   periods when the congestion window is not being fully utilized.</t>
        </section>
        <section anchor="assessment-4">
          <name>Assessment</name>
          <t>A DCCP Congestion Control ID (CCID) specifing TCP-like behaviour ought to follow the method specified in this document. The current guidance relates only to !RFC2861.
The text in section 5.1 CCID2 !RFC4341, is updated by this document to specify the management of the
cwnd during an application-limited period.</t>
        </section>
      </section>
      <section anchor="other-transports">
        <name>Other Transports</name>
        <t>{XXX - Other protocols and mechanisms in RFCs include: TFRC; various multicast and multipath mechanisms; the RMCAT mechanisms for real-time media. Other protocol specs containing congestion control include: MPTCP, RTP extensions for CC. A DCCP Congestion Control ID (CCID) specifing TFRC-like behaviour (including CCID3 !RFC4341), needs to follow the recommendations for TFRC.</t>
        <t>This can get huge... how many / which of these should we discuss? XXX}</t>
      </section>
    </section>
    <section anchor="change-log">
      <name>Change Log</name>
      <t>-00 was the first individual submission for feedback by CCWG.
-01 includes editorial improvements
  -- Removes application interaction with QUIC pacing, since pacing is might be within the QUIC stack.
  -- Adds explicit mention of DCCP/CCID2.
  -- Adds this change log.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
