<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.14 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc toc="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-lpwan-schc-yang-data-model-08" category="std">

  <front>
    <title abbrev="LPWAN SCHC YANG module">Data Model for Static Context Header Compression (SCHC)</title>

    <author initials="A." surname="Minaburo" fullname="Ana Minaburo">
      <organization>Acklio</organization>
      <address>
        <postal>
          <street>1137A avenue des Champs Blancs</street>
          <city>35510 Cesson-Sevigne Cedex</city>
          <country>France</country>
        </postal>
        <email>ana@ackl.io</email>
      </address>
    </author>
    <author initials="L." surname="Toutain" fullname="Laurent Toutain">
      <organization>Institut MINES TELECOM; IMT Atlantique</organization>
      <address>
        <postal>
          <street>2 rue de la Chataigneraie</street> <street>CS 17607</street>
          <city>35576 Cesson-Sevigne Cedex</city>
          <country>France</country>
        </postal>
        <email>Laurent.Toutain@imt-atlantique.fr</email>
      </address>
    </author>

    <date year="2022" month="May" day="06"/>

    
    <workgroup>lpwan Working Group</workgroup>
    

    <abstract>


<t>This document describes a YANG data model for the SCHC (Static Context Header Compression) 
compression and fragmentation rules.</t>



    </abstract>


  </front>

  <middle>


<section anchor="Introduction" title="Introduction">

<t>SCHC is a compression and fragmentation mechanism for constrained networks defined in <xref target="RFC8724"/>.
It is based on a static context shared by two entities at the boundary of the constrained network.
<xref target="RFC8724"/> provides a non formal representation of the rules used either for compression/decompression (or C/D)
or fragmentation/reassembly (or F/R). The goal of this document is to formalize the description of the rules to offer:</t>

<t><list style="symbols">
  <t>the same definition on both ends, even if the internal representation is different.</t>
  <t>an update of the other end to set up some specific values (e.g. IPv6 prefix, Destination address,…)</t>
  <t>…</t>
</list></t>

<t>This document defines a YANG module to represent both compression and fragmentation rules, which leads to common representation for values for all the rules elements.</t>

</section>
<section anchor="schc-rules" title="SCHC rules">

<t>SCHC is a compression and fragmentation mechanism for constrained networks defined in <xref target="RFC8724"/>.
It is based on a static context shared by two entities at the boundary of the constrained network.
<xref target="RFC8724"/> provides a non formal representation of the rules used either for compression/decompression (or C/D)
or fragmentation/reassembly (or F/R). The goal of this document is to formalize the description of the rules to offer:</t>

<t><list style="symbols">
  <t>the same definition on both ends, even if the internal representation is different.</t>
  <t>an update of the other end to set up some specific values (e.g. IPv6 prefix, Destination address,…)</t>
  <t>…</t>
</list></t>

<t>This document defines a YANG module to represent both compression and fragmentation rules, which leads to common representation for values for all the rules elements.</t>

<t>SCHC compression is generic, the main mechanism does not refer
to a specific protocol. Any header field is abstracted through an ID, a position, a direction, and a value that can be a numerical
value or a string. <xref target="RFC8724"/> and <xref target="RFC8824"/> specify fields for IPv6, UDP, CoAP and OSCORE.</t>

<t>SCHC fragmentation requires a set of common parameters that are included in a rule. These parameters are defined in <xref target="RFC8724"/>.</t>

<t>The YANG model allows to select the compression or the fragmentation using the feature command.</t>

<figure title="Feature for compression and fragmentation." anchor="Fig-feature"><artwork><![CDATA[
  feature compression {
    description
      "SCHC compression capabilities are taken into account";
  }

  feature fragmentation {
    description
      "SCHC fragmentation capabilities are taken into account";
  }
]]></artwork></figure>

<section anchor="comp_types" title="Compression Rules">

<t><xref target="RFC8724"/> proposes a non formal representation of the compression rule.
A compression context for a device is composed of a set of rules. Each rule contains information to
describe a specific field in the header to be compressed.</t>

<figure title="Compression Decompression Context" anchor="Fig-ctxt"><artwork><![CDATA[
  +-----------------------------------------------------------------+
  |                      Rule N                                     |
 +-----------------------------------------------------------------+|
 |                    Rule i                                       ||
+-----------------------------------------------------------------+||
|  (FID)            Rule 1                                        |||
|+-------+--+--+--+------------+-----------------+---------------+|||
||Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||||
|+-------+--+--+--+------------+-----------------+---------------+|||
||Field 2|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||||
|+-------+--+--+--+------------+-----------------+---------------+|||
||...    |..|..|..|   ...      | ...             | ...           ||||
|+-------+--+--+--+------------+-----------------+---------------+||/
||Field N|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act|||
|+-------+--+--+--+------------+-----------------+---------------+|/
|                                                                 |        
\-----------------------------------------------------------------/  

]]></artwork></figure>

</section>
<section anchor="identifier-generation" title="Identifier generation">

<t>Identifier used in the SCHC YANG Data Model are from the identityref statement to ensure to be globally unique and be easily augmented if needed.  The principle to define a new type based on a group of identityref is the following:</t>

<t><list style="symbols">
  <t>define a main identity ending with the keyword base-type.</t>
  <t>derive all the identities used in the Data Model from this base type.</t>
  <t>create a typedef from this base type.</t>
</list></t>

<t>The example (<xref target="Fig-identityref"/>) shows how an identityref is created for RCS algorithms used during SCHC fragmentation.</t>

<figure title="Principle to define a type based on identityref." anchor="Fig-identityref"><artwork><![CDATA[
 // -- RCS algorithm types

  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RCS.
       The algorithm also defines the size of the RCS field.";
  }

  identity rcs-RFC8724 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. RCS is 4 byte-long";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "type used in rules.";
  }
]]></artwork></figure>

</section>
<section anchor="field-identifier" title="Field Identifier">

<t>In the process of compression, the headers of the original packet are first parsed to create a list of fields. This list of fields is matched against the rules to find the appropriate rule and apply compression.  <xref target="RFC8724"/>  does not state how the field ID value is constructed. 
In examples, identification is done through a string indexed by the protocol name (e.g. IPv6.version, CoAP.version,…).</t>

<t>The current YANG Data Model includes fields definitions found in <xref target="RFC8724"/>, <xref target="RFC8824"/>.</t>

<t>Using the YANG model, each field MUST be identified through a global YANG identityref.<vspace />
A YANG field ID for the protocol always derives from the fid-base-type. Then an identity 
for each protocol is specified using the naming convention fid-&lt;&lt;protocol name»-base-type. 
All possible fields for this protocol MUST derive from the protocol identity. The naming 
convention is “fid” followed by the protocol name and the field name. If a field has 
to be divided into sub-fields, the field identity serves as a base.</t>

<t>The full field-id definition is found in <xref target="annexA"/>. The example <xref target="Fig-ex-field-id"/> 
gives the first field ID definitions. A type is defined for IPv6 protocol, and each 
field is based on it. Note that the DiffServ bits derives from the Traffic Class identity.</t>

<figure title="Definition of identityref for field IDs" anchor="Fig-ex-field-id"><artwork><![CDATA[
  identity fid-base-type {
    description
      "Field ID base type for all fields";
  }

  identity fid-ipv6-base-type {
    base fid-base-type;
    description
      "Field ID base type for IPv6 headers described in RFC 8200";
  }

  identity fid-ipv6-version {
    base fid-ipv6-base-type;
    description
      "IPv6 version field from RFC8200";
  }

  identity fid-ipv6-trafficclass {
    base fid-ipv6-base-type;
    description
      "IPv6 Traffic Class field from RFC8200";
  }

  identity fid-ipv6-trafficclass-ds {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       DiffServ field from RFC3168";
  }
  ...
]]></artwork></figure>

<t>The type associated to this identity is fid-type (cf. <xref target="Fig-field-id-type"/>)</t>

<figure title="Type definition for field IDs" anchor="Fig-field-id-type"><artwork><![CDATA[
  typedef fid-type {
    type identityref {
      base fid-base-type;
    }
    description
      "Field ID generic type.";
  }
]]></artwork></figure>

</section>
<section anchor="field-length" title="Field length">

<t>Field length is either an integer giving the size of a field in bits or a specific function. <xref target="RFC8724"/> defines the
“var” function which allows variable length fields (whose length is expressed in bytes) and <xref target="RFC8824"/> defines the “tkl” function for managing the CoAP
Token length field.</t>

<t>The naming convention is “fl” followed by the function name.</t>

<figure title="Definition of identityref for Field Length" anchor="Fig-ex-field-length"><artwork><![CDATA[
  identity fl-base-type {
    description
      "Used to extend field length functions.";
  }

  identity fl-variable {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined
       for CoAP in RFC 8824 (cf. 5.3).";
  }

  identity fl-token-length {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined
       for CoAP in RFC 8824 (cf. 4.5).";
  }
]]></artwork></figure>

<t>The field length function can be defined as an identityref as shown in <xref target="Fig-ex-field-length"/>.</t>

<t>Therefore, the type for field length is a union between an integer giving in bits the size of the length and the identityref (cf. <xref target="Fig-ex-field-length-union"/>).</t>

<figure title="Type definition for field Length" anchor="Fig-ex-field-length-union"><artwork><![CDATA[
  typedef fl-type {
    type union {
      type int64; /* positive integer, expressing length in bits */
      type identityref { /* function */
        base fl-base-type;
      }
    }
    description
      "Field length either a positive integer expressing the size in 
       bits or a function defined through an identityref.";
  }
]]></artwork></figure>

</section>
<section anchor="field-position" title="Field position">

<t>Field position is a positive integer which gives the position of a field, the default value is 1, and incremented at each repetition. 
value 0 indicates that the position is not important and is not considered during the rule selection process.</t>

<t>Field position is a positive integer. The type is an uint8.</t>

</section>
<section anchor="direction-indicator" title="Direction Indicator">

<t>The Direction Indicator (di) is used to tell if a field appears in both direction (Bi) or only uplink (Up) or Downlink (Dw).</t>

<figure title="Definition of identityref for direction indicators" anchor="Fig-ex-field-DI"><artwork><![CDATA[
  identity di-base-type {
    description
      "Used to extend direction indicators.";
  }

  identity di-bidirectional {
    base di-base-type;
    description
      "Direction Indication of bidirectionality in
       RFC 8724 (cf. 7.1).";
  }

  identity di-up {
    base di-base-type;
    description
      "Direction Indication of uplink defined in
       RFC 8724 (cf. 7.1).";
  }

  identity di-down {
    base di-base-type;
    description
      "Direction Indication of downlink defined in
       RFC 8724 (cf. 7.1).";
  }
]]></artwork></figure>

<t><xref target="Fig-ex-field-DI"/> gives the identityref for Direction Indicators. The naming convention is “di” followed by the Direction Indicator name.</t>

<t>The type is “di-type” (cf. <xref target="Fig-field-DI-type"/>).</t>

<figure title="Type definition for direction indicators" anchor="Fig-field-DI-type"><artwork><![CDATA[
  typedef di-type {
    type identityref {
      base di-base-type;
    }
    description
      "Direction in LPWAN network, up when emitted by the device,
       down when received by the device, bi when emitted or
       received by the device.";
  }
]]></artwork></figure>

</section>
<section anchor="target_value" title="Target Value">

<t>The Target Value is a list of binary sequences of any length, aligned to the left. <xref target="Fig-ex-TV"/> shows the definition of a single element of a Target Value. In the rule, the structure will be used as a list, with position as a key. The highest position value is used to compute the size of the index sent in residue for the match-mapping CDA. The position allows to specify several values:</t>

<t><list style="symbols">
  <t>For Equal and LSB, Target Value contains a single element. Therefore, the position is set to 0.</t>
  <t>For match-mapping, Target Value can contain several elements. Position values must start from 1 and MUST be contiguous.</t>
</list></t>

<figure title="Definition of target value" anchor="Fig-ex-TV"><artwork><![CDATA[
  grouping tv-struct {
    description
      "Defines the target value element. Always a binary type, strings
       must be converted to binary. field-id allows the conversion
       to the appropriate type.";
    leaf value {
      type binary;
      description
        "Target Value";
    }
    leaf position {
      type uint16;
      description
        "If only one element, position is 0. Otherwise, position is the
         the order in the matching list, starting at 1.";
    }
  }
]]></artwork></figure>

</section>
<section anchor="matching-operator" title="Matching Operator">

<t>Matching Operator (MO) is a function applied between a field value provided by the parsed header and the target value. <xref target="RFC8724"/> defines 4 MO as listed in <xref target="Fig-ex-MO"/>.</t>

<figure title="Definition of identityref for Matching Operator " anchor="Fig-ex-MO"><artwork><![CDATA[
  identity mo-base-type {
    description
      "Used to extend Matching Operators with SID values";
  }

  identity mo-equal {
    base mo-base-type;
    description
      "Equal MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-ignore {
    base mo-base-type;
    description
      "Ignore MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-msb {
    base mo-base-type;
    description
      "MSB MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-match-mapping {
    base mo-base-type;
    description
      "match-mapping MO as defined in RFC 8724 (cf. 7.3)";
  }
]]></artwork></figure>

<t>The naming convention is “mo” followed by the MO name.</t>

<t>The type is “mo-type” (cf. <xref target="Fig-MO-type"/>)</t>

