<?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  (Ruby 3.0.4) -->
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc subcompact="no"?>
<?rfc iprnotified="no"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-amsuess-core-resource-directory-extensions-07" category="exp" tocDepth="3" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.4 -->
  <front>
    <title>CoRE Resource Directory Extensions</title>
    <seriesInfo name="Internet-Draft" value="draft-amsuess-core-resource-directory-extensions-07"/>
    <author initials="C." surname="Amsüss" fullname="Christian Amsüss">
      <organization/>
      <address>
        <email>christian@amsuess.com</email>
      </address>
    </author>
    <date year="2022" month="July" day="12"/>
    <area>Internet</area>
    <workgroup>CoRE</workgroup>
    <keyword>CoRE, Web Linking, Resource Discovery, Resource Directory, Proxy</keyword>
    <abstract>
      <t>A collection of extensions to the Resource Directory <xref target="rfc9176"/>
that can stand on their own, and have no clear future in specification yet.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Constrained RESTful Environments Working Group mailing list (core@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/core/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://gitlab.com/chrysn/resource-directory-extensions"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>This document pools some extensions to the Resource Directory
<xref target="rfc9176"/> that might be useful but have no place in
the original document.</t>
      <t>They might become individual documents for IETF submission, simple
registrations in the RD Parameter Registry at IANA, or grow into a shape where
they can be submitted as a collection of tools.</t>
      <t>At its current state, this draft is a collection of ideas.</t>
    </section>
    <section anchor="reverseproxy">
      <name>Reverse Proxy requests</name>
      <t>When a registrant registers at a Resource Directory, it might not have a
suitable address it can use as a base address.
Typical reasons include being inside a NAT without control over port forwarding,
or only being able to open outgoing connections
(as program running inside a web browser utilizing CoAP over WebSocket <xref target="RFC8323"/> might be).</t>
      <t><xref target="rfc9176"/> suggests (in the Cellular M2M use case) that proxy access to such endpoints can be provided,
it gives no concrete mechanism to do that; this is such a mechanism.</t>
      <t>This mechanism is intended to be a last-resort option to provide connectivity.
Where possible, direct connections are preferred.
Before registering for proxying,
the registrant should attempt to obtain a publicly available port,
for example using PCP (<xref target="RFC6887"/>).</t>
      <t>The same mechanism can also be employed by registrants that want to conceal their network address from its clients.</t>
      <t>A deployed application where this is implicitly done is LwM2M [citation missing].
Notable differences are that the protocol used between the client and the proxying RD is not CoAP but application specific,
and that the RD (depending on some configuration) eagerly populates its proxy caches
by sending requests and starting observations at registration time.</t>
      <section anchor="discovery">
        <name>Discovery</name>
        <t>An RD that provides proxying functionality advertises it by announcing the additional resource type "TBD1" on its directory resource.</t>
      </section>
      <section anchor="registration">
        <name>Registration</name>
        <t>A client passes the "proxy=yes" or "proxy=ondemand" query parameter
in addition to (but typically instead of) a "base" query parameter.</t>
        <t>A server that receives a "proxy=yes" query parameter in a registration
(or receives "proxy=ondemand" and decides it needs to proxy)
MUST come up with a "Proxy URL" on which it accepts requests,
and which it uses as a Registration Base URI for lookups on the present registration.</t>
        <t>The Proxy URL SHOULD have no path component,
as acting as a reverse proxy in such a scenario
means that any relative references in all representations that are proxied must be recognized
and possibly rewritten.</t>
        <t>The RD MAY accept connections also on alternative Registration Base URIs
using different protocols;
it can advertise them using the mechanisms of <xref target="I-D.ietf-core-transport-indication"/>.</t>
        <t>The registrant is not informed of the chosen public name by the RD.</t>
        <t>This mechanism is applicable to all transports that can be used to register.
If proxying is active, the restrictions on when the base parameter needs to be present
(<xref target="rfc9176"/> Registration template)
are relaxed:
The base parameter may also be absent if the connection originates from an ephemeral port,
as long as the underlying protocol supports role reversal,
and link-local IPv6 addresses may be used without any concerns of expressibility.</t>
        <t>If the client uses the role reversal rule relaxation,
both it and the server keep that connection open for as long as it wants to be reachable.
When the connection terminates, the RD SHOULD treat the registration as having timed out
(even if its lifetime has not been exceeded) and MAY eventually remove the registration.
It is yet to be decided whether the RD's announced ability to do proxying
should imply that infinite lifetimes are necessarily supported for such registrations;
at least, it is RECOMMENDED.</t>
        <section anchor="registration-updates">
          <name>Registration updates</name>
          <t>The "proxy" query parameter can not be changed or repeated in a registration update;
RD servers MUST answer 4.00 Bad Request to any registration update that has a "proxy" query parameter.</t>
          <t>As always, registration updates can explicitly or implicitly update the Registration Base URI.
In proxied registrations, those changes are not propagated to lookup,
but do change the forwarding address of the proxy.</t>
          <t>For example, if a registration is established over TCP,
an update can come along in a new TCP connection.
Starting then, proxied requests are forwarded along that new connection.</t>
        </section>
      </section>
      <section anchor="proxy-behavior">
        <name>Proxy behavior</name>
        <t>The RD operates as a reverse-proxy as described in <xref target="RFC7252"/> Section 5.7.3 at the announced Proxy URL(s),
where it decides based on the requested host and port
to which registrant endpoint to forward the request.</t>
        <t>The address the incoming request are forwarded to is the base address of the registration.
If an explicit "base" paremter is given,
the RD will forward requests to that location.
Otherwise, it forwards to the registration's source address
(which is the implied base parameter).</t>
        <t>When an implicit base is used,
the requests forwarded by the RD to the EP contain no Uri-Host option.
EPs that want to run multiple parallel registrations
(especially gateway-like devices)
can either open up separate connections,
or use an additional (to-be-specified) mechanism to set the "virtual host name" for that registration in a separate argument.</t>
        <section anchor="limitations-from-using-a-reverse-proxy">
          <name>Limitations from using a reverse proxy</name>
          <t>The registrant requesting the reverse proxying needs to ensure that all services it provides are compatible with being operated behind a reverse proxy with an unknown name.
In particular, this rules out all applications that refer to local resources by a full URI
(as opposed to relative references without scheme and host).
Applications behind a reverse proxy can not use role reversal.</t>
          <t>Some of these limitations can be mitigated if the application knows its advertised address.</t>
        </section>
      </section>
      <section anchor="on-demand-proxying">
        <name>On-Demand proxying</name>
        <t>If an endpoint is deployed in an unknown network,
it might not know whether it is behind a NAT that would require it to configure an explicit base address,
and ask the RD to assist by proxying if necessary by registering with the "proxy=ondemand" query parameter.</t>
        <t>A server receiving that SHOULD use a different IP address to try
to access the registrant's .well-known/core file using a GET request under the Registration Base URI.
If that succeeds, it may assume that no NAT is present, and ignore the proxying request.
Otherwise, it configures proxying as if "proxy=yes" were requested.</t>
        <t>Note that this is only a heuristic
[ and not tested in deployments yet ].</t>
      </section>
      <section anchor="multiple-upstreams">
        <name>Multiple upstreams</name>
        <t>When a proxying RD is operating behind a router that has uplinks with multiple provisioning domains (see <xref target="RFC7556"/>) or a similar setup,
it MAY mint multiple addresses that are reachable on the respective provisioning domains.
When possible, it is preferred to keep the number of URIs handed out low (avoiding URI aliasing);
this can be achieved by announcing both the proxy's public addresses under the same wildcard name.</t>
        <t>If RDs are announced by the uplinks using RDAO,
the proxy may use the methods of <xref target="I-D.amsuess-core-rd-replication"/> to distribute its registrations to all the announced upstream RDs.</t>
        <t>In such setups, the router can forward the upstream RDs using the PvD option (<xref target="RFC8801"/>) to PvD-aware hosts
and only announce the local RD to PvD-unaware ones (which then forwards their registrations).
It can be expected that PvD-aware endpoints are capable of registering with multiple RDs simultaneously.</t>
      </section>
      <section anchor="examples">
        <name>Examples</name>
        <section anchor="registration-through-a-firewall">
          <name>Registration through a firewall</name>
          <artwork><![CDATA[
Req from [2001:db8:42::9876]:5683:
POST coap://rd.example.net/rd?ep=node9876&proxy=ondemand
</some-resource>;rt="example.x"

Req from other-address.rd.example.net:
GET coap://[2001:db8:42::9876]/.well-known/core

Request blocked by stateful firewall around [2001:db8:42::]

RD decides that proxying is necessary

Res: 2.04 Created
Location: /reg/abcd
]]></artwork>
          <t>Later, lookup of that registration might say:</t>
          <artwork><![CDATA[
Req: GET coap://rd.example.net/lookup/res?rt=example.x

Res: 2.05 Content
<coap://node987.rd.example.net/some-resource>;rt="example.x
]]></artwork>
          <t>A request to that resource will end up at an IP address of the RD,
which will forward it using its the IP and port on which the registrant had registered as source port,
thus reaching the registrant through the stateful firewall.</t>
        </section>
        <section anchor="browser">
          <name>Registration from a browser context</name>
          <artwork><![CDATA[
Req: POST coaps+ws://rd.example.net/rd?ep=node1234&proxy=yes
</gyroscope>;rt="core.s"

Res: 2.04 Created
Location: /reg/123
]]></artwork>
          <t>The gyroscope can now not only be looked up in the RD, but also be reached:</t>
          <artwork><![CDATA[
Req: GET coap://rd.example.net/lookup/res?rt=core.s

Res: 2.05 Content
<coap://[2001:db8:1::1]:10123/gyroscope>;rt="core.s"
]]></artwork>
          <t>In this example, the RD has chosen to do port-based rather than host-based virtual hosting
and announces its literal IP address
as that allows clients to not send the lengthy Uri-Host option with all requests.</t>
        </section>
      </section>
      <section anchor="notes-on-stability-and-maturity">
        <name>Notes on stability and maturity</name>
        <t>Using this with UDP can be quite fragile;
the author only draws on own experience that this can work across cell-phone NATs
and does not claim that this will work over generic firewalls.</t>
        <t>[ It may make sense to have the example as TCP right away. ]</t>
      </section>
      <section anchor="security-considerations">
        <name>Security considerations</name>
        <t>An RD MAY impose additional restrictions on which endpoints can register for proxying,
and thus respond 4.01 Unauthorized to request that would pass had they not requested proxying.</t>
        <t>Attackers could do third party registrations with an attacked device's address as base URI,
though the RD would probably not amplify any attacks in that case.</t>
        <t>The RD MUST NOT reveal the address at which it reaches the registrant
except for adaequately authenticated and authorized debugging purposes,
as that address could reveal sensitive location data the registrant may wish to hide by using a proxy.</t>
        <t>Usual caveats for proxies apply.</t>
      </section>
      <section anchor="alternatives-to-be-explored">
        <name>Alternatives to be explored</name>
        <t>With the mechanisms of <xref target="I-D.core-transport-indication"/>,
an RD could also operate as a forward proxy,
and indicate its availability for that purpose in a <tt>has-proxy</tt> link it creates on its own,
and which it makes discoverable through its lookup interfaces.</t>
        <t>How a registrant opts in to that behavior,
how it selects a suitable public address (using the <tt>base</tt> attribute is tempting, but conflicts with the currently prescribed proxy behavior)
and for which scenarios this is preferable is a topic being explored.</t>
      </section>
    </section>
    <section anchor="infinite-lifetime">
      <name>Infinite lifetime</name>
      <t>An RD can indicate support for infinite lifetimes
by adding the resoruce type "TBD2" to its list of resource types.</t>
      <t>A registrant that wishes to keep its registration alive indefinitely
can set the lifetime value as "lt=inf".</t>
      <t>Registrations with infinite lifetimes never time out.
Unlike regular registrations, they are not "soft state";
the registrant can expect the RD to persist the registrations
across network changes, reboots, softare updates and that like.</t>
      <t>Typical use cases for infinite life times are:</t>
      <ul spacing="normal">
        <li>Commissioning tools (CTs) that do not return to the deployment site,
and thus can not refresh the soft state</li>
        <li>Proxy registrations whose lifetime is limited by a connection that is kept alive</li>
      </ul>
      <section anchor="example">
        <name>Example</name>
        <t>Had the example of <xref target="browser"/> discovered support for infinite lifetimes during lookup like this:</t>
        <artwork><![CDATA[
Req: GET coaps+ws://rd.example.net/.well-known/core?rt=core.rd*

Res: 2.05 Content
</rd>;rt="core.rd TBD1 TBD2";ct=40
]]></artwork>
        <t>it could register like that:</t>
        <artwork><![CDATA[
Req: POST coaps+ws://rd.example.net/rd?ep=node1234&proxy=yes&lt=inf
</gyroscope>;rt="core.s"

Res: 2.04 Created
Location: /reg/123
]]></artwork>
        <t>and never need to update the registration for as long as the websocket connection is open.</t>
        <t>(When it gets terminated, it could try renewing the registration,
but needs to be prepared for the RD to already have removed the original registration.)</t>
      </section>
    </section>
    <section anchor="limited-lifetimes">
      <name>Limited lifetimes</name>
      <t>Even if an RD supports infinite lifetimes,
it may not accept them from just any registrant.
Even more, an RD may have policies in place that require a certain frequency of updates
and thus place an upper limit on lt lower than the technical limit of 136 years.</t>
      <t>This document does not define any means of communicating lifetime limits,
but explores a few options:</t>
      <ul spacing="normal">
        <li>
          <t>Administrative channels.  </t>
          <t>
An RD that sees registrations with unreasonably long lifetimes can flag them for its operator
to take further measures.  </t>
          <t>
While sounding tediously manual,
this captures the observation that different components are configured in a softly incompatible way,
and need operator intervention (because if there were automatic means, they obviously failed).</t>
        </li>
        <li>
          <t>General advertisement of preferred lifetimes.  </t>
          <t>
When the limitations on the lifetimes are not from authorization
but from general setup,
an RD could advertise that property in a to-be-created link target attribute of its registration resource.
Different attributes could express preference or hard limits.  </t>
          <t>
This information is also available easily for registrants,
which may then heed the advice if supported,
and may notify their operators that they just started spending more resources than they were configured to.  </t>
          <t>
It is also available to tools that provision endpoints with their RD address (and parameters),
as they can use the same lookup interface.</t>
        </li>
        <li>
          <t>Per-registration information.  </t>
          <t>
For soft limits, the RD can offer the endpoint additional metadata if it queries them post-registration.
That query can use the endpoint lookup interface (where the endpoint would see additional metadata to its own registration resource)
or special media types for GETting the registration resource itself.
Either way, this requires additional round-trips on the part of endpoint.</t>
        </li>
        <li>
          <t>Hard limits informed by error codes.  </t>
          <t>
An RD can reject registrations with overly long lifetimes if the endpoint is not authorized to use such long lifetimes
with a 4.01 Unauthorized error.
The mechanisms outlined in <xref target="I-D.ietf-core-problem-details"/>,
with a to-be-defined error detail on the permissible lifetime,
can be used to propagate information back to then endpoint.  </t>
          <t>
This behavior is explicitly NOT RECOMMENDED,
because devices may crucially depend on the RD's services --
this rejection may even be the reason why the device is not configured with the new settings that would contain a shorter lifetime.</t>
        </li>
      </ul>
    </section>
    <section anchor="lookup-across-link-relations">
      <name>Lookup across link relations</name>
      <t>Resource lookup occasionally needs execute multiple queries to follow links.</t>
      <t>An RD server
(or any other server that supports <xref target="RFC6690"/> compatible lookup),
can announce support for following links in resource lookups
by announcing support for the TBD3 interface type on its resource lookup.</t>
      <t>A client can the query that server to not only provide the matched links,
but also links that are reachable over relations given in "follow" query parameters.</t>
      <section anchor="example-1">
        <name>Example</name>
        <t>Assume a node presents the following data in its &lt;.well-known/core&gt; resource
(and submitted the same to the RD):</t>
        <artwork><![CDATA[
</temp>;if="core.s";rt="example.temperature",
</t-prot>;rel="calibration-protocol";anchor="/temp",
<http://vendor.example.com/temp9000>;rel="describedby";anchor="/temp",
</hum>;if="core.s";rt="example.humidity",
</h-prot>;rel="calibration-protocol";anchor="/hum",
]]></artwork>
        <t>A lookup client can, in one query,
find the temperature sensor
and its relevant metadata:</t>
        <artwork><![CDATA[
Req: GET /rd-lookup/res?rt=example.temperature&follow=calibration-protocol&follow=describedby

<coap://node1/temp>;if="core.s";rt="example.temperature";anchor="coap://node1",
<coap://node1/t-prot>;rel="calibration-protocol";anchor="coap://node1/temp",
<http://vendor.example.com/temp9000>;rel="describedby";anchor="coap://node1/temp",
]]></artwork>
        <t>[
There is a <eref target="https://github.com/ace-wg/ace-oauth/issues/120#issuecomment-407997786">better example</eref> in an earlier stage of <xref target="I-D.tiloca-core-oscore-discovery"/>
]</t>
        <t>Given the likelihood of a CoRAL based successor to <xref target="RFC6690"/>,
this lookup variant might easily be superseeded by a
CoRAL FETCH format;
it might look like this there:</t>
        <artwork><![CDATA[
Req: FETCH /reef-lookup
Content-Format: application/template-coral+cbor
Payload:
#using core = <...>
#using reef = <...>
reef:content ?x {
  core:rt "example.temperature"
  calibration-protocol ?y {
    core:describedby ?z
  }
}

Res: 2.01 Content
Content-Format: aplication/coral+cbor
Payload:
reef:content <coap://node1/temp> {
    core:rt "example.temperature"
    calibration-protocol <coap://node1/t-prot> {
      core:describedby <http://vendor.example.com/temp9000>
    }
}
]]></artwork>
      </section>
    </section>
    <section anchor="lifetime-age">
      <name>Lifetime Age</name>
      <t>This extension is described in <xref target="I-D.amsuess-core-rd-replication"/> Section 5.2.</t>
      <t>The "provenance" extension in Section 5.1 of the same document
