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


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>


<rfc ipr="trust200902" docName="draft-rtv-netmod-yang-subtree-replacement-01" category="info" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="YANG Subtree Replacements">Enhancements to the YANG Language for Capturing Subtree Replacements</title>

    <author fullname="Rajesh Tarakkad Venkateswaran">
      <organization>Cisco Systems</organization>
      <address>
        <email>rtv@cisco.com</email>
      </address>
    </author>
    <author fullname="Sai Venkata Giri Karnati">
      <organization>Cisco Systems</organization>
      <address>
        <email>saikarna@cisco.com</email>
      </address>
    </author>
    <author fullname="Sarthak Jain">
      <organization>Cisco Systems</organization>
      <address>
        <email>sarthakj@cisco.com</email>
      </address>
    </author>
    <author fullname="Veena Ramamoorthy">
      <organization>Cisco Systems</organization>
      <address>
        <email>vemoorth@cisco.com</email>
      </address>
    </author>
    <author fullname="Venkata Harish Nagamangalam">
      <organization>Cisco Systems</organization>
      <address>
        <email>vnagaman@cisco.com</email>
      </address>
    </author>

    <date year="2025" month="December" day="28"/>

    <area>OPS</area>
    <workgroup>NETMOD Working Group</workgroup>
    <keyword>yang</keyword> <keyword>netconf</keyword> <keyword>yang-models</keyword> <keyword>deprecation</keyword> <keyword>model-evolution</keyword>

    <abstract>


<?line 79?>