<figure title="Type definition for Matching Operator" anchor="Fig-MO-type"><artwork><![CDATA[
  typedef mo-type {
    type identityref {
      base mo-base-type;
    }
    description
      "Matching Operator (MO) to compare fields values with
       target values";
  }
]]></artwork></figure>

<section anchor="matching-operator-arguments" title="Matching Operator arguments">

<t>They are viewed as a list, built with a tv-struct (see chapter <xref target="target_value"/>).</t>

</section>
</section>
<section anchor="compression-decompression-actions" title="Compression Decompression Actions">

<t>Compression Decompression Action (CDA) identifies the function to use for compression or decompression. 
<xref target="RFC8724"/> defines 6 CDA.</t>

<t><xref target="Fig-CDA-type"/> shows some CDA definition, the full definition is in <xref target="annexA"/>.</t>

<figure title="Definition of identityref for  Compresion Decompression Action" anchor="Fig-ex-CDA"><artwork><![CDATA[
  identity cda-base-type {
    description
      "Compression Decompression Actions.";
  }

  identity cda-not-sent {
    base cda-base-type;
    description
      "not-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-value-sent {
    base cda-base-type;
    description
      "value-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-lsb {
    base cda-base-type;
    description
      "LSB CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-mapping-sent {
    base cda-base-type;
    description
      "mapping-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-compute { 
    base cda-base-type;
    description
      "compute-* CDA as defined in RFC 8724 (cf. 7.4)";
  }
    ....
]]></artwork></figure>

<t>The naming convention is “cda” followed by the CDA name.</t>

<figure title="Type definition for Compresion Decompression Action" anchor="Fig-CDA-type"><artwork><![CDATA[
  typedef cda-type {
    type identityref {
      base cda-base-type;
    }
    description
      "Compression Decompression Action to compression or
       decompress a field.";
  }
]]></artwork></figure>

<section anchor="compression-decompression-action-arguments" title="Compression Decompression Action arguments">

<t>Currently no CDA requires arguments, but in the future some CDA may require one or several arguments.
They are viewed as a list, of target-value type.</t>

</section>
</section>
<section anchor="frag_types" title="Fragmentation rule">

<t>Fragmentation is optional in the data model and depends on the presence of the “fragmentation” feature.</t>

<t>Most of the fragmentation parameters are listed in Annex D of <xref target="RFC8724"/>.</t>

<t>Since fragmentation rules work for a specific direction, they MUST contain a mandatory direction indicator.
The type is the same as the one used in compression entries, but bidirectional MUST NOT be used.</t>

<section anchor="fragmentation-mode" title="Fragmentation mode">

<t><xref target="RFC8724"/> defines 3 fragmentation modes:</t>

<t><list style="symbols">
  <t>No Ack: this mode is unidirectionnal, no acknowledgment is sent back.</t>
  <t>Ack Always: each fragmentation window must be explicitly acknowledged before going to the next.</t>
  <t>Ack on Error:  A window is acknowledged only when the receiver detects some missing fragments.</t>
</list></t>

<t><xref target="Fig-frag-mode"/> shows the definition for identifiers from these three modes.</t>

<figure title="Definition of fragmentation mode identifer" anchor="Fig-frag-mode"><artwork><![CDATA[
  identity fragmentation-mode-base-type {
    description
      "fragmentation mode.";
  }

  identity fragmentation-mode-no-ack {
    base fragmentation-mode-base-type;
    description
      "No-ACK of RFC8724.";
  }

  identity fragmentation-mode-ack-always {
    base fragmentation-mode-base-type;
    description
      "ACK-Always of RFC8724.";
  }

  identity fragmentation-mode-ack-on-error {
    base fragmentation-mode-base-type;
    description
      "ACK-on-Error of RFC8724.";
  }

  typedef fragmentation-mode-type {
    type identityref {
      base fragmentation-mode-base-type;
    }
    description
      "type used in rules";
  }
]]></artwork></figure>

<t>The naming convention is “fragmentation-mode” followed by the fragmentation mode name.</t>

</section>
<section anchor="fragmentation-header" title="Fragmentation Header">

<t>A data fragment header, starting with the rule ID can be sent on the fragmentation direction. 
The SCHC header may be composed of (cf. <xref target="Fig-frag-header-8724"/>):</t>

<t><list style="symbols">
  <t>a Datagram Tag (Dtag) identifying the datagram being fragmented if the fragmentation applies concurrently on several datagrams. This field in optional and its length is defined by the rule.</t>
  <t>a Window (W) used in Ack-Always and Ack-on-Error modes. In Ack-Always, its size is 1. In Ack-on-Error, it depends on the rule. This field is not needed in No-Ack mode.</t>
  <t>a Fragment Compressed Number (FCN) indicating the fragment/tile position on the window. This field is mandatory on all modes defined in <xref target="RFC8724"/>, its size is defined by the rule.</t>
</list></t>

<figure title="Data fragment header from RFC8724" anchor="Fig-frag-header-8724"><artwork><![CDATA[
|-- SCHC Fragment Header ----|
         |-- T --|-M-|-- N --|
+-- ... -+- ... -+---+- ... -+--------...-------+~~~~~~~~~~~~~~~~~~~~
| RuleID | DTag  | W |  FCN  | Fragment Payload | padding (as needed)
+-- ... -+- ... -+---+- ... -+--------...-------+~~~~~~~~~~~~~~~~~~~~

]]></artwork></figure>

</section>
<section anchor="last-fragment-format" title="Last fragment format">

<t>The last fragment of a datagram is sent with an RCS (Reassembly Check Sequence) field to detect residual 
transmission error and possible losses in the last window. <xref target="RFC8724"/> defines a single algorithm based on Ethernet 
CRC computation. The identity of the RCS algorithm is shown in <xref target="Fig-frag-RCS"/>.</t>

<figure title="type definition for RCS" anchor="Fig-frag-RCS"><artwork><![CDATA[
  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RCS.
       The algorithm also defines the size of the RCS field.";
  }

  identity rcs-RFC8724 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. RCS is 4 byte-long";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "type used in rules.";
  }
]]></artwork></figure>

<t>The naming convention is “rcs” followed by the algorithm name.</t>

<t>For Ack-on-Error mode, the All-1 fragment may just contain the RCS or can include a tile. The parameters defined in <xref target="Fig-frag-all1-data"/> allows to define the 
behavior:</t>

<t><list style="symbols">
  <t>all1-data-no: the last fragment contains no data, just the RCS</t>
  <t>all1-data-yes: the last fragment includes a single tile and the RCS</t>
  <t>all1-data-sender-choice: the last fragment may or may not contain a single tile. The receiver can detect if a tile is present.</t>
</list></t>

<figure title="type definition for RCS" anchor="Fig-frag-all1-data"><artwork><![CDATA[
  identity all1-data-base-type {
    description
      "Type to define when to send an Acknowledgment message.";
  }

  identity all1-data-no {
    base all1-data-base-type;
    description
      "All1 contains no tiles.";
  }

  identity all1-data-yes {
    base all1-data-base-type;
    description
      "All1 MUST contain a tile.";
  }

  identity all1-data-sender-choice {
    base all1-data-base-type;
    description
      "Fragmentation process chooses to send tiles or not in all1.";
  }

  typedef all1-data-type {
    type identityref {
      base all1-data-base-type;
    }
    description
      "Type used in rules.";
  }
]]></artwork></figure>

<t>The naming convention is “all1-data” followed by the behavior identifier.</t>

</section>
<section anchor="acknowledgment-behavior" title="Acknowledgment behavior">

<t>The acknowledgment fragment header goes in the opposite direction of data. The header is composed of (see <xref target="Fig-frag-ack"/>):</t>

<t><list style="symbols">
  <t>a Dtag (if present).</t>
  <t>a mandatory window as in the data fragment.</t>
  <t>a C bit giving the status of RCS validation.  In case of failure, a bitmap follows, indicating the received tile.</t>
</list></t>

<figure title="Acknowledgment fragment header for RFC8724" anchor="Fig-frag-ack"><artwork><![CDATA[
|--- SCHC ACK Header ----|
         |-- T --|-M-| 1 |
+-- ... -+- ... -+---+---+~~~~~~~~~~~~~~~~~~
| RuleID |  DTag | W |C=1| padding as needed                (success)
+-- ... -+- ... -+---+---+~~~~~~~~~~~~~~~~~~

+-- ... -+- ... -+---+---+------ ... ------+~~~~~~~~~~~~~~~
| RuleID |  DTag | W |C=0|Compressed Bitmap| pad. as needed (failure)
+-- ... -+- ... -+---+---+------ ... ------+~~~~~~~~~~~~~~~

]]></artwork></figure>

<t>For Ack-on-Error, SCHC defines when an acknowledgment can be sent. This can be at any time defined by the layer 2, at the end of a window (FCN All-0) 
or as a response to receiving the last fragment (FCN All-1). The following identifiers (cf. <xref target="Fig-frag-ack-behavior"/>) define the acknowledgment behavior.</t>

<figure title="bitmap generation behavior" anchor="Fig-frag-ack-behavior"><artwork><![CDATA[
  identity ack-behavior-base-type {
    description
      "Define when to send an Acknowledgment .";
  }

  identity ack-behavior-after-All0 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All0 fragment.";
  }

  identity ack-behavior-after-All1 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All1 fragment.";
  }

  identity ack-behavior-by-layer2 {
    base ack-behavior-base-type;
    description
      "Layer 2 defines when to send an Ack.";
  }

  typedef ack-behavior-type {
    type identityref {
      base ack-behavior-base-type;
    }
    description
      "Type used in rules.";
  }
]]></artwork></figure>

<t>The naming convention is “ack-behavior” followed by the algorithm name.</t>

</section>
<section anchor="fragmentation-parameters" title="Fragmentation Parameters">

<t>The state machine requires some common values to handle fragmentation:</t>

<t><list style="symbols">
  <t>retransmission-timer expresses, in seconds, the duration before sending an ack request (cf. section 8.2.2.4. of <xref target="RFC8724"/>). If specified, value must be higher or equal to 1.</t>
  <t>inactivity-timer expresses, in seconds, the duration before aborting a fragmentation session (cf. section 8.2.2.4. of <xref target="RFC8724"/>). The value 0 explicitly indicates that this timer is disabled.</t>
  <t>max-ack-requests expresses the number of attempts before aborting (cf. section 8.2.2.4. of <xref target="RFC8724"/>).</t>
  <t>maximum-packet-size rexpresses, in bytes, the larger packet size that can be reassembled.</t>
</list></t>

<t>They are defined as unsigned integers, see <xref target="annexA"/>.</t>

</section>
<section anchor="layer-2-parameters" title="Layer 2 parameters">

<t>The data model includes two parameters needed for fragmentation:</t>

<t><list style="symbols">
  <t>l2-word-size: <xref target="RFC8724"/> base fragmentation on a layer 2 word which can be of any length. The default value is 8 and correspond 
to the default value for byte aligned layer 2. A value of 1 will indicate that there is no alignment and no need for padding.</t>
  <t>maximum-packet-size: defines the maximum size of a uncompressed datagram. By default, the value is set to 1280 bytes.</t>
</list></t>

<t>They are defined as unsigned integer, see <xref target="annexA"/>.</t>

</section>
</section>
</section>
<section anchor="rule-definition" title="Rule definition">

<t>A rule is idenfied by a unique rule identifier (rule ID) comprising both a Rule ID value and a Rule ID length. 
The YANG grouping rule-id-type defines the structure used to represent a rule ID. A length of 0 is allowed to represent an implicit rule.</t>

<t>Three types of rules are defined in <xref target="RFC8724"/>:</t>

<t><list style="symbols">
  <t>Compression: a compression rule is associated with the rule ID.</t>
  <t>No compression: this identifies the default rule used to send a packet in extenso when no compression rule was found (see <xref target="RFC8724"/> section 6).</t>
  <t>Fragmentation: fragmentation parameters are associated with the rule ID. Fragmentation is optional and feature “fragmentation” should be set.</t>
</list></t>

<figure title="Definition of a SCHC Context" anchor="Fig-yang-schc"><artwork><![CDATA[
  grouping rule-id-type {
    leaf rule-id-value {
      type uint32;
      description
        "Rule ID value, this value must be unique, considering its
         length.";
    }
    leaf rule-id-length {
      type uint8 {
        range "0..32";
      }
      description
        "Rule ID length, in bits. The value 0 is for implicit rules.";
    }
    description
      "A rule ID is composed of a value and a length, expressed in 
       bits.";
  }

  // SCHC table for a specific device.

  container schc {
    list rule {
      key "rule-id-value rule-id-length";
      uses rule-id-type;
      choice nature {
        case fragmentation {
          if-feature "fragmentation";
          uses fragmentation-content;
        }
        case compression {
          if-feature "compression";
          uses compression-content;
        }
        case no-compression {
          description
            "RFC8724 requires a rule for uncompressed headers.";
        }
        description
          "A rule is for compression, for no-compression or for
           fragmentation.";
      }
      description
        "Set of rules compression, no compression or fragmentation
         rules identified by their rule-id.";
    }
    description
      "a SCHC set of rules is composed of a list of rules which are
       used for compression, no-compression or fragmentation.";
  }
}
]]></artwork></figure>

<t>To access a specific rule, the rule ID length and value are used as a key. The rule is either
a compression or a fragmentation rule.</t>

<section anchor="compression-rule" title="Compression rule">

<t>A compression rule is composed of entries describing its processing (cf. <xref target="Fig-comp-entry"/>). An entry  contains all the information defined in <xref target="Fig-ctxt"/> with the types defined above.</t>