should probably be expressed differently to avoid using non-target link attributes.</t>
    </section>
    <section anchor="zone-identifier-introspection">
      <name>Zone identifier introspection</name>
      <t>The 'split-horizon' mechanism of <xref target="rfc9176"/>
(that registrations with link-local bases can only be read from the zone they registered on)
reduces the usability of the endpoint lookup interface for debugging purposes.</t>
      <t>To allow an administrator to read out the "show-zone-id" query parameter for endpoint and resource lookup is introduced.</t>
      <t>A Resource Directory that understands this parameter MUST NOT limit lookup results to registrations from the lookup's zone,
and MUST use <xref target="RFC6874"/> zone identifiers to annotate which zone those registrations are valid on.</t>
      <t>The RD MUST limit such requests to authenticated and authorized debugging requests,
as registrants may rely on the RD to keep their presence secret from other links.</t>
      <section anchor="example-2">
        <name>Example</name>
        <artwork><![CDATA[
Req: GET /rd-lookup/ep?show-zone-id&et=printer

Res: 2.05 Content
</reg/1>;base="coap://[2001:db8::1]";et=printer;ep="bigprinter",
</reg/2>;base="coap://[fe80::99%wlan0]";et=printer;ep="localprinter-1234",
</reg/3>;base="coap://[fe80::99%eth2]";et=printer;ep="localprinter-5678",
]]></artwork>
      </section>
    </section>
    <section anchor="proxying-multicast-requests">
      <name>Proxying multicast requests</name>
      <t>Multicast requests are hard to forward at a proxy:
Even if a media type is used
in which multiple responses can be aggregated transparently,
the proxy can not reliably know when all responses have come in.
<xref target="RFC7390"/> Section 2.9 describes the difficulties in more detail.</t>
      <t>Note that <xref target="I-D.tiloca-core-groupcomm-proxy"/> provides a mechanism
that <em>does</em> allow the forwarding of multicast requests.
It is yet to be determined what the respective pros and cons are.
Conversely, that lookup mechanism may also serve as an alternative to resource lookup on an RD.</t>
      <t>A proxy MAY expose an interface compatible with the RD lookup interface,
which SHOULD be advertised by a link to it that indicates the resource types
core.rd-lookup-res and TBD4.</t>
      <t>The proxy sends multicast requests to All CoAP Nodes (<xref target="RFC7252"/> Section 12.8)
requesting their .well-known/core files
either eagerly (ie. in regular intervals independent of queries)
or on demand
(in which case it SHOULD limit the results by applying <xref target="RFC6690"/> query filtering;
if it has received multiple query parameters it should forward the one it deems most likely to limit the results,
as .well-known/core only supports a single query parameter).</t>
      <t>In comparison to classical RD operation,
this RD behaves roughly as if it had received a simple registration
with a All CoAP Nodes address as the source address,
if such behavior were specified.
The individual registrations that result from this
neither have an explicit registration resource
nor an explicit endpoint name;
given that the endpoint lookup interface is not present on such proxies,
neither can be queried.</t>
      <t>Clients that would intend to do run a multicast discovery operation behind the proxy