<t>As YANG data models evolve over time, model nodes are often deprecated or made obsolete. Current practices for documenting replacement paths for these nodes rely on unstructured external documents, making it difficult to programmatically identify and migrate to replacement nodes. This document proposes a YANG extension mechanism that embeds replacement path information directly within YANG models, enabling automation tools to identify replacement nodes and assist users in migrating from deprecated elements to their replacements.</t>



    </abstract>

    <note title="About This Document" removeInRFC="true">
      <t>
        The latest revision of this draft can be found at <eref target="https://datatracker.ietf.org/doc/draft-rtv-netmod-yang-subtree-replacement/"/>.
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-rtv-netmod-yang-subtree-replacement/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        NETMOD Working Group mailing list (<eref target="mailto:netmod@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/netmod/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/netmod/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/rajesh-rtv/yang-replacement"/>.</t>
    </note>


  </front>

  <middle>


<?line 84?>

<section anchor="introduction"><name>Introduction</name>

<t>YANG <xref target="RFC7950"/> is a data modeling language used to define the configuration and operational data of network devices. As network technologies evolve, some nodes within YANG modules become deprecated or obsolete. Operators then need a reliable way to discover which schema nodes supersede the deprecated ones so they can migrate configuration and operational tooling.</t>

<t>The YANG language provides the <spanx style="verb">status</spanx> statement to mark nodes as <spanx style="verb">deprecated</spanx> or <spanx style="verb">obsolete</spanx>, but it offers no standardized mechanism to point to the successor node(s). Current practice relies on unstructured documents, spreadsheets, or ad-hoc emails. The goal of this document is to embed that knowledge directly in the YANG modules so that both humans and automation can infer replacements programmatically.</t>

<t>The term “replacement” in this document refers to guidance that accompanies deprecated or obsolete nodes. The intent is not to redefine YANG status values, but to provide structured metadata that helps operators and tooling identify where to migrate.</t>

</section>
<section anchor="problem-statement"><name>Problem Statement</name>

<t>Currently, when YANG model nodes are deprecated or obsoleted, the information about replacement nodes is typically documented in separate, unstructured documents such as CSV files, release notes, or emails. This approach suffers from several significant drawbacks:</t>

<t><list style="symbols">
  <t><strong>Inefficiency</strong>: Network operators must manually search through external documentation to find replacement paths, often requiring correlation between multiple documents.</t>
  <t><strong>Error-prone</strong>: External documentation can become outdated or may not accurately reflect the current node structure and paths defined in the YANG files, leading to incorrect migrations.</t>
  <t><strong>Lack of automation</strong>: Without a standardized, machine-readable way to express replacement information, tools cannot programmatically identify replacement nodes or assist users in migration.</t>
  <t><strong>Documentation fragmentation</strong>: Replacement information becomes scattered across multiple documents, making it difficult to maintain a complete view of model evolution.</t>
</list></t>

<t>These challenges are particularly acute for large-scale network operators who must manage configuration across numerous devices with diverse YANG models, and for vendors who need to support customers through model transitions.</t>

<t>It's worth noting that this functionality has been proposed as a potential enhancement to a future version of the YANG language itself (<xref target="YANG-NEXT"/>). However, developing and standardizing a new version of YANG would likely take a long while. The solution proposed in this document is designed to be standardized quickly and used with existing YANG modules and infrastructure.</t>

<t>At IETF 123, the NETMOD working group expressed strong interest in addressing this problem statement with requests for additional clarification on the solution approach.</t>

</section>
<section anchor="solution"><name>Solution</name>

<t>To address the challenges associated with deprecated or obsolete nodes in YANG models, we propose an extension-based approach that embeds replacement information directly within the YANG models themselves. This approach follows the recommendations in <xref target="RFC8407"/> for extending YANG functionality without modifying the core language.</t>

<section anchor="proposed-extension-mechanism"><name>Proposed Extension Mechanism</name>

<t>Specifically, we introduce a custom extension, <spanx style="verb">ietf-depr:deprecated-info</spanx>, that authors attach to nodes marked <spanx style="verb">status deprecated</spanx>. This extension carries a structured tuple that documents the migration path during the deprecation window—the critical period when users are expected to transition to replacement nodes. This approach represents successor paths as structured tuples instead of opaque strings and enables the expression of one-to-many relationships through comma-separated paths within a single tuple.</t>

<t>Importantly, this extension is designed for the <strong>deprecation phase only</strong>. When a node transitions from <spanx style="verb">status deprecated</spanx> to <spanx style="verb">status obsolete</spanx>, the extension <bcp14>MUST</bcp14> be removed. This design decision addresses a critical challenge in long-lived YANG modules: industry best practices (RFC 8407, BBF OD-360) mandate that obsolete nodes remain in modules indefinitely for backward compatibility. In large-scale production environments with hundreds or thousands of deprecated nodes across module portfolios, keeping structured metadata on obsolete nodes would result in permanent, ever-growing clutter with minimal benefit, since automated migration should occur during the deprecation window.</t>

<t>Each extension statement carries a structured tuple that follows the ABNF in <xref target="abnf-lifecycle-entry"/>. The tuple consists of one or more path entries, where each entry specifies a <em>path-type</em> (absolute, relative, or none) and its corresponding <em>path-target</em>. When multiple path entries are provided as a comma-separated list, automated migration tools <bcp14>MUST</bcp14> process all paths, treating them as a one-to-many split of functionality where each target is mandatory for complete migration. Each path entry in a comma-separated list may use a different path-type as needed.</t>

<figure anchor="abnf-lifecycle-entry"><name>Lifecycle Tuple ABNF</name>
  <artwork><![CDATA[
lifecycle-entry = path-entry *( "," path-entry )
path-entry      = path-type ":" path-target
path-type       = "absolute" / "relative" / "none"
path-target     = 1*(%x21-2B / %x2D-3A / %x3C-7E)
                  ; any printable except comma and semicolon
  ]]></artwork>
</figure>

<t>Each <spanx style="verb">path-entry</spanx> is self-contained with its own path-type prefix. When <spanx style="verb">path-type</spanx> is <spanx style="verb">absolute</spanx>, <spanx style="verb">path-target</spanx> is an absolute-schema-nodeid that resolves from the module root. When <spanx style="verb">path-type</spanx> is <spanx style="verb">relative</spanx>, the path is interpreted relative to the schema node that instantiates the grouping containing the deprecated node. When <spanx style="verb">path-type</spanx> is <spanx style="verb">none</spanx>, <spanx style="verb">path-target</spanx> <bcp14>MUST</bcp14> be the literal <spanx style="verb">none</spanx> to indicate no direct replacement exists.</t>

<t>Human-readable migration guidance, such as operational notes, migration complexity warnings, or removal timelines, <bcp14>SHOULD</bcp14> be documented in the node's <spanx style="verb">description</spanx> statement rather than in the structured tuple. This maintains a clear separation: the extension provides machine-readable migration paths for automation tools, while the description provides human-readable context for operators and developers.</t>

<t>The benefits of this approach include:</t>

<t><list style="symbols">
  <t><strong>Backward compatibility</strong>: The extension approach doesn't require changes to the YANG language itself and is compatible with existing tools.</t>
  <t><strong>Self-documenting models</strong>: Replacement information is embedded directly in the models, eliminating the need for external documentation.</t>
  <t><strong>Automation enablement</strong>: Tools can programmatically identify replacement paths and assist with migration.</t>
  <t><strong>Improved developer experience</strong>: YANG model developers and users gain clear guidance for transitions between deprecated and replacement nodes.</t>
  <t><strong>Support for complex replacements</strong>: The tuple format with comma-separated paths allows one-to-many replacements with clear, unambiguous semantics for automated migration tools, including cases that cross module boundaries.</t>

</list></t>

</section>
<section anchor="allowed-placements"><name>Allowed Placements and Lifecycle Rules</name>

<t>The <spanx style="verb">ietf-depr:deprecated-info</spanx> extension <bcp14>MAY</bcp14> be applied to the following YANG statements: <spanx style="verb">container</spanx>, <spanx style="verb">list</spanx>, <spanx style="verb">leaf</spanx>, <spanx style="verb">leaf-list</spanx>, <spanx style="verb">choice</spanx>, <spanx style="verb">case</spanx>, <spanx style="verb">anydata</spanx>, and <spanx style="verb">anyxml</spanx>. This extension <bcp14>MUST NOT</bcp14> appear on RPC, action, or notification statements.</t>

<t>The extension <bcp14>MUST</bcp14> be used only with <spanx style="verb">status deprecated</spanx>. Tooling <bcp14>MUST</bcp14> treat the presence of this extension on a node without <spanx style="verb">status deprecated</spanx> as an error. This normative pairing ensures the extension serves as structured lifecycle metadata rather than advisory hints.</t>

<t>Each schema node <bcp14>SHOULD</bcp14> have at most one occurrence of the extension. When functionality splits across multiple replacement nodes (one-to-many migration), publishers <bcp14>MUST</bcp14> provide a comma-separated list of paths within a single extension statement. Automated migration tools <bcp14>MUST</bcp14> process all paths in such a list, treating them as mandatory targets for complete migration. This ensures unambiguous semantics: a single tuple defines the complete, deterministic migration path.</t>

<t><strong>Removal Upon Obsolescence</strong>: When a node's status transitions from <spanx style="verb">deprecated</spanx> to <spanx style="verb">obsolete</spanx>, the <spanx style="verb">ietf-depr:deprecated-info</spanx> extension <bcp14>MUST</bcp14> be removed. Rationale: Industry best practices mandate that obsolete nodes remain in YANG modules indefinitely for backward compatibility. Retaining structured migration metadata on obsolete nodes leads to unbounded accumulation—in high-volume environments, this can result in hundreds or thousands of unnecessary metadata entries for nodes that users should have migrated from years earlier. Migration guidance for obsolete nodes, if needed, belongs in human-readable description statements.</t>

</section>
<section anchor="design-time-evaluation"><name>Design-Time Evaluation Rationale</name>

<t>The ability to reason about replacements at design time is critical. Embedding the tuples directly in the YANG source enables:</t>

<t><list style="symbols">
  <t><strong>Model reviews</strong>: Working group and vendor reviewers can confirm that every deprecated node is paired with an up-to-date replacement before publishing modules.</t>
  <t><strong>Toolchain validation</strong>: Compilers and CI pipelines can flag missing or malformed tuples while the module is being authored instead of deferring to deployment time.</t>
  <t><strong>Automation planning</strong>: Operators and orchestrators can evaluate the impact of upcoming deprecations without requiring device connectivity.</t>
</list></t>

<t>This approach aligns with the guidance in <xref target="RFC8407"/> on providing migration help inside the model itself.</t>

</section>
<section anchor="extension-vs-instance-data"><name>Extension Versus Instance Data</name>

<t>Replacement paths are documented as extensions rather than instance data because the metadata must travel with the module revisions that introduce deprecations. Instance data is deployment-specific and would not be available to the many tools (IDEs, code generators, documentation sites) that process YANG modules in isolation during development and design-time validation.</t>

</section>
<section anchor="handling-obsolete-nodes"><name>Lifecycle Transitions and Module Maintainability</name>

<t>Several YANG modules deprecate nodes for one or more releases before ultimately marking them <spanx style="verb">status obsolete</spanx>. This creates a three-stage lifecycle:</t>

<t><list style="numbers">
  <t><strong>Current phase</strong>: Node is in active use with no deprecation or obsoletion marking (the default state in YANG). No migration metadata is needed.</t>
  <t><strong>Deprecation phase</strong>: Node carries <spanx style="verb">status deprecated</spanx> with <spanx style="verb">ietf-depr:deprecated-info</spanx> extension. This is the <strong>active migration window</strong> where users should transition to replacements and automated tooling can leverage the structured metadata.</t>
  <t><strong>Obsolete phase</strong>: Node carries <spanx style="verb">status obsolete</spanx> and the <spanx style="verb">ietf-depr:deprecated-info</spanx> extension is <strong>removed</strong>. The node remains in the module indefinitely per industry best practices, with migration guidance provided in the description statement for any laggards.</t>
</list></t>

<t>This approach balances the competing needs of:</t>

<t><list style="symbols">
  <t><strong>Automation support</strong>: Structured metadata during deprecation enables proactive, tool-assisted migration during the critical window.</t>
  <t><strong>Long-term maintainability</strong>: Removing metadata at obsolescence prevents unbounded accumulation. In large-scale production environments with extensive module portfolios, retaining structured metadata on all obsolete nodes would create permanent clutter with minimal value—users encountering an obsolete node years after deprecation have long missed the automation window.</t>
</list></t>

<t>When a deprecated node has no successor (functionality is being removed entirely), the tuple uses <spanx style="verb">path-type = none</spanx> and <spanx style="verb">path-target = none</spanx>. This signals to tooling that there is no automated migration target and manual intervention is required. Upon transition to obsolete, this extension is also removed.</t>

</section>
<section anchor="related-work"><name>Related Work and Alternatives</name>

<t>Alternative approaches for documenting deprecation paths include model-specific conventions, instance-data catalogues, and proposals for future YANG language revisions (often referred to collectively as "YANG Next"). This document positions the extension as an immediately deployable option that complements those efforts. Publishers can still provide supplemental instance data where useful, but the extension ensures there is a normative pointer available inside the module itself.</t>

</section>
</section>
<section anchor="implementation-guidelines-and-syntax"><name>Implementation Guidelines and Syntax</name>

<t>The following sections demonstrate how the lifecycle extensions can be applied across different replacement scenarios. The examples illustrate common patterns encountered when evolving YANG models and show how the tuples provide clear migration paths for each situation.</t>

<section anchor="path-reference-types"><name>Path Reference Types</name>

<t>To accommodate different structural relationships between deprecated nodes and their replacements, we define three types of path references in the <spanx style="verb">path-type</spanx> field:</t>

<t><list style="symbols">
  <t><strong>absolute</strong>: Used when the replacement node can be directly referenced with an absolute schema path from the YANG module root. This is the most common case for nodes inside standard containers and lists.</t>
  <t><strong>relative</strong>: Used when the replacement node appears in multiple places, such as within groupings or augments. The path is resolved relative to the instantiation of the grouping that contains the deprecated node. This approach ensures the reference remains valid regardless of where the grouping is used.</t>
  <t><strong>none</strong>: Used to signal that no direct replacement exists. Human-readable migration guidance should be provided in the node's description statement.</t>
</list></t>

<t>Each path reference type has specific syntax requirements and use cases, which are illustrated in the examples that follow.</t>

</section>
<section anchor="summary-of-syntax-notations"><name>Summary of Syntax Notations</name>

<t>The following syntax notations are used for replacement paths:</t>

<t><list style="symbols">
  <t><spanx style="verb">absolute:/{File_name}:{path}</spanx>: Indicates the absolute path of the replacement node in a file.</t>
  <t><spanx style="verb">relative:/{File_name}:{grouping_name}/{rel_path_inside_grouping}</spanx>: Indicates the relative path of the replacement node within a specified grouping in a file.</t>
  <t><spanx style="verb">none:none</spanx>: Indicates that there is no replacement for the deprecated node. Human-readable migration guidance should be provided in the node's description statement.</t>
  <t><spanx style="verb">absolute:/path1,absolute:/path2</spanx>: Multiple paths in a comma-separated list for one-to-many migrations. Each path has its own path-type prefix and all paths are mandatory for complete migration.</t>
  <t><spanx style="verb">absolute:/path1,relative:/grouping:path2</spanx>: Mixed path types are allowed in comma-separated lists when replacements span different structural contexts.</t>
</list></t>

</section>
<section anchor="simple-node-replacement-example"><name>Simple Node Replacement Example</name>

<t>Description: a node is deprecated and has a replacement node in the same container.</t>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
ietf-depr:deprecated-info "absolute:/{File_name}:{abs_path}";
]]></sourcecode>

