<?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.19 (Ruby 3.3.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-netconf-restconf-trace-ctx-headers-02" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.1 -->
  <front>
    <title abbrev="rc_trace">RESTCONF Extension to Support Trace Context Headers</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-netconf-restconf-trace-ctx-headers-02"/>
    <author fullname="Roque Gagliano">
      <organization>Cisco Systems</organization>
      <address>
        <postal>
          <street>Avenue des Uttins 5</street>
          <city>Rolle</city>
          <code>1180</code>
          <country>Switzerland</country>
        </postal>
        <email>rogaglia@cisco.com</email>
      </address>
    </author>
    <author fullname="Kristian Larsson">
      <organization>Deutsche Telekom AG</organization>
      <address>
        <email>kll@dev.terastrm.net</email>
      </address>
    </author>
    <author fullname="Jan Lindblad">
      <organization>Cisco Systems</organization>
      <address>
        <email>jlindbla@cisco.com</email>
      </address>
    </author>
    <date year="2024" month="September" day="25"/>
    <area>Operations and Management</area>
    <workgroup>NETCONF</workgroup>
    <keyword>telemetry</keyword>
    <keyword>distributed systems</keyword>
    <keyword>opentelemetry</keyword>
    <abstract>
      <?line 65?>

<t>This document defines an extension to the RESTCONF protocol in order to support Trace Context propagation as defined by the W3C.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        The latest revision of this draft can be found at <eref target="https://github.com/netconf-wg/restconf-trace-ctx-headers/blob/gh-pages/draft-ietf-netconf-restconf-trace-ctx-headers.txt"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-netconf-restconf-trace-ctx-headers/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        NETCONF Working Group mailing list (<eref target="mailto:netconf@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/netconf/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/netconf/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/netconf-wg/restconf-trace-ctx-headers"/>.</t>
    </note>
  </front>
  <middle>
    <?line 69?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Network automation and management systems commonly consist of multiple
sub-systems and, together with the network devices they manage, they effectively form a distributed system.  Distributed tracing is a methodology implemented by tracing tools to track, analyze and debug operations such as configuration transactions, across multiple distributed systems.</t>
      <t>The W3C has defined two HTTP headers (traceparent and tracestate) in <xref target="W3C-Trace-Context"/> for context propagation that are useful for distributed systems like the ones defined in section 4 of <xref target="RFC8309"/>.</t>
      <t>According to the W3C specification, each operation is uniquely identified by a "trace-id" field, and carries multiple metadata fields about the operation.  Propagating this Trace Context between systems provides a coherent view of the entire operation as carried out by all involved systems.</t>
      <t>The goal of this document is to adopt the W3C <xref target="W3C-Trace-Context"/> specification as optional headers for use with the RESTCONF protocol <xref target="RFC8040"/>.</t>
      <t><xref target="I-D.draft-ietf-netconf-trace-ctx-extension-01"/> defines the NETCONF protocol extension for Trace Context propagation. The present document leverages several of the YANG and XML objects defined in that document.  Readers should refer to <xref target="I-D.draft-ietf-netconf-trace-ctx-extension-01"/> for additional context and example applications.</t>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT","SHOULD","SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear in all capitals, as shown here.</t>
      </section>
    </section>
    <section anchor="restconf-extensions">
      <name>RESTCONF Extensions</name>
      <t>A RESTCONF server that implements the Trace Context propagation mechanism defined in this document MUST support the Trace Context traceparent header as defined in <xref target="W3C-Trace-Context"/>.</t>
      <t>A RESTCONF server SHOULD support the Trace Context tracestate header as defined in <xref target="W3C-Trace-Context"/>.</t>
      <section anchor="error-handling">
        <name>Error Handling</name>
        <t>A RESTCONF server SHOULD follow the "Processing Model for Working with Trace Context" as specified in <xref target="W3C-Trace-Context"/>.  Based on this processing model, it is NOT RECOMMENDED to reject an RPC because of the Trace Context header values.</t>
        <t>If a server decides to reject an RPC because of the Trace Context header values, the server MUST return a RESTCONF rpc-error with the following values:</t>
        <artwork><![CDATA[
  error-tag:      operation-failed
  error-type:     protocol
  error-severity: error
]]></artwork>
        <t>Additionally, the error-info tag MUST contain relevant details about the error in the form of an sx:structure otlp-trace-context-error-info defined in ietf-netconf-otlp-context.yang from <xref target="I-D.draft-ietf-netconf-trace-ctx-extension-01"/>.</t>
      </section>
      <section anchor="trace-context-header-versioning">
        <name>Trace Context Header Versioning</name>
        <t>The RESTCONF protocol extension described in this document refers to the <xref target="W3C-Trace-Context"/> Trace Context capability. The W3C traceparent and tracestate headers include the notion of versions. It would be desirable for a RESTCONF client to be able to discover the one or multiple versions of these headers supported by a server.</t>
        <t>To achieve this goal while avoiding the definition of new RESTCONF capabilities for each headers' version, <xref target="I-D.draft-ietf-netconf-trace-ctx-extension-01"/> defines a pair of YANG modules that MUST be included in the YANG library per <xref target="RFC8525"/> of the RESTCONF server supporting the RESTCONF Trace Context extension that will refer to the headers' supported versions.  Additional YANG modules representing new header versions could be added in future updates of this document.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The related document <xref target="I-D.draft-ietf-netconf-trace-ctx-extension-01"/> defines two YANG modules that are used when implementing the Trace Context concept, regardless of YANG-based protocol.  These modules are completely empty, and therefore have very limited security considerations. Their purpose is only to indicate which Trace Context header versions the server supports using YANG Library <xref target="RFC8525"/>.</t>
      <t>The traceparent and tracestate headers make it easier to track and correlate the flow of requests and their downstream effect on other systems.  This is indeed the whole point with these headers.  This knowledge may be used by unauthorized entities to infer a map of a managed network.</t>
      <t>All advice mentioned in the <xref target="W3C-Trace-Context"/> under the Privacy Considerations and Security Considerations also apply to this document.</t>
      <t>The lowest RESTCONF layer is HTTPS, and the mandatory-to-implement secure transport is TLS <xref target="RFC8446"/>.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The authors would like to acknowledge the valuable implementation feedback from Christian Rennerskog and Per Andersson.  Many thanks to Raul Rivas Felix, Alexander Stoklasa, Luca Relandini and Erwin Vrolijk for their help with the demos regarding integrations.  The help and support from Jean Quilbeuf and Benoît Claise has also been invaluable to this work. Many thanks to Tom Petch and Med Boucadair for their reviews.</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="RFC8040">
          <front>
            <title>RESTCONF Protocol</title>
            <author fullname="A. Bierman" initials="A." surname="Bierman"/>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund"/>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>This document describes an HTTP-based protocol that provides a programmatic interface for accessing data defined in YANG, using the datastore concepts defined in the Network Configuration Protocol (NETCONF).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8040"/>
          <seriesInfo name="DOI" value="10.17487/RFC8040"/>
        </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="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC8525">
          <front>
            <title>YANG Library</title>
            <author fullname="A. Bierman" initials="A." surname="Bierman"/>
            <author fullname="M. Bjorklund" initials="M." surname="Bjorklund"/>
            <author fullname="J. Schoenwaelder" initials="J." surname="Schoenwaelder"/>
            <author fullname="K. Watsen" initials="K." surname="Watsen"/>
            <author fullname="R. Wilton" initials="R." surname="Wilton"/>
            <date month="March" year="2019"/>
            <abstract>
              <t>This document describes a YANG library that provides information about the YANG modules, datastores, and datastore schemas used by a network management server. Simple caching mechanisms are provided to allow clients to minimize retrieval of this information. This version of the YANG library supports the Network Management Datastore Architecture (NMDA) by listing all datastores supported by a network management server and the schema that is used by each of these datastores.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8525"/>
          <seriesInfo name="DOI" value="10.17487/RFC8525"/>
        </reference>
        <reference anchor="I-D.draft-ietf-netconf-trace-ctx-extension-01">
          <front>
            <title>NETCONF Extension to support Trace Context propagation</title>
            <author fullname="Roque Gagliano" initials="R." surname="Gagliano">
              <organization>Cisco Systems</organization>
            </author>
            <author fullname="Kristian Larsson" initials="K." surname="Larsson">
              <organization>Deutsche Telekom AG</organization>
            </author>
            <author fullname="Jan Lindblad" initials="J." surname="Lindblad">
              <organization>Cisco Systems</organization>
            </author>
            <date day="8" month="July" year="2024"/>
            <abstract>
              <t>   This document defines how to propagate trace context information
   across the Network Configuration Protocol (NETCONF), that enables
   distributed tracing scenarios.  It is an adaption of the HTTP-based
   W3C specification.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-netconf-trace-ctx-extension-01"/>
        </reference>
        <reference anchor="W3C-Trace-Context" target="https://www.w3.org/TR/2021/REC-trace-context-1-20211123/">
          <front>
            <title>W3C Recommendation on Trace Context</title>
            <author>
              <organization/>
            </author>
            <date year="2021" month="November" day="23"/>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC8309">
          <front>
            <title>Service Models Explained</title>
            <author fullname="Q. Wu" initials="Q." surname="Wu"/>
            <author fullname="W. Liu" initials="W." surname="Liu"/>
            <author fullname="A. Farrel" initials="A." surname="Farrel"/>
            <date month="January" year="2018"/>
            <abstract>
              <t>The IETF has produced many modules in the YANG modeling language. The majority of these modules are used to construct data models to model devices or monolithic functions.</t>
              <t>A small number of YANG modules have been defined to model services (for example, the Layer 3 Virtual Private Network Service Model (L3SM) produced by the L3SM working group and documented in RFC 8049).</t>
              <t>This document describes service models as used within the IETF and also shows where a service model might fit into a software-defined networking architecture. Note that service models do not make any assumption of how a service is actually engineered and delivered for a customer; details of how network protocols and devices are engineered to deliver a service are captured in other modules that are not exposed through the interface between the customer and the provider.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8309"/>
          <seriesInfo name="DOI" value="10.17487/RFC8309"/>
        </reference>
      </references>
    </references>
    <?line 130?>

<section anchor="example-restconf-calls">
      <name>Example RESTCONF Calls</name>
      <t>All examples from Appendix B of <xref target="RFC8040"/> could be recreated in this section by adding the new header described in this document. We selected one example from that document as reference.</t>
      <section anchor="successful-creation-of-new-data-resources-from-appendix-b21-of-rfc8040">
        <name>Successful creation of New Data Resources (from Appendix B.2.1 of <xref target="RFC8040"/>)</name>
        <t>To create a new "artist" resource within the "library" resource, a client might send the following request:</t>
        <artwork><![CDATA[
  POST /restconf/data/example-jukebox:jukebox/library HTTP/1.1
  Host: example.com
  Content-Type: application/yang-data+json
  traceparent: 00-405062f633be64ee006089dfca95a153-e021f9e263aad8e2-01
  tracestate: vendorname1=opaqueValue1,vendorname2=opaqueValue2

  {
    "example-jukebox:artist" : [
      {
        "name" : "Foo Fighters"
      }
    ]
  }
]]></artwork>
        <t>If the resource is created, the server might respond as follows:</t>
        <artwork><![CDATA[
  HTTP/1.1 201 Created
  Date: Thu, 26 Jan 2017 20:56:30 GMT
  Server: example-server
  Location: https://example.com/restconf/data/\
      example-jukebox:jukebox/library/artist=Foo%20Fighters
  Last-Modified: Thu, 26 Jan 2017 20:56:30 GMT
  ETag: "b3830f23a4c"
  traceparent: 00-405062f633be64ee006089dfca95a153-e021f9e263aad8e2-01
  tracestate: vendorname1=opaqueValue1,vendorname2=opaqueValue2
]]></artwork>
      </section>
      <section anchor="unsuccessful-creation-of-new-data-resources-from-appendix-b21-of-rfc8040">
        <name>Unsuccessful creation of New Data Resources (from Appendix B.2.1 of <xref target="RFC8040"/>)</name>
        <t><xref target="W3C-Trace-Context"/> specifies that a vendor may validate the tracestate header and that invalid headers may be discarded. Section 2.1 on <xref target="error-handling">Error handling</xref>, states that servers may return an error. Let's assume that an implementation follows that behavior.</t>
        <t>Example of a badly formated tracestate header using <xref target="RFC8040"/> example (Appendix B.2.1), in which a server receives the following:</t>
        <artwork><![CDATA[
  POST /restconf/data/example-jukebox:jukebox/library HTTP/1.1
  Host: example.com
  Content-Type: application/yang-data+json
  traceparent: 00-405062f633be64ee006089dfca95a153-e021f9e263aad8e2-01
  tracestate: SomeBadFormatHere

  {
    "example-jukebox:artist" : [
      {
        "name" : "Foo Fighters"
      }
    ]
  }
]]></artwork>
        <t>To which the server responds with an error message:</t>
        <artwork><![CDATA[
 HTTP/1.1 400 Bad Request
 Date: Thu, 20 Jun 2024 20:56:30 GMT
 Server: example-server
 Content-Type: application/yang-data+json

 { "ietf-restconf:errors" : {
     "error" : [
       {
         "error-type" : "protocol",
         "error-tag" : "operation-failed",
         "error-severity" : "error",
         "error-message" :
           "OTLP traceparent attribute incorrectly formatted",
         "error-info": {
           "ietf-netconf-otlp-context:meta-name" : "tracestate",
           "ietf-netconf-otlp-context:meta-value" :
             "SomeBadFormatHere",
           "ietf-netconf-otlp-context:error-type" :
             "ietf-netconf-otlp-context:bad-format"
         }
       }
     ]
   }
 }
]]></artwork>
      </section>
    </section>
    <section anchor="changes-to-be-deleted-by-rfc-editor">
      <name>Changes (to be deleted by RFC Editor)</name>
      <section anchor="from-version-01-to-02">
        <name>From version 01 to -02</name>
        <ul spacing="normal">
          <li>
            <t>Removed markdown formatting of tracestate and traceparent, as toolchain could not handle this properly</t>
          </li>
          <li>
            <t>Removed references to RFC8341 (NACM) as the passage in the security considerations no longer need it</t>
          </li>
          <li>
            <t>Rearranged text in introduction to include referenes in a more natural order</t>
          </li>
          <li>
            <t>Removed several references to "we" and replaced with more neutral language</t>
          </li>
          <li>
            <t>Clarified that everything described as MUST requirements in this document only apply to RESTCONF implementations that implement this document. Other RESTCONF implementations do not need to care about this document, it's an optional extension</t>
          </li>
          <li>
            <t>Clarified that the YANG modules used by this document is defined by the sibling document for NETCONF</t>
          </li>
          <li>
            <t>Lots of updated wording based on review feedback</t>
          </li>
        </ul>
      </section>
      <section anchor="from-version-00-to-01">
        <name>From version 00 to -01</name>
        <ul spacing="normal">
          <li>
            <t>Added Security considerations</t>
          </li>
          <li>
            <t>Added Acknowledgements</t>
          </li>
          <li>
            <t>Added several Normative references</t>
          </li>
          <li>
            <t>Added links to latest document on github</t>
          </li>
          <li>
            <t>Added RESTCONF example for success and error</t>
          </li>
          <li>
            <t>Modified Error Handling to reflect better W3C alignment based on implementation feedback</t>
          </li>
          <li>
            <t>Firmed up error handling and YANG-library to MUST-requirements</t>
          </li>
        </ul>
      </section>
      <section anchor="from-version-00-to-draft-ietf-netconf-restconf-trace-ctx-headers-00">
        <name>From version 00 to draft-ietf-netconf-restconf-trace-ctx-headers-00</name>
        <ul spacing="normal">
          <li>
            <t>Adopted by NETCONF WG</t>
          </li>
          <li>
            <t>Moved repository to NETCONF WG</t>
          </li>
          <li>
            <t>Changed build system to use martinthomson's excellent framework</t>
          </li>
          <li>
            <t>Ran make fix-lint to remove white space at EOL etc.</t>
          </li>
          <li>
            <t>Added this change note. No other content changes</t>
          </li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+Va624bR5b+z6coMBjExqh5k+yxCQw2sizZzug2kpzsIBsE
xe4iWVazq1PVTYkR/Er7Evti851TVc0mRSX2zgK7wBqG3ey6net3LtVJknQy
kxZyocYis3JaJVpV06RQVWqKaWKV8w+VlalK0uo+mSuZKeuSwahT6SrHOnF1
fH1zdHF+Io7vK1U4bQpRGXFdl6WxlbihpeLIFJW6r8R7v7wjJxOrlmNh0194
704qKzUzdjUWrso6GX6NxWgwOkgGr5PRi05Hl3YsKlu7ajQYvMbprp4stKPT
qlWJyR+Ob046INaBhNrxXNXBCYOOtEqOxUWprKww3QlZZOJMFnKmFqqoOnfG
3s6sqcuxOD9mTjq3aoW32bgjElGpHPMqu6IfmXaV1ZO6UplwK1ephaPXpsRG
zbylKmqFtWJrVyE8qT/iQF3MxDsaxtuF1PlYBKF/RxroGTvDgLTpfCzmVVW6
cb9P0+iNXqpenNSnF/2JNXdO9cMOfTpZV/N60mya3M36TysT83MI3FXrs/z6
XmoW/S/aoj/JzaQ/myclpOr6X2VLveq+6nRcBbX8InNTQEIr5TpuIW31y6+1
AWVgxHRKPRY/VSbdEw6GZdXU4Wm1oIefOx1ZV3NjSWNgR4hpneferq/Mr7US
7+Qs1xK70CAEJwv9G5vDWBxpl8JeozbxBzpWCtI4ZE2KTDnxsao0TOcFj6cm
w8bD4auB/6mrFZ2T5yoM10VFpnx9p6vflM3BGQ8or2lrZkzNdymdTELuPCb7
bxamBorFqbTOmWIH4W9VXbl0rsQNTO/WLMThu/Yxt3n+XaaWvQqGD44WPahi
x0Hf0xm6yCa5zL5IOmH7T7lf1OaiMHaBdUu2/quTo9Fw+Do8vhocDOLj8C8H
8fHg4GV8fDF6MQZ94kPytrfDgNZ2oyLOJIMhr/hx/yhhnEkCzoyZ0ABQGBVX
CvTB2zPmSuDvBi756dLOVMsH7u7uenf77GU3V32A0bB/dXwU6fALk2FCA8Ph
aL/PmzTINUyGGNvvdDpJkgg5cbQO8r+ZaycAujVhD0xrqgtFkCRUGz0raLXB
1dIamL3JhQblFi5DM9xOfMVUeKBnUrqwfSYmK94Rkuh5ehY6y2CtnW/EB5iq
yeqUlnQ656oiOBTwJrMI2wAtFw1aRtQTJE9T5CtBmAtTFWYqFnVe6RL7ApyT
OBHr90AwRDsH5fCIOdNShJNgoTqFBPBuFc7Z8z/UdKpSMiYcMoVhCbkDfntC
vG29JCETtELGUgCN5yYzuZmthF6UOTMQpBHmVcbkjgWOF7d7IFbmq98UM52p
ST0jaI9xw9XpnKRK5qhntX9NKwsnWX4AJJla41wjiV0Bo0dGwMoQ85aOIA7x
/ubmUgRYFM/Y0kqEL4idCOLfwMlKPSdTeHh4ZPefP5OkRLrDGqq5xC5Widop
OD/P20GcyPWtYgUZsstIHI5zinkUB6Tph4d/I5fdH7z+/Bn8HKYpDNMLNFqa
cKVK9VSnfP6eUBLSa6RJGqoLDWiGdnUGFjHV60aKrvcxnXUFXubZHrOfSmu1
askW+pXwN+knQeMTU1ee9ngMzOMyCoGoI+fb9JgJ7FCpouEfMltqQnwJMcJi
SfhLre6Ia9qaKLWtE9ggmLJM0PHEQE6uujT58pHSZ0bmfqc2Cmg2QZmZsmqk
t1u7GzKlo7EET9g0Wg3pFSpeO9pjGHl4CHjMunt4+CrABRERtGj3kNusN1/D
GFHyJDr1BImjRFbAMBglkasl5IoUAuZGT3kU+z8Oz9+xFfz72akwk08wxg3r
ZPOO20DrV0Ecbm7qPBNIEjxsfj23xIbMMh3kHH2LaFH3kmBFyLLMg05I0d98
g4hsF7pg6PGKR0YpKKV0onv28fqmu+f/F+cX/Hx1/PePH66O39Lz9fvD09Pm
wc/A88XH07fNw3rd0cXZ2fH5W78Ub8XWq7PDf3S9/3QvLm8+XJwfnna9wNoW
SMAA6UwUhpAvQC+ECYxOLgVEeCG/OboUwwNvPxTaIR1vSwjoeL6bq8IfxYHB
/2Qoh4CUtLQF+UYqS13JnNCSFXRXCHI0ktyOYsIBXtavnbJL0iSpu8F0b4pP
R8KFSudIadxi02LaAmBlxJj6eLc2FHtPa4fXp8C4t4v0oMA/OIth/uuOgtkd
WwtrfQ8VIDmb/c7pUySr5o4P7wIgcZ4jfDxDYutDQ6xRGEY26Ouy1jwO/R5B
QryRjkAxiLpcH7OgY/aEZuTbslkyQ6vIvykpuro8glGmkhAtIMGmsIKEljKv
FfnehymAO/CagUZC8n9hR7bfuB/bCDyjtrDjtWRtmSaKBd9grhcvseq34SyV
c2eal1RyNva/mzCSTJFUq2xzGleL9Cei68YwIySXHvwbRxw2MJWvPOV+pi6m
CMty5jkgBJNQm0XVsJSchOJ33o6fnh12EuVzL4gKwnP3Y2QMSBZrCoFVXm5l
w63jWga7gbO8KszvrSRENLUoXb4alwPO7uguiB8A/JjGHnCzMwKug9QGvm1C
AscMFzOa3fF483wAm5zoHDrx4Y3i+NNJXBOydZHmdeazrsL4AmUqlp4L1xMf
KoQOimITrkW1lZNc+bi05i3NNR3hQZwn4DGj0szjJSd0KB/W6VM8ILiBWxMU
sCmmY978KYNBkpLONezOi4qzmbu5phC4NNongHPlda8jIwWSpzWZUUSUyREL
nBaGg7+NNO39N+J0U0qJUmpLB3POAKypc05WZEB5DnIs8SyaOM/M9cRKuxJw
yRDWUJFi44AS20gahBR5boY3TaJV1REBdxrxr0lGaF3D+lroa823PHqTG6tC
6kTHk4AjakWdptFgkLp4Pqc1e21dUonqHiWhHH2vVVoTpBD5DtgZKh/vRsAL
SeQ1DvIvZI6odR5rJ1QnGWcO6+geJbzla6aAX1V7IGsmLYpZ56LOkwkHnujt
EOMNm3c8jM5B+YrtK6o+1KKsVj5voRJVwSqhFrlkD1nBLBaaC6Qom3RDNuzp
sLeytqXBIRApZz9Qry4yygoVuUg6fyLMRIW14kywBBRIHC1ZUKfBOFuGGUqK
LwCYhURNh2irpNPB8qjc9VWVsV6xHuspK4AYrUJl5ioXpQIGM+Rp1BiTi1CZ
U2Q3XNTHGocEDf7pb5EpxSvBvAE+lAaJZRMg11gT19wW5g7xbwYtyRXZLRsC
4KcufGdP/4bfZA2MHCxd8iJU+bLk6BSaB1nsLFDyBWeTGfUXBBuSKdYuvxvP
6yILaHlp9VKm257A8njCS5DbOsO1wMo796Z3ka4gXUh1jRW5XOE4zKPC/7qx
QWIFXmrsKqlM0jiCN0HlOw6cPFI1e3otfgqdtJ/ZiT8cnh/ucOB2aKO+Q2H8
zNC64KWHadQDp9WeaC9/F2KQ7w9QIFirjEimRIfDTkOuz72nsIMJGRuH+aN5
bGteqaKA/m/NjLm+hBwOSfjU64RRnMmCelayuGVlX8k6F1fQiBMnKtf3e+Iw
R/XF2rquzG0undwTp3WKiKio34r4w/seW6Rh4gdrcv3plgOOt+a5yst1vpap
hXEBSbh9BHuYNQ7OsZwX0I4xcWd+vldg5e+1zieqnvLwG1WY//rPShzlUpOZ
y2AXE2oy6KIRU7QQNtVtdm+w9SXAdO7vKmC1bwx4yyiwrXmwihoTLrT0SMik
w+NQlDZGdoR00HlnCAWr88QfoiqDpO7FG9/SaboC6+hhVQqPr1rpUWwDUWaQ
NRG/FYKezqh64kfCuBw7cF2gmgKaydko4anI4DipAPM+17uuUyogqHnFRIX0
4hxHv6Uu0JVyprbUS3y2xV5v1BtusficsxnPHLCD6O9KRHOH+saGjdg+Alx0
Q3awHt2jDpFPuhZ6NifvDN67zv4DjDbp/+UF8o/mGqVPzat+kEHyqb5VE3M/
Dv/3YzpC0NAf9oZhi/eG7mnCIu66+/eMYUWV3HDR0OpI9CnJTuioP3+K9wii
HTXGYjBIDgYvBi9H05f7+xP18kCpweDl4NXrbJrK1y/k8MV+ogaj4fS1Gr3c
lzJ7pUYI6O2tOOCMEc6KzFi6WBj+FfU3uP+BCqDh3npg1B4YRck8hP+F6G4L
JKplLH5qJrUX8CLamaZ0T4wRJ6QPQEm3Nedz8/xzJ76harHizCYoHMYa7H2j
8PP6xazSFNwV8Rpel3VRR2I0GIojv0MYestyuZnXe2L0ki9bMOcv+Gf84uV4
fyDend2Emdd8WKPbxB8eBk9NGi5k4vVEywS2LOo/Wmz/gXX1vXD/Cqn9aTSI
cotnSlclZybjQv/LeDi+odK2O9l/tT+YjvblQdr9P2dwgJKPhfsfBpPfbdc2
CW4gl3McRAKdxbxrR8+HwYS6XAXPbCVznB9RaYdopbIe5SNMPxNWiJ98F2ge
ukA/P/vGl+XxxfM9wScForyZ+X1jc6PwHYCeOFXVtwhgzgGUAw/FowjvncEP
TxQyZ22oWoyBiJOziczCNY6M9zSb/Ppctx2EYnB4til7kA9M9il10+pBnFJ6
GXrSDf7+/8Hda7NQb2R2wvJ9j6j5v4urCK1eQS0QDfDpfNYVTQyJuXNI26Oq
GiQ9GAwEOIIjcgjtPALTgfi+LvgbkR1A9HtY+sUa89MfRJeL22g9Y6bbkVBa
sury221hbkkzzOLGHgs1lqjdvd3z5IynbXcJn5geG4K8xtOze2KQOeZtDmPC
xc3p5WZJWYUrQmqaUK2YVo0jV0+SQi3A7nibfRFEuasXOKbbvKQxt7Vxb5/w
x5twz3UHc1j5yE++avcN7e3Y/emVgL/Ey6y7ue5zZ/eP6Ezx3WdK7Y8A4XQ3
9sx3+TKVq9CkA2qK40yjZHzOAe6EYlboLQjkJFhAn2wlcKeFoWvJhbS3VNFH
TRL4UktojctNL8EbAl/W0HV5Oqfmsa8QClP5OKOaHj9MNV+1DmqSeF/H0aXx
wVA8Oz88OnvOW9I1oGR7jKX5E50WqlhzAwFYpOtUXlR8jLSWpAJiqa1C7ebW
Fw2+UeDbq4ES5fgeSiyozVNIBDy6ZaTPKlpUx9vHTeq7d1A8ycWqModkMo9l
fidVV7QCxeesBjPYDCWg9ZckHBppyxUVFLNWjQQJhGuFX2ttw23Wo1Y0d5Sa
zkJT2W0GYrd1K7ZdfF1wr+bJxZlhdbJocUhKXbJ4I9Dah65tvuUPVpqr56bJ
95jnprkae2+xrfPoAnzrUxWnJzlLKk6hsjd+SJcgHa643ee7mRlfrdL0Sbxy
8rVx033Y4RQD7xRD7HbIPdLr3WbXjK+bI15NzUA0lvP49VPLbJpJ4MbX9v5T
u7Zuw9d6zdRGRU15bKgpyAmrv3fm+55ExNx8697PX3hNqc6mzxsQsfkmAlnk
rOAjGyk90avB1ifaLjCnLkOYjskjn89N1pgn4TCy4KRtwU+J+yu/MR2wSGBn
3i7itwY/vmPePbqUxhHsMR0bEzxYYmGt8/gZBk2iiz/6tBAwMTcLxHlYs7pP
VZ6zmVlEIOrJEBjAyLl1OtX3YNffrlhGCEpvgJGupJYu7Pz44lSAoV6jQ7bv
lEkgt1I9WEfolqY+/wijrvNPYufRtYYrAAA=

-->

</rfc>
