<?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.1 (Ruby 3.2.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-iab-privacy-partitioning-03" category="info" submissionType="IAB" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.18.1 -->
  <front>
    <title abbrev="Partitioning for Privacy">Partitioning as an Architecture for Privacy</title>
    <seriesInfo name="Internet-Draft" value="draft-iab-privacy-partitioning-03"/>
    <author fullname="Mirja Kühlewind">
      <organization>Ericsson Research</organization>
      <address>
        <email>mirja.kuehlewind@ericsson.com</email>
      </address>
    </author>
    <author fullname="Tommy Pauly">
      <organization>Apple</organization>
      <address>
        <email>tpauly@apple.com</email>
      </address>
    </author>
    <author fullname="Christopher A. Wood">
      <organization>Cloudflare</organization>
      <address>
        <email>caw@heapingbits.net</email>
      </address>
    </author>
    <date year="2023" month="October" day="06"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 33?>

<t>This document describes the principle of privacy partitioning, which selectively spreads data and communication across
multiple parties as a means to improve privacy by separating user identity from user data.
This document describes emerging patterns in protocols to partition what data and metadata is
revealed through protocol interactions, provides common terminology, and discusses how
to analyze such models.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Internet Architecture Board Internet Engineering Task Force mailing list (iab@iab.org),
    which is archived at <eref target=""/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/intarchboard/draft-obliviousness"/>.</t>
    </note>
  </front>
  <middle>
    <?line 41?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Protocols such as TLS and IPsec provide a secure (authenticated and encrypted) channel
between two endpoints over which endpoints transfer information. Encryption and authentication
of data in transit are necessary to protect information from being seen or modified by parties
other than the intended protocol participants. As such, this kind of security is necessary for ensuring that
information transferred over these channels remains private.</t>
      <t>However, a secure channel between two endpoints is insufficient for the privacy of the endpoints
themselves. In recent years, privacy requirements have expanded beyond the need to protect data in transit
between two endpoints. Some examples of this expansion include:</t>
      <ul spacing="normal">
        <li>
          <t>A user accessing a service on a website might not consent to reveal their location,
but if that service is able to observe the client's IP address, it can learn something
about the user's location. This is problematic for privacy since the service can link
user data to the user's location.</t>
        </li>
        <li>
          <t>A user might want to be able to access content for which they are authorized,
such as a news article, without needing to have which specific articles they
read on their account being recorded. This is problematic for privacy since the service
can link user activity to the user's account.</t>
        </li>
        <li>
          <t>A client device that needs to upload metrics to an aggregation service might want to be
able to contribute data to the system without having their specific contributions
attributed to them. This is problematic for privacy since the service can link client
contributions to the specific client.</t>
        </li>
      </ul>
      <t>The commonality in these examples is that clients want to interact with or use a service
without exposing too much user-specific or identifying information to that service. In particular,
separating the user-specific identity information from user-specific data is necessary for
privacy. Thus, in order to protect user privacy, it is important to keep identity (who) and data
(what) separate.</t>
      <t>This document defines "privacy partitioning," sometimes also referred to as the "decoupling principle"
<xref target="DECOUPLING"/>, as the general technique used to separate the data
and metadata visible to various parties in network communication, with the aim of improving
user privacy. Partitioning is a spectrum and not a panacea. It is difficult to guarantee there
is no link between user-specific identity and user-specific data. However, when applied properly,
privacy partitioning helps ensure that user privacy violations become more technically difficult
to achieve over time.</t>
      <t>Several IETF working groups are working on protocols or systems that adhere to the principle
of privacy partitioning, including Oblivious HTTP Application Intermediation (OHAI), Multiplexed Application Substrate over QUIC Encryption (MASQUE), Privacy Pass, and Privacy Preserving Measurement (PPM). This document summarizes
work in those groups and describes a framework for reasoning about the resulting privacy posture of different
endpoints in practice.</t>
      <t>Privacy partitioning is particularly relevant as a tool for data minimization, which is described
in <xref section="6.1" sectionFormat="of" target="RFC6973"/>. <xref target="RFC6973"/> provides guidance for privacy considerations in
Internet protocols, along with a set of questions on how to evaluate the data minimization
of a protocol in <xref section="7.1" sectionFormat="of" target="RFC6973"/>. Protocols that employ privacy partitioning
ought to consider the questions in that section when evaluating their design, particularly
with regard to how identifiers and data can be correlated by protocol participants and
observers in each context that has been partitioned. Privacy partitioning can also be
used as a way to separate identity providers from relying parties
(see <xref section="6.1.4" sectionFormat="of" target="RFC6973"/>), as in the case of Privacy Pass
(see Section <xref target="privacypass"/>).</t>
    </section>
    <section anchor="privacy-partitioning">
      <name>Privacy Partitioning</name>
      <t>For the purposes of user privacy, this document focuses on user-specific information. This
might include any identifying information that is specific to a user, such as their email
address or IP address, or data about the user, such as their date of birth. Informally,
the goal of privacy partitioning is to ensure that each party in a system beyond the user
themselves only have access to one type of user-specific information.</t>
      <t>This is a simple application of the principle of least privilege, wherein every party in
a system only has access to the minimum amount of information needed to fulfill their
function. Privacy partitioning advocates for this minimization by ensuring that protocols,
applications, and systems only reveal user-specific information to parties that need access
to the information for their intended purpose.</t>
      <t>Put simply, privacy partitioning aims to separate <em>who</em> someone is from <em>what</em> they do. In the
rest of this section, we describe how privacy partitioning can be used to achieve this goal.</t>
      <section anchor="privacy-contexts">
        <name>Privacy Contexts</name>
        <t>Each piece of user-specific information exists within some context, where a context
is abstractly defined as a set of data, metadata, and the entities that share access
to that information. In order to prevent the correlation of user-specific information across
contexts, partitions need to ensure that any single entity (other than the client itself)
does not participate in more than one context where the information is visible.</t>
        <t><xref target="RFC6973"/> discusses the importance of identifiers in reducing correlation as a way
of improving privacy:</t>
        <blockquote>
          <t>Correlation is the combination of various pieces of information related to an individual
or that obtain that characteristic when combined... Correlation is closely related to
identification.  Internet protocols can facilitate correlation by allowing individuals'
activities to be tracked and combined over time.</t>
          <t>Pseudonymity is strengthened when less personal data can be linked to the pseudonym; when
the same pseudonym is used less often and across fewer contexts; and when independently
chosen pseudonyms are more frequently used for new actions (making them, from an observer's or
attacker's perspective, unlinkable).</t>
        </blockquote>
        <t>Context separation is foundational to privacy partitioning and reducing correlation.
As an example, consider an unencrypted HTTP session over TCP, wherein the context includes both the
content of the transaction as well as any metadata from the transport and IP headers; and the
participants include the client, routers, other network middleboxes, intermediaries, and server.</t>
        <figure anchor="diagram-middlebox">
          <name>Diagram of a basic unencrypted client-to-server connection with middleboxes</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="176" width="560" viewBox="0 0 560 176" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,160" fill="none" stroke="black"/>
                <path d="M 32,64 L 32,128" fill="none" stroke="black"/>
                <path d="M 104,64 L 104,128" fill="none" stroke="black"/>
                <path d="M 240,64 L 240,128" fill="none" stroke="black"/>
                <path d="M 336,64 L 336,128" fill="none" stroke="black"/>
                <path d="M 456,64 L 456,128" fill="none" stroke="black"/>
                <path d="M 528,64 L 528,128" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,160" fill="none" stroke="black"/>
                <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 104,64" fill="none" stroke="black"/>
                <path d="M 240,64 L 336,64" fill="none" stroke="black"/>
                <path d="M 456,64 L 528,64" fill="none" stroke="black"/>
                <path d="M 104,80 L 152,80" fill="none" stroke="black"/>
                <path d="M 192,80 L 240,80" fill="none" stroke="black"/>
                <path d="M 336,80 L 456,80" fill="none" stroke="black"/>
                <path d="M 104,112 L 152,112" fill="none" stroke="black"/>
                <path d="M 184,112 L 240,112" fill="none" stroke="black"/>
                <path d="M 336,112 L 456,112" fill="none" stroke="black"/>
                <path d="M 32,128 L 104,128" fill="none" stroke="black"/>
                <path d="M 240,128 L 336,128" fill="none" stroke="black"/>
                <path d="M 456,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
                <g class="text">
                  <text x="48" y="52">Context</text>
                  <text x="88" y="52">A</text>
                  <text x="172" y="84">HTTP</text>
                  <text x="68" y="100">Client</text>
                  <text x="288" y="100">Middlebox</text>
                  <text x="492" y="100">Server</text>
                  <text x="168" y="116">TCP</text>
                  <text x="172" y="132">flow</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------------------------------------------------------------+
| Context A                                                         |
|  +--------+                +-----------+              +--------+  |
|  |        +------HTTP------+           +--------------+        |  |
|  | Client |                | Middlebox |              | Server |  |
|  |        +------TCP-------+           +--------------+        |  |
|  +--------+      flow      +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Adding TLS encryption to the HTTP session is a simple partitioning technique that splits the
previous context into two separate contexts: the content of the transaction is now only visible
to the client, TLS-terminating intermediaries, and server; while the metadata in transport and
IP headers remain in the original context. In this scenario, without any further partitioning,
the entities that participate in both contexts can allow the data in both contexts to be correlated.</t>
        <figure anchor="diagram-https">
          <name>Diagram of how adding encryption splits the context into two</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="560" viewBox="0 0 560 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,288" fill="none" stroke="black"/>
                <path d="M 32,64 L 32,128" fill="none" stroke="black"/>
                <path d="M 32,192 L 32,256" fill="none" stroke="black"/>
                <path d="M 104,64 L 104,128" fill="none" stroke="black"/>
                <path d="M 104,192 L 104,256" fill="none" stroke="black"/>
                <path d="M 240,192 L 240,256" fill="none" stroke="black"/>
                <path d="M 336,192 L 336,256" fill="none" stroke="black"/>
                <path d="M 456,64 L 456,128" fill="none" stroke="black"/>
                <path d="M 456,192 L 456,256" fill="none" stroke="black"/>
                <path d="M 528,64 L 528,128" fill="none" stroke="black"/>
                <path d="M 528,192 L 528,256" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,288" fill="none" stroke="black"/>
                <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 104,64" fill="none" stroke="black"/>
                <path d="M 456,64 L 528,64" fill="none" stroke="black"/>
                <path d="M 104,96 L 256,96" fill="none" stroke="black"/>
                <path d="M 304,96 L 456,96" fill="none" stroke="black"/>
                <path d="M 32,128 L 104,128" fill="none" stroke="black"/>
                <path d="M 456,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
                <path d="M 32,192 L 104,192" fill="none" stroke="black"/>
                <path d="M 240,192 L 336,192" fill="none" stroke="black"/>
                <path d="M 456,192 L 528,192" fill="none" stroke="black"/>
                <path d="M 104,224 L 160,224" fill="none" stroke="black"/>
                <path d="M 192,224 L 240,224" fill="none" stroke="black"/>
                <path d="M 336,224 L 456,224" fill="none" stroke="black"/>
                <path d="M 32,256 L 104,256" fill="none" stroke="black"/>
                <path d="M 240,256 L 336,256" fill="none" stroke="black"/>
                <path d="M 456,256 L 528,256" fill="none" stroke="black"/>
                <path d="M 8,288 L 552,288" fill="none" stroke="black"/>
                <g class="text">
                  <text x="48" y="52">Context</text>
                  <text x="88" y="52">A</text>
                  <text x="68" y="100">Client</text>
                  <text x="280" y="100">HTTPS</text>
                  <text x="492" y="100">Server</text>
                  <text x="48" y="180">Context</text>
                  <text x="88" y="180">B</text>
                  <text x="68" y="228">Client</text>
                  <text x="176" y="228">TCP</text>
                  <text x="288" y="228">Middlebox</text>
                  <text x="492" y="228">Server</text>
                  <text x="180" y="244">flow</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------------------------------------------------------------+
| Context A                                                         |
|  +--------+                                           +--------+  |
|  |        |                                           |        |  |
|  | Client +-------------------HTTPS-------------------+ Server |  |
|  |        |                                           |        |  |
|  +--------+                                           +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Context B                                                         |
|  +--------+                +-----------+              +--------+  |
|  |        |                |           |              |        |  |
|  | Client +-------TCP------+ Middlebox +--------------+ Server |  |
|  |        |       flow     |           |              |        |  |
|  +--------+                +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Another way to create a partition is to simply use separate connections. For example, to
split two separate HTTP requests from one another, a client could issue the requests on
separate TCP connections, each on a different network, and at different times; and avoid
including obvious identifiers like HTTP cookies across the requests.</t>
        <figure anchor="diagram-dualconnect">
          <name>Diagram of making separate connections to generate separate contexts</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="560" viewBox="0 0 560 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,288" fill="none" stroke="black"/>
                <path d="M 32,64 L 32,128" fill="none" stroke="black"/>
                <path d="M 32,192 L 32,256" fill="none" stroke="black"/>
                <path d="M 104,64 L 104,128" fill="none" stroke="black"/>
                <path d="M 104,192 L 104,256" fill="none" stroke="black"/>
                <path d="M 240,64 L 240,128" fill="none" stroke="black"/>
                <path d="M 240,192 L 240,256" fill="none" stroke="black"/>
                <path d="M 336,64 L 336,128" fill="none" stroke="black"/>
                <path d="M 336,192 L 336,256" fill="none" stroke="black"/>
                <path d="M 456,64 L 456,128" fill="none" stroke="black"/>
                <path d="M 456,192 L 456,256" fill="none" stroke="black"/>
                <path d="M 528,64 L 528,128" fill="none" stroke="black"/>
                <path d="M 528,192 L 528,256" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,288" fill="none" stroke="black"/>
                <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 104,64" fill="none" stroke="black"/>
                <path d="M 240,64 L 336,64" fill="none" stroke="black"/>
                <path d="M 456,64 L 528,64" fill="none" stroke="black"/>
                <path d="M 104,96 L 160,96" fill="none" stroke="black"/>
                <path d="M 192,96 L 240,96" fill="none" stroke="black"/>
                <path d="M 336,96 L 456,96" fill="none" stroke="black"/>
                <path d="M 32,128 L 104,128" fill="none" stroke="black"/>
                <path d="M 240,128 L 336,128" fill="none" stroke="black"/>
                <path d="M 456,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
                <path d="M 32,192 L 104,192" fill="none" stroke="black"/>
                <path d="M 240,192 L 336,192" fill="none" stroke="black"/>
                <path d="M 456,192 L 528,192" fill="none" stroke="black"/>
                <path d="M 104,224 L 160,224" fill="none" stroke="black"/>
                <path d="M 192,224 L 240,224" fill="none" stroke="black"/>
                <path d="M 336,224 L 456,224" fill="none" stroke="black"/>
                <path d="M 32,256 L 104,256" fill="none" stroke="black"/>
                <path d="M 240,256 L 336,256" fill="none" stroke="black"/>
                <path d="M 456,256 L 528,256" fill="none" stroke="black"/>
                <path d="M 8,288 L 552,288" fill="none" stroke="black"/>
                <g class="text">
                  <text x="48" y="52">Context</text>
                  <text x="88" y="52">A</text>
                  <text x="124" y="84">IP</text>
                  <text x="144" y="84">A</text>
                  <text x="68" y="100">Client</text>
                  <text x="176" y="100">TCP</text>
                  <text x="288" y="100">Middlebox</text>
                  <text x="492" y="100">Server</text>
                  <text x="172" y="116">flow</text>
                  <text x="200" y="116">A</text>
                  <text x="288" y="116">A</text>
                  <text x="48" y="180">Context</text>
                  <text x="88" y="180">B</text>
                  <text x="124" y="212">IP</text>
                  <text x="144" y="212">B</text>
                  <text x="68" y="228">Client</text>
                  <text x="176" y="228">TCP</text>
                  <text x="288" y="228">Middlebox</text>
                  <text x="492" y="228">Server</text>
                  <text x="172" y="244">flow</text>
                  <text x="200" y="244">B</text>
                  <text x="288" y="244">B</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------------------------------------------------------------+
| Context A                                                         |
|  +--------+                +-----------+              +--------+  |
|  |        | IP A           |           |              |        |  |
|  | Client +-------TCP------+ Middlebox +--------------+ Server |  |
|  |        |      flow A    |     A     |              |        |  |
|  +--------+                +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Context B                                                         |
|  +--------+                +-----------+              +--------+  |
|  |        | IP B           |           |              |        |  |
|  | Client +-------TCP------+ Middlebox +--------------+ Server |  |
|  |        |      flow B    |     B     |              |        |  |
|  +--------+                +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Using separate connections to create separate contexts can reduce or eliminate
the ability of specific parties to correlate activity across contexts. However,
any identifier at any layer that is common across different contexts can be
used as a way to correlate activity. Beyond IP addresses, many other factors
can be used together to create a fingerprint of a specific device (such as
MAC addresses, device properties, software properties and behavior, application state, etc).</t>
      </section>
      <section anchor="context-separation">
        <name>Context Separation</name>
        <t>In order to define and analyze how various partitioning techniques work, the boundaries of what is
being partitioned need to be established. This is the role of context separation. In particular,
in order to prevent the correlation of user-specific information across contexts, partitions need
to ensure that any single entity (other than the client itself) does not participate in contexts
where both identities are visible.</t>
        <t>Context separation can be achieved in different ways, for example, over time, across network paths, based
on (en)coding, etc. The privacy-oriented protocols described in this document generally involve
more complex partitioning, but the techniques to partition communication contexts still employ the
same techniques:</t>
        <ol spacing="normal" type="1"><li>
            <t>Encryption allows partitioning of contexts within a given network path.</t>
          </li>
          <li>
            <t>Using separate connections across time or space allows partitioning of contexts for different
application transactions.</t>
          </li>
        </ol>
        <t>These techniques are frequently used in conjunction for context separation. For example,
encrypting an HTTP exchange might prevent a network middlebox that sees a client IP address
from seeing the user account identity, but it doesn't prevent the TLS-terminating server
from observing both identities and correlating them. As such, preventing correlation
requires separating contexts, such as by using proxying to conceal a client's IP address
that would otherwise be used as an identifier.</t>
      </section>
      <section anchor="approaches-to-partitioning">
        <name>Approaches to Partitioning</name>
        <t>While all of the partitioning protocols described in this document create
separate contexts using encryption and/or connection separation, each one has a
unique approach that results in different sets of contexts. Since many of
these protocols are new, it is yet to be seen how each approach will be
used at scale across the Internet, and what new models will emerge in the
future.</t>
        <t>There are multiple factors that lead to a diversity in approaches to
partitioning, including:</t>
        <ul spacing="normal">
          <li>
            <t>Adding privacy partitioning to existing protocol ecosystems places
requirements and constraints on how contexts are constructed. CONNECT-style
proxying is intended to work with servers that are unaware of privacy contexts,
requiring more intermediaries to provide strong separation guarantees.
Oblivious HTTP, on the other hand, assumes servers that cooperate with context
separation, and thus reduces the overall number of elements in the solution.</t>
          </li>
          <li>
            <t>Whether or not information exchange needs to happen bidirectionally in an
interactive fashion determines how contexts can be separated. Some use cases,
like metrics collection for PPM, can occur with information flowing only from
clients to servers, and can function even when clients are no longer connected.
Privacy Pass is an example of a case that can be either interactive or not,
depending on whether tokens can be cached and reused. CONNECT-style proxying and
Oblivious HTTP often requires bidirectional and interactive communication.</t>
          </li>
          <li>
            <t>The degree to which contexts need to be partitioned depends in part
on the client's threat models and level of trust in various protocol participants. For example,
in Oblivious HTTP, clients allow relays to learn that clients are accessing a particular
application-specific gateway. If clients do not trust relays with this information, they can
instead use a multi-hop CONNECT-style proxy approach wherein no single party learns
whether specific clients are accessing a specific application. This is the default trust model
for systems like Tor, where multiple hops are used to drive down the probability of privacy
violations due to collusion or related attacks.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="a-survey-of-protocols-using-partitioning">
      <name>A Survey of Protocols using Partitioning</name>
      <t>The following section discusses current on-going work in the IETF
that is applying privacy partitioning.</t>
      <section anchor="masque">
        <name>CONNECT Proxying and MASQUE</name>
        <t>HTTP forward proxies, when using encryption on the connection between the client and the
proxy, provide privacy partitioning by separating a connection into multiple segments.
When connections to targets via the proxy themselves are encrypted,
the proxy cannot see the end-to-end content. HTTP has historically supported forward proxying
for TCP-like streams via the CONNECT method. More recently, the Multiplexed Application
Substrate over QUIC Encryption (MASQUE) working group has developed
protocols to similarly proxy UDP <xref target="CONNECT-UDP"/> and IP packets
<xref target="CONNECT-IP"/> based on tunneling.</t>
        <t>In a single-proxy setup, there is a tunnel connection between the client and proxy and
an end-to-end connection that is tunnelled between the client and target. This setup,
as shown in the figure below, partitions communication into:</t>
        <ul spacing="normal">
          <li>
            <t>a Client-to-Target encrypted context, which contains the end-to-end content
within the TLS session to the target, such as HTTP content;</t>
          </li>
          <li>
            <t>a Client-to-Target proxied context, which is the end-to-end data to the target that is
also visible to the proxy, such as a TLS session;</t>
          </li>
          <li>
            <t>a Client-to-Proxy context, which contains the transport metadata between the client
and the target, and the request to the proxy to open a connection to the target;</t>
          </li>
          <li>
            <t>and a Proxy-to-Target context, which for TCP and UDP proxying
contains any packet header information that is added or modified by the proxy,
e.g., the IP and TCP/UDP headers.</t>
          </li>
        </ul>
        <figure anchor="diagram-1hop">
          <name>Diagram of one-hop proxy contexts</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="560" width="560" viewBox="0 0 560 560" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,544" fill="none" stroke="black"/>
                <path d="M 32,64 L 32,128" fill="none" stroke="black"/>
                <path d="M 32,192 L 32,256" fill="none" stroke="black"/>
                <path d="M 32,320 L 32,384" fill="none" stroke="black"/>
                <path d="M 104,64 L 104,128" fill="none" stroke="black"/>
                <path d="M 104,192 L 104,256" fill="none" stroke="black"/>
                <path d="M 104,320 L 104,384" fill="none" stroke="black"/>
                <path d="M 240,192 L 240,256" fill="none" stroke="black"/>
                <path d="M 240,320 L 240,384" fill="none" stroke="black"/>
                <path d="M 240,448 L 240,512" fill="none" stroke="black"/>
                <path d="M 336,192 L 336,256" fill="none" stroke="black"/>
                <path d="M 336,320 L 336,384" fill="none" stroke="black"/>
                <path d="M 336,448 L 336,512" fill="none" stroke="black"/>
                <path d="M 456,64 L 456,128" fill="none" stroke="black"/>
                <path d="M 456,192 L 456,256" fill="none" stroke="black"/>
                <path d="M 456,448 L 456,512" fill="none" stroke="black"/>
                <path d="M 528,64 L 528,128" fill="none" stroke="black"/>
                <path d="M 528,192 L 528,256" fill="none" stroke="black"/>
                <path d="M 528,448 L 528,512" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,544" fill="none" stroke="black"/>
                <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 104,64" fill="none" stroke="black"/>
                <path d="M 456,64 L 528,64" fill="none" stroke="black"/>
                <path d="M 104,96 L 248,96" fill="none" stroke="black"/>
                <path d="M 296,96 L 456,96" fill="none" stroke="black"/>
                <path d="M 32,128 L 104,128" fill="none" stroke="black"/>
                <path d="M 456,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
                <path d="M 32,192 L 104,192" fill="none" stroke="black"/>
                <path d="M 240,192 L 336,192" fill="none" stroke="black"/>
                <path d="M 456,192 L 528,192" fill="none" stroke="black"/>
                <path d="M 104,224 L 136,224" fill="none" stroke="black"/>
                <path d="M 200,224 L 240,224" fill="none" stroke="black"/>
                <path d="M 336,224 L 456,224" fill="none" stroke="black"/>
                <path d="M 32,256 L 104,256" fill="none" stroke="black"/>
                <path d="M 240,256 L 336,256" fill="none" stroke="black"/>
                <path d="M 456,256 L 528,256" fill="none" stroke="black"/>
                <path d="M 8,288 L 552,288" fill="none" stroke="black"/>
                <path d="M 32,320 L 104,320" fill="none" stroke="black"/>
                <path d="M 240,320 L 336,320" fill="none" stroke="black"/>
                <path d="M 104,352 L 128,352" fill="none" stroke="black"/>
                <path d="M 208,352 L 240,352" fill="none" stroke="black"/>
                <path d="M 32,384 L 104,384" fill="none" stroke="black"/>
                <path d="M 240,384 L 336,384" fill="none" stroke="black"/>
                <path d="M 8,416 L 552,416" fill="none" stroke="black"/>
                <path d="M 240,448 L 336,448" fill="none" stroke="black"/>
                <path d="M 456,448 L 528,448" fill="none" stroke="black"/>
                <path d="M 336,480 L 352,480" fill="none" stroke="black"/>
                <path d="M 432,480 L 456,480" fill="none" stroke="black"/>
                <path d="M 240,512 L 336,512" fill="none" stroke="black"/>
                <path d="M 456,512 L 528,512" fill="none" stroke="black"/>
                <path d="M 8,544 L 552,544" fill="none" stroke="black"/>
                <g class="text">
                  <text x="84" y="52">Client-to-Target</text>
                  <text x="192" y="52">Encrypted</text>
                  <text x="264" y="52">Context</text>
                  <text x="68" y="100">Client</text>
                  <text x="272" y="100">HTTPS</text>
                  <text x="492" y="100">Target</text>
                  <text x="272" y="116">content</text>
                  <text x="84" y="180">Client-to-Target</text>
                  <text x="184" y="180">Proxied</text>
                  <text x="248" y="180">Context</text>
                  <text x="68" y="228">Client</text>
                  <text x="168" y="228">Proxied</text>
                  <text x="288" y="228">Proxy</text>
                  <text x="492" y="228">Target</text>
                  <text x="152" y="244">TLS</text>
                  <text x="188" y="244">flow</text>
                  <text x="80" y="308">Client-to-Proxy</text>
                  <text x="176" y="308">Context</text>
                  <text x="68" y="356">Client</text>
                  <text x="168" y="356">Transport</text>
                  <text x="288" y="356">Proxy</text>
                  <text x="164" y="372">flow</text>
                  <text x="80" y="436">Proxy-to-Target</text>
                  <text x="176" y="436">Context</text>
                  <text x="288" y="484">Proxy</text>
                  <text x="392" y="484">Transport</text>
                  <text x="492" y="484">Target</text>
                  <text x="388" y="500">flow</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------------------------------------------------------------+
| Client-to-Target Encrypted Context                                |
|  +--------+                                           +--------+  |
|  |        |                                           |        |  |
|  | Client +------------------HTTPS--------------------+ Target |  |
|  |        |                 content                   |        |  |
|  +--------+                                           +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Target Proxied Context                                  |
|  +--------+                +-----------+              +--------+  |
|  |        |                |           |              |        |  |
|  | Client +----Proxied-----+   Proxy   +--------------+ Target |  |
|  |        |    TLS flow    |           |              |        |  |
|  +--------+                +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Proxy Context                                           |
|  +--------+                +-----------+                          |
|  |        |                |           |                          |
|  | Client +---Transport----+   Proxy   |                          |
|  |        |     flow       |           |                          |
|  +--------+                +-----------+                          |
|                                                                   |
+-------------------------------------------------------------------+
| Proxy-to-Target Context                                           |
|                            +-----------+              +--------+  |
|                            |           |              |        |  |
|                            |   Proxy   +--Transport---+ Target |  |
|                            |           |    flow      |        |  |
|                            +-----------+              +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Using two (or more) proxies provides better privacy partitioning. In particular, with two proxies,
each proxy sees the Client metadata, but not the Target; the Target, but not the Client
metadata; or neither.</t>
        <t>In addition to the contexts described above for the single proxy case,
the two-hop proxy case shown in the figure below changes the contexts
in several ways:</t>
        <ul spacing="normal">
          <li>
            <t>the Client-to-Target proxied context only includes the second proxy
(referred to here as "Proxy B");</t>
          </li>
          <li>
            <t>a new Client-to-Proxy B context is added, which is the TLS session
from the client to Proxy B that is also visible to the first proxy
(referred to here as "Proxy A");</t>
          </li>
          <li>
            <t>the contexts that see transport data only (TCP or UDP over IP)
are separated out into three separate contexts, a Client-to-Proxy A
context, a Proxy A-to-Proxy B context, and a Proxy B-to-Target context.</t>
          </li>
        </ul>
        <figure anchor="diagram-2hop">
          <name>Diagram of two-hop proxy contexts</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="816" width="560" viewBox="0 0 560 816" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,800" fill="none" stroke="black"/>
                <path d="M 32,64 L 32,128" fill="none" stroke="black"/>
                <path d="M 32,192 L 32,256" fill="none" stroke="black"/>
                <path d="M 32,320 L 32,384" fill="none" stroke="black"/>
                <path d="M 32,448 L 32,512" fill="none" stroke="black"/>
                <path d="M 104,64 L 104,128" fill="none" stroke="black"/>
                <path d="M 104,192 L 104,256" fill="none" stroke="black"/>
                <path d="M 104,320 L 104,384" fill="none" stroke="black"/>
                <path d="M 104,448 L 104,512" fill="none" stroke="black"/>
                <path d="M 184,320 L 184,384" fill="none" stroke="black"/>
                <path d="M 184,448 L 184,512" fill="none" stroke="black"/>
                <path d="M 184,576 L 184,640" fill="none" stroke="black"/>
                <path d="M 248,320 L 248,384" fill="none" stroke="black"/>
                <path d="M 248,448 L 248,512" fill="none" stroke="black"/>
                <path d="M 248,576 L 248,640" fill="none" stroke="black"/>
                <path d="M 328,192 L 328,256" fill="none" stroke="black"/>
                <path d="M 328,320 L 328,384" fill="none" stroke="black"/>
                <path d="M 328,576 L 328,640" fill="none" stroke="black"/>
                <path d="M 328,704 L 328,768" fill="none" stroke="black"/>
                <path d="M 392,192 L 392,256" fill="none" stroke="black"/>
                <path d="M 392,320 L 392,384" fill="none" stroke="black"/>
                <path d="M 392,576 L 392,640" fill="none" stroke="black"/>
                <path d="M 392,704 L 392,768" fill="none" stroke="black"/>
                <path d="M 456,64 L 456,128" fill="none" stroke="black"/>
                <path d="M 456,192 L 456,256" fill="none" stroke="black"/>
                <path d="M 456,704 L 456,768" fill="none" stroke="black"/>
                <path d="M 528,64 L 528,128" fill="none" stroke="black"/>
                <path d="M 528,192 L 528,256" fill="none" stroke="black"/>
                <path d="M 528,704 L 528,768" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,800" fill="none" stroke="black"/>
                <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 104,64" fill="none" stroke="black"/>
                <path d="M 456,64 L 528,64" fill="none" stroke="black"/>
                <path d="M 104,96 L 248,96" fill="none" stroke="black"/>
                <path d="M 296,96 L 456,96" fill="none" stroke="black"/>
                <path d="M 32,128 L 104,128" fill="none" stroke="black"/>
                <path d="M 456,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
                <path d="M 32,192 L 104,192" fill="none" stroke="black"/>
                <path d="M 328,192 L 392,192" fill="none" stroke="black"/>
                <path d="M 456,192 L 528,192" fill="none" stroke="black"/>
                <path d="M 104,224 L 184,224" fill="none" stroke="black"/>
                <path d="M 248,224 L 328,224" fill="none" stroke="black"/>
                <path d="M 392,224 L 456,224" fill="none" stroke="black"/>
                <path d="M 32,256 L 104,256" fill="none" stroke="black"/>
                <path d="M 328,256 L 392,256" fill="none" stroke="black"/>
                <path d="M 456,256 L 528,256" fill="none" stroke="black"/>
                <path d="M 8,288 L 552,288" fill="none" stroke="black"/>
                <path d="M 32,320 L 104,320" fill="none" stroke="black"/>
                <path d="M 184,320 L 248,320" fill="none" stroke="black"/>
                <path d="M 328,320 L 392,320" fill="none" stroke="black"/>
                <path d="M 104,352 L 184,352" fill="none" stroke="black"/>
                <path d="M 248,352 L 328,352" fill="none" stroke="black"/>
                <path d="M 32,384 L 104,384" fill="none" stroke="black"/>
                <path d="M 184,384 L 248,384" fill="none" stroke="black"/>
                <path d="M 328,384 L 392,384" fill="none" stroke="black"/>
                <path d="M 8,416 L 552,416" fill="none" stroke="black"/>
                <path d="M 32,448 L 104,448" fill="none" stroke="black"/>
                <path d="M 184,448 L 248,448" fill="none" stroke="black"/>
                <path d="M 104,480 L 184,480" fill="none" stroke="black"/>
                <path d="M 32,512 L 104,512" fill="none" stroke="black"/>
                <path d="M 184,512 L 248,512" fill="none" stroke="black"/>
                <path d="M 8,544 L 552,544" fill="none" stroke="black"/>
                <path d="M 184,576 L 248,576" fill="none" stroke="black"/>
                <path d="M 328,576 L 392,576" fill="none" stroke="black"/>
                <path d="M 248,608 L 328,608" fill="none" stroke="black"/>
                <path d="M 184,640 L 248,640" fill="none" stroke="black"/>
                <path d="M 328,640 L 392,640" fill="none" stroke="black"/>
                <path d="M 8,672 L 552,672" fill="none" stroke="black"/>
                <path d="M 328,704 L 392,704" fill="none" stroke="black"/>
                <path d="M 456,704 L 528,704" fill="none" stroke="black"/>
                <path d="M 392,736 L 456,736" fill="none" stroke="black"/>
                <path d="M 328,768 L 392,768" fill="none" stroke="black"/>
                <path d="M 456,768 L 528,768" fill="none" stroke="black"/>
                <path d="M 8,800 L 552,800" fill="none" stroke="black"/>
                <g class="text">
                  <text x="84" y="52">Client-to-Target</text>
                  <text x="192" y="52">Encrypted</text>
                  <text x="264" y="52">Context</text>
                  <text x="68" y="100">Client</text>
                  <text x="272" y="100">HTTPS</text>
                  <text x="492" y="100">Target</text>
                  <text x="272" y="116">content</text>
                  <text x="84" y="180">Client-to-Target</text>
                  <text x="184" y="180">Proxied</text>
                  <text x="248" y="180">Context</text>
                  <text x="68" y="228">Client</text>
                  <text x="216" y="228">Proxied</text>
                  <text x="360" y="228">Proxy</text>
                  <text x="492" y="228">Target</text>
                  <text x="200" y="244">TLS</text>
                  <text x="236" y="244">flow</text>
                  <text x="360" y="244">B</text>
                  <text x="80" y="308">Client-to-Proxy</text>
                  <text x="152" y="308">B</text>
                  <text x="192" y="308">Context</text>
                  <text x="68" y="356">Client</text>
                  <text x="216" y="356">Proxy</text>
                  <text x="360" y="356">Proxy</text>
                  <text x="216" y="372">A</text>
                  <text x="360" y="372">B</text>
                  <text x="80" y="436">Client-to-Proxy</text>
                  <text x="152" y="436">A</text>
                  <text x="192" y="436">Context</text>
                  <text x="68" y="484">Client</text>
                  <text x="216" y="484">Proxy</text>
                  <text x="216" y="500">A</text>
                  <text x="40" y="564">Proxy</text>
                  <text x="108" y="564">A-to-Proxy</text>
                  <text x="160" y="564">B</text>
                  <text x="200" y="564">Context</text>
                  <text x="216" y="612">Proxy</text>
                  <text x="360" y="612">Proxy</text>
                  <text x="216" y="628">A</text>
                  <text x="360" y="628">B</text>
                  <text x="40" y="692">Proxy</text>
                  <text x="112" y="692">B-to-Target</text>
                  <text x="192" y="692">Context</text>
                  <text x="360" y="740">Proxy</text>
                  <text x="492" y="740">Target</text>
                  <text x="360" y="756">B</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------------------------------------------------------------+
| Client-to-Target Encrypted Context                                |
|  +--------+                                           +--------+  |
|  |        |                                           |        |  |
|  | Client +------------------HTTPS--------------------+ Target |  |
|  |        |                 content                   |        |  |
|  +--------+                                           +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Target Proxied Context                                  |
|  +--------+                           +-------+       +--------+  |
|  |        |                           |       |       |        |  |
|  | Client +----------Proxied----------+ Proxy +-------+ Target |  |
|  |        |          TLS flow         |   B   |       |        |  |
|  +--------+                           +-------+       +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Proxy B Context                                         |
|  +--------+         +-------+         +-------+                   |
|  |        |         |       |         |       |                   |
|  | Client +---------+ Proxy +---------+ Proxy |                   |
|  |        |         |   A   |         |   B   |                   |
|  +--------+         +-------+         +-------+                   |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Proxy A Context                                         |
|  +--------+         +-------+                                     |
|  |        |         |       |                                     |
|  | Client +---------+ Proxy |                                     |
|  |        |         |   A   |                                     |
|  +--------+         +-------+                                     |
|                                                                   |
+-------------------------------------------------------------------+
| Proxy A-to-Proxy B Context                                        |
|                     +-------+         +-------+                   |
|                     |       |         |       |                   |
|                     | Proxy +---------+ Proxy |                   |
|                     |   A   |         |   B   |                   |
|                     +-------+         +-------+                   |
|                                                                   |
+-------------------------------------------------------------------+
| Proxy B-to-Target Context                                         |
|                                       +-------+       +--------+  |
|                                       |       |       |        |  |
|                                       | Proxy +-------+ Target |  |
|                                       |   B   |       |        |  |
|                                       +-------+       +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Forward proxying, such as the protocols developed in MASQUE, uses both encryption (via TLS) and
separation of connections (via proxy hops that see only the next hop) to achieve privacy partitioning.</t>
      </section>
      <section anchor="oblivious-http-and-dns">
        <name>Oblivious HTTP and DNS</name>
        <t>Oblivious HTTP <xref target="OHTTP"/>, developed in the Oblivious HTTP Application
Intermediation (OHAI) working group, adds per-message
encryption to HTTP exchanges through a relay system. Clients send requests through an Oblivious Relay,
which cannot read message contents, to an Oblivious Gateway, which can decrypt the messages but
cannot communicate directly with the client or observe client metadata like IP address.
Oblivious HTTP relies on Hybrid Public Key Encryption <xref target="HPKE"/> to perform encryption.</t>
        <t>Oblivious HTTP uses both encryption and separation of connections to achieve privacy partitioning.</t>
        <ul spacing="normal">
          <li>
            <t>End-to-end messages are encrypted between the Client and Gateway. The
content of these inner messages are visible to the Client, Gateway, and
Target. This is the Client-to-Target context.</t>
          </li>
          <li>
            <t>The encrypted messages exchanged between the Client and Gateway
are visible to the Relay, but the Relay cannot decrypt the messages.
This is the Client-to-Gateway context.</t>
          </li>
          <li>
            <t>The transport (such as TCP and TLS) connections between the Client,
Relay, and Gateway form two separate contexts: a Client-to-Relay
context and a Relay-to-Gateway context. It is important
to note that the Relay-to-Gateway connection can be a single connection,
even if the Relay has many separate Clients. This provides better anonymity
by making the pseudonym presented by the Relay to be shared across many Clients.</t>
          </li>
        </ul>
        <figure anchor="diagram-ohttp">
          <name>Diagram of Oblivious HTTP contexts</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="560" width="560" viewBox="0 0 560 560" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,544" fill="none" stroke="black"/>
                <path d="M 32,64 L 32,128" fill="none" stroke="black"/>
                <path d="M 32,192 L 32,256" fill="none" stroke="black"/>
                <path d="M 32,320 L 32,384" fill="none" stroke="black"/>
                <path d="M 104,64 L 104,128" fill="none" stroke="black"/>
                <path d="M 104,192 L 104,256" fill="none" stroke="black"/>
                <path d="M 104,320 L 104,384" fill="none" stroke="black"/>
                <path d="M 184,192 L 184,256" fill="none" stroke="black"/>
                <path d="M 184,320 L 184,384" fill="none" stroke="black"/>
                <path d="M 184,448 L 184,512" fill="none" stroke="black"/>
                <path d="M 248,192 L 248,256" fill="none" stroke="black"/>
                <path d="M 248,320 L 248,384" fill="none" stroke="black"/>
                <path d="M 248,448 L 248,512" fill="none" stroke="black"/>
                <path d="M 328,64 L 328,128" fill="none" stroke="black"/>
                <path d="M 328,192 L 328,256" fill="none" stroke="black"/>
                <path d="M 328,448 L 328,512" fill="none" stroke="black"/>
                <path d="M 408,64 L 408,128" fill="none" stroke="black"/>
                <path d="M 408,192 L 408,256" fill="none" stroke="black"/>
                <path d="M 408,448 L 408,512" fill="none" stroke="black"/>
                <path d="M 456,64 L 456,128" fill="none" stroke="black"/>
                <path d="M 528,64 L 528,128" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,544" fill="none" stroke="black"/>
                <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 104,64" fill="none" stroke="black"/>
                <path d="M 328,64 L 408,64" fill="none" stroke="black"/>
                <path d="M 456,64 L 528,64" fill="none" stroke="black"/>
                <path d="M 104,96 L 328,96" fill="none" stroke="black"/>
                <path d="M 408,96 L 456,96" fill="none" stroke="black"/>
                <path d="M 32,128 L 104,128" fill="none" stroke="black"/>
                <path d="M 328,128 L 408,128" fill="none" stroke="black"/>
                <path d="M 456,128 L 528,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
                <path d="M 32,192 L 104,192" fill="none" stroke="black"/>
                <path d="M 184,192 L 248,192" fill="none" stroke="black"/>
                <path d="M 328,192 L 408,192" fill="none" stroke="black"/>
                <path d="M 104,224 L 184,224" fill="none" stroke="black"/>
                <path d="M 248,224 L 328,224" fill="none" stroke="black"/>
                <path d="M 32,256 L 104,256" fill="none" stroke="black"/>
                <path d="M 184,256 L 248,256" fill="none" stroke="black"/>
                <path d="M 328,256 L 408,256" fill="none" stroke="black"/>
                <path d="M 8,288 L 552,288" fill="none" stroke="black"/>
                <path d="M 32,320 L 104,320" fill="none" stroke="black"/>
                <path d="M 184,320 L 248,320" fill="none" stroke="black"/>
                <path d="M 104,352 L 184,352" fill="none" stroke="black"/>
                <path d="M 32,384 L 104,384" fill="none" stroke="black"/>
                <path d="M 184,384 L 248,384" fill="none" stroke="black"/>
                <path d="M 8,416 L 552,416" fill="none" stroke="black"/>
                <path d="M 184,448 L 248,448" fill="none" stroke="black"/>
                <path d="M 328,448 L 408,448" fill="none" stroke="black"/>
                <path d="M 248,480 L 328,480" fill="none" stroke="black"/>
                <path d="M 184,512 L 248,512" fill="none" stroke="black"/>
                <path d="M 328,512 L 408,512" fill="none" stroke="black"/>
                <path d="M 8,544 L 552,544" fill="none" stroke="black"/>
                <g class="text">
                  <text x="84" y="52">Client-to-Target</text>
                  <text x="184" y="52">Context</text>
                  <text x="68" y="100">Client</text>
                  <text x="368" y="100">Gateway</text>
                  <text x="492" y="100">Target</text>
                  <text x="88" y="180">Client-to-Gateway</text>
                  <text x="192" y="180">Context</text>
                  <text x="68" y="228">Client</text>
                  <text x="216" y="228">Relay</text>
                  <text x="368" y="228">Gateway</text>
                  <text x="80" y="308">Client-to-Relay</text>
                  <text x="176" y="308">Context</text>
                  <text x="68" y="356">Client</text>
                  <text x="216" y="356">Relay</text>
                  <text x="84" y="436">Relay-to-Gateway</text>
                  <text x="184" y="436">Context</text>
                  <text x="216" y="484">Relay</text>
                  <text x="368" y="484">Gateway</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------------------------------------------------------------+
| Client-to-Target Context                                          |
|  +--------+                           +---------+     +--------+  |
|  |        |                           |         |     |        |  |
|  | Client +---------------------------+ Gateway +-----+ Target |  |
|  |        |                           |         |     |        |  |
|  +--------+                           +---------+     +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Gateway Context                                         |
|  +--------+         +-------+         +---------+                 |
|  |        |         |       |         |         |                 |
|  | Client +---------+ Relay +---------+ Gateway |                 |
|  |        |         |       |         |         |                 |
|  +--------+         +-------+         +---------+                 |
|                                                                   |
+-------------------------------------------------------------------+
| Client-to-Relay Context                                           |
|  +--------+         +-------+                                     |
|  |        |         |       |                                     |
|  | Client +---------+ Relay |                                     |
|  |        |         |       |                                     |
|  +--------+         +-------+                                     |
|                                                                   |
+-------------------------------------------------------------------+
| Relay-to-Gateway Context                                          |
|                     +-------+         +---------+                 |
|                     |       |         |         |                 |
|                     + Relay +---------+ Gateway |                 |
|                     |       |         |         |                 |
|                     +-------+         +---------+                 |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Oblivious DNS over HTTPS <xref target="ODOH"/> applies the same principle as Oblivious HTTP, but operates on
DNS messages only. As a precursor to the more generalized Oblivious HTTP, it relies on the same
HPKE cryptographic primitives, and can be analyzed in the same way.</t>
      </section>
      <section anchor="privacypass">
        <name>Privacy Pass</name>
        <t>Privacy Pass is an architecture <xref target="PRIVACYPASS"/> and a set of protocols
being developed in the Privacy Pass working group that allows clients to present proof of verification in
an anonymous and unlinkable fashion, via tokens. These tokens originally were designed as a way to prove
that a client had solved a CAPTCHA, but can be applied to other types of user or device attestation checks
as well. In Privacy Pass, clients interact with an attester and issuer for the purposes of issuing a token,
and clients then interact with an origin server to redeem said token.</t>
        <t>In Privacy Pass, privacy partitioning is achieved with cryptographic protection (in the form of blind
signature protocols or similar) and separation of connections across two contexts:
a "redemption context" between clients and origins (servers that request and receive tokens), and an
"issuance context" between clients, attestation servers, and token issuance servers. The cryptographic
protection ensures that information revealed during the issuance context is separated from information
revealed during the redemption context.</t>
        <figure anchor="diagram-privacypass">
          <name>Diagram of contexts in Privacy Pass</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="304" width="560" viewBox="0 0 560 304" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,288" fill="none" stroke="black"/>
                <path d="M 32,64 L 32,128" fill="none" stroke="black"/>
                <path d="M 104,64 L 104,128" fill="none" stroke="black"/>
                <path d="M 184,64 L 184,128" fill="none" stroke="black"/>
                <path d="M 184,192 L 184,256" fill="none" stroke="black"/>
                <path d="M 256,64 L 256,128" fill="none" stroke="black"/>
                <path d="M 256,192 L 256,256" fill="none" stroke="black"/>
                <path d="M 312,192 L 312,256" fill="none" stroke="black"/>
                <path d="M 400,192 L 400,256" fill="none" stroke="black"/>
                <path d="M 456,192 L 456,256" fill="none" stroke="black"/>
                <path d="M 528,192 L 528,256" fill="none" stroke="black"/>
                <path d="M 552,32 L 552,288" fill="none" stroke="black"/>
                <path d="M 8,32 L 552,32" fill="none" stroke="black"/>
                <path d="M 32,64 L 104,64" fill="none" stroke="black"/>
                <path d="M 184,64 L 256,64" fill="none" stroke="black"/>
                <path d="M 104,96 L 184,96" fill="none" stroke="black"/>
                <path d="M 32,128 L 104,128" fill="none" stroke="black"/>
                <path d="M 184,128 L 256,128" fill="none" stroke="black"/>
                <path d="M 8,160 L 552,160" fill="none" stroke="black"/>
                <path d="M 184,192 L 256,192" fill="none" stroke="black"/>
                <path d="M 312,192 L 400,192" fill="none" stroke="black"/>
                <path d="M 456,192 L 528,192" fill="none" stroke="black"/>
                <path d="M 256,224 L 312,224" fill="none" stroke="black"/>
                <path d="M 400,224 L 456,224" fill="none" stroke="black"/>
                <path d="M 184,256 L 256,256" fill="none" stroke="black"/>
                <path d="M 312,256 L 400,256" fill="none" stroke="black"/>
                <path d="M 456,256 L 528,256" fill="none" stroke="black"/>
                <path d="M 8,288 L 552,288" fill="none" stroke="black"/>
                <g class="text">
                  <text x="60" y="52">Redemption</text>
                  <text x="136" y="52">Context</text>
                  <text x="68" y="100">Origin</text>
                  <text x="220" y="100">Client</text>
                  <text x="52" y="180">Issuance</text>
                  <text x="120" y="180">Context</text>
                  <text x="220" y="228">Client</text>
                  <text x="356" y="228">Attester</text>
                  <text x="492" y="228">Issuer</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------------------------------------------------------------+
| Redemption Context                                                |
|  +--------+         +--------+                                    |
|  |        |         |        |                                    |
|  | Origin +---------+ Client |                                    |
|  |        |         |        |                                    |
|  +--------+         +--------+                                    |
|                                                                   |
+-------------------------------------------------------------------+
| Issuance Context                                                  |
|                     +--------+      +----------+      +--------+  |
|                     |        |      |          |      |        |  |
|                     | Client +------+ Attester +------+ Issuer |  |
|                     |        |      |          |      |        |  |
|                     +--------+      +----------+      +--------+  |
|                                                                   |
+-------------------------------------------------------------------+
]]></artwork>
          </artset>
        </figure>
        <t>Since the redemption context and issuance context are separate connections