</section>
<section anchor="no-replacement-example"><name>No Replacement Example</name>

<t>Description: a node is deprecated and there is no direct replacement node.</t>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
leaf old-feature {
  type string;
  status deprecated;
  description
    "DEPRECATED: This feature is being removed with no direct replacement.
     Manual migration to alternative approaches is required.";
  ietf-depr:deprecated-info "none:none";
}
]]></sourcecode>

</section>
<section anchor="grouping-examples"><name>Grouping Examples</name>

<t>Identifying XPath nodes within YANG models, particularly when dealing with groupings, presents a challenge. Nodes that are imported through grouping may not be easily pinpointed using absolute XPath. The solution is to uniquely identify the grouping using the file name and grouping name, then provide a relative XPath from the top level of the grouping. In all other cases, an absolute XPath can be provided.</t>

<t>Utilize the file name and grouping name to uniquely identify the grouping within the YANG model. Provide a relative XPath from the top level of the grouping to pinpoint the node.</t>

<t>This approach ensures that nodes within groupings can be accurately identified and referenced, while maintaining clarity and precision for nodes outside of groupings.</t>

<section anchor="node-deprecated-outside-grouping-replacement-inside-grouping"><name>Node Deprecated Outside Grouping, Replacement Inside Grouping</name>

<t>Description: a node that is deprecated outside a grouping structure but has a replacement node within a specific grouping.</t>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
ietf-depr:deprecated-info "relative:/{File_name}:{grouping_name}/{rel_path_inside_grouping}";
]]></sourcecode>

</section>
<section anchor="node-deprecated-inside-grouping-replacement-outside-in-a-non-group"><name>Node Deprecated Inside Grouping, Replacement Outside in a Non-Group</name>

<t>Description: a node that is deprecated within a grouping structure but has a replacement node outside any grouping.</t>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
ietf-depr:deprecated-info "absolute:/{File_name}:{abs_path}";
]]></sourcecode>

</section>
<section anchor="node-deprecated-inside-grouping-replacement-inside-existingnew-grouping"><name>Node Deprecated Inside Grouping, Replacement Inside Existing/New Grouping</name>

<t>Description: a node that is deprecated within a grouping structure and has a replacement node within the same or a new grouping structure.</t>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
ietf-depr:deprecated-info "relative:/{File_name}:{grouping_name}/{rel_path_inside_grouping}";
]]></sourcecode>

</section>
<section anchor="node-deprecated-outside-grouping-replacement-outside-grouping"><name>Node Deprecated Outside Grouping, Replacement Outside Grouping</name>

<t>Description: a node that is deprecated outside a grouping structure and has a replacement node also outside any grouping.</t>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
ietf-depr:deprecated-info "absolute:/{File_name}:{abs_path}";
]]></sourcecode>

</section>
</section>
<section anchor="replacement-guidelines-for-non-leaf-level-deprecation"><name>Replacement Guidelines for Non-Leaf Level Deprecation</name>

<t>When deprecating structures like container or list at their respective levels, it is essential to ensure that the replacement is explicitly mentioned at all sub-levels, including child elements such as leaf, leaf-list, or nested structures. This approach ensures clarity and provides a complete mapping of deprecated elements to their replacements, making it easier for users to transition to the new structure.</t>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
container old-container {
  status deprecated;
  ietf-depr:deprecated-info "absolute:/{File_name}:{replacement_container_path}";

  leaf old-leaf {
    status deprecated;
    ietf-depr:deprecated-info "absolute:/{File_name}:{replacement_leaf_path}";
  }
}
]]></sourcecode>

</section>
</section>
<section anchor="example-implementation"><name>Example Implementation</name>

<t>The following examples demonstrate how the lifecycle extensions can be implemented. These are vendor-neutral examples created specifically for this document to illustrate the functionality and are not intended to be actual YANG modules used in production environments.</t>

<section anchor="ietf-deprecated-info-yang-module"><name><spanx style="verb">ietf-deprecated-info.yang</spanx> module</name>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
module ietf-deprecated-info {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-deprecated-info";
  prefix ietf-depr;

  organization "IETF NETMOD Working Group";

  contact "IETF NETMOD Working Group <netmod@ietf.org>";

  description
    "This module defines an extension for documenting migration paths
     for deprecated YANG nodes.
     
     Copyright (c) 2024 IETF Trust and the persons identified as
     authors of the code. All rights reserved.";

  extension deprecated-info {
    argument "tuple";
    description
      "Provides structured migration path for deprecated nodes.
       
       This extension MUST be used only with 'status deprecated'.
       
       The tuple provides machine-readable replacement paths for
       automated migration tools. Human-readable guidance (migration
       notes, operational considerations, timelines) SHOULD be
       documented in the node's description statement, maintaining
       clear separation between structured automation metadata and
       human-oriented documentation.
       
       When a node transitions from 'status deprecated' to 
       'status obsolete', this extension MUST be removed to prevent
       accumulation of unnecessary metadata on nodes that will never
       be removed from the module per industry best practices
       (RFC 8407, BBF OD-360).
       
       Rationale: Industry standards mandate that obsolete nodes
       remain in YANG modules indefinitely for backward compatibility.
       With high-volume deprecations in production environments,
       keeping structured metadata only during the active migration
       window (deprecated phase) balances automation needs with
       long-term module maintainability.";
  }
}
]]></sourcecode>