<t>The compression rule described <xref target="Fig-ctxt"/> is defined by compression-content. It defines a list of
compression-rule-entry, indexed by their field id, position and direction. The compression-rule-entry 
element represent a line of the table <xref target="Fig-ctxt"/>. Their type reflects the identifier types defined in
<xref target="comp_types"/></t>

<t>Some checks are performed on the values:</t>

<t><list style="symbols">
  <t>target value must be present for MO different from ignore.</t>
  <t>when MSB MO is specified, the matching-operator-value must be present</t>
</list></t>

<figure title="Definition of a compression entry" anchor="Fig-comp-entry"><artwork><![CDATA[
  grouping compression-rule-entry {
    description
      "These entries defines a compression entry (i.e. a line)
       as defined in RFC 8724.

       +-------+--+--+--+------------+-----------------+---------------+
       |Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act|
       +-------+--+--+--+------------+-----------------+---------------+

       An entry in a compression rule is composed of 7 elements:
       - Field ID: The header field to be compressed. The content is a
         YANG identifer.
       - Field Length : either a positive integer of a function defined
         as a YANG id.
       - Field Position: a positive (and possibly equal to 0) integer.
       - Direction Indicator: a YANG identifier giving the direction.
       - Target value: a value against which the header Field is
         compared.
       - Matching Operator: a YANG id giving the operation, parameters
         may be associated to that operator.
       - Comp./Decomp. Action: A YANG id giving the compression or
         decompression action, parameters may be associated to that
         action.
      ";
    leaf field-id {
      type schc:fid-type;
      mandatory true;
      description
        "Field ID, identify a field in the header with a YANG
         referenceid.";
    }
    leaf field-length {
      type schc:fl-type;
      mandatory true;
      description
        "Field Length, expressed in number of bits or through a function defined as a
         YANG referenceid.";
    }
    leaf field-position {
      type uint8;
      mandatory true;
      description
        "Field position in the header is an integer. Position 1 matches 
         the first occurence of a field in the header, while incremented 
         position values match subsequent occurences.
         Position 0 means that this entry matches a field irrespective 
         of its position of occurence in the header.
         Be aware that the decompressed header may have position-0 
         fields ordered differently than they appeared in the original 
         packet.";
    }
    leaf direction-indicator {
      type schc:di-type;
      mandatory true;
      description
        "Direction Indicator, a YANG referenceid to say if the packet
         is bidirectional, up or down";
    }
    list target-value {
      key "position";
      uses tv-struct;
      description
        "A list of value to compare with the header field value.
         If target value is a singleton, position must be 0.
         For use as a matching list for the mo-match-mapping matching 
         operator, positions should take consecutive values starting 
         from 1.";
    }
    leaf matching-operator {
      type schc:mo-type;
      must "../target-value or derived-from-or-self(., 'mo-ignore')" {
        error-message 
            "mo-equal, mo-msb and mo-match-mapping need target-value";
        description
          "target-value is not required for mo-ignore";
      }
      must "not (derived-from-or-self(., 'mo-msb')) or
            ../matching-operator-value" {
        error-message "mo-msb requires length value";
      }
      mandatory true;
      description
        "MO: Matching Operator";
    }
    list matching-operator-value {
      key "position";
      uses tv-struct;
      description
        "Matching Operator Arguments, based on TV structure to allow
         several arguments.
         In RFC 8724, only the MSB matching operator needs arguments (a single argument, which is the
         number of most significant bits to be matched)";
    }
    leaf comp-decomp-action {
      type schc:cda-type;
      mandatory true;
      description
        "CDA: Compression Decompression Action.";
    }
    list comp-decomp-action-value {
      key "position";
      uses tv-struct;
      description
        "CDA arguments, based on a TV structure, in order to allow for 
         several arguments. The CDAs specified in RFC 8724 require no 
         argument.";
    }
  }

  grouping compression-content {
    list entry {
      key "field-id field-position direction-indicator";
      uses compression-rule-entry;
      description
        "A compression rule is a list of rule entries, each describing
         a header field. An entry is identifed through a field-id,
         its position in the packet and its direction.";
    }
    description
      "Define a compression rule composed of a list of entries.";
  }
]]></artwork></figure>

</section>
<section anchor="fragmentation-rule" title="Fragmentation rule">

<t>A Fragmentation rule is composed of entries describing the protocol behavior. Some on them are numerical entries,
others are identifiers defined in <xref target="frag_types"/>.</t>

<t>The definition of a Fragmentation rule is divided into three sub-parts:</t>

<t><list style="symbols">
  <t>parameters such as the fragmentation-mode, the l2-word-size and the direction. Since Fragmentation rules are always defined for a specific direction, the value must be either di-up or di-down (di-bidirectional is not allowed).</t>
  <t>parameters defining the Fragmentation header format (dtag-size, w-size, fcn-size and rcs-algorithm).</t>
  <t>Protocol parameters for timers (inactivity-timer, retransmission-timer) or behavior (maximum-packet-size, max-interleaved-frames, max-ack-requests). If these parameters are specific to a single fragmentation mode, they are grouped in a structure dedicated to that Fragmentation mode. If some parameters can be found in several modes, typically ACK-Always and ACK-on-Error, they are defined in a common part and a when statement indicates which modes are allowed.</t>
</list></t>

<figure><artwork><![CDATA[
 grouping fragmentation-content {
    description
      "This grouping defines the fragmentation parameters for
       all the modes (No-Ack, Ack-Always and Ack-on-Error) specified in
       RFC 8724.";
    leaf fragmentation-mode {
      type schc:fragmentation-mode-type;
      mandatory true;
      description
        "which fragmentation mode is used (noAck, AckAlways,
         AckonError)";
    }
    leaf l2-word-size {
      type uint8;
      default "8";
      description
        "Size, in bits, of the layer 2 word";
    }
    leaf direction {
      type schc:di-type;
      must "derived-from-or-self(., 'di-up') or
            derived-from-or-self(., 'di-down')" {
        error-message 
            "direction for fragmentation rules are up or down.";
      }
      mandatory true;
      description
        "Should be up or down, bidirectionnal is forbiden.";
    }
    // SCHC Frag header format 
    leaf dtag-size {
      type uint8;
      default "0";
      description
        "Size, in bits, of the DTag field (T variable from RFC8724).";
    }
    leaf w-size {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint8;
      description
        "Size, in bits, of the window field (M variable from RFC8724).";
    }
    leaf fcn-size {
      type uint8;
      mandatory true;
      description
        "Size, in bits, of the FCN field (N variable from RFC8724).";
    }
    leaf rcs-algorithm {
      type rcs-algorithm-type;
      default "schc:rcs-RFC8724";
      description
        "Algorithm used for RCS. The algorithm specifies the RCS size";
    }
    // SCHC fragmentation protocol parameters
    leaf maximum-packet-size {
      type uint16;
      default "1280";
      description
        "When decompression is done, packet size must not
         strictly exceed this limit, expressed in bytes.";
    }
    leaf window-size {
      type uint16;
      description
        "By default, if not specified 2^w-size - 1. Should not exceed
         this value. Possible FCN values are between 0 and 
         window-size - 1.";
    }
    leaf max-interleaved-frames {
      type uint8;
      default "1";
      description
        "Maximum of simultaneously fragmented frames. Maximum value is
        2^dtag-size. All DTAG values can be used, but at most
        max-interleaved-frames must be active at any time.";
    }
    leaf inactivity-timer {
      type uint64;
      description
        "Duration is seconds of the inactivity timer, 0 indicates 
        that the timer is disabled.";
    }
    leaf retransmission-timer {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint64 {
        range "1..max";
      }
      description
        "Duration in seconds of the retransmission timer.";
    }
    leaf max-ack-requests {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint8 {
        range "1..max";
      }
      description
        "The maximum number of retries for a specific SCHC ACK.";
    }
    choice mode {
      case no-ack;
      case ack-always;
      case ack-on-error {
        leaf tile-size {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type uint8;
          description
            "Size, in bits, of tiles. If not specified or set to 0,
             tiles fill the fragment.";
        }
        leaf tile-in-All1 {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:all1-data-type;
          description
            "Defines whether the sender and receiver expect a tile in
             All-1 fragments or not, or if it is left to the sender's 
             choice.";
        }
        leaf ack-behavior {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:ack-behavior-type;
          description
            "Sender behavior to acknowledge, after All-0, All-1 or
             when the LPWAN allows it.";
        }
      }
      description
        "RFC 8724 defines 3 fragmentation modes.";
    } 
  }
]]></artwork></figure>

</section>
<section anchor="yang-tree" title="YANG Tree">

<figure anchor="Fig-model-overview"><artwork><![CDATA[
module: ietf-schc
  +--rw schc
     +--rw rule* [rule-id-value rule-id-length]
        +--rw rule-id-value                   uint32
        +--rw rule-id-length                  uint8
        +--rw (nature)?
           +--:(fragmentation) {fragmentation}?
           |  +--rw fragmentation-mode        schc:fragmentation-mode-type
           |  +--rw l2-word-size?             uint8
           |  +--rw direction                 schc:di-type
           |  +--rw dtag-size?                uint8
           |  +--rw w-size?                   uint8
           |  +--rw fcn-size                  uint8
           |  +--rw rcs-algorithm?            rcs-algorithm-type
           |  +--rw maximum-packet-size?      uint16
           |  +--rw window-size?              uint16
           |  +--rw max-interleaved-frames?   uint8
           |  +--rw inactivity-timer?         uint64
           |  +--rw retransmission-timer?     uint64
           |  +--rw max-ack-requests?         uint8
           |  +--rw (mode)?
           |     +--:(no-ack)
           |     +--:(ack-always)
           |     +--:(ack-on-error)
           |        +--rw tile-size?          uint8
           |        +--rw tile-in-All1?       schc:all1-data-type
           |        +--rw ack-behavior?       schc:ack-behavior-type
           +--:(compression) {compression}?
           |  +--rw entry* [field-id field-position direction-indicator]
           |     +--rw field-id                    schc:fid-type
           |     +--rw field-length                schc:fl-type
           |     +--rw field-position              uint8
           |     +--rw direction-indicator         schc:di-type
           |     +--rw target-value* [position]
           |     |  +--rw value?      binary
           |     |  +--rw position    uint16
           |     +--rw matching-operator           schc:mo-type
           |     +--rw matching-operator-value* [position]
           |     |  +--rw value?      binary
           |     |  +--rw position    uint16
           |     +--rw comp-decomp-action          schc:cda-type
           |     +--rw comp-decomp-action-value* [position]
           |        +--rw value?      binary
           |        +--rw position    uint16
           +--:(no-compression)
]]></artwork></figure>

</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document has no request to IANA.</t>

</section>
<section anchor="SecConsiderations" title="Security considerations">

<t>This document does not have any more Security consideration than the ones already raised in <xref target="RFC8724"/> and <xref target="RFC8824"/>.</t>

</section>
<section anchor="acknowledgements" title="Acknowledgements">

<t>The authors would like to thank Dominique Barthel, Carsten Bormann, Alexander Pelov.</t>

</section>
<section anchor="annexA" title="YANG Module">