that involve separate entities, they can also be further decoupled by
running those parts of the protocols at different times. Clients can
fetch tokens through the issuance context early, and cache the tokens
to later use in redemption contexts. This can aid in partitioning identifiers
and data.</t>
        <t><xref target="PRIVACYPASS"/> describes different deployment models for which entities operate
origins, attesters, and issuers; in some models, they are all separate
entities, but in others, they can be operated by the same entity. The
model impacts the effectiveness of partitioning, and some models
(such as when all three are operated by the same entity) only provide
effective partitioning when the timing of connections on the two
contexts are not correlated, and when the client uses different
identifiers (such as different IP addresses) on each context.</t>
      </section>
      <section anchor="privacy-preserving-measurement">
        <name>Privacy Preserving Measurement</name>
        <t>The Privacy Preserving Measurement (PPM) working group is chartered to develop protocols and systems
that help a data aggregation or collection server (or multiple, non-colluding servers) compute aggregate
values without learning the value of any one client's individual measurement. Distributed Aggregation
Protocol (DAP) is the primary working item of the group.</t>
        <t>At a high level, DAP uses a combination of cryptographic protection (in the form of secret sharing amongst
non-colluding servers) to establish two contexts: an "upload context" between clients and non-colluding
aggregation servers (in which the servers are separated into "Helper" and "Leader" roles) wherein aggregation
servers possibly learn client identity but nothing about their individual measurement reports, and
a "collect context" wherein a collector learns aggregate measurement results and nothing
about individual client data.</t>
        <figure anchor="pa-topology">
          <name>Diagram of contexts in DAP</name>
          <artset>
            <artwork type="svg"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="224" width="488" viewBox="0 0 488 224" class="diagram" text-anchor="middle" font-family="monospace" font-size="13px" stroke-linecap="round">
                <path d="M 8,32 L 8,208" fill="none" stroke="black"/>
                <path d="M 24,96 L 24,160" fill="none" stroke="black"/>
                <path d="M 96,96 L 96,160" fill="none" stroke="black"/>
                <path d="M 128,80 L 128,112" fill="none" stroke="black"/>
                <path d="M 128,144 L 128,176" fill="none" stroke="black"/>
                <path d="M 184,64 L 184,96" fill="none" stroke="black"/>
                <path d="M 184,160 L 184,192" fill="none" stroke="black"/>
                <path d="M 240,104 L 240,152" fill="none" stroke="black"/>
                <path d="M 288,64 L 288,96" fill="none" stroke="black"/>
                <path d="M 288,160 L 288,192" fill="none" stroke="black"/>
                <path d="M 312,32 L 312,168" fill="none" stroke="black"/>
                <path d="M 312,184 L 312,208" fill="none" stroke="black"/>
                <path d="M 344,112 L 344,144" fill="none" stroke="black"/>
                <path d="M 392,144 L 392,176" fill="none" stroke="black"/>
                <path d="M 440,112 L 440,144" fill="none" stroke="black"/>
                <path d="M 480,32 L 480,208" fill="none" stroke="black"/>
                <path d="M 8,32 L 480,32" fill="none" stroke="black"/>
                <path d="M 184,64 L 288,64" fill="none" stroke="black"/>
                <path d="M 128,80 L 176,80" fill="none" stroke="black"/>
                <path d="M 24,96 L 96,96" fill="none" stroke="black"/>
                <path d="M 184,96 L 288,96" fill="none" stroke="black"/>
                <path d="M 96,112 L 128,112" fill="none" stroke="black"/>
                <path d="M 344,112 L 440,112" fill="none" stroke="black"/>
                <path d="M 96,144 L 128,144" fill="none" stroke="black"/>
                <path d="M 344,144 L 440,144" fill="none" stroke="black"/>
                <path d="M 24,160 L 96,160" fill="none" stroke="black"/>
                <path d="M 184,160 L 288,160" fill="none" stroke="black"/>
                <path d="M 128,176 L 176,176" fill="none" stroke="black"/>
                <path d="M 296,176 L 392,176" fill="none" stroke="black"/>
                <path d="M 184,192 L 288,192" fill="none" stroke="black"/>
                <path d="M 8,208 L 480,208" fill="none" stroke="black"/>
                <polygon class="arrowhead" points="304,176 292,170.4 292,181.6" fill="black" transform="rotate(180,296,176)"/>
                <polygon class="arrowhead" points="248,152 236,146.4 236,157.6" fill="black" transform="rotate(90,240,152)"/>
                <polygon class="arrowhead" points="248,104 236,98.4 236,109.6" fill="black" transform="rotate(270,240,104)"/>
                <polygon class="arrowhead" points="184,176 172,170.4 172,181.6" fill="black" transform="rotate(0,176,176)"/>
                <polygon class="arrowhead" points="184,80 172,74.4 172,85.6" fill="black" transform="rotate(0,176,80)"/>
                <g class="text">
                  <text x="44" y="52">Upload</text>
                  <text x="104" y="52">Context</text>
                  <text x="352" y="52">Collect</text>
                  <text x="416" y="52">Context</text>
                  <text x="236" y="84">Helper</text>
                  <text x="60" y="132">Client</text>
                  <text x="392" y="132">Collector</text>
                  <text x="236" y="180">Leader</text>
                </g>
              </svg>
            </artwork>
            <artwork type="ascii-art"><![CDATA[
+-------------------------------------+--------------------+
| Upload Context                      | Collect Context    |
|                     +------------+  |                    |
|              +----->|   Helper   |  |                    |
| +--------+   |      +------------+  |                    |
| |        +---+             ^        |   +-----------+    |
| | Client |                 |        |   | Collector |    |
| |        +---+             v        |   +-----+-----+    |
| +--------+   |      +------------+  |         |          |
|              +----->|   Leader   |<-----------+          |
|                     +------------+  |                    |
+-------------------------------------+--------------------+
]]></artwork>
          </artset>
        </figure>
      </section>
    </section>
    <section anchor="applying-privacy-partitioning">
      <name>Applying Privacy Partitioning</name>
      <t>Applying privacy partitioning to an existing or new system or protocol requires the following steps:</t>
      <ol spacing="normal" type="1"><li>
          <t>Identify the types of information used or exposed in a system or protocol, some