</section>
<section anchor="ietf-deprecation-regression-test-17131yang-module"><name><spanx style="verb">ietf-deprecation-regression-test-17131.yang</spanx> module</name>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
module ietf-deprecation-regression-test-17131 {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-deprecation-regression-test";
  prefix depr-reg-test;

import ietf-depr-reg-test-helper-17131 {
    prefix depr-reg-test-helper;
  }

import ietf-deprecated-info {
    prefix ietf-depr;
  }

container deprecation-regression-test {
    container configurations {
      container config {


    // Case 1: Replacement in same container.
    leaf case1 {
      type uint8;
      status deprecated;
      description
        "Case 1 - Replacement in same container, "
        "leaf case1 (DEPRECATED). "
        "Replacement: case1-replacement. "
        "Note: case1-legacy available for backward compatibility.";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/config/"
        "case1-replacement";
    }
    leaf case1-replacement {
      type uint16;
      description
        "Case 1 - Replacement in same container, "
        "leaf case1-replacement (NEW)";
    }

    // Case 2: Replacement in different container.
    leaf case2 {
      type uint8;
      status deprecated;
      description
        "Case 2 - Leaf deprecated with a replacement in a different "
        "container, leaf i (DEPRECATED)";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/"
        "replacementContainerCase2/case2-replacement";
    }
    container replacementContainerCase2 {
      leaf case2-replacement {
        type uint8;
        description
          "Case 2 - Replacement leaf in different container (NEW)";
      }
    }

    // Case 3: Replacement located in another module.
    leaf case3 {
      type uint8;
      status deprecated;
      description
        "Case 3 - Replacement located in another module, "
        "leaf case3 (DEPRECATED). "
        "Note: The replacement is defined in the ietf-deprecation-regression-test-file-2 module.";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-file-2-17131:"
        "deprecation-regression-test-2/configurations/config/"
        "case3-replacement";
    }

    // Case 4: List leaf replaced elsewhere.
    list listCase4 {
      key "key-case4";
      leaf key-case4 {
        type string;
      }
      leaf case4 {
        type uint8;
        status deprecated;
        description
          "Case 4 - List leaf replaced in another list, "
          "leaf case4 (DEPRECATED)";
        ietf-depr:deprecated-info
          "absolute:/ietf-deprecation-regression-test-17131:"
          "deprecation-regression-test/configurations/"
          "replacementListCase4/case4-replacement";
      }
    }
    list replacementListCase4 {
      key "key-case4-replacement";
      leaf key-case4-replacement {
        type string;
      }
      leaf case4-replacement {
        type uint8;
        description
          "Case 4 - List leaf replacement, "
          "case4-replacement (NEW)";
      }
    }

    // Case 5: Grouping leaf replaced inside grouping.
    grouping groupCase5 {
      leaf case5 {
        type uint8;
        status deprecated;
        description
          "Case 5 - Grouping leaf deprecated and reused via the same "
          "grouping, leaf case5 (DEPRECATED). "
          "Replacement: case5-replacement (relative within grouping).";
        ietf-depr:deprecated-info
          "relative:/ietf-deprecation-regression-test-17131:"
          "groupCase5/case5-replacement";
      }
      leaf case5-replacement {
        type uint16;
        description
          "Case 5 - Replacement leaf reused via grouping, "
          "case5-replacement (NEW)";
      }
    }
    container containerP1 {
      uses groupCase5;
      description
        "Case 5 - Grouping usage via containerP1 (NEW)";
    }
    container containerP2 {
      uses groupCase5;
      description
        "Case 5 - Grouping usage via containerP2 (NEW)";
    }

    // Case 6: Grouping leaf replaced via imported helper.
    container containerP3 {
      uses depr-reg-test-helper:groupCase6;
      description
        "Case 6 - Grouping reuse via helper module, containerP3 (NEW)";
    }
    container containerP4 {
      uses depr-reg-test-helper:groupCase6;
      description
        "Case 6 - Grouping reuse via helper module, containerP4 (NEW)";
    }

    // Case 7: Replacement leaf shares name.
    leaf case7 {
      type uint8;
      status deprecated;
      description
        "Case 7 - Leaf replaced by another leaf with the same name "
        "elsewhere, leaf case7 (DEPRECATED)";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/"
        "replacementContainerCase7/case7";
    }
    container replacementContainerCase7 {
      presence "true";
      description
        "Case 7 - Replacement container holding leaf case7 (NEW)";
      leaf case7 {
        type uint8;
        description
          "Case 7 - New leaf case7 at alternate location (NEW)";
      }
    }

    // Case 8 : Leaf-list deprecated, replaced by another leaf-list
    leaf-list case8 {
      type uint8;
      status deprecated;
      description
        "Case 8 - Leaf-list case8 replaced by new list (DEPRECATED)";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/config/"
        "case8-replacement";
    }
    leaf-list case8-replacement {
      type uint8;
      description
        "Case 8 - Replacement leaf-list case8-replacement (NEW)";
    }

    // Case 9 : Empty leaf deprecated, replaced by another empty leaf
    leaf case9 {
      type empty;
      status deprecated;
      description
        "Case 9 - Empty leaf case9 replaced by new empty leaf "
        "(DEPRECATED)";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/config/"
        "case9-replacement";
    }
    leaf case9-replacement {
      type empty;
      description
        "Case 9 - Replacement empty leaf case9-replacement (NEW)";
    }

    // Case 10 : A container is deprecated with a replacement container.
    container containerCase10 {
      leaf case10 {
        type uint8;
        status deprecated;
        description
          "Case 10 - Leaf case10 in deprecated container (DEPRECATED)";
        ietf-depr:deprecated-info
          "absolute:/ietf-deprecation-regression-test-17131:"
          "deprecation-regression-test/configurations/config/"
          "replacementContainerCase10/case10-replacement";
      }
      status deprecated;
      description
        "Case 10 - ContainerCase10 replaced by successor (DEPRECATED)";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/config/"
        "replacementContainerCase10";
    }
    container replacementContainerCase10 {
      leaf case10-replacement {
        type uint8;
        description
          "Case 10 - Replacement leaf case10-replacement (NEW)";
      }
      description
        "Case 10 - Replacement container replacementContainerCase10 "
        "(NEW)";
    }

    // Case 11: Multiple items mapped to one leaf.
    leaf case11a {
      type uint8;
      status deprecated;
      description
        "Case 11 - Items merged into leaf case11a (DEPRECATED)";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/config/"
        "case11-replacement";
    }
    leaf case11b {
      type uint8;
      status deprecated;
      description
        "Case 11 - Items merged into leaf case11b (DEPRECATED)";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/config/"
        "case11-replacement";
    }
    leaf case11-replacement {
      type uint16;
      description
        "Case 11 - Replacement leaf case11-replacement (NEW)";
    }

    // Case 12: List item replaced by different list type.
    list listCase12 {
      key "key-case12";
      status deprecated;
      leaf key-case12 {
        type string;
        status deprecated;
        ietf-depr:deprecated-info
          "absolute:/ietf-deprecation-regression-test-17131:"
          "deprecation-regression-test/configurations/config/"
          "replacementListCase12/key-case12-replacement";
      }
      leaf case12 {
        type uint8;
        status deprecated;
        ietf-depr:deprecated-info
          "absolute:/ietf-deprecation-regression-test-17131:"
          "deprecation-regression-test/configurations/config/"
          "replacementListCase12/case12-replacement";
      }
    }
    list replacementListCase12 {
      key "key-case12-replacement";
      leaf key-case12-replacement {
        type string;
      }
      leaf case12-replacement {
        type uint8;
      }
    }

    // Case 13: Choice case provides alternate leaf.
    choice choice13 {
      case caseCase13 {
        leaf case13 {
          type uint8;
          status deprecated;
          description
            "Case 13 - Choice branch leaf case13 (DEPRECATED)";
          ietf-depr:deprecated-info
            "absolute:/ietf-deprecation-regression-test-17131:"
            "deprecation-regression-test/configurations/config/"
            "choice13/case13-replacement";
        }
      }
      case caseCase13Replacement {
        leaf case13-replacement {
          type uint8;
          description
            "Case 13 - Alternate choice leaf case13-replacement (NEW)";
        }
      }
    }

    // Case 14: One leaf replaced by multiple new leaves.
    leaf case14 {
      type uint16;
      status deprecated;
      description
        "Case 14 - Single leaf replaced by many, case14 (DEPRECATED). "
        "Functionality split across case14a-replacement and case14b-replacement.";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:deprecation-regression-test/configurations/config/case14a-replacement,absolute:/ietf-deprecation-regression-test-17131:deprecation-regression-test/configurations/config/case14b-replacement";
    }
      leaf case14a-replacement {
        type uint8;
        description
        "Case 14 - Replacement leaf case14a-replacement (NEW)";
    }
      leaf case14b-replacement {
        type uint8;
        description
        "Case 14 - Replacement leaf case14b-replacement (NEW)";
    }

    // Case 15: Leaf obsoleted with no replacement.
    leaf case15 {
      type uint8;
      status obsolete;
      description
        "Case 15 - Feature retired; no replacement (OBSOLETE).
         Note: This node was previously deprecated with structured
         migration metadata. Upon transition to obsolete status,
         the ietf-depr:deprecated-info extension was removed per
         best practices to prevent metadata accumulation.";
    }

    // Case 16: Container replacement annotated per level.
    container containerCase16 {
      presence "true";
      status deprecated;
      description
        "Case 16 - ContainerCase16 replaced by successor container "
        "(DEPRECATED)";
      ietf-depr:deprecated-info
        "absolute:/ietf-deprecation-regression-test-17131:"
        "deprecation-regression-test/configurations/config/"
        "replacementContainerCase16";

      leaf case16-leaf1 {
        type string;
        status deprecated;
        description
          "Case 16 - Leaf case16-leaf1 deprecated in containerCase16 "
          "(DEPRECATED)";
        ietf-depr:deprecated-info
          "absolute:/ietf-deprecation-regression-test-17131:"
          "deprecation-regression-test/configurations/config/"
          "replacementContainerCase16/case16a";
      }

      leaf case16-leaf2 {
        type uint8;
        status deprecated;
        description
          "Case 16 - Leaf case16-leaf2 deprecated in containerCase16 "
          "(DEPRECATED)";
        ietf-depr:deprecated-info
          "absolute:/ietf-deprecation-regression-test-17131:"
          "deprecation-regression-test/configurations/config/"
          "replacementContainerCase16/case16b";
      }
    }

    container replacementContainerCase16 {
      presence "true";
      description
        "Case 16 - Replacement container replacementContainerCase16 "
        "(NEW)";

      leaf case16a {
        type string;
        description
          "Case 16 - Replacement for case16-leaf1 (NEW)";
      }

      leaf case16b {
        type uint8;
        description
          "Case 16 - Replacement for case16-leaf2 (NEW)";
      }
    }
  }
}   } }]]></sourcecode>