can then instead query that resource lookup interface.
They SHOULD use observation on lookups,
as an on-demand implementation MAY return the first result before others have arrived,
or MAY even return an empty link set immediately.</t>
      <section anchor="example-3">
        <name>Example</name>
        <artwork><![CDATA[
Req: GET coap+ws://gateway.example.com/.well-known/core?rt=TBD4

Res: 2.05 Content
</discover>;rt="core.rd-lookup-res TBD4";ct=40

Req: GET coap+ws://gateway.example.com/discover?rt=core.s
Observe: 0

Res: 2.05 Content
Observe: 0
Content-Format: 40
(empty payload)
]]></artwork>
        <t>At the same time, the proxy sends out multicast requests on its interfaces:</t>
        <artwork><![CDATA[
Req: GET coap://ff05::fd/.well-known/core?rt=core.s

Res (from [2001:db8::1]:5683): 2.05 Content
</temp>;ct="0 112";rt="core.s"

Res (from [2001:db8::2]:5683): 2.05 Content
</light>;ct="0 112";rt="core.s"
]]></artwork>
        <t>upon receipt of which it sends out a notification to the websocket client:</t>
        <artwork><![CDATA[
Res: 2.05 Content
Observe: 1
Content-Format: 40
<coap://[2001:db8::1]/temp>;ct="0 112";rt="core.s";anchor="coap://[2001:db8::1]",
<coap://[2001:db8::2]/light>;ct="0 112";rt="core.s";anchro="coap://[2001:db8::2]"
]]></artwork>
      </section>
    </section>
    <section anchor="opportunistic-rd">
      <name>Opportunistic RD</name>
      <t>An application that wants to advertise its resources in Resource Directory
can find itself in a network that has no RD deployed.
It may be able to start an RD on its own to fill in that gap until an explicitly configured one gets installed.</t>
      <t>This bears the risk of having competing RDs on the same network,
where resources registered at one can not be discovered on the other.
To mitigate that, such Opportunistic Resource Directories should follow those steps:</t>
      <ul spacing="normal">
        <li>
          <t>The RD chooses its own Opportunistic Capability value.
That integer number is an estimate of number of target attributes it expects to be able to store,
where in absence of better estimates one would assume that a registration contains 16 links,
and each links contains three target attributes each with an eight byte key and a 16 byte value.  </t>
          <t>
The Opportunistic Capability value is advertised as a TBD5-cap= target attribute on the registration resource.</t>
        </li>
        <li>
          <t>The RD chooses its own Opportunistic Tie-Break value.
That integer number needs no other properties than being likely to be different
even for two instances of the same device being started;
numeric forms of MAC addresses or random numbers make good candidates.  </t>
          <t>
The Opportunistic Capability value is advertised as a TBD5-tie= target attribute on the registration resource.</t>
        </li>
        <li>The Opportunistic RD, before advertising its resources, performs RD discovery itself,
using at least all the discovery paths it may become discoverable on itself.</li>
        <li>
          <t>If the Opportunistic RD finds no other RD,
or if the RD it finds is less capable than itself,
it can start advertising itself as a Resource Directory.  </t>
          <t>
An RD is called more capable than another if its TBD5-cap value is greater than the other's,
or if its TBD5-tie value is greater than the other's if the former results in a tie.
Absent or unparsable attributes are considered greater than any present attribute.  </t>
          <t>
In case an RD observes a tie even after evaluating the tie breaker,
it may change its Opportunistic Tie-Break value if that was picked randomly,
or reevaluate its life choices if it uses its own MAC address.</t>
        </li>
        <li>
          <t>A running Opportunistic RD needs to perform discovery for other RDs repeatedly.
If it discovers a more capable RD,
it stops advertising its own resources.
It should continue to serve lookup requests,
but refuse any new registration or registration updates
(which will trigger the registrant endpoints to look for a new RD).  </t>
          <t>
An inactive Opportunistic RD will be notified of the highter capability RD's shutdown
by the expiry of whatever it may be started to advertise that was now advertised there;
see below for possible improvements.</t>
        </li>
        <li>
          <t>An RD that discovers an Opportunistic RD of lower capability may speed up the transition process
by (not mutually exclusive) two ways
          </t>
          <ul spacing="normal">
            <li>It can register its own (registration) resource(s) into the lower capability directory.
That RD can take that as having discovered a higher capability RD and stop advertising.</li>
            <li>It can expose resources and registrations of the lower capability directory
using the methods described in <xref target="I-D.amsuess-core-rd-replication"/>.</li>
          </ul>
        </li>
        <li>An Opportunistic RD that yields to a more capable RD may ease the transition
by attempting to register its active registrations at the more capable RD,
taking the role of a CT.
The lifetimes picked for those must not exceed the remaining lifetime of its registrations,
and it must not renew those registrations.</li>
      </ul>
      <t>Future iterations of this document may want to cut down on the possibilities listed above.</t>
      <t>Some ideas are around for making the shutdown of a commissioned or otherwise high-capability RD more graceful,
but they still have some problems</t>
      <ul spacing="normal">
        <li>Setting a commissioned or high-capability RD's Capability to zero in preparation of the shutdown
may create loops in any distributed lookups.</li>
        <li>Asking the lower capability RD to register its registration resource
(even though not otherwise advertised) at the higher capability RD
still creates a situation where clients may find two RDs running simultaneously,
and we can't expect clients to make any decisions based on TBD5 values.</li>
        <li>Asking the higher capability RD to register its registration resource
with the lower capability RD contradicts the current recommendation for the
passive Opportunistic RD to not accept registrations / renewals.
Also, the deployed RD may not know that Opportunistic RDs are a thing.</li>
        <li>Advertising an almost-but-not-quite rt= value on passive registration resources may be an option,
but needs to be thought through thoroughly.</li>
      </ul>
      <t>Installations of Opportunistic RDs are at special risk of resource exhaustion
because they are not sized with their actual deployment in mind,
but rely on defaults set by the application that starts the RD.
Opportunistic RDs should only be started if the application's administrator
can be informed in a timely fashion when the RD's resources are nearing exhaustion;
guidance towards installing a more capable RD on the network should be provided in that case.</t>
      <section anchor="applications">
        <name>Applications</name>
        <ul spacing="normal">
          <li>Group managers using <xref target="I-D.tiloca-core-oscore-discovery"/> can ship its own low-priority Opportunistic RD
to announce its join resources.
This provides benefits over announcing them on multicast discovery
if the network can efficiently route requests to the All CoAP Resource Directories multicast address
(so group members get a response back from an early focused request to all RDs
rather than falling back to multicasting All CoAP Nodes for <tt>?rt=osc.j&amp;...</tt>),
or if discovery of the group's multicast address is used.</li>
          <li>
            <t>Administrative tools that try to provide a broad overview of a network's CoAP devices
could offer to open an Opportunistic RD if they find no active RD on the network
(but should ask the user in interactive scenarios).  </t>
            <t>
That allows them to see devices that newly join the network quickly (by observing their own or the found RD),
rather than relying periodic multicasts.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="registrations-that-update-dns-records">
      <name>Registrations that update DNS records</name>
      <t>An RD that is provisioned with means to update a DNS zone
and that has a known mapping from registrants to host names
could use registrations to populate DNS records from registration base addresses.</t>
      <t>When combined with <xref target="reverseproxy"/>,
these records point to the RD's built-in proxy rather than to the base address.</t>
      <t>This mechanism is not described in further detail yet as it does not interact well yet
