opengeospatial / styles-and-symbology

OGC Styles & Symbology Standards
Other
11 stars 6 forks source link

Unique values map #18

Open ebocher opened 1 year ago

ebocher commented 1 year ago

Existing conformance classes required for this use case:

Example stylesheet:

Below a CSS encoding to describe a unique values map to display Local Climate Zones type (LCZ_PRIMARY property).

/* Metadata
* @title Local Climate Zones I
* @abstract Local Climate Zones I
*/

/* Main rule*/

* {
  stroke: rgb(255,255,255);
  stroke-width: 0.26;

/* Styling according to the Local Climate Zones */

  /* @title LCZ 1: Compact high-rise */
  [LCZ_PRIMARY = 1] {
    fill: rgb(139, 1, 1);
  };
  /* @title LCZ 2: Compact mid-rise */
  [LCZ_PRIMARY = 2] {
    fill: rgb(204, 2, 0);
  };
  /* @title LCZ 3: Compact low-rise */
  [LCZ_PRIMARY = 3] {
    fill: rgb(252, 0, 1);
  };
  /* @title LCZ 4: Open high-rise */
  [LCZ_PRIMARY = 4] {
    fill: rgb(190, 76, 3);
  };
  /* @title LCZ 5: Open mid-rise */
  [LCZ_PRIMARY = 5] {
    fill: rgb(255, 102, 2);
  };
  /* @title LCZ 6: Open low-rise */
  [LCZ_PRIMARY = 6] {
    fill: rgb(255, 152, 86);
  };
  /* @title LCZ 7: Lightweight low-rise */
  [LCZ_PRIMARY = 7] {
    fill: rgb(251, 237, 8);
  };
  /* @title LCZ 8: Large low-rise */
  [LCZ_PRIMARY = 8] {
    fill: #bcbcba;
  };
  /* @title LCZ 9: Sparsely built */
  [LCZ_PRIMARY = 9] {
    fill: rgb(188, 188, 186);
  };
  /* @title LCZ 10: Heavy industry */
  [LCZ_PRIMARY = 10] {
    fill: rgb(87, 85, 90);
  };
  /* @title LCZ A: Dense trees */
  [LCZ_PRIMARY = 101] {
    fill: rgb(0, 103, 0);
  };
  /* @title LCZ B: Scattered trees */
  [LCZ_PRIMARY = 102] {
    fill: rgb(5, 170, 5);
  };
  /* @title LCZ C: Bush,scrub */
  [LCZ_PRIMARY = 103] {
    fill: rgb(100, 132, 35) ;
  };
  /* @title LCZ D: Low plants */
  [LCZ_PRIMARY = 104] {
    fill: rgb(187, 219, 122);
  };
  /* @title LCZ E: Bare rock or paved */
  [LCZ_PRIMARY = 105] {
    fill: rgb(1, 1, 1);
  };
  /* @title LCZ F: Bare soil or sand */
  [LCZ_PRIMARY = 106] {
    fill: rgb(253, 246, 174);
  };
  /* @title LCZ G: Water */
  [LCZ_PRIMARY = 107] {
    fill: rgb(109, 103, 253);
  };
}

Describe any capability not already addressed by existing conformance classes:

Example image illustrating the portrayal use case:

unique_values_lcz

Material: Data : https://github.com/orbisgis/POC-Carto/blob/main/data/rsu_lcz.geojson

Tool : https://github.com/orbisgis/POC-Carto Based on Geotools library

maxcollombin commented 1 year ago

Mapbox JSON encoding

{
  "version": 8,
  "name": "Default Styler",
  "layers": [
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        1
      ],
      "id": "LCZ 1: Compact high-rise",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        2
      ],
      "id": "LCZ 2: Compact mid-rise",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        3
      ],
      "id": "LCZ 3: Compact low-rise",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        4
      ],
      "id": "LCZ 4: Open high-rise",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        5
      ],
      "id": "LCZ 5: Open mid-rise",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        6
      ],
      "id": "LCZ 6: Open low-rise",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        7
      ],
      "id": "LCZ 7: Lightweight low-rise",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        8
      ],
      "id": "LCZ 8: Large low-rise",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        9
      ],
      "id": "LCZ 9: Sparsely built",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        10
      ],
      "id": "LCZ 10: Heavy industry",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        101
      ],
      "id": "LCZ A: Dense trees",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        102
      ],
      "id": "LCZ B: Scattered trees",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        103
      ],
      "id": "LCZ C: Bush,scrub",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        104
      ],
      "id": "LCZ D: Low plants",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        105
      ],
      "id": "LCZ E: Bare rock or paved",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        106
      ],
      "id": "LCZ F: Bare soil or sand",
      "type": "fill"
    },
    {
      "filter": [
        "==",
        "LCZ_PRIMARY",
        107
      ],
      "id": "LCZ G: Water",
      "type": "fill"
    },
    {
      "filter": [
        "all",
        [
          "!=",
          "LCZ_PRIMARY",
          1
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          2
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          3
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          4
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          5
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          6
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          7
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          8
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          9
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          10
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          101
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          102
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          103
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          104
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          105
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          106
        ],
        [
          "!=",
          "LCZ_PRIMARY",
          107
        ]
      ],
      "id": "",
      "type": "line"
    }
  ]
}
maxcollombin commented 1 year ago