</section>
<section anchor="ietf-deprecation-regression-test-helper-module-17131yang-module"><name><spanx style="verb">ietf-deprecation-regression-test-helper-module-17131.yang</spanx> module</name>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
module ietf-depr-reg-test-helper-17131 {
  yang-version 1.1;

namespace "urn:ietf:params:xml:ns:yang:ietf-depr-reg-test-helper";

prefix depr-reg-test-helper;

organization "IETF NETMOD Working Group";

contact "IETF NETMOD Working Group <netmod@ietf.org>";

import ietf-deprecated-info {
    prefix ietf-depr;
  }

// Case 6 : Leaf inside a grouping deprecated, replaced in the same grouping but imported through 
  // a different module and used in various modules.
  grouping groupCase6 {
    leaf case6 {
      type uint8;
      default 10;
      status deprecated;
      description
        "Case 6 - Leaf inside a grouping
         deprecated, replaced in the same grouping but imported through
         a different module and used in various modules,
         leaf case-6 (DEPRECATED)";
      ietf-depr:deprecated-info
        "relative:/ietf-depr-reg-test-helper-17131:"
        "groupCase6/case6-replacement";
    }
    leaf case6-replacement {
      type uint8;
      default 11;
      description
        "Case 6 - Leaf inside a grouping
         deprecated, replaced in the same grouping but imported
         through a different module and used in various modules,
         leaf case6-replacement (NEW)";
    }
  }
}
]]></sourcecode>

</section>
<section anchor="ietf-deprecation-regression-test-file-2-17131yang-module"><name><spanx style="verb">ietf-deprecation-regression-test-file-2-17131.yang</spanx> module</name>

<t>YANG Example:</t>

<sourcecode type="yang"><![CDATA[
module ietf-deprecation-regression-test-file-2-17131 {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-deprecation-regression-test-file-2";
  prefix depr-reg-test-2;

import ietf-deprecated-info {
    prefix ietf-depr;
  }

container deprecation-regression-test-2 {
    container configurations {
      container config {
        // Case 3: Replacement located in another module.
        leaf case3-replacement {
          type uint8;
          default 15;
        }
      }
    }
  }
}
]]></sourcecode>

</section>

</section>
<section anchor="conventions-and-definitions"><name>Conventions and Definitions</name>

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<?line -18?>

</section>
<section anchor="operational-considerations"><name>Operational Considerations</name>

<t>Network operators and YANG model consumers can leverage the information provided by the <spanx style="verb">ietf-depr:deprecated-info</spanx> extension in several ways:</t>

<t><list style="symbols">
  <t><strong>Automated Migration Tools</strong>: Software tools can be developed to scan configurations using deprecated nodes and automatically suggest or implement replacements.</t>
  <t><strong>Documentation Generation</strong>: Model documentation tools can highlight deprecated nodes and their replacements, making it easier for network operators to understand migration paths.</t>
  <t><strong>Configuration Validation</strong>: Validation tools can warn about the use of deprecated nodes and suggest alternatives based on the extension data.</t>
  <t><strong>Training and Knowledge Transfer</strong>: The explicit documentation of replacements can help in training and knowledge transfer as teams adopt newer model versions.</t>
</list></t>

</section>
<section anchor="security-considerations"><name>Security Considerations</name>

<t>The extension defined in this document does not introduce new protocol behaviour or data plane interactions. The tuples are metadata that accompany YANG modules and are evaluated at design time. Consequently, the security considerations of <xref target="RFC7950"/> apply.</t>

<t>Incorrect or stale tuples could mislead automation systems or operators during migrations. Publishers <bcp14>SHOULD</bcp14> validate tuples during module reviews and CI testing, and consumers <bcp14>SHOULD</bcp14> treat the tuples as advisory rather than authoritative until verified in their environments.</t>

<t>The tuples do not carry sensitive information beyond schema paths. They neither relax access control nor expose configuration data. Implementations <bcp14>SHOULD</bcp14> ensure that tuple parsing failures are handled gracefully (for example by logging warnings) to avoid denial-of-service conditions caused by malformed metadata.</t>

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

<t>IANA is requested to add a new entry to the "IETF XML Registry" for the namespace <spanx style="verb">urn:ietf:params:xml:ns:yang:ietf-deprecated-info</spanx> with reference to this document.</t>

<t>IANA is also requested to add a new entry to the "YANG Module Names" registry with the following values: name <spanx style="verb">ietf-deprecated-info</spanx>, namespace <spanx style="verb">urn:ietf:params:xml:ns:yang:ietf-deprecated-info</spanx>, prefix <spanx style="verb">ietf-depr</spanx>, reference this document.</t>

<t>No other IANA actions are required.</t>

</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">



<reference anchor='RFC7950' target='https://www.rfc-editor.org/rfc/rfc7950'>
  <front>
    <title>The YANG 1.1 Data Modeling Language</title>
    <author initials='M.' surname='Bjorklund' fullname='Martin Bjorklund'>
      <organization>Tail-f Systems</organization>
    </author>
    <date year='2016' month='August'/>
  </front>
  <seriesInfo name='RFC' value='7950'/>
  <seriesInfo name='DOI' value='10.17487/RFC7950'/>
</reference>

<reference anchor='RFC8407' target='https://www.rfc-editor.org/rfc/rfc8407'>
  <front>
    <title>Guidelines for Authors and Reviewers of Documents Containing YANG Data Models</title>
    <author initials='A.' surname='Bierman' fullname='Andy Bierman'>
      <organization>YumaWorks</organization>
    </author>
    <date year='2018' month='October'/>
  </front>
  <seriesInfo name='RFC' value='8407'/>
  <seriesInfo name='DOI' value='10.17487/RFC8407'/>
</reference>

<reference anchor='RFC2119' target='https://www.rfc-editor.org/rfc/rfc2119'>
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author initials='S.' surname='Bradner' fullname='Scott Bradner'>
      <organization>Harvard University</organization>
    </author>
    <date year='1997' month='March'/>
  </front>
  <seriesInfo name='BCP' value='14'/>
  <seriesInfo name='RFC' value='2119'/>
  <seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>

<reference anchor='RFC8174' target='https://www.rfc-editor.org/rfc/rfc8174'>
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author initials='B.' surname='Leiba' fullname='Barry Leiba'>
      <organization>Huawei Technologies</organization>
    </author>
    <date year='2017' month='May'/>
  </front>
  <seriesInfo name='BCP' value='14'/>
  <seriesInfo name='RFC' value='8174'/>
  <seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>



    </references>

    <references title='Informative References' anchor="sec-informative-references">



<reference anchor='YANG-NEXT' target='https://github.com/netmod-wg/yang-next/issues/130'>
  <front>
    <title>YANG Next Issue #130: Deprecation Replacement Metadata</title>
    <author surname='NETMOD Working Group'/>
    <date year='2024'/>
  </front>
  <seriesInfo name='GitHub' value='netmod-wg/yang-next#130'/>
</reference>



    </references>

</references>


<?line 807?>

<section numbered="false" anchor="acknowledgments"><name>Acknowledgments</name>

<t>The authors would like to thank the NETMOD working group participants for their valuable feedback during the IETF 123 discussion. Special thanks to Kent Watsen, Lou Berger, Balazs Lengyel, Reshad Rahman, Deepak Rajaram, and Rob Wilton for their constructive comments that significantly shaped this specification.</t>

<t>The authors acknowledge the ongoing YANG Next discussions captured in <xref target="YANG-NEXT"/> that provided initial inspiration for this proposal.</t>

</section>

<section numbered="false" anchor="change-log" removeInRFC="true"><name>Change Log</name>

<t>Changes from draft-rtv-netmod-yang-subtree-replacement-00 to draft-rtv-netmod-yang-subtree-replacement-01:</t>