with how the <tt>base</tt> registration attribute interacts with the proxy announcements of <xref target="I-D.core-transport-indication"/>.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="rfc9176">
          <front>
            <title>Constrained RESTful Environments (CoRE) Resource Directory</title>
            <author fullname="C. Amsüss" initials="C." role="editor" surname="Amsüss">
              <organization/>
            </author>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="M. Koster" initials="M." surname="Koster">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. van der Stok" initials="P." surname="van der Stok">
              <organization/>
            </author>
            <date month="April" year="2022"/>
            <abstract>
              <t>In many Internet of Things (IoT) applications, direct discovery of resources is not practical due to sleeping nodes or networks where multicast traffic is inefficient. These problems can be solved by employing an entity called a Resource Directory (RD), which contains information about resources held on other servers, allowing lookups to be performed for those resources. The input to an RD is composed of links, and the output is composed of links constructed from the information stored in the RD. This document specifies the web interfaces that an RD supports for web servers to discover the RD and to register, maintain, look up, and remove information on resources. Furthermore, new target attributes useful in conjunction with an RD are defined.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9176"/>
          <seriesInfo name="DOI" value="10.17487/RFC9176"/>
        </reference>
        <reference anchor="I-D.amsuess-core-rd-replication">
          <front>
            <title>Resource Directory Replication</title>
            <author fullname="Christian Amsüss">
	 </author>
            <date day="11" month="March" year="2019"/>
            <abstract>
              <t>   Discovery of endpoints and resources in M2M applications over large
   networks is enabled by Resource Directories, but no special
   consideration has been given to how such directories can scale beyond
   what can be managed by a single device.

   This document explores different ways in which Resource Directories
   can be scaled up from single network to enterprise and global scale.
   It does not attempt to standardize any of those methods, but only to
   demonstrate the feasibility of such extensions and to provide
   terminology and exploratory groundwork for later documents.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-amsuess-core-rd-replication-02"/>
        </reference>
        <reference anchor="RFC6874">
          <front>
            <title>Representing IPv6 Zone Identifiers in Address Literals and Uniform Resource Identifiers</title>
            <author fullname="B. Carpenter" initials="B." surname="Carpenter">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="R. Hinden" initials="R." surname="Hinden">
              <organization/>
            </author>
            <date month="February" year="2013"/>
            <abstract>
              <t>This document describes how the zone identifier of an IPv6 scoped address, defined as &lt;zone_id&gt; in the IPv6 Scoped Address Architecture (RFC 4007), can be represented in a literal IPv6 address and in a Uniform Resource Identifier that includes such a literal address.  It updates the URI Generic Syntax specification (RFC 3986) accordingly.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6874"/>
          <seriesInfo name="DOI" value="10.17487/RFC6874"/>
        </reference>
        <reference anchor="RFC7252">
          <front>
            <title>The Constrained Application Protocol (CoAP)</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
              <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7252"/>
          <seriesInfo name="DOI" value="10.17487/RFC7252"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC8323">
          <front>
            <title>CoAP (Constrained Application Protocol) over TCP, TLS, and WebSockets</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="S. Lemay" initials="S." surname="Lemay">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="K. Hartke" initials="K." surname="Hartke">
              <organization/>
            </author>
            <author fullname="B. Silverajan" initials="B." surname="Silverajan">
              <organization/>
            </author>
            <author fullname="B. Raymor" initials="B." role="editor" surname="Raymor">
              <organization/>
            </author>
            <date month="February" year="2018"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP), although inspired by HTTP, was designed to use UDP instead of TCP.  The message layer of CoAP over UDP includes support for reliable delivery, simple congestion control, and flow control.</t>
              <t>Some environments benefit from the availability of CoAP carried over reliable transports such as TCP or Transport Layer Security (TLS). This document outlines the changes required to use CoAP over TCP, TLS, and WebSockets transports.  It also formally updates RFC 7641 for use with these transports and RFC 7959 to enable the use of larger messages over a reliable transport.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8323"/>
          <seriesInfo name="DOI" value="10.17487/RFC8323"/>
        </reference>
        <reference anchor="RFC6887">
          <front>
            <title>Port Control Protocol (PCP)</title>
            <author fullname="D. Wing" initials="D." role="editor" surname="Wing">
              <organization/>
            </author>
            <author fullname="S. Cheshire" initials="S." surname="Cheshire">
              <organization/>
            </author>
            <author fullname="M. Boucadair" initials="M." surname="Boucadair">
              <organization/>
            </author>
            <author fullname="R. Penno" initials="R." surname="Penno">
              <organization/>
            </author>
            <author fullname="P. Selkirk" initials="P." surname="Selkirk">
              <organization/>
            </author>
            <date month="April" year="2013"/>
            <abstract>
              <t>The Port Control Protocol allows an IPv6 or IPv4 host to control how incoming IPv6 or IPv4 packets are translated and forwarded by a Network Address Translator (NAT) or simple firewall, and also allows a host to optimize its outgoing NAT keepalive messages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6887"/>
          <seriesInfo name="DOI" value="10.17487/RFC6887"/>
        </reference>
        <reference anchor="I-D.ietf-core-transport-indication">
          <front>
            <title>CoAP Protocol Indication</title>
            <author fullname="Christian Amsüss">
	 </author>
            <date day="30" month="May" year="2022"/>
            <abstract>
              <t>   The Constrained Application Protocol (CoAP, [RFC7252]) is available
   over different transports (UDP, DTLS, TCP, TLS, WebSockets), but
   lacks a way to unify these addresses.  This document provides
   terminology and provisions based on Web Linking [RFC8288] to express
   alternative transports available to a device, and to optimize
   exchanges using these.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-transport-indication-00"/>
        </reference>
        <reference anchor="RFC7556">
          <front>
            <title>Multiple Provisioning Domain Architecture</title>
            <author fullname="D. Anipko" initials="D." role="editor" surname="Anipko">
              <organization/>
            </author>
            <date month="June" year="2015"/>
            <abstract>
              <t>This document is a product of the work of the Multiple Interfaces Architecture Design team.  It outlines a solution framework for some of the issues experienced by nodes that can be attached to multiple networks simultaneously.  The framework defines the concept of a Provisioning Domain (PvD), which is a consistent set of network configuration information.  PvD-aware nodes learn PvD-specific information from the networks they are attached to and/or other sources.  PvDs are used to enable separation and configuration consistency in the presence of multiple concurrent connections.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7556"/>
          <seriesInfo name="DOI" value="10.17487/RFC7556"/>
        </reference>
        <reference anchor="RFC8801">
          <front>
            <title>Discovering Provisioning Domain Names and Data</title>
            <author fullname="P. Pfister" initials="P." surname="Pfister">
              <organization/>
            </author>
            <author fullname="É. Vyncke" initials="É." surname="Vyncke">
              <organization/>
            </author>
            <author fullname="T. Pauly" initials="T." surname="Pauly">
              <organization/>
            </author>
            <author fullname="D. Schinazi" initials="D." surname="Schinazi">
              <organization/>
            </author>
            <author fullname="W. Shao" initials="W." surname="Shao">
              <organization/>
            </author>
            <date month="July" year="2020"/>
            <abstract>
              <t>Provisioning Domains (PvDs) are defined as consistent sets of network configuration information. PvDs allows hosts to manage connections to multiple networks and interfaces simultaneously, such as when a home router provides connectivity through both a broadband and cellular network provider.</t>
              <t>This document defines a mechanism for explicitly identifying PvDs through a Router Advertisement (RA) option. This RA option announces a PvD identifier, which hosts can compare to differentiate between PvDs. The option can directly carry some information about a PvD and can optionally point to PvD Additional Information that can be retrieved using HTTP over TLS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8801"/>
          <seriesInfo name="DOI" value="10.17487/RFC8801"/>
        </reference>
        <reference anchor="I-D.core-transport-indication">
          <front>
            <title>*** BROKEN REFERENCE ***</title>
            <author>
              <organization/>
            </author>
            <date/>
          </front>
        </reference>
        <reference anchor="I-D.ietf-core-problem-details">
          <front>
            <title>Concise Problem Details For CoAP APIs</title>
            <author fullname="Thomas Fossati">
              <organization>arm</organization>
            </author>
            <author fullname="Carsten Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="6" month="July" year="2022"/>
            <abstract>
              <t>   This document defines a concise "problem detail" as a way to carry
   machine-readable details of errors in a REST response to avoid the
   need to define new error response formats for REST APIs for
   constrained environments.  The format is inspired by, but intended to
   be more concise than, the Problem Details for HTTP APIs defined in
   RFC 7807.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-core-problem-details-08"/>
        </reference>
        <reference anchor="RFC6690">
          <front>
            <title>Constrained RESTful Environments (CoRE) Link Format</title>
            <author fullname="Z. Shelby" initials="Z." surname="Shelby">
              <organization/>
            </author>
            <date month="August" year="2012"/>
            <abstract>
              <t>This specification defines Web Linking using a link format for use by constrained web servers to describe hosted resources, their attributes, and other relationships between links.  Based on the HTTP Link Header field defined in RFC 5988, the Constrained RESTful Environments (CoRE) Link Format is carried as a payload and is assigned an Internet media type.  "RESTful" refers to the Representational State Transfer (REST) architecture.  A well-known URI is defined as a default entry point for requesting the links hosted by a server.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6690"/>
          <seriesInfo name="DOI" value="10.17487/RFC6690"/>
        </reference>
        <reference anchor="I-D.tiloca-core-oscore-discovery">
          <front>
            <title>Discovery of OSCORE Groups with the CoRE Resource Directory</title>
            <author fullname="Marco Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Christian Amsuess">
	 </author>
            <author fullname="Peter van der Stok">
              <organization>Consultant</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   Group communication over the Constrained Application Protocol (CoAP)
   can be secured by means of Group Object Security for Constrained
   RESTful Environments (Group OSCORE).  At deployment time, devices may
   not know the exact security groups to join, the respective Group
   Manager, or other information required to perform the joining
   process.  This document describes how a CoAP endpoint can use
   descriptions and links of resources registered at the CoRE Resource
   Directory to discover security groups and to acquire information for
   joining them through the respective Group Manager.  A given security
   group may protect multiple application groups, which are separately
   announced in the Resource Directory as sets of endpoints sharing a
   pool of resources.  This approach is consistent with, but not limited
   to, the joining of security groups based on the ACE framework for
   Authentication and Authorization in constrained environments.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tiloca-core-oscore-discovery-11"/>
        </reference>
        <reference anchor="RFC7390">
          <front>
            <title>Group Communication for the Constrained Application Protocol (CoAP)</title>
            <author fullname="A. Rahman" initials="A." role="editor" surname="Rahman">
              <organization/>
            </author>
            <author fullname="E. Dijk" initials="E." role="editor" surname="Dijk">
              <organization/>
            </author>
            <date month="October" year="2014"/>
            <abstract>
              <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for constrained devices and constrained networks. It is anticipated that constrained devices will often naturally operate in groups (e.g., in a building automation scenario, all lights in a given room may need to be switched on/off as a group). This specification defines how CoAP should be used in a group communication context.  An approach for using CoAP on top of IP multicast is detailed based on existing CoAP functionality as well as new features introduced in this specification.  Also, various use cases and corresponding protocol flows are provided to illustrate important concepts.  Finally, guidance is provided for deployment in various network topologies.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7390"/>
          <seriesInfo name="DOI" value="10.17487/RFC7390"/>
        </reference>
        <reference anchor="I-D.tiloca-core-groupcomm-proxy">
          <front>
            <title>Proxy Operations for CoAP Group Communication</title>
            <author fullname="Marco Tiloca">
              <organization>RISE AB</organization>
            </author>
            <author fullname="Esko Dijk">
              <organization>IoTconsultancy.nl</organization>
            </author>
            <date day="7" month="March" year="2022"/>
            <abstract>
              <t>   This document specifies the operations performed by a proxy, when
   using the Constrained Application Protocol (CoAP) in group
   communication scenarios.  Such a proxy processes a single request
   sent by a client over unicast, and distributes the request over IP
   multicast to a group of servers.  Then, the proxy collects the
   individual responses from those servers and relays those responses
   back to the client, in a way that allows the client to distinguish
   the responses and their origin servers through embedded addressing
   information.  This document updates RFC7252 with respect to caching
   of response messages at proxies.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tiloca-core-groupcomm-proxy-06"/>
        </reference>
      </references>
    </references>
    <section anchor="change-log">
      <name>Change log</name>
      <t>Since -05:</t>
      <ul spacing="normal">
        <li>Add section on Limited Lifetimes.</li>
        <li>Point out limitations to applications that use reverse proxying.</li>
        <li>Minor reference and bugfix updates.</li>
      </ul>
      <t>Since -04:</t>
      <ul spacing="normal">
        <li>
          <t>Minor adjustments:
          </t>
          <ul spacing="normal">
            <li>Mention LwM2M and how it is already doing RD proxying.</li>
            <li>Tie proxying in with infinite lifetimes.</li>
            <li>Remove note on not being able to switch protocols: RDs that support some future protocol negotiation can do that.</li>
            <li>Point out that there is no Uri-Host from the RD proxy to the EP, but there could be.</li>
            <li>Infinite lifetimes: Take up CTs more explicitly from RD discussion.</li>
            <li>Start exploring interactions with groupcomm-proxy.</li>
          </ul>
        </li>
      </ul>
      <t>Since -03:</t>
      <ul spacing="normal">
        <li>Added interaction with PvD (Provisioning Domains)</li>
      </ul>
      <t>Since -02:</t>
      <ul spacing="normal">
        <li>Added abstract</li>
        <li>Added example of CoRAL FETCH to Lookup across link relations section</li>
      </ul>
      <t>Since -01:</t>
      <ul spacing="normal">
        <li>Added section on Opportunistic RDs</li>
      </ul>
      <t>Since -00:</t>
      <ul spacing="normal">
        <li>Add multicast proxy usage pattern</li>
        <li>ondemand proxying: Probing queries must be sent from a different address</li>
        <li>proxying: Point to RFC7252 to describe how the actual proxying happens</li>
        <li>proxying: Describe this as a last-resort options and suggest attempting PCP first</li>
      </ul>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>[ Reviews from: Jaime Jimenez ]</t>
      <t><xref target="limited-lifetimes"/> was inspired by Ben Kaduk's comments from reviewing <xref target="rfc9176"/>.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA61965LbRpLufzwFth1rdWubVHfrTo3sbXfLY+2RbIUsxcSu