of which can be used to identify a user or correlate to other contexts.</t>
        </li>
        <li>
          <t>Partition data to minimize the amount of user-identifying or correlatable
information in any given context to only include what is necessary for that
context, and prevent the sharing of data across contexts wherever possible.</t>
        </li>
      </ol>
      <t>The most impactful types of information to partition are (a) user-identifying information,
such as user identity or identities (including account names or IP addresses) that can be
linked and (b) non-user-identifying information (including content a user
generates or accesses), which can be often sensitive when combined with a user identity.</t>
      <t>In this section, we discuss considerations for partitioning these types of information.</t>
      <section anchor="user-identifying-information">
        <name>User-Identifying Information</name>
        <t>User data can itself be user-identifying, in which case it should be treated as an identifier.
For example, Oblivious DoH and Oblivious HTTP partition the client IP address and client request data into
separate contexts, thereby ensuring that no entity beyond the client can observe both. Collusion across contexts
could reverse this partitioning, but can also promote non-user-identifying information to user-identifying.
For example, in CONNECT proxy systems that use QUIC, the QUIC connection ID is inherently non-user-identifying
since it is generated randomly (<xref section="5.1" sectionFormat="comma" target="QUIC"/>). However, if combined with another context that has user-identifying
information such as the client IP address, the QUIC connection ID can become user-identifying information.</t>
        <t>Some information is innate to client user-agents, including details of implementation of