<t><list style="symbols">
  <t>Renamed extension from <spanx style="verb">replacement-info</spanx> to <spanx style="verb">deprecated-info</spanx> to reflect source node state rather than target, based on IETF 123 feedback from Kent Watsen</t>
  <t>Extension now mandatory only for <spanx style="verb">status deprecated</spanx> nodes; <bcp14>MUST</bcp14> be removed when transitioning to <spanx style="verb">status obsolete</spanx> to prevent unbounded metadata accumulation in long-lived modules</t>
  <t>Renamed module from <spanx style="verb">ietf-replace-path-ext</spanx> to <spanx style="verb">ietf-deprecated-info</spanx> to align with extension name and clarify purpose</t>
  <t>Changed path type syntax from <spanx style="verb">REPLACEMENT_ABSOLUTE_PATH</spanx>/<spanx style="verb">REPLACEMENT_REL_PATH</spanx> to lowercase <spanx style="verb">absolute</spanx>/<spanx style="verb">relative</spanx>/<spanx style="verb">none</spanx> for consistency with YANG conventions</t>
  <t>Added formal ABNF grammar definition for lifecycle tuple structure, with each path in a comma-separated list carrying its own path-type prefix to support mixed absolute/relative replacements in one-to-many migrations</t>
  <t>Added explicit rationale for extension-based approach versus instance data (portability and tool coverage requirements)</t>
  <t>Added design-time evaluation rationale section addressing IETF 123 feedback from Rob Wilton and others</t>
  <t>Added lifecycle transitions section explaining three-stage lifecycle (current, deprecated, obsolete) and metadata removal policy</t>
  <t>Clarified allowed statement types and validation rules for extension placement</t>
  <t>Restructured Section 4: moved "Summary of Syntax Notations" before case examples for improved readability</t>
  <t>Documented IETF 123 NETMOD working group chair poll outcome showing broad interest in addressing the problem statement</t>
</list></t>

</section>


  </back>