<figure anchor="Fig-schc"><artwork><![CDATA[
<code begins> file ietf-schc@2022-02-15.yang
module ietf-schc {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-schc";
  prefix schc;

  organization
    "IETF IPv6 over Low Power Wide-Area Networks (lpwan) working group";
  contact
    "WG Web:   <https://datatracker.ietf.org/wg/lpwan/about/>
     WG List:  <mailto:p-wan@ietf.org>
     Editor:   Laurent Toutain
       <mailto:laurent.toutain@imt-atlantique.fr>
     Editor:   Ana Minaburo
       <mailto:ana@ackl.io>";
  description
    "
     Copyright (c) 2021 IETF Trust and the persons identified as
     authors of the code.  All rights reserved.

     Redistribution and use in source and binary forms, with or
     without modification, is permitted pursuant to, and subject to
     the license terms contained in, the Simplified BSD License set
     forth in Section 4.c of the IETF Trust's Legal Provisions
     Relating to IETF Documents
     (https://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX
     (https://www.rfc-editor.org/info/rfcXXXX); see the RFC itself
     for full legal notices.

     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 (RFC 2119) (RFC 8174) when, and only when,
     they appear in all capitals, as shown here.

     *****************************************************************

     Generic Data model for Static Context Header Compression Rule for
     SCHC, based on RFC 8724 and RFC8824. Include compression, no
     compression and fragmentation rules.

     This module is a YANG model for SCHC rules (RFC 8724 and RFC8824).
     RFC 8724 describes compression rules in a abstract way through a 
     table.

     |-----------------------------------------------------------------|
     |  (FID)            Rule 1                                        |
     |+-------+--+--+--+------------+-----------------+---------------+|
     ||Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
     |+-------+--+--+--+------------+-----------------+---------------+|
     ||Field 2|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
     |+-------+--+--+--+------------+-----------------+---------------+|
     ||...    |..|..|..|   ...      | ...             | ...           ||
     |+-------+--+--+--+------------+-----------------+---------------+|
     ||Field N|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
     +-------+--+--+--+------------+-----------------+---------------+||
     |-----------------------------------------------------------------|

     This module proposes a global data model that can be used for rule
     exchanges or modification. It proposes both the data model format
     and the global identifiers used to describe some operations in
     fields.
     This data model applies to both compression and fragmentation.";

  revision 2022-02-15 {
    description
      "Initial version from RFC XXXX ";
    reference
      "RFC XXX: Data Model for Static Context Header Compression
       (SCHC)";
  }

  feature compression {
    description
      "SCHC compression capabilities are taken into account";
  }

  feature fragmentation {
    description
      "SCHC fragmentation capabilities are taken into account";
  }

  // -------------------------
  //  Field ID type definition
  //--------------------------
  // generic value TV definition 

  identity fid-base-type {
    description
      "Field ID base type for all fields";
  }

  identity fid-ipv6-base-type {
    base fid-base-type;
    description
      "Field ID base type for IPv6 headers described in RFC 8200";
  }

  identity fid-ipv6-version {
    base fid-ipv6-base-type;
    description
      "IPv6 version field from RFC8200";
  }

  identity fid-ipv6-trafficclass {
    base fid-ipv6-base-type;
    description
      "IPv6 Traffic Class field from RFC8200";
  }

  identity fid-ipv6-trafficclass-ds {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       DiffServ field from RFC3168";
  }

  identity fid-ipv6-trafficclass-ecn {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       ECN field from RFC3168";
  }

  identity fid-ipv6-flowlabel {
    base fid-ipv6-base-type;
    description
      "IPv6 Flow Label field from RFC8200";
  }

  identity fid-ipv6-payloadlength {
    base fid-ipv6-base-type;
    description
      "IPv6 Payload Length field from RFC8200";
  }

  identity fid-ipv6-nextheader {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field from RFC8200";
  }

  identity fid-ipv6-hoplimit {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field from RFC8200";
  }

  identity fid-ipv6-devprefix {
    base fid-ipv6-base-type;
    description
      "corresponds to either the source address or the destination
              address prefix of RFC 8200. Depending if it is
              respectively an uplink or a downlink message.";
  }

  identity fid-ipv6-deviid {
    base fid-ipv6-base-type;
    description
      "corresponds to either the source address or the destination
       address prefix of RFC 8200. Depending if it is respectively
       an uplink or a downlink message.";
  }

  identity fid-ipv6-appprefix {
    base fid-ipv6-base-type;
    description
      "corresponds to either the source address or the destination
       address prefix of RFC 8200. Depending if it is respectively
       a downlink or an uplink message.";
  }

  identity fid-ipv6-appiid {
    base fid-ipv6-base-type;
    description
      "corresponds to either the source address or the destination
       address prefix of RFC 8200. Depending if it is respectively
       a downlink or an uplink message.";
  }

  identity fid-udp-base-type {
    base fid-base-type;
    description
      "Field ID base type for UDP headers described in RFC 768";
  }

  identity fid-udp-dev-port {
    base fid-udp-base-type;
    description
      "UDP source or destination port from RFC 768, if uplink or 
      downlink communication, respectively.";
  }

  identity fid-udp-app-port {
    base fid-udp-base-type;
    description
      "UDP destination or source port from RFC 768, if uplink or 
      downlink communication, respectively.";
  }

  identity fid-udp-length {
    base fid-udp-base-type;
    description
      "UDP length from RFC 768";
  }

  identity fid-udp-checksum {
    base fid-udp-base-type;
    description
      "UDP length from RFC 768";
  }

  identity fid-coap-base-type {
    base fid-base-type;
    description
      "Field ID base type for UDP headers described in RFC 7252";
  }

  identity fid-coap-version {
    base fid-coap-base-type;
    description
      "CoAP version from RFC 7252";
  }

  identity fid-coap-type {
    base fid-coap-base-type;
    description
      "CoAP type from RFC 7252";
  }

  identity fid-coap-tkl {
    base fid-coap-base-type;
    description
      "CoAP token length from RFC 7252";
  }

  identity fid-coap-code {
    base fid-coap-base-type;
    description
      "CoAP code from RFC 7252";
  }

  identity fid-coap-code-class {
    base fid-coap-code;
    description
      "CoAP code class from RFC 7252";
  }

  identity fid-coap-code-detail {
    base fid-coap-code;
    description
      "CoAP code detail from RFC 7252";
  }

  identity fid-coap-mid {
    base fid-coap-base-type;
    description
      "CoAP message ID from RFC 7252";
  }

  identity fid-coap-token {
    base fid-coap-base-type;
    description
      "CoAP token from RFC 7252";
  }

  identity fid-coap-option-if-match {
    base fid-coap-base-type;
    description
      "CoAP option If-Match from RFC 7252";
  }

  identity fid-coap-option-uri-host {
    base fid-coap-base-type;
    description
      "CoAP option URI-Host from RFC 7252";
  }

  identity fid-coap-option-etag {
    base fid-coap-base-type;
    description
      "CoAP option Etag from RFC 7252";
  }

  identity fid-coap-option-if-none-match {
    base fid-coap-base-type;
    description
      "CoAP option if-none-match from RFC 7252";
  }

  identity fid-coap-option-observe {
    base fid-coap-base-type;
    description
      "CoAP option Observe from RFC 7641";
  }

  identity fid-coap-option-uri-port {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Port from RFC 7252";
  }

  identity fid-coap-option-location-path {
    base fid-coap-base-type;
    description
      "CoAP option Location-Path from RFC 7252";
  }

  identity fid-coap-option-uri-path {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Path from RFC 7252";
  }

  identity fid-coap-option-content-format {
    base fid-coap-base-type;
    description
      "CoAP option Content Format from RFC 7252";
  }

  identity fid-coap-option-max-age {
    base fid-coap-base-type;
    description
      "CoAP option Max-Age from RFC 7252";
  }

  identity fid-coap-option-uri-query {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Query from RFC 7252";
  }

  identity fid-coap-option-accept {
    base fid-coap-base-type;
    description
      "CoAP option Accept from RFC 7252";
  }

  identity fid-coap-option-location-query {
    base fid-coap-base-type;
    description
      "CoAP option Location-Query from RFC 7252";
  }

  identity fid-coap-option-block2 {
    base fid-coap-base-type;
    description
      "CoAP option Block2 from RFC 7959";
  }

  identity fid-coap-option-block1 {
    base fid-coap-base-type;
    description
      "CoAP option Block1 from RFC 7959";
  }

  identity fid-coap-option-size2 {
    base fid-coap-base-type;
    description
      "CoAP option size2 from RFC 7959";
  }

  identity fid-coap-option-proxy-uri {
    base fid-coap-base-type;
    description
      "CoAP option Proxy-Uri from RFC 7252";
  }

  identity fid-coap-option-proxy-scheme {
    base fid-coap-base-type;
    description
      "CoAP option Proxy-scheme from RFC 7252";
  }

  identity fid-coap-option-size1 {
    base fid-coap-base-type;
    description
      "CoAP option Size1 from RFC 7252";
  }

  identity fid-coap-option-no-response {
    base fid-coap-base-type;
    description
      "CoAP option No response from RFC 7967";
  }

  identity fid-coap-option-oscore-flags {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-piv {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-kid {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-kidctx {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  //----------------------------------
  // Field Length type definition
  //----------------------------------

  identity fl-base-type {
    description
      "Used to extend field length functions.";
  }

  identity fl-variable {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined
       for CoAP in RFC 8824 (cf. 5.3).";
  }

  identity fl-token-length {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined
       for CoAP in RFC 8824 (cf. 4.5).";
  }

  //---------------------------------
  // Direction Indicator type
  //---------------------------------

  identity di-base-type {
    description
      "Used to extend direction indicators.";
  }

  identity di-bidirectional {
    base di-base-type;
    description
      "Direction Indication of bidirectionality in
       RFC 8724 (cf. 7.1).";
  }

  identity di-up {
    base di-base-type;
    description
      "Direction Indication of uplink defined in
       RFC 8724 (cf. 7.1).";
  }

  identity di-down {
    base di-base-type;
    description
      "Direction Indication of downlink defined in
       RFC 8724 (cf. 7.1).";
  }

  //----------------------------------
  // Matching Operator type definition
  //----------------------------------

  identity mo-base-type {
    description
      "Used to extend Matching Operators with SID values";
  }

  identity mo-equal {
    base mo-base-type;
    description
      "Equal MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-ignore {
    base mo-base-type;
    description
      "Ignore MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-msb {
    base mo-base-type;
    description
      "MSB MO as defined in RFC 8724 (cf. 7.3)";
  }

  identity mo-match-mapping {
    base mo-base-type;
    description
      "match-mapping MO as defined in RFC 8724 (cf. 7.3)";
  }

  //------------------------------
  // CDA type definition
  //------------------------------

  identity cda-base-type {
    description
      "Compression Decompression Actions.";
  }

  identity cda-not-sent {
    base cda-base-type;
    description
      "not-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-value-sent {
    base cda-base-type;
    description
      "value-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-lsb {
    base cda-base-type;
    description
      "LSB CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-mapping-sent {
    base cda-base-type;
    description
      "mapping-sent CDA as defined in RFC 8724 (cf. 7.4).";
  }

  identity cda-compute { 
    base cda-base-type;
    description
      "compute-length CDA as defined in RFC 8724 (cf. 7.4)";
  }

  identity cda-deviid {
    base cda-base-type;
    description
      "deviid CDA as defined in RFC 8724 (cf. 7.4)";
  }

  identity cda-appiid {
    base cda-base-type;
    description
      "appiid CDA as defined in RFC 8724 (cf. 7.4)";
  }

  // -- type definition

  typedef fid-type {
    type identityref {
      base fid-base-type;
    }
    description
      "Field ID generic type.";
  }

  typedef fl-type {
    type union {
      type int64; /* positive integer, expressing length in bits */
      type identityref { /* function */
        base fl-base-type;
      }
    }
    description
      "Field length either a positive integer expressing the size in 
       bits or a function defined through an identityref.";
  }

  typedef di-type {
    type identityref {
      base di-base-type;
    }
    description
      "Direction in LPWAN network, up when emitted by the device,
       down when received by the device, bi when emitted or
       received by the device.";
  }

  typedef mo-type {
    type identityref {
      base mo-base-type;
    }
    description
      "Matching Operator (MO) to compare fields values with
       target values";
  }

  typedef cda-type {
    type identityref {
      base cda-base-type;
    }
    description
      "Compression Decompression Action to compression or
       decompress a field.";
  }

  // -- FRAGMENTATION TYPE
  // -- fragmentation modes

  identity fragmentation-mode-base-type {
    description
      "fragmentation mode.";
  }

  identity fragmentation-mode-no-ack {
    base fragmentation-mode-base-type;
    description
      "No-ACK of RFC8724.";
  }

  identity fragmentation-mode-ack-always {
    base fragmentation-mode-base-type;
    description
      "ACK-Always of RFC8724.";
  }

  identity fragmentation-mode-ack-on-error {
    base fragmentation-mode-base-type;
    description
      "ACK-on-Error of RFC8724.";
  }

  typedef fragmentation-mode-type {
    type identityref {
      base fragmentation-mode-base-type;
    }
    description
      "type used in rules";
  }

  // -- Ack behavior 

  identity ack-behavior-base-type {
    description
      "Define when to send an Acknowledgment .";
  }

  identity ack-behavior-after-All0 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All0 fragment.";
  }

  identity ack-behavior-after-All1 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All1 fragment.";
  }

  identity ack-behavior-by-layer2 {
    base ack-behavior-base-type;
    description
      "Layer 2 defines when to send an Ack.";
  }

  typedef ack-behavior-type {
    type identityref {
      base ack-behavior-base-type;
    }
    description
      "Type used in rules.";
  }

  // -- All1 with data types

  identity all1-data-base-type {
    description
      "Type to define when to send an Acknowledgment message.";
  }

  identity all1-data-no {
    base all1-data-base-type;
    description
      "All1 contains no tiles.";
  }

  identity all1-data-yes {
    base all1-data-base-type;
    description
      "All1 MUST contain a tile.";
  }

  identity all1-data-sender-choice {
    base all1-data-base-type;
    description
      "Fragmentation process chooses to send tiles or not in all1.";
  }

  typedef all1-data-type {
    type identityref {
      base all1-data-base-type;
    }
    description
      "Type used in rules.";
  }

  // -- RCS algorithm types

  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RCS.
       The algorithm also defines the size of the RCS field.";
  }

  identity rcs-RFC8724 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. RCS is 4 byte-long";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "type used in rules.";
  }

  // --------  RULE ENTRY DEFINITION ------------

  grouping tv-struct {
    description
      "Defines the target value element. Always a binary type, strings
       must be converted to binary. field-id allows the conversion
       to the appropriate type.";
    leaf value {
      type binary;
      description
        "Target Value";
    }
    leaf position {
      type uint16;
      description
        "If only one element, position is 0. Otherwise, position is the
         the order in the matching list, starting at 1.";
    }
  }

  grouping compression-rule-entry {
    description
      "These entries defines a compression entry (i.e. a line)
       as defined in RFC 8724.

       +-------+--+--+--+------------+-----------------+---------------+
       |Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act|
       +-------+--+--+--+------------+-----------------+---------------+

       An entry in a compression rule is composed of 7 elements:
       - Field ID: The header field to be compressed. The content is a
         YANG identifer.
       - Field Length : either a positive integer of a function defined
         as a YANG id.
       - Field Position: a positive (and possibly equal to 0) integer.
       - Direction Indicator: a YANG identifier giving the direction.
       - Target value: a value against which the header Field is
         compared.
       - Matching Operator: a YANG id giving the operation, parameters
         may be associated to that operator.
       - Comp./Decomp. Action: A YANG id giving the compression or
         decompression action, parameters may be associated to that
         action.
      ";
    leaf field-id {
      type schc:fid-type;
      mandatory true;
      description
        "Field ID, identify a field in the header with a YANG
         referenceid.";
    }
    leaf field-length {
      type schc:fl-type;
      mandatory true;
      description
        "Field Length, expressed in number of bits or through a function defined as a
         YANG referenceid.";
    }
    leaf field-position {
      type uint8;
      mandatory true;
      description
        "Field position in the header is an integer. Position 1 matches 
         the first occurence of a field in the header, while incremented 
         position values match subsequent occurences.
         Position 0 means that this entry matches a field irrespective 
         of its position of occurence in the header.
         Be aware that the decompressed header may have position-0 
         fields ordered differently than they appeared in the original 
         packet.";
    }
    leaf direction-indicator {
      type schc:di-type;
      mandatory true;
      description
        "Direction Indicator, a YANG referenceid to say if the packet
         is bidirectional, up or down";
    }
    list target-value {
      key "position";
      uses tv-struct;
      description
        "A list of value to compare with the header field value.
         If target value is a singleton, position must be 0.
         For use as a matching list for the mo-match-mapping matching 
         operator, positions should take consecutive values starting 
         from 1.";
    }
    leaf matching-operator {
      type schc:mo-type;
      must "../target-value or derived-from-or-self(., 'mo-ignore')" {
        error-message 
            "mo-equal, mo-msb and mo-match-mapping need target-value";
        description
          "target-value is not required for mo-ignore";
      }
      must "not (derived-from-or-self(., 'mo-msb')) or
            ../matching-operator-value" {
        error-message "mo-msb requires length value";
      }
      mandatory true;
      description
        "MO: Matching Operator";
    }
    list matching-operator-value {
      key "position";
      uses tv-struct;
      description
        "Matching Operator Arguments, based on TV structure to allow
         several arguments.
         In RFC 8724, only the MSB matching operator needs arguments (a single argument, which is the
         number of most significant bits to be matched)";
    }
    leaf comp-decomp-action {
      type schc:cda-type;
      mandatory true;
      description
        "CDA: Compression Decompression Action.";
    }
    list comp-decomp-action-value {
      key "position";
      uses tv-struct;
      description
        "CDA arguments, based on a TV structure, in order to allow for 
         several arguments. The CDAs specified in RFC 8724 require no 
         argument.";
    }
  }

  grouping compression-content {
    list entry {
      key "field-id field-position direction-indicator";
      uses compression-rule-entry;
      description
        "A compression rule is a list of rule entries, each describing
         a header field. An entry is identifed through a field-id,
         its position in the packet and its direction.";
    }
    description
      "Define a compression rule composed of a list of entries.";
  }

  grouping fragmentation-content {
    description
      "This grouping defines the fragmentation parameters for
       all the modes (No-Ack, Ack-Always and Ack-on-Error) specified in
       RFC 8724.";
    leaf fragmentation-mode {
      type schc:fragmentation-mode-type;
      mandatory true;
      description
        "which fragmentation mode is used (noAck, AckAlways,
         AckonError)";
    }
    leaf l2-word-size {
      type uint8;
      default "8";
      description
        "Size, in bits, of the layer 2 word";
    }
    leaf direction {
      type schc:di-type;
      must "derived-from-or-self(., 'di-up') or
            derived-from-or-self(., 'di-down')" {
        error-message 
            "direction for fragmentation rules are up or down.";
      }
      mandatory true;
      description
        "Should be up or down, bidirectionnal is forbiden.";
    }
    // SCHC Frag header format 
    leaf dtag-size {
      type uint8;
      default "0";
      description
        "Size, in bits, of the DTag field (T variable from RFC8724).";
    }
    leaf w-size {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint8;
      description
        "Size, in bits, of the window field (M variable from RFC8724).";
    }
    leaf fcn-size {
      type uint8;
      mandatory true;
      description
        "Size, in bits, of the FCN field (N variable from RFC8724).";
    }
    leaf rcs-algorithm {
      type rcs-algorithm-type;
      default "schc:rcs-RFC8724";
      description
        "Algorithm used for RCS. The algorithm specifies the RCS size";
    }
    // SCHC fragmentation protocol parameters
    leaf maximum-packet-size {
      type uint16;
      default "1280";
      description
        "When decompression is done, packet size must not
         strictly exceed this limit, expressed in bytes.";
    }
    leaf window-size {
      type uint16;
      description
        "By default, if not specified 2^w-size - 1. Should not exceed
         this value. Possible FCN values are between 0 and 
         window-size - 1.";
    }
    leaf max-interleaved-frames {
      type uint8;
      default "1";
      description
        "Maximum of simultaneously fragmented frames. Maximum value is
        2^dtag-size. All DTAG values can be used, but at most
        max-interleaved-frames must be active at any time.";
    }
    leaf inactivity-timer {
      type uint64;
      description
        "Duration is seconds of the inactivity timer, 0 indicates 
        that the timer is disabled.";
    }
    leaf retransmission-timer {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint64 {
        range "1..max";
      }
      description
        "Duration in seconds of the retransmission timer.";
    }
    leaf max-ack-requests {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint8 {
        range "1..max";
      }
      description
        "The maximum number of retries for a specific SCHC ACK.";
    }
    choice mode {
      case no-ack;
      case ack-always;
      case ack-on-error {
        leaf tile-size {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type uint8;
          description
            "Size, in bits, of tiles. If not specified or set to 0,
             tiles fill the fragment.";
        }
        leaf tile-in-All1 {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:all1-data-type;
          description
            "Defines whether the sender and receiver expect a tile in
             All-1 fragments or not, or if it is left to the sender's 
             choice.";
        }
        leaf ack-behavior {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:ack-behavior-type;
          description
            "Sender behavior to acknowledge, after All-0, All-1 or
             when the LPWAN allows it.";
        }
      }
      description
        "RFC 8724 defines 3 fragmentation modes.";
    } 
  }

  // Define rule ID. Rule ID is composed of a RuleID value and a 
  // Rule ID Length

  grouping rule-id-type {
    leaf rule-id-value {
      type uint32;
      description
        "Rule ID value, this value must be unique, considering its
         length.";
    }
    leaf rule-id-length {
      type uint8 {
        range "0..32";
      }
      description
        "Rule ID length, in bits. The value 0 is for implicit rules.";
    }
    description
      "A rule ID is composed of a value and a length, expressed in 
       bits.";
  }

  // SCHC table for a specific device.

  container schc {
    list rule {
      key "rule-id-value rule-id-length";
      uses rule-id-type;
      choice nature {
        case fragmentation {
          if-feature "fragmentation";
          uses fragmentation-content;
        }
        case compression {
          if-feature "compression";
          uses compression-content;
        }
        case no-compression {
          description
            "RFC8724 requires a rule for uncompressed headers.";
        }
        description
          "A rule is for compression, for no-compression or for
           fragmentation.";
      }
      description
        "Set of rules compression, no compression or fragmentation
         rules identified by their rule-id.";
    }
    description
      "a SCHC set of rules is composed of a list of rules which are
       used for compression, no-compression or fragmentation.";
  }
}
<code ends>
]]></artwork></figure>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC8724" target='https://www.rfc-editor.org/info/rfc8724'>
<front>
<title>SCHC: Generic Framework for Static Context Header Compression and Fragmentation</title>
<author initials='A.' surname='Minaburo' fullname='A. Minaburo'><organization /></author>
<author initials='L.' surname='Toutain' fullname='L. Toutain'><organization /></author>
<author initials='C.' surname='Gomez' fullname='C. Gomez'><organization /></author>
<author initials='D.' surname='Barthel' fullname='D. Barthel'><organization /></author>
<author initials='JC.' surname='Zuniga' fullname='JC. Zuniga'><organization /></author>
<date year='2020' month='April' />
<abstract><t>This document defines the Static Context Header Compression and fragmentation (SCHC) framework, which provides both a header compression mechanism and an optional fragmentation mechanism. SCHC has been designed with Low-Power Wide Area Networks (LPWANs) in mind.</t><t>SCHC compression is based on a common static context stored both in the LPWAN device and in the network infrastructure side. This document defines a generic header compression mechanism and its application to compress IPv6/UDP headers.</t><t>This document also specifies an optional fragmentation and reassembly mechanism. It can be used to support the IPv6 MTU requirement over the LPWAN technologies. Fragmentation is needed for IPv6 datagrams that, after SCHC compression or when such compression was not possible, still exceed the Layer 2 maximum payload size.</t><t>The SCHC header compression and fragmentation mechanisms are independent of the specific LPWAN technology over which they are used. This document defines generic functionalities and offers flexibility with regard to parameter settings and mechanism choices. This document standardizes the exchange over the LPWAN between two SCHC entities. Settings and choices specific to a technology or a product are expected to be grouped into profiles, which are specified in other documents. Data models for the context and profiles are out of scope.</t></abstract>
</front>
<seriesInfo name='RFC' value='8724'/>
<seriesInfo name='DOI' value='10.17487/RFC8724'/>
</reference>