protocols in hardware and software, and network location. This information can be used to construct
user-identifying information, which is a process sometimes referred to as fingerprinting.
Depending on the application and system constraints, users may not be able to prevent fingerprinting
in privacy contexts. As a result, fingerprinting information, when combined with non-user-identifying
user data, could promote user data to user-identifying information.</t>
      </section>
      <section anchor="incorrect-or-incomplete-partitioning">
        <name>Incorrect or Incomplete Partitioning</name>
        <t>Privacy partitioning can be applied incorrectly or incompletely. Contexts may contain
more user-identifying information than desired, or some information in a context may be more user-identifying
than intended. Moreover, splitting user-identifying information over multiple contexts has to be done
with care, as creating more contexts can increase the number of entities that need to be trusted to not collude.
Nevertheless, partitions can help improve the client's privacy posture when applied carefully.</t>
        <t>Evaluating and qualifying the resulting privacy of a system or protocol that applies privacy partitioning depends
on the contexts that exist and the types of user-identifying information in each context. Such evaluation is
helpful for identifying ways in which systems or protocols can improve their privacy posture. For example,
consider DNS-over-HTTPS <xref target="DOH"/>, which produces a single context which contains both the client IP
address and client query. One application of privacy partitioning results in ODoH, which produces two contexts,
one with the client IP address and the other with the client query.</t>
      </section>
      <section anchor="identifying-information-for-partitioning">
        <name>Identifying Information for Partitioning</name>
        <t>Recognizing potential applications of privacy partitioning requires identifying the contexts in use, the information
exposed in a context, and the intent of information exposed in a context. Unfortunately, determining what
information to include in a given context is a nontrivial task. In principle, the information contained
in a context should be fit for purpose. As such, new systems or protocols developed should aim to
ensure that all information exposed in a context serves as few purposes as possible. Designing with this
principle from the start helps mitigate issues that arise if users of the system or protocol inadvertently
ossify on the information available in contexts. Legacy systems that have ossified on information available
in contexts may be difficult to change in practice. As an example, many existing anti-abuse systems
depend on some notion of client identity such as client IP address, coupled with client data, to provide
value. Partitioning contexts in these systems such that they no longer see the client's identity requires new
solutions to the anti-abuse problem.</t>
      </section>
    </section>
    <section anchor="limits">
      <name>Limits of Privacy Partitioning</name>
      <t>Privacy Partitioning aims to increase user privacy, though as stated, it is not a panacea.
The privacy properties depend on numerous factors, including, though not limited to:</t>
      <ul spacing="normal">
        <li>
          <t>Non-collusion across contexts; and</t>
        </li>
        <li>
          <t>The type of information exposed in each context.</t>
        </li>
      </ul>
      <t>We elaborate on each below.</t>
      <section anchor="violations-by-collusion">
        <name>Violations by Collusion</name>
        <t>Privacy partitions ensure that only the client, i.e., the entity which is responsible for partitioning,
can link all user-specific information together up to collusion. No other entity individually
knows how to link all the user-specific information as long as they do not collude with each other
across contexts. This is why non-collusion is a fundamental requirement for privacy partitioning
to offer meaningful privacy for end-users. In particular, the trust relationships that users have
with different parties affect the resulting impact on the user's privacy.</t>
        <t>As an example, consider OHTTP, wherein the Oblivious Relay knows the Client identity but not
the Client data, and the Oblivious Gateway knows the Client data but not the Client identity.
If the Oblivious Relay and Gateway collude, they can link Client identity and data together
for each request and response transaction by simply observing requests in transit.</t>
        <t>It is not currently possible to guarantee with technical protocol measures that two