<!-- ##markdown-source:
H4sIAB7T92gAA+096XbTSLr/9RR1zY8BjhccQgDTt2fSIXRnOgRuEno5c+aA
LJVtTWTJoyXGzcm73Ge5T3a/papUWuzIITTQPfwItix99e1blap6vZ5z584d
5444ijKZRDLrPU/cSSZeusmFHy8jcS7ni9DNpIM3ncrInUuRzYJUTIJQikkS
z4WPT/Sy2I97qzhP8JbeIomz2IvD/twXWSymMhNp5iaZ9PsAh8cgWJM4mbuZ
AIAdhvONhvFt75tlnFxMkzhfwGe6BOA6fULlRZyIIAqywA1FKrN80RXwoIij
cCUiKWlU6QcZIAuDBEmaiXEYexcinsBXGfopIvIKb+9kQRbKDj2W4nNjKbyZ
G02l/0z4MpSZFB13PE7kZUcEExwnEfQMop3O4iRDWPvRSsQwWiK8GJgZZcJz
I4SFaEi/K8Z5RqDdRE7yUERxhoMFUZbEfu7BfUkSJ4TWWYycISzFMghDfAyI
FG6excCtwHNDwNvPkyCaMvWIF4y9EgBc5JFCn1n1PI7+AhyOvDD3gZLegwcd
Adzr9FCuaQY0RYpLIckXMTh2xzJMzS8gJNFCPAoiI5GCEMYrgIUQsjgOibdA
O3AIPuBVL08SZNSlTNIgjp4BLYCgH3sIrYPDCvneBQWUTMk5Kl6mNBJHSMVF
4s5RUXvJxBuJWZYt0tFgMA2yWT7ue/F84LnjeGDfBXB+BU1B4SQSIHmScAE8
goSZoIQsFoysK/xgAh8QU1ZX5NABsdgwDhAFmSMVSBzc480M60C/7/bfz0Mi
6JeXx10hM6/f799DosD6SJdGonMYAUxPzmGgVLPo1/2T70Ea0TR3pwRNHLiL
jCV/lo+zBDh2ymTQcx2HNRXA0aPN93jAv2mcrEYg4UnsOIrlIyXkJLvsgS+Y
x35vBUP3UgbSSwogStQO/DQPUqQ7Wy0AwNHh+Qsh7gg3TGPAIYh8uZDwJ8o6
XdFBU4gTsFn8crT/HfyHmnh0ev6i40T5fCyTkeMD5JHYebDzqPdgr/dg6IA9
pcDbPB2JLMmlA8Q9dEDH3JF49frMMWo4EieH5y9fPRc/wxVk0Pd41bmQK7jF
HzmiJ5Ac/B+oA6gTfakHpIK+41fAN5HAH6AIv9IPPXkZhzldupRRLgGUKI0I
35n88sgCFCEIR4J5+bdAZpN+nAACYCHerFBXvAuvBJeyr28a4IXBOImXqRww
gAEOS5o9Eon7L5nOUFIDIsASDdzFwikGAJa6WeJ6FzIpBgChD1rLe+A44H3A
1yEbYQQhwIeFrDSnhIs4dxP34sL1xU8yukAElnAhonthODcKfiOujsRBkHqx
OFulYMppF0KP16e7JHMLsPmbh7eg/dZHO3MDNYIrvg+SQPzogkPKgu0HSt3g
Ap/dPFqSzdwL8Xc3uAEpKT/9r00j/CTB6wIP5+48hlAyW20/zKXkRzcPwyz7
wU0CENaJO4URo6kbuvMbDBjx49aATkSeDlQYreP0xcHjp48eqI9Pdh88HjkO
+pryPU8e7sI9DvhCx+n1esIdp6immePsp+z6UHPZCFOBVngpRXyJESSYyy7/
AJHUh0iAQSeegBM2JgwBCLzL3IWoF4/TGAN5XxyomLPAcQIPHkSnCraQo5qj
7VpaLxZuNuM7wBmnUg2VSAi/4OnzCNDNPXDHMBQGAFCm0MACvs1d8gaQhmAI
Cbw8pJgP2dEUIlIRygN0kMEEwnfki3kAP2aSo2WBCg3d5xioh0BIixjjoMvs
KqLQXGISEKRzwBwCkATf6qc12oSRCTziQwD0MkBnCU4GQj9BZN5DyIrccYjE
6CSEIp2K6gb/GsJEkQsBAtICCNgJ5RRMIQLjBLKQF2RbdvgLEhsi5EasJvPA
90PpcNpK2RP5ZocQ/vBBKd/VFeZnrqVCOGKoYyklKDCMLydBxIEcQ0IwzROm
DjGPF5K/oVwRDqSP4Ckx5MCDl6g/fQG6WrlGzwK1/IX1tltX6HmOyRJESq3a
gE6aLxZgywBxKSbSRd1icBNI6xiTIFspPTBxSWl+Iv+dB/iAiWJAMSivUn/8
Jt+DKPADiwekMXEv8RYkbCkTNCqwJHeBqgWhGhTRKDkK4FwnJYaRcONlgLA6
kOJnedrBVD8r5Ag5QOCRQqMiKnng6GLmppDabrZYzpvRgmIYApNmNR5AgnEi
30384Dd40FJ4a8wljom8xAHvpvcwX89DHzNqUoAATFi6vuInaBpVCCXAtk7b
5uJBBgJRDmuFEDLnqXIlrOUAxDIfQCM2ZUm+8JkbqN4pu1i6jv4FRaDcmraF
Pir66yQew3dxplnrOMqThasugJe2uVoescxZzVSoRlDfbWogTQY+1+0XM+7V
Qpccyu8Q40DBFy56qm7ZERr/B7oMWTDI+ODsJ0qSwY2A65QuOdIMv2KGDymV
xiTkAKPdHCmhCzDSHBPwlN1FCk8kWPYF0ygAp+oCrpDHLMcgvBSiSU/cv38U
SfS3gYy81f37kKYp+2R7hjKLbQ9CWE6EpRLTLWAK5G3TWd2Xa38HZER+PUJ0
S/aH1uXFIJyQHxvD4Kjlc3D/ARQzBYf6jO0hVn5YM0cSkT1sHp3LSQ9rQxCV
X1jLiszC9Tz0XBiaoG4JwZOXaiwyOCMl8igc3Nj/+brWIy1SwgJR+UgMGRRR
BECV84acXGF/rIymCAxIxM8QQ1CjylaKIRHy3AhzS9eHiAIWCvhjsf4eFDVN
11lbVwUbYILyAWsiaF2DgUdrAlAcKRKelxg9Sdyp+Ya0nK7xACwN0HMwMBAZ
MNH1kjhNGyS9NhcAfYeRACcXdAZLXXANlwE4LOCo8gPaybP3TaXtcdDGwQoz
hOcmwAjXyzMuFOH7VPYAt1Ca+FToP3okbQPoxSuxj+mAkkyCRaQmrmFmAPhj
wS7L+QGFKBgVrNnX8LXH0zHNg/GAYfCrNjSmEHI+SFq0Th1lf4HHMZ9FvSb9
QyfOXSc7CBbxQ6VBmGkAHxcxtl+wMySLihrxcOF50n7VcEAeZ7V4FmSpDCfi
H3i1d3L4y/k/++KHeIlep4uMkGG8oEQIY7zRbbpCkcYCToCXFHDC4AJNM3Mv
MHKFMdy+nIGZoasDw9Rx3FBC5minevhZos9jnmJLyI5S4Hi8i5AzSIpsJCoT
7bWs8lClE6DHiWv8AcWYM13kOufAK98neyQfYulbmsZeQL6HdaExvhTJRUlH
llLTBygUuWpv7JLstLdfl7BuylWNGFXAhe9zEOOlrMWSSRyGUFTTEwkaMMD2
2aEhwpQ+YsEC6SM3oABL37CwrIBL5eRgUPA9rKpoSqBiWp2QsxS+WayHJkF/
qfMVxzlbSI8iWUjBXFpNQVcZTcGtrniHJXwPLozshgxy5x2mAgEQaXIyKy7P
ZeZS7qWSI42unerZ7Ebq3U0C1kmoIclzkySAQfGJAIT8y+tqiaG6WlUnDYmZ
VWGMY3hqloNjsvwV1REcYcgAVOURxiq1lCbLU0nqWEIOALbMRm5rgGqFqlTh
OwhfS7Aicr+A5ThA0aLbRygFceZxTESxo6qSbdUrLnfsqs6ELC41Q2DYK5kn
0aOC0Rk80LMLUlbpTYEIpYD24mP6pS1DWYUp4MJgHkSF2Mk5aw2vpxsKmf2i
2iP50NjEHB2OW8ZiTjasapAYUA3ER3PUXKSC/axE9OAvJnKUG1lJrrkl1U4P
Pk0xlHqQuCRimgc+en8u34sQY/IxS7XdSlbHxbaSh4peCIZD9PtSVVpXFdVb
Bv9J3W03CTCG2vBTD7gJl0EurI1UqEFalMU9+K+rP4MNrDB1iFbql9LIVbRT
HbeLhrXt98nJHyEBRa6jIqCtWD9yv1TsM6yfFPpnGmU2L3ajPAHhMV99OY+x
EECDnMVLArzBV1UYNiZPFAZFFlVQ0ci6vuI6TRCA7w7DXA2OTh1jKWVlgBgo
T5xHnKFRqUTlth0WMWRQPEe8Ne4FfsadsmYZrbX6Q5LqlCDLtTqj10f3dyqJ
CNDD89VCphxcPUKR6sCCSu2rwRR17ZDOgkWjwhbNlXqbhEKIbmssY2pNkxuk
jk+i8dG10unh6+P9g8OXhyfnb/e/O3t1/Ob88O3r/fMfRvfvizep5lmT39aC
Mz7HAFfpgYuFJSU3kkenCq4crEUSx5mKJUGqfBY4CCVFD8tF5LDJKXTeQxNt
YO/aA4TgVrTR2kSdHh63pQc0EATMNYLO4ekWYKquZlXGUXRFKLfjCQHQKcyF
86kSBE70VPIPnMnAh3h8rRsJFr6gqpeQWKBNT4G+EPMvEBugm6gQhzgCMEzw
gNBDhFcWKgmbEuNUJRUiXQGX3utwVTgO7Dcgc1OdNGAtUViRqQiNhVFexnbP
+n2AohmOxFmAN4gTxI7EbrkTx6HL9GyQVn3ujBL2qhj6qpV3yCODnr57946m
bpy17kR01uvx4MMLyLTfYiP8avQBFPItMu2q8wzhFpTsjJiE5wWORM1JvB1B
Ub1xe9sUnUAoqKL/cMTTTujX8AK4miMVifESJ2NsRE0N3lIVSRbiS5fyMWKC
pd4qsKHkTGXQJ9YpHSFFmmPQxFRNlXoagGlY4NS4mwYwGlxexAG1lfKUCint
MwhpdvSmMjK1UhBR1xTMIQr+nUsr89A5jhmTVwAwcDNlSwsQUGjmNrxCrTHt
8rmqY298qRNa48OyeCFCzEJ0GNWA+uIIHF8Y6gUBbGW2M2RIyn2q8IIm/SaD
9PM3eR2S1C+sUl0mubEw6mMlorqnW1NFUxdKVMYdUbbd7N/crKxuRoVMvC9a
VoqGwORiOo50uUw2fRJqroGSYvlFTSyqNahtY2IElGQp0gj4mzHJY93B+fCe
dltVY3+lHtNW1C2lRUdR6UfH2Wd33OAI9Phuwbqi84bt7Ga3p/nkFr7bKNRH
+w8TBMvOUA/A3wcfQCnIOb4NiNy3+nfLWVpMbPCYFTaVeag5TERGUPkT+E2s
NCzZjpNGAtHqFnm4ZVSxGPVwS0apHw9VfTg4gdq2jeZtYtf6eGv7ihS9C1X+
WE/XwXyhmri7rTlXf72xPW9gK03tfRGqCIyCAj1ZoUs843zwJOYSsF7P8e+R
/r1YzoUetlbTUxXx7oayfDcCVeepOp0Rq6BEaa0KQNc6SmmFR7qOobNfx4u4
UhuzXKGsG7MMFxOwCiDqUWOmHtRSQLWAoFrAcRZta+X3eUDz1GouEUbpHUt3
ouLxc2ttkvPzzKoISyqpChJTHaE5Y20kGEOqFpFxxGeCjG0IUnqoOFTrHKdk
KJIbysq9WOz7QbXuBVj2Uacqxs40Zn+Q96RglwayaXB4EMmtOX5dUEFNPaHJ
pkkP0aRZQeAAcsmael5TRpVzAVWmW3Mpc3iCmiuT9usM7MkaTFGBhcXMLj5h
mkm66Ye+so2LtGQS+r3i2wdHCJ49t7B8BhdvwR1YT741IxoHIQSuF0MdQ4zo
wwda6tOIzq0jhANauFw5V8plae5VGlZVZ2WK06bmU221i+nomBQ00NAlrQHA
2TWXJohwFqsXyTzDdowZhef8fZOgUb+Trdueq8EJ06IdRbl8ad6A2qAJzYJj
rx8XSOpJHRdUCEYszdeolQqo32qtC6j/ZZDEkVkgcEd12hTJPSQXxdRHvXun
IK3XS/5dNIIgfUDRpQtcLNvJk2iEN45w9n+ejt7Pw1GUjhDQqBEASRYX0wbv
jfo8c5zymjPRoaWjTSs4O3Qzqa6XbbhPfFNZaPktPwkewUuCBS/phH8d8iSK
ZO6TpbZq0MSH7wdq3Y+eN+EVcOIgXqySYDrLxF3vHi5T3eVFr+cJrebhjpzA
tjTNKFl1TcoAeB1lqgONRzMp++A0CSr2iXHlEOgjY190IWsWx4bqJlPWus6l
G+ayw3ZaJRrIfq3do20X3IKzJxNoPZyx+oGZ8uECsmKmoHfKOHrWyllQgSnO
HuJHXInaGz4ePhxup4utwRIbaN2qnnkd9ofP2utsi4FsDcbb8Hf6gSTErY4S
wuaG3kyGoAsWps2A1H3M3ALmeoNssCj1aBFVNlCkYBT3lub/U/Vz/Qb4Qf0i
xGCgOoBiJChLqRQilZTYLjAM2L6BRqEHOyVDMzj+o35mDk7yyTPr6prgxP/q
qq8MgNd44TjT4JJ6ydX1T4qe3hp6SuCuJ65rE3X3+eHr08OD/fPD5/c6Nrpr
I2oZ+Q3RtbWpjDbcMShrgPo6IOTtleAW7lcNwrNvbRbkcO+LF1aJiLsnhz/f
K1Fds4Cd1hZgv0yyyQh2PrcR7NyMr430KdYGX50NWNgcaGKQOztkFjtrzaKm
IA/bKQivZqBcz424d2zW491tQyHe2NuhQHuvrlQPP7dSPbyBUm3iSdem7TMr
F7P+eh3r7WzwtA/bq9SuVinuqeCiMqzxt/JA+ITlfPB5/IPwd0u6ciFXogN/
eojkbom7JAHzU+kppWNQBkGObj9zVX1+7bM1/bxGQ9fraHst3dVaWuJsBdj2
jLaUdbcKbK3uttXez5cgWGgda90hXd5do8u2+K/KytcEa4Merh2grJNrU5It
9fM6OA26+oUrYxVMncxq8lMWXs0pPao5JdOXLVDsauT8UiY2NX16s4a1upy6
WPBReC0zAH1ALB6VhGPk9+hL8S+PaiLVNKwX6415VhOxYWHXZs1tO6Bikqe9
7ykESP7jUQv/YYu3jXmWa48/qDC3MOAaoOLT63IdTm/bFxJqnxUWoLfjY5nW
W3AjZYANPqWrFojYLKgXf5tYtvMflu20qZf3biFM8HuB1VVGdpxTjURDE0DR
a3HNithN0nxYl2ZTz67wW1s0NlqKeO+2RVziWhnYzVioa3vCrwzQ5uR2drT7
H87fEud325jj43p3wiJmvCpnj3gjJZmGRFqRVk0yY0+thNajmQD1+HO3IR7X
2xAFvWVOfhzxTVk2c+Br64TVi71SQ+wxZWyPrzHwtU+XFIKXl+KsDe720rl1
y26SfmP76YaqX4ZVqEIbPtSztTVW8ylLzusZdLssEhV70SayXen5RDmxXqUN
VvFkqoVoVpuU3BM/i8M/+fQ+igfbKIknShI1mjboa5XAbo2yr9T3EPKtZqIs
Yq+fjnryaaVWllRrtew2aCj9q1PVIsA/Bds4nC+yFdvXdVhIc2s9eD+tc5Fu
/92C91PgbjMt1xtFQVjXpugrNoin7admn262hZoUvzxBbav2wweg9/tW4K0v
lq50ShumZBvqEwQOsBu7jJXrn7HNCJj0KtRv1zZunBp/UIXxx5i6OCjLlpc9
PGjVgfwIb9cyY71Wkq3lWFHhMpSv1A2ul+INy5H1pv1ZZoA+kR1Xtowsa8KG
1PuL0+n1Yqyod4uAMaSAUWzfU+AQ0DZduGi3XPpg+xNXzsLPTWvZhu7nbnYM
h8ToBprK7GlBYLdM2FfqLxj9LZa0Dcd/VBmO/zwy/N3XJX4ikW2dA+9ct06I
d1hseMGnYdkAc+suvrdQ7Fai37G5t2Yp0bA8LVZawzHcWb9wo/Lcdqs1mh9u
CNBfUZJ6bBjKBrBuAeJ2K2w2i6fdGpvyfR8ltq1zrI1dwSGuvDyi3fVmceBJ
wpZ3v+TZk1JFCBqP+oz3FPuXhLQ9Er+UqF7UVy8wyyXdatWKNIb6b1iePySg
+Id4/rBCWsGA6i/rNffaGnJT9rmFJ8NVm40srIH8aJ7WIWomdzV3NtSb7Y35
M0YupRtswevWe+K/qzW2UlGk07XmYunUBqPapF9/PPW5Zm3MOq43eZZdqhVU
nK5jzospcAO68rt/eFOA3hCiLi60mONWkCZNQHwB1qW9NqGQ426bzOXTZqK7
lNaUqV7f474hC8oAmR9dzYKvOWXddW0FrDRCPyti4y2S6TIVtzKt8qVrnXtN
3t3ApPGfjknjrYuTR+RDG9y+3llVu3qJGwXQi9S8J77aZAH30ZWJ3mCYo8As
wEvqXdBGN/ros9fzj0hUdbrL3P1YJpShaY50NRO2d6QttiTbJO09EHa0xXRM
17xObesVveVMR2+ZzT9wv2DcFKK0bVUxjlZ13n+CuF5srq+xXDfPs9d2ccrv
MA+Ai9KAgzw7dsPWaXUSYO9rDahr+757/OK8/lfY/R7tbzFsV57+HjN0ZpFh
Cb1r+/tqeaF11Z7isUDV+vp/wLm6PU5g9txKA2SDBrRtDX0eBdi5PQXY+TMp
wPj6tWIt5v5au/vb8+h2Ba92ilrrzyu+e8Ps155JwJotwW3rBm9JzStUVjXT
dltdg2LTRGQzOeOWNv27U7PTNRi2eReH/8e/W2+yorYa4eXhH7vlyoYdTOp7
rTg32mylOgSr6sbdUZzfbdOgj9iA5dO/5cKDbP+uS/1dSe3ujCUV/q9uQb6c
uHhszfCBvrI2QjaZWVsDq7160fBK3ccxsICz5SsXxYOGYb01CfT18bTFC5M1
K7SNe1BIkULgXkML56oi3caexAZJD79sgRbP3/AdmgaB7q3tYtzIK9v7Qtz+
Dlg29DXO+TY3wlLjET8aHfXOxzrPVrtX9XQGf5P9q7TAv7C9WbbuFioLtd4r
3ZRDCMgOL2XE3EGLeI4b3/GJKLypIk784sEfqei8fHN2jkc04//i5BV9Pj38
nzdHp4fP8fPZD/vHx+aDo+44++HVm+PnxafiyYNXL8HJPeeH4aooXXI6L/d/
7XCzp/Pq9fnRq5P94079BCxcJMGbJOKeiQlwOuNt9dg3jVk43x28/r//xZmS
D/91+uJgZzh8enWlvjwZPt6FL7i5PY9Gx8XzVzw93eHjH0jEYQhiWQSZS4eb
0Tnvy0jg/q59x7n/D+TMP0fim7G3GO5+qy4gwaWLmmeli8Sz+pXaw8zEhksN
wxhulq5XOF3Gd//X0nfNd+viN3/FnWhFb/jkr986qEKvrNNQQZ3Qlyd6D+H6
CYvIYOuUDzzFO6fD33DrzZAOcVQHqNthw8znjVdbHCBDp1HysZBLd6VPNtk3
50W9NCe20LlFeGTPWTzJlqxS+iQjPMlEHSrE59bhxYpj4fedLVdhHXOrzkri
XUHTfDrFjfagoDObjFZPs62fPfi9jBRPEceXfNBR5RBKje4smM5C2omyEZ3W
+9rWDwek0wVAuHTSSvW4G4X3QenAwJ/w3BKDd/HNQheYrbMCFCweP1LelLdA
XfPOmuhNBZ8SF+tDSbToeWtOQuk8UQcEIIwfo3gZSh9U7By364WUoDioiTcu
rjAWkLGZxSyGrIsckQ35wkDOFGTqy0sXF3L58SIrHeNaTETgEXvSy2m74qr5
lI911p3ttHROXvMJY+2Or7bYXDunj04wxs2Yu6Vzdq1D6KIV73CssU+C9AKP
JVrFkc9H7NJJZqlO2PSho2VMzaa5xG7rnOY+eZej/ZP9a/iiTlehO10+dUqf
CY2nvyKUfU+Lh6TofBhF+XyMRz/9d2cCzlx2rjjc6W1Yi+MZmb9udMFnEOGJ
asU2rap2XKrakbJR3a0BM8NJCTrONIgWOW8DO5HSR6z65fFcz9KfGe61H0wD
9Khsg+pUlhPMlM4yuUjtgyh5L25ryUNAe3VDWr0IlCGazYj5vBQ3hOFtCLMs
W6SjwWAKGU4+xqPbB1wA95bTASWPEQw9CNI0l+lg+PCB8/9/Q0YAJYYAAA==

-->

</rfc>