x7EGgSJZIxDgQQFN0Qq92f7bFzv5ZWYVCiAly2d3YmJGTQJ1ycr68p6cTCZJ
a9vSzNKr+vWz9LVxddfkJr22jcnbutmlz963pnK2rlxS1HmVrenZoskW7SRb
u844N8nrxkwafXNS+DcnJrw5OXuYuDariv/MyrqiAdqmM4ndNPwv116cnT0+
u0jyrJ2l5v0m2dhZkqaubWxOn9zaGXeL/m7rfPBHYTbtij65i7/dbt2Yhesf
cHXTDj/J6/UmiwekD9amaukR+gCvdPP+marGI7TGqm7twppCP8sak83S51Vr
msq0yXYppEvebeUfp+nfzDx9Yat3tlqexhR1eX1jmt3pASqfpq+a+v0uybp2
VTezZJLaipZ1NU0v1+6//8thdUL6q1VjXWuzKvrGrDNbztLcf/WvejJT2k1S
1c06a+2NAUmbRf74/OED/PP55Ho6PMGCDnFTWjoFOrNZYqtF/2oymUzSbE5H
QtRJkkuiXVnS2unJtF6k/VHTwaTtyhzipA8fdPqPH5N2lbVpTrtgtkhpFHrJ
Nmm9rU5TfLLKbkxa1WlemqxJF13bNYaIkrqNyek4ZJF0bu1U1ra2RVGaJPkK
R9PURSdr+/CVjf78mCRvVtalxMgdTj7d1HXpiFXW5ou2kERbSHkLa7tctenc
pJ0zi65M510blr4psxxrTjBY3dilrbIyzD3FWswujJBjEbYq7I0tuug5l9Ix
pM+fvfke/Lm2Dms8TZ1db2i/jVlaHErLC7eVLPw6fZU1xC7Eo7QLfmKX0mqf
X/54eUpLSZdNvaWnaaNZ6lbZxqTblWkMVrrjY6Ed8Wxta4o0c/TY8MBbEI62
cNmmlpaYd00DetJptuaUFgEiAyRSu/+uLUyGd7+itdGFcEaYP23M/yVupNE+
fNXIFxt8Tof2t5WpaBi/WZpI/knPYFvZwRtl/enQBZYzyRLX2Tabl/TPoiDE
cngI26XTk13OMxe+nCZvdhvitJJmy5zQNy+7whB16G7jitJW6KUfL9+kW0s3
lw4/r8FvZYqrTuzVtDi+bdYUQIOESF9X5U4H4JXQGdQb2h69vKzxKY1QCbFc
ckyLIiIs6TDTpquqwbRbwpk5HaSjmbrWlvZ3fH1VX76S2QmHfq7zd6alm/ft
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
1sZiyrFHhZ03VWzYHLf1ZG4maudBugxcDc4I8x7d2AaiRrgQWtYRI7raEPEV
x4UNC8iapXfhAcpf2LX1ei1rIKIljvTnPdVPie8VysHD+DAoVaZynbeHodkB
zG0uNkiwBsHj7Lxu4csQ80O8THrfYTmvSBnd0+vFUiESV++qelsxHQRtgUU5
PEDq0YNO4lLWcWgZkUXtPMkWEL51KrqSNxwdW6FkptJLhOTs1KpJggZNdN9q
8LqUy6HIiUOYzojY+jKe9RM78pISjDHQqujAfgYKy113kPH90amCTB9YkRqq
asaeA1BILP5gGBS9uxCg+1M1uWZzsdcxPIp4IINv1HtRbDUgvXhg2F3W+y7x
XVBtRJ8IG4frUa4f6zHgKSvAK+4ddl2YAYjFqCf6bebeRZeeLHnr2HPQmwWL
oP/seoeS+L+YfSK7/5OGfmyli41tvfRS1ZIvcmSOPX/V4zqBUbODgPA+x8Fl
IpScbk1ZTpiOd2CCpQsbHGhZ+tdnb4I4YPX/s5rGQpZFmh20Uye+ZNgiztHF
V4lbM/Gt8xaPxC3ssqobM3RHBVE1hP1wPJEvB4r6YuC02JomEphExB/rNjjH
xOHGLuUsXZmOA0B58vdfeC1gnlbkLPGZ8JyEFKA6w/cGjn3pwbrbOCj3axcc
7iOHmiAJ/u4vHt1S73WBfthtYCzJBY7EAFAKcQs2t+s1CROXHjtj1DP98P59
shJPoBJmiGxYeJ0JpaGwEaFgFqxxc8KAvQUWHAnBoOmVDOA/I8uh+dXu6b2/
crOCsxcsp8YV6ZPdeg5RtGC/Ae2Ufc5AqJLu5nF2U1tWIOGbyUqbgetOniR8
QIortDpLMFSMXHJs1gVuIT5Wm7/fYc+u7O4lFaPIoV4IToNZX18L/vfKmEpx
fxpyC15fX/4kcl9gEhzdiWeD5CMBbqG+jD8IDSL2RVYUbo4lddowHg4DUd4H
MdAQPX9hvVi4+pP4nNXMVHYCyWJdL34z8sG8urn2Pn51jz96dHYORqL56ctJ
tgVZIDlcImHGMhBf9i2SSoAPb3SVvFNXRHnVtKCLRzoa+8oH2z1hi1TPmXCW
uM6oX7lfRR8cYVGdbYRXF/tgGrgcu6XbQH9mlak7V+7kxj4TW8QdsCTbFZFw
CSfdguTAlg4hSVL6D9l4opv8cnF2dj4r5o9m9y5ms8ePHj74dXb/waO7M37s
1U/swsw2szt3mmKqRs+U5BL9+a3ZPK3qwuClr4dgzy//5Q4c5iET4JsnTfv0
yA/x/mi0kBpYOPGycziZLAaYrWs5sOo7Y8AP4zPIz0uEvvgmcFASwVlPEjoB
4oBiRItfdYDrYLP0kS71jQUh6Odys/RienYvvWrYCOdPX6iWP0vv0NHeyeZ5
kSQv6GtSo8QKFf1jrGOKwHfZbhZ2MotpMDoPGYqmcN8SnQOZhyu7n17ViJC1
ckA6kh7iiOifPT3I7qb3E+jq1TJhq4f4G1o6u4Jjya121etrGIW4TgMbiX3d
TN1WZDreVHOwd5iPomqrrAi3RsLTuhDx9rWrzok46HXr8K6/IIynY8Y45JsR
n2IItMIWMu/b9MNX+snH6LTC9XH/snWfu0LnF3fvfR2EvN6e5a6pXU5CVmgP
np66oz/BajSqWBlhJFWFt6wKaOSZmZDhuM8XOJUYmbpamXZwyf55PpRFfwkT
9pfvfDY7/3V2fkbL/yQNnlei7QQ3jOqr0DnUWa6ePfjcxdlAByjOQKIBZIB+
HBt9UM9ZA1aZ4NRV2bLzuOfiJPOaRlnCAtCIKOYEZRHuE3FiqmW72o3NZLWx
OA4iFrcAOVQ5dqzDfST+SaxmnbWkybWEMm9V1lnVqN5ev/JyhhR9Er2LJluS
nvuExbpkD8k5F0225aFhV0AmNdaI0POKI8aReG9ONKe/AaebFSK2pNiKwCxq
I87avMzsOnqZLzG/ze6upalogjxcJOyPlNDnojavs3fwV1eOgxMcfMJyfZCb
aAs/WMP4R8JyNyXdlOnzs8mZELh1SHrw/gONh0IvtGsYkqOo5ihoYfdyEzx6
jKL34ltn9HAbkm3wkZ6nbyshLIJSYrAqDvZ2F8KfDEucQAOC9S4uPzxny7QZ
SaWGFsGvcc6DbQo2tXcjHcrb5Zm8VKhzBF5thdZM3GrQOoF6AdfgiJJlNfU8
Q/QMKwKx7WLHPl4ZUxOGODjkTBRYg5f4x5/esN2clT5sLHO2fZRScGJsiyXw
6W9aiT8UGdGB8Ap6VwdFqoUSCdDGrevJWph5t1xyRKZrcKLutL9zOnWuJi6v
CexkWbn3XrW0yNpsDPdgPzK4Vsx4yACZ74JN6N27bx3gICe2zDTbSvyuElVT
neuyjyb6EAosasInku5/8zbwwajgZwKC7CMmisvWJHIp7hrxznoxyUsV/tTX
RevW3BGBjuC6UhKK1+o3gkjx7v7GgSy2PFmGOB/rR9LdMP6MG4scAElAkLCi
Ck4GSFFjkHzTLDKCTaLRDyRlBilaNeLbtgrqgndEnyYrJJ8BNZEUhm2GtKyh
8ZMe97r+b+D038C43uhwHEhsOctyLplXC3q5db1LQtPSkK7RBLf2ZuAWP+GN
g3SyeR/bdsG6FouQl8fJbG29oSWKb82zwFQSD0eRI49TQJxwbBo84in3Y01I
HgGWBcXF1U0XZ2hcHLEDm6UU5MtimMUhSToDfQc3FpEJFyzasb0Gk/WGkw+N
rKfcsQPW+0lD6O4mKzvmzKOyfUqLP6LZXu+D1oEQWmU4OQODkIk3Td5W7O+l
VXCG2V5Ah1DUx3GOXL3QzMKjJ+MEK40pIW2r92DRDWIX1tiXTjJNRJ3PdNKQ
EeJV87pu6R+YCxP7mFVIEMJygZCaEejT4dz+OaYhaEgK1G3SfdaatMmHygmn
x1dvnCbSFbWKCxL5lfe5964asv9ac0qKUxBN3rlJXEknr4psoBBm9NmUg3Ph
EFk4SOvE9anuiEHkl4Ogjjhl0wpjxDYn3XORckF6M855XfhjwAwa+fOcnhYd
m7yKJcwOuHKHtM7D6vTYAAz6Z1Pc/qwGSgNF6iXBKzKfUr5cT/L26b2zhNM/
VNyopqALzNrZ/1zh/1quz/+q3s8OP75lCByAk6KQ6uC2jxID8P3WzJ2kikac
IB4/BBOP2VWGHE4DpdfnBhTqxgSdWs4Uq8x2bHNp9kLXjrNEEEUrVGgF33NJ
uyx2oiNK+F+4LaRPD+JzJ4DdF8rIPWd9+EqZexI+IyvtmSYjiMQN+R77nCnu
90y1Jkkw4uwfNgX/0bl2ECdHHIjHXtPBnerweJ03sanhdZdEKEkIV9tZHPV0
9UzDwbUFa4xVvsON8gkB4dbLqxxQ3jAz0v4gvkv2QHorB5RqSQWpGKP0oUV6
fvdBujNZ46bj/Peg3zPyG96XJHXRayiP6CrWVXBPPXbwsE6OVOUfqypmq9aO
Y9y7LIhJ9KhuJDpfGTYM0jRKZ3TGjJ2HLEO6SpKuWX1lVu3Pl92DZbbUUwG8
tN47XTdcHJK2sDkWXcMmIG0JITSZ/G8rBAYcPEDMq6aw7FujM6s6pPyk3j7a
tOycZ/7rUzYVt0OUIuTP+SCcevU1JQPYzHmMcXQu23lM58vqly4aFRJg2Kc5
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
RxCOtcx6p3/kRvE1MKg8Vz+dtwsl78MDCbJ2l0vanRSRcQQ/EzCM82j7iFxp
GUF9wr4vffZjckBA+7xME019vsuWo0fpi+njIA4EkoDAqMJoNYjAvj7xNQyS
wQ8oW8um7jZQ1yT+T9P05SI92EovntsIBdxW5GqHZXGEhfvHcagKUyJDXIgZ
akTjJGyJp+Z6s6ekgFVct1GyeyoL6NMLglABzCYqJ0UMK7sZoEYOgEo8zYyI
ckRcWPpeMoWqCMTHFTN648dg71MXtU5hbuLyDw6gio+65sILqSKVcL9PjolD
9ImGHRUKJo3Gmcmcv6cgJ6tGWpk7QHpMdEmcxc0tfoTfDfnP/7Rfqnd+MX0E
ARcXGhGEHSyVcInWW/kOF8fWTMUpITF6iU3QYXCiADxHGktQZ8qJdLdJNSP4
ONyunOvOQpWHALeShYUMKIhMG6yQKw7VnSICkRYn2dGknLMTd8WQzU0aiqFL
J3YpcIaJqDZxKjkLI8S7zJpIixQ9tjhYu9lbGUuHPWqxfhEcQChYqJb7CziR
FHfmsMY6aW6Rl6iu0ZRzLaeoKzVfXl+LZw8BMaTalDstB7E+5VX3nGn3p4Gw
TNQ1OWKMKFdMMgXiWsLThAMR+ap3KXLEIBTOTZkbo65UozR/TQMmWnnFwLqk
UkaSnktR5dFBbzUalA2eCioPChyeJEs1DRVQPq2Qqd/R98GotbxAc7lOw7JC
/iS4FmrTlU/m7B2S0lZIU0pR0ZhF1zAYr/0J+oKYIBQS9bJVoYFJ5G7b0+P6
aMgbKKhROVQcd0S4V/yC0qkDn0zktnGRJwf35FHgnU8pAZbbxoWDmksPI1ZZ
VCZlTQPG4mpKX4Pv38fRrDekETPEISXIrlmWIk3oc8oOFAHJitASz4HBdCh5
AwD4ee3Hk36QvhHjKIYISRx/Yjl+4CiHGW//xOQ3s/Tsc+uKnjpk9t6Tj4+F
jBsxdU+4d1rvjER4oGcfhX4YCgfgX328ffrdJzK1F4uz+7PZovh0pkyfqZ0e
j8pDkJONwpCTgwchLjSi89FZen5+cXQwc2V/zIvPjVnC7/LpQbsNowZh4IbF
TkhW7GmVSQDVV2uqhzdKbuGbPvuiszz/3FnuJ7ETuT5LlLGbbqizn35q1Itf
P08WHrapDw1LSjc06p9YTnUVVwaSjOEQR1zTGqq3xX4Kcfk4jMCa54F+iJyJ
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

-->

</rfc>