entities are not colluding. Even if two entities do not collude directly, if both entities reveal
information to other parties, it will not be possible to guarantee that the information won't
be combined. However, there are some mitigations that can be applied
to reduce the risk of collusion happening in practice:</t>
        <ul spacing="normal">
          <li>
            <t>Policy and contractual agreements between entities involved in partitioning to disallow
logging or sharing of data, along with auditing to validate that the policies are being followed.
For cases where logging is required (such as for service operation), such logged data should
be minimized and anonymized to prevent it from being useful for collusion.</t>
          </li>
          <li>
            <t>Protocol requirements to make collusion or data sharing more difficult.</t>
          </li>
          <li>
            <t>Adding more partitions and contexts, to make it increasingly difficult to collude with
enough parties to recover identities.</t>
          </li>
        </ul>
      </section>
      <section anchor="violations-by-insufficient-partitioning">
        <name>Violations by Insufficient Partitioning</name>
        <t>It is possible to define contexts that contain more than one type of user-specific information,
despite efforts to do otherwise. As an example, consider OHTTP used for the purposes of hiding
client-identifying information for a browser telemetry system. It is entirely possible for reports
in such a telemetry system to contain both client-specific telemetry data, such as information
about their specific browser instance, as well as client-identifying inforamtion, such as the client's
location or IP address. Even though OHTTP separates the client IP address from the server via
a relay, the server still learns this directly from the client.</t>
        <t>Other relevant examples of insufficient partitioning include TLS Encrypted Client Hello (ECH) <xref target="I-D.ietf-tls-esni"/>
and VPNs. ECH use cryptographic protection (encryption) to hide information from unauthorized parties,
but both clients and servers (two entities) can link user-specific data to user-specific identity (IP address).
Similarly, while VPNs hide identity from end servers, the VPN server has still can see the identity of both the
client and server. Applying privacy partitioning would advocate for at least two additional entities to avoid
revealing both (identity (who) and user actions (what)) from each involved party.</t>
        <t>While straightforward violations of user privacy like this may seem straightforward to mitigate, it
remains an open problem to determine whether a certain set of information reveals "too much" about a
specific user. There is ample evidence of data being assumed "private" or "anonymous" but, in hindsight,
winds up revealing too much information such that it allows one to link back to individual
clients; see <xref target="DataSetReconstruction"/> and <xref target="CensusReconstruction"/>
for more examples of this in the real world.</t>
        <t>Beyond the information that is intentionally revealed by applying privacy partitioning, it is also possible
for the information to be unintentionally revealed through side channels. For example, in the two-hop
proxy arrangement described in <xref target="masque"/>, Proxy A sees and proxies TLS data between the client and
Proxy B. While it does not directly learn information that Proxy B sees, it does learn information through
metadata, such as the timing and size of encrypted data being proxied. Traffic analysis could be exploited
to learn more information from such metadata, including, in some cases, application data that Proxy A was
never meant to see. Although privacy partitioning does not obviate such attacks, it does increase the cost
necessary to carry them out in practice. See <xref target="security-considerations"/> for more discussion on this topic.</t>
      </section>
    </section>
    <section anchor="partitioning-impacts">
      <name>Partitioning Impacts</name>
      <t>Applying privacy partitioning to communication protocols leads to a substantial change in communication patterns.
For example, instead of sending traffic directly to a service, essentially all user traffic is routed through
a set of intermediaries, possibly adding more end-to-end round trips in the process (depending on the system
and protocol). This has a number of practical implications, described below.</t>
      <ol spacing="normal" type="1"><li>
          <t>Service operational or management challenges. Information that is traditionally passively observed in the
network or metadata that has been unintentionally revealed to the service provider cannot be used anymore
for e.g., existing security procedures such as application rate limiting or DDoS mitigation.
However, network management techniques deployed at present often rely on information that is exposed by
most traffic but without any guarantees that the information is accurate.  </t>
          <t>
Privacy partitioning provides an opportunity for improvements in these management techniques with
opportunities to actively exchange information with each entity in a privacy-preserving way and requesting
exactly the information needed for a specific task or function rather than relying on the assumption that
are derived from a limited set of unintentionally revealed information which cannot be guaranteed to be
present and may disappear at any time in future.</t>
        </li>
        <li>
          <t>Varying performance effects and costs. Depending on how context separation is done, privacy partitioning may
affect application performance. As an example, Privacy Pass introduces an entire end-to-end round
trip to issue a token before it can be redeemed, thereby decreasing performance. In contrast, while
systems like CONNECT proxying may seem like they would regress performance, oftentimes the highly
optimized nature of proxy-to-proxy paths leads to improved performance.  </t>
          <t>
Performance may also push back against the desire to apply privacy partitioning. For example, HTTPS
connection reuse <xref section="9.1.1" sectionFormat="comma" target="HTTP2"/> allows clients to use an existing HTTPS session created
for one origin to interact with different origins (provided the original origin is authoritative for
these alternative origins). Reusing connections saves the cost of connection establishment, but means that
the server can now link the client's activity with these two or more origins together. Applying privacy
partitioning would prevent this, while typically at the cost of less performance.  </t>
          <t>
In general, while performance and privacy tradeoffs are often cast as a zero-sum game, in practice this
is often not the case. The relationship between privacy and performance varies depending on a number
of related factors, such as application characteristics, network path properties, and so on.</t>
        </li>
        <li>
          <t>Increased attack surface. Even in the event that information is adequately partitioned across
non-colluding parties, the resulting effects on the end-user may not always be positive. For example,
using OHTTP as a basis for illustration, consider a hypothetical scenario where the Oblivious
Gateway has an implementation flaw that causes all of its decrypt requests to be
inappropriately logged to a public or otherwise compromised location. Moreover, assume
that the Target Resource for which these requests are destined does not have such an
implementation flaw. Applications which use OHTTP with this flawed Oblivious Gateway to
interact with the Target Resource risk their user request information being made public,
albeit in a way that is decoupled from user identifying information, whereas applications
that do not use OHTTP to interact with the Target Resource do not risk this type of disclosure.</t>
        </li>
        <li>
          <t>Centralization. Depending on the protocol and system, as well as the desired privacy properties, the
use of partitioning may inherently force centralization to a select set of trusted participants.
As an example, the impact of OHTTP on end-user privacy generally increases proportionally to the
number of users that exist behind a given Oblivious Relay. That is, the probability of an Oblivious
Gateway determining the client associated with a request forwarded through an Oblivious Relay decreases
as the number of possible clients behind the Oblivious Relay increases. This tradeoff encourages
the centralization of the Oblivious Relays.</t>
        </li>
      </ol>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t><xref target="limits"/> discusses some of the limitations of privacy partitioning in practice. In general,
privacy is best viewed as a spectrum and not a binary state (private or not). Applied correctly,
partitioning helps improve an end-user's privacy posture, thereby making violations harder to
do via technical, social, or policy means. For example, side channels such as traffic analysis
<xref target="I-D.irtf-pearg-website-fingerprinting"/> or timing analysis are still possible and can allow
an unauthorized entity to learn information about a context they are not a participant of.
Proposed mitigations for these types of attacks, e.g., padding application traffic or generating
fake traffic, can be very expensive and are therefore not typically applied in practice.
Nevertheless, privacy partitioning moves the threat vector from one that has direct access to
user-specific information to one which requires more effort, e.g., computational resources,
to violate end-user privacy.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-informative-references">
      <name>Informative References</name>
      <reference anchor="CensusReconstruction" target="https://www.census.gov/data/academy/webinars/2021/disclosure-avoidance-series/simulated-reconstruction-abetted-re-identification-attack-on-the-2010-census.html">
        <front>
          <title>The Census Bureau's Simulated Reconstruction-Abetted Re-identification Attack on the 2010 Census</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="DECOUPLING">
        <front>
          <title>The decoupling principle: a practical privacy framework</title>
          <author fullname="Paul Schmitt" initials="P." surname="Schmitt">
            <organization>University of Hawai'i</organization>
          </author>
          <author fullname="Jana Iyengar" initials="J." surname="Iyengar">
            <organization>Fastly</organization>
          </author>
          <author fullname="Christopher Wood" initials="C." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <author fullname="Barath Raghavan" initials="B." surname="Raghavan">
            <organization>USC</organization>
          </author>
          <date month="November" year="2022"/>
        </front>
        <seriesInfo name="Proceedings of the 21st ACM Workshop on Hot Topics in" value="Networks"/>
        <seriesInfo name="DOI" value="10.1145/3563766.3564112"/>
        <refcontent>ACM</refcontent>
      </reference>
      <reference anchor="RFC6973">
        <front>
          <title>Privacy Considerations for Internet Protocols</title>
          <author fullname="A. Cooper" initials="A." surname="Cooper"/>
          <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
          <author fullname="B. Aboba" initials="B." surname="Aboba"/>
          <author fullname="J. Peterson" initials="J." surname="Peterson"/>
          <author fullname="J. Morris" initials="J." surname="Morris"/>
          <author fullname="M. Hansen" initials="M." surname="Hansen"/>
          <author fullname="R. Smith" initials="R." surname="Smith"/>
          <date month="July" year="2013"/>
          <abstract>
            <t>This document offers guidance for developing privacy considerations for inclusion in protocol specifications. It aims to make designers, implementers, and users of Internet protocols aware of privacy-related design choices. It suggests that whether any individual RFC warrants a specific privacy considerations section will depend on the document's content.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="6973"/>
        <seriesInfo name="DOI" value="10.17487/RFC6973"/>
      </reference>
      <reference anchor="CONNECT-UDP">
        <front>
          <title>HTTP Datagrams and the Capsule Protocol</title>
          <author fullname="D. Schinazi" initials="D." surname="Schinazi"/>
          <author fullname="L. Pardue" initials="L." surname="Pardue"/>
          <date month="August" year="2022"/>
          <abstract>
            <t>This document describes HTTP Datagrams, a convention for conveying multiplexed, potentially unreliable datagrams inside an HTTP connection.</t>
            <t>In HTTP/3, HTTP Datagrams can be sent unreliably using the QUIC DATAGRAM extension. When the QUIC DATAGRAM frame is unavailable or undesirable, HTTP Datagrams can be sent using the Capsule Protocol, which is a more general convention for conveying data in HTTP connections.</t>
            <t>HTTP Datagrams and the Capsule Protocol are intended for use by HTTP extensions, not applications.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9297"/>
        <seriesInfo name="DOI" value="10.17487/RFC9297"/>
      </reference>
      <reference anchor="CONNECT-IP">
        <front>
          <title>Proxying IP in HTTP</title>
          <author fullname="Tommy Pauly" initials="T." surname="Pauly">
            <organization>Apple Inc.</organization>
          </author>
          <author fullname="David Schinazi" initials="D." surname="Schinazi">
            <organization>Google LLC</organization>
          </author>
          <author fullname="Alex Chernyakhovsky" initials="A." surname="Chernyakhovsky">
            <organization>Google LLC</organization>
          </author>
          <author fullname="Mirja Kühlewind" initials="M." surname="Kühlewind">
            <organization>Ericsson</organization>
          </author>
          <author fullname="Magnus Westerlund" initials="M." surname="Westerlund">
            <organization>Ericsson</organization>
          </author>
          <date day="28" month="April" year="2023"/>
          <abstract>
            <t>   This document describes how to proxy IP packets in HTTP.  This
   protocol is similar to UDP proxying in HTTP, but allows transmitting
   arbitrary IP packets.  More specifically, this document defines a
   protocol that allows an HTTP client to create an IP tunnel through an
   HTTP server that acts as an IP proxy.  This document updates RFC
   9298.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-masque-connect-ip-13"/>
      </reference>
      <reference anchor="OHTTP">
        <front>
          <title>Oblivious HTTP</title>
          <author fullname="Martin Thomson" initials="M." surname="Thomson">
            <organization>Mozilla</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="25" month="August" year="2023"/>
          <abstract>
            <t>   This document describes Oblivious HTTP, a protocol for forwarding
   encrypted HTTP messages.  Oblivious HTTP allows a client to make
   multiple requests to an origin server without that server being able
   to link those requests to the client or to identify the requests as
   having come from the same client, while placing only limited trust in
   the nodes used to forward the messages.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-ohai-ohttp-10"/>
      </reference>
      <reference anchor="HPKE">
        <front>
          <title>Hybrid Public Key Encryption</title>
          <author fullname="R. Barnes" initials="R." surname="Barnes"/>
          <author fullname="K. Bhargavan" initials="K." surname="Bhargavan"/>
          <author fullname="B. Lipp" initials="B." surname="Lipp"/>
          <author fullname="C. Wood" initials="C." surname="Wood"/>
          <date month="February" year="2022"/>
          <abstract>
            <t>This document describes a scheme for hybrid public key encryption (HPKE). This scheme provides a variant of public key encryption of arbitrary-sized plaintexts for a recipient public key. It also includes three authenticated variants, including one that authenticates possession of a pre-shared key and two optional ones that authenticate possession of a key encapsulation mechanism (KEM) private key. HPKE works for any combination of an asymmetric KEM, key derivation function (KDF), and authenticated encryption with additional data (AEAD) encryption function. Some authenticated variants may not be supported by all KEMs. We provide instantiations of the scheme using widely used and efficient primitives, such as Elliptic Curve Diffie-Hellman (ECDH) key agreement, HMAC-based key derivation function (HKDF), and SHA2.</t>
            <t>This document is a product of the Crypto Forum Research Group (CFRG) in the IRTF.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9180"/>
        <seriesInfo name="DOI" value="10.17487/RFC9180"/>
      </reference>
      <reference anchor="ODOH">
        <front>
          <title>Oblivious DNS over HTTPS</title>
          <author fullname="E. Kinnear" initials="E." surname="Kinnear"/>
          <author fullname="P. McManus" initials="P." surname="McManus"/>
          <author fullname="T. Pauly" initials="T." surname="Pauly"/>
          <author fullname="T. Verma" initials="T." surname="Verma"/>
          <author fullname="C.A. Wood" initials="C.A." surname="Wood"/>
          <date month="June" year="2022"/>
          <abstract>
            <t>This document describes a protocol that allows clients to hide their IP addresses from DNS resolvers via proxying encrypted DNS over HTTPS (DoH) messages. This improves privacy of DNS operations by not allowing any one server entity to be aware of both the client IP address and the content of DNS queries and answers.</t>
            <t>This experimental protocol has been developed outside the IETF and is published here to guide implementation, ensure interoperability among implementations, and enable wide-scale experimentation.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9230"/>
        <seriesInfo name="DOI" value="10.17487/RFC9230"/>
      </reference>
      <reference anchor="PRIVACYPASS">
        <front>
          <title>The Privacy Pass Architecture</title>
          <author fullname="Alex Davidson" initials="A." surname="Davidson">
            <organization>LIP</organization>
          </author>
          <author fullname="Jana Iyengar" initials="J." surname="Iyengar">
            <organization>Fastly</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="25" month="September" year="2023"/>
          <abstract>
            <t>   This document specifies the Privacy Pass architecture and
   requirements for its constituent protocols used for authorization
   based on privacy-preserving authentication mechanisms.  It describes
   the conceptual model of Privacy Pass and its protocols, its security
   and privacy goals, practical deployment models, and recommendations
   for each deployment model that helps ensure the desired security and
   privacy goals are fulfilled.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-privacypass-architecture-16"/>
      </reference>
      <reference anchor="QUIC">
        <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="DOH">
        <front>
          <title>DNS Queries over HTTPS (DoH)</title>
          <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
          <author fullname="P. McManus" initials="P." surname="McManus"/>
          <date month="October" year="2018"/>
          <abstract>
            <t>This document defines a protocol for sending DNS queries and getting DNS responses over HTTPS. Each DNS query-response pair is mapped into an HTTP exchange.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="8484"/>
        <seriesInfo name="DOI" value="10.17487/RFC8484"/>
      </reference>
      <reference anchor="I-D.ietf-tls-esni">
        <front>
          <title>TLS Encrypted Client Hello</title>
          <author fullname="Eric Rescorla" initials="E." surname="Rescorla">
            <organization>RTFM, Inc.</organization>
          </author>
          <author fullname="Kazuho Oku" initials="K." surname="Oku">
            <organization>Fastly</organization>
          </author>
          <author fullname="Nick Sullivan" initials="N." surname="Sullivan">
            <organization>Cloudflare</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="6" month="April" year="2023"/>
          <abstract>
            <t>   This document describes a mechanism in Transport Layer Security (TLS)
   for encrypting a ClientHello message under a server public key.

