<?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.30 (Ruby 2.6.10) -->
<?rfc docmapping="yes"?>
<?rfc comments="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-nfsv4-uncacheable-files-02" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="Uncacheable File">Adding an Uncacheable File Data Attribute to NFSv4.2</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-nfsv4-uncacheable-files-02"/>
    <author initials="T." surname="Haynes" fullname="Thomas Haynes">
      <organization>Hammerspace</organization>
      <address>
        <email>loghyr@gmail.com</email>
      </address>
    </author>
    <date/>
    <area>General</area>
    <workgroup>Network File System Version 4</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 57?>

<t>Network File System version 4.2 (NFSv4.2) clients commonly perform
client-side caching of file data in order to improve performance.
On some systems, applications may influence client data caching
behavior, but there is no standardized mechanism for a server or
administrator to indicate that particular file data should not be
cached by clients for reasons of performance or correctness. This
document introduces a new file data caching attribute for NFSv4.2.
Files marked with this attribute are intended to be accessed with
client-side caching of file data suppressed, in order to support
workloads that require predictable data visibility. This document
extends NFSv4.2 (see RFC7862).</t>
    </abstract>
    <note>
      <name>Note to Readers</name>
      <?line 71?>

<t>Discussion of this draft takes place
on the NFSv4 working group mailing list (nfsv4@ietf.org),
which is archived at
<eref target="https://mailarchive.ietf.org/arch/search/?email_list=nfsv4"/>. Source
code and issues list for this draft can be found at
<eref target="https://github.com/ietf-wg-nfsv4/uncacheable-files"/>.</t>
      <t>Working Group information can be found at <eref target="https://github.com/ietf-wg-nfsv4"/>.</t>
    </note>
  </front>
  <middle>
    <?line 82?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Clients of remote filesystems commonly perform client-side caching
of file dat in order to improve performance.  Such caching may
include retaining data read from the server to satisfy subsequent
READ requests, as well as retaining data written by applications
in order to delay or combine WRITE requests before transmitting
them to the server.  While these techniques are effective for many
workloads, they may be unsuitable for workloads that require
predictable data visibility or involve concurrent modification of
shared files by multiple clients.</t>
      <t>In some cases, Network File System version 4.2 (NFSv4.2) (see
<xref target="RFC7862"/>)  mechanisms such as file delegations can reduce the
impact of concurrent access.  However, delegations are not always
available or effective, particularly for workloads with frequent
concurrent writers or rapidly changing access patterns.</t>
      <t>There have been prior efforts to bypass file data caching in order to
address these issues.  In High-Performance Computing (HPC) workloads,
file data caching is often bypassed to improve predictability and to
avoid read-modify-write hazards when multiple clients write disjoint
byte ranges of the same file.</t>
      <t>Applications on some systems can request bypass of the client data
cache by opening files with the O_DIRECT flag (see <xref target="OPEN-O_DIRECT"/>).
However, this approach has limitations, including the requirement
that each application be explicitly modified and the lack of a
standardized mechanism for communicating this intent between servers
and clients.</t>
      <t>This document introduces the uncacheable file data attribute to
NFSv4.2.  This <bcp14>OPTIONAL</bcp14> attribute allows a server to indicate that
client-side caching of file data for a particular file is unsuitable.
When both the client and the server support this attribute, the
client is advised suppress client-side caching of file data for
that file, in accordance with the semantics defined in this document.</t>
      <t>The uncacheable file data attribute is read-write, applies on a
per-file basis, and has a data type of boolean.</t>
      <t>Support for the uncacheable file data attribute is specific to the
exported filesystem and may differ between filesystems served by the
same server.  A client can determine whether the attribute is
supported for a given file by issuing a GETATTR request and examining
the returned attribute list.</t>
      <t>The uncacheable file data attribute applies only to regular files
(NF4REG).  Attempts to query or set this attribute on objects of
other types <bcp14>MUST</bcp14> result in an error of NFS4ERR_INVAL. Since the
uncacheable file data attribute applies only to regular files,
attempts to apply it to other object types represent an invalid use
of the attribute.</t>
      <t>Using the process described in <xref target="RFC8178"/>, the revisions in this
document extend NFSv4.2 <xref target="RFC7862"/>.  They are built on top of the
external data representation (XDR) <xref target="RFC4506"/> generated from
<xref target="RFC7863"/>.</t>
      <section anchor="definitions">
        <name>Definitions</name>
        <dl>
          <dt>client-side caching of file data</dt>
          <dd>
            <t>The retention of file data by a client in a local data cache, commonly
referred to as the page cache, for the purpose of satisfying subsequent
READ requests or delaying transmission of WRITE data to the server.</t>
          </dd>
          <dt>write-behind caching</dt>
          <dd>
            <t>A form of file data caching in which WRITE data is retained by the