<reference  anchor="RFC8824" target='https://www.rfc-editor.org/info/rfc8824'>
<front>
<title>Static Context Header Compression (SCHC) for the Constrained Application Protocol (CoAP)</title>
<author initials='A.' surname='Minaburo' fullname='A. Minaburo'><organization /></author>
<author initials='L.' surname='Toutain' fullname='L. Toutain'><organization /></author>
<author initials='R.' surname='Andreasen' fullname='R. Andreasen'><organization /></author>
<date year='2021' month='June' />
<abstract><t>This document defines how to compress Constrained Application Protocol (CoAP) headers using the Static Context Header Compression and fragmentation (SCHC) framework. SCHC defines a header compression mechanism adapted for Constrained Devices. SCHC uses a static description of the header to reduce the header's redundancy and size. While RFC 8724 describes the SCHC compression and fragmentation framework, and its application for IPv6/UDP headers, this document applies SCHC to CoAP headers. The CoAP header structure differs from IPv6 and UDP, since CoAP uses a flexible header with a variable number of options, themselves of variable length. The CoAP message format is asymmetric: the request messages have a header format different from the format in the response messages. This specification gives guidance on applying SCHC to flexible headers and how to leverage the asymmetry for more efficient compression Rules.</t></abstract>
</front>
<seriesInfo name='RFC' value='8824'/>
<seriesInfo name='DOI' value='10.17487/RFC8824'/>
</reference>




    </references>




  </back>