Discussion Venues

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

   Source for this draft and an issue tracker can be found at
   https://github.com/tlswg/draft-ietf-tls-esni
   (https://github.com/tlswg/draft-ietf-tls-esni).

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-ietf-tls-esni-16"/>
      </reference>
      <reference anchor="DataSetReconstruction">
        <front>
          <title>Robust De-anonymization of Large Sparse Datasets</title>
          <author fullname="Arvind Narayanan" initials="A." surname="Narayanan">
            <organization/>
          </author>
          <author fullname="Vitaly Shmatikov" initials="V." surname="Shmatikov">
            <organization/>
          </author>
          <date month="May" year="2008"/>
        </front>
        <seriesInfo name="2008 IEEE Symposium on Security and Privacy (sp" value="2008)"/>
        <seriesInfo name="DOI" value="10.1109/sp.2008.33"/>
        <refcontent>IEEE</refcontent>
      </reference>
      <reference anchor="HTTP2">
        <front>
          <title>HTTP/2</title>
          <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
          <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield"/>
          <date month="June" year="2022"/>
          <abstract>
            <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
            <t>This document obsoletes RFCs 7540 and 8740.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="9113"/>
        <seriesInfo name="DOI" value="10.17487/RFC9113"/>
      </reference>
      <reference anchor="I-D.irtf-pearg-website-fingerprinting">
        <front>
          <title>Network-Based Website Fingerprinting</title>
          <author fullname="Ian Goldberg" initials="I." surname="Goldberg">
            <organization>University of Waterloo</organization>
          </author>
          <author fullname="Tao Wang" initials="T." surname="Wang">
            <organization>HK University of Science and Technology</organization>
          </author>
          <author fullname="Christopher A. Wood" initials="C. A." surname="Wood">
            <organization>Cloudflare</organization>
          </author>
          <date day="8" month="September" year="2020"/>
          <abstract>
            <t>   The IETF is well on its way to protecting connection metadata with
   protocols such as DNS-over-TLS and DNS-over-HTTPS, and work-in-
   progress towards encrypting the TLS SNI.  However, more work is
   needed to protect traffic metadata, especially in the context of web
   traffic.  In this document, we survey Website Fingerprinting attacks,
   which are a class of attacks that use machine learning techniques to
   attack web privacy, and highlight metadata leaks used by said
   attacks.  We also survey proposed mitigations for such leakage and
   discuss their applicability to IETF protocols such as TLS, QUIC, and
   HTTP.  We endeavor to show that Website Fingerprinting attacks are a
   serious problem that affect all Internet users, and we pose open
   problems and directions for future research in this area.

            </t>
          </abstract>
        </front>
        <seriesInfo name="Internet-Draft" value="draft-irtf-pearg-website-fingerprinting-01"/>
      </reference>
    </references>
    <?line 782?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+1925bbxrXge30FVvvB3RFJSXau8jhJq6VEvRJbfSw5WfMy
a4FEkcQRCDAosGlaUr7svM2Pzb7WBQBb3VZrJs4cPthqEqjLrl37fplOp6Yr
u8o+yU6u8hb+WTZ1Wa+y3GV5nZ23i3XZ2UW3a222bNrsqi2v88XhxOTzeWuv
+28ljyzyzq6a9vAkK+tlY1zX2nzzJLs8f2pM0SzqfAOzFm2+7KZlPp9u+b3p
Nhpw+uhLA5N8ad7Yw75pC3i77mxb2276DF80Jt9166Z9YrKpyeCz3FUVD/xN
2f5nnv3lf//XurL7si7o56Zd5XX5Y47DP8met+XCuabOvrPO5rBVesZu8rJ6
km3w/dmbnZX3/2jl6dmi2Qyne91sNofsKt9Vh5GZzrfbysajd1t88o85fj8+
4MW6LV3XbNe2zc5n2d+bZmwLF1WzK5ZV3iajL/L9H9c23wIE52XnZgAvY+qm
3cBb1/aJMXgg/q8su7C127nv7KKp4ZR2CxqbBhTceL228lD2FFAh333uslfl
ZlfBERdZ+uL0fG47/npaFrbuymW5oOVm512XL95k8K8OBvzi0eNHMirPlbcr
2z3J1l23dU8ePtzv97MF/TxbNdcPi7zLH+aLvLCbw8O9nZd13rqHXzz64vHD
onSLqnGwsml+3ZRFXi/s1MGBWffQ6TKnbbrMnJcJX/eWOc1pmVP4Fyxzisuc
yjrW3aYyxkyn0yyfw1D5AgD7el26DBB6t4FRssK6RVvOraM9AlLXixIOOWuW
mWB4FmP4JNuvy8U6c7aCawbnUR0ytwUQFzAm7BhuYZEBgmx2tUIxX7SNcwa2
1dHINBzMh1c229i8hqmbrNxs2+ba+knnMK6FR2EMuKg7gE7G2+4O2bJtNvwV
Tjk7uiO7se0KX98CiOAaOrjZMEHTNYumoln91mBbeRd2sLFdTn+UzgDdsHkF
CNKt22a3WvsRYDQYNafjcRP8+hqW6Gj7iDO23ZR1UzWrw4QGxWPfOQdPrJu9
gdnzOq8OP9rM7QCim6awlZvxaW3KooAbaD5DAtI2BeOAMVd+8fQOgPD1X1/R
4JdXzi50DQBY+AuJ4CkSHATbglAfn7T1oj1s4a+zbLHO69pWBlBrby0sed/A
z8W2gZ25DI6jleMOXwIS1W6Jp6F3EkhM9pzHpOOGKaJJcdmASwzMml8vuwwo
QFbbhXUubw90ErAzwKh4WD7nucUTdLg8oNYAJUB82Mn8oIhkmg6JTgd7IRzG
U6kLeMSfEz0IaJ3DBmbZOQNvAg8D2rwBWonITvBC5ILvwsKQQeBVanENMENn
4vUpLFqYjIAF0zurUHVZi/QNsI5wurNwti+aPWBTOwkHJA9n40dQIsq63RLu
eom4jeuRe0q3BBaOf/oXDPy1gbt5bWGjlzWsYIGvHYBdEIbyW639x66ExVmc
Yp3DrbM/AHAQZnN7aOqCBq0t4nw4md4RjiPNLHvVbHC8fAN33fECYRc0gUOg
AYGpdgVS9Wl2zrc4XyC8iY0DWNrrcmGR6OYZkE2YycJ1WK27rG66DEki7gjW
xfcSl1q2WdUwrk3MfAdItKTD8oPBAvI5kB54q5njl5Z2uKgQqMAbLq+yvCha
WMQkA+RcACZVALI6c7AZWH+9AgGigYHxLVwyvKMzzjIiPyUecwOTIG4s6KAU
3LCzBU+o66EJyvqN8UQMlzY2eAQlBsI+593Prd8Sgw9B0ymO8K2FAQ9001jq
KH+0xcQo4cjhgPfwP7walQW6XsIzsEU8dsL2hlFD6P3WLpDj6PPELg4GCb/w
x5LOsdnBCvjKIv9qAad+AoCMAkjxAzgN3s0USDKdwIgPE6g/QZiOH7dCZH63
rZqcqDoKRQQzQK/VqrUrvsl6MH0YG4UxAheYyg6QMT4ud3Cd3XjYAcCYUCA0
PMj8u8gnDLAiHqiQQTYfg0GybZPM4VfnV0APzZD3W2FPeUXErhaa5S9s6Rh2
/IrzsFBeR3tFSgyHEK6rUQjAPW8co0+TbRDV8LCmfiWNsvHlAZ9KqGmTXFqi
X0y5QSBqAXGDOKBIEMb1ssGAf6TPCVNPSbwROONB7JAEIKspkJ4H6keIKM8R
kcAT22ybthMAvbF2G5Zxul83Z8z1YUZziuLFmUo0djaUwpZlDdA/GZW5TpgO
lRuUmiqHpE+4DmIyS24nBVw3wHMSd1SKOzFv3/7h2fOLl99f/fXy2z9//ezl
5ezxo9njx7/81cMvf/XrL3/z61/P4P+/fPz4i/fvJzrUytZw1EBZ7WJdl//Y
EaxpLl0/PUYbS4Sl69KVcl+u87ZsQPxWYQ9AClI96ERvUumQ6Q6Nl5cbZBcs
CCLJjUE+yxLFDQk6oTeIxxsCMzKHHKar84XNAXfogEBWWCL60AGtdrB2wGJa
PSggiAUNXyJlZUdwCscfotEs89x8D9JOhspRyWLH1rbVYWLGDjNb22rrWKgQ
MhXvE2DYVDnf4jmcKPDSTYMP0lks8grkbb8rkiFB44VFiPwBKAK49QpXBQd4
+fz1nzKEOc67AuF164gd6FdNLA3DzWRqJgQgLxBKSko8SpmjigEzdhz35bwC
eo3H/+L16yvSJlUZIH14AxyG/zx9+eL88mySfSPKwQ8Av/jxVztSWzrZ3398
f3kRy5qn35y/+o/vn8MAosUDliAPxwPz3wBbR4oC6/rG5gh1unGnV1ffnAnl
9dfQ7TabHPmkM4SqRB4bIHQKPLzPXr3IgcCA7ktPIrUGZujEGuGFBZgct8aX
koHWODJPoFAMBwkwBvIdSXx4JsjwFniSV2MYVLqILlYozlX2GqkQcXUgvBUt
h64kaCDlRtRv1d1wx7KJAuTZ7O3bV5b0i+zXs8e4rj9896eLX//uN1++fz+D
H/0fQcNZ7VhpTZgUimbwayvYW9ZGjR8By+Boqga2QJceuUeH8wGJcfwSrAF0
I0Q62FG1i0lNshXEwjxWxKJN/Ga4iaA2EWpbYHXNYRSNDWp4nXB82g4tIKyQ
UIK41EL0Rrj6stjA+wFI5QoAHp8T8cgMRY6WiCluVDV52zrPLIi3z5FPA4ln
iwUqO2PKDL5jRKJtaW0W6AFLgj90vNB1jpTE1mGbKJKNIhZOTPwFBB8i+YRQ
+/yQ0H5PFgUdYGJitLDYAyvbrJadgs6W4tbsl3gw/lzOiOOwCAJzO7oT8UXm
IXSAt2/lwLbwE7w9Q/U4PB6dofmTqkm7Fq4bqyEpA++Se7+Ef9BjAxYQK7lI
KwxLiKLEAPwPx+UZhD7M4gdDak3jT7z2zthCZjAjGggS4lgf0ZucKiD9IQqi
kctsXrbdGkUnWkeFXIhYegPs4AjlJpGvSTgSYRE+QxJirmJupBziGiJlEyAH
hIj0BdFGUNWqYbjD1ir0x8EqohBz9BKFUOakwgFEw00MU6CbuY72UlZ2ZYn/
thaxH67BwS/c+IXL6ly0OByUKArKDxtSW1D4iM4PtQcWe5a7allWomqa5a5e
MEKMXqK8uEblDWDCyjpsLKZceJcTi0JEHE20ceFiypJpB6LxHoWlt2hZFxQg
2bORPSfyMV+Tso1sJnxjkPUAttF5HCbjaAPymksIwy9A5v0Fiap48qWQhV+g
6PsL1kWLhqR6+Ddojq7z1gEhpnCQ1rMmoo+jEwt9VKFUJSAaCREdCUOgDBdM
DJ0xzwmrS7u4GSNBhykdaj4lav60H6WogmmAqfKFIcsCW1ZRMiMxXuimMDe8
vBMvI/Opss0Gd6Qn5dakp0dHlXcp9blMlBLYcM3UQNmEXJbj2xI7rKzcTQJQ
nbf1xEQAaRuqcpWsFZSanqVNVO6yAyKwPDNFYx3J4Z5FIbeoRYDFlxAvlDkx
JPsoCfAULQJOEZSXIHwE6ym9I6oXn2XMRku0ehW7BWFKBBvlZSbWMRTBnsBk
T/6xA1Xvvfk9oEx4rXQC5Q1a8BXKXr1BbHJ9yqFsm+0MZV0AoSp2eQVD040D
4DbzLldRYgFnD/hj0YECZ0YSBc8HnHo26y8HXQeWxT6ZBcZNXQKzLBvKXnRv
lvmiBM0fTyYGDhAlYBbNnnmYrtd9DiOL8YUwlcxOiOxvxJasy4zVj9/DS1fO
7oqmPmzEoorOtHqFRmF4ljZYIR0GPcmhKSKRe1Aj88aRbKsjfUXvwdhk2QC5
O/yEMxA1oEGbZWfFDE0Yny3tHhaneP8V/URrgJ3aLdK9Gi4vjLxAWb8O47K2
ROi7RJspPcczIems7T4T6392usnfiPi3mTDhQ3wX0exz5OoIS/LU0N+49S27
UCbZrsZNo60JpRqhWN7/wce+BB5V0F+omjdHaDJsbQz7Z+acHKRi5pkE6Ra+
3NXeJcAKm0NrLCI6Hurri6vAYPkq8PJEBgLpsmEN3qgFUng2GYoZQHj79hZY
KPlpD8FkQJDyD+OdFm8G6Mk5ypZfKcE0ieCrAlggQ5MMdDTAeRSZiEypvYF9
KfPmB0umHdU/0dsmPJbOCAD/z3/+M8tzd70yD6Yf/3lg3inzyc6zn/p5B6Nk
fjkP+j/HC31w5KcHMsq73i941sM3e1v3P73zo1ww2X+X9T7vsm8U1P0f34EU
j0CORkmnAywb2cWH1tKHyxJI2N3h8tGfd/eEL4B/wIayzwA7V22+mXrMZb/2
1yfP+IeMtN957oBbxJeXL8K0a6aM0nhVa9VTUfmMrsLJe2POCzLXoAvRBqOK
EN6EEsTSeUJwgo2QxRiQXzvH1xVkFOKRgV7gyPtIYFSS/CTQlXHqQaa6PQvB
Ih6oPKuXHzYxZY8r6+HHLzoykrJi0hH8vHVKgUygQOLGU0W1actViTRYVi8S
LTK5ha1RLgi+FCR1y11L5CgxlpmhBNgTmoioKoBEM0fs9uaQwTPMnYPV4OdJ
0G74HCdod7nE8UspQRuDEd6CV2OwOErQPmot9wOXj/7cF0EL+PL0I9Zy/wxw
hHWN/zu7Db543vUgYoAD1vUhfPG86y5ruR+4fPTnUzFACq0aYX5oGsiZeUWM
KzCfAc8hblezXCj2zEVrkdTmUQwQG8LY6EH+zZhTCSN1swyti16QBu2L5k05
GzFPUhnQkkBCLuq+OS8Bwz9Ed140u6qAid3Oir9A3mlq40cDBItXMGH7HEVI
eBeCirvM6TCWyf9CjkOWoynczARPTTNnHh0r0FX5RjawaJo3FKnFelS8vp8n
c/mJxAJkgXhJ/++JBdGK8/DF+a3W8m9GLP51mQvgS7ykfxF8eRq+eHqrtfyb
4UufuaCFS6jqCIsRe84YB6BgAoqR6OxQmUFW87276V3hPIM3Scon6w1qGZmt
StJmLCkL+bykiB0MVVTrrrf1N0HsD8FSQrV19BCuYCKvVYkmIFZUqvxgW++1
kiBWGSQwk2SxY37C4Upm2VN2HAW3FmpkG5yUWfISHm1aZ1LL/sqyuTni1UuA
q23RGdSxEhwiMjju61TcYuab84t4MvmZYzM60ghds+z2aOALXxKPnFsM42qQ
S0d+KIc2U+C83eKM/QtKfF55K50xsY2efQHMdSXOF8WWJDBmoEW7jHk4nvic
DH6oveJW93wuhmPrIl+ut90D4IAz5/OqdOs46o7YdsOes8XAtDgIsyrvx8+Q
HfUzmI/0M2TH/Aw6o2HXAmnH4qyms4Xvgm9hxMgq2Cf+pAKHDHgP2A1bWcai
n7d5T3TPanKEFa3h6XkOiGwwTsXWZ4umoDAZwKAZJShoAknT4u6ieOUoPION
DrGrWoKzKnRwXjfVtTVkn4briuEzvZCcuXiMI/xKgt7TQH1/tV2H3k6JkkBb
DpnbwyBPjHmcxnyjaaKH0wHbvCstz1Yl4FMCphkOdQO9VNkTwEwhStscrvGH
5qPwFx9cE1/jyKrkOB7SJeDJR2z9jFr/KW5fGnzsHsVqgVG1hGzyLE3bHzDW
e6VBpnq38qGhWiNMKMZIkD/QTkPqBPwaR0L62FuNzuDDB70Eb0v9eZfc5b6x
jA1jPDD7LPDbwQUih49QAfF1ROH0MkHP82Ak2NzF6RyBNmgUwxxhzQ655oeD
xB/DYwt0eOdjkdqGgLQn/Ynoxb6Eo1TuwflggckxzT7fwvBwv/kepDEjfyej
IGCWDzmIsetWd5PZlBkydt6aTZIkHjaJfTZgklfvLIcsmB0bWHNZPGMHB5a5
lEg527n4IsyyVxQ5zKx2aTjWN+yFszD2Gs96sBpaTukWyK5oKX7mPdIFz/Rh
vkWOMAvqoXodJ+JkoxiEveS28OuUlGPFmmqWOwyG45uIDnD0t2mikEgFvN8K
I80pgqYoMdhJopfz+ETNkYBEzjVge8Go2ww5Ejr945PO7KLR6IttBVTHmSRv
gm8DJmjlnC3DAPNnnhNVlgQu5McXL7/99vnF66nrDhWaxwXPKcVDoi9gHUQJ
yFivUV3MJGG0XZ2TvBLF8fiLJGvDAYkfpOZvCWSm1CBYUBOILaKeD4wFipiG
bk40940ZMpCvAmO23G5D9zla36JBGQqRntau4RExVrMfb+dExGWEaShStcrq
3WYOM8DWbCUAFnu7a6qdT4X4+5plQvS+NmmykCevPup/DcgBaDwvCzi0BXtO
K8aa2vjcrWtENLfGIQrLRJEztPqirudPhSS5oIUIw9YA+mQz0fQCQJ7KBl5x
dfXNhIZoFotdy/BJonDE707eDSTBRmPvKbiGgMzQIwe+siEkthIrII/TbW4y
DLAMvh/0A8QxdeTK8Y5gFqIp9o6PkXdqS4JyDCOG+MSwx1yih/drFdHfgETn
AxfxPhbii0ZS0cP9QOPR0dILFmbvvWcayeHRkPGiEvmFEAQFq8KuWkuRyxzv
6s8xkpRjAZq3xKG38LVpYqnzc8RTpOtKxHANFQCf+US7c4iGQawfzzlLZAN4
vH/N/BGSjwd554GOn7OQkoSMECfECVNBdo8FnSCarwBjQXgFOX/pxygauj68
eplN4vCJHHnknHDc1oIuDNDCvJC8DyLS03WzHTvaiGFI3EDdqIjPwXm0LxLU
CX96iSrDTYb0o7DFVMMBdSunQH/aE52VWUYx7XRDXzethnB5LgN74Pk0nqxo
EbWKZl9L5GEzj5RvobwmitMvdpIiVFU7jptofXAOR3w4ilU9z17t4DYfOMxV
eTDLBqksgli8bDQgR0ONQwQU0BHi93DOqwYfCdHqlqL+jarxCK/DMb4niiwf
IC7J38qMA+uzt59tcgfCx3tj6HYCRPcYvozHTEo0EaCBeNP4SBEVb3yyYFDn
fFwHzuvTZ8cZdJoNnMcjk4nfn6azK+IeM5DnKIwqsbxwyjaGmOV6tj+QhqNh
rIgH3p/OXlp+Bm4A3hjH2SOY74hudssyALqtZ0y+UGJbYyJ8K8kabrdFnzKH
DHnYIZwJPdG8R6jJ5QbC0vRUMP+wAQr6DXJ1TuesDmwgOJI0YW6ZNJFmhtDK
C6RrwMgLk2RJu3JTcqoBA+P7Z1fZ27d/0JsPf3793Z8ufvfF737z/r2G72wx
0Al08ei5y6uvL6fPZqXtllNGq6mcz7TcwpukLhPu7DAllhH0kuKPiXZMeXYQ
cnfbCSfxcGACP38LdBPqBFwHWWByhvqmXhwes6KU2HHUJVwSIsRrMgBCt0bC
IVdxWa7QzDEHoO4TO0iqeCMKk4yai/UX1/Waxs+i6I4Qg6pcjbKLx/HRiM4t
6p6P5JCwCV590L/E30OvfnVkKXzpBwspB0uIMyR5IgWrofSCKE/M37CwlDxe
72AtV3wdb4BFiOPw0R3DIzQahquA0L/FwZWsjYLZUZRMCE+yQV4n2vqYjkZg
661Vbj09jBfJkwO/CVTW+PpICMpoWgGowXhb0pT4AE5jZ6sZ04lLngwmfYgT
SljLp/Hg9XHmuUdfNbh90Nr/MwoPORYdAkuQ/d8iPETjnm6xln+/8JA+vlwJ
jbkltvzLh4fIfvz8TL5GIhtvxBckiBof8v9xeMi7AR+4NZpEa/mpcBmM8pPw
ZWSUCF9eK+/q48uHR0mmC4Gwd1rL/cDloz/3hy99XvwT8eX4537u0V3u9M2j
RPQlxqUBfbnDWgIu3WEtP0v60o8QeIz2jWFoQFNbsnxsY1GU/P7i+MdQsFOS
zFp7prpyyJ6mQl7tuEbe88aKVWbfeI3bcG6maEJiRRUKEpLM0PdDFh6U/llA
jf6d/s4vG335KzL1sQVQ9K+iKGOJ19vTgiskn2PtLq1OpKYe0ZydZU0athHD
DY2OR7WljI25STSfQ8uZk9oG6I8lnSls4biqwrZVn7BCa8TqaqIRmtO4oAY7
Ilx2wnfp6cmZKCHoyegzoKch1FBE8p5aFOkyxie7iBqJPigZxUv1I/rRsmxd
d4uVnstKkzNSV2KkFpFKRBA5RUUEDg3VArIVXF6dGbSBeFN3hmHsHEW5RqPq
wLc1GdHOzo3XeUQdys5HQDaJFabs6VBl+m8VZXz+6B//raKMf35GKsoIHB70
/r4bvrw78v8b8SVWVGRKvpdhTbfAl1hR8b89vWkt9wOXj/58OhXl6Z2FzmNw
6UNh7JveKCNnNDiJkW8GowzwpY8d4ZsbRhmd+XzwzdPshrXcD1w++vPp8OX8
E+LLB0e5Fb7cYpSj+HKnUUbXkuLLB0e5H7h89OeeVdpUnrojwhzb0f3co59A
X0ZHuTN9ObKWO9KXkc/Pm74MpeufRF9u9bkfPv1B+eWWo3xAfrn1Wm6UX271
+fnIL30TyBfjJpCeKh+ZQP7U83InhaqSMEpxNaP2zx7pSUZFuCjsNAomOEWX
OAiWVE4ziiiTQEfv36fneEEU0+E1X1J1O6poDFgPv53FZYOOB0b0IpNQWX32
7SvTj1h6+/YPL/EfwbndrPMS/tN1W6yqmewUl3G8PKIZLY+YOuonaGag+iHT
DZYwXVmTJu8nwcYUvURVy3MO9JGAmJmwaHRdU5yWpB36p+MYpe/wxYkRXytH
QlDlX1mA6oduIiVvwqt/5ugj76jNMcqOViv59zSAQ4OUkZGDb9xmHPwFx+er
hIrppGl9JedFavziSJ8QJ9yPaUQwlFzr7cVh3pZFdrWDBxbZX+whDpOAY31x
9ZfnFNnw+LeP3r+nIErboic2Qs/ZAB9GkZjLDxxD3Q+j4xSW5v3rHmpJuEri
5b4IgQp/1gCw14MSLQ4DRWusLR2P2DM/XUiFBX+UeA1fx9EPpRu3wgUzDgfm
haX6+RRPP7R6M7IwRkuf5EB/KnqOIdnMjK9WphgsN1jMTn21fXHcEzmKT3C4
+omR9UW7yAh5jtTAiO1o9Kpa0cRMRt+NrVeK3fpqxJhgAzCQkE4Pmt6rGsag
WS9qtQ0/TQzFmJbLCLwYJUTR5H4DQkcEFfpG7ryWKlBmfshCjaSodtMW67PW
XYhf4IkkDh3LovlCTjSxzvd/xTZ4Z3/R3W0a+tTH2Xr0X3eyDUYrUMR4IH/f
3jZ4h7XcD1w++vMpdHeF36e39YxB7+62nrGTPK6785WMv9H9Hh3lPtZyP3D5
6M+nwBeG6P2FL/xr2Xp4dx9v67njWv7tbD0Dvv3T+NHI537u0U+402NruTt9
+XRruRe43O3zqXR30kBHlPeevhJr7+En0HTZJUwORFJyn718wXHeX6I2xO0O
XFSO05doBhmxn+CCQrpkiFFtGxzeKwGooFMiKerv2BbJNa2v0Yxx75L0jA1s
BiOXXaTR6WIMqm4ZqQANbHu7xmoJbQmCaHlto2wqFHw5Od9r57QX1JeSKsKU
OvX2s7gCuRnLq8rjDoQAtKvvLv92fvE/r85fvQr2gWiUafyCRM/70sHeWiJZ
/wNLQrKANJyfswY5TzrKJxNpG4fGSJZlBkccGt5hzexaZHaEMDW+8LVJNU9u
wkkKlPNFWiVmj3EGmBbHQ40dgxO4Dn6vQgQ1euMMFZ/evM4LzPTDtHvQg86v
Xl+8OGes0WOS7hoYis05Z4dtVNgdE765xAO2esNiDaTbrO3ijTNSfJSCa9JG
EQqZtLsNwoBGIQVGyjO1oflWVFUef+KUFILAhOLKPby5yGxvaIaRZPZxI6vC
2g0gXlnwKBx2k670WOV2X62A8y57GE+9a8iSpDE2qIBinfgKe0zi4eSEqmkf
EM73OPuA1ULzfvdN0GJNnp3gfjbbuKTAidePfYIXdl0jQDjQruNMUg3A5/TB
hcVkLMauMwkYqc0Jgp2KPx+bYJLgQZJFSYNlfgT5jWsyJPAzEfy4YIUsMa31
LN0BCy3pbrP+6qgCso+ooSigaAgzNsQQhp9E4f0uTHN3WTSwwBsEr9tJXh8S
Am8nBcooL/mCxYz7WMnaT7yW+4HLR3/uTyC9VMz+idjyYcFL4RKtuP/NDYaA
/hm9G/x0GwdOX6d5gJ1gmR34by6ZJ9w4yn2s5X7gcrfPpxJII7lnRCz1IYtl
yvtQLn3lG+ANCaNn0QnJjaMYY64lmbFcOyc8oUVOQsKzdsLxBXylwRoZKk27
q7lyBLWHQqbsQqsSX15jUIUxuF0wpXppOyznwaKTel5GGYjF7EsVWxdrBgW/
iNZezDXmjnzc/aAHITXO0q7KQhPdgxgRqj8a7UJE7Rci6RU7MPjOV2FXhcUi
QVT9RPLjQ/tJXzhGBH8jDH/ipSvhyCxfua8ybbfBQ8lZUC54VfmzMuGsqMRN
zQJhfHRwajKntyqTWM+lcdgTQnOg0RxkM8lghE1RXYGa2wj0iimRMBRWZ7xT
gLu/UX8YDJGlEh3HZz9jf6QYyo2fND0SGpMOGYvArfqil6g6IHr5fh5S/qGL
KkBrFZY0eZX8U6E6Ulz6028pHHBcsw2XnnSY6ulIo53WOJv9Nt3YehoMIuwa
YGIl2lm0n/h+hQY5fK2xtx5WiKF+SVF7Tyq144tyiORNEfqSQj0ByNVTyuAv
QkEkd0Z1tbDpp45mDbb6ss6X+KZKBiq10W9UUwPr7dRRDYnQVANbXuu+Z9mz
0vl2oOdhxb7Rc3b67PzqTH1WqMJiz0oFVEnNjZjsENDgQM5Rq1qXQEmoSsUk
gwH4zPN+F5NbawvOLlrLTWpI2dk09cp15gjMsJqOFqJLtQNUf06kGeuNqkEy
sul3aiVULevQ5dZ/m8auU9z6yQtACtue0Lgnf6Xk1xMqiAdL1foU0QxGxwId
D92NUqzCF6HT7meSQrFO+v1RK6WxkwaqjN45JnioJAk+BjD4pSiqAnpymYyA
fL0RuQKUdL+MuhRHS9CuuEzR76pAjD6FcuD3fIY3SoFYn5X3GD32QTFHBZlx
ueTd2Fu/x2/5lDOWpY69nAhT7+44s//hwbQvvf+vsOeR1Cd++agKksiJHmhN
yz98YObr4cwP0pnvtudYSL0B2nyN8KH/0d/tkZeTMT4I7Y9CTxU7t/m0a7ZN
1awOHxA3gUSilEkF4rhcynhfwfObqqlI7IsvJCYdgrQFXRtqA/nqRl1a56Wz
W6mteCk9BZnLq6UrtjtQtRqqKoS2qCLp0xfNNSGRxVABUQ3AiXqnae9CaUzI
jFLrt3pTmxcjcWkBJL7Og/S3Y6k0NNOjEqFxd8RodLQnmqTxV01MkwtEqthL
TQRD5pYWQU27N5NNJso4oqyuUOtQmZa0YuuXJ2W6i/KA0HspRgdSHlZ2IvFw
uavGDyEppom85zQ/G247rqfk268TuD0z8W2xSV4+DQXataxjnWPJtaQ1JPKv
qGiXkb5ZuP/T+Rmx0JuWEs+iUUGMBUaLG9OEXIbJovUtQSEu1OVAAyGjetq2
TBu8Jrtks+aw4R+XNfItqaSqErWWTa4XG5pHzoHF0O9xs5fRZi8jG5vBX0Ob
MS4lKzchARF1/9aNokKFYg8VmaTWZ5arOg2qSyY9ASIvSvOCDqTncglIE8nl
4WSzYET25lDp+YLtBoYpeFQLZ9BYsm60oG7UuFP7DoTuZBSrNiO+w+WrejfE
cI8CuiRO2iwOy8x6jRkozwaDjz6If3B5+r/34AgnoWWQJOE1blCN6i7WNuIi
J1TlKAprunzGlRXXpMYADRlbj3FkV+Dql4r1sFWAf7PB/Mi3b/+AA5Pb69Gj
RxPfjPZXs8fYgja0AC+XfeSvE+KZ+Wa8g0XEQImDZQd4cXSnfCUXUpTwKMix
NTg+02u4WNa1kPugIbbTfMV29EAlCtvlZeWkSTuXaVRdIioYBacGJLegUpWs
M3OdbSbNWuy2atIqbtGSejzKF9E0N1LWkHZLUcDU5xV5H9ldsjhtFsAb1REn
tHsWVzUkLhbVDA5qZlzwk6KVWwxKO5DajT4qCU5U9pPOYqi1d1q3U7yeLMpP
ei/0tzegr6MovVNCN5HmInoh/Q9jN29ITi9r4tULirXFP/DIYZhUIjraRzpy
2ZU6UsWMzo+FXt8L5cMbiWgE4HJJ65uJx5oiiR2IUQX1SHYDxK5Dm1YafC7O
5AHEaCytwcqV1hq609TYhU7ixrWQm9xXoPOCBd51jmIsmtpy9+8F3wPHpYJ9
tdak0ijABzvJszQV1UVNuoVFpSyp4iH/xeYfVJtBivkWCROMURHliIuPwSRk
KeE2qHETRWxM2etTz9YtOUpcP0hDFfJy8zx0Pccr8g/QNwU6bKhFnI6FZS7Y
PxSH2RMs4QSjkrVU6PSVOZPkdhK4ff2uxC189Mh6ndJn2Suku9rGnciiQRCh
5Lf0whmPg5UHgpDgGzS3kWGKjjEAt2z7UO1VBFXRB6MupohOUx91IUEXv/3l
b3+JyQQ8KYzMJXTjqF3pqpvUQ9PWnIGXmBEZAySMFq7iy3rQenv0NKLS0y9B
wBksKjb5TAyawfrR+z1Rp/MVhvsP8sqYHo1LdlxiN6FJ3wEnXNXlj4R7DQq2
JdaOjXpr37A10cziA09QriTVizlx7MRN9LBEGeEnNeo+LVk8fGeWfY9PdDvk
yWjz16LEbBUGTacnQ6luFNXXj0tSIJPosFM6do3N3RuuMKKhOoN9KOpY7BIV
EdAgAy9BWiLZXDqFhwLwQdvtXYcQtyLD5OUGy3UnXSCq6oOwYTOfIwYOc/k4
jNwF5S17RiEnBC2taGtCaJIvweE6OHcig9ifvSvJvEaOCF9xG+vJl0th82Jl
HSFfZZ0XSGlJzDS4juVBxYikL8Y1SE8kIpSxZ+avdoVomIi26xwrLuNIJVfE
HB3HROMoh0PDPdaOId1ZCmKT3IEVkxd8WnEfYAqp9yaLHHB+ms+p9ZnY1Zn0
4hqIwwKHUeNxzx6qkuuI1Kp+M2aBwSI5ieqSs119llzl5Nax+qdgotk0v+EQ
lb3WCq3B8q4L9Hcb8NRoVXGncWbR1rHiL0i3VLP3rxgz5rhi79AilL39rKIH
kmCwuB9zuXFySZmnkxAmpAcvHydbOW4vU2ghfuTjWNm5zhc2n5E5wpOr0Kwm
HA1ICbZF7VJK5kdSu58Ex6TFkqhApXO+VSv7mNpHDeM0EwaY6g3Eq+cS+rvN
LCBowyVo5Weq6sOU/G+hdPL8EPTOEWHSJY1ifB6f9nwtZ1ZKXMoRexUAjnmL
PJWi1pp+81Vkz2gtIaJzvJGN70CE4XRRfecZAE74lcwbDO5AAd7UGHOHBeTR
M6vT4Cpv6JnjCH9F8ztogW6R5fjicFcInNYMWjtpYtN+fQi+k9C5d4mdhEhd
88ZHciEQaEb4IPqUG/QAosMBv0A5SB+kHjh1QZqHGxSsIhnM1xWnQ1yX26Cy
t46oG4vDwc2oraxycof2BEi2wilNxUGCnIoeryOtzV9ygGjcu7yX05jxWUUp
Z333jol+Y5KlLH2Q4zgcjGvPDkptRQaxy+XosuKUMcGByLtNONVfr/rtPdZS
eWnCmTSiji5G2l4Zq2tz08vQ/MVnhGpn5BKv9qUnT1KCvDp41ktt0bSVhDBf
aqyzyKvALcWDJQiBDmyv2AQHtjj+ZtlzTUDbN0EB6l0OzRElG4zkXcqTHFnX
l5j46grGEcmlxiSixI9vx6fSxWPtm/rzzlDTZVbLI3tQ5/uZcMwAixjMcaJO
C6JYGQ4D3WmQS+nesI9CrzH3smA1xnNzIuJXDYi1B21H0uFP6PjLsQcCN9JQ
B6sHi0S/DANB0MteOooaNlWzWonRvmdChztAxIrNXDssDsfvAgsvizxOPNzi
4vRsOYiZ/R3YlgJVIOqfISX5dUai30SkihCRQLX8ETcXGl0Baz6T7HJ80wr+
s4iJp6JuiULCRikT8UfWlNVEg8IsioS8NiAtqvEFao8w7nluNhpOvcnf2LTw
v6whD61YvEg2C11o6IeIzenpiTlXBkZhgAUHVPIOPeEu4g1wh4jHRw0B4U6Q
XSK4FcaY7yWwVxyTaEmqRfFVj2+DdLRLtW/RF3hHZElBhU8FhqMcDxuJuG3Z
UdQNOsZpgiZ0chpIqilZZ+vgWET2uqSYAZYRjhoA8E2gzS1QbAzCpqYzXRuy
43n3+C6wsYjGLam3A7nyqRohYefgfTFbEmC4STuvxkMivMAXSrE81ijjoAL/
oq4Yu3FghBgZkzC4PYjewz3nGzYhDo3LnzujhtjUuSSkV2RHBrk6Ho5YpyPd
igNsQOc0UnVgEn/P7eUktoE7aGmaf69CIibXE7GGQew1UGJFB/EARcibBrSJ
TozlyKLyfrziFwCtJjt9fvHiDA0sPiujq9zUurp8/56C4P529S1C4eIF9/k5
GioTkvwp8mVdFimToC2BNr8DWLZEfpTzGBQNIvSQgCYNcIl53llg/OmVSuy5
4aKpVHAajudsZl5pHwcy2QA24x5lxfoGLdeGdfDJwYN6eutcGwTiklTdCp7M
pTc6mahbAr88y272oHM3N1CnG6r+QJeUQqwc99fWSqTA34I5tJGu1szsS21c
dxqAsF83nMsgnfKkXghaU87OZMcoKHm+SE1qZtoTjiz+q3WnDTyi1i+afqK7
odoThNKojztK6+i9Tf5ytjeg7AHL3kjVf+4xINonE1zpR+UbLeXZApS/nNJH
BuYkBoDLTroGO6Is1icSmJQbjxm4Wop/lN4Z1ATKogKOjjD1kTM35EZfRXZC
u+vsCZKIE58ddIKiLTnp1qD/ONzjBMR67KQEClM4DV1NNvBzcSiuT1MixiEq
0zxfvGHFWTUr7Yr1FeEcWkZhpa9sh9Y+cRDBwF8/e3k5e/xo9vjxo989fHU1
++LRo9/OvvxSMqvevr1AhdKl78CFX0q13oS+SDMkUUaw5mzTViC3mKfBnTrW
mYGNfaW0G/PZHfPDzd14VPlnL6owHKMsrifDon+sPjKRRhIjuyQbUG2rftv6
0geQYh0fI41R2hYNRhsO7I3aHL59K22A3k+0/pi0p6x9LyAitke6bZApQQpR
zTK+VdKaksRuT/851G4AVC10hnNO/JtjD9POTSiEHLM8CaUlcoTRKuRUUeYQ
4b0UD4Zr0uZLajqFKYKOmiKLEdT+sK0aNKUY36RL2u71CD/NH5YTmWU01pk7
yCWGdybqYePn2T53pqYoFVTIO+4MhzJSJRx63G2i8G3mwIux5TRBg1tSBTgm
DqdFg4GdPr4GBRlAC26SJMWAI2viK7qKDnM2gdJO0xAOuHT+XkmQR6nNoTCg
tdmWCzKyJSazS47IvkWwVdpEJ5ibsVUk8wXY8BzlJHIABGto70WMRm+xHWzv
hnC/Mwp/Zd9wJ/jg0ZXnYK1kkmGYDE0Fv6hlyb+DSk1DYb6KpHmg4XGvxkkI
PM0jZSFqr9NiY2gYGM0qpW9SRg7v06LvyGaB1MhFJQidib2IuotGHkY51pyi
4r2vZBKRAjXiPZ5Rx/lEF4PX8LDhrggFAXhXlcUaVLPEYeM7LLW5cnOUsIHb
lNfW2yB8kqvJMh80gBNomScfTzFHWnOcGDZe9JQG4NekRUidIN8vFnlaS5OR
3YSa53i7uCI4w7kg+4VvVxRdXLJ4kpFVNOdnz5pXke4/w/G9icD3/Q0wizoR
c2YF91nVrF1tjlgd+k4BBapaZecHnIpi2BQDUdrUqHUKtfNtP8etG5RcCvuG
PcGRZ1k26uv3BX9IftmS54rkSPSasgs0bufp7JHtkhoLk4QxVLij7IjqEBp8
JiYYbxn1pliK/+DW2tuQbbAXs5rYtVBFhNngtvNF7u0d3euiX0bNB9F/hqfq
e3ACbHyjcjyVOIAEhaetPxucLKeEaOwuKEmguTfICyU4isXJluMybIC//hwl
IACnUoTBHaMkilad7Rb4VCYN16mfdontRKX/LlzpvwHBpyPlImeUgMTpKWqg
cGhrTmJloj6pcaYwdUWu7ZG0ZVgRwYNtvfEFiqYeGADSbPu68z7wWvT0AY3E
SZBMkiCJrj1N0wYoLYldezsc52CjB0Zj6bCCGFte0lVd1mJnc52oUThN0mYy
CVqTDbMyIPqBPYiq02KrUufiGSZ8yzlsCTEJczmqA9+NTgxakrXNNQK4wwmL
cNR5PnBAuYFFsgW+zNEh4/JY6ty5NYve+QqVEiYKHGZDdxFZ8pHGFQnzpPAF
nCaKU6NesFRWD378guvqPf4yhNT9bvYYg+pGihZQy9EospqDI7SjHXfdLpR0
oxYhKfakP8TZ98Hf4HPPhX5JEIKUL9ABkASy3o6BbtzhgpCKCFleodyQS3tc
Gg9Y63eW22HG6Vouv/atLFyXJnOFXJkNObWQTKOQ5zzdiEwniK01XDnSkRI3
J5FJ8oFJCIUj6T5TAUw3rO6BoSpOdGOojYdY6tKp3aA7bKW9pfAN3VbVQ2bG
NbgyUsFDB4hJDIsmjFIoE9hmuWSDMbO7BWr/JKr8aNtmCmQ1W+Ub1mFUEmU3
P0xVOnlLXS4oXnNuf+yP8jqKTkyLiBZ1zX2zE3FKZSW6ikvf4tX7XMckAsxg
g9+B6gPqLlxg+nhRI2euphdmFH6HGQAilGsLWRi9hZms+kSYy+jR9IoSUC8S
YHQUQpL0OmbPIclUSfKW94aknjcl/8LU1O3ngx7ziqKh2G1CceC9yCaYiK8D
mxDpGOc56lIkIKDhvNMG4d7Cm2frwxYtwSyNuoWtsb2yuAkShxlOoJ6ytYRl
p7Gpyyrfq8uF0+Aqat1cUgMbrhIZyp8qAwUqgD2MAT0YhuJhIIF/y/VCkdao
tZryBIGll3hgIbQ1hBKyLYVvcx735QF64Zpdu7BR4izfXr8olhuQ9KGeqjod
xYgwytW04uG2Z3FtWSeDIzHlwwgdn/HhpLSOgrRrGBgxER1bOzms2FRN+KEu
xxgpWbne5NjjlyBI2JFX8H3HYhvNKIJsyLZmA2pIJBgN/bV4WZIYLw9rcReG
fQ/YwtiO5C3ZGKor4tJATbZqnJeaLiwKA1X5o5z5IJTYuz5DHHFitQ8sNtDB
mDCIDoTr7+Uk0zWMQtwBIpgznixIdVRKxBMxUyNGkx7lOEdP4iKpWHzvSwFe
UwcqoKsV4s6JOkS1qBAoCvIqybIaRnTH65scDRDFcM4tWhJ9GFvPK45UnHBj
omCN+3LHVYdjohCHz8UGKeeaRUn0W1JVFGXFThvZ0Ya1kFU4tDSVnGGkSKu3
SGUY2diYq99DTJRy5YBomgJMxPpYKgP0DrYZjR3gVuOvVGG9SCwymNMvAUvv
o3biZIeS4ejnD0RJJiagiLkbfbrELQMsr0u71+JPqEUB4m00XxUZAVBZ9Jlh
7BNKYmRlpry5pjsT4kVNvCR6HCaIl8HBexpnmwfEHEYxB7FeatBGNnxMVqBC
TKZouLKVRi1g8hwgSUUB5lv2s5No1pN2E0NrMDn2rIdGnU0tlgADXWw13ds5
cE07TeP+4WzQ6KvWSrE9UigB+V08emkVM3bY53XqZhKF2Bsok3gj9gtEySlS
aEEjzzxhACSYoemWzQpxGINYpuOcLG9aZPvJVgxYsUCkUIGXJeEGVfElurvl
p4nqZMA4UevfYorZNe82Z/7fsvpGMl4QRX26QcDOfhD8qDbaqHCO9RuAwlxz
+i3xHfJJqKWJ7X6SEYcIc1PsGL3KLNdHHrIljxzeCiMuMKAWtFbYj5ugYZmR
1A4ILl3xy/NvzwfXm0hI0Sx2ZF7BNdcNPyleL4zbn06npORRwusCo5aAza7I
SmPePmEyZouvT5agE1rMi3398tlLGECfBLD+H3hsfwKIvwAA

-->

</rfc>