client and transmission of the data to the server is delayed in order
to combine multiple WRITE operations or improve efficiency.</t>
          </dd>
          <dt>direct I/O</dt>
          <dd>
            <t>An access mode in which file data is transferred between application
buffers and the underlying storage without populating or consulting
the client's file data cache.  Direct I/O suppresses both read caching
and write-behind caching of file data.</t>
          </dd>
          <dt>write hole</dt>
          <dd>
            <t>A write hole is an instance of data corruption that arises when
multiple clients modify disjoint byte ranges within the same encoded
data block without having a consistent view of the existing contents.
This can result in stale data overwriting newer updates, particularly
in environments that use erasure encoding or striped storage.
(Adapted from <xref target="I-D.haynes-nfsv4-flexfiles-v2"/>.)</t>
          </dd>
        </dl>
        <t>This document assumes familiarity with the NFSv4 protocol operations,
error codes, object types, and attributes as defined in <xref target="RFC8881"/>.</t>
      </section>
      <section anchor="requirements-language">
        <name>Requirements Language</name>
        <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <?line -18?>

</section>
    </section>
    <section anchor="client-side-caching-of-file-data">
      <name>Client-Side Caching of File Data</name>
      <t>The uncacheable file data attribute advises the client to bypass
its page cache for a file in certain troublesome cases.  These
include forms of client-side caching of file data such as write-behind
caching, in which multiple pending WRITEs are combined and transmitted
to the server at a later time for efficiency.  The uncacheable file
data attribute inhibits such behavior with an effect similar to
that of using the O_DIRECT flag with the open call (<xref target="OPEN-O_DIRECT"/>).</t>
      <t>The intent of this attribute is to allow a server or administrator
to indicate that client-side caching of file data for a particular
file is unsuitable.  The server is often in a better position than
individual clients to determine sharing patterns, access behavior,
or correctness requirements associated with a file.  By exposing
this information via an attribute, the server can advise clients
to suppress file data caching in a consistent manner.</t>
      <t>One important use case for this attribute arises in connection with
High-Performance Computing (HPC) workloads.  These workloads often
involve large data transfers and concurrent access by multiple
clients.  In such environments, client-side caching of file data
can introduce unpredictable latency or correctness hazards when
data is buffered and flushed at a later time.</t>
      <t>Another aspect of such workloads is the need to support concurrent
writers to shared files.  When application data spans a data block
in a client cache, delayed transmission of WRITE data can result
in clients modifying stale data and overwriting updates written by
others.  Prompt transmission of WRITE data enables the prompt
detection of write holes and reduces the risk of data corruption.</t>
      <section anchor="non-goals">
        <name>Non-Goals</name>
        <t>This attribute does not require clients to provide strict coherency,
does not replace existing NFS cache consistency mechanisms, and
does not mandate any specific client implementation strategy.  It
provides advisory guidance intended to reduce latency and correctness
risks in selected workloads.</t>
      </section>
      <section anchor="sec_files">
        <name>Uncacheable File Data</name>
        <t>When a file object is marked as uncacheable file data, the attribute
advises the client that client-side caching of file data for the
file is unsuitable.  In particular, the client is advised to transmit
modifications to the file promptly rather than retaining them in a
local data cache.  Note that a client that does not query this
attribute cannot be expected to observe the behavior described in
this section.</t>
        <t>For uncacheable file data, the client is advised not to retain file
data in its local data cache for the purpose of satisfying subsequent
READ requests or delaying transmission of WRITE data.  In such
cases, READ operations bypass the client data cache, and WRITE data
is not retained for read-after-write satisfaction or for the purpose
of combining multiple WRITE requests.</t>
        <t>Caching of unstably written data used to reissue WRITEs lost because
of server failure prior to COMMIT is not affected by the advice
provided by the uncacheable file data attribute.  This is because
the server is made aware of the WRITE operation without the sort
of delays introduced by write-behind caching.</t>
        <t>Suppressing read caching in addition to suppressing write-behind
caching reduces the risk of stale-data overwrite in multi-writer
workloads.  If a client retains cached READ data while other clients
concurrently modify disjoint byte ranges of the same file, the
client may perform a read-modify-write operation using stale data
and overwrite updates written by others.  This risk exists even
when WRITE operations are transmitted promptly.</t>
        <t>Disabling READ caching allows clients to observe the most recent
data prior to modification and reduces read-modify-write hazards
for shared files.  This behavior is consistent with direct I/O
semantics such as those provided by the O_DIRECT flag in Linux and
the directio/forcedirectio mechanisms in Solaris.</t>
        <t>If the fattr4_uncacheable_file_data attribute is not set when a
file is opened and is changed while the file is open, the client
is not expected to retroactively alter its caching behavior.  A
client may choose to flush cached data and apply the advice to
subsequent I/O, but such behavior is not required until the file
is closed and reopened.</t>
        <t>The presence of the uncacheable file data attribute does not