SLD encoding

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?mso-application progid="Word.Document"?>
<pkg:package
    xmlns:pkg="http://schemas.microsoft.com/office/2006/xmlPackage">
    <pkg:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="512">
        <pkg:xmlData>
            <Relationships
                xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
                <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
                <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
                <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="word/document.xml"/>
            </Relationships>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml">
        <pkg:xmlData>
            <w:document
                xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
                xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
                xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
                xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
                xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
                xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
                xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
                xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
                xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
                xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
                xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
                xmlns:o="urn:schemas-microsoft-com:office:office"
                xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
                xmlns:v="urn:schemas-microsoft-com:vml"
                xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
                xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
                xmlns:w10="urn:schemas-microsoft-com:office:word"
                xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
                xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
                xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
                xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
                xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
                <w:body>
                    <w:tbl>
                        <w:tblPr>
                            <w:tblW w:w="0" w:type="auto"/>
                            <w:tblBorders>
                                <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                            </w:tblBorders>
                            <w:tblLayout w:type="fixed"/>
                            <w:tblLook w:val="01E0" w:firstRow="1" w:lastRow="1" w:firstColumn="1" w:lastColumn="1" w:noHBand="0" w:noVBand="0"/>
                        </w:tblPr>
                        <w:tblGrid>
                            <w:gridCol w:w="4616"/>
                            <w:gridCol w:w="4672"/>
                        </w:tblGrid>
                        <w:tr w:rsidR="00A3778C" w14:paraId="3A457335" w14:textId="77777777">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4616" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p w14:paraId="0A8E7160" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:bookmarkStart w:id="0" w:name="OLE_LINK1"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>3.2.1</w:t>
                                    </w:r>
                                    <w:bookmarkEnd w:id="0"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:tab/>
                                        <w:t>Service de l'économie, du tourisme et de l'innovation</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4672" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p w14:paraId="15A01B56" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                            <w:lang w:val="de-CH"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Dienstelle für Wirtschaft, Tourismus und Innovation</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <w:tr w:rsidR="00A3778C" w:rsidRPr="00A35320" w14:paraId="79505CB0" w14:textId="77777777">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4616" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:bottom w:val="nil"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p w14:paraId="15617E3D" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:i/>
                                            <w:u w:val="single"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:i/>
                                            <w:noProof/>
                                            <w:u w:val="single"/>
                                        </w:rPr>
                                        <w:t>Proposition de la commission EE/VE par Nathan Bender</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4672" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:bottom w:val="nil"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p w14:paraId="5834B6A9" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRPr="00ED2D8A" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:i/>
                                            <w:u w:val="single"/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:i/>
                                            <w:noProof/>
                                            <w:u w:val="single"/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t>Vorschlag der Kommission EE/VE durch Nathan Bender</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <w:tr w:rsidR="00A3778C" w14:paraId="427172E3" w14:textId="77777777">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4616" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:bottom w:val="nil"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="E6E6E6"/>
                                </w:tcPr>
                                <w:p w14:paraId="1B00D057" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Prestations</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4672" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                        <w:bottom w:val="nil"/>
                                    </w:tcBorders>
                                    <w:shd w:val="clear" w:color="auto" w:fill="E6E6E6"/>
                                </w:tcPr>
                                <w:p w14:paraId="09454B96" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:b/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Leistungen</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <w:tr w:rsidR="00A3778C" w14:paraId="347ADC77" w14:textId="77777777">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4616" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p w14:paraId="15514D8D" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Objectif politique n°1</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4672" w:type="dxa"/>
                                    <w:tcBorders>
                                        <w:top w:val="nil"/>
                                    </w:tcBorders>
                                </w:tcPr>
                                <w:p w14:paraId="6B18E0F4" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Politisches Ziel Nr. 1</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <w:tr w:rsidR="00A3778C" w14:paraId="77F5E28E" w14:textId="77777777">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4616" w:type="dxa"/>
                                </w:tcPr>
                                <w:p w14:paraId="68688364" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Sous-objectif n°1, 2</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4672" w:type="dxa"/>
                                </w:tcPr>
                                <w:p w14:paraId="0C857C15" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:strike/>
                                            <w:lang w:val="de-CH"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Politisches Teilziel Nr. 1, 2</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <w:tr w:rsidR="00A3778C" w14:paraId="7216263B" w14:textId="77777777">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4616" w:type="dxa"/>
                                </w:tcPr>
                                <w:p w14:paraId="2F0152E1" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Mesure prioritaire n°1-4</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4672" w:type="dxa"/>
                                </w:tcPr>
                                <w:p w14:paraId="60D54DCA" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:jc w:val="both"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:strike/>
                                            <w:lang w:val="de-CH"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                        <w:t>Prioritäre Massnahme Nr. 1-4</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                        <w:tr w:rsidR="00A3778C" w14:paraId="2DA51AF7" w14:textId="77777777">
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4616" w:type="dxa"/>
                                </w:tcPr>
                                <w:p w14:paraId="56C59C32" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">1 Définition et mise en </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>oeuvre</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> d'une stratégie pour un tourisme « 4 saisons »</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="76060041" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">Mise en </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>oeuvre</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> de la stratégie </w:t>
                                    </w:r>
                                    <w:r>
                                        <w:br/>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="5F44B280" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>Adoption par le Conseil d'Etat (2023)</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="6980C020" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>2 Mise en place d'un paquet de mesures pour développer l'attractivité de la place économique valaisanne : fiscalité-allègement des contraintes administratives-digitalisation de l'administration-flexibilisation raisonnable des horaires d'ouverture des magasins</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="0B576D7C" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>Etat d'avancement des mesures par les services concernés (2023)</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="340FEA11" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>3 Révision de la loi sur la politique économique cantonale</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="6193549B" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> Finalisation et entrée en vigueur de la révision de la loi sur la politique économique cantonale</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="6C21B49E" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">Soumission projet de révision </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>LPolEco</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> au Conseil d'Etat (2023)</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="641B0A55" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>4 Objets stratégiques fédéraux prioritaires conduits et suivi par le Conseil d'Etat, vis les départements : promotion économique 2020-2023</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="7C683F4F" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- Mise en </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>oeuvre</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> de la convention-programme NPR </w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>(2020-2023)</w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>(2023)</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                            <w:tc>
                                <w:tcPr>
                                    <w:tcW w:w="4672" w:type="dxa"/>
                                </w:tcPr>
                                <w:p w14:paraId="4651B123" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRPr="00ED2D8A" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t>1 Festlegung und Umsetzung einer Strategie für einen «Vier-Jahreszeiten-Tourismus»</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="470553DF" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRPr="00ED2D8A" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t>- Umsetzung der Strategie</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="326F68C8" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRPr="00ED2D8A" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t>Annahme durch den Staatsrat (2023)</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="7713812B" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRPr="00ED2D8A" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t>2 Einführung eines Massnahmenpakets zur Erhöhung der Attraktivität des Wirtschaftsstandortes Wallis: Steuerwesen - Bürokratieabbau - Digitalisierung der Verwaltung - vernünftige Flexibilisierung der Ladenöffnungszeiten</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="424F3785" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRPr="00ED2D8A" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t>Stand der Umsetzung der Massnahmen durch die betroffenen Dienststellen (2023)</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="7411CE8B" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">3 </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>Revision</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> des </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>Gesetzes</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>über</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> die </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>kantonale</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>Wirtschaftspolitik</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                </w:p>
                                <w:p w14:paraId="6A2D938B" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>Fertigstellung</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>und</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>Inkrafttreten</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> der </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>Revision</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> des </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>Gesetzes</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>über</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> die </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>kantonale</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>Wirtschaftspolitik</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                </w:p>
                                <w:p w14:paraId="71822ECF" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>Unterbreitung</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> des </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>Entwurfs</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>für</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> die </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>Revision</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> des </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>GkWPol</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>an</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> den </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>Staatsrat</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> (2023)</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="2A4AA9F2" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRPr="00ED2D8A" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r w:rsidRPr="00ED2D8A">
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:lang w:val="en-US"/>
                                        </w:rPr>
                                        <w:t>4 Prioritäre strategische Bundesdossiers, die durch den Staatsrat via Departemente geleitet und überwacht werden: Wirtschaftsförderungsprogramm 2020-2023</w:t>
                                    </w:r>
                                </w:p>
                                <w:p w14:paraId="0D666E60" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="007F109E">
                                    <w:pPr>
                                        <w:spacing w:before="120" w:after="120"/>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                            <w:noProof/>
                                        </w:rPr>
                                    </w:pPr>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve">- </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>Umsetzung</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> der </w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellStart"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t>Programmvereinbarung</w:t>
                                    </w:r>
                                    <w:proofErr w:type="spellEnd"/>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"> NRP </w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:strike/>
                                        </w:rPr>
                                        <w:t>(2020-2023)</w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                        </w:rPr>
                                        <w:t xml:space="preserve"></w:t>
                                    </w:r>
                                    <w:r>
                                        <w:rPr>
                                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                                            <w:b/>
                                        </w:rPr>
                                        <w:t>(2023)</w:t>
                                    </w:r>
                                </w:p>
                            </w:tc>
                        </w:tr>
                    </w:tbl>
                    <w:p w14:paraId="2A660044" w14:textId="77777777" w:rsidR="00A3778C" w:rsidRDefault="00A3778C" w:rsidP="00A35320">
                        <w:pPr>
                            <w:jc w:val="both"/>
                            <w:rPr>
                                <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                                <w:lang w:val="de-CH"/>
                            </w:rPr>
                        </w:pPr>
                    </w:p>
                    <w:sectPr w:rsidR="00A3778C">
                        <w:headerReference w:type="default" r:id="rId8"/>
                        <w:footerReference w:type="even" r:id="rId9"/>
                        <w:footerReference w:type="default" r:id="rId10"/>
                        <w:pgSz w:w="11906" w:h="16838"/>
                        <w:pgMar w:top="1417" w:right="1417" w:bottom="1134" w:left="1417" w:header="708" w:footer="708" w:gutter="0"/>
                        <w:cols w:space="708"/>
                        <w:docGrid w:linePitch="360"/>
                    </w:sectPr>
                </w:body>
            </w:document>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="256">
        <pkg:xmlData>
            <Relationships
                xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
                <Relationship Id="rId8" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" Target="header1.xml"/>
                <Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
                <Relationship Id="rId7" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" Target="endnotes.xml"/>
                <Relationship Id="rId12" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" Target="theme/theme1.xml"/>
                <Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" Target="numbering.xml"/>
                <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml" Target="../customXml/item1.xml"/>
                <Relationship Id="rId6" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" Target="footnotes.xml"/>
                <Relationship Id="rId11" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="fontTable.xml"/>
                <Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" Target="webSettings.xml"/>
                <Relationship Id="rId10" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer2.xml"/>
                <Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" Target="settings.xml"/>
                <Relationship Id="rId9" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" Target="footer1.xml"/>
            </Relationships>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/footnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml">
        <pkg:xmlData>
            <w:footnotes
                xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
                xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
                xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
                xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
                xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
                xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
                xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
                xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
                xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
                xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
                xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
                xmlns:o="urn:schemas-microsoft-com:office:office"
                xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
                xmlns:v="urn:schemas-microsoft-com:vml"
                xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
                xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
                xmlns:w10="urn:schemas-microsoft-com:office:word"
                xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
                xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
                xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
                xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
                xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
                <w:footnote w:type="separator" w:id="-1">
                    <w:p w14:paraId="5C3A6806" w14:textId="77777777" w:rsidR="00E962AD" w:rsidRPr="00537970" w:rsidRDefault="00E962AD">
                        <w:r w:rsidRPr="00537970">
                            <w:separator/>
                        </w:r>
                    </w:p>
                </w:footnote>
                <w:footnote w:type="continuationSeparator" w:id="0">
                    <w:p w14:paraId="1CCDBB5C" w14:textId="77777777" w:rsidR="00E962AD" w:rsidRPr="00537970" w:rsidRDefault="00E962AD">
                        <w:r w:rsidRPr="00537970">
                            <w:continuationSeparator/>
                        </w:r>
                    </w:p>
                </w:footnote>
            </w:footnotes>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/endnotes.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml">
        <pkg:xmlData>
            <w:endnotes
                xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
                xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
                xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
                xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
                xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
                xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
                xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
                xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
                xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
                xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
                xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
                xmlns:o="urn:schemas-microsoft-com:office:office"
                xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
                xmlns:v="urn:schemas-microsoft-com:vml"
                xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
                xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
                xmlns:w10="urn:schemas-microsoft-com:office:word"
                xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
                xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
                xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
                xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
                xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
                <w:endnote w:type="separator" w:id="-1">
                    <w:p w14:paraId="6790CAF1" w14:textId="77777777" w:rsidR="00E962AD" w:rsidRPr="00537970" w:rsidRDefault="00E962AD">
                        <w:r w:rsidRPr="00537970">
                            <w:separator/>
                        </w:r>
                    </w:p>
                </w:endnote>
                <w:endnote w:type="continuationSeparator" w:id="0">
                    <w:p w14:paraId="2DC772D6" w14:textId="77777777" w:rsidR="00E962AD" w:rsidRPr="00537970" w:rsidRDefault="00E962AD">
                        <w:r w:rsidRPr="00537970">
                            <w:continuationSeparator/>
                        </w:r>
                    </w:p>
                </w:endnote>
            </w:endnotes>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/header1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.header+xml">
        <pkg:xmlData>
            <w:hdr
                xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
                xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
                xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
                xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
                xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
                xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
                xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
                xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
                xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
                xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
                xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
                xmlns:o="urn:schemas-microsoft-com:office:office"
                xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
                xmlns:v="urn:schemas-microsoft-com:vml"
                xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
                xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
                xmlns:w10="urn:schemas-microsoft-com:office:word"
                xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
                xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
                xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
                xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
                xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
                <w:p w14:paraId="77A05956" w14:textId="77777777" w:rsidR="00537970" w:rsidRPr="00537970" w:rsidRDefault="008862FE">
                    <w:pPr>
                        <w:pStyle w:val="En-tte"/>
                        <w:pBdr>
                            <w:top w:val="single" w:sz="4" w:space="1" w:color="auto"/>
                            <w:left w:val="single" w:sz="4" w:space="4" w:color="auto"/>
                            <w:bottom w:val="single" w:sz="4" w:space="1" w:color="auto"/>
                            <w:right w:val="single" w:sz="4" w:space="4" w:color="auto"/>
                        </w:pBdr>
                        <w:jc w:val="center"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                            <w:b/>
                            <w:lang w:val="fr-FR"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r>
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                            <w:b/>
                            <w:noProof/>
                            <w:lang w:val="fr-FR"/>
                        </w:rPr>
                        <w:t>DEF - DÉPARTEMENT DE L'ÉCONOMIE ET DE LA FORMATION</w:t>
                    </w:r>
                </w:p>
                <w:p w14:paraId="5D903140" w14:textId="77777777" w:rsidR="00537970" w:rsidRPr="00537970" w:rsidRDefault="008862FE">
                    <w:pPr>
                        <w:pStyle w:val="En-tte"/>
                        <w:pBdr>
                            <w:top w:val="single" w:sz="4" w:space="1" w:color="auto"/>
                            <w:left w:val="single" w:sz="4" w:space="4" w:color="auto"/>
                            <w:bottom w:val="single" w:sz="4" w:space="1" w:color="auto"/>
                            <w:right w:val="single" w:sz="4" w:space="4" w:color="auto"/>
                        </w:pBdr>
                        <w:jc w:val="center"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                            <w:b/>
                            <w:lang w:val="de-CH"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r>
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                            <w:b/>
                            <w:noProof/>
                            <w:lang w:val="de-CH"/>
                        </w:rPr>
                        <w:t>DVB - DEPARTEMENT FÜR VOLKSWIRTSCHAFT UND BILDUNG</w:t>
                    </w:r>
                </w:p>
                <w:p w14:paraId="7FBE4B93" w14:textId="77777777" w:rsidR="00537970" w:rsidRPr="00537970" w:rsidRDefault="00537970">
                    <w:pPr>
                        <w:pStyle w:val="En-tte"/>
                        <w:rPr>
                            <w:lang w:val="de-CH"/>
                        </w:rPr>
                    </w:pPr>
                </w:p>
            </w:hdr>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/footer1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml">
        <pkg:xmlData>
            <w:ftr
                xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
                xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
                xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
                xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
                xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
                xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
                xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
                xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
                xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
                xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
                xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
                xmlns:o="urn:schemas-microsoft-com:office:office"
                xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
                xmlns:v="urn:schemas-microsoft-com:vml"
                xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
                xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
                xmlns:w10="urn:schemas-microsoft-com:office:word"
                xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
                xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
                xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
                xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
                xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
                <w:p w14:paraId="65B5BC66" w14:textId="77777777" w:rsidR="00537970" w:rsidRPr="00537970" w:rsidRDefault="00537970">
                    <w:pPr>
                        <w:pStyle w:val="Pieddepage"/>
                        <w:framePr w:wrap="around" w:vAnchor="text" w:hAnchor="margin" w:xAlign="right" w:y="1"/>
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r w:rsidRPr="00537970">
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                        <w:fldChar w:fldCharType="begin"/>
                    </w:r>
                    <w:r w:rsidRPr="00537970">
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                        <w:instrText xml:space="preserve">PAGE  </w:instrText>
                    </w:r>
                    <w:r w:rsidRPr="00537970">
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                        <w:fldChar w:fldCharType="end"/>
                    </w:r>
                </w:p>
                <w:p w14:paraId="08098E4B" w14:textId="77777777" w:rsidR="00537970" w:rsidRPr="00537970" w:rsidRDefault="00537970">
                    <w:pPr>
                        <w:pStyle w:val="Pieddepage"/>
                        <w:ind w:right="360"/>
                    </w:pPr>
                </w:p>
            </w:ftr>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/footer2.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml">
        <pkg:xmlData>
            <w:ftr
                xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
                xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
                xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
                xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
                xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
                xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
                xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
                xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
                xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
                xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
                xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
                xmlns:o="urn:schemas-microsoft-com:office:office"
                xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
                xmlns:v="urn:schemas-microsoft-com:vml"
                xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
                xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
                xmlns:w10="urn:schemas-microsoft-com:office:word"
                xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
                xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
                xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
                xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
                xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
                <w:p w14:paraId="4F35FFDD" w14:textId="77777777" w:rsidR="00537970" w:rsidRPr="00537970" w:rsidRDefault="00537970">
                    <w:pPr>
                        <w:pStyle w:val="Pieddepage"/>
                        <w:framePr w:wrap="around" w:vAnchor="text" w:hAnchor="margin" w:xAlign="right" w:y="1"/>
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r w:rsidRPr="00537970">
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                        <w:fldChar w:fldCharType="begin"/>
                    </w:r>
                    <w:r w:rsidRPr="00537970">
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                        <w:instrText xml:space="preserve">PAGE  </w:instrText>
                    </w:r>
                    <w:r w:rsidRPr="00537970">
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                        <w:fldChar w:fldCharType="separate"/>
                    </w:r>
                    <w:r w:rsidR="008862FE">
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                            <w:noProof/>
                        </w:rPr>
                        <w:t>1</w:t>
                    </w:r>
                    <w:r w:rsidRPr="00537970">
                        <w:rPr>
                            <w:rStyle w:val="Numrodepage"/>
                        </w:rPr>
                        <w:fldChar w:fldCharType="end"/>
                    </w:r>
                </w:p>
                <w:p w14:paraId="65A59308" w14:textId="77777777" w:rsidR="00537970" w:rsidRPr="00537970" w:rsidRDefault="008862FE">
                    <w:pPr>
                        <w:pStyle w:val="Pieddepage"/>
                        <w:ind w:right="360"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                        </w:rPr>
                    </w:pPr>
                    <w:r>
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                            <w:noProof/>
                        </w:rPr>
                        <w:t>Budget 2023</w:t>
                    </w:r>
                    <w:r w:rsidR="003E43F1">
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                            <w:noProof/>
                        </w:rPr>
                        <w:t> : amendements déposés</w:t>
                    </w:r>
                </w:p>
                <w:p w14:paraId="1C067A44" w14:textId="77777777" w:rsidR="00537970" w:rsidRPr="00537970" w:rsidRDefault="00537970">
                    <w:pPr>
                        <w:pStyle w:val="Pieddepage"/>
                        <w:ind w:right="360"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial"/>
                        </w:rPr>
                    </w:pPr>
                </w:p>
            </w:ftr>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/theme/theme1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.theme+xml">
        <pkg:xmlData>
            <a:theme
                xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" name="Larissa">
                <a:themeElements>
                    <a:clrScheme name="Larissa">
                        <a:dk1>
                            <a:sysClr val="windowText" lastClr="000000"/>
                        </a:dk1>
                        <a:lt1>
                            <a:sysClr val="window" lastClr="FFFFFF"/>
                        </a:lt1>
                        <a:dk2>
                            <a:srgbClr val="1F497D"/>
                        </a:dk2>
                        <a:lt2>
                            <a:srgbClr val="EEECE1"/>
                        </a:lt2>
                        <a:accent1>
                            <a:srgbClr val="4F81BD"/>
                        </a:accent1>
                        <a:accent2>
                            <a:srgbClr val="C0504D"/>
                        </a:accent2>
                        <a:accent3>
                            <a:srgbClr val="9BBB59"/>
                        </a:accent3>
                        <a:accent4>
                            <a:srgbClr val="8064A2"/>
                        </a:accent4>
                        <a:accent5>
                            <a:srgbClr val="4BACC6"/>
                        </a:accent5>
                        <a:accent6>
                            <a:srgbClr val="F79646"/>
                        </a:accent6>
                        <a:hlink>
                            <a:srgbClr val="0000FF"/>
                        </a:hlink>
                        <a:folHlink>
                            <a:srgbClr val="800080"/>
                        </a:folHlink>
                    </a:clrScheme>
                    <a:fontScheme name="Larissa">
                        <a:majorFont>
                            <a:latin typeface="Cambria"/>
                            <a:ea typeface=""/>
                            <a:cs typeface=""/>
                            <a:font script="Jpan" typeface="MS ゴシック"/>
                            <a:font script="Hang" typeface="맑은 고딕"/>
                            <a:font script="Hans" typeface="宋体"/>
                            <a:font script="Hant" typeface="新細明體"/>
                            <a:font script="Arab" typeface="Times New Roman"/>
                            <a:font script="Hebr" typeface="Times New Roman"/>
                            <a:font script="Thai" typeface="Angsana New"/>
                            <a:font script="Ethi" typeface="Nyala"/>
                            <a:font script="Beng" typeface="Vrinda"/>
                            <a:font script="Gujr" typeface="Shruti"/>
                            <a:font script="Khmr" typeface="MoolBoran"/>
                            <a:font script="Knda" typeface="Tunga"/>
                            <a:font script="Guru" typeface="Raavi"/>
                            <a:font script="Cans" typeface="Euphemia"/>
                            <a:font script="Cher" typeface="Plantagenet Cherokee"/>
                            <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
                            <a:font script="Tibt" typeface="Microsoft Himalaya"/>
                            <a:font script="Thaa" typeface="MV Boli"/>
                            <a:font script="Deva" typeface="Mangal"/>
                            <a:font script="Telu" typeface="Gautami"/>
                            <a:font script="Taml" typeface="Latha"/>
                            <a:font script="Syrc" typeface="Estrangelo Edessa"/>
                            <a:font script="Orya" typeface="Kalinga"/>
                            <a:font script="Mlym" typeface="Kartika"/>
                            <a:font script="Laoo" typeface="DokChampa"/>
                            <a:font script="Sinh" typeface="Iskoola Pota"/>
                            <a:font script="Mong" typeface="Mongolian Baiti"/>
                            <a:font script="Viet" typeface="Times New Roman"/>
                            <a:font script="Uigh" typeface="Microsoft Uighur"/>
                            <a:font script="Geor" typeface="Sylfaen"/>
                        </a:majorFont>
                        <a:minorFont>
                            <a:latin typeface="Calibri"/>
                            <a:ea typeface=""/>
                            <a:cs typeface=""/>
                            <a:font script="Jpan" typeface="MS 明朝"/>
                            <a:font script="Hang" typeface="맑은 고딕"/>
                            <a:font script="Hans" typeface="宋体"/>
                            <a:font script="Hant" typeface="新細明體"/>
                            <a:font script="Arab" typeface="Arial"/>
                            <a:font script="Hebr" typeface="Arial"/>
                            <a:font script="Thai" typeface="Cordia New"/>
                            <a:font script="Ethi" typeface="Nyala"/>
                            <a:font script="Beng" typeface="Vrinda"/>
                            <a:font script="Gujr" typeface="Shruti"/>
                            <a:font script="Khmr" typeface="DaunPenh"/>
                            <a:font script="Knda" typeface="Tunga"/>
                            <a:font script="Guru" typeface="Raavi"/>
                            <a:font script="Cans" typeface="Euphemia"/>
                            <a:font script="Cher" typeface="Plantagenet Cherokee"/>
                            <a:font script="Yiii" typeface="Microsoft Yi Baiti"/>
                            <a:font script="Tibt" typeface="Microsoft Himalaya"/>
                            <a:font script="Thaa" typeface="MV Boli"/>
                            <a:font script="Deva" typeface="Mangal"/>
                            <a:font script="Telu" typeface="Gautami"/>
                            <a:font script="Taml" typeface="Latha"/>
                            <a:font script="Syrc" typeface="Estrangelo Edessa"/>
                            <a:font script="Orya" typeface="Kalinga"/>
                            <a:font script="Mlym" typeface="Kartika"/>
                            <a:font script="Laoo" typeface="DokChampa"/>
                            <a:font script="Sinh" typeface="Iskoola Pota"/>
                            <a:font script="Mong" typeface="Mongolian Baiti"/>
                            <a:font script="Viet" typeface="Arial"/>
                            <a:font script="Uigh" typeface="Microsoft Uighur"/>
                            <a:font script="Geor" typeface="Sylfaen"/>
                        </a:minorFont>
                    </a:fontScheme>
                    <a:fmtScheme name="Larissa">
                        <a:fillStyleLst>
                            <a:solidFill>
                                <a:schemeClr val="phClr"/>
                            </a:solidFill>
                            <a:gradFill rotWithShape="1">
                                <a:gsLst>
                                    <a:gs pos="0">
                                        <a:schemeClr val="phClr">
                                            <a:tint val="50000"/>
                                            <a:satMod val="300000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                    <a:gs pos="35000">
                                        <a:schemeClr val="phClr">
                                            <a:tint val="37000"/>
                                            <a:satMod val="300000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                    <a:gs pos="100000">
                                        <a:schemeClr val="phClr">
                                            <a:tint val="15000"/>
                                            <a:satMod val="350000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                </a:gsLst>
                                <a:lin ang="16200000" scaled="1"/>
                            </a:gradFill>
                            <a:gradFill rotWithShape="1">
                                <a:gsLst>
                                    <a:gs pos="0">
                                        <a:schemeClr val="phClr">
                                            <a:shade val="51000"/>
                                            <a:satMod val="130000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                    <a:gs pos="80000">
                                        <a:schemeClr val="phClr">
                                            <a:shade val="93000"/>
                                            <a:satMod val="130000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                    <a:gs pos="100000">
                                        <a:schemeClr val="phClr">
                                            <a:shade val="94000"/>
                                            <a:satMod val="135000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                </a:gsLst>
                                <a:lin ang="16200000" scaled="0"/>
                            </a:gradFill>
                        </a:fillStyleLst>
                        <a:lnStyleLst>
                            <a:ln w="9525" cap="flat" cmpd="sng" algn="ctr">
                                <a:solidFill>
                                    <a:schemeClr val="phClr">
                                        <a:shade val="95000"/>
                                        <a:satMod val="105000"/>
                                    </a:schemeClr>
                                </a:solidFill>
                                <a:prstDash val="solid"/>
                            </a:ln>
                            <a:ln w="25400" cap="flat" cmpd="sng" algn="ctr">
                                <a:solidFill>
                                    <a:schemeClr val="phClr"/>
                                </a:solidFill>
                                <a:prstDash val="solid"/>
                            </a:ln>
                            <a:ln w="38100" cap="flat" cmpd="sng" algn="ctr">
                                <a:solidFill>
                                    <a:schemeClr val="phClr"/>
                                </a:solidFill>
                                <a:prstDash val="solid"/>
                            </a:ln>
                        </a:lnStyleLst>
                        <a:effectStyleLst>
                            <a:effectStyle>
                                <a:effectLst>
                                    <a:outerShdw blurRad="40000" dist="20000" dir="5400000" rotWithShape="0">
                                        <a:srgbClr val="000000">
                                            <a:alpha val="38000"/>
                                        </a:srgbClr>
                                    </a:outerShdw>
                                </a:effectLst>
                            </a:effectStyle>
                            <a:effectStyle>
                                <a:effectLst>
                                    <a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
                                        <a:srgbClr val="000000">
                                            <a:alpha val="35000"/>
                                        </a:srgbClr>
                                    </a:outerShdw>
                                </a:effectLst>
                            </a:effectStyle>
                            <a:effectStyle>
                                <a:effectLst>
                                    <a:outerShdw blurRad="40000" dist="23000" dir="5400000" rotWithShape="0">
                                        <a:srgbClr val="000000">
                                            <a:alpha val="35000"/>
                                        </a:srgbClr>
                                    </a:outerShdw>
                                </a:effectLst>
                                <a:scene3d>
                                    <a:camera prst="orthographicFront">
                                        <a:rot lat="0" lon="0" rev="0"/>
                                    </a:camera>
                                    <a:lightRig rig="threePt" dir="t">
                                        <a:rot lat="0" lon="0" rev="1200000"/>
                                    </a:lightRig>
                                </a:scene3d>
                                <a:sp3d>
                                    <a:bevelT w="63500" h="25400"/>
                                </a:sp3d>
                            </a:effectStyle>
                        </a:effectStyleLst>
                        <a:bgFillStyleLst>
                            <a:solidFill>
                                <a:schemeClr val="phClr"/>
                            </a:solidFill>
                            <a:gradFill rotWithShape="1">
                                <a:gsLst>
                                    <a:gs pos="0">
                                        <a:schemeClr val="phClr">
                                            <a:tint val="40000"/>
                                            <a:satMod val="350000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                    <a:gs pos="40000">
                                        <a:schemeClr val="phClr">
                                            <a:tint val="45000"/>
                                            <a:shade val="99000"/>
                                            <a:satMod val="350000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                    <a:gs pos="100000">
                                        <a:schemeClr val="phClr">
                                            <a:shade val="20000"/>
                                            <a:satMod val="255000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                </a:gsLst>
                                <a:path path="circle">
                                    <a:fillToRect l="50000" t="-80000" r="50000" b="180000"/>
                                </a:path>
                            </a:gradFill>
                            <a:gradFill rotWithShape="1">
                                <a:gsLst>
                                    <a:gs pos="0">
                                        <a:schemeClr val="phClr">
                                            <a:tint val="80000"/>
                                            <a:satMod val="300000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                    <a:gs pos="100000">
                                        <a:schemeClr val="phClr">
                                            <a:shade val="30000"/>
                                            <a:satMod val="200000"/>
                                        </a:schemeClr>
                                    </a:gs>
                                </a:gsLst>
                                <a:path path="circle">
                                    <a:fillToRect l="50000" t="50000" r="50000" b="50000"/>
                                </a:path>
                            </a:gradFill>
                        </a:bgFillStyleLst>
                    </a:fmtScheme>
                </a:themeElements>
                <a:objectDefaults/>
                <a:extraClrSchemeLst/>
            </a:theme>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/word/settings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml">
        <pkg:xmlData>
            <w:settings
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                xmlns:o="urn:schemas-microsoft-com:office:office"
                xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
                xmlns:v="urn:schemas-microsoft-com:vml"
                xmlns:w10="urn:schemas-microsoft-com:office:word"
                xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
                xmlns:sl="http://schemas.openxmlformats.org/schemaLibrary/2006/main" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
                <w:zoom w:percent="100"/>
                <w:proofState w:spelling="clean" w:grammar="clean"/>
                <w:stylePaneFormatFilter w:val="3F01" w:allStyles="1" w:customStyles="0" w:latentStyles="0" w:stylesInUse="0" w:headingStyles="0" w:numberingStyles="0" w:tableStyles="0" w:directFormattingOnRuns="1" w:directFormattingOnParagraphs="1" w:directFormattingOnNumbering="1" w:directFormattingOnTables="1" w:clearFormatting="1" w:top3HeadingStyles="1" w:visibleStyles="0" w:alternateStyleNames="0"/>
                <w:doNotTrackMoves/>
                <w:defaultTabStop w:val="708"/>
                <w:hyphenationZone w:val="425"/>
                <w:noPunctuationKerning/>
                <w:characterSpacingControl w:val="doNotCompress"/>
                <w:footnotePr>
                    <w:footnote w:id="-1"/>
                    <w:footnote w:id="0"/>
                </w:footnotePr>
                <w:endnotePr>
                    <w:endnote w:id="-1"/>
                    <w:endnote w:id="0"/>
                </w:endnotePr>
                <w:compat>
                    <w:useWord2002TableStyleRules/>
                    <w:growAutofit/>
                    <w:useNormalStyleForList/>
                    <w:doNotUseIndentAsNumberingTabStop/>
                    <w:useAltKinsokuLineBreakRules/>
                    <w:allowSpaceOfSameStyleInTable/>
                    <w:doNotSuppressIndentation/>
                    <w:doNotAutofitConstrainedTables/>
                    <w:autofitToFirstFixedWidthCell/>
                    <w:displayHangulFixedWidth/>
                    <w:splitPgBreakAndParaMark/>
                    <w:doNotVertAlignCellWithSp/>
                    <w:doNotBreakConstrainedForcedTable/>
                    <w:doNotVertAlignInTxbx/>
                    <w:useAnsiKerningPairs/>
                    <w:cachedColBalance/>
                    <w:compatSetting w:name="compatibilityMode" w:uri="http://schemas.microsoft.com/office/word" w:val="11"/>
                    <w:compatSetting w:name="allowHyphenationAtTrackBottom" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
                    <w:compatSetting w:name="useWord2013TrackBottomHyphenation" w:uri="http://schemas.microsoft.com/office/word" w:val="1"/>
                </w:compat>
                <w:rsids>
                    <w:rsidRoot w:val="00F4302C"/>
                    <w:rsid w:val="000002D9"/>
                    <w:rsid w:val="00000764"/>
                    <w:rsid w:val="0001094C"/>
                    <w:rsid w:val="00017485"/>
                    <w:rsid w:val="00031232"/>
                    <w:rsid w:val="0003281B"/>
                    <w:rsid w:val="00036AB2"/>
                    <w:rsid w:val="00036C5B"/>
                    <w:rsid w:val="000512D5"/>
                    <w:rsid w:val="00060455"/>
                    <w:rsid w:val="00063B8F"/>
                    <w:rsid w:val="000710B4"/>
                    <w:rsid w:val="0007577D"/>
                    <w:rsid w:val="00076B1C"/>
                    <w:rsid w:val="00084F71"/>
                    <w:rsid w:val="00084FCC"/>
                    <w:rsid w:val="000871C0"/>
                    <w:rsid w:val="00087B4D"/>
                    <w:rsid w:val="00090B1D"/>
                    <w:rsid w:val="000A1BBC"/>
                    <w:rsid w:val="000A3356"/>
                    <w:rsid w:val="000A6132"/>
                    <w:rsid w:val="000B3553"/>
                    <w:rsid w:val="000B6946"/>
                    <w:rsid w:val="000B7EB8"/>
                    <w:rsid w:val="000B7F50"/>
                    <w:rsid w:val="000C1352"/>
                    <w:rsid w:val="000D50B9"/>
                    <w:rsid w:val="000D6848"/>
                    <w:rsid w:val="000D685D"/>
                    <w:rsid w:val="000E0A3E"/>
                    <w:rsid w:val="000E680C"/>
                    <w:rsid w:val="000F040E"/>
                    <w:rsid w:val="000F7CE5"/>
                    <w:rsid w:val="0010038E"/>
                    <w:rsid w:val="00100614"/>
                    <w:rsid w:val="00111382"/>
                    <w:rsid w:val="001378EF"/>
                    <w:rsid w:val="001424EA"/>
                    <w:rsid w:val="00146020"/>
                    <w:rsid w:val="001466B2"/>
                    <w:rsid w:val="001563A2"/>
                    <w:rsid w:val="00157E36"/>
                    <w:rsid w:val="00160EFE"/>
                    <w:rsid w:val="00162508"/>
                    <w:rsid w:val="00181FEA"/>
                    <w:rsid w:val="00193210"/>
                    <w:rsid w:val="001A467A"/>
                    <w:rsid w:val="001A6550"/>
                    <w:rsid w:val="001B3506"/>
                    <w:rsid w:val="001B39C2"/>
                    <w:rsid w:val="001B5865"/>
                    <w:rsid w:val="001C4271"/>
                    <w:rsid w:val="001C74B9"/>
                    <w:rsid w:val="001C78A8"/>
                    <w:rsid w:val="001D5753"/>
                    <w:rsid w:val="001E5685"/>
                    <w:rsid w:val="001F376B"/>
                    <w:rsid w:val="001F47A0"/>
                    <w:rsid w:val="00200D79"/>
                    <w:rsid w:val="0021290F"/>
                    <w:rsid w:val="00212A14"/>
                    <w:rsid w:val="00216321"/>
                    <w:rsid w:val="00217852"/>
                    <w:rsid w:val="002212F9"/>
                    <w:rsid w:val="00230B1D"/>
                    <w:rsid w:val="00246334"/>
                    <w:rsid w:val="0024744C"/>
                    <w:rsid w:val="002561A3"/>
                    <w:rsid w:val="0025717D"/>
                    <w:rsid w:val="00260FC9"/>
                    <w:rsid w:val="00264C9C"/>
                    <w:rsid w:val="0026534E"/>
                    <w:rsid w:val="00270458"/>
                    <w:rsid w:val="0027615E"/>
                    <w:rsid w:val="00280E1E"/>
                    <w:rsid w:val="00295E37"/>
                    <w:rsid w:val="00296CD7"/>
                    <w:rsid w:val="002B0B0A"/>
                    <w:rsid w:val="002B1BCE"/>
                    <w:rsid w:val="002B1EDF"/>
                    <w:rsid w:val="002C605D"/>
                    <w:rsid w:val="002D4011"/>
                    <w:rsid w:val="002D627C"/>
                    <w:rsid w:val="002E288B"/>
                    <w:rsid w:val="002E5819"/>
                    <w:rsid w:val="002F0D96"/>
                    <w:rsid w:val="003107B4"/>
                    <w:rsid w:val="00311545"/>
                    <w:rsid w:val="0031207D"/>
                    <w:rsid w:val="0031585C"/>
                    <w:rsid w:val="003162EB"/>
                    <w:rsid w:val="00320F3C"/>
                    <w:rsid w:val="003379AD"/>
                    <w:rsid w:val="003457A3"/>
                    <w:rsid w:val="003737EA"/>
                    <w:rsid w:val="00391243"/>
                    <w:rsid w:val="0039246C"/>
                    <w:rsid w:val="0039799D"/>
                    <w:rsid w:val="003A3528"/>
                    <w:rsid w:val="003B0190"/>
                    <w:rsid w:val="003B0257"/>
                    <w:rsid w:val="003C4ACE"/>
                    <w:rsid w:val="003C5328"/>
                    <w:rsid w:val="003D2F33"/>
                    <w:rsid w:val="003D562B"/>
                    <w:rsid w:val="003D7218"/>
                    <w:rsid w:val="003E24EE"/>
                    <w:rsid w:val="003E43F1"/>
                    <w:rsid w:val="003E4EF9"/>
                    <w:rsid w:val="003F03FF"/>
                    <w:rsid w:val="003F1FBE"/>
                    <w:rsid w:val="003F2803"/>
                    <w:rsid w:val="003F580D"/>
                    <w:rsid w:val="00401CCC"/>
                    <w:rsid w:val="00406276"/>
                    <w:rsid w:val="0042219F"/>
                    <w:rsid w:val="004355F7"/>
                    <w:rsid w:val="00445C83"/>
                    <w:rsid w:val="0045295C"/>
                    <w:rsid w:val="004550F3"/>
                    <w:rsid w:val="0047474B"/>
                    <w:rsid w:val="00476F99"/>
                    <w:rsid w:val="004849A7"/>
                    <w:rsid w:val="004911E6"/>
                    <w:rsid w:val="00491D75"/>
                    <w:rsid w:val="004A0595"/>
                    <w:rsid w:val="004A450C"/>
                    <w:rsid w:val="004B0D3A"/>
                    <w:rsid w:val="004B1A73"/>
                    <w:rsid w:val="004B22DA"/>
                    <w:rsid w:val="004C056E"/>
                    <w:rsid w:val="004C280F"/>
                    <w:rsid w:val="004C357D"/>
                    <w:rsid w:val="004D0AC7"/>
                    <w:rsid w:val="004D64CB"/>
                    <w:rsid w:val="004D6C8E"/>
                    <w:rsid w:val="004E3D2A"/>
                    <w:rsid w:val="004E46A5"/>
                    <w:rsid w:val="004E7F99"/>
                    <w:rsid w:val="004F20CC"/>
                    <w:rsid w:val="004F5758"/>
                    <w:rsid w:val="00504A87"/>
                    <w:rsid w:val="00516B99"/>
                    <w:rsid w:val="00521B62"/>
                    <w:rsid w:val="00523AA7"/>
                    <w:rsid w:val="0052410F"/>
                    <w:rsid w:val="00525333"/>
                    <w:rsid w:val="00526C26"/>
                    <w:rsid w:val="00536A3E"/>
                    <w:rsid w:val="00537970"/>
                    <w:rsid w:val="005403B2"/>
                    <w:rsid w:val="005472F2"/>
                    <w:rsid w:val="00547944"/>
                    <w:rsid w:val="005531DF"/>
                    <w:rsid w:val="00554AA5"/>
                    <w:rsid w:val="005643D7"/>
                    <w:rsid w:val="00564E1C"/>
                    <w:rsid w:val="005749A2"/>
                    <w:rsid w:val="005750E9"/>
                    <w:rsid w:val="00593CFE"/>
                    <w:rsid w:val="005944D6"/>
                    <w:rsid w:val="00597C5F"/>
                    <w:rsid w:val="005A1391"/>
                    <w:rsid w:val="005A1FD6"/>
                    <w:rsid w:val="005A3F15"/>
                    <w:rsid w:val="005B4438"/>
                    <w:rsid w:val="005B4CAF"/>
                    <w:rsid w:val="005B605D"/>
                    <w:rsid w:val="005C1DCE"/>
                    <w:rsid w:val="005C2B76"/>
                    <w:rsid w:val="005D5077"/>
                    <w:rsid w:val="005D5DE2"/>
                    <w:rsid w:val="005E08AB"/>
                    <w:rsid w:val="005E44B7"/>
                    <w:rsid w:val="005E5B4C"/>
                    <w:rsid w:val="005F0B01"/>
                    <w:rsid w:val="005F530D"/>
                    <w:rsid w:val="005F7C05"/>
                    <w:rsid w:val="00613945"/>
                    <w:rsid w:val="006251A8"/>
                    <w:rsid w:val="0063092E"/>
                    <w:rsid w:val="00661FFF"/>
                    <w:rsid w:val="006674CF"/>
                    <w:rsid w:val="006674EA"/>
                    <w:rsid w:val="00675EB6"/>
                    <w:rsid w:val="00677FB4"/>
                    <w:rsid w:val="00680F5D"/>
                    <w:rsid w:val="0068694F"/>
                    <w:rsid w:val="006879E5"/>
                    <w:rsid w:val="006971AD"/>
                    <w:rsid w:val="006A4A6A"/>
                    <w:rsid w:val="006A67A7"/>
                    <w:rsid w:val="006B66E2"/>
                    <w:rsid w:val="006C0FEA"/>
                    <w:rsid w:val="006C1718"/>
                    <w:rsid w:val="006D21C3"/>
                    <w:rsid w:val="006D70A9"/>
                    <w:rsid w:val="006E0A5D"/>
                    <w:rsid w:val="006E286D"/>
                    <w:rsid w:val="006E69D8"/>
                    <w:rsid w:val="006F04F9"/>
                    <w:rsid w:val="006F2A27"/>
                    <w:rsid w:val="006F3F18"/>
                    <w:rsid w:val="00705681"/>
                    <w:rsid w:val="00707DBD"/>
                    <w:rsid w:val="00716882"/>
                    <w:rsid w:val="00716E85"/>
                    <w:rsid w:val="00720C82"/>
                    <w:rsid w:val="007223D4"/>
                    <w:rsid w:val="00724D28"/>
                    <w:rsid w:val="00725D76"/>
                    <w:rsid w:val="007270AB"/>
                    <w:rsid w:val="007339EF"/>
                    <w:rsid w:val="00733E54"/>
                    <w:rsid w:val="0073525E"/>
                    <w:rsid w:val="007372E5"/>
                    <w:rsid w:val="0073767B"/>
                    <w:rsid w:val="00741943"/>
                    <w:rsid w:val="00745C2F"/>
                    <w:rsid w:val="00746A96"/>
                    <w:rsid w:val="007645E6"/>
                    <w:rsid w:val="00764992"/>
                    <w:rsid w:val="007669D1"/>
                    <w:rsid w:val="00772770"/>
                    <w:rsid w:val="00777912"/>
                    <w:rsid w:val="00781CC2"/>
                    <w:rsid w:val="00782E37"/>
                    <w:rsid w:val="00785431"/>
                    <w:rsid w:val="00791454"/>
                    <w:rsid w:val="007B3B31"/>
                    <w:rsid w:val="007B4905"/>
                    <w:rsid w:val="007C0B5B"/>
                    <w:rsid w:val="007C20E0"/>
                    <w:rsid w:val="007C308B"/>
                    <w:rsid w:val="007C5F70"/>
                    <w:rsid w:val="007D6BA3"/>
                    <w:rsid w:val="007D7D49"/>
                    <w:rsid w:val="007E1C9B"/>
                    <w:rsid w:val="007E3204"/>
                    <w:rsid w:val="007F109E"/>
                    <w:rsid w:val="007F46DC"/>
                    <w:rsid w:val="007F7D40"/>
                    <w:rsid w:val="00810B4A"/>
                    <w:rsid w:val="0081395F"/>
                    <w:rsid w:val="00814C95"/>
                    <w:rsid w:val="00824071"/>
                    <w:rsid w:val="00850173"/>
                    <w:rsid w:val="00853806"/>
                    <w:rsid w:val="00854167"/>
                    <w:rsid w:val="00861F63"/>
                    <w:rsid w:val="008629BB"/>
                    <w:rsid w:val="00863416"/>
                    <w:rsid w:val="00863F50"/>
                    <w:rsid w:val="00871D69"/>
                    <w:rsid w:val="00871F5E"/>
                    <w:rsid w:val="00876AE5"/>
                    <w:rsid w:val="00877553"/>
                    <w:rsid w:val="00880667"/>
                    <w:rsid w:val="00880EE4"/>
                    <w:rsid w:val="008862FE"/>
                    <w:rsid w:val="0088636A"/>
                    <w:rsid w:val="00886696"/>
                    <w:rsid w:val="00895F46"/>
                    <w:rsid w:val="008A43D6"/>
                    <w:rsid w:val="008B3878"/>
                    <w:rsid w:val="008B60A6"/>
                    <w:rsid w:val="008C4AF1"/>
                    <w:rsid w:val="008C50B9"/>
                    <w:rsid w:val="008C5816"/>
                    <w:rsid w:val="008D0E6B"/>
                    <w:rsid w:val="008D6700"/>
                    <w:rsid w:val="008D6B96"/>
                    <w:rsid w:val="008E22B3"/>
                    <w:rsid w:val="008E67FB"/>
                    <w:rsid w:val="008F04A8"/>
                    <w:rsid w:val="008F0A98"/>
                    <w:rsid w:val="008F1BF0"/>
                    <w:rsid w:val="008F7100"/>
                    <w:rsid w:val="009146F2"/>
                    <w:rsid w:val="009231F2"/>
                    <w:rsid w:val="00926AA5"/>
                    <w:rsid w:val="00930FB6"/>
                    <w:rsid w:val="00932CB6"/>
                    <w:rsid w:val="00937340"/>
                    <w:rsid w:val="00941EEE"/>
                    <w:rsid w:val="00944989"/>
                    <w:rsid w:val="00950CE1"/>
                    <w:rsid w:val="0095141D"/>
                    <w:rsid w:val="00955CDC"/>
                    <w:rsid w:val="00956C22"/>
                    <w:rsid w:val="009606B0"/>
                    <w:rsid w:val="009608E6"/>
                    <w:rsid w:val="00970632"/>
                    <w:rsid w:val="00974DE3"/>
                    <w:rsid w:val="00975792"/>
                    <w:rsid w:val="0098388B"/>
                    <w:rsid w:val="00985613"/>
                    <w:rsid w:val="00993D2C"/>
                    <w:rsid w:val="00994822"/>
                    <w:rsid w:val="009976F4"/>
                    <w:rsid w:val="009B64C2"/>
                    <w:rsid w:val="009B7F96"/>
                    <w:rsid w:val="009C03BE"/>
                    <w:rsid w:val="009C0E91"/>
                    <w:rsid w:val="009C30C0"/>
                    <w:rsid w:val="009C4581"/>
                    <w:rsid w:val="009D124B"/>
                    <w:rsid w:val="009D31E2"/>
                    <w:rsid w:val="009D3733"/>
                    <w:rsid w:val="009F4E9C"/>
                    <w:rsid w:val="00A014D7"/>
                    <w:rsid w:val="00A0206B"/>
                    <w:rsid w:val="00A0445E"/>
                    <w:rsid w:val="00A04966"/>
                    <w:rsid w:val="00A160C0"/>
                    <w:rsid w:val="00A17665"/>
                    <w:rsid w:val="00A221DA"/>
                    <w:rsid w:val="00A22739"/>
                    <w:rsid w:val="00A26733"/>
                    <w:rsid w:val="00A307EE"/>
                    <w:rsid w:val="00A31C04"/>
                    <w:rsid w:val="00A35320"/>
                    <w:rsid w:val="00A3778C"/>
                    <w:rsid w:val="00A41324"/>
                    <w:rsid w:val="00A417B3"/>
                    <w:rsid w:val="00A510E5"/>
                    <w:rsid w:val="00A51312"/>
                    <w:rsid w:val="00A54154"/>
                    <w:rsid w:val="00A56E21"/>
                    <w:rsid w:val="00A57E4F"/>
                    <w:rsid w:val="00A6107F"/>
                    <w:rsid w:val="00A66F06"/>
                    <w:rsid w:val="00A77AC3"/>
                    <w:rsid w:val="00A86CE7"/>
                    <w:rsid w:val="00A87D08"/>
                    <w:rsid w:val="00A94C21"/>
                    <w:rsid w:val="00AB5460"/>
                    <w:rsid w:val="00AC16CE"/>
                    <w:rsid w:val="00AD51AD"/>
                    <w:rsid w:val="00AD55E5"/>
                    <w:rsid w:val="00AD6AEE"/>
                    <w:rsid w:val="00AE3590"/>
                    <w:rsid w:val="00AF7F6B"/>
                    <w:rsid w:val="00B005F6"/>
                    <w:rsid w:val="00B02E9F"/>
                    <w:rsid w:val="00B04B76"/>
                    <w:rsid w:val="00B04F97"/>
                    <w:rsid w:val="00B05862"/>
                    <w:rsid w:val="00B11F80"/>
                    <w:rsid w:val="00B171E7"/>
                    <w:rsid w:val="00B17620"/>
                    <w:rsid w:val="00B21786"/>
                    <w:rsid w:val="00B26893"/>
                    <w:rsid w:val="00B31AE6"/>
                    <w:rsid w:val="00B3312B"/>
                    <w:rsid w:val="00B44372"/>
                    <w:rsid w:val="00B44BA8"/>
                    <w:rsid w:val="00B61575"/>
                    <w:rsid w:val="00B80799"/>
                    <w:rsid w:val="00B84533"/>
                    <w:rsid w:val="00B872AE"/>
                    <w:rsid w:val="00B8786A"/>
                    <w:rsid w:val="00B879D9"/>
                    <w:rsid w:val="00B94B30"/>
                    <w:rsid w:val="00B962B8"/>
                    <w:rsid w:val="00BA35D3"/>
                    <w:rsid w:val="00BA7B6B"/>
                    <w:rsid w:val="00BB6876"/>
                    <w:rsid w:val="00BD6DFE"/>
                    <w:rsid w:val="00BE6D8F"/>
                    <w:rsid w:val="00C1755A"/>
                    <w:rsid w:val="00C20ED4"/>
                    <w:rsid w:val="00C24668"/>
                    <w:rsid w:val="00C24DEC"/>
                    <w:rsid w:val="00C2505C"/>
                    <w:rsid w:val="00C31433"/>
                    <w:rsid w:val="00C344B2"/>
                    <w:rsid w:val="00C42EA1"/>
                    <w:rsid w:val="00C4485F"/>
                    <w:rsid w:val="00C5377D"/>
                    <w:rsid w:val="00C65DDE"/>
                    <w:rsid w:val="00C74A14"/>
                    <w:rsid w:val="00C91AF9"/>
                    <w:rsid w:val="00C91DCD"/>
                    <w:rsid w:val="00C93601"/>
                    <w:rsid w:val="00CA1FFA"/>
                    <w:rsid w:val="00CB2F8B"/>
                    <w:rsid w:val="00CB42A2"/>
                    <w:rsid w:val="00CB4DBD"/>
                    <w:rsid w:val="00CC23EB"/>
                    <w:rsid w:val="00CC4866"/>
                    <w:rsid w:val="00CC5D9F"/>
                    <w:rsid w:val="00CC6807"/>
                    <w:rsid w:val="00CD0ADB"/>
                    <w:rsid w:val="00CE3694"/>
                    <w:rsid w:val="00CE771F"/>
                    <w:rsid w:val="00CF353B"/>
                    <w:rsid w:val="00CF4FF5"/>
                    <w:rsid w:val="00CF54EA"/>
                    <w:rsid w:val="00D024F8"/>
                    <w:rsid w:val="00D02762"/>
                    <w:rsid w:val="00D04CF6"/>
                    <w:rsid w:val="00D05766"/>
                    <w:rsid w:val="00D06EB0"/>
                    <w:rsid w:val="00D128B1"/>
                    <w:rsid w:val="00D16EAD"/>
                    <w:rsid w:val="00D24B79"/>
                    <w:rsid w:val="00D252EB"/>
                    <w:rsid w:val="00D27702"/>
                    <w:rsid w:val="00D33348"/>
                    <w:rsid w:val="00D4510F"/>
                    <w:rsid w:val="00D52108"/>
                    <w:rsid w:val="00D6046F"/>
                    <w:rsid w:val="00D635AC"/>
                    <w:rsid w:val="00D72336"/>
                    <w:rsid w:val="00D81016"/>
                    <w:rsid w:val="00D81B64"/>
                    <w:rsid w:val="00D823E2"/>
                    <w:rsid w:val="00D84336"/>
                    <w:rsid w:val="00D87C5F"/>
                    <w:rsid w:val="00D96B33"/>
                    <w:rsid w:val="00D970D4"/>
                    <w:rsid w:val="00DA1768"/>
                    <w:rsid w:val="00DA25E3"/>
                    <w:rsid w:val="00DA5F95"/>
                    <w:rsid w:val="00DA7CCB"/>
                    <w:rsid w:val="00DB0C48"/>
                    <w:rsid w:val="00DB169B"/>
                    <w:rsid w:val="00DB4378"/>
                    <w:rsid w:val="00DC47F3"/>
                    <w:rsid w:val="00DC65B4"/>
                    <w:rsid w:val="00DD0722"/>
                    <w:rsid w:val="00DD2085"/>
                    <w:rsid w:val="00DF0061"/>
                    <w:rsid w:val="00DF754D"/>
                    <w:rsid w:val="00E00B0E"/>
                    <w:rsid w:val="00E12023"/>
                    <w:rsid w:val="00E120E5"/>
                    <w:rsid w:val="00E12BFF"/>
                    <w:rsid w:val="00E15233"/>
                    <w:rsid w:val="00E21D5F"/>
                    <w:rsid w:val="00E27FC0"/>
                    <w:rsid w:val="00E41E3A"/>
                    <w:rsid w:val="00E50C05"/>
                    <w:rsid w:val="00E559F4"/>
                    <w:rsid w:val="00E55DA8"/>
                    <w:rsid w:val="00E56219"/>
                    <w:rsid w:val="00E660AD"/>
                    <w:rsid w:val="00E81067"/>
                    <w:rsid w:val="00E91FF9"/>
                    <w:rsid w:val="00E925A7"/>
                    <w:rsid w:val="00E95BFF"/>
                    <w:rsid w:val="00E962AD"/>
                    <w:rsid w:val="00E96C3B"/>
                    <w:rsid w:val="00EA52B5"/>
                    <w:rsid w:val="00EB11D2"/>
                    <w:rsid w:val="00EB34EB"/>
                    <w:rsid w:val="00EB53B4"/>
                    <w:rsid w:val="00EC2FDD"/>
                    <w:rsid w:val="00EC3099"/>
                    <w:rsid w:val="00ED2D20"/>
                    <w:rsid w:val="00ED2D8A"/>
                    <w:rsid w:val="00ED39C2"/>
                    <w:rsid w:val="00ED5D06"/>
                    <w:rsid w:val="00EE2DB9"/>
                    <w:rsid w:val="00EE6023"/>
                    <w:rsid w:val="00EE62FD"/>
                    <w:rsid w:val="00EF1380"/>
                    <w:rsid w:val="00F0472F"/>
                    <w:rsid w:val="00F154B0"/>
                    <w:rsid w:val="00F1736F"/>
                    <w:rsid w:val="00F20A3A"/>
                    <w:rsid w:val="00F25549"/>
                    <w:rsid w:val="00F26052"/>
                    <w:rsid w:val="00F2613F"/>
                    <w:rsid w:val="00F2690C"/>
                    <w:rsid w:val="00F27855"/>
                    <w:rsid w:val="00F32BFB"/>
                    <w:rsid w:val="00F343BF"/>
                    <w:rsid w:val="00F36E52"/>
                    <w:rsid w:val="00F41E84"/>
                    <w:rsid w:val="00F4302C"/>
                    <w:rsid w:val="00F442CE"/>
                    <w:rsid w:val="00F60427"/>
                    <w:rsid w:val="00F6335A"/>
                    <w:rsid w:val="00F6448A"/>
                    <w:rsid w:val="00F64556"/>
                    <w:rsid w:val="00F64F4D"/>
                    <w:rsid w:val="00F6536F"/>
                    <w:rsid w:val="00F679FF"/>
                    <w:rsid w:val="00F67ACC"/>
                    <w:rsid w:val="00F735F5"/>
                    <w:rsid w:val="00F73EF7"/>
                    <w:rsid w:val="00F75C0C"/>
                    <w:rsid w:val="00F84007"/>
                    <w:rsid w:val="00F8693F"/>
                    <w:rsid w:val="00F87078"/>
                    <w:rsid w:val="00F94A06"/>
                    <w:rsid w:val="00FA15B4"/>
                    <w:rsid w:val="00FA408E"/>
                    <w:rsid w:val="00FB5EC9"/>
                    <w:rsid w:val="00FC0215"/>
                    <w:rsid w:val="00FC07B0"/>
                    <w:rsid w:val="00FC528A"/>
                    <w:rsid w:val="00FD21AB"/>
                    <w:rsid w:val="00FD296C"/>
                    <w:rsid w:val="00FD551D"/>
                    <w:rsid w:val="00FE09C6"/>
                    <w:rsid w:val="00FE19B3"/>
                    <w:rsid w:val="00FE1D06"/>
                    <w:rsid w:val="00FE51C1"/>
                    <w:rsid w:val="00FF374D"/>
                    <w:rsid w:val="00FF5EFB"/>
                    <w:rsid w:val="00FF6232"/>
                </w:rsids>
                <m:mathPr>
                    <m:mathFont m:val="Cambria Math"/>
                    <m:brkBin m:val="before"/>
                    <m:brkBinSub m:val="--"/>
                    <m:smallFrac m:val="0"/>
                    <m:dispDef/>
                    <m:lMargin m:val="0"/>
                    <m:rMargin m:val="0"/>
                    <m:defJc m:val="centerGroup"/>
                    <m:wrapIndent m:val="1440"/>
                    <m:intLim m:val="subSup"/>
                    <m:naryLim m:val="undOvr"/>
                </m:mathPr>
                <w:themeFontLang w:val="de-CH"/>
                <w:clrSchemeMapping w:bg1="light1" w:t1="dark1" w:bg2="light2" w:t2="dark2" w:accent1="accent1" w:accent2="accent2" w:accent3="accent3" w:accent4="accent4" w:accent5="accent5" w:accent6="accent6" w:hyperlink="hyperlink" w:followedHyperlink="followedHyperlink"/>
                <w:doNotIncludeSubdocsInStats/>
                <w:doNotAutoCompressPictures/>
                <w:shapeDefaults>
                    <o:shapedefaults v:ext="edit" spidmax="1026"/>
                    <o:shapelayout v:ext="edit">
                        <o:idmap v:ext="edit" data="1"/>
                    </o:shapelayout>
                </w:shapeDefaults>
                <w:decimalSymbol w:val="."/>
                <w:listSeparator w:val=","/>
                <w14:docId w14:val="1A33D7BD"/>
                <w14:defaultImageDpi w14:val="0"/>
                <w15:docId w15:val="{209E2920-61D1-49F9-8311-D1E659A4BF1A}"/>
            </w:settings>
        </pkg:xmlData>
    </pkg:part>
    <pkg:part pkg:name="/customXml/item1.xml" pkg:contentType="application/xml" pkg:padding="32">
        <pkg:xmlData pkg:originalXmlStandalone="no">
            <b:Sources SelectedStyle="\APA.XSL" StyleName="APA"
                xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"
                xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
            </pkg:xmlData>
        </pkg:part>
        <pkg:part pkg:name="/customXml/itemProps1.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.customXmlProperties+xml" pkg:padding="32">
            <pkg:xmlData pkg:originalXmlStandalone="no">
                <ds:datastoreItem ds:itemID="{2A07B2FA-D730-4ED6-9ECA-B1EB4420960E}"
                    xmlns:ds="http://schemas.openxmlformats.org/officeDocument/2006/customXml">
                    <ds:schemaRefs>
                        <ds:schemaRef ds:uri="http://schemas.openxmlformats.org/officeDocument/2006/bibliography"/>
                    </ds:schemaRefs>
                </ds:datastoreItem>
            </pkg:xmlData>
        </pkg:part>
        <pkg:part pkg:name="/word/numbering.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml">
            <pkg:xmlData>
                <w:numbering
                    xmlns:wpc="http://schemas.microsoft.com/office/word/2010/wordprocessingCanvas"
                    xmlns:cx="http://schemas.microsoft.com/office/drawing/2014/chartex"
                    xmlns:cx1="http://schemas.microsoft.com/office/drawing/2015/9/8/chartex"
                    xmlns:cx2="http://schemas.microsoft.com/office/drawing/2015/10/21/chartex"
                    xmlns:cx3="http://schemas.microsoft.com/office/drawing/2016/5/9/chartex"
                    xmlns:cx4="http://schemas.microsoft.com/office/drawing/2016/5/10/chartex"
                    xmlns:cx5="http://schemas.microsoft.com/office/drawing/2016/5/11/chartex"
                    xmlns:cx6="http://schemas.microsoft.com/office/drawing/2016/5/12/chartex"
                    xmlns:cx7="http://schemas.microsoft.com/office/drawing/2016/5/13/chartex"
                    xmlns:cx8="http://schemas.microsoft.com/office/drawing/2016/5/14/chartex"
                    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                    xmlns:aink="http://schemas.microsoft.com/office/drawing/2016/ink"
                    xmlns:am3d="http://schemas.microsoft.com/office/drawing/2017/model3d"
                    xmlns:o="urn:schemas-microsoft-com:office:office"
                    xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                    xmlns:m="http://schemas.openxmlformats.org/officeDocument/2006/math"
                    xmlns:v="urn:schemas-microsoft-com:vml"
                    xmlns:wp14="http://schemas.microsoft.com/office/word/2010/wordprocessingDrawing"
                    xmlns:wp="http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing"
                    xmlns:w10="urn:schemas-microsoft-com:office:word"
                    xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                    xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                    xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                    xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                    xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                    xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                    xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex"
                    xmlns:wpg="http://schemas.microsoft.com/office/word/2010/wordprocessingGroup"
                    xmlns:wpi="http://schemas.microsoft.com/office/word/2010/wordprocessingInk"
                    xmlns:wne="http://schemas.microsoft.com/office/word/2006/wordml"
                    xmlns:wps="http://schemas.microsoft.com/office/word/2010/wordprocessingShape" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex wp14">
                    <w:abstractNum w:abstractNumId="0" w15:restartNumberingAfterBreak="0">
                        <w:nsid w:val="07755133"/>
                        <w:multiLevelType w:val="hybridMultilevel"/>
                        <w:tmpl w:val="D38E66E6"/>
                        <w:lvl w:ilvl="0" w:tplc="F7E48AF8">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%1."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="720"/>
                                </w:tabs>
                                <w:ind w:left="720" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman" w:hint="default"/>
                                <w:b/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="1" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%2."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="1440"/>
                                </w:tabs>
                                <w:ind w:left="1440" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="2" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%3."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2160"/>
                                </w:tabs>
                                <w:ind w:left="2160" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="3" w:tplc="0807000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%4."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2880"/>
                                </w:tabs>
                                <w:ind w:left="2880" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="4" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%5."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="3600"/>
                                </w:tabs>
                                <w:ind w:left="3600" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="5" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%6."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="4320"/>
                                </w:tabs>
                                <w:ind w:left="4320" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="6" w:tplc="0807000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%7."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5040"/>
                                </w:tabs>
                                <w:ind w:left="5040" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="7" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%8."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5760"/>
                                </w:tabs>
                                <w:ind w:left="5760" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="8" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%9."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="6480"/>
                                </w:tabs>
                                <w:ind w:left="6480" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                    </w:abstractNum>
                    <w:abstractNum w:abstractNumId="1" w15:restartNumberingAfterBreak="0">
                        <w:nsid w:val="2B231562"/>
                        <w:multiLevelType w:val="hybridMultilevel"/>
                        <w:tmpl w:val="C89C8A12"/>
                        <w:lvl w:ilvl="0" w:tplc="04F44ACA">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="4.%1."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="567"/>
                                </w:tabs>
                                <w:ind w:left="567" w:hanging="567"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman" w:hint="default"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="1" w:tplc="100C0019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%2."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="1440"/>
                                </w:tabs>
                                <w:ind w:left="1440" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="2" w:tplc="100C001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%3."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2160"/>
                                </w:tabs>
                                <w:ind w:left="2160" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="3" w:tplc="100C000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%4."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2880"/>
                                </w:tabs>
                                <w:ind w:left="2880" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="4" w:tplc="100C0019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%5."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="3600"/>
                                </w:tabs>
                                <w:ind w:left="3600" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="5" w:tplc="100C001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%6."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="4320"/>
                                </w:tabs>
                                <w:ind w:left="4320" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="6" w:tplc="100C000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%7."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5040"/>
                                </w:tabs>
                                <w:ind w:left="5040" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="7" w:tplc="100C0019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%8."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5760"/>
                                </w:tabs>
                                <w:ind w:left="5760" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="8" w:tplc="100C001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%9."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="6480"/>
                                </w:tabs>
                                <w:ind w:left="6480" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                    </w:abstractNum>
                    <w:abstractNum w:abstractNumId="2" w15:restartNumberingAfterBreak="0">
                        <w:nsid w:val="46875FD6"/>
                        <w:multiLevelType w:val="multilevel"/>
                        <w:tmpl w:val="45147EE8"/>
                        <w:lvl w:ilvl="0">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="3.%1."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="567"/>
                                </w:tabs>
                                <w:ind w:left="567" w:hanging="567"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman" w:hint="default"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%2."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="1440"/>
                                </w:tabs>
                                <w:ind w:left="1440" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="2">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%3."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2160"/>
                                </w:tabs>
                                <w:ind w:left="2160" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="3">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%4."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2880"/>
                                </w:tabs>
                                <w:ind w:left="2880" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="4">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%5."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="3600"/>
                                </w:tabs>
                                <w:ind w:left="3600" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="5">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%6."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="4320"/>
                                </w:tabs>
                                <w:ind w:left="4320" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="6">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%7."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5040"/>
                                </w:tabs>
                                <w:ind w:left="5040" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="7">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%8."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5760"/>
                                </w:tabs>
                                <w:ind w:left="5760" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="8">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%9."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="6480"/>
                                </w:tabs>
                                <w:ind w:left="6480" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                    </w:abstractNum>
                    <w:abstractNum w:abstractNumId="3" w15:restartNumberingAfterBreak="0">
                        <w:nsid w:val="650950DA"/>
                        <w:multiLevelType w:val="hybridMultilevel"/>
                        <w:tmpl w:val="0C80ED92"/>
                        <w:lvl w:ilvl="0" w:tplc="6A0E2BE8">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:pStyle w:val="Formatvorlageberschrift1Arial11pt"/>
                            <w:lvlText w:val="%1.1"/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="65"/>
                                </w:tabs>
                                <w:ind w:left="65" w:hanging="425"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman" w:hint="default"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="1" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%2."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="1440"/>
                                </w:tabs>
                                <w:ind w:left="1440" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="2" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%3."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2160"/>
                                </w:tabs>
                                <w:ind w:left="2160" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="3" w:tplc="0807000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%4."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2880"/>
                                </w:tabs>
                                <w:ind w:left="2880" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="4" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%5."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="3600"/>
                                </w:tabs>
                                <w:ind w:left="3600" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="5" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%6."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="4320"/>
                                </w:tabs>
                                <w:ind w:left="4320" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="6" w:tplc="0807000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%7."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5040"/>
                                </w:tabs>
                                <w:ind w:left="5040" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="7" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%8."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5760"/>
                                </w:tabs>
                                <w:ind w:left="5760" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="8" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%9."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="6480"/>
                                </w:tabs>
                                <w:ind w:left="6480" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                    </w:abstractNum>
                    <w:abstractNum w:abstractNumId="4" w15:restartNumberingAfterBreak="0">
                        <w:nsid w:val="661F6D3B"/>
                        <w:multiLevelType w:val="hybridMultilevel"/>
                        <w:tmpl w:val="3118F18C"/>
                        <w:lvl w:ilvl="0" w:tplc="D842D3EC">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="4.%1."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="720"/>
                                </w:tabs>
                                <w:ind w:left="720" w:hanging="720"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman" w:hint="default"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="1" w:tplc="100C0019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%2."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="1440"/>
                                </w:tabs>
                                <w:ind w:left="1440" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="2" w:tplc="100C001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%3."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2160"/>
                                </w:tabs>
                                <w:ind w:left="2160" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="3" w:tplc="100C000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%4."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2880"/>
                                </w:tabs>
                                <w:ind w:left="2880" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="4" w:tplc="100C0019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%5."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="3600"/>
                                </w:tabs>
                                <w:ind w:left="3600" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="5" w:tplc="100C001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%6."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="4320"/>
                                </w:tabs>
                                <w:ind w:left="4320" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="6" w:tplc="100C000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%7."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5040"/>
                                </w:tabs>
                                <w:ind w:left="5040" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="7" w:tplc="100C0019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%8."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5760"/>
                                </w:tabs>
                                <w:ind w:left="5760" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="8" w:tplc="100C001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%9."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="6480"/>
                                </w:tabs>
                                <w:ind w:left="6480" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                    </w:abstractNum>
                    <w:abstractNum w:abstractNumId="5" w15:restartNumberingAfterBreak="0">
                        <w:nsid w:val="6E44749C"/>
                        <w:multiLevelType w:val="hybridMultilevel"/>
                        <w:tmpl w:val="74DCA16E"/>
                        <w:lvl w:ilvl="0" w:tplc="0807000F">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%1."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="720"/>
                                </w:tabs>
                                <w:ind w:left="720" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman" w:hint="default"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="1" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%2."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="1440"/>
                                </w:tabs>
                                <w:ind w:left="1440" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="2" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%3."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2160"/>
                                </w:tabs>
                                <w:ind w:left="2160" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="3" w:tplc="0807000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%4."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="2880"/>
                                </w:tabs>
                                <w:ind w:left="2880" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="4" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%5."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="3600"/>
                                </w:tabs>
                                <w:ind w:left="3600" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="5" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%6."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="4320"/>
                                </w:tabs>
                                <w:ind w:left="4320" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="6" w:tplc="0807000F" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="decimal"/>
                            <w:lvlText w:val="%7."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5040"/>
                                </w:tabs>
                                <w:ind w:left="5040" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="7" w:tplc="08070019" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerLetter"/>
                            <w:lvlText w:val="%8."/>
                            <w:lvlJc w:val="left"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="5760"/>
                                </w:tabs>
                                <w:ind w:left="5760" w:hanging="360"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                        <w:lvl w:ilvl="8" w:tplc="0807001B" w:tentative="1">
                            <w:start w:val="1"/>
                            <w:numFmt w:val="lowerRoman"/>
                            <w:lvlText w:val="%9."/>
                            <w:lvlJc w:val="right"/>
                            <w:pPr>
                                <w:tabs>
                                    <w:tab w:val="num" w:pos="6480"/>
                                </w:tabs>
                                <w:ind w:left="6480" w:hanging="180"/>
                            </w:pPr>
                            <w:rPr>
                                <w:rFonts w:cs="Times New Roman"/>
                            </w:rPr>
                        </w:lvl>
                    </w:abstractNum>
                    <w:num w:numId="1">
                        <w:abstractNumId w:val="3"/>
                    </w:num>
                    <w:num w:numId="2">
                        <w:abstractNumId w:val="0"/>
                    </w:num>
                    <w:num w:numId="3">
                        <w:abstractNumId w:val="5"/>
                    </w:num>
                    <w:num w:numId="4">
                        <w:abstractNumId w:val="1"/>
                    </w:num>
                    <w:num w:numId="5">
                        <w:abstractNumId w:val="2"/>
                    </w:num>
                    <w:num w:numId="6">
                        <w:abstractNumId w:val="4"/>
                    </w:num>
                </w:numbering>
            </pkg:xmlData>
        </pkg:part>
        <pkg:part pkg:name="/word/styles.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml">
            <pkg:xmlData>
                <w:styles
                    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                    xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                    xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                    xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                    xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                    xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                    xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                    xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                    xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
                    <w:docDefaults>
                        <w:rPrDefault>
                            <w:rPr>
                                <w:rFonts w:ascii="Times New Roman" w:eastAsia="Times New Roman" w:hAnsi="Times New Roman" w:cs="Times New Roman"/>
                                <w:lang w:val="en-CH" w:eastAsia="en-CH" w:bidi="ar-SA"/>
                            </w:rPr>
                        </w:rPrDefault>
                        <w:pPrDefault/>
                    </w:docDefaults>
                    <w:latentStyles w:defLockedState="0" w:defUIPriority="99" w:defSemiHidden="0" w:defUnhideWhenUsed="0" w:defQFormat="0" w:count="376">
                        <w:lsdException w:name="Normal" w:uiPriority="0" w:qFormat="1"/>
                        <w:lsdException w:name="heading 1" w:uiPriority="9" w:qFormat="1"/>
                        <w:lsdException w:name="heading 2" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="heading 3" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="heading 4" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="heading 5" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="heading 6" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="heading 7" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="heading 8" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="heading 9" w:semiHidden="1" w:uiPriority="9" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="index 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index 9" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 1" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 2" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 3" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 4" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 5" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 6" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 7" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 8" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toc 9" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Normal Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="footnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="annotation text" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="header" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="footer" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="index heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="caption" w:semiHidden="1" w:uiPriority="35" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="table of figures" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="envelope address" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="envelope return" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="footnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="annotation reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="line number" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="page number" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="endnote reference" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="endnote text" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="table of authorities" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="macro" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="toa heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Bullet" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Number" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Bullet 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Bullet 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Bullet 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Bullet 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Number 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Number 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Number 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Number 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Title" w:uiPriority="10" w:qFormat="1"/>
                        <w:lsdException w:name="Closing" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Default Paragraph Font" w:semiHidden="1" w:uiPriority="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Body Text" w:semiHidden="1" w:uiPriority="0" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Body Text Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Continue" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Continue 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Continue 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Continue 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="List Continue 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Message Header" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Subtitle" w:uiPriority="11" w:qFormat="1"/>
                        <w:lsdException w:name="Salutation" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Date" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Body Text First Indent" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Body Text First Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Note Heading" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Body Text 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Body Text 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Body Text Indent 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Body Text Indent 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Block Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="FollowedHyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Strong" w:uiPriority="22" w:qFormat="1"/>
                        <w:lsdException w:name="Emphasis" w:uiPriority="20" w:qFormat="1"/>
                        <w:lsdException w:name="Document Map" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Plain Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="E-mail Signature" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Top of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Bottom of Form" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Normal (Web)" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Acronym" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Address" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Cite" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Code" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Definition" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Keyboard" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Preformatted" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Sample" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Typewriter" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="HTML Variable" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Normal Table" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="annotation subject" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="No List" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Outline List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Outline List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Outline List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Simple 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Simple 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Simple 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Classic 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Classic 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Classic 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Classic 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Colorful 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Colorful 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Colorful 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Columns 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Columns 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Columns 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Columns 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Columns 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table List 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table List 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table List 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table List 4" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table List 5" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table List 6" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table List 7" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table List 8" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table 3D effects 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table 3D effects 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table 3D effects 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Contemporary" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Elegant" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Professional" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Subtle 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Subtle 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Web 1" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Web 2" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Web 3" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Balloon Text" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Table Grid" w:uiPriority="0"/>
                        <w:lsdException w:name="Table Theme" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Placeholder Text" w:semiHidden="1"/>
                        <w:lsdException w:name="No Spacing" w:uiPriority="1" w:qFormat="1"/>
                        <w:lsdException w:name="Light Shading" w:uiPriority="60"/>
                        <w:lsdException w:name="Light List" w:uiPriority="61"/>
                        <w:lsdException w:name="Light Grid" w:uiPriority="62"/>
                        <w:lsdException w:name="Medium Shading 1" w:uiPriority="63"/>
                        <w:lsdException w:name="Medium Shading 2" w:uiPriority="64"/>
                        <w:lsdException w:name="Medium List 1" w:uiPriority="65"/>
                        <w:lsdException w:name="Medium List 2" w:uiPriority="66"/>
                        <w:lsdException w:name="Medium Grid 1" w:uiPriority="67"/>
                        <w:lsdException w:name="Medium Grid 2" w:uiPriority="68"/>
                        <w:lsdException w:name="Medium Grid 3" w:uiPriority="69"/>
                        <w:lsdException w:name="Dark List" w:uiPriority="70"/>
                        <w:lsdException w:name="Colorful Shading" w:uiPriority="71"/>
                        <w:lsdException w:name="Colorful List" w:uiPriority="72"/>
                        <w:lsdException w:name="Colorful Grid" w:uiPriority="73"/>
                        <w:lsdException w:name="Light Shading Accent 1" w:uiPriority="60"/>
                        <w:lsdException w:name="Light List Accent 1" w:uiPriority="61"/>
                        <w:lsdException w:name="Light Grid Accent 1" w:uiPriority="62"/>
                        <w:lsdException w:name="Medium Shading 1 Accent 1" w:uiPriority="63"/>
                        <w:lsdException w:name="Medium Shading 2 Accent 1" w:uiPriority="64"/>
                        <w:lsdException w:name="Medium List 1 Accent 1" w:uiPriority="65"/>
                        <w:lsdException w:name="Revision" w:semiHidden="1"/>
                        <w:lsdException w:name="List Paragraph" w:uiPriority="34" w:qFormat="1"/>
                        <w:lsdException w:name="Quote" w:uiPriority="29" w:qFormat="1"/>
                        <w:lsdException w:name="Intense Quote" w:uiPriority="30" w:qFormat="1"/>
                        <w:lsdException w:name="Medium List 2 Accent 1" w:uiPriority="66"/>
                        <w:lsdException w:name="Medium Grid 1 Accent 1" w:uiPriority="67"/>
                        <w:lsdException w:name="Medium Grid 2 Accent 1" w:uiPriority="68"/>
                        <w:lsdException w:name="Medium Grid 3 Accent 1" w:uiPriority="69"/>
                        <w:lsdException w:name="Dark List Accent 1" w:uiPriority="70"/>
                        <w:lsdException w:name="Colorful Shading Accent 1" w:uiPriority="71"/>
                        <w:lsdException w:name="Colorful List Accent 1" w:uiPriority="72"/>
                        <w:lsdException w:name="Colorful Grid Accent 1" w:uiPriority="73"/>
                        <w:lsdException w:name="Light Shading Accent 2" w:uiPriority="60"/>
                        <w:lsdException w:name="Light List Accent 2" w:uiPriority="61"/>
                        <w:lsdException w:name="Light Grid Accent 2" w:uiPriority="62"/>
                        <w:lsdException w:name="Medium Shading 1 Accent 2" w:uiPriority="63"/>
                        <w:lsdException w:name="Medium Shading 2 Accent 2" w:uiPriority="64"/>
                        <w:lsdException w:name="Medium List 1 Accent 2" w:uiPriority="65"/>
                        <w:lsdException w:name="Medium List 2 Accent 2" w:uiPriority="66"/>
                        <w:lsdException w:name="Medium Grid 1 Accent 2" w:uiPriority="67"/>
                        <w:lsdException w:name="Medium Grid 2 Accent 2" w:uiPriority="68"/>
                        <w:lsdException w:name="Medium Grid 3 Accent 2" w:uiPriority="69"/>
                        <w:lsdException w:name="Dark List Accent 2" w:uiPriority="70"/>
                        <w:lsdException w:name="Colorful Shading Accent 2" w:uiPriority="71"/>
                        <w:lsdException w:name="Colorful List Accent 2" w:uiPriority="72"/>
                        <w:lsdException w:name="Colorful Grid Accent 2" w:uiPriority="73"/>
                        <w:lsdException w:name="Light Shading Accent 3" w:uiPriority="60"/>
                        <w:lsdException w:name="Light List Accent 3" w:uiPriority="61"/>
                        <w:lsdException w:name="Light Grid Accent 3" w:uiPriority="62"/>
                        <w:lsdException w:name="Medium Shading 1 Accent 3" w:uiPriority="63"/>
                        <w:lsdException w:name="Medium Shading 2 Accent 3" w:uiPriority="64"/>
                        <w:lsdException w:name="Medium List 1 Accent 3" w:uiPriority="65"/>
                        <w:lsdException w:name="Medium List 2 Accent 3" w:uiPriority="66"/>
                        <w:lsdException w:name="Medium Grid 1 Accent 3" w:uiPriority="67"/>
                        <w:lsdException w:name="Medium Grid 2 Accent 3" w:uiPriority="68"/>
                        <w:lsdException w:name="Medium Grid 3 Accent 3" w:uiPriority="69"/>
                        <w:lsdException w:name="Dark List Accent 3" w:uiPriority="70"/>
                        <w:lsdException w:name="Colorful Shading Accent 3" w:uiPriority="71"/>
                        <w:lsdException w:name="Colorful List Accent 3" w:uiPriority="72"/>
                        <w:lsdException w:name="Colorful Grid Accent 3" w:uiPriority="73"/>
                        <w:lsdException w:name="Light Shading Accent 4" w:uiPriority="60"/>
                        <w:lsdException w:name="Light List Accent 4" w:uiPriority="61"/>
                        <w:lsdException w:name="Light Grid Accent 4" w:uiPriority="62"/>
                        <w:lsdException w:name="Medium Shading 1 Accent 4" w:uiPriority="63"/>
                        <w:lsdException w:name="Medium Shading 2 Accent 4" w:uiPriority="64"/>
                        <w:lsdException w:name="Medium List 1 Accent 4" w:uiPriority="65"/>
                        <w:lsdException w:name="Medium List 2 Accent 4" w:uiPriority="66"/>
                        <w:lsdException w:name="Medium Grid 1 Accent 4" w:uiPriority="67"/>
                        <w:lsdException w:name="Medium Grid 2 Accent 4" w:uiPriority="68"/>
                        <w:lsdException w:name="Medium Grid 3 Accent 4" w:uiPriority="69"/>
                        <w:lsdException w:name="Dark List Accent 4" w:uiPriority="70"/>
                        <w:lsdException w:name="Colorful Shading Accent 4" w:uiPriority="71"/>
                        <w:lsdException w:name="Colorful List Accent 4" w:uiPriority="72"/>
                        <w:lsdException w:name="Colorful Grid Accent 4" w:uiPriority="73"/>
                        <w:lsdException w:name="Light Shading Accent 5" w:uiPriority="60"/>
                        <w:lsdException w:name="Light List Accent 5" w:uiPriority="61"/>
                        <w:lsdException w:name="Light Grid Accent 5" w:uiPriority="62"/>
                        <w:lsdException w:name="Medium Shading 1 Accent 5" w:uiPriority="63"/>
                        <w:lsdException w:name="Medium Shading 2 Accent 5" w:uiPriority="64"/>
                        <w:lsdException w:name="Medium List 1 Accent 5" w:uiPriority="65"/>
                        <w:lsdException w:name="Medium List 2 Accent 5" w:uiPriority="66"/>
                        <w:lsdException w:name="Medium Grid 1 Accent 5" w:uiPriority="67"/>
                        <w:lsdException w:name="Medium Grid 2 Accent 5" w:uiPriority="68"/>
                        <w:lsdException w:name="Medium Grid 3 Accent 5" w:uiPriority="69"/>
                        <w:lsdException w:name="Dark List Accent 5" w:uiPriority="70"/>
                        <w:lsdException w:name="Colorful Shading Accent 5" w:uiPriority="71"/>
                        <w:lsdException w:name="Colorful List Accent 5" w:uiPriority="72"/>
                        <w:lsdException w:name="Colorful Grid Accent 5" w:uiPriority="73"/>
                        <w:lsdException w:name="Light Shading Accent 6" w:uiPriority="60"/>
                        <w:lsdException w:name="Light List Accent 6" w:uiPriority="61"/>
                        <w:lsdException w:name="Light Grid Accent 6" w:uiPriority="62"/>
                        <w:lsdException w:name="Medium Shading 1 Accent 6" w:uiPriority="63"/>
                        <w:lsdException w:name="Medium Shading 2 Accent 6" w:uiPriority="64"/>
                        <w:lsdException w:name="Medium List 1 Accent 6" w:uiPriority="65"/>
                        <w:lsdException w:name="Medium List 2 Accent 6" w:uiPriority="66"/>
                        <w:lsdException w:name="Medium Grid 1 Accent 6" w:uiPriority="67"/>
                        <w:lsdException w:name="Medium Grid 2 Accent 6" w:uiPriority="68"/>
                        <w:lsdException w:name="Medium Grid 3 Accent 6" w:uiPriority="69"/>
                        <w:lsdException w:name="Dark List Accent 6" w:uiPriority="70"/>
                        <w:lsdException w:name="Colorful Shading Accent 6" w:uiPriority="71"/>
                        <w:lsdException w:name="Colorful List Accent 6" w:uiPriority="72"/>
                        <w:lsdException w:name="Colorful Grid Accent 6" w:uiPriority="73"/>
                        <w:lsdException w:name="Subtle Emphasis" w:uiPriority="19" w:qFormat="1"/>
                        <w:lsdException w:name="Intense Emphasis" w:uiPriority="21" w:qFormat="1"/>
                        <w:lsdException w:name="Subtle Reference" w:uiPriority="31" w:qFormat="1"/>
                        <w:lsdException w:name="Intense Reference" w:uiPriority="32" w:qFormat="1"/>
                        <w:lsdException w:name="Book Title" w:uiPriority="33" w:qFormat="1"/>
                        <w:lsdException w:name="Bibliography" w:semiHidden="1" w:uiPriority="37" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="TOC Heading" w:semiHidden="1" w:uiPriority="39" w:unhideWhenUsed="1" w:qFormat="1"/>
                        <w:lsdException w:name="Plain Table 1" w:uiPriority="41"/>
                        <w:lsdException w:name="Plain Table 2" w:uiPriority="42"/>
                        <w:lsdException w:name="Plain Table 3" w:uiPriority="43"/>
                        <w:lsdException w:name="Plain Table 4" w:uiPriority="44"/>
                        <w:lsdException w:name="Plain Table 5" w:uiPriority="45"/>
                        <w:lsdException w:name="Grid Table Light" w:uiPriority="40"/>
                        <w:lsdException w:name="Grid Table 1 Light" w:uiPriority="46"/>
                        <w:lsdException w:name="Grid Table 2" w:uiPriority="47"/>
                        <w:lsdException w:name="Grid Table 3" w:uiPriority="48"/>
                        <w:lsdException w:name="Grid Table 4" w:uiPriority="49"/>
                        <w:lsdException w:name="Grid Table 5 Dark" w:uiPriority="50"/>
                        <w:lsdException w:name="Grid Table 6 Colorful" w:uiPriority="51"/>
                        <w:lsdException w:name="Grid Table 7 Colorful" w:uiPriority="52"/>
                        <w:lsdException w:name="Grid Table 1 Light Accent 1" w:uiPriority="46"/>
                        <w:lsdException w:name="Grid Table 2 Accent 1" w:uiPriority="47"/>
                        <w:lsdException w:name="Grid Table 3 Accent 1" w:uiPriority="48"/>
                        <w:lsdException w:name="Grid Table 4 Accent 1" w:uiPriority="49"/>
                        <w:lsdException w:name="Grid Table 5 Dark Accent 1" w:uiPriority="50"/>
                        <w:lsdException w:name="Grid Table 6 Colorful Accent 1" w:uiPriority="51"/>
                        <w:lsdException w:name="Grid Table 7 Colorful Accent 1" w:uiPriority="52"/>
                        <w:lsdException w:name="Grid Table 1 Light Accent 2" w:uiPriority="46"/>
                        <w:lsdException w:name="Grid Table 2 Accent 2" w:uiPriority="47"/>
                        <w:lsdException w:name="Grid Table 3 Accent 2" w:uiPriority="48"/>
                        <w:lsdException w:name="Grid Table 4 Accent 2" w:uiPriority="49"/>
                        <w:lsdException w:name="Grid Table 5 Dark Accent 2" w:uiPriority="50"/>
                        <w:lsdException w:name="Grid Table 6 Colorful Accent 2" w:uiPriority="51"/>
                        <w:lsdException w:name="Grid Table 7 Colorful Accent 2" w:uiPriority="52"/>
                        <w:lsdException w:name="Grid Table 1 Light Accent 3" w:uiPriority="46"/>
                        <w:lsdException w:name="Grid Table 2 Accent 3" w:uiPriority="47"/>
                        <w:lsdException w:name="Grid Table 3 Accent 3" w:uiPriority="48"/>
                        <w:lsdException w:name="Grid Table 4 Accent 3" w:uiPriority="49"/>
                        <w:lsdException w:name="Grid Table 5 Dark Accent 3" w:uiPriority="50"/>
                        <w:lsdException w:name="Grid Table 6 Colorful Accent 3" w:uiPriority="51"/>
                        <w:lsdException w:name="Grid Table 7 Colorful Accent 3" w:uiPriority="52"/>
                        <w:lsdException w:name="Grid Table 1 Light Accent 4" w:uiPriority="46"/>
                        <w:lsdException w:name="Grid Table 2 Accent 4" w:uiPriority="47"/>
                        <w:lsdException w:name="Grid Table 3 Accent 4" w:uiPriority="48"/>
                        <w:lsdException w:name="Grid Table 4 Accent 4" w:uiPriority="49"/>
                        <w:lsdException w:name="Grid Table 5 Dark Accent 4" w:uiPriority="50"/>
                        <w:lsdException w:name="Grid Table 6 Colorful Accent 4" w:uiPriority="51"/>
                        <w:lsdException w:name="Grid Table 7 Colorful Accent 4" w:uiPriority="52"/>
                        <w:lsdException w:name="Grid Table 1 Light Accent 5" w:uiPriority="46"/>
                        <w:lsdException w:name="Grid Table 2 Accent 5" w:uiPriority="47"/>
                        <w:lsdException w:name="Grid Table 3 Accent 5" w:uiPriority="48"/>
                        <w:lsdException w:name="Grid Table 4 Accent 5" w:uiPriority="49"/>
                        <w:lsdException w:name="Grid Table 5 Dark Accent 5" w:uiPriority="50"/>
                        <w:lsdException w:name="Grid Table 6 Colorful Accent 5" w:uiPriority="51"/>
                        <w:lsdException w:name="Grid Table 7 Colorful Accent 5" w:uiPriority="52"/>
                        <w:lsdException w:name="Grid Table 1 Light Accent 6" w:uiPriority="46"/>
                        <w:lsdException w:name="Grid Table 2 Accent 6" w:uiPriority="47"/>
                        <w:lsdException w:name="Grid Table 3 Accent 6" w:uiPriority="48"/>
                        <w:lsdException w:name="Grid Table 4 Accent 6" w:uiPriority="49"/>
                        <w:lsdException w:name="Grid Table 5 Dark Accent 6" w:uiPriority="50"/>
                        <w:lsdException w:name="Grid Table 6 Colorful Accent 6" w:uiPriority="51"/>
                        <w:lsdException w:name="Grid Table 7 Colorful Accent 6" w:uiPriority="52"/>
                        <w:lsdException w:name="List Table 1 Light" w:uiPriority="46"/>
                        <w:lsdException w:name="List Table 2" w:uiPriority="47"/>
                        <w:lsdException w:name="List Table 3" w:uiPriority="48"/>
                        <w:lsdException w:name="List Table 4" w:uiPriority="49"/>
                        <w:lsdException w:name="List Table 5 Dark" w:uiPriority="50"/>
                        <w:lsdException w:name="List Table 6 Colorful" w:uiPriority="51"/>
                        <w:lsdException w:name="List Table 7 Colorful" w:uiPriority="52"/>
                        <w:lsdException w:name="List Table 1 Light Accent 1" w:uiPriority="46"/>
                        <w:lsdException w:name="List Table 2 Accent 1" w:uiPriority="47"/>
                        <w:lsdException w:name="List Table 3 Accent 1" w:uiPriority="48"/>
                        <w:lsdException w:name="List Table 4 Accent 1" w:uiPriority="49"/>
                        <w:lsdException w:name="List Table 5 Dark Accent 1" w:uiPriority="50"/>
                        <w:lsdException w:name="List Table 6 Colorful Accent 1" w:uiPriority="51"/>
                        <w:lsdException w:name="List Table 7 Colorful Accent 1" w:uiPriority="52"/>
                        <w:lsdException w:name="List Table 1 Light Accent 2" w:uiPriority="46"/>
                        <w:lsdException w:name="List Table 2 Accent 2" w:uiPriority="47"/>
                        <w:lsdException w:name="List Table 3 Accent 2" w:uiPriority="48"/>
                        <w:lsdException w:name="List Table 4 Accent 2" w:uiPriority="49"/>
                        <w:lsdException w:name="List Table 5 Dark Accent 2" w:uiPriority="50"/>
                        <w:lsdException w:name="List Table 6 Colorful Accent 2" w:uiPriority="51"/>
                        <w:lsdException w:name="List Table 7 Colorful Accent 2" w:uiPriority="52"/>
                        <w:lsdException w:name="List Table 1 Light Accent 3" w:uiPriority="46"/>
                        <w:lsdException w:name="List Table 2 Accent 3" w:uiPriority="47"/>
                        <w:lsdException w:name="List Table 3 Accent 3" w:uiPriority="48"/>
                        <w:lsdException w:name="List Table 4 Accent 3" w:uiPriority="49"/>
                        <w:lsdException w:name="List Table 5 Dark Accent 3" w:uiPriority="50"/>
                        <w:lsdException w:name="List Table 6 Colorful Accent 3" w:uiPriority="51"/>
                        <w:lsdException w:name="List Table 7 Colorful Accent 3" w:uiPriority="52"/>
                        <w:lsdException w:name="List Table 1 Light Accent 4" w:uiPriority="46"/>
                        <w:lsdException w:name="List Table 2 Accent 4" w:uiPriority="47"/>
                        <w:lsdException w:name="List Table 3 Accent 4" w:uiPriority="48"/>
                        <w:lsdException w:name="List Table 4 Accent 4" w:uiPriority="49"/>
                        <w:lsdException w:name="List Table 5 Dark Accent 4" w:uiPriority="50"/>
                        <w:lsdException w:name="List Table 6 Colorful Accent 4" w:uiPriority="51"/>
                        <w:lsdException w:name="List Table 7 Colorful Accent 4" w:uiPriority="52"/>
                        <w:lsdException w:name="List Table 1 Light Accent 5" w:uiPriority="46"/>
                        <w:lsdException w:name="List Table 2 Accent 5" w:uiPriority="47"/>
                        <w:lsdException w:name="List Table 3 Accent 5" w:uiPriority="48"/>
                        <w:lsdException w:name="List Table 4 Accent 5" w:uiPriority="49"/>
                        <w:lsdException w:name="List Table 5 Dark Accent 5" w:uiPriority="50"/>
                        <w:lsdException w:name="List Table 6 Colorful Accent 5" w:uiPriority="51"/>
                        <w:lsdException w:name="List Table 7 Colorful Accent 5" w:uiPriority="52"/>
                        <w:lsdException w:name="List Table 1 Light Accent 6" w:uiPriority="46"/>
                        <w:lsdException w:name="List Table 2 Accent 6" w:uiPriority="47"/>
                        <w:lsdException w:name="List Table 3 Accent 6" w:uiPriority="48"/>
                        <w:lsdException w:name="List Table 4 Accent 6" w:uiPriority="49"/>
                        <w:lsdException w:name="List Table 5 Dark Accent 6" w:uiPriority="50"/>
                        <w:lsdException w:name="List Table 6 Colorful Accent 6" w:uiPriority="51"/>
                        <w:lsdException w:name="List Table 7 Colorful Accent 6" w:uiPriority="52"/>
                        <w:lsdException w:name="Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Smart Hyperlink" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Hashtag" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Unresolved Mention" w:semiHidden="1" w:unhideWhenUsed="1"/>
                        <w:lsdException w:name="Smart Link" w:semiHidden="1" w:unhideWhenUsed="1"/>
                    </w:latentStyles>
                    <w:style w:type="paragraph" w:default="1" w:styleId="Normal">
                        <w:name w:val="Normal"/>
                        <w:qFormat/>
                        <w:rPr>
                            <w:snapToGrid w:val="0"/>
                            <w:sz w:val="24"/>
                            <w:szCs w:val="24"/>
                            <w:lang w:val="fr-CH" w:eastAsia="fr-CH"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="paragraph" w:styleId="Titre1">
                        <w:name w:val="heading 1"/>
                        <w:basedOn w:val="Normal"/>
                        <w:next w:val="Normal"/>
                        <w:link w:val="Titre1Car"/>
                        <w:uiPriority w:val="9"/>
                        <w:qFormat/>
                        <w:pPr>
                            <w:keepNext/>
                            <w:spacing w:before="240" w:after="60"/>
                            <w:outlineLvl w:val="0"/>
                        </w:pPr>
                        <w:rPr>
                            <w:rFonts w:ascii="Arial" w:hAnsi="Arial" w:cs="Arial"/>
                            <w:b/>
                            <w:bCs/>
                            <w:kern w:val="32"/>
                            <w:sz w:val="32"/>
                            <w:szCs w:val="32"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:default="1" w:styleId="Policepardfaut">
                        <w:name w:val="Default Paragraph Font"/>
                        <w:uiPriority w:val="1"/>
                        <w:semiHidden/>
                        <w:unhideWhenUsed/>
                    </w:style>
                    <w:style w:type="table" w:default="1" w:styleId="TableauNormal">
                        <w:name w:val="Normal Table"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:unhideWhenUsed/>
                        <w:tblPr>
                            <w:tblInd w:w="0" w:type="dxa"/>
                            <w:tblCellMar>
                                <w:top w:w="0" w:type="dxa"/>
                                <w:left w:w="108" w:type="dxa"/>
                                <w:bottom w:w="0" w:type="dxa"/>
                                <w:right w:w="108" w:type="dxa"/>
                            </w:tblCellMar>
                        </w:tblPr>
                    </w:style>
                    <w:style w:type="numbering" w:default="1" w:styleId="Aucuneliste">
                        <w:name w:val="No List"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:unhideWhenUsed/>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="Titre1Car">
                        <w:name w:val="Titre 1 Car"/>
                        <w:link w:val="Titre1"/>
                        <w:uiPriority w:val="9"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Cambria" w:eastAsia="Times New Roman" w:hAnsi="Cambria" w:cs="Times New Roman"/>
                            <w:b/>
                            <w:bCs/>
                            <w:snapToGrid w:val="0"/>
                            <w:kern w:val="32"/>
                            <w:sz w:val="32"/>
                            <w:szCs w:val="32"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="paragraph" w:customStyle="1" w:styleId="Formatvorlageberschrift1Arial11pt">
                        <w:name w:val="Formatvorlage Überschrift 1 + Arial 11 pt"/>
                        <w:basedOn w:val="Titre1"/>
                        <w:autoRedefine/>
                        <w:pPr>
                            <w:numPr>
                                <w:numId w:val="1"/>
                            </w:numPr>
                            <w:overflowPunct w:val="0"/>
                            <w:autoSpaceDE w:val="0"/>
                            <w:autoSpaceDN w:val="0"/>
                            <w:adjustRightInd w:val="0"/>
                            <w:spacing w:before="0" w:after="0"/>
                            <w:textAlignment w:val="baseline"/>
                        </w:pPr>
                        <w:rPr>
                            <w:rFonts w:cs="Times New Roman"/>
                            <w:snapToGrid/>
                            <w:kern w:val="0"/>
                            <w:sz w:val="22"/>
                            <w:szCs w:val="20"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="table" w:styleId="Grilledutableau">
                        <w:name w:val="Table Grid"/>
                        <w:basedOn w:val="TableauNormal"/>
                        <w:uiPriority w:val="59"/>
                        <w:rPr>
                            <w:snapToGrid w:val="0"/>
                        </w:rPr>
                        <w:tblPr>
                            <w:tblBorders>
                                <w:top w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:left w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:bottom w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:right w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:insideH w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                                <w:insideV w:val="single" w:sz="4" w:space="0" w:color="auto"/>
                            </w:tblBorders>
                        </w:tblPr>
                    </w:style>
                    <w:style w:type="paragraph" w:styleId="En-tte">
                        <w:name w:val="header"/>
                        <w:basedOn w:val="Normal"/>
                        <w:link w:val="En-tteCar"/>
                        <w:uiPriority w:val="99"/>
                        <w:pPr>
                            <w:tabs>
                                <w:tab w:val="center" w:pos="4536"/>
                                <w:tab w:val="right" w:pos="9072"/>
                            </w:tabs>
                        </w:pPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="En-tteCar">
                        <w:name w:val="En-tête Car"/>
                        <w:link w:val="En-tte"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman"/>
                            <w:snapToGrid w:val="0"/>
                            <w:sz w:val="24"/>
                            <w:szCs w:val="24"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="paragraph" w:styleId="Pieddepage">
                        <w:name w:val="footer"/>
                        <w:basedOn w:val="Normal"/>
                        <w:link w:val="PieddepageCar"/>
                        <w:uiPriority w:val="99"/>
                        <w:pPr>
                            <w:tabs>
                                <w:tab w:val="center" w:pos="4536"/>
                                <w:tab w:val="right" w:pos="9072"/>
                            </w:tabs>
                        </w:pPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="PieddepageCar">
                        <w:name w:val="Pied de page Car"/>
                        <w:link w:val="Pieddepage"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman"/>
                            <w:snapToGrid w:val="0"/>
                            <w:sz w:val="24"/>
                            <w:szCs w:val="24"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="paragraph" w:styleId="Textedebulles">
                        <w:name w:val="Balloon Text"/>
                        <w:basedOn w:val="Normal"/>
                        <w:link w:val="TextedebullesCar"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:sz w:val="16"/>
                            <w:szCs w:val="16"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="TextedebullesCar">
                        <w:name w:val="Texte de bulles Car"/>
                        <w:link w:val="Textedebulles"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:rFonts w:ascii="Tahoma" w:hAnsi="Tahoma" w:cs="Tahoma"/>
                            <w:snapToGrid w:val="0"/>
                            <w:sz w:val="16"/>
                            <w:szCs w:val="16"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="tw4winMark">
                        <w:name w:val="tw4winMark"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Courier New" w:hAnsi="Courier New"/>
                            <w:vanish/>
                            <w:color w:val="800080"/>
                            <w:sz w:val="24"/>
                            <w:vertAlign w:val="subscript"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:styleId="Marquedecommentaire">
                        <w:name w:val="annotation reference"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:sz w:val="16"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="paragraph" w:styleId="Commentaire">
                        <w:name w:val="annotation text"/>
                        <w:basedOn w:val="Normal"/>
                        <w:link w:val="CommentaireCar"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:sz w:val="20"/>
                            <w:szCs w:val="20"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="CommentaireCar">
                        <w:name w:val="Commentaire Car"/>
                        <w:link w:val="Commentaire"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman"/>
                            <w:snapToGrid w:val="0"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="paragraph" w:styleId="Objetducommentaire">
                        <w:name w:val="annotation subject"/>
                        <w:basedOn w:val="Commentaire"/>
                        <w:next w:val="Commentaire"/>
                        <w:link w:val="ObjetducommentaireCar"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:b/>
                            <w:bCs/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="ObjetducommentaireCar">
                        <w:name w:val="Objet du commentaire Car"/>
                        <w:link w:val="Objetducommentaire"/>
                        <w:uiPriority w:val="99"/>
                        <w:semiHidden/>
                        <w:rPr>
                            <w:rFonts w:ascii="Times New Roman" w:hAnsi="Times New Roman"/>
                            <w:b/>
                            <w:bCs/>
                            <w:snapToGrid w:val="0"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:styleId="Numrodepage">
                        <w:name w:val="page number"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:rFonts w:cs="Times New Roman"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="paragraph" w:styleId="Corpsdetexte">
                        <w:name w:val="Body Text"/>
                        <w:basedOn w:val="Normal"/>
                        <w:link w:val="CorpsdetexteCar"/>
                        <w:uiPriority w:val="99"/>
                        <w:pPr>
                            <w:spacing w:line="320" w:lineRule="atLeast"/>
                            <w:jc w:val="both"/>
                        </w:pPr>
                        <w:rPr>
                            <w:rFonts w:eastAsia="SimSun"/>
                            <w:snapToGrid/>
                            <w:color w:val="000000"/>
                            <w:lang w:val="fr-FR"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="CorpsdetexteCar">
                        <w:name w:val="Corps de texte Car"/>
                        <w:link w:val="Corpsdetexte"/>
                        <w:uiPriority w:val="99"/>
                        <w:locked/>
                        <w:rPr>
                            <w:rFonts w:eastAsia="SimSun"/>
                            <w:snapToGrid w:val="0"/>
                            <w:color w:val="000000"/>
                            <w:sz w:val="24"/>
                            <w:lang w:val="fr-FR"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="tw4winError">
                        <w:name w:val="tw4winError"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Courier New" w:hAnsi="Courier New"/>
                            <w:color w:val="00FF00"/>
                            <w:sz w:val="40"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="tw4winTerm">
                        <w:name w:val="tw4winTerm"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:color w:val="0000FF"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="tw4winPopup">
                        <w:name w:val="tw4winPopup"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Courier New" w:hAnsi="Courier New"/>
                            <w:noProof/>
                            <w:color w:val="008000"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="tw4winJump">
                        <w:name w:val="tw4winJump"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Courier New" w:hAnsi="Courier New"/>
                            <w:noProof/>
                            <w:color w:val="008080"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="tw4winExternal">
                        <w:name w:val="tw4winExternal"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Courier New" w:hAnsi="Courier New"/>
                            <w:noProof/>
                            <w:color w:val="808080"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="tw4winInternal">
                        <w:name w:val="tw4winInternal"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Courier New" w:hAnsi="Courier New"/>
                            <w:noProof/>
                            <w:color w:val="FF0000"/>
                        </w:rPr>
                    </w:style>
                    <w:style w:type="character" w:customStyle="1" w:styleId="DONOTTRANSLATE">
                        <w:name w:val="DO_NOT_TRANSLATE"/>
                        <w:uiPriority w:val="99"/>
                        <w:rPr>
                            <w:rFonts w:ascii="Courier New" w:hAnsi="Courier New"/>
                            <w:noProof/>
                            <w:color w:val="800000"/>
                        </w:rPr>
                    </w:style>
                </w:styles>
            </pkg:xmlData>
        </pkg:part>
        <pkg:part pkg:name="/word/webSettings.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml">
            <pkg:xmlData>
                <w:webSettings
                    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                    xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                    xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                    xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                    xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                    xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                    xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                    xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                    xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
                    <w:optimizeForBrowser/>
                    <w:allowPNG/>
                </w:webSettings>
            </pkg:xmlData>
        </pkg:part>
        <pkg:part pkg:name="/word/fontTable.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml">
            <pkg:xmlData>
                <w:fonts
                    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                    xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"
                    xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"
                    xmlns:w14="http://schemas.microsoft.com/office/word/2010/wordml"
                    xmlns:w15="http://schemas.microsoft.com/office/word/2012/wordml"
                    xmlns:w16cex="http://schemas.microsoft.com/office/word/2018/wordml/cex"
                    xmlns:w16cid="http://schemas.microsoft.com/office/word/2016/wordml/cid"
                    xmlns:w16="http://schemas.microsoft.com/office/word/2018/wordml"
                    xmlns:w16se="http://schemas.microsoft.com/office/word/2015/wordml/symex" mc:Ignorable="w14 w15 w16se w16cid w16 w16cex">
                    <w:font w:name="Times New Roman">
                        <w:panose1 w:val="02020603050405020304"/>
                        <w:charset w:val="00"/>
                        <w:family w:val="roman"/>
                        <w:pitch w:val="variable"/>
                        <w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
                    </w:font>
                    <w:font w:name="Arial">
                        <w:panose1 w:val="020B0604020202020204"/>
                        <w:charset w:val="00"/>
                        <w:family w:val="swiss"/>
                        <w:pitch w:val="variable"/>
                        <w:sig w:usb0="E0002EFF" w:usb1="C000785B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
                    </w:font>
                    <w:font w:name="Cambria">
                        <w:panose1 w:val="02040503050406030204"/>
                        <w:charset w:val="00"/>
                        <w:family w:val="roman"/>
                        <w:pitch w:val="variable"/>
                        <w:sig w:usb0="E00006FF" w:usb1="420024FF" w:usb2="02000000" w:usb3="00000000" w:csb0="0000019F" w:csb1="00000000"/>
                    </w:font>
                    <w:font w:name="Tahoma">
                        <w:panose1 w:val="020B0604030504040204"/>
                        <w:charset w:val="00"/>
                        <w:family w:val="swiss"/>
                        <w:pitch w:val="variable"/>
                        <w:sig w:usb0="E1002EFF" w:usb1="C000605B" w:usb2="00000029" w:usb3="00000000" w:csb0="000101FF" w:csb1="00000000"/>
                    </w:font>
                    <w:font w:name="Courier New">
                        <w:panose1 w:val="02070309020205020404"/>
                        <w:charset w:val="00"/>
                        <w:family w:val="modern"/>
                        <w:pitch w:val="fixed"/>
                        <w:sig w:usb0="E0002EFF" w:usb1="C0007843" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
                    </w:font>
                    <w:font w:name="SimSun">
                        <w:altName w:val="宋体"/>
                        <w:panose1 w:val="02010600030101010101"/>
                        <w:charset w:val="86"/>
                        <w:family w:val="auto"/>
                        <w:pitch w:val="variable"/>
                        <w:sig w:usb0="00000003" w:usb1="288F0000" w:usb2="00000016" w:usb3="00000000" w:csb0="00040001" w:csb1="00000000"/>
                    </w:font>
                    <w:font w:name="Calibri">
                        <w:panose1 w:val="020F0502020204030204"/>
                        <w:charset w:val="00"/>
                        <w:family w:val="swiss"/>
                        <w:pitch w:val="variable"/>
                        <w:sig w:usb0="E4002EFF" w:usb1="C000247B" w:usb2="00000009" w:usb3="00000000" w:csb0="000001FF" w:csb1="00000000"/>
                    </w:font>
                </w:fonts>
            </pkg:xmlData>
        </pkg:part>
        <pkg:part pkg:name="/docProps/core.xml" pkg:contentType="application/vnd.openxmlformats-package.core-properties+xml" pkg:padding="256">
            <pkg:xmlData>
                <cp:coreProperties
                    xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"
                    xmlns:dc="http://purl.org/dc/elements/1.1/"
                    xmlns:dcterms="http://purl.org/dc/terms/"
                    xmlns:dcmitype="http://purl.org/dc/dcmitype/"
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                    <dc:title>Chancellerie d’Etat</dc:title>
                    <dc:creator>WP</dc:creator>
                    <cp:lastModifiedBy>Collombin Maxime</cp:lastModifiedBy>
                    <cp:revision>3</cp:revision>
                    <cp:lastPrinted>2008-11-11T14:02:00Z</cp:lastPrinted>
                    <dcterms:created xsi:type="dcterms:W3CDTF">2022-11-18T13:10:00Z</dcterms:created>
                    <dcterms:modified xsi:type="dcterms:W3CDTF">2022-11-18T15:09:00Z</dcterms:modified>
                </cp:coreProperties>
            </pkg:xmlData>
        </pkg:part>
        <pkg:part pkg:name="/docProps/app.xml" pkg:contentType="application/vnd.openxmlformats-officedocument.extended-properties+xml" pkg:padding="256">
            <pkg:xmlData>
                <Properties
                    xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
                    xmlns:vt="http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes">
                    <Template>Normal</Template>
                    <TotalTime>7</TotalTime>
                    <Pages>1</Pages>
                    <Words>329</Words>
                    <Characters>1879</Characters>
                    <Application>Microsoft Office Word</Application>
                    <DocSecurity>0</DocSecurity>
                    <Lines>15</Lines>
                    <Paragraphs>4</Paragraphs>
                    <ScaleCrop>false</ScaleCrop>
                    <HeadingPairs>
                        <vt:vector size="4" baseType="variant">
                            <vt:variant>
                                <vt:lpstr>Titre</vt:lpstr>
                            </vt:variant>
                            <vt:variant>
                                <vt:i4>1</vt:i4>
                            </vt:variant>
                            <vt:variant>
                                <vt:lpstr>Titel</vt:lpstr>
                            </vt:variant>
                            <vt:variant>
                                <vt:i4>1</vt:i4>
                            </vt:variant>
                        </vt:vector>
                    </HeadingPairs>
                    <TitlesOfParts>
                        <vt:vector size="2" baseType="lpstr">
                            <vt:lpstr>Chancellerie d’Etat</vt:lpstr>
                            <vt:lpstr>Chancellerie d’Etat</vt:lpstr>
                        </vt:vector>
                    </TitlesOfParts>
                    <Company>Etat du Valais - Staat Wallis</Company>
                    <LinksUpToDate>false</LinksUpToDate>
                    <CharactersWithSpaces>2204</CharactersWithSpaces>
                    <SharedDoc>false</SharedDoc>
                    <HyperlinksChanged>false</HyperlinksChanged>
                    <AppVersion>16.0000</AppVersion>
                </Properties>
            </pkg:xmlData>
        </pkg:part>
        <pkg:part pkg:name="/customXml/_rels/item1.xml.rels" pkg:contentType="application/vnd.openxmlformats-package.relationships+xml" pkg:padding="256">
            <pkg:xmlData>
                <Relationships
                    xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
                    <Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps" Target="itemProps1.xml"/>
                </Relationships>
            </pkg:xmlData>
        </pkg:part>
    </pkg:package>
    <?xml version="1.0" encoding="UTF-8"?>
    <sld:StyledLayerDescriptor
        xmlns="http://www.opengis.net/sld"
        xmlns:sld="http://www.opengis.net/sld"
        xmlns:gml="http://www.opengis.net/gml"
        xmlns:ogc="http://www.opengis.net/ogc" version="1.0.0">
        <sld:NamedLayer>
            <sld:Name>Default Styler</sld:Name>
            <sld:UserStyle>
                <sld:Name>Default Styler</sld:Name>
                <sld:FeatureTypeStyle>
                    <sld:Name>name</sld:Name>
                    <sld:Rule>
                        <sld:Title>LCZ 1: Compact high-rise</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>1</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#8b0101</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 2: Compact mid-rise</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>2</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#cc0200</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 3: Compact low-rise</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>3</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#fc0001</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 4: Open high-rise</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>4</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#be4c03</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 5: Open mid-rise</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>5</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#ff6602</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 6: Open low-rise</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>6</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#ff9856</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 7: Lightweight low-rise</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>7</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#fbed08</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 8: Large low-rise</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>8</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#bcbcba</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 9: Sparsely built</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>9</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#ffcca7</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ 10: Heavy industry</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>10</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#57555a</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ A: Dense trees</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>101</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#006700</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ B: Scattered trees</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>102</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#05aa05</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ C: Bush,scrub</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>103</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#648423</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ D: Low plants</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>104</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#bbdb7a</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ E: Bare rock or paved</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>105</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#010101</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ F: Bare soil or sand</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>106</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#fdf6ae</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <sld:Title>LCZ G: Water</sld:Title>
                        <ogc:Filter>
                            <ogc:PropertyIsEqualTo>
                                <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                <ogc:Literal>107</ogc:Literal>
                            </ogc:PropertyIsEqualTo>
                        </ogc:Filter>
                        <sld:PolygonSymbolizer>
                            <sld:Fill>
                                <sld:CssParameter name="fill">#6d67fd</sld:CssParameter>
                            </sld:Fill>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:PolygonSymbolizer>
                    </sld:Rule>
                    <sld:Rule>
                        <ogc:Filter>
                            <ogc:And>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>1</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>2</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>3</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>4</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>5</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>6</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>7</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>8</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>9</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>10</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>101</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>102</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>103</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>104</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>105</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>106</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                                <ogc:PropertyIsNotEqualTo>
                                    <ogc:PropertyName>LCZ_PRIMARY</ogc:PropertyName>
                                    <ogc:Literal>107</ogc:Literal>
                                </ogc:PropertyIsNotEqualTo>
                            </ogc:And>
                        </ogc:Filter>
                        <sld:LineSymbolizer>
                            <sld:Stroke>
                                <sld:CssParameter name="stroke-width">0.26</sld:CssParameter>
                            </sld:Stroke>
                        </sld:LineSymbolizer>
                    </sld:Rule>
                    <sld:VendorOption name="ruleEvaluation">first</sld:VendorOption>
                </sld:FeatureTypeStyle>
            </sld:UserStyle>
        </sld:NamedLayer>
    </sld:StyledLayerDescriptor>