<!-- ##markdown-source:
H4sIAEIbdWIAA+19a3fbyJHod/6KPvIHixOCethjO5rszNCSPdFZSfZacubm
3OzugUhQwpoEGACUrLW9v/3Wq19AgwIlZZK9kTInlkigq7q6ul5dVR1FUa+s
4mzyn/Esz5I9VRXLpJcuCvqtrHa3t3+/vdub5OMsnsPXkyKeVlGaVNNotriO
s6gcX46jmzi7iCZxFUfzfJLMou1XvXFc7amymvQW6V5PqfJmXiTTck89vUnK
p/hBXlS1T6oiHVf273E+X8TuB1U+1n/0qrSaAToHAFMdI0w1zQt1WsVVOlb7
eVYlnyv1xySeJAX8OV8USVmmeaY2T/f/uN/vxefnRXK1p47e/zo6UfiZ+vPo
5BcF6C9nSe/6Yk/R9NSvefEpzS7UL0W+XPTiZXWZF3u9SKUZYD4aquM0i8+X
RQ7oMYFGWex+mBcw1Gj8aZbmPMUkgRnt7Dx7OVLxVZItEzVJSrV/Gc8XpXo9
i7NxiXNPq5s99ez773e21T6gnmfRaXKVXmQJ/DlJPhN5lllVwFNvC3gpgU+S
eZzO9lScxT/HAHEIIAXRo6E6y5dVnGYGz6N4WSRZ5XxOqB5mJZB2Wanjw5M3
p+rszdGb/XfHP6jD4zM1qgC9Kv3rMrFTgd8itasKmoeaxTgTGA8QLeI0oW/3
T9XOyxfbL91pvXyx9rQE4aEg/HM6r6LYYDScFr0sL+aw/lcJYqXUh7f7r17u
Prd/vMI/6K9eFEUqPoc5AIP1emeXaamAxZdzpAisx7hIz2FVYmYKZGw1N0xW
XSbMMZu3sltf9cYO88E2U9MivkAw8CZ8UgC3lcMe4TNPJxPgvd4TWISqAEYc
0yNfnrh/fuv1CHaK2K0ee56ML+MsLeeE9TjPcLpplkxUllTXwNcw52RKH6QA
5ovQ69u3Ye+wQgDncQnf4diw2jTTscy0vIwL+Or8RsFACiCmVYr0qog457CE
k7i4UfmU/g6AHvYceGpR5FfphAieAbgpruNMFQlOzkxHBiOKqSVilqTwQSGz
M5TYmiQuXTbh2/2tg34P/vXos1UkcVkm8/PZDT30dutDH7YJgLjIATqBc9kC
fq9ywS3974SQYVZZNPGDJ/PpNAFR0fuOPi5h0zG5U346AzJVl0C7STlQCUgC
lfIAKZC4yJrzR1xSHBM3gYJhQTotF8CbiQadEzlgRARfJhV8DWIW4JaLZJxO
Yf2u4tkSsNtMhhdDdfj+6gWQHnD6PFAHCez7jCHFkwlSbzAcDvsAB/5pbhHk
G7NBWGoiVIMzz64D8w/U9WU6vlQz2DxEN3hnjl/6s8dFFuzx13g2c6idzBIc
tQSywO6h/UFfPO6Vx73yuFfa9wrtDhcu4H2RgOpOxwN6BTSvuzcmOQyQ5RUA
BNr2AIHY0gsYEwy0fDYEE+hGXbIunKbJbEIbUJQtsGJ1CbbUxSWuyeHBAIZY
5CUtNP4+SYtkLH8AEWKeCLwD+2UMb5wnyPhAWcAxnvX4W5wkmY8ZLJW7WXAI
/vsV/c3I3jBaTB1c2YH6ePB+AIp79J5eeXe6/+7DG0Oh2kokf10CkrigyDfA
T7IKi7gAxgWGLBld2PbAoOPZcsJSI6YVoG1TJu7T+GCbdOnhJtOMAwYILGZ+
XTLTzoBSIjTsEoqB4uO8LNGGpc+TuAI7inCGqQKA/6EfMIucr8xoX8hccrYu
/a3URoN1xvEiPk9nItxgmCr+hBs1Qy4Zk1W38QO8/a3ngPKxXA3Mf7Y7OJnf
lz315G16EWnQ5ED8y9O3GhNfMDZ34PApYN578sTzJj7QlvryBN/8z+pmkZTw
UE1aA3d3k9YueOKU3sinsCgU2tNApqt0nODWwmdy0j5Ty5NsWKo3MYgL/J3e
ht1cAommbCfDkFXe09auu5Vl12aEluxkoOu5xTGZ4O4Q0gKZfxfd9+d3MMpX
FfxBKquT8He1n6+9h0AFRgmiQoiknRABVL72HgKVrz1AZfPt4UG/gclOR0wA
FRhFI/M75z8HUBN0ExUY5etb4o2dr2+Pvr59//Xg8OtZXFwAz/0JJfHX47ga
X6KsebcAB7DKi6+4XbYOyMwAP7j6+vC47P5D4AKan0g9HMp/8Id8hoxtflXh
Tx4Mly1Dl5N70OUhUNnqteznNX7MCL2/NCCu+7OlrMjS2mBcgUAVVeAK9gPP
LhYHHzXAkyeHE7ThQUQWbCuRJO31nI/J4BbpaUNLTqgqJtWXz9mGpRerG7Cp
yHUg8wzFbZKVpKhI8F7M8nPQ/TdqmWG4g/QTfAxmeQofxktSVAh2Cm5DMkH5
TPb5Aoyicbpgi5ONDNRFybVCdeW6LRcY4ULV4SKEhjxaDTmaHcAzZKObYcg8
1I+jMY1cdQ2eBr30KbkB92VCMCKENuSXi/QqMUapvJ1qP0XI5sb1mFDiYykz
0Bh8kgqxwE8ApZYHkQjJ53iOJNj88gUX3Zngt299cNDQooL/Q4u0NnkGMiGd
+2H/FNC+yAuY4FzQnSzR6FRNAwXVY08sq60tFUX+64RdiZrTkK8Yl5H5PjJE
a7eKhONuxCmwY6eCHDsIiyVQCYAP5T1iC/twPCtz46OQ94UOm5gkiDMZA0Nr
u3kIi6UjSBLdW+bxQ9s09j/sq2e7xgCOydOOl7OKoAM/CIwh/12q5+BLV0k0
y7MLi5VmAh+6Q0D61V3dL4LA7Uh/a0OdxtRsyxaXa3QaKeOCFWHzPrgv/T3p
vKatT5bsVtaA3OENA4bmGKSVuCNacg0cC640rm+RXqToNC/i8aeE/ZRpWpQV
+iSab/TmmqUl2ZPsMaHzAivgf4hrMkedgqt3gTZm5Xv3MLkJfRIv0B4uUhya
jFJy8RYLkGAO0iC5XBPaep0kHWmjkkxiUhyIh0iGMMZOluhkwvYDwsi+B785
FYqNbXwgzxLrior3COs4ST5LtIapSj4txcydUMDwCuhJ9EWf0fyFQQAROeNl
QeH1uugXh7DUtLNhDnRHl1ndAxy4/iuM/dF4ctYpHIAaAAHABDn+eHqGmkHP
2HW4RYvwqy53gWYc8aeGqjrSbUgQz67jm1Lkd2n11zSd2A1D3m3mClLVw5EI
QTMUkF98DcDO+qZAZPwVlvEK30V/Ccb+yx/+8gdvHX780YXXG4EmAf+nTM9n
ievYkyYwLxJZRPcY1C1CgizHtASPnoMIDLUByGyIJmzjkFgYnamIHwG/oFfG
H1yCcOuxPp+kGMWbsMNaLs8jxnzgvG4oWCYFUjxGLxJnjroF8ZwuYer0LEgY
N2CWerwUZ1nyeQTco1xdyKow+RzpAWCr9S5oaRkFFAiGGxw2HaqRCFMbE9WB
FEMOjt7QqvdMDMgKtmqoTvJKwjqk79Pp9BSmqc7TKsBjZ0U8Rcd0fxaDjDOr
ZTSspZXHje26862emDEVTKiMFyKg73DodHH1ojE+jeEBblV2LXCJdlpMa498
IspPvdrd3l6Fj4ifOjY+rq0oEWw9BK8V0R2lzi2AK16WMa3KPaD7y3t3HKJJ
GA33mfthMtBGlGFY/5lnOy9eCbbk/tUMAWe7aUPgwIlz+7Y3MobegCXpf9y/
xDOAXD5OyTIF8UGSzlAGNz9MnJ7bHE+HstM1XPoCzF67d4z9rN/qYjAF2L3V
TDJML7FlNs2DlpKHpSbRGf7uiLcmYZ48UQxklmQX4H70et6fQBI5/4gpRJhc
oPMGElgUjzZ5tZyGfUdyiOPKJiq2zMZs2rvmiWM69zau4mLDPGfscorYwldp
jCpKcBJNtXl9mZeJi+hnCbARFmDolv1GGNs11zeqTzMHJtJmHmfxhZ4bGii9
sxyDoy5kMVOaKpc03ayp6AwE0mohyTvrIng/ioEJ7jQevkzdZdIgypC3AcMb
Erp7fNZByHxIynSytFTO1GsgLJkhaKPFRpHp3Y1UpNMALYGB7ryZvh8+67eg
VyGRI4Hxd0Tx+fD7fnh3GfEjUDqJIN5JR/QGbrYzY6DUlk2fzzieXM2hhk/Q
2c7YLglgpE884OG8SNgYMkpyWtvSMcZC8Gwwqa4TMTr9va33cd2tlTG0teai
6EjMGm4RQQPJOQyIzllDcjJuWmayMM2qF89/UFvfyYnXVaIRHuhtj1hbFiDk
v9vyxnAFMg5lqG+ea2U7LaJvEdQCX0vMBrIuroaygK0Gb0WnwU2zhHP057of
XZiVyX+7SrCMarWCPmDUakH/zVzUmB/LbWsLm8etihjIkTYHKowHusN2Lzh5
RSIBOTBwyQwukkVSpRIa4he20d1ElzQprSXs4oZObzpf5EUVowzIJvpD9HSB
gIWNQGmHW44FcQAJCQxVt2mze6Atezwwhy9eDYmMB/pUVh0yxnnBgiDwhdqc
pH03BlUlYFWnVruCw5/ERUkMjgff5shXbb6GN2GEPMNA52KWZp/U5scFfXYA
coM/OLjum8MnVwRP0jsoIAs81RMIqh8cPDUPgw/tCHgXcKuAb1BKGMoblew3
/QqL9ZdarL8c7gQ1D0BfLh4MHaG6PY5eG5kJCviHQmeiV30dhFrkyMFhN4UX
YomndK5bGw4sMSsk6qMEdkbphRdqNtckbdpcod0l5pe7V+Fdou5G094/ONT2
fkBryWud7P3mKrZqkQOHfpJgK5lMA8yyucYAUTJPq8pOlA+zjXNFLETPwUgJ
kLj+IOwafxyQR/Ju+I1V3obQaJVqaWMJEI3u0Zr68qSiP/+TBLwYS94TJHp1
/PQ8zTD1q0z+ukwykNWkYLIb0cCgS2aYGis+Hpot08oxTs7+hBktdHghyshh
avBbgMlAH0i+D3/mojJUEjpGtcH6jKOneOh0nYLMPpfgdqxxHvDhjtEj9MWn
RMJml+nFZYJRZP21UYv104i6PUZRVzZ0MZAuprCOQFJsOZqD2sBts38wYnAW
C5sSI+k9ZXKVFCCjOQmKzqzewmBv/rqED1GNHp2+HvjrYtIj6oQjYK496mpR
TLYAuNtDDcLDtQ4izjQYg6HNxnrvUa1U82VJEe+i4uDCDiGuo7s4TnqxzJel
e9DEZ3hkDlxFvJjtivDAcSKZa2XBzMRHHPGNNZ/iLhlIpLzU+43wZIxgShKR
4BeGNjip1+hSP1haTDR7u6cDNkKgMNttKqh55jQD0aZtc4YwR5f+G67YojHN
SnrDotmz82LlsIdTNlHwCEGoNfD4Ynuo3qH1fJ2Wif8Nhgn0OHIag9k1cuw5
10fzvNto+fFPsA13hs4EAjru7E9h7eYurbaKGxkAvV7jI7V5/K7P4sqY8XhU
gyF743GJRceLI5mpNjTOp0mSP6SdLRefcCTluTp+h6IFaaAz4mSSx+/IQ2yY
fvP8DqZfY8oli7dTfaYUCgIDpITEiGPhuNBbLRwWPjwzJ9mvbsU864eBgiIA
CbQ21EN+7c5g5+X52jCPT1/fA6An7NcF7b/dHYnGboJXO9mKzW2jQyRhK2+e
N608gBUy6mDCDaPu+F17+Fae72TNNYnZas21CAbR5nx2TJFM0Vu4hYxgd/Z6
GSS1TGiV7dVAgA2vgBRTAI5yrkuOld/Q0fZVmlz7Rsz5MgWnnfZ67GjKzTIB
7XQZLyoQV1++eJYc2c+15E8/R2jEocte77ZH1CaYMH17Plv64VUg7LJs5qOi
EZp4h+S9kOx8wfaRdlbgD2EYMRQpxR0+dYgsR454lugfIfqHhwGpO57EXcTu
rTQLOZI4dpZXERmFjhjwYLbKAfMmTnW1DHge9GMRDK38HRFw3r0PCjNf/HaD
DcbtvYCK+LzjzL2374OGdha+qHVRkDej7zrBN8d1dGAXOLHDQTopAy0d2hh9
tWqAuTV1A8IW5dAQ+EiMzhI/QLlWkX+rBBPhb2WTcdzN09o2DDveWi6tkvsd
iPmkg0R2lcI+J+WA5Z7lRFpby6EfQu1QaXN8uiRn2AjNeXyjXyHbH7DUjpwZ
YLhK8xh7PJKyFs5RxEB1o9pHfXmCGYWmrMB/AjgmX0goUrB1ylTR2J4kCyyY
wnwLTlTBioOx8bk3vHTFDV2SgalAveOc4xPNQpJa1Yo10UeoJ9QBvuXWr2AJ
TYpQA9VMCkNCUs1gDlmd+p8K6UgOr/aaMeM0m6CqvwmFZIaeAWUqyWL+HRdM
5+q5bAJIFWkiC+/HeAn4ybszHQkZMsv5K4EU7wWV8bN6kSE8ydGIkxxrwvf4
5B4/pihJZoED9AEyaTz+lOXXs2RyoevquGAMPkfafofDiJ++J1lgHshrIE5+
bZz05DM4cOMUd4AdmRw6jG+oi5xiB+yOw3pWQw0ChnpTFHmxp9RID4q+oTsI
ucQUlaOoEsfh0GypYE5iesxTPjfSWGLts8Qr4RPqHtAW1EJGMUZTYZODSkrj
SxImr9gprjLxKEIgulgtzaULHvs2x87yCMjiHQCvQKBViZ3k0Wj/X3E/6fzX
buABdiSpevdFAeBHEgO6Exrwe4JM8yCIwNPEgWFUbA54Y/juKS23orZGIrCj
9my4WbN42Jxocpzm96RYbTo0MQ/kbzRH14ZFU6ZxJwP4asRaRb8swRwnMmWy
/UllHR7oJAASU6J6fNBGxoEAO9MVEhIkQgUrVWa6os090kD68ZMRi9o+SdOY
EmwvQDOps/hCbR7AH8bButGnoxP9zHniSiCumWiiybEuSioeG7Mht5FbPZzO
iTaZQ0Yt03ktCD6bsaDtUFkSLvKjCfzKInXz175hIxC7evfhSCPeULwHWNRh
AN8+NSBgfBhfqh3zrX4Jv68bBbog1eLP58tcQoJYoBgCaUbyTzGumlWM6QVP
nizn57B+m2/3T/paIZuSU3l+q0pn7mE6o8DKpI6E1fMc4OcZt1TJ+jMPE1kq
Fb9GETOcmYQ07cACoa82MovPncGHX6PjCH8/wd+xno/KtqLfmX8j73f6gb90
DdT/BH56X6l6D7bKV3WA/Ar//oqFTkA7/N1g9j6+meXxBD5axBMqrdkEU4aX
pv9AuNQPxGo7zAiqgBCweZHwoLbGj2LMGtYPcqEpS66Z9w2dRpkdqc0aDslk
VOix+cG2HNi/TIAHT+WYrC9sQoUTaFvIiRFsuV5VxFlJRgZadrRXcPOY/PAZ
/JKU2mImnDQDhiw4cxhk62VMEvMbDPBnSaV6WMHCPqeU/pw558FuKY1XolPL
hCLSw0M21OIZMY/VQf+/VQfVtx3iL9utCrjD8PVqIwCQbGp9u5Ki7PGQsqFK
OAQ4ms2iHbtFURf/F/oN2vvSS46RScq1o0oWDKGm0tbAdQ89UW0mCaJ8hxqF
YXMGc24r9U8IoHeeXMZXac7dQMzjYFXv2S1rcDSntuAq4WMDxlgw9Ue4Ad8r
MIQpyDF7ndSUPq5qDAOCCqXj+DJPx0loQKRbzqaMpGqJ7+oMz9QyLhKSU0QZ
5UkRBlS9Ql0CAj6NxaeDKKDoiiUzu2jYQAKrr8hIcH3MOWj0+CLo7bjL4W7q
ADbttjw8660bTjYYAvaW7l7gakEEWoGVAL1Fvito36TWBXowJjWE0AtA00eG
oWQ/MnZ2Ao6NBdxZarXi2iqxzlZKLF9cmdHvJbTMKE3RpQWB4/RrZ6XGsfpJ
BlQLmdStlovc6v98QdZo4gSTMOcM0JGMFn6l1mODzolcmTb+5HgiFXogsItl
7/aH9LG1ZyV4Epde2E5jyc2K1D4m0XoVCsBFS3bDQQJfxbN0IrYGmvljXG70
ION0tsQ8FUzZqObxQoiKvoFvk5ssKZZGPWNygLErFjJGHzoYx2pHtRrGQavT
tX/ZACb7d/9fdqyha+xcVfvZLJdj3Eat9m8Y5Iqn2TrmD4OGciu+218dB+g1
0ZtmMHTQ35QlWYXv7Rg0etgI2+mtN1rN8rQTrZ1eNwEGvN7ayruWAs7aPnL8
enHWdDuminLWqnSe1H2vWXwD4HcHutkZyjuy/GUToLtIZsd2X2HPMYqUA0EX
eVZKiyxkU820vp41L+9IKzLTpMALE9bjBxiY0gIDq/8d2yMOi5XQ0ac7ShcV
fNBJ9QaVkgspnoJtBf7+bNtTSkFkOuql5POCwrPo5dPwhBxSkcAYwdQZtZ3f
BrWd7qid30TEibv3wOyIWdnfJf5KhrS2C6S74l6B2h11d1N2GAhaiIjGsD1N
zAa4RYU7Y3VwQJrBxvfGaehJjSMX+s9jTO9I7CEdnSBIszXJNoEVuATVOqtF
70gZF4kbDYhQQJnaFeoJgME8mIyuup4szbzpNEQzG8tCQgPTW0mglGIuvBru
wv/A+/TPvfpU9m1q3AeSIaePYShTtkCjj3PJYBY7pPnTLIZxr4Ap1kc3Ps8l
WbAWySx1d8duiOMC6PoU57yoUaqCR2yEIzVbLLEwb4LGzjz+TPwl9LIVjRxA
yDhSiGqgqpL5Ah6oT6AbogwqnS/nETeyiCg2UfgkowrKgaiPAqt7pOtFyX0p
bVtB0+KSe5uZU1wn9LDMSk7IlpIZGJhtQSdLhqNgLCwWDmef+Se0xu3EpqCO
2yx2w7TegZM4erYbYUcdmuieF7BqHmBwUx/RwIoa8XAkSKbrpZrzqjfKmV6R
GzzOC9bJE2pe0Cx8QmSRziZfXaBipwBp0DgFM5FyyjUbmYKnIuGgM79MahCB
wgdIChpbrELaIYEl3/MCVPKAU9O7zGzXOhNzHKrXN3oazB5m1pLUvbP7apvZ
Z9iNG0LMwI3arFeEJyp0UiIV29QBA0RlrPs68Ze2l9SmnKv0+cw6pdNTKpuK
eWzTAIXbZerP9Lra/pEmNxxHNCXWXmzPpP/rAKFtURrrAx5cVDnRAOpu0ymw
iHz/hQxL10h6yDEDUhHPaSmhwfQoXNH9knjeye/Yq7Xx1YR0quHrx1FDPmwf
u4M45fIm/U4zNL2mZ8+6XQuMNOPE4TJn5Z/lTWSuY915Q5xEu0O1PHvRJz72
VODe6iyLVfOr6VI3LYRaWEp7y3q2R3mZL2cTNuircAmBxyZsn1DWvP48kJGP
qfPPdlemzns8O+C18JUjb4SBqXEkg74qrfsprN3M59eYeSXYDmqvzEdKgWVw
AWTZHg6f7W745bG3YK6Lc6Q+11eYKfee8Ti/9FENBanM6Wmjnae7tzVkr0WA
RpBwsRbo1hZ7dRUVzNeTbLgmCp+TqBja1uPLsV5nrE/iHCQZ/hOIvw1/5X1q
GxouUdG7vKO/kGBaxgxpV2LcVF32SzDpp1ELE//gPEVQ/WNwapeaVfapbz7I
ZpvbJkDnmSY458tbgWV51AYvxGzMcHJ64jQcpjXBxfR0mjSOGW6EwIeH37Bq
qJZpPKAPavjmFERw0fOb3XXbQadOa1ofZFZPKPTHt4D5Xae3FbsZaaFZ7ta9
FvO+cNvkNnedLtCTPDU+QStM5Q4piAbdAjRrEulbTxwyZTwyujyFdl8wLUQQ
dnpQnlGLY06yNHvaVvEVnqAi2SFSpHAL+kzdnmYELvjvxfWlqPsTrM1VIx8e
P+/VehbrsV3ySsKd7nMk8l0HyI0DwDEbfDHCN27IORlxvt6NskcIppOk09e4
cfiEfT5BCRv1yTaIMebO8yvTVauBvu3H5I3lpxoEhAH4gG73d+Ep90KQiJiW
JjSotZ5LTe/0iVNAFrsV67x64eFUT9d9uibcDN1pObxlxeDOiMYDuKQvi2Q6
o+CLrW0me9QnXJr1vnxxml/j7STkpOOBPRsvi6TAdeEzc2NncxqkV3ao9b9G
l2o/3tk+/pxvwHVQaNaRESa1Rm5DOd25notDolyKQ6IglJ7ejI7h00LR9uM1
ykG0XK0XvJ5keqM20yGwGa9DXwuTcH76sKe/v3cjXj3QvVs3PxxGeiSznelc
7jbB8dKUy+7pASKlm0vtuSc2JkGk1rKcNwztTnIcrGJxWiJO8aCpNj53FVF7
K7qicHOQWscTCyA2N0CAkqoPr4t/99yBN53MlRsbKdrum44ddphAp4A9C8/s
XudEyYoRO8qZsx/3rPEpPT1ZDVaWym8lW8tOUkrC3Ak22MrBy8WH9ykpUids
YkaWzMB647O4UnqDOzCRcYfCuUOpA9hToxDYcB2DW8lAcndcx6wdIWfJPfq6
1cymLtrzUdAG2JvWzGZ7cog3s630rfRWMO1Ob9yOZs7CSekbksMxrRKSs+Ok
bkQ5GIc8K8Z6dj+kj0KujQ0V6pZCtpNpo7VQ3NzOXWbUXgP+6s6TsfXeHtW5
q47ptmMK/neke26pLP6UN0ktOPPxeFnowo3gctKtMLPE6zpkR1rU+wogLOw4
yl0nHADl0L5lkNtW8yTO3KAvC2yNssGIYoQoUUBy2XGwSgptO6eDkp2QNwsH
+GvYVtd0p4duimR3oy0oxw14GV/ZjNJo2wEsRalUXY9hP21FzNC6ijMuLuFO
RLbruOmM7JCPgj8B9jHyMzL1J4F9IS1W7sBKAYk+0JLTYWyKUwElJIeZ0bXo
Y9dVt6SFOrBgLWl+nflzQuvUq03yXH9NY9/NN7WzK2cyMu6UFD3Z0mFjj3t6
m3sD2Ekc+l0MuCkBZ1NVJJU1d2njbtt5GU+7saCW9K/XX8E2GKmXnZvHHEYW
LWOhlTqIhjfPULQqGS+J/WWnmRx5hyupk0eAmxrmaoCXpMDb8BJOdmM43PJW
jeqEsXvuJEJgERi+ZTKbbg4H6qlpI/C0v+GEIChNNpK0LwdZXDvd7mCgmwGg
TdKgF0XqXTScSERL/MFDOtW3SlGgg11rg2wjtsATxxc2V00VsH3a7ys/bKGA
Xi2uQTtJNmTuJhAjatCf6rf19/jxu72mfdTclm2+zIPt0GYl/ciph9QJz2d/
ck4I8JolDPtb4gYqIc13h9axGXCdGDU+AOfNbDXD+MhMTkEmmMEmCVs+09eg
1dupWHthjgWMeDpDLd8xl4PaQJI/IK3q+81NSLEGVjVRPG5aBbQLddXtHUT6
/sFo79Z61WFz/Zt4PTQDUJ10YMljb9Ep5s39avTy01ZdxQPkcsHwbsd3twxb
l9NmuTOMft1vedPmo2uHzoldux67kMeY3DW7L6DHfQqGwwG3aLzgMZUXVrR1
p1S2aYNhDhk8tegEv+z5ldfdX09xYIfwjC+xcvS1D1KeZB3B20KnB/qaisbs
wtFTmaGXh2LDnjay1xb3bARQTFfPRjwS446BEurbI49cGi09/E3Gl6IoFges
5hTGMlcOmnXr0RWSHORyE8682KNTwf1NBxjrjdrCeHsXBHCBK14TAGZTxcEz
xxctlxifLptVbJHN7ndzB0x2uxNL5DLtJi5yBKkvf7D9/luLtmvxPImYcJtK
6qXHLSI3Gy01xQyQ42TK8KgXFOgl8/G0eY4g3GHgKr6geYKikH+n48zO3Cvn
4OPY95oFHIBkHmKGC+igemLOIJhdRI1KTV7VZiBXYUDpMXRtKagcNl0AXjlo
pM1wClEVuivS0J0v4GTl2KzvlAp6fIPkZiK3UFolDvxFyRg2mNIsbedMJtwO
DhaSQ2IumdByn6r0BqgtcauAmndKiKmI0SnkddBztkzs3KZZybknRXrt1Vg2
E4nNAC4NZC4lzsE0cVNCZVRG8HRwVVQXL0PVL7tpEq1n9c4RmT6UYNw2uYpy
sKqms+8pSD2OCQd70aPGFg9FZMKV0HcwW5jKoepkqSTbzHI9OylFtQoIPssz
nmDT4PJkUnsARidnbLzaWInoKW0wOZcfmGbfTgrUCje+g/NOfkery0EC7mnD
4Vj1PMrB7r6YRbWRHeZIauvfN09l11j0U5MgYgccuLEEEdiAyjlqP9940NkH
KE5q0tkhvRbTXZZ++y5LT9n6HFPYPLM3MLiFq/2AM37tY0Xix1v3TfAiQ3rW
W6/Qz9NbOiUA+3hjrOClB8eBVTxgYCgdWo7OtJcUf6H+cXfqG1X9IBHZMHJY
OiCYnXTHzLMbfPSahaUNDiaR4lTFrmbokYFjkg2wSrdWnqtVRmmKM5Fywa1Y
01pNe8cNRjXTahuL4bZIlRlixuTqWf2KW8k/WpGr2AZeXi6JWrAFHc8SjO4x
Rm+Tz2OKNvE9dPO0GgSuTAltauLHDpMJoO2miuIFm3gXnVHWu/8ho0aYxC1y
Ex9hTO0UbK4bBf+5IB05UeKFKL11Z9Vtsg/suy72UUsEMWRXdhGtO6vX7FgS
amHrlPDLrIqzJF+WM9v2JaGrsufYkUI/rON6Zpjd/zDiHhsLz0A2j37RMxdz
Ejmd2zCBnsAQjnm7ZXLaxYj52MGpRAoQqJFb3yDNi+erI/I64Z5yhCkT3zaw
1mMrcQ/cux3MEOY8o5k4H5A2ofKFR51kF6uZzbkzHAKndEtGs6uZ1VfTpzwv
VsuO8wodHhdnRabtOmtz5uTx26AuLguqulrwQRer+isk2aaec6QzMQH5H9yP
7GQaH9daWOEPrT2Wzfq6BH86L/xqmt++6F4yalO0txGWiBuwiKgCH/18X7NR
e0NucF/DmIvWp6l4uX4lnr/ALsHSzC0Q/LvTjCwyv7C+EwUPbA0ghbaodoI6
BnB4Sbd14PpF08/BH6XWbkO3ABjgvymemqN6wBsfdD8+hvC0rG1YZvQVlPdq
/f6hKF8vjuzGvkxoW73oNknE0ncqFKWi4oHQuCYUbY9CvpxE+pCkQfZdXRKg
TzFWdnw0gglXTjd/6XEkm47zz4ok6ZlMRHgHnPk9lSbVlNKCe5RxV1wr+UPp
v9Hp/07931Vp+f9ukLWv2GebP1zB0fKSHHsGX3pVe2eT8/z7P7mkh6/2Nj0K
9dUX7+9v3vNf9WiBiJf8rIp1BYdyY04/rZiG+46NvNR/3DhR+FVt9f5Uf7Ud
3HX4hZXvGK95jXc8p9UD13RngwMEHMWfLNCdF+HZWVemNsUVL4UdgJ9WTq9u
8P/kAXrxPEyTgNX9020v1S1BH1IYu01k036d3ZVsErZS+i3fWoNl1RNaAAee
URoLY8c4SxHCufGOqHL9WkCVrhjBlfz+CHWV0JAeTugAZIfzV4vkoHNDEJJr
HP/+e5CmxbXN2gz8eLmbqwcIi1E3jXL1+wZ376dl1WoCzElW8wCHRZh5383W
AWJqDAKUMoSnZ2Vx+aaeFQ+7UwpKAWW3Wj1RqkZCyZLq/P4/wqQCiSf+pHTS
SfcBukxLrTMt1W1aWnq5+7R+8k8V8FEOJjJ2SNen/+/03+CRcEMaUy2PzSXV
4ehkhFVQVBRKmp6q6il+OF5yv5uYKsl1pwYwDfElqsM+TcbLgq4W8EZQX57A
N/6o3+rDTrBlFLpGlG6KIaY59isID2nSS7HhOFYnFUk8uQEvOC0bBc71i50J
U9sThmsdpKvVsrqkG4oovDhLPyVyZpt9Ugf5POXq8ddxAZBnA7UfF2UFVu5r
PHTJMrSEk88xWc7vk1l+hbkIYn0ek70JhJC6dbFEe38Yo5l1nlykWfkj+nqJ
NUl/3t3e3Y22d6Od74dYviZGq32AHA0qbNM3y+8Md9AMxi4gJdgLidpYFtke
vrBHMehy7/N8tpeVe/jWnhmIbGfgpGn6mbbCD5gGlBcXcZb+t60N3Dh8c/ZW
0Q3uyFbqKL9W7/Nr+O1XWJhoBGugTvgOwlJtzhbXMWgP/AvPdumQl+BQTdmY
w44bv/6ifk3O9+DXP1xW1aLc29pCjgTzAIydYogYDgGRreuLLRpwKz7Pl9XW
j7wb4O2jtKzg9T/M43RW5XuLCB76Wb8mj72ZpFQSodRRvKQqpzMYJLa+on57
xl8PK/7653ReRXE1i7MKF344LRoDjrJYHcNmPl8WeX20OIt/hmnMhmn+I828
7t5s8Bv7+eKmSC8usetJX8Gi7yii9FmBkVedRQKStMS95JRlxhL51WwrkbUx
JRRQ/JeGLbHbE2x7OrOnFz4kkxRj/edL2kwIArN3MUiXL4sxJ3DIfXR4oljK
nYTax8M/gEQoNyj3j7NSsJdiUshdkYtlUS4xKbDK+brecnn+X+ioV0InOjUG
p5qaUMFrpamSxg3MOS6nVOJNc319egBrzY+XOvkacOM7nE/Fc3g+HGsqWBKC
N3+UXMQzzD+5SkuSaUKGmTRry/nxAxFG8v2mZskKh0kSy46CeITlkH1NVZJn
eicSFvA37X69cUtOuODm6ur/wE8N0PX19bCYjqOEGIxAIYgt+Ayf7v9A3S/o
GAoGSCs85zak4OuFZjRVEKQpFRto1BJK0EOnrFRPsVXj0wH/i1cv4O8f3vzb
x8MPbw7w99M/jo6OzC88hDx2+sd3H48O7G/29f13x8dvTg54BLzPwfuIB3l6
PPrzU+aHp+/enx2+OxkdPeWUOVcXxJz7es51XwVIpsphd1sqihe4779XO8/V
JtJjd2fn933+9dXOy+d9ikEwNHNtwsBwn65MkH6Qahwv0iqeAa+bG9SxcYom
4Xf3/ZFxfsHWT+mYuqlLmxpcu1P0q8e6AFn3BHTzWD9IWToPg8rbySE1QRKc
rKg6bE7O3WNrFdQ8gld6lU1CuQ4eZ1smjg1Xa+TRkuDsiM0QJn3JUnZCObyE
ZSPLseT8pPi8RB1QKfC/nORLWTw8zdG4fW1UQq77IyWXYIFtvsUeMM4P0XxH
dfzRA927dFMPdO9i0r8VRrv/QBhhS0f8ZTiU/xTdMSVLYn9V4U/+ZjQ6uS+N
7o/Q14fbIk1BgPfIUpPdWF3M8nO5rUGkgtvzy+RWUA4xjZN8Hl/iiRUF5F0r
gsr5zcjUgsm0bzXyZq7rP7VtJPDdBGHdXkhLGs6uNPWvpTkp4Bq2oTM/94on
uZ8ClRHislJmYgi6hyWebGQoa763J0AeYo4yXqIsZoPOjiHjQJ/5mUo0/ZY8
sMdK5Li7EtEm6iZKbOdyUN2Lpdk+JYAzSXv3SdCc8Xk6g5lIggUWa2WcVB2P
x/kyq5qgQs1o2oD5z64FbmtLtXI1f22K21WtuTJ93b4n+O0LUecc6z/7k5t4
7l/fk0669DA1yFCzOXqWjmLBQGFODfThxKHTxdWLxvjcsM4F/MOacMnbk9Y3
vuFFunx3e3sVPpqra9j4uLaiRLDNxiD8TPLYLYDBdpiCSBnP4rK8D/QzHkft
00B3xyGahNFwn7kfJub88CCdTk/B26s982znxavO2Cbj8Jr9DdB9Y5IEu2I6
neXXs/g8md1nYd9iWdURjbLeqi74vhivRv9OGOiLZ6TpxXpY4LVxkvF7DxRO
HCWxHvzLfEFpgX8f6JPkSoJVdwNve22SZpfaGTr+l/DHZELXa0rpMgxRpVmt
SRb96AcFHXHsEf+hOqBboKjxkmQa1F62tfx4U2CmlkDT7BM3g8JMcPprxUUR
Lj1S0+bi70CM9ajgzdsMcY/pg5H292aHh6CAnTTdp6Tp0ZEC/+sZ4G7TX04W
fwOr5+PB+3aj52WrekJkYC9Gi7xoSEYP0VZ8ELBQnXoMGEorGtN4B4ADJUnb
PSMjGCJigdcyM7FZl+SraAmcdE/0XaQxt41n8xuhH1bL3ZGX911EV0DjBmzL
+W8Bb5zHvz2n736/uwqdFvPeR7UVo/189L7p994GMzT7dQDyzDtD+9SwMtcC
lqNj2ljkW4CObTrtnaDS+2tBi4KOkvm6AzgeYD2gk6SK0zB9O0KVETqDnTeV
5DqE1RWDsIu6cxCxwL15qDM8bkwdpVPuHnMfyDyUOpxGFLJcG4dlkYKjUDZ0
yR1w+PjhMPpjXlZr45DgTVH3h/8Gh7nDGmR5ljzYQvjjrYtNfk5nwA+AxzsZ
ydFaz3c68kPItrgLP8BQ732TohsVZjmbFODHN+2EOyBypMd7H68j4l2KPAwi
RJG74CA1+pFUDt8fk30p+n/LA66LD6V5XjwEnx7DSKOLNVShsyp/XSamt819
l+XfaKx1scDm04uHWI8RD3TnnfJQpDBb5W70OAeEPu0+AB6veSAL//ff/74r
/J2Hgr+zNnzMH36I6fM460JfFPnnG9wZD4DBexoLdsbaPMBYlOB3zR9CQLx3
h1sXF6TjQ7DDKY2zLvQsj8wVfvfH4SS3FwI6nPHiZRe7ohznRRJNZ/FF2INY
DxUeTvFwdL8LhZJeYU87c7vL8Hm/O2aL9OofEq9P93NG/pZ4jatGLPU3QW3V
cat/7Oo1DF/v3NYM5NFi1uVw9qMkFdAVRVLlYNx76ZUcvGUZhjcNMFzCzjqQ
9ENSppNlouFgzhteA0b18ZgrZxqGyQsU16F10Ke0QHG+7eH74bN+C3rkZobi
Z78xis+H37sodlhIZohAJ18lyfxdxnCpgS3T1uYFW71mij+CnNDox+bQ2gXc
SuvGRFPONvVGRUjN/lZM4ZfDnSATcO+4h0JHQrvOHRbrIkP96x4KHRNYXhOh
7hKp2d71AcTSPL8DKzYwKTl7+1TfCBbKIdE9iF2Ku9BbKf6G3jp+13LFhqbq
s5AGMu2H14Z6yK/dGSx2Gl4XplyDckeAXi/ndUH7b6+FxG08x9yLvWnX51dv
klg+1YFZb2vNG5SaOHaWV1FpuwkS8TyYrdQzb1IH3pWUex6URgiGds4dEXDe
vQ8KM59pu8E+Aq69D1BhujvO3Hv7PmggoyzBpvii1kVB3tS2TRckWnBo5ll0
w0Deuwfk5gF/N8jy3nqQKWWyIQ169sJtXYEr+NCvrfdsB44nW3sfm0NKnVWJ
7wRu/JYKXhf+Mkvr7SW52ZTa+q5xjZDpZka3FBijlfqXf7fljeFOC4cyV6KY
51oNZT3RW6Yr8NvvPHJwpawMbEBQu5NSbpCrX9diCicydyIBgkplcqcFbdph
7b2sHaNY+oBkXCBIV2RQi5BECsbkKnO+NdOkB5IRSM9Jw5f6gzB9fxzbhyT8
RmD2Us3cafZNdd06+6ZFuHn8ru/ezCH3p0iDNjTSNO7uVRxlE2NdqtwJ5YCo
aMX5Nu2ssW/e5mQbDuom6cO6SHn7YfTL8ZuTsxEWfqmzP79/Y74KdHTxPdRm
85EOtkZz1KD32xybO0N4fvAKBFrFL3Yk3v9XyYeyHYZvBW9bT9wbBac39J3Q
qPXmuh8iug1zGBUj3cONZrppm1tRa2V9ViNSP06laHX+HQFLmJZIHvG8lhod
GFOa/HOPJH0HduZUpVMZZGiZPEjUhglbhGy7yxNGpnVh/G7k3E6rpLlyl6dS
0vcIjN+ErAtqO78NajvdUTu/iahd9e49MDuSftcT26WsvpIBzm50XunE06tQ
a+XmswY3N8QxUY0iA1TxhIP6Qte2munA0gSQCq66sPaKtE4LNcu9FWpi0y5s
cGrm8loYh7vvrYR2k5T3AkfF1AJT2tGtBsi95iJponhH0P4Wket9sV8dFdDp
BeBWgtz8Tuqdd0L86fUW6sacbbjehzOxx7Ltv9xkTL9zVgfmPNRXNcot02bs
1FYKag8TO0Bro8ZvBB3PytzseGOKS78BxLlu9ngI65vGnYVumUf76cqHffVs
15j37NJRf2GEzm4dKVX+u1TPqVNzNMuzi+ZqN/uPdVrxlUivoV3rq84/Sn34
ePRGgZX44c/q4M3bw5NDshbrYSdzaYS5e+k2bVvKjczOHXdy0y32SubrInTT
C8R2QO2wswtTtqEbIcMev0oKudCDXxjatlXS6JAbcWSS32rMeu4yCW55kS8K
vNHUcXGllaR/6xTRjYForzLczdUpMd5w14LGbL+A85am3IdTbp2QZ4ZazlWA
wGHbQ/UOHdfrtEz8b7xbw/jiR7qgM/OujqZ7jAb2Gr+48htvt99I9Xhr9OOt
0Y+3Rj/eGv14a/TjrdGPt0Y/3hpt2efx1ujHW6Mfb41+vDW6id7jrdGPt0YH
yfx4a/TjrdH/xLdGu+v3eIXrHWXI4xWuQrLHK1wfr3D957yR7Q60f7zCVWP1
eIWrmdXjFa6PV7g+XuH6eIVrVxwer3D937k4j1e4Pl7hGiDY4xWuzs/jFa7/
nFe49riumwNbFMo6PBjyjRyHB/X8k5i+0AWuxF50WwiMoN/gc2wv1KXvXHVy
39ik8C5wbdg/z3ZX2j8aIL09cMxZY4ct6SKxgbnTjLqjVk5KBZ9ihIwd/5bY
ptXaVCjbw+Gz3W76RGM+kyN/EX7sTfEUtiWYoehqpjFsPyeZb0WAcqSXsLly
7pLNQskGGkHCxcsaJJ1WsVPqazsp9sHn9L1ShTKXpkksmlDyQtGrrvn1Y88u
7xh1yMqUb+V1VmLcKE3wBEw6jfStCH7JiicQCGowOBsSaQSyeZ1DE6DzTBNc
IJbfCsy/j9CD1yqkdE6sOb6LeU1wMZdZI7GgDIvvlnPMkQnv43DeHUhTUiKR
n2HkxqXxp3G5hw83HEZJzClC6YPM6oVT/vgWsNyCZK954/K1tNAsd+tei3lf
lC4ujV3nHniUOi+6MEd2JppSm0SDZk0ifet9k3sNQQWVP/JFh/paStqCfBnl
RvMCyh5mAJ+Dnur9P8tiNSQzDQEA

-->

</rfc>