invalidate file delegations.  A server that wishes to ensure prompt
client I/O may choose not to issue write delegations for files
marked as uncacheable, but clients are not required to suppress
delegations solely due to the presence of this attribute.</t>
      </section>
    </section>
    <section anchor="sec_setting">
      <name>Setting the Uncacheable File Data Attribute</name>
      <t>The uncacheable file data attribute provides a mechanism by which
applications that do not support O_DIRECT can request DIRECT-I/O-like
semantics for file access.  In particular, the attribute allows a
server to advise clients that client-side caching of file data for
a file is unsuitable, including both read caching and write-behind
caching.</t>
      <t>Suppressing read caching is necessary in addition to suppressing
write-behind caching to avoid read-modify-write hazards in multi-writer
workloads.  If clients retain cached READ data while other clients
concurrently modify disjoint byte ranges of the same file, stale
cached data may be merged with new WRITE data and overwrite updates
written by others.  This risk exists even when WRITE data is
transmitted promptly and is not addressed by suppressing write-behind
caching alone.</t>
      <t>One possible deployment model is for a server or administrator to
configure a mount (see <xref target="MOUNT"/>) option such that newly created
files under a given export are marked as uncacheable file data.  In
such a configuration, the NFSv4.2 client could use SETATTR to set
the fattr4_uncacheable_file_data attribute at file creation time.</t>
      <t>This approach is conceptually similar int intent to the Solaris forcedirectio
mount option (see <xref target="SOLARIS-FORCEDIRECTIO"/>), but differs in scope
and visibility in that it allows DIRECT-I/O-like behavior to be
applied without requiring changes to individual applications.
However, unlike the Solaris option, the NFSv4.2 attribute is visible
to all clients accessing the file and is intended to convey server-side
knowledge or policy in a distributed environment.</t>
    </section>
    <section anchor="implementation-status">
      <name>Implementation Status</name>
      <t>There is a prototype Hammerspace server which implements the
uncacheable file data attribute and a prototype Linux client which
treats the uncacheable file data attribute as an indication to use
O_DIRECT.  For the prototype, all files created under the mount
point have the fattr4_uncacheable_file_data set to be true.</t>
    </section>
    <section anchor="xdr-for-uncacheable-attribute">
      <name>XDR for Uncacheable Attribute</name>
      <sourcecode type="xdr"><![CDATA[
///
/// typedef bool            fattr4_uncacheable_file_data;
///
/// const FATTR4_UNCACHEABLE_FILE_DATA       = 87;
///
]]></sourcecode>
    </section>
    <section anchor="extraction-of-xdr">
      <name>Extraction of XDR</name>
      <t>This document contains the external data representation (XDR)
<xref target="RFC4506"/> description of the uncacheable file attribute.  The XDR
description is presented in a manner that facilitates easy extraction
into a ready-to-compile format. To extract the machine-readable XDR
description, use the following shell script:</t>
      <sourcecode type="shell"><![CDATA[
<CODE BEGINS>
#!/bin/sh
grep '^ *///' $* | sed 's?^ */// ??' | sed 's?^ *///$??'
<CODE ENDS>
]]></sourcecode>
      <t>For example, if the script is named 'extract.sh' and this document is
named 'spec.txt', execute the following command:</t>
      <sourcecode type="shell"><![CDATA[
<CODE BEGINS>
sh extract.sh < spec.txt > uncacheable_prot.x
<CODE ENDS>
]]></sourcecode>
      <t>This script removes leading blank spaces and the sentinel sequence '///'
from each line. XDR descriptions with the sentinel sequence are embedded
throughout the document.</t>
      <t>Note that the XDR code contained in this document depends on types from
the NFSv4.2 nfs4_prot.x file (generated from <xref target="RFC7863"/>).  This includes
both nfs types that end with a 4, such as offset4, length4, etc., as
well as more generic types such as uint32_t and uint64_t.</t>
      <t>While the XDR can be appended to that from <xref target="RFC7863"/>, the code snippets
should be placed in their appropriate sections within the existing XDR.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The attribute does not introduce new authorization mechanisms or
alter existing access control semantics; existing NFSv4.2 security
mechanisms continue to apply.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC4506">
          <front>
            <title>XDR: External Data Representation Standard</title>
            <author fullname="M. Eisler" initials="M." role="editor" surname="Eisler"/>
            <date month="May" year="2006"/>
            <abstract>
              <t>This document describes the External Data Representation Standard (XDR) protocol as it is currently deployed and accepted. This document obsoletes RFC 1832. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="67"/>
          <seriesInfo name="RFC" value="4506"/>
          <seriesInfo name="DOI" value="10.17487/RFC4506"/>
        </reference>
        <reference anchor="RFC7862">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 2 Protocol</title>
            <author fullname="T. Haynes" initials="T." surname="Haynes"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document describes NFS version 4 minor version 2; it describes the protocol extensions made from NFS version 4 minor version 1. Major extensions introduced in NFS version 4 minor version 2 include the following: Server-Side Copy, Application Input/Output (I/O) Advise, Space Reservations, Sparse Files, Application Data Blocks, and Labeled NFS.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7862"/>
          <seriesInfo name="DOI" value="10.17487/RFC7862"/>
        </reference>
        <reference anchor="RFC7863">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 2 External Data Representation Standard (XDR) Description</title>
            <author fullname="T. Haynes" initials="T." surname="Haynes"/>
            <date month="November" year="2016"/>
            <abstract>
              <t>This document provides the External Data Representation (XDR) description for NFS version 4 minor version 2.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7863"/>
          <seriesInfo name="DOI" value="10.17487/RFC7863"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8178">
          <front>
            <title>Rules for NFSv4 Extensions and Minor Versions</title>
            <author fullname="D. Noveck" initials="D." surname="Noveck"/>
            <date month="July" year="2017"/>
            <abstract>
              <t>This document describes the rules relating to the extension of the NFSv4 family of protocols. It covers the creation of minor versions, the addition of optional features to existing minor versions, and the correction of flaws in features already published as Proposed Standards. The rules relating to the construction of minor versions and the interaction of minor version implementations that appear in this document supersede the minor versioning rules in RFC 5661 and other RFCs defining minor versions.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8178"/>
          <seriesInfo name="DOI" value="10.17487/RFC8178"/>
        </reference>
        <reference anchor="RFC8881">
          <front>
            <title>Network File System (NFS) Version 4 Minor Version 1 Protocol</title>
            <author fullname="D. Noveck" initials="D." role="editor" surname="Noveck"/>
            <author fullname="C. Lever" initials="C." surname="Lever"/>
            <date month="August" year="2020"/>
            <abstract>
              <t>This document describes the Network File System (NFS) version 4 minor version 1, including features retained from the base protocol (NFS version 4 minor version 0, which is specified in RFC 7530) and protocol extensions made subsequently. The later minor version has no dependencies on NFS version 4 minor version 0, and is considered a separate protocol.</t>
              <t>This document obsoletes RFC 5661. It substantially revises the treatment of features relating to multi-server namespace, superseding the description of those features appearing in RFC 5661.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8881"/>
          <seriesInfo name="DOI" value="10.17487/RFC8881"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="I-D.haynes-nfsv4-flexfiles-v2">
          <front>
            <title>Parallel NFS (pNFS) Flexible File Layout Version 2</title>
            <author fullname="Thomas Haynes" initials="T." surname="Haynes">
              <organization>Hammerspace</organization>
            </author>
            <date day="20" month="October" year="2025"/>
            <abstract>
              <t>   Parallel NFS (pNFS) allows a separation between the metadata (onto a
   metadata server) and data (onto a storage device) for a file.  The
   Flexible File Layout Type Version 2 is defined in this document as an
   extension to pNFS that allows the use of storage devices that require
   only a limited degree of interaction with the metadata server and use
   already-existing protocols.  Data protection is also added to provide
   integrity.  Both Client-side mirroring and the Erasure Coding
   algorithms are used for data protection.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-haynes-nfsv4-flexfiles-v2-02"/>
        </reference>
        <reference anchor="MOUNT" target="https://man7.org/linux/man-pages/man2/mount.2.html">
          <front>
            <title>mount(2) - mount filesystem</title>
            <author>
              <organization>Linux man-pages project</organization>
            </author>
            <date year="2024"/>
          </front>
          <seriesInfo name="Linux" value="Programmer's Manual"/>
        </reference>
        <reference anchor="OPEN-O_DIRECT" target="https://man7.org/linux/man-pages/man2/open.2.html">
          <front>
            <title>open(2) - Linux system call for opening files (O_DIRECT)</title>
            <author>
              <organization>Linux man-pages project</organization>
            </author>
            <date year="2024"/>
          </front>
        </reference>
        <reference anchor="SOLARIS-FORCEDIRECTIO" target="https://docs.oracle.com/en/operating-systems/solaris/oracle-solaris/11.4/manage-nfs/mount-options-for-nfs-file-systems.html">
          <front>
            <title>mount -o forcedirectio - Solaris forcedirectio mount option</title>
            <author>
              <organization>Oracle Solaris Documentation</organization>
            </author>
            <date year="2023"/>
          </front>
          <seriesInfo name="Solaris" value="Administration Guide"/>
        </reference>
      </references>
    </references>
    <?line 384?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Trond Myklebust, Mike Snitzer, and Thomas Haynes all worked on the
prototype at Hammerspace.</t>
      <t>Rick Macklem, Chuck Lever, and Dave Noveck reviewed the document.</t>
      <t>Chris Inacio, Brian Pawlowski, and Gorry Fairhurst helped guide
this process.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAI8AZGkAA7Vb/3LbRpL+f55i1tkq2ymSihVd4tVm41Uk2VaVLfkkebNb
qZxqCAzJWYEAFwNIZnzOs9yz3JPd190zwIBiLO3eXaqSkBAw6Onp7u/rHxyP
x6pxTWH39UGeu3KuTanfl5nJFtZMC6tfOvznyDRGHzRN7aZtY3VT6dOXFzd7
k11lptPa3uzfeUTlVVaaJZbNazNrxs42s3E58zd747a/dTzDrX781a7KTGPn
Vb3e177JVY5v+/rj0cHl8SeVVaW3pW/9vm7q1iq3qvmTb3a/+uoPeNbU1uzr
V7a0tSnUbVVfz+uqXe3rU9vQN9nDxdo3dqn/YmvvqlLvqWu7xl/zfX1SNrYu
bTM+IlGV8o0p8ytTVCWEWFuvVm5f/9RU2Uj7qm5qO/P4tF7KB2x0aVYrqG6k
s2q5tGXjf1bKtM2iqveVHiuNf1wJ8S8n+rVZl1iRLol6LhfV0vj0elXPTel+
MQ3E3McfsGTtVyaz/Fe7NK7Y10U1X6zrP8/p2wSvVaqs6iWeubF4pz5/ebj7
7Nkfwse9f/vqm/Dx2+ff7PYfvw4fnz/7dq//+Dx+fP782b5SrpylS5+MjyYL
ljac56ywH+Qcb3jpt2fvTy/3WdhgWcuqLZsnu0/1WD5qvp3PQ24z9dw2+3rR
NCu/v7OzNOW3E6hhp3Bl+4G+jldmbj192t3hJSa7k0WzLPjxTtX4Z0zq29dv
6EHdPahXdfV3mzV8ixjX7le7e/zV29pZT5uUFbQ8vK8fvaurec3qf+z1W1O2
pniEW87eHZ+Oz66OTs6PD4f7rFa2lG3K+2WLOjNFoaFD/ju5GG9fP4lrPP0X
lEBL/V/p4OLszcH5ycX45dn54bGIdHJ29wD1uKJdZDZ3NdZxFV50URWmdn7j
utxerciCt+4NPuOxN5MVlox3x5a0oRo2Vs7HojW/42XtHblvHL8+ezbZIx1g
T2SAYg5jeZkfQxC6yoElrvRZLZ3x6t1GjqqsJRc2neydqr7+DXMJj8JgDvKl
K51van5av2pdbh8pNR6PtZnSZWhfbQtKNzEoTXb1kxBan+qscBRMOKpUZbHW
UBG5opI/jD2W1xRLyaaqGZsViWsQbbC53NYUqd0SB39j48OmzOxEnZUIZUsb
LBRRDBGscBnL7WEzaywxK1qLm4MYsnB4m5rahblxVT3SAATdLGxtNbRXVpqD
p6lz94vN9dJmC8Qyv2TzN6Q8bBWyKdOrqhIxy5zeD3BZmEavTN24rIVik135
RdUWOV7S6KlVDCK5nq47PdE7AAWetgB1JBvGG6HFmswTcctPEHWdJ4jis8a7
m7rK2wxOYnRpb5N3RvWaDvzoLeGIJuole/LS1NcQ5dY1C4gPPfR3G1IM8KXM
cQO2OcWlDC/y4f77z9K3q1XND4wG50rXgUaMd0Vlci+aq+0/WvghvB3+mDUM
yLzOjfNu6grXrGX7Om5f2Q8kn4+70k+8tRErnk7EfqF0e3VK/2mqq3NrIIRX
6sj5rPVsupCZt85wD4e/pohTEGrhjzAQWV2TtLRFRmhN6EXfCliCfsJw8mdi
ChT3no7U7cJlC7IrU0MxN1CZadRPPz/pQ6Qrwp8m8bEdurDjLf/vBaPlFS3/
J1796QTu2iJWgVVA4TBVLO9byMoi0Nkmu8jAhaZ04m25+eo5zq6dcvBianM7
FzTcucNuSIM/hl2/4l13gArNbLxCP+AV8UiWLs9BtNQXRGDYfjlmqcPgDjiR
2i4rMtkObu8GE73FAFVigPfGEgTAFqcUbRexA4whK1osV9vGOEY8tkD4Zq5n
dbVkewixgCwZqvCzNSx66mG9ZJLnxwdHbMrWNxSdvL61AFH8f2PN29o1sF4K
A2kIU6nUuS0Q0DgELKeutPrH85PL42556B+bQeCpTemXWI40AAmX9GwvKTb6
44KUgkse/0VoKx2twD5uZzPCvhuJD9DMunfMET2y5qiKo25BZZ34Jd263X3V
Z9yXduLKm6rAy8CNsxZxDUFsWeVuFvaPs1d+AbnywDWgnmVbNG5VxHjuYUUn
AQUy4y2kfDgyUYRQHz+GGPHp01Pdh3qPc4Q94KjEhGxh5wFXyNghEwItaUTB
moCIZKfJNiQ6Qtmvq1uLt48GK5CqKf6b4tasvTI3FAFIR9BJdwSjBD5g6EMt
c5Ce1cHOkheTJWGztFJtVi7Hk7SjOUd/FgrLNpQpkOouGfIAghZnCvtb1U5E
QEj2HOjXK+P9FiRJLBMomFNoDyYlkQhbx7m8dvPF+F2CYIfVctWSaeonr98d
Pu13NFJb3kHeL25BUgj0dM4bTUusiWIgiXJTuZxddMyWtB6zQrDFX4Dm0NsC
y23akChN587/vQLKqeka3+BGRDcZEOA8yHJYC1DaQUoyqiEFCcbBLhmVF5ZI
CIigPpnzkEsH6LU6cmo9K8xckOzjxwFjh7VOVGdcAtdA2AoLY7MEBIgBIiMB
LkUyeg8tHpyTQZO91dJDSdwh/7Yf6Ct48zq4JMEW6RgLAA+vaVdGfYYmUYRu
S16R3wsBmUEQ62luydgkIMH8sWzvzQNQTzkNvTmBpcQmTZLSq0hqtNCDs3fI
Ak4P3qRkpiiqW9/zuE3adj+ZERq4ye7wtj4qTtSPZGrTKpxoOP2owvDqwH42
6BZH2iAF84YcYRMKjhxqG9jdEVCOli4x4YLvw1/ZBzsr8+AVJbYAfdsZECWn
G5tU/xIi7lW78+Jy7EeBhVv2DaMAsswg9NR4RyAIDZCBGlmkWa8syT6tqsKa
Ei+8CDoRFvOgl/uVzQg1AtSBCtIKETYEAui9hF2w5Rk0H40wJRV8KMzFaRF2
+Q40D+IJkoPnFgF0SRiMeEJpAwuaiqTCyZIMbCxzRHR5G61PMZIjsn51fHlw
eXnexQwS034wSyYHSty1aeuSWWNcn1jeA4+mPwt4MtRT23lnsV4BC/fOj189
pQ0CFJYrifoQpWaA9nbTNulQqyll4BTYVCW7xyF6/fb9xSXW94iubHGltnVN
9YIZsea94/Pzq5PTvxy8AXl1ZQDP/5X4I2USoelWaLahzyKWyBmkqy35jvgg
EQ9TAChab1UIz907odj3PsZKRFTGzNz6DH8WF2HKQBWmT59GIaISryE4CA7U
J2WSlXRJScI2OEKBUBEZmLYOSqMUo1oFvOB8pi5NEVlnEF8i9JO/Hp0/ldWo
LPbpk55z4ZANDty0ozVf40Ug11/oI3JxJ7Ty3ginFJX02PZwX0iM+vMhmhr9
gU5aF1UWBeXzHHUEXWksAoerBb2NxHEq5cQ7o5+v2npVeQ4GgUqTVAmb1nrA
p8k+mRPzWQnr7ZI44cYSYQb0VykOUmOk/o5wJ6QK2O+B5kRisNGE7UgWl6zr
IovvQ4YehPkNkUiIuwLRMrwLMS3mVFgH90Sa37EVeXeoMDH3qDs2BMoGtLZl
tsYOpYKlT3bOeF9lJH5LSha7rSR1Fi/ChmOKoTFhBJBo2lLc9B2CIdOz4KV8
Rk1V04ESsFRto1fVCk7KuM9EoKSQQFrWCRQ+3mSVlIMddZL3BQMvIMppVzwu
zWJsO8nB+cXT1ouKUkw64/47IyuFAiIxGdudyFLVdct1OMllqCpmhTnivXe4
o9DMjjzqlDySQlzZE0icD44gVzq4EdzmutMalaIYEkhhCPBkRzfO3kbbsR9w
ke7A3xshS4HjCOeMcRfbiWqFZdS0YXqqtLewtnZFhUA/zC0UFfYh3I2rq5Ir
/7JzREeEcOPbOogeTtQjUq6Ij8i5kxxPDnKzisEHcemz5XWEpKebRA9EGR9g
E4C+wkHn4PQdUZGiCyy9qbKqSFxgpARiSK3YVBrwhWl0Ud1T6ElojsTw58+f
xfh43rNir9/g/FpsTTD2GlGaeixePyKMezSS/+vTM/58fvzv78HJj+jzxeuD
N2+6DyrccfH67P2bo/5T/+Th2du3x6dH8jCu6sEl9ejtwd8eyU4eRSb76A5L
YwiRqhxR7HpFYRt7BwylsPXD4bv//q9ne9j670JjBbAhX6hzgi9k4/I2xlv5
Slm/QiywpuZgXxQwuBVYbiElDb+obktNiSQU+eVPpJmf9/V302z1bO/7cIE2
PLgYdTa4yDq7e+XOw6LELZe2vKbT5uD6hqaH8h78bfA96j25+N2LgiLz+Nnz
F98rKl1JsWp8QXh62Aeiruv4QK7GPN+n+UKXgivX+AQ2A6uUvKPUma0JiRDG
qxar9+UQIRlgObGYRRjHKekDKrZS/0ijrAp3jnoY6QIiMlkOEAxTUuMIEJan
eAjGlqshBFKQRVLZEJN0S9lbAmi8hTvKU5tpQLlwU1ISyx0r+xJDiIpyWUV7
pMXEH5EocojDjtuO7A2z7i76UI4u3a8n25JwPtqQ2sby8SA7IdpDKWfaOdCD
zoG60zn4p1NQtSUFFcX1PEOKKUzYgPGkbhAuF5GuVCTCjctbULmIblx3jMkO
1eJIkFhAGkVi0fVR1LBDkZYaKAD7KnNMUeVUpKCi9Q9rKjdUXjIeLhT0peUb
Z+j8hslx3BQhn3hNlFiFngLnyVuJ3ABgkQCXzArPsD+QKaRsSIkZ+ch/+lJ6
2gthJyWvq/Awl6ulCfLwald0y6Six4ejYkW0oFZjoIuBmgn1ulNjTIuiKpZR
uPjGjpCi+uhes1IZM6JQc4EtpQVc8lD440YXalBaU5FPClsMnj8rWr/gBHbg
51RKKyVTM5TBs/uw0L1WnETD0kr6EOslvRZULHjSX5NaMde5hyQ2hLWVKbvq
AzMwJUYR03tOSiIl/0xe0bMuWmBIB4UVdzyMETXhYoGFJWV/SaRJ6ncgUKvm
cy+2JR2Hj/kp7lbko1nM03qKKyYjtWq5H7Z7vYXpCgU6rcrxqwq4HshZb/N5
ZT1XrGNfLokPlICQPRErzOhoiArATkYqeYp7aD2FBaELONb5IgyrL74zCemf
X1KVkVyvXPe1nph/LmH4Xa9bc0S1c0KNk0YF2UIJrarXet46qYKl7cxQzY8G
Ln7WWbgipbHDe1vgGsWvzpFZcdsnjT5+4W12xdb4SUk5MCB24Kmu67kav50c
jIalCbWNITwYLihD3YoSiBU9kIzSxZPiI0F2QHCVNml8zGd5abFHcEecgtTF
2Etis4v7UeRuarNiADGoLxtSrsHmOjOQshTXV3rThBtKK50wRE6HCkBTRggW
rOMCKRsWoPHiNTjFl/j7Z47grj7opWw6TLx6RoIvxEI29/fwMse/UuToA74K
XTBeJakVhF7ERiMihjuy+H415aLbhvJGGEnIxwYgVYeWikhvQtipNzeouCFG
/I/7qcMiRtweFJ/Q5ZZS8SklHiEusoitj07KnaXIL4uKOiw2M6GGFxjBzLii
5cEBJxMZRPJPLnXYkmEa2FVs+DQzG+NEd/keph6bCwR0QYJhRWdpqC1/Sxw4
ZO8bxZsu6+fnaACCgjIdtO/xl8XZVuQIVXLiOKS6tDTC3pXngdX1XIj+tI3J
b0UHhq7xoITAaQafohx/rVIyczLrfVasxusw2cKGKE1u7jsL4Ee21gN5bDT9
Rillsw836JFQXT8OApgt3b9e7UL2e2hWKTTbLcCsO2DmE2cNMYx5bW9AeLih
eKcyZ9JGPJQQw+KEh01gViQFa6abzJGmVIKraQhbkrEDjyg+sC478x70y1O0
/80eqCJH3aBKvLcuTlJJqafIzNWTkmLfNYoZIizZW73pQ8NsCtYjk3wE7FwK
DWN2OxtDd30DHo+EoTRq8sv5z8gH964S/2SAvbrbEyJvp/YFH5DpgI+SuUBL
aZvUGic8jyMROr0vDf0xJqYgA0unhis162G9piBiS7E/nmlUKHVXUlPNFhUp
DCswM46e0lFF6WT04Ymy1R4g6BBkYG2Y6boBQ8sRwxpXdHsi+TPEzLD32ooi
QvoqvYWsi1b3VSoiJKvQSDFNvK+fcuCmWWyxEo7fOmQBbNo0B1135DVohoq+
iXYCvkrMDw36ZISCjFh6WFsplCgoelOct+h0kwRGla7qQZqh+ry1kdUMNZOS
YqJ++sI2TSwf3DdvLnzQyxOfHlYS6gls0l4nVKDaixqMOwauJIYf8qTOB9Ox
BLk0hr7Hhbu2iUNHpfbjK1uo4d1Guuob6cNk/OHkVBl9l5qmgwt3egB3OgDq
IeAIq7W0NVOvP4OUW3tEvL17xkvuwciolkAa/78RkmFOpdElDG8tbT2PVRga
FE2Sy614qB6MhzrBw1ALUNuAMAZg5mQyPiTIcS9f4R80hIINeKZ3PFuGBLNa
L8MAmS20DHP/dsWNQio0O3NzCkQmzHqHQRse/adxMBnHljjLpgxl0UAVDICq
mDK0w42wrsMvowccce7J7di7lGCojrKwL4/6psdktytM8NQwFaYuwsgA2axt
1D8Bi2EgRDbAZi9lmMvB+JDAf2ZXTQsPX3c1UyfzOKEsTa/dOjev0rn5qNKt
w/lQscRpmcmQFDsDMDErS0YFXWjFuSbGnI0Y1qMgt0EkMAYLJ5YtgZ+bZwvx
llBxDeXONJAmY1VtyYunW5VtDU9owDtYbLidVH17COKIGqFCgqy4QFqIgN5v
7DoYLUdMdV1Wt4XN5zwcuKogpkQuCgLhtXla5WNYOhkWRS7w/9bHcT86a2mm
8fBN8tOc6C1hYjku4h82qkHMJVlX6F6wXsGrhuzuYZNcJjRn88htoR3KsyKi
wXtexoQzvnLEGhevDD4avFM4NMxSrThu8sTjvY7D0y/cVqNfbLFi/3p0zoEl
xfoO4ZX69ddf9Ye8Vjs7O/QvdyJzK9NNOvnnc6/9Y/c0kfBGvyRn37t6f3p4
cPj6+OCHN8dXL0/wn6ODy4Ow3J/082/lMQhAYh5/4J9phDoBhN5st1IPmbM0
6SzfN2mi0kkTKaOs4upbT3OYKlsWIX3O+cCsGulNmlCJFz+fmYwcn1Mxazy1
B+J+wDjJsxiD1+OmGmcAFCdTyEvTTPRlFe+WU2fYsGO6n8XbkGTEIZVNoaLQ
wunhgqa05ZZ9OVS+pL47PDs61j8cvzo5vfheffG7nakrd/xCzaEz/fg/9Jc4
gsf691/q/9QEZ4/9C7mmX7x4vHnt97gWFjw+PcJyfHRk0zT+tWL2ExCdBWG0
BLZjibC/iV88DuMYg5FJr8J9VCqdNB+axyOsaTMekBxslIZ0sMBn9ojspH+b
/k7HJfX36ZlfkQtOPtzdDhtdkJ+m+G/oJwo4CWZ0hSmvNcedfqqELALHBe1z
soOQ9Jh0qnisgOdUqfM6YT9MTtGnQ42bK/Bg+3Jqcxq9aBZ11c670ksy6NiX
HxsxWJ4qiJ6yZTiSWAf/4oSiE8+Y8eRVigzlzO8F5YhfPBmOaelkTOtpV1WS
Vq1XzHmxRFhdZnXLrnu2N+oy8Go2Q7DChcKW82aBD7bJJtSeV/EXB0v6cQC/
neYkecH4dAuf+nr3SsaW6Ms3e1ekke6HAqIN+Y0HTQJEuBJn3dhHyJpJd750
uBskNvzmCY9zIyDo0rpaWMeqprZgrMYO5ma6lgFECBkX6DCRgkMqUeSx5CLp
1JaORd/NIqYrP50LP0tNiw2UgnAC370wtNfo/Ouq6Idl/zhoY/Ax+yCTShak
54CAthtNFGA+OD3YInlqVTQcW1Zyp8Q8H34qMzXZNS1ykEVSwOisPu6XLewb
ie2fHs1M4e0jyi7BB3L9dn1d2Gnrm5F+S1TmonTNL0Rt6KgHP9pl7KR8xeZa
fuukeizHMSc0AeKcu+xav4U8YAgjfbho8fWNkCZa+Yjw9RTujss0HGlvbb7p
b4cL4lMnJWJ9NdI/wARK/c7cEr27drLMq6pGnvbSuHrR1oBCBCiaO6IejpUC
fpjPnKj/AXLvuy8CPgAA

-->

</rfc>
