<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-mcnally-envelope-01" category="exp" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.2 -->
  <front>
    <title abbrev="Envelope">The Envelope Structured Data Format</title>
    <seriesInfo name="Internet-Draft" value="draft-mcnally-envelope-01"/>
    <author initials="W." surname="McNally" fullname="Wolf McNally">
      <organization>Blockchain Commons</organization>
      <address>
        <email>wolf@wolfmcnally.com</email>
      </address>
    </author>
    <author initials="C." surname="Allen" fullname="Christopher Allen">
      <organization>Blockchain Commons</organization>
      <address>
        <email>christophera@lifewithalacrity.com</email>
      </address>
    </author>
    <date year="2023" month="March" day="07"/>
    <area>Applications and Real-Time</area>
    <workgroup>Network Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>The <tt>envelope</tt> protocol specifies a structured format for hierarchical binary data focused on the ability to transmit it in a privacy-focused way. Envelopes are designed to facilitate "smart documents" and have a number of unique features including: easy representation of a variety of semantic structures, a built-in Merkle-like digest tree, deterministic representation using CBOR, and the ability for the holder of a document to selectively encrypt or elide specific parts of a document without invalidating the document structure including the digest tree, or any cryptographic signatures that rely on it.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/BlockchainCommons/envelope-internet-draft"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Gordian Envelope was designed with two key goals in mind: to be <em>Structure-Ready</em>, allowing for the reliable and interoperable storage of information; and to be <em>Privacy-Ready</em>, ensuring that transmission of that data can occur in a privacy-protecting manner.</t>
      <ul spacing="normal">
        <li>
          <strong>Structure-Ready.</strong> Gordian Envelope is designed as a Smart Document, meant to store information about a subject. More than that, it's a meta-document that can contain or refer to other documents. It can support multiple data formats, from simple hierarchical structures to labeled property graphs, semantic triples, and other forms of structured graphs. Though its fundamental structure is a tree, it can be used to create Directed Acyclic Graphs (DAGs) through references between Envelopes.</li>
        <li>
          <strong>Privacy-Ready.</strong> Gordian Envelope protects the privacy of its data through progressive trust, allowing for holders to minimally disclose information by using elision or encryption, and then to optionally increase that disclosure over time. The fact that a holder can control data revelation, not just an issuer, creates a new level of privacy for all stakeholders. The progressive trust in Gordian Envelopes is accomplished through hashing of all elements, which creates foundational support for cryptographic functions such as signing and encryption, without actually defining which cryptographic functions must be used.</li>
      </ul>
      <t>The following architectural decisions support these goals:</t>
      <ul spacing="normal">
        <li>
          <strong>Structured Merkle Tree.</strong> A variant of the Merkle Tree structure is created by forming the hashing of the elements in the Envelope into a tree of digests. (In this "structured Merkle Tree", all nodes contain both semantic content and digests, rather than semantic content being limited to leaves.)</li>
        <li>
          <strong>Deterministic Representation.</strong> There is only one way to encode any semantic representation within a Gordian Envelope. This is accomplished through the use of Deterministic CBOR and the sorting of the Envelope by hashes to create a lexicographic order. Any Envelope that doesn't follow these strict rules can be rejected; as a result, there's no need to worry about different people adding the assertions in a different order or at different times: if two Envelopes contain the same data, they will be encoded the same way.</li>
      </ul>
      <section anchor="elision-support">
        <name>Elision Support</name>
        <ul spacing="normal">
          <li>
            <strong>Elision of All Elements.</strong> Gordian Envelopes innately support elision for any part of its data, including subjects, predicates, and objects.</li>
          <li>
            <strong>Elision, Compression, and Encryption.</strong> Elision can be used for a variety of purposes including redaction (removing information), compression (removing duplicate information), and encryption (enciphering information).</li>
          <li>
            <strong>Holder-initiated Elision.</strong> Elision can be performed by the Holder of a Gordian Envelope, not just the Issuer.</li>
          <li>
            <strong>Granular Holder Control.</strong> Elision can not only be performed by any Holder, but also for any data, allowing each entity to elide data as is appropriate for the management of their personal (or business) risk.</li>
          <li>
            <strong>Progressive Trust.</strong> The elision mechanics in Gordian Envelopes allow for progressive trust, where increasing amounts of data are revealed over time, and can be combined with encryption to escrow data to later be revealed.</li>
          <li>
            <strong>Consistent Hashing.</strong> Even when elided or encrypted, hashes for those parts of the Gordian Envelope remain the same.</li>
        </ul>
      </section>
      <section anchor="privacy-support">
        <name>Privacy Support</name>
        <ul spacing="normal">
          <li>
            <strong>Proof of Inclusion.</strong> As an alternative to presenting elided structures, proofs of inclusion can be included in top-level hashes.</li>
          <li>
            <strong>Herd Privacy.</strong> Proofs of inclusion allow for herd privacy where all members of a class can share data such as a VC or DID without revealing individual information.</li>
          <li>
            <strong>Non-Correlation.</strong> Encrypted Gordian Envelope data can optionally be made less correlatable with the addition of salt.</li>
        </ul>
      </section>
      <section anchor="authentication-support">
        <name>Authentication Support</name>
        <ul spacing="normal">
          <li>
            <strong>Symmetric Key Permits.</strong> Gordian Envelopes can be locked ("closed") using a symmetric key.</li>
          <li>
            <strong>SSKR Permits.</strong> Gordian Envelopes can alternatively be locked ("closed") using a symmetric key sharded with Shamir's Secret Sharing, with the shares stored with copies of the Envelope, and the whole enveloped thus openable if copies of the Envelope with a quorum of different shares are gathered.</li>
          <li>
            <strong>Public Key Permits.</strong> Gordian Envelopes can alternatively be locked ("closed") with a public key and then be opened with the associated private key, or vice versa.</li>
          <li>
            <strong>Multiple Permits.</strong> Gordian Envelopes can simultaneously be locked ("closed") via a variety of means and then openable by any appropriate individual method, with different methods likely held by different people.</li>
        </ul>
      </section>
      <section anchor="future-looking">
        <name>Future Looking</name>
        <ul spacing="normal">
          <li>
            <strong>Data Storage.</strong> The initial inspiration for Gordian Envelopes was for secure data storage.</li>
          <li>
            <strong>Credentials &amp; Presentations.</strong> The usage of Gordian Envelope signing techniques allows for the creation of credentials and the ability to present them to different verifiers in different ways.</li>
          <li>
            <strong>Distributed or Decentralized Identifiers.</strong> Self-Certifying Identifiers (SCIDs) can be created and shared with peers, certified by a trust authority, or registered on blockchain.</li>
          <li>
            <strong>Future Techniques.</strong> Beyond its technical specifics, Gordian Envelopes still allows for cl-sigs, bbs+, and other privacy-preserving techniques such as zk-proofs, differential privacy, etc.</li>
          <li>
            <strong>Cryptography Agnostic.</strong> Generally, the Gordian Envelope architecture is cryptography agnostic, allowing it to work with everything from older algorithms with silicon support through more modern algorithms suited to blockchains and to future zk-proof or quantum-attack resistant cryptographic choices. These choices are made in sets via ciphersuites.</li>
        </ul>
      </section>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <t>This specification makes use of the following terminology:</t>
      <dl>
        <dt>byte</dt>
        <dd>
          <t>Used in its now-customary sense as a synonym for "octet".</t>
        </dd>
        <dt>element</dt>
        <dd>
          <t>An envelope is a tree of elements, each of which is itself an envelope.</t>
        </dd>
        <dt>image</dt>
        <dd>
          <t>The source data from which a cryptographic digest is calculated.</t>
        </dd>
      </dl>
    </section>
    <section anchor="envelope-format-specification">
      <name>Envelope Format Specification</name>
      <t>This section is normative, and specifies the binary format of envelopes in terms of its CBOR components and their sequencing. The formal language used is the Concise Data Definition Language (CDDL) <xref target="RFC8610"/>. To be considered a well-formed envelope, a sequence of bytes <bcp14>MUST</bcp14> be well-formed deterministic CBOR <xref target="RFC8949"/> and <bcp14>MUST</bcp14> conform to the specifications in this section.</t>
      <section anchor="top-level">
        <name>Top Level</name>
        <t>An envelope is a tagged enumerated type with seven cases. Four of these cases have no children:</t>
        <ul spacing="normal">
          <li>
            <tt>leaf</tt></li>
          <li>
            <tt>known-value</tt></li>
          <li>
            <tt>encrypted</tt></li>
          <li>
            <tt>elided</tt></li>
        </ul>
        <t>Two of these cases, <tt>encrypted</tt> and <tt>elided</tt>, "declare" their digest, i.e., they actually encode their digest in the envelope serialization. For all other cases, their digest is implicit in the data itself and may be computed and cached by implementations when an envelope is deserialized.</t>
        <t>The other three cases have one or more children:</t>
        <ul spacing="normal">
          <li>The <tt>node</tt> case has a child for its <tt>subject</tt> and an additional child for each of its <tt>assertion</tt>s.</li>
          <li>The <tt>wrapped-envelope</tt> case has exactly one child: the envelope that has been wrapped.</li>
          <li>The <tt>assertion</tt> case has exactly two children: the <tt>predicate</tt> and the <tt>object</tt>.</li>
        </ul>
        <sourcecode type="cddl"><![CDATA[
envelope = #6.200(
    envelope-content
)

envelope-content = (
    leaf /
    known-value /
    encrypted /
    elided /
    node /
    wrapped-envelope /
    assertion
)
]]></sourcecode>
      </section>
      <section anchor="cases-without-children">
        <name>Cases Without Children</name>
        <section anchor="leaf-case-format">
          <name>Leaf Case Format</name>
          <t>A <tt>leaf</tt> case is used when the envelope contains only user-defined CBOR content. It is tagged using #6.24, per <xref target="RFC8949"/> section 3.4.5.1, "Encoded CBOR Data Item".</t>
          <t>To preserve deterministic encoding, developers using the envelope format <bcp14>MUST</bcp14> specify where tags <bcp14>MUST</bcp14> or <bcp14>MUST NOT</bcp14> be used to identify the type of CBOR within <tt>leaf</tt> elements. In cases where simple CBOR values like integers or UTF-8 strings are encoded, no additional tagging may be necessary because positionality within the envelope is sufficient to imply the type without ambiguity.</t>
          <t>For example, if a structure representing a person specifies that it <bcp14>MAY</bcp14> have a <tt>firstName</tt> predicate with a <tt>string</tt> object, there is no need for an additional tag within the object <tt>leaf</tt> element: it would be a coding error to place anything but a <tt>string</tt> in that position. But where developers are specifying a compound CBOR structure with a specified layout for inclusion in an envelope, especially one that may be used in a plurality of positions (for example a CBOR array of alias first names), they <bcp14>SHOULD</bcp14> specify a tag, and specify where it <bcp14>MUST</bcp14> or <bcp14>MUST NOT</bcp14> be used.</t>
          <sourcecode type="cddl"><![CDATA[
leaf = #6.24(bytes)
]]></sourcecode>
        </section>
        <section anchor="known-value-case-format">
          <name>Known Value Case Format</name>
          <t>A <tt>known-value</tt> case is used to specify an unsigned integer in a namespace of well-known values. Known values are frequently used as predicates. For example, any envelope can be used as a predicate in an assertion, but many predicates are commonly used, e.g., <tt>verifiedBy</tt> for signatures; hence it is desirable to keep common predicates short.</t>
          <sourcecode type="cddl"><![CDATA[
known-value = #6.223(uint)
]]></sourcecode>
        </section>
        <section anchor="encrypted-case-format">
          <name>Encrypted Case Format</name>
          <t>An <tt>encrypted</tt> case is used for an envelope that has been encrypted using an Authenticated Encryption with Associated Data (AEAD), and where the digest of the plaintext is declared by the encrypted structure's Additional Authenticated Data (AAD) field. This subsection specifies the construct used in the current reference implementation and is informative.</t>
          <sourcecode type="cddl"><![CDATA[
encrypted = crypto-msg
]]></sourcecode>
          <t>For <tt>crypto-msg</tt>, the reference implementation <xref target="ENVELOPE-REFIMPL"/> uses the definition in "UR Type Definition for Secure Messages" <xref target="CRYPTO-MSG"/> and we repeat the salient specification here. This format specifies the use of "ChaCha20 and Poly1305 for IETF Protocols" as described in <xref target="RFC8439"/>. When used with envelopes, the <tt>crypto-msg</tt> construct <tt>aad</tt> (additional authenticated data) field contains the <tt>digest</tt> of the plaintext, authenticating the declared digest using the Poly1305 MAC.</t>
          <sourcecode type="cddl"><![CDATA[
crypto-msg = #6.201([ ciphertext, nonce, auth, ? aad ])

ciphertext = bytes       ; encrypted using ChaCha20
aad = digest             ; Additional Authenticated Data
nonce = bytes .size 12   ; Random, generated at encryption-time
auth = bytes .size 16    ; Authentication tag created by Poly1305
]]></sourcecode>
        </section>
        <section anchor="elided-case-format">
          <name>Elided Case Format</name>
          <t>An <tt>elided</tt> case is used as a placeholder for an element that has been elided and its digest, produced by a cryptographic hash algorithm, is left as a placeholder.</t>
          <sourcecode type="cddl"><![CDATA[
elided = digest
]]></sourcecode>
          <t>For <tt>digest</tt>, the SHA-256 cryptographic hash function <xref target="RFC6234"/> is used to generate a 32 byte digest.</t>
          <sourcecode type="cddl"><![CDATA[
digest = #6.203(sha256-digest)

sha256-digest = bytes .size 32
]]></sourcecode>
        </section>
      </section>
      <section anchor="cases-with-children">
        <name>Cases With Children</name>
        <section anchor="node-case-format">
          <name>Node Case Format</name>
          <t>A <tt>node</tt> case is encoded as a CBOR array, and <bcp14>MUST</bcp14> be used when one or more assertions are present on the envelope. It <bcp14>MUST NOT</bcp14> be present when there is not at least one assertion. The first element of the array is the envelope's <tt>subject</tt>, Followed by one or more <tt>assertion-element</tt>s, each of which <bcp14>MUST</bcp14> be an <tt>assertion</tt>, or the <tt>encrypted</tt> or <tt>elided</tt> transformation of that assertion. The assertion elements <bcp14>MUST</bcp14> appear in ascending lexicographic order by their digest. The array <bcp14>MUST NOT</bcp14> contain any assertion elements with identical digests.</t>
          <t>Note that <tt>assertion-elements</tt> as defined here here explicitly include assertions that have been elided or encrypted, as specified in the CDDL below. The envelopes in the <tt>node</tt> case array <bcp14>MUST</bcp14>, when unelided/unencrypted be found to be actual <tt>assertion</tt> case envelopes, or it is a coding error.</t>
          <sourcecode type="cddl"><![CDATA[
node = [envelope-content, + assertion-element]

assertion-element = ( assertion / encrypted / elided )
]]></sourcecode>
        </section>
        <section anchor="wrapped-envelope-case-format">
          <name>Wrapped Envelope Case Format</name>
          <t>A <tt>wrapped-envelope</tt> case is used where an envelope, including all its assertions, should be treated as a single element, e.g. for the purpose of signing.</t>
          <sourcecode type="cddl"><![CDATA[
wrapped-envelope = #6.224(envelope-content)
]]></sourcecode>
        </section>
        <section anchor="assertion-case-format">
          <name>Assertion Case Format</name>
          <t>An <tt>assertion</tt> case is used for each of the assertions in an envelope. It is encoded as a CBOR array with exactly two elements in order:</t>
          <ol spacing="normal" type="1"><li>the envelope representing the predicate of the assertion, followed by</li>
            <li>the envelope representing the object of the assertion.</li>
          </ol>
          <sourcecode type="cddl"><![CDATA[
assertion = #6.221([predicate-envelope, object-envelope])
predicate-envelope = envelope
object-envelope = envelope
]]></sourcecode>
        </section>
      </section>
    </section>
    <section anchor="computing-the-digest-tree">
      <name>Computing the Digest Tree</name>
      <t>This section specifies how the digests for each of the envelope cases are computed, and is normative. The examples in this section may be used as test vectors.</t>
      <t>Each of the seven enumerated envelope cases produces an image which is used as input to a cryptographic hash function to produce a digest of its contents.</t>
      <t>The overall digest of an envelope is the digest of its specific case.</t>
      <t>In this and subsequent sections:</t>
      <ul spacing="normal">
        <li>
          <tt>digest(image)</tt> is the SHA-256 hash function that produces a 32-byte digest.</li>
        <li>The <tt>.digest</tt> attribute is the digest of the named element computed as specified herein.</li>
        <li>The <tt>||</tt> operator represents the concatenation of byte sequences.</li>
      </ul>
      <section anchor="leaf-case-digest-calculation">
        <name>Leaf Case Digest Calculation</name>
        <t>The <tt>leaf</tt> case consists of any CBOR object. The envelope image is the CBOR serialization of that object:</t>
        <artwork><![CDATA[
digest(cbor)
]]></artwork>
        <section anchor="example">
          <name>Example</name>
          <t>The CBOR serialization of the plaintext string <tt>"Hello"</tt> (not including the quotes) is <tt>6548656C6C6F</tt>. The following command line calculates the SHA-256 sum of this sequence:</t>
          <artwork><![CDATA[
$ echo "6548656C6C6F" | xxd -r -p | shasum --binary --algorithm 256 | \
    awk '{ print $1 }'
4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb3d27ac1a55971e6b
]]></artwork>
          <t>Using the envelope command line tool <xref target="ENVELOPE-CLI"/>, we create an envelope with this string as the subject and display the envelope's digest. The digest below matches the one above.</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope digest --hex
4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb3d27ac1a55971e6b
]]></artwork>
        </section>
      </section>
      <section anchor="known-value-case-digest-calculation">
        <name>Known Value Case Digest Calculation</name>
        <t>The envelope image of the <tt>known-value</tt> case is the CBOR serialization of the unsigned integer value of the value tagged with #6.223, as specified in the Known Value Case Format section above.</t>
        <artwork><![CDATA[
digest(#6.223(uint))
]]></artwork>
        <section anchor="example-1">
          <name>Example</name>
          <t>The known value <tt>verifiedBy</tt> in CBOR diagnostic notation is <tt>223(3)</tt>, which in hex is <tt>D8DF03</tt>. The SHA-256 sum of this sequence is:</t>
          <artwork><![CDATA[
$ echo "D8DF03" | xxd -r -p | shasum --binary --algorithm 256 | \
    awk '{ print $1 }'
d933fc069551eae6c34b663e1c64dc8e62bfc43c1d43b3d22dbe57a3c4b84359
]]></artwork>
          <t>Using the envelope command line tool <xref target="ENVELOPE-CLI"/>, we create an envelope with this known value as the subject and display the envelope's digest. The digest below matches the one above.</t>
          <artwork><![CDATA[
$ envelope subject --known verifiedBy | envelope digest --hex
d933fc069551eae6c34b663e1c64dc8e62bfc43c1d43b3d22dbe57a3c4b84359
]]></artwork>
        </section>
      </section>
      <section anchor="encrypted-case-digest-calculation">
        <name>Encrypted Case Digest Calculation</name>
        <t>The <tt>encrypted</tt> case declares its digest to be the digest of plaintext before encryption. The declaration is made using a MAC, and when decrypting an element, the implementation <bcp14>MUST</bcp14> compare the digest of the decrypted element to the declared digest and flag an error if they do not match.</t>
        <section anchor="example-2">
          <name>Example</name>
          <t>If we create the envelope from the leaf example above, encrypt it, and then request its digest:</t>
          <artwork><![CDATA[
$ KEY=`envelope generate key`
$ envelope subject "Hello" | \
    envelope encrypt --key $KEY | \
    envelope digest --hex
4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb3d27ac1a55971e6b
]]></artwork>
          <t>...we see that its digest is the same as its plaintext form:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope digest --hex
4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb3d27ac1a55971e6b
]]></artwork>
        </section>
      </section>
      <section anchor="elided-case-digest-calculation">
        <name>Elided Case Digest Calculation</name>
        <t>The <tt>elided</tt> case declares its digest to be the digest of the envelope for which it is a placeholder.</t>
        <section anchor="example-3">
          <name>Example</name>
          <t>If we create the envelope from the leaf example above, elide it, and then request its digest:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope elide | envelope digest --hex
4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb3d27ac1a55971e6b
]]></artwork>
          <t>...we see that its digest is the same as its unelided form:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope digest --hex
4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb3d27ac1a55971e6b
]]></artwork>
        </section>
      </section>
      <section anchor="node-case-digest-calculation">
        <name>Node Case Digest Calculation</name>
        <t>The envelope image of the <tt>node</tt> case is the concatenation of the digest of its <tt>subject</tt> and the digests of its assertions sorted in ascending lexicographic order.</t>
        <t>With a <tt>node</tt> case, there <bcp14>MUST</bcp14> always be at least one assertion.</t>
        <artwork><![CDATA[
digest(subject.digest || assertion-0.digest ||
    assertion-1.digest || ... || assertion-n.digest)
]]></artwork>
        <section anchor="example-4">
          <name>Example</name>
          <t>We create four separate envelopes and display their digests:</t>
          <artwork><![CDATA[
$ SUBJECT=`envelope subject "Alice"`
$ envelope digest --hex $SUBJECT
13941b487c1ddebce827b6ec3f46d982938acdc7e3b6a140db36062d9519dd2f

$ ASSERTION_0=`envelope subject assertion "knows" "Bob"`
$ envelope digest --hex $ASSERTION_0
78d666eb8f4c0977a0425ab6aa21ea16934a6bc97c6f0c3abaefac951c1714a2

$ ASSERTION_1=`envelope subject assertion "knows" "Carol"`
$ envelope digest --hex $ASSERTION_1
4012caf2d96bf3962514bcfdcf8dd70c351735dec72c856ec5cdcf2ee35d6a91

$ ASSERTION_2=`envelope subject assertion "knows" "Edward"`
$ envelope digest --hex $ASSERTION_2
65c3ebc3f056151a6091e738563dab4af8da1778da5a02afcd104560b612ca17
]]></artwork>
          <t>We combine the envelopes into a single envelope with three assertions:</t>
          <artwork><![CDATA[
$ ENVELOPE=`envelope assertion add envelope $ASSERTION_0 $SUBJECT | \
    envelope assertion add envelope $ASSERTION_1 | \
    envelope assertion add envelope $ASSERTION_2`

$ envelope $ENVELOPE
"Alice" [
    "knows": "Bob"
    "knows": "Carol"
    "knows": "Edward"
]

$ envelope digest --hex $ENVELOPE
6255e3b67ad935caf07b5dce5105d913dcfb82f0392d4d302f6d406e85ab4769
]]></artwork>
          <t>Note that in the envelope notation representation above, the assertions are sorted alphabetically, with <tt>"knows": "Edward"</tt> coming last. But internally, the three assertions are ordered by digest in ascending lexicographic order, with "Carol" coming first because its digest starting with <tt>4012caf2</tt> is the lowest, as in the tree formatted display below:</t>
          <artwork><![CDATA[
$ envelope --tree $ENVELOPE
6255e3b6 NODE
    13941b48 subj "Alice"
    4012caf2 ASSERTION
        db7dd21c pred "knows"
        afb8122e obj "Carol"
    65c3ebc3 ASSERTION
        db7dd21c pred "knows"
        e9af7883 obj "Edward"
    78d666eb ASSERTION
        db7dd21c pred "knows"
        13b74194 obj "Bob"
]]></artwork>
          <t>To replicate this, we make a list of digests, starting with the subject, and then each assertion's digest in ascending lexicographic order:</t>
          <artwork><![CDATA[
13941b487c1ddebce827b6ec3f46d982938acdc7e3b6a140db36062d9519dd2f
4012caf2d96bf3962514bcfdcf8dd70c351735dec72c856ec5cdcf2ee35d6a91
65c3ebc3f056151a6091e738563dab4af8da1778da5a02afcd104560b612ca17
78d666eb8f4c0977a0425ab6aa21ea16934a6bc97c6f0c3abaefac951c1714a2
]]></artwork>
          <t>We then calculate the SHA-256 hash of the concatenation of these four digests. Note that this is the same digest as the composite envelope's digest:</t>
          <artwork><![CDATA[
echo "13941b487c1ddebce827b6ec3f46d982938acdc7e3b6a140db36062d9519dd2f\
4012caf2d96bf3962514bcfdcf8dd70c351735dec72c856ec5cdcf2ee35d6a91\
65c3ebc3f056151a6091e738563dab4af8da1778da5a02afcd104560b612ca17\
78d666eb8f4c0977a0425ab6aa21ea16934a6bc97c6f0c3abaefac951c1714a2" | \
    xxd -r -p | shasum --binary --algorithm 256 | awk '{ print $1 }'
6255e3b67ad935caf07b5dce5105d913dcfb82f0392d4d302f6d406e85ab4769

$ envelope digest --hex $ENVELOPE
6255e3b67ad935caf07b5dce5105d913dcfb82f0392d4d302f6d406e85ab4769
]]></artwork>
        </section>
      </section>
      <section anchor="wrapped-envelope-case-digest-calculation">
        <name>Wrapped Envelope Case Digest Calculation</name>
        <t>The envelope image of the <tt>wrapped-envelope</tt> case is the digest of the wrapped envelope:</t>
        <artwork><![CDATA[
digest(envelope.digest)
]]></artwork>
        <section anchor="example-5">
          <name>Example</name>
          <t>As above, we note the digest of a leaf envelope is the digest of its CBOR:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | envelope digest --hex
4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb3d27ac1a55971e6b

$ echo "6548656C6C6F" | xxd -r -p | shasum --binary --algorithm 256 | \
    awk '{ print $1 }'
4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb3d27ac1a55971e6b
]]></artwork>
          <t>Now we note that the digest of a wrapped envelope is the digest of the wrapped envelope's digest:</t>
          <artwork><![CDATA[
$ envelope subject "Hello" | \
    envelope subject --wrapped | \
    envelope digest --hex
743a86a9f411b1441215fbbd3ece3de5206810e8a3dd8239182e123802677bd7

$ echo "4d303dac9eed63573f6190e9c4191be619e03a7b3c21e9bb\
3d27ac1a55971e6b" \
    | xxd -r -p | shasum --binary --algorithm 256 | awk '{ print $1 }'
743a86a9f411b1441215fbbd3ece3de5206810e8a3dd8239182e123802677bd7
]]></artwork>
        </section>
      </section>
      <section anchor="assertion-case-digest-calculation">
        <name>Assertion Case Digest Calculation</name>
        <t>The envelope image of the <tt>assertion</tt> case is the concatenation of the digests of the assertion's predicate and object in that order:</t>
        <artwork><![CDATA[
digest(predicate.digest || object.digest)
]]></artwork>
        <section anchor="example-6">
          <name>Example</name>
          <t>We create an assertion from two separate envelopes and display their digests:</t>
          <artwork><![CDATA[
$ PREDICATE=`envelope subject "knows"`
$ envelope digest --hex $PREDICATE
db7dd21c5169b4848d2a1bcb0a651c9617cdd90bae29156baaefbb2a8abef5ba

$ OBJECT=`envelope subject "Bob"`
$ envelope digest --hex $OBJECT
13b741949c37b8e09cc3daa3194c58e4fd6b2f14d4b1d0f035a46d6d5a1d3f11

$ ASSERTION=`envelope subject assertion "knows" "Bob"`
$ envelope digest --hex $ASSERTION
78d666eb8f4c0977a0425ab6aa21ea16934a6bc97c6f0c3abaefac951c1714a2
]]></artwork>
          <t>To replicate this, we make a list of the predicate digest and the object digest, in that order:</t>
          <artwork><![CDATA[
db7dd21c5169b4848d2a1bcb0a651c9617cdd90bae29156baaefbb2a8abef5ba
13b741949c37b8e09cc3daa3194c58e4fd6b2f14d4b1d0f035a46d6d5a1d3f11
]]></artwork>
          <t>We then calculate the SHA-256 hash of the concatenation of these two digests. Note that this is the same digest as the composite envelope's digest:</t>
          <artwork><![CDATA[
echo "db7dd21c5169b4848d2a1bcb0a651c9617cdd90bae29156baaefbb2a8abef5ba\
13b741949c37b8e09cc3daa3194c58e4fd6b2f14d4b1d0f035a46d6d5a1d3f11" | \
    xxd -r -p | shasum --binary --algorithm 256 | awk '{ print $1 }'
78d666eb8f4c0977a0425ab6aa21ea16934a6bc97c6f0c3abaefac951c1714a2

$ envelope digest --hex $ASSERTION
78d666eb8f4c0977a0425ab6aa21ea16934a6bc97c6f0c3abaefac951c1714a2
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="envelope-hierarchy">
      <name>Envelope Hierarchy</name>
      <t>This section is informative, and describes envelopes from the perspective of their hierarchical structure and the various ways they can be formatted.</t>
      <t>Notionally an envelope can be thought of as a <tt>subject</tt> and one or more <tt>predicate-object</tt> pairs called <tt>assertions</tt>:</t>
      <artwork><![CDATA[
subject [
    predicate0: object0
    predicate1: object1
    ...
    predicateN: objectN
]
]]></artwork>
      <t>A concrete example of this might be:</t>
      <artwork><![CDATA[
"Alice" [
    "knows": "Bob"
    "knows": "Carol"
    "knows": "Edward"
]
]]></artwork>
      <t>The notional concept of envelope is useful but not technically accurate because envelope is structurally implemented as an enumerated type consisting of seven cases. This allows actual envelope instances to be more flexible, for example a "bare assertion" consisting of a predicate-object pair with no subject, which is useful in some situations:</t>
      <artwork><![CDATA[
"knows": "Bob"
]]></artwork>
      <t>More common is the opposite case: a subject with no assertions:</t>
      <artwork><![CDATA[
"Alice"
]]></artwork>
      <t>In the diagrams above, there are five distinct "positions" of elements, each of which is itself an envelope and which therefore produces its own digest:</t>
      <ol spacing="normal" type="1"><li>envelope</li>
        <li>subject</li>
        <li>assertion</li>
        <li>predicate</li>
        <li>object</li>
      </ol>
      <t>The examples above are printed in "envelope notation," which is designed to make the semantic content of envelopes human-readable, but it doesn't show the actual digests associated with each of the positions. To see the structure more completely, we can display every element of the envelope in Tree Notation:</t>
      <artwork><![CDATA[
6255e3b6 NODE
    13941b48 subj "Alice"
    4012caf2 ASSERTION
        db7dd21c pred "knows"
        afb8122e obj "Carol"
    65c3ebc3 ASSERTION
        db7dd21c pred "knows"
        e9af7883 obj "Edward"
    78d666eb ASSERTION
        db7dd21c pred "knows"
        13b74194 obj "Bob"
]]></artwork>
      <t>We can also show the digest tree graphically using Mermaid <xref target="MERMAID"/>:</t>
      <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="539.8px" height="541.2px" viewBox="0 0 539.8 541.2" xml:space="preserve">
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M77.9,179.3l8.5-21.2c8.5-21.2,25.6-63.6,39.1-84.8  C139,52,149,52,153.9,52h5"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="150.8,47.5 159.8,52 150.8,56.5 "/>
          <rect x="149.3" y="47.5" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M86.6,184.4l7.1-8.8c7.1-8.8,21.3-26.4,36.8-35.2  c15.6-8.8,32.5-8.8,41-8.8h8.5"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="171.9,127 180.9,131.5 171.9,136 "/>
          <rect x="170.4" y="127" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M274.6,112.5l8.6-3.5c8.6-3.5,25.9-10.4,40.3-13.9  c14.3-3.5,25.7-3.5,31.4-3.5h5.7"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="352.5,87.2 361.5,91.8 352.5,96.2 "/>
          <rect x="351" y="87.2" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M274.6,150.5l8.6,3.5c8.6,3.5,25.9,10.4,40.7,13.9  c14.8,3.5,27,3.5,33.2,3.5h6.1"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="355.1,166.8 364.1,171.2 355.1,175.8 "/>
          <rect x="353.6" y="166.8" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M86.6,237.6l7.1,8.8c7.1,8.8,21.3,26.4,36.8,35.2  c15.6,8.8,32.5,8.8,41,8.8h8.5"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="171.9,286 180.9,290.5 171.9,295 "/>
          <rect x="170.4" y="286" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M274.6,271.5l8.6-3.5c8.6-3.5,25.9-10.4,40.3-13.9  c14.3-3.5,25.7-3.5,31.4-3.5h5.7"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="352.5,246.2 361.5,250.8 352.5,255.2 "/>
          <rect x="351" y="246.2" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M274.6,309.5l8.6,3.5c8.6,3.5,25.9,10.4,39.7,13.9  c13.8,3.5,24,3.5,29.1,3.5h5.1"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="349.1,325.8 358.1,330.2 349.1,334.8 "/>
          <rect x="347.6" y="325.8" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M74,244l9.2,34.2c9.2,34.2,27.5,102.7,45.2,137  c17.7,34.2,34.6,34.2,43.1,34.2h8.5"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="171.9,445 180.9,449.5 171.9,454 "/>
          <rect x="170.4" y="445" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M274.6,430.5l8.6-3.5c8.6-3.5,25.9-10.4,40.3-13.9  c14.3-3.5,25.7-3.5,31.4-3.5h5.7"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="352.5,405.2 361.5,409.8 352.5,414.2 "/>
          <rect x="351" y="405.2" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path fill="none" stroke="#000000" stroke-width="1.4998" d="M274.6,468.5l8.6,3.5c8.6,3.5,25.9,10.4,41.3,13.9  c15.4,3.5,28.9,3.5,35.6,3.5h6.7"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <polygon fill="black" points="358.8,484.8 367.8,489.2 358.8,493.8 "/>
          <rect x="357.3" y="484.8" fill-rule="evenodd" fill="none" width="12" height="9"/>
          <path d="M118.5,53.9l1-0.2c0.1,0.4,0.2,0.7,0.5,1s0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7c0-0.2-0.1-0.4-0.3-0.6  c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8c0-0.3,0.1-0.5,0.2-0.8  c0.1-0.2,0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3s0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2s0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1  c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3  c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.7  s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5C118.9,55.1,118.6,54.6,118.5,53.9z"/>
          <path d="M129,55.8v-0.9c-0.5,0.7-1.1,1.1-2,1.1c-0.4,0-0.7-0.1-1-0.2s-0.6-0.3-0.7-0.5s-0.3-0.5-0.3-0.8c0-0.2-0.1-0.5-0.1-1v-3.9  h1.1V53c0,0.6,0,0.9,0.1,1.1c0.1,0.3,0.2,0.5,0.4,0.7s0.5,0.2,0.8,0.2c0.3,0,0.6-0.1,0.9-0.2s0.5-0.4,0.6-0.7s0.2-0.7,0.2-1.2v-3.3  h1.1v6.2H129z"/>
          <path d="M132.6,55.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V55.8z M132.5,52.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S132.5,51.8,132.5,52.6z"/>
          <path d="M136.9,58.2l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C137.5,58.3,137.2,58.2,136.9,58.2z M138.2,48.4v-1.2h1.1v1.2H138.2z"/>
          <rect x="118.1" y="45.2" fill-rule="evenodd" fill="none" width="21.7" height="13.5"/>
          <path d="M315.3,97.9v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7s0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4s0.7,0.7,0.9,1.2s0.3,1,0.3,1.6  c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2s-0.5-0.3-0.7-0.6v3H315.3z M316.2,92.4  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6  c-0.4,0-0.8,0.2-1.2,0.6S316.2,91.6,316.2,92.4z"/>
          <path d="M321.9,95.5v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H321.9z"/>
          <path d="M330.2,93.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4c0-1,0.3-1.9,0.8-2.4  s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6c0.3,0.4,0.8,0.5,1.3,0.5  c0.4,0,0.7-0.1,1-0.3S330,93.9,330.2,93.5z M326.7,91.8h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5  C326.9,90.8,326.8,91.2,326.7,91.8z"/>
          <path d="M336.6,95.5v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H336.6z M333.3,92.4  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9S335.4,90,335,90  c-0.5,0-0.9,0.2-1.2,0.6C333.5,91,333.3,91.6,333.3,92.4z"/>
          <rect x="314.5" y="85" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
          <path d="M318.9,171.9c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8c0.5,0.6,0.8,1.3,0.8,2.3  c0,0.8-0.1,1.4-0.4,1.9c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C319.1,173.7,318.9,172.9,318.9,171.9z   M320,171.9c0,0.8,0.2,1.4,0.5,1.8s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6S320,171.1,320,171.9z"/>
          <path d="M326.9,175h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V175z M326.9,171.8c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C327.1,170.5,326.9,171.1,326.9,171.8z"/>
          <path d="M331.3,177.4l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C331.8,177.5,331.5,177.5,331.3,177.4z M332.6,167.6v-1.2h1.1v1.2H332.6z"/>
          <rect x="318.5" y="164.5" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
          <path d="M315.3,256.9v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7s0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4s0.7,0.7,0.9,1.2s0.3,1,0.3,1.6  c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2s-0.5-0.3-0.7-0.6v3H315.3z M316.2,251.4  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6  c-0.4,0-0.8,0.2-1.2,0.6S316.2,250.6,316.2,251.4z"/>
          <path d="M321.9,254.5v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H321.9z"/>
          <path d="M330.2,252.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S330,252.9,330.2,252.5z M326.7,250.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5C326.9,249.8,326.8,250.2,326.7,250.8z"/>
          <path d="M336.6,254.5v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H336.6z M333.3,251.4  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C333.5,250,333.3,250.6,333.3,251.4z"/>
          <rect x="314.5" y="244" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
          <path d="M318.9,330.9c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8c0.5,0.6,0.8,1.3,0.8,2.3  c0,0.8-0.1,1.4-0.4,1.9c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C319.1,332.7,318.9,331.9,318.9,330.9z   M320,330.9c0,0.8,0.2,1.4,0.5,1.8s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6S320,330.1,320,330.9z"/>
          <path d="M326.9,334h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V334z M326.9,330.8c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C327.1,329.5,326.9,330.1,326.9,330.8z"/>
          <path d="M331.3,336.4l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C331.8,336.5,331.5,336.5,331.3,336.4z M332.6,326.6v-1.2h1.1v1.2H332.6z"/>
          <rect x="318.5" y="323.5" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
          <path d="M315.3,415.9v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7s0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4s0.7,0.7,0.9,1.2s0.3,1,0.3,1.6  c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2s-0.5-0.3-0.7-0.6v3H315.3z M316.2,410.4  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6  c-0.4,0-0.8,0.2-1.2,0.6S316.2,409.6,316.2,410.4z"/>
          <path d="M321.9,413.5v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H321.9z"/>
          <path d="M330.2,411.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S330,411.9,330.2,411.5z M326.7,409.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5C326.9,408.8,326.8,409.2,326.7,409.8z"/>
          <path d="M336.6,413.5v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H336.6z M333.3,410.4  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C333.5,409,333.3,409.6,333.3,410.4z"/>
          <rect x="314.5" y="403" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
          <path d="M318.9,489.9c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8c0.5,0.6,0.8,1.3,0.8,2.3  c0,0.8-0.1,1.4-0.4,1.9c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C319.1,491.7,318.9,490.9,318.9,489.9z   M320,489.9c0,0.8,0.2,1.4,0.5,1.8s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6S320,489.1,320,489.9z"/>
          <path d="M326.9,493h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V493z M326.9,489.8c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C327.1,488.5,326.9,489.1,326.9,489.8z"/>
          <path d="M331.3,495.4l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C331.8,495.5,331.5,495.5,331.3,495.4z M332.6,485.6v-1.2h1.1v1.2H332.6z"/>
          <rect x="318.5" y="482.5" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
          <path fill="none" stroke="#000000" stroke-width="2.2498" d="M99.4,211c0,1.1-0.1,2.2-0.2,3.4c-0.1,1.1-0.3,2.2-0.5,3.3  c-0.2,1.1-0.5,2.2-0.8,3.3c-0.3,1.1-0.7,2.1-1.1,3.2c-0.4,1-0.9,2-1.4,3c-0.5,1-1.1,1.9-1.7,2.9c-0.6,0.9-1.3,1.8-2,2.7  s-1.5,1.7-2.3,2.5c-0.8,0.8-1.6,1.5-2.5,2.3c-0.9,0.7-1.8,1.4-2.7,2c-0.9,0.6-1.9,1.2-2.9,1.7c-1,0.5-2,1-3,1.4  c-1,0.4-2.1,0.8-3.2,1.1c-1.1,0.3-2.2,0.6-3.3,0.8c-1.1,0.2-2.2,0.4-3.3,0.5c-1.1,0.1-2.2,0.2-3.4,0.2c-1.1,0-2.2-0.1-3.4-0.2  c-1.1-0.1-2.2-0.3-3.3-0.5s-2.2-0.5-3.3-0.8c-1.1-0.3-2.1-0.7-3.2-1.1s-2-0.9-3-1.4c-1-0.5-1.9-1.1-2.9-1.7s-1.8-1.3-2.7-2  c-0.9-0.7-1.7-1.5-2.5-2.3s-1.5-1.6-2.3-2.5s-1.4-1.8-2-2.7c-0.6-0.9-1.2-1.9-1.7-2.9c-0.5-1-1-2-1.4-3c-0.4-1-0.8-2.1-1.1-3.2  s-0.6-2.2-0.8-3.3c-0.2-1.1-0.4-2.2-0.5-3.3c-0.1-1.1-0.2-2.2-0.2-3.4c0-1.1,0.1-2.2,0.2-3.4c0.1-1.1,0.3-2.2,0.5-3.3  c0.2-1.1,0.5-2.2,0.8-3.3c0.3-1.1,0.7-2.1,1.1-3.2c0.4-1,0.9-2,1.4-3c0.5-1,1.1-1.9,1.7-2.9c0.6-0.9,1.3-1.8,2-2.7s1.5-1.7,2.3-2.5  s1.6-1.5,2.5-2.3c0.9-0.7,1.8-1.4,2.7-2s1.9-1.2,2.9-1.7c1-0.5,2-1,3-1.4s2.1-0.8,3.2-1.1c1.1-0.3,2.2-0.6,3.3-0.8s2.2-0.4,3.3-0.5  c1.1-0.1,2.2-0.2,3.4-0.2c1.1,0,2.2,0.1,3.4,0.2c1.1,0.1,2.2,0.3,3.3,0.5c1.1,0.2,2.2,0.5,3.3,0.8c1.1,0.3,2.1,0.7,3.2,1.1  c1,0.4,2,0.9,3,1.4c1,0.5,1.9,1.1,2.9,1.7c0.9,0.6,1.8,1.3,2.7,2c0.9,0.7,1.7,1.5,2.5,2.3c0.8,0.8,1.5,1.6,2.3,2.5s1.4,1.8,2,2.7  c0.6,0.9,1.2,1.9,1.7,2.9c0.5,1,1,2,1.4,3c0.4,1,0.8,2.1,1.1,3.2s0.6,2.2,0.8,3.3c0.2,1.1,0.4,2.2,0.5,3.3  C99.3,208.8,99.4,209.9,99.4,211z"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M44.5,201.5l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C44.1,200.3,44.4,200.8,44.5,201.5z M40.2,205.2c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S40.2,204.7,40.2,205.2z"/>
          <path d="M51.2,207v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8  c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1c-0.3,0.4-0.9,0.9-1.6,1.5  c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H51.2z"/>
          <path d="M52.3,205.8l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5  c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  C52.7,207.1,52.4,206.5,52.3,205.8z"/>
          <path d="M59,205.8l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5  c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  C59.4,207.1,59.1,206.5,59,205.8z"/>
          <path d="M70.2,206l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S70.1,206.4,70.2,206z M66.8,204.3h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S66.8,203.7,66.8,204.3z"/>
          <path d="M72.4,205.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7  c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7C72.7,207,72.4,206.4,72.4,205.7z"/>
          <path d="M80.3,208h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V208z M80.3,204.8c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S80.3,204.1,80.3,204.8z"/>
          <path d="M91.2,201.5l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C90.8,200.3,91.1,200.8,91.2,201.5z M86.9,205.2c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S86.9,204.7,86.9,205.2z"/>
          <path d="M48.8,221.5v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H48.8z"/>
          <path d="M57.1,217.3c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6s1.1,0.9,1.5,1.6s0.5,1.4,0.5,2.3  c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6s-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6c-0.6-0.4-1.1-0.9-1.4-1.6  C57.3,218.8,57.1,218.1,57.1,217.3z M58.3,217.3c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9s0.8-1.5,0.8-2.6  c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8S58.3,216,58.3,217.3z"/>
          <path d="M66.8,221.5v-8.6h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5c0.2,0.6,0.3,1.3,0.3,2  c0,0.7-0.1,1.2-0.2,1.7c-0.2,0.5-0.3,0.9-0.6,1.3s-0.5,0.6-0.8,0.8s-0.6,0.3-1,0.4c-0.4,0.1-0.9,0.1-1.4,0.1H66.8z M67.9,220.5h1.8  c0.6,0,1-0.1,1.3-0.2s0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1s0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1s-0.7-0.8-1.1-1  c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V220.5z"/>
          <path d="M75.5,221.5v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H75.5z"/>
          <rect x="38.5" y="197.5" fill-rule="evenodd" fill="none" width="53.2" height="27"/>
          <rect x="158.9" y="31" fill="none" stroke="#000000" stroke-width="2.2498" width="136.8" height="42"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M205.1,49H204v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7V49z"/>
          <path d="M207.8,46.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1L210,44c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7  c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7C208.1,48,207.9,47.4,207.8,46.7z"/>
          <path d="M214.6,47l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6s-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6S214.7,47.7,214.6,47z M218.9,43.2  c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5S218.9,43.8,218.9,43.2z"/>
          <path d="M224.5,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1h-1.2V49H224.5z M224.5,46v-3.9l-2.7,3.9H224.5z"/>
          <path d="M231.8,49h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7V49z"/>
          <path d="M235.7,49h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V49z M235.7,45.8c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S235.7,45.1,235.7,45.8z"/>
          <path d="M244.5,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1h-1.2V49H244.5z M244.5,46v-3.9l-2.7,3.9H244.5z"/>
          <path d="M249.4,44.3c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.7,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C248.5,44.7,248.9,44.5,249.4,44.3z   M248.9,46.5c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3  s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S248.9,46,248.9,46.5z M249.2,42.6c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4  s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4S249.2,42.2,249.2,42.6z"/>
          <path d="M210.9,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H210.9z M212.8,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H212.8z"/>
          <path d="M214.3,62.5l3.3-8.6h1.2l3.5,8.6H221l-1-2.6h-3.6l-0.9,2.6H214.3z M216.8,59h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L216.8,59z"/>
          <path d="M223.1,62.5v-8.6h1.1v8.6H223.1z"/>
          <path d="M225.8,55.1v-1.2h1.1v1.2H225.8z M225.8,62.5v-6.2h1.1v6.2H225.8z"/>
          <path d="M232.5,60.2l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  S231.3,57,231,57c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4  S232.4,60.7,232.5,60.2z"/>
          <path d="M238.7,60.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S238.5,60.9,238.7,60.5z M235.2,58.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S235.3,58.2,235.2,58.8z"/>
          <path d="M241.2,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H241.2z M243.1,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H243.1z"/>
          <rect x="166.4" y="38.5" fill-rule="evenodd" fill="none" width="122.2" height="27"/>
          <path fill="none" stroke="#000000" stroke-width="2.2498" d="M201,110.5h52.6c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5c0.7,0.2,1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  s1,0.9,1.5,1.4c0.5,0.5,0.9,1,1.4,1.5c0.4,0.5,0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8c0.3,0.6,0.6,1.2,0.9,1.9  c0.3,0.6,0.5,1.3,0.7,1.9c0.2,0.7,0.4,1.3,0.5,2s0.2,1.4,0.3,2c0.1,0.7,0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2  s-0.3,1.3-0.5,2c-0.2,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7  c-0.4,0.5-0.9,1-1.4,1.5c-0.5,0.5-1,0.9-1.5,1.4s-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9  c-0.6,0.3-1.3,0.5-1.9,0.7c-0.7,0.2-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3c-0.7,0.1-1.4,0.1-2.1,0.1H201c-0.7,0-1.4,0-2.1-0.1  c-0.7-0.1-1.4-0.2-2-0.3c-0.7-0.1-1.3-0.3-2-0.5c-0.7-0.2-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9s-1.2-0.7-1.8-1.1  c-0.6-0.4-1.1-0.8-1.7-1.2s-1-0.9-1.5-1.4s-0.9-1-1.4-1.5c-0.4-0.5-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8  c-0.3-0.6-0.6-1.2-0.9-1.9c-0.3-0.6-0.5-1.3-0.7-1.9c-0.2-0.7-0.4-1.3-0.5-2c-0.1-0.7-0.2-1.4-0.3-2s-0.1-1.4-0.1-2.1s0-1.4,0.1-2.1  c0.1-0.7,0.2-1.4,0.3-2c0.1-0.7,0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9c0.3-0.6,0.7-1.2,1.1-1.8  c0.4-0.6,0.8-1.1,1.2-1.7c0.4-0.5,0.9-1,1.4-1.5s1-0.9,1.5-1.4s1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1s1.2-0.6,1.9-0.9  c0.6-0.3,1.3-0.5,1.9-0.7c0.7-0.2,1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3C199.6,110.5,200.3,110.5,201,110.5z"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M206.5,128.5v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H206.5z M206.5,125.5v-3.9l-2.7,3.9H206.5z"/>
          <path d="M209.8,124.3c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4s0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  c0.2,0.3,0.4,0.8,0.5,1.3s0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4s-0.5,1.1-0.9,1.4s-0.9,0.5-1.6,0.5c-0.8,0-1.5-0.3-2-0.9  C210.1,127,209.8,125.9,209.8,124.3z M210.9,124.3c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7s0.5-1.4,0.5-2.8  c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C211.1,121.9,210.9,122.9,210.9,124.3z"/>
          <path d="M220.4,128.5h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7  V128.5z"/>
          <path d="M228.7,127.5v1H223c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8  c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1c-0.3,0.4-0.9,0.9-1.6,1.5  c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H228.7z"/>
          <path d="M234.2,126.2l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4  S234.1,126.7,234.2,126.2z"/>
          <path d="M240.2,127.7c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5c-0.4-0.3-0.6-0.8-0.6-1.3  c0-0.3,0.1-0.6,0.2-0.8s0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3  c0-0.4-0.1-0.7-0.3-0.9c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3s-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1  c0.2-0.3,0.5-0.5,0.9-0.6s0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5c0.2,0.2,0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4  c0,1,0,1.6,0.1,1.9s0.1,0.5,0.3,0.7h-1.1C240.3,128.3,240.2,128,240.2,127.7z M240.1,125.4c-0.4,0.2-1,0.3-1.7,0.4  c-0.4,0.1-0.7,0.1-0.9,0.2s-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3  s0.5-0.4,0.7-0.7c0.1-0.2,0.2-0.6,0.2-1.1V125.4z"/>
          <path d="M243,128.5v-5.4h-0.9v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7s0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H243z"/>
          <path d="M251.4,127.5v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8  c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1c-0.3,0.4-0.9,0.9-1.6,1.5  c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H251.4z"/>
          <path d="M192.7,142l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H192.7z M195.2,138.5h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L195.2,138.5z"/>
          <path d="M201.3,139.2l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1s0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  c-0.8-0.2-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3s-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C201.5,140.3,201.3,139.8,201.3,139.2z"/>
          <path d="M209.3,139.2l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1s0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  c-0.8-0.2-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3s-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C209.5,140.3,209.3,139.8,209.3,139.2z"/>
          <path d="M217.7,142v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H217.7z"/>
          <path d="M225.7,142v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8c0.2,0.4,0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5s-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  s-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H225.7z M226.8,137.2h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V137.2z"/>
          <path d="M236.3,142v-7.6h-2.8v-1h6.8v1h-2.8v7.6H236.3z"/>
          <path d="M241.7,142v-8.6h1.1v8.6H241.7z"/>
          <path d="M244.4,137.8c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6s1.1,0.9,1.5,1.6s0.5,1.4,0.5,2.3  c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6s-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6c-0.6-0.4-1.1-0.9-1.4-1.6  C244.6,139.3,244.4,138.6,244.4,137.8z M245.6,137.8c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9s0.8-1.5,0.8-2.6  c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8S245.6,136.5,245.6,137.8z"/>
          <path d="M254.1,142v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H254.1z"/>
          <rect x="192.7" y="118" fill-rule="evenodd" fill="none" width="69" height="27"/>
          <rect x="360.6" y="70.8" fill="none" stroke="#000000" stroke-width="2.2498" width="144.8" height="42"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M411.5,88.8V88c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H411.5z M408.1,85.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C408.3,84.2,408.1,84.8,408.1,85.6z"/>
          <path d="M415.1,88.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V88.8z M415.1,85.6c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C415.2,84.3,415.1,84.8,415.1,85.6z"/>
          <path d="M420.6,81.3v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H420.6z"/>
          <path d="M431.5,88.8V88c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H431.5z M428.2,85.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C428.3,84.2,428.2,84.8,428.2,85.6z"/>
          <path d="M438.2,88.8V88c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H438.2z M434.8,85.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C435,84.2,434.8,84.8,434.8,85.6z"/>
          <path d="M446,87.7v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8  s1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1  c-0.2,0.2-0.3,0.4-0.4,0.6H446z"/>
          <path d="M451.1,88.8h-1.1V82c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V88.8z"/>
          <path d="M458.2,86.5l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4c0-0.7,0.1-1.3,0.3-1.8  s0.6-0.9,1-1.1c0.5-0.3,0.9-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9s-0.5-0.3-0.9-0.3  c-0.5,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4  S458.1,87,458.2,86.5z"/>
          <path d="M412.6,96.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H412.6z M414.5,96.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H414.5z"/>
          <path d="M416.8,102.2v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9h-1.3l-2.1-3.2l-0.7,0.7v2.5H416.8z"/>
          <path d="M422.8,102.2V96h0.9v0.9c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8c0,0.2,0.1,0.5,0.1,1v3.8  h-1.1v-3.8c0-0.4,0-0.8-0.1-1s-0.2-0.4-0.4-0.5s-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4c-0.3,0.3-0.5,0.8-0.5,1.6v3.4H422.8z"/>
          <path d="M429.1,99.1c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S429.1,100.2,429.1,99.1z M430.1,99.1c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  C430.3,97.7,430.1,98.3,430.1,99.1z"/>
          <path d="M437.3,102.2l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H437.3z"/>
          <path d="M444.4,100.4l1-0.2c0.1,0.4,0.2,0.7,0.5,1c0.3,0.2,0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7  c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8  c0-0.3,0.1-0.5,0.2-0.8s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2s0.6,0.3,0.8,0.6  s0.3,0.6,0.4,1l-1,0.1c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4  c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1  s-0.5,0.6-0.9,0.7s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5S444.5,101.1,444.4,100.4z"/>
          <path d="M450.8,96.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H450.8z M452.8,96.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H452.8z"/>
          <rect x="368.1" y="78.2" fill-rule="evenodd" fill="none" width="129.7" height="27"/>
          <rect x="363.2" y="150.2" fill="none" stroke="#000000" stroke-width="2.2498" width="139.5" height="42"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M412.8,167.5c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  s0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9  c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3c-0.2,0.2-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1s0.5-0.5,0.9-0.6  c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9  s0.1,0.5,0.3,0.7H413C412.9,168,412.9,167.8,412.8,167.5z M412.7,165.1c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2  c-0.2,0.1-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7  c0.1-0.2,0.2-0.6,0.2-1.1V165.1z"/>
          <path d="M415.7,168.2v-5.4h-0.9V162h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7s0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H415.7z"/>
          <path d="M419.7,168.2h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V168.2z M419.7,165.1c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C419.9,163.8,419.7,164.3,419.7,165.1z"/>
          <path d="M426.8,163.6c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  s-1.2,0.8-2.1,0.8s-1.5-0.3-2-0.8s-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4S426.2,163.7,426.8,163.6z M426.2,165.8  c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7c0.3,0.2,0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3  s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C426.4,164.9,426.2,165.3,426.2,165.8z M426.6,161.8c0,0.4,0.1,0.7,0.4,1  c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4  S426.6,161.4,426.6,161.8z"/>
          <path d="M435.8,168.2h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V168.2z"/>
          <path d="M444,167.2v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8  s1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1  c-0.2,0.2-0.3,0.4-0.4,0.6H444z"/>
          <path d="M450.7,167.2v1H445c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8  s1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1  c-0.2,0.2-0.3,0.4-0.4,0.6H450.7z"/>
          <path d="M456.4,166.2l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S456.2,166.7,456.4,166.2z M452.9,164.5h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5C453.1,163.6,453,164,452.9,164.5z"/>
          <path d="M415.2,176.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H415.2z M417.2,176.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H417.2z"/>
          <path d="M425.7,178.7l1.1,0.3c-0.2,0.9-0.7,1.6-1.3,2.1c-0.6,0.5-1.4,0.7-2.3,0.7c-0.9,0-1.7-0.2-2.3-0.6c-0.6-0.4-1-0.9-1.3-1.6  s-0.5-1.5-0.5-2.3c0-0.9,0.2-1.7,0.5-2.3s0.8-1.2,1.5-1.5c0.6-0.3,1.3-0.5,2.1-0.5c0.9,0,1.6,0.2,2.2,0.7c0.6,0.4,1,1.1,1.2,1.8  l-1.1,0.3c-0.2-0.6-0.5-1.1-0.9-1.4s-0.9-0.4-1.4-0.4c-0.7,0-1.2,0.2-1.7,0.5s-0.8,0.7-0.9,1.3c-0.2,0.5-0.3,1.1-0.3,1.6  c0,0.7,0.1,1.4,0.3,1.9c0.2,0.5,0.5,1,1,1.2s0.9,0.4,1.5,0.4c0.6,0,1.2-0.2,1.6-0.6S425.5,179.5,425.7,178.7z"/>
          <path d="M432.2,181c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  s0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9  c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3c-0.2,0.2-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1s0.5-0.5,0.9-0.6  c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9  s0.1,0.5,0.3,0.7h-1.1C432.3,181.5,432.2,181.3,432.2,181z M432.1,178.6c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2  c-0.2,0.1-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7  c0.1-0.2,0.2-0.6,0.2-1.1V178.6z"/>
          <path d="M434.8,181.8v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9c0.2-0.1,0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1  c-0.3-0.2-0.5-0.2-0.8-0.2c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H434.8z"/>
          <path d="M438.4,178.6c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S438.4,179.7,438.4,178.6z M439.5,178.6c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  C439.6,177.2,439.5,177.8,439.5,178.6z"/>
          <path d="M445.4,181.8v-8.6h1.1v8.6H445.4z"/>
          <path d="M448.2,176.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H448.2z M450.1,176.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H450.1z"/>
          <rect x="370.7" y="157.8" fill-rule="evenodd" fill="none" width="124.5" height="27"/>
          <path fill="none" stroke="#000000" stroke-width="2.2498" d="M201,269.5h52.6c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5c0.7,0.2,1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  s1,0.9,1.5,1.4c0.5,0.5,0.9,1,1.4,1.5c0.4,0.5,0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8c0.3,0.6,0.6,1.2,0.9,1.9  c0.3,0.6,0.5,1.3,0.7,1.9c0.2,0.7,0.4,1.3,0.5,2s0.2,1.4,0.3,2c0.1,0.7,0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2  s-0.3,1.3-0.5,2c-0.2,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7  c-0.4,0.5-0.9,1-1.4,1.5c-0.5,0.5-1,0.9-1.5,1.4s-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9  c-0.6,0.3-1.3,0.5-1.9,0.7c-0.7,0.2-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3c-0.7,0.1-1.4,0.1-2.1,0.1H201c-0.7,0-1.4,0-2.1-0.1  c-0.7-0.1-1.4-0.2-2-0.3c-0.7-0.1-1.3-0.3-2-0.5c-0.7-0.2-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9s-1.2-0.7-1.8-1.1  c-0.6-0.4-1.1-0.8-1.7-1.2s-1-0.9-1.5-1.4s-0.9-1-1.4-1.5c-0.4-0.5-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8  c-0.3-0.6-0.6-1.2-0.9-1.9c-0.3-0.6-0.5-1.3-0.7-1.9c-0.2-0.7-0.4-1.3-0.5-2c-0.1-0.7-0.2-1.4-0.3-2s-0.1-1.4-0.1-2.1s0-1.4,0.1-2.1  c0.1-0.7,0.2-1.4,0.3-2c0.1-0.7,0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9c0.3-0.6,0.7-1.2,1.1-1.8  c0.4-0.6,0.8-1.1,1.2-1.7c0.4-0.5,0.9-1,1.4-1.5s1-0.9,1.5-1.4s1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1s1.2-0.6,1.9-0.9  c0.6-0.3,1.3-0.5,1.9-0.7c0.7-0.2,1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3C199.6,269.5,200.3,269.5,201,269.5z"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M207.3,281l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C206.9,279.8,207.2,280.3,207.3,281z M203,284.7c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S203,284.2,203,284.7z"/>
          <path d="M208.5,285.2l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4s-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C208.8,286.6,208.5,286,208.5,285.2z"/>
          <path d="M219.5,285.2l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4  S219.4,285.7,219.5,285.2z"/>
          <path d="M221.1,285.2l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7  c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  C221.5,286.5,221.2,285.9,221.1,285.2z"/>
          <path d="M232.4,285.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S232.2,285.9,232.4,285.5z M228.9,283.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S228.9,283.2,228.9,283.8z"/>
          <path d="M235.7,287.5h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V287.5z M235.7,284.3  c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S235.7,283.6,235.7,284.3z"/>
          <path d="M245.5,285.2l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4  S245.4,285.7,245.5,285.2z"/>
          <path d="M247.2,285.2l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7  c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  C247.5,286.5,247.2,285.9,247.2,285.2z"/>
          <path d="M192.7,301l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H192.7z M195.2,297.5h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L195.2,297.5z"/>
          <path d="M201.3,298.2l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1s0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  c-0.8-0.2-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3s-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C201.5,299.3,201.3,298.8,201.3,298.2z"/>
          <path d="M209.3,298.2l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1s0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  c-0.8-0.2-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3s-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C209.5,299.3,209.3,298.8,209.3,298.2z"/>
          <path d="M217.7,301v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H217.7z"/>
          <path d="M225.7,301v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8c0.2,0.4,0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5s-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  s-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H225.7z M226.8,296.2h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V296.2z"/>
          <path d="M236.3,301v-7.6h-2.8v-1h6.8v1h-2.8v7.6H236.3z"/>
          <path d="M241.7,301v-8.6h1.1v8.6H241.7z"/>
          <path d="M244.4,296.8c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6s1.1,0.9,1.5,1.6s0.5,1.4,0.5,2.3  c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6s-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6c-0.6-0.4-1.1-0.9-1.4-1.6  C244.6,298.3,244.4,297.6,244.4,296.8z M245.6,296.8c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9s0.8-1.5,0.8-2.6  c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8S245.6,295.5,245.6,296.8z"/>
          <path d="M254.1,301v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H254.1z"/>
          <rect x="192.7" y="277" fill-rule="evenodd" fill="none" width="69" height="27"/>
          <rect x="360.6" y="229.8" fill="none" stroke="#000000" stroke-width="2.2498" width="144.8" height="42"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M411.5,247.8V247c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H411.5z M408.1,244.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C408.3,243.2,408.1,243.8,408.1,244.6z"/>
          <path d="M415.1,247.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V247.8z M415.1,244.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C415.2,243.3,415.1,243.8,415.1,244.6z"/>
          <path d="M420.6,240.3v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H420.6z"/>
          <path d="M431.5,247.8V247c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H431.5z M428.2,244.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C428.3,243.2,428.2,243.8,428.2,244.6z"/>
          <path d="M438.2,247.8V247c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H438.2z M434.8,244.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C435,243.2,434.8,243.8,434.8,244.6z"/>
          <path d="M446,246.7v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8  s1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1  c-0.2,0.2-0.3,0.4-0.4,0.6H446z"/>
          <path d="M451.1,247.8h-1.1V241c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V247.8z"/>
          <path d="M458.2,245.5l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1c0.5-0.3,0.9-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4S458.1,246,458.2,245.5z"/>
          <path d="M412.6,255.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H412.6z M414.5,255.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H414.5z"/>
          <path d="M416.8,261.2v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9h-1.3l-2.1-3.2l-0.7,0.7v2.5H416.8z"/>
          <path d="M422.8,261.2V255h0.9v0.9c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8c0,0.2,0.1,0.5,0.1,1v3.8  h-1.1v-3.8c0-0.4,0-0.8-0.1-1s-0.2-0.4-0.4-0.5s-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4c-0.3,0.3-0.5,0.8-0.5,1.6v3.4H422.8z"/>
          <path d="M429.1,258.1c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S429.1,259.2,429.1,258.1z M430.1,258.1c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  C430.3,256.7,430.1,257.3,430.1,258.1z"/>
          <path d="M437.3,261.2l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H437.3z"/>
          <path d="M444.4,259.4l1-0.2c0.1,0.4,0.2,0.7,0.5,1c0.3,0.2,0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7  c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8  c0-0.3,0.1-0.5,0.2-0.8s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2s0.6,0.3,0.8,0.6  s0.3,0.6,0.4,1l-1,0.1c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4  c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1  s-0.5,0.6-0.9,0.7s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5S444.5,260.1,444.4,259.4z"/>
          <path d="M450.8,255.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H450.8z M452.8,255.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H452.8z"/>
          <rect x="368.1" y="237.2" fill-rule="evenodd" fill="none" width="129.7" height="27"/>
          <rect x="357.2" y="309.2" fill="none" stroke="#000000" stroke-width="2.2498" width="151.5" height="42"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M413,325.2l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4c0-1,0.3-1.9,0.8-2.4  s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6c0.3,0.4,0.8,0.5,1.3,0.5  c0.4,0,0.7-0.1,1-0.3S412.9,325.7,413,325.2z M409.6,323.5h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-0.9,0.2-1.2,0.5C409.8,322.6,409.6,323,409.6,323.5z"/>
          <path d="M415.3,325.3l1-0.1c0.1,0.5,0.2,0.8,0.5,1c0.2,0.2,0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8s-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1s1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6  s-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6S415.4,325.9,415.3,325.3z M419.6,321.5c0-0.6-0.2-1.1-0.5-1.4  s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.3,0.4-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3c0.3,0.3,0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5S419.6,322.1,419.6,321.5z"/>
          <path d="M426.2,326.5c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  s0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9  c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3c-0.2,0.2-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1s0.5-0.5,0.9-0.6  c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9  s0.1,0.5,0.3,0.7h-1.1C426.3,327,426.2,326.8,426.2,326.5z M426.1,324.1c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2  c-0.2,0.1-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7  c0.1-0.2,0.2-0.6,0.2-1.1V324.1z"/>
          <path d="M429,327.2v-5.4h-0.9V321h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7s0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2s-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H429z"/>
          <path d="M431.9,319.8v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H431.9z"/>
          <path d="M440.1,322.6c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  s-1.2,0.8-2.1,0.8s-1.5-0.3-2-0.8s-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4S439.6,322.7,440.1,322.6z M439.6,324.8  c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7c0.3,0.2,0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3  s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C439.7,323.9,439.6,324.3,439.6,324.8z M439.9,320.8c0,0.4,0.1,0.7,0.4,1  c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4  S439.9,320.4,439.9,320.8z"/>
          <path d="M446.8,322.6c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  s-1.2,0.8-2.1,0.8s-1.5-0.3-2-0.8s-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4S446.3,322.7,446.8,322.6z M446.2,324.8  c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7c0.3,0.2,0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3  s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C446.4,323.9,446.2,324.3,446.2,324.8z M446.6,320.8c0,0.4,0.1,0.7,0.4,1  c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4  S446.6,320.4,446.6,320.8z"/>
          <path d="M451.8,325l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3c0.3,0.3,0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1  c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4c-0.3,0.3-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6  s1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7  c0.5,0.1,0.9,0.4,1.2,0.7s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7S451.9,325.7,451.8,325z"/>
          <path d="M409.2,335.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H409.2z M411.2,335.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H411.2z"/>
          <path d="M413.6,340.8v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H413.6z"/>
          <path d="M425.5,340.8V340c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H425.5z M422.1,337.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C422.3,336.2,422.1,336.8,422.1,337.6z"/>
          <path d="M429.3,340.8l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H429.3z"/>
          <path d="M440.8,340c-0.4,0.3-0.8,0.6-1.1,0.7s-0.7,0.2-1.2,0.2c-0.7,0-1.2-0.2-1.6-0.5s-0.6-0.8-0.6-1.3c0-0.3,0.1-0.6,0.2-0.8  s0.3-0.5,0.5-0.6s0.5-0.3,0.8-0.3c0.2-0.1,0.5-0.1,0.9-0.2c0.9-0.1,1.5-0.2,1.9-0.4c0-0.1,0-0.2,0-0.3c0-0.4-0.1-0.7-0.3-0.9  c-0.3-0.2-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.1-1.1,0.3c-0.2,0.2-0.4,0.5-0.5,0.9l-1-0.1c0.1-0.4,0.2-0.8,0.5-1.1s0.5-0.5,0.9-0.6  c0.4-0.1,0.9-0.2,1.4-0.2c0.5,0,1,0.1,1.3,0.2s0.6,0.3,0.7,0.5s0.3,0.4,0.3,0.7c0,0.2,0.1,0.5,0.1,1v1.4c0,1,0,1.6,0.1,1.9  s0.1,0.5,0.3,0.7H441C440.9,340.5,440.9,340.3,440.8,340z M440.8,337.6c-0.4,0.2-1,0.3-1.7,0.4c-0.4,0.1-0.7,0.1-0.9,0.2  c-0.2,0.1-0.3,0.2-0.4,0.3s-0.1,0.3-0.1,0.5c0,0.3,0.1,0.5,0.3,0.7s0.5,0.3,0.9,0.3c0.4,0,0.8-0.1,1.1-0.3s0.5-0.4,0.7-0.7  c0.1-0.2,0.2-0.6,0.2-1.1V337.6z"/>
          <path d="M443.4,340.8v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9c0.2-0.1,0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1  c-0.3-0.2-0.5-0.2-0.8-0.2c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H443.4z"/>
          <path d="M451.5,340.8V340c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H451.5z M448.2,337.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C448.3,336.2,448.2,336.8,448.2,337.6z"/>
          <path d="M454.2,335.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H454.2z M456.1,335.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H456.1z"/>
          <rect x="364.7" y="316.8" fill-rule="evenodd" fill="none" width="136.5" height="27"/>
          <path fill="none" stroke="#000000" stroke-width="2.2498" d="M201,428.5h52.6c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5c0.7,0.2,1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  s1,0.9,1.5,1.4c0.5,0.5,0.9,1,1.4,1.5c0.4,0.5,0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8c0.3,0.6,0.6,1.2,0.9,1.9  c0.3,0.6,0.5,1.3,0.7,1.9s0.4,1.3,0.5,2s0.2,1.4,0.3,2c0.1,0.7,0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2  s-0.3,1.3-0.5,2s-0.4,1.3-0.7,1.9c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7  c-0.4,0.5-0.9,1-1.4,1.5c-0.5,0.5-1,0.9-1.5,1.4s-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9  c-0.6,0.3-1.3,0.5-1.9,0.7c-0.7,0.2-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3c-0.7,0.1-1.4,0.1-2.1,0.1H201c-0.7,0-1.4,0-2.1-0.1  c-0.7-0.1-1.4-0.2-2-0.3c-0.7-0.1-1.3-0.3-2-0.5c-0.7-0.2-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9s-1.2-0.7-1.8-1.1  c-0.6-0.4-1.1-0.8-1.7-1.2s-1-0.9-1.5-1.4s-0.9-1-1.4-1.5c-0.4-0.5-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8  c-0.3-0.6-0.6-1.2-0.9-1.9c-0.3-0.6-0.5-1.3-0.7-1.9c-0.2-0.7-0.4-1.3-0.5-2c-0.1-0.7-0.2-1.4-0.3-2c-0.1-0.7-0.1-1.4-0.1-2.1  s0-1.4,0.1-2.1c0.1-0.7,0.2-1.4,0.3-2c0.1-0.7,0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9  c0.3-0.6,0.7-1.2,1.1-1.8c0.4-0.6,0.8-1.1,1.2-1.7c0.4-0.5,0.9-1,1.4-1.5s1-0.9,1.5-1.4s1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1  s1.2-0.6,1.9-0.9c0.6-0.3,1.3-0.5,1.9-0.7c0.7-0.2,1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3C199.6,428.5,200.3,428.5,201,428.5z"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M201.2,439v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H201.2z"/>
          <path d="M209.4,441.8c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.7,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C208.5,442.2,208.9,442,209.4,441.8  z M208.9,444c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3  s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S208.9,443.5,208.9,444z M209.2,440.1c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4  c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4S209.2,439.7,209.2,440.1z"/>
          <path d="M218.8,446.5v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H218.8z M215.4,443.4c0,0.8,0.2,1.4,0.5,1.8  s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S215.4,442.6,215.4,443.4z"/>
          <path d="M226.6,440l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C226.3,438.8,226.5,439.3,226.6,440z M222.3,443.7c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S222.3,443.2,222.3,443.7z"/>
          <path d="M233.3,440l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C232.9,438.8,233.2,439.3,233.3,440z M229,443.7c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S229,443.2,229,443.7z"/>
          <path d="M239.9,440l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  s-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C239.6,438.8,239.9,439.3,239.9,440z M235.6,443.7c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5S235.6,443.2,235.6,443.7z"/>
          <path d="M245.7,444.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S245.5,444.9,245.7,444.5z M242.2,442.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S242.3,442.2,242.2,442.8z"/>
          <path d="M249.1,446.5h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V446.5z M249.1,443.3  c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S249.1,442.6,249.1,443.3z"/>
          <path d="M192.7,460l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H192.7z M195.2,456.5h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L195.2,456.5z"/>
          <path d="M201.3,457.2l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1s0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  c-0.8-0.2-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3s-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C201.5,458.3,201.3,457.8,201.3,457.2z"/>
          <path d="M209.3,457.2l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1s0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  c-0.8-0.2-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3s-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C209.5,458.3,209.3,457.8,209.3,457.2z"/>
          <path d="M217.7,460v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H217.7z"/>
          <path d="M225.7,460v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8c0.2,0.4,0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5s-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  s-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H225.7z M226.8,455.2h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V455.2z"/>
          <path d="M236.3,460v-7.6h-2.8v-1h6.8v1h-2.8v7.6H236.3z"/>
          <path d="M241.7,460v-8.6h1.1v8.6H241.7z"/>
          <path d="M244.4,455.8c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6s1.1,0.9,1.5,1.6s0.5,1.4,0.5,2.3  c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6s-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6c-0.6-0.4-1.1-0.9-1.4-1.6  C244.6,457.3,244.4,456.6,244.4,455.8z M245.6,455.8c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9s0.8-1.5,0.8-2.6  c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8S245.6,454.5,245.6,455.8z"/>
          <path d="M254.1,460v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H254.1z"/>
          <rect x="192.7" y="436" fill-rule="evenodd" fill="none" width="69" height="27"/>
          <rect x="360.6" y="388.8" fill="none" stroke="#000000" stroke-width="2.2498" width="144.8" height="42"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M411.5,406.8V406c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H411.5z M408.1,403.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C408.3,402.2,408.1,402.8,408.1,403.6z"/>
          <path d="M415.1,406.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V406.8z M415.1,403.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C415.2,402.3,415.1,402.8,415.1,403.6z"/>
          <path d="M420.6,399.3v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H420.6z"/>
          <path d="M431.5,406.8V406c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H431.5z M428.2,403.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C428.3,402.2,428.2,402.8,428.2,403.6z"/>
          <path d="M438.2,406.8V406c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H438.2z M434.8,403.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C435,402.2,434.8,402.8,434.8,403.6z"/>
          <path d="M446,405.7v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8  s1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1  c-0.2,0.2-0.3,0.4-0.4,0.6H446z"/>
          <path d="M451.1,406.8h-1.1V400c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V406.8z"/>
          <path d="M458.2,404.5l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1c0.5-0.3,0.9-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4S458.1,405,458.2,404.5z"/>
          <path d="M412.6,414.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H412.6z M414.5,414.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H414.5z"/>
          <path d="M416.8,420.2v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9h-1.3l-2.1-3.2l-0.7,0.7v2.5H416.8z"/>
          <path d="M422.8,420.2V414h0.9v0.9c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8c0,0.2,0.1,0.5,0.1,1v3.8  h-1.1v-3.8c0-0.4,0-0.8-0.1-1s-0.2-0.4-0.4-0.5s-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4c-0.3,0.3-0.5,0.8-0.5,1.6v3.4H422.8z"/>
          <path d="M429.1,417.1c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S429.1,418.2,429.1,417.1z M430.1,417.1c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  C430.3,415.7,430.1,416.3,430.1,417.1z"/>
          <path d="M437.3,420.2l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H437.3z"/>
          <path d="M444.4,418.4l1-0.2c0.1,0.4,0.2,0.7,0.5,1c0.3,0.2,0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7  c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8  c0-0.3,0.1-0.5,0.2-0.8s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2s0.6,0.3,0.8,0.6  s0.3,0.6,0.4,1l-1,0.1c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4  c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1  s-0.5,0.6-0.9,0.7s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5S444.5,419.1,444.4,418.4z"/>
          <path d="M450.8,414.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H450.8z M452.8,414.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H452.8z"/>
          <rect x="368.1" y="396.2" fill-rule="evenodd" fill="none" width="129.7" height="27"/>
          <rect x="366.9" y="468.2" fill="none" stroke="#000000" stroke-width="2.2498" width="132.2" height="42"/>
          <rect x="25" y="25" fill-rule="evenodd" fill="none" width="489.8" height="491.2"/>
          <path d="M410.8,486.2h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V486.2z"/>
          <path d="M413.5,484l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3c0.3,0.3,0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1  c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4c-0.3,0.3-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6  s1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7  c0.5,0.1,0.9,0.4,1.2,0.7s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7S413.6,484.7,413.5,484z"/>
          <path d="M421.4,486.2h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V486.2z M421.4,483.1c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C421.6,481.8,421.4,482.3,421.4,483.1z"/>
          <path d="M426.9,478.8v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H426.9z"/>
          <path d="M436.9,486.2v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H436.9z M436.9,483.2v-3.9l-2.7,3.9H436.9z"/>
          <path d="M444.1,486.2h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V486.2z"/>
          <path d="M447,484.3l1-0.1c0.1,0.5,0.2,0.8,0.5,1c0.2,0.2,0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8s-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1s1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6  s-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6S447.1,484.9,447,484.3z M451.3,480.5c0-0.6-0.2-1.1-0.5-1.4  s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.3,0.4-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3c0.3,0.3,0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5S451.3,481.1,451.3,480.5z"/>
          <path d="M456.9,486.2v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H456.9z M456.9,483.2v-3.9l-2.7,3.9H456.9z"/>
          <path d="M418.9,494.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H418.9z M420.8,494.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H420.8z"/>
          <path d="M423.2,499.8v-8.6h3.2c0.7,0,1.2,0.1,1.6,0.3s0.7,0.4,0.9,0.8c0.2,0.4,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1  c-0.2,0.3-0.5,0.6-0.9,0.8c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.3c0,0.4-0.1,0.8-0.3,1.1s-0.4,0.6-0.6,0.8  c-0.2,0.2-0.6,0.3-0.9,0.4s-0.8,0.1-1.4,0.1H423.2z M424.3,494.8h1.9c0.5,0,0.9,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.4s0.2-0.4,0.2-0.8  c0-0.3-0.1-0.5-0.2-0.8s-0.3-0.4-0.6-0.4s-0.7-0.1-1.3-0.1h-1.7V494.8z M424.3,498.7h2.1c0.4,0,0.6,0,0.8,0c0.3,0,0.5-0.1,0.7-0.2  s0.3-0.3,0.4-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.6-0.2-0.8s-0.4-0.4-0.7-0.5s-0.7-0.1-1.3-0.1h-2V498.7z"/>
          <path d="M430.7,496.6c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S430.7,497.7,430.7,496.6z M431.8,496.6c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  C432,495.2,431.8,495.8,431.8,496.6z"/>
          <path d="M438.8,499.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V499.8z M438.7,496.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C438.9,495.3,438.7,495.8,438.7,496.6z"/>
          <path d="M444.5,494.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H444.5z M446.4,494.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H446.4z"/>
          <rect x="374.4" y="475.8" fill-rule="evenodd" fill="none" width="117" height="27"/>
        </svg>
      </artwork>
      <t>For easy recognition, envelope trees and Mermaid diagrams only show the first four bytes of each digest, but internally all digests are 32 bytes.</t>
      <t>From the above envelope and its tree, we make the following observations:</t>
      <ul spacing="normal">
        <li>The envelope is a <tt>node</tt> case, which holds the overall envelope digest.</li>
        <li>The subject "Alice" has its own digest.</li>
        <li>Each of the three assertions has their own digests</li>
        <li>The predicate and object of each assertion each have their own digests.</li>
        <li>The assertions appear in the structure in ascending lexicographic order by digest, which is distinct from envelope notation, where they appear sorted alphabeticaly.</li>
      </ul>
      <t>The following subsections present each of the seven enumerated envelope cases in five different output formats:</t>
      <ul spacing="normal">
        <li>Envelope Notation</li>
        <li>Envelope Tree</li>
        <li>Mermaid</li>
        <li>CBOR Diagnostic Notation</li>
        <li>CBOR hex</li>
      </ul>
      <t>These examples may be used as test vectors. In addition, each subsection starts with the envelope command line <xref target="ENVELOPE-CLI"/> needed to generate the envelope being formatted.</t>
      <section anchor="leaf-case">
        <name>Leaf Case</name>
        <section anchor="envelope-cli-command-line">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice"
]]></artwork>
        </section>
        <section anchor="envelope-notation">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
"Alice"
]]></artwork>
        </section>
        <section anchor="tree">
          <name>Tree</name>
          <artwork><![CDATA[
13941b48 "Alice"
]]></artwork>
        </section>
        <section anchor="mermaid">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="199.2px" height="104px" viewBox="0 0 199.2 104" xml:space="preserve">
              <rect x="31" y="31" fill="none" stroke="#000000" stroke-width="2.2528" width="137.2" height="42"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="149.2" height="54"/>
              <path d="M77.3,49h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7c-0.4,0.2-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.6-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7  V49z"/>
              <path d="M80.1,46.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3c0.3,0.3,0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.5,0,0.9-0.1,1.2-0.4  s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4c-0.3,0.3-0.5,0.6-0.5,1.2l-1.1-0.2  c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1  s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  S80.1,47.4,80.1,46.7z"/>
              <path d="M86.9,47l1-0.1c0.1,0.5,0.3,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6c0.2-0.2,0.3-0.6,0.4-1  c0.1-0.4,0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8  c-0.5-0.5-0.7-1.2-0.7-2c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3  s0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6s-0.6,1.1-1.1,1.5c-0.5,0.3-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.7-0.6S87,47.7,86.9,47z M91.2,43.2  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3  c0.3,0.3,0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5C91.1,44.3,91.2,43.8,91.2,43.2z"/>
              <path d="M96.8,49v-2.1h-3.7v-1l3.9-5.6h0.9V46H99v1h-1.2V49H96.8z M96.8,46v-3.9L94.1,46H96.8z"/>
              <path d="M104.1,49H103v-6.7c-0.3,0.2-0.6,0.5-1,0.7c-0.4,0.2-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.6-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7  V49z"/>
              <path d="M108.1,49h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V49z M108.1,45.8c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.4,0.8  c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C108.2,44.5,108.1,45.1,108.1,45.8z"/>
              <path d="M116.9,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1H118V49H116.9z M116.9,46v-3.9l-2.7,3.9H116.9z"/>
              <path d="M121.8,44.3c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.5-0.4,1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8s-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C120.9,44.7,121.3,44.5,121.8,44.3z   M121.3,46.5c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7c0.3,0.2,0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.3-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C121.4,45.6,121.3,46,121.3,46.5z M121.6,42.6  c0,0.4,0.1,0.7,0.4,1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4  c-0.4,0-0.7,0.1-1,0.4C121.7,41.9,121.6,42.2,121.6,42.6z"/>
              <path d="M83.2,57l-0.3-1.6v-1.4h1.2v1.4L83.8,57H83.2z M85.1,57l-0.3-1.6v-1.4H86v1.4L85.7,57H85.1z"/>
              <path d="M86.6,62.5l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H86.6z M89.1,59H92l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L89.1,59z"/>
              <path d="M95.4,62.5v-8.6h1.1v8.6H95.4z"/>
              <path d="M98.1,55.1v-1.2h1.1v1.2H98.1z M98.1,62.5v-6.2h1.1v6.2H98.1z"/>
              <path d="M104.8,60.2l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1c0.5-0.3,1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5c0.4,0.3,0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4C104.6,61.1,104.7,60.7,104.8,60.2z"/>
              <path d="M111,60.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.7  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3C110.7,61.3,110.9,60.9,111,60.5z M107.6,58.8h3.5  c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S107.6,58.2,107.6,58.8z"/>
              <path d="M113.5,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H113.5z M115.5,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H115.5z"/>
              <rect x="38.5" y="38.5" fill-rule="evenodd" fill="none" width="122.6" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   24("Alice")   ; leaf
)
]]></artwork>
        </section>
        <section anchor="cbor-hex">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d81865416c696365
]]></artwork>
        </section>
      </section>
      <section anchor="known-value-case">
        <name>Known Value Case</name>
        <section anchor="envelope-cli-command-line-1">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject --known verifiedBy
]]></artwork>
        </section>
        <section anchor="envelope-notation-1">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
verifiedBy
]]></artwork>
        </section>
        <section anchor="tree-1">
          <name>Tree</name>
          <artwork><![CDATA[
d933fc06 verifiedBy
]]></artwork>
        </section>
        <section anchor="mermaid-1">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="158px" height="104px" viewBox="0 0 158 104" xml:space="preserve">
              <polygon fill="none" stroke="#000000" stroke-width="2.2532" points="31,73 105.9,73 127,31 52.1,31 "/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="108" height="54"/>
              <path d="M59.1,49v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1.1V49H59.1z M55.7,45.9  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C55.9,44.5,55.7,45.1,55.7,45.9z"/>
              <path d="M61.6,47l1-0.1c0.1,0.5,0.3,0.8,0.5,1c0.2,0.2,0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6  s0.3-0.6,0.4-1C66,46,66,45.6,66,45.2c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8  s-0.7-1.2-0.7-2c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.7-0.6C61.9,48.2,61.7,47.7,61.6,47z M65.9,43.2  c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.3,0.4-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5S65.9,43.8,65.9,43.2z"/>
              <path d="M68.1,46.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.5,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.5,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6s1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7  s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7S68.2,47.4,68.1,46.7z"/>
              <path d="M74.8,46.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1L77,44c0.1,0,0.1,0,0.2,0c0.5,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.5,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6s1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7  s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7S74.9,47.4,74.8,46.7z"/>
              <path d="M82.1,49v-5.4h-0.9v-0.8h0.9v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7c0.3-0.2,0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2c-0.1,0.1-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2V49H82.1z"/>
              <path d="M89.2,46.7l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8c0.2-0.5,0.6-0.9,1-1.1c0.5-0.3,1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5c0.4,0.3,0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4C89,47.6,89.1,47.2,89.2,46.7z"/>
              <path d="M90.9,44.8c0-1,0.1-1.8,0.3-2.5c0.2-0.6,0.5-1.1,0.9-1.4c0.4-0.3,0.9-0.5,1.6-0.5c0.5,0,0.9,0.1,1.2,0.3s0.6,0.5,0.9,0.8  s0.4,0.8,0.5,1.3c0.1,0.5,0.2,1.2,0.2,2c0,1-0.1,1.8-0.3,2.4c-0.2,0.6-0.5,1.1-0.9,1.4c-0.4,0.3-0.9,0.5-1.6,0.5  c-0.8,0-1.5-0.3-2-0.9C91.2,47.5,90.9,46.4,90.9,44.8z M92,44.8c0,1.4,0.2,2.3,0.5,2.8s0.7,0.7,1.2,0.7c0.5,0,0.9-0.2,1.2-0.7  s0.5-1.4,0.5-2.8c0-1.4-0.2-2.4-0.5-2.8s-0.7-0.7-1.2-0.7c-0.5,0-0.9,0.2-1.2,0.6C92.1,42.4,92,43.4,92,44.8z"/>
              <path d="M103.1,42.5l-1.1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1c-0.4,0.2-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.2-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C102.7,41.3,103,41.8,103.1,42.5z M98.7,46.2c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8  s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.2-0.5s0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5  S98.7,45.7,98.7,46.2z"/>
              <path d="M55.1,62.5l-2.4-6.2h1.1l1.3,3.7c0.1,0.4,0.3,0.8,0.4,1.3c0.1-0.3,0.2-0.7,0.4-1.2l1.4-3.8h1.1l-2.4,6.2H55.1z"/>
              <path d="M63.7,60.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.7  c0,0.7,0.2,1.2,0.6,1.6c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S63.5,60.9,63.7,60.5z M60.2,58.8h3.5c0-0.5-0.2-0.9-0.4-1.2  C62.9,57.2,62.5,57,62,57c-0.5,0-0.9,0.2-1.2,0.5S60.2,58.2,60.2,58.8z"/>
              <path d="M66.1,62.5v-6.2h1v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H66.1z"/>
              <path d="M70.1,55.1v-1.2h1.1v1.2H70.1z M70.1,62.5v-6.2h1.1v6.2H70.1z"/>
              <path d="M73,62.5v-5.4h-0.9v-0.8H73v-0.7c0-0.4,0-0.7,0.1-0.9c0.1-0.3,0.3-0.5,0.5-0.7c0.3-0.2,0.6-0.3,1.1-0.3c0.3,0,0.6,0,1,0.1  l-0.2,0.9c-0.2,0-0.4-0.1-0.6-0.1c-0.3,0-0.5,0.1-0.7,0.2c-0.1,0.1-0.2,0.4-0.2,0.8v0.6h1.2v0.8h-1.2v5.4H73z"/>
              <path d="M76.1,55.1v-1.2h1.1v1.2H76.1z M76.1,62.5v-6.2h1.1v6.2H76.1z"/>
              <path d="M83.1,60.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.7  c0,0.7,0.2,1.2,0.6,1.6c0.3,0.4,0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S82.9,60.9,83.1,60.5z M79.6,58.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S79.6,58.2,79.6,58.8z"/>
              <path d="M89.5,62.5v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1.1v8.6H89.5z   M86.2,59.4c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9S88.3,57,87.8,57  c-0.5,0-0.9,0.2-1.2,0.6C86.3,58,86.2,58.6,86.2,59.4z"/>
              <path d="M92.3,62.5v-8.6h3.2c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.4,0.9,0.8c0.2,0.4,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1  c-0.2,0.3-0.5,0.6-0.9,0.8c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.3c0,0.4-0.1,0.8-0.3,1.1s-0.4,0.6-0.6,0.8  c-0.3,0.2-0.6,0.3-0.9,0.4s-0.8,0.1-1.4,0.1H92.3z M93.4,57.5h1.9c0.5,0,0.9,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.4s0.2-0.4,0.2-0.8  c0-0.3-0.1-0.5-0.2-0.8s-0.3-0.4-0.6-0.4c-0.3-0.1-0.7-0.1-1.3-0.1h-1.7V57.5z M93.4,61.5h2.1c0.4,0,0.6,0,0.8,0  c0.3,0,0.5-0.1,0.7-0.2s0.3-0.3,0.4-0.5c0.1-0.2,0.2-0.5,0.2-0.7c0-0.3-0.1-0.6-0.2-0.8s-0.4-0.4-0.7-0.5s-0.7-0.1-1.3-0.1h-2V61.5z  "/>
              <path d="M100.1,64.9l-0.1-1c0.2,0.1,0.4,0.1,0.6,0.1c0.2,0,0.4,0,0.6-0.1c0.1-0.1,0.3-0.2,0.3-0.3c0.1-0.1,0.2-0.4,0.3-0.8  c0-0.1,0.1-0.1,0.1-0.3l-2.4-6.2h1.1l1.3,3.6c0.2,0.5,0.3,0.9,0.5,1.4c0.1-0.5,0.3-1,0.4-1.4l1.3-3.6h1.1l-2.4,6.3  c-0.3,0.7-0.5,1.2-0.6,1.4c-0.2,0.3-0.4,0.6-0.6,0.8c-0.2,0.2-0.5,0.2-0.9,0.2C100.6,65,100.4,65,100.1,64.9z"/>
              <rect x="52.6" y="38.5" fill-rule="evenodd" fill="none" width="52.7" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-1">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   223(3)   ; known-value
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-1">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8df03
]]></artwork>
        </section>
      </section>
      <section anchor="encrypted-case">
        <name>Encrypted Case</name>
        <section anchor="envelope-cli-command-line-2">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice" | envelope encrypt \
    --key `envelope generate key`
]]></artwork>
        </section>
        <section anchor="envelope-notation-2">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
ENCRYPTED
]]></artwork>
        </section>
        <section anchor="tree-2">
          <name>Tree</name>
          <artwork><![CDATA[
13941b48 ENCRYPTED
]]></artwork>
        </section>
        <section anchor="mermaid-2">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="171.5px" height="104px" viewBox="0 0 171.5 104" xml:space="preserve">
              <path d="M31,71.9h3.7v2.2H31V71.9z M36,69.6l-2.6,2.7l-1.6-1.6l2.6-2.7L36,69.6z M41.3,64.3l-2.6,2.7l-1.6-1.6l2.6-2.7L41.3,64.3z   M46.6,59l-2.6,2.7L42.3,60l2.6-2.7L46.6,59z M51.9,53.7l-2.6,2.7l-1.6-1.6l2.6-2.7L51.9,53.7z M48.3,46.8l2.6,2.7L49.4,51l-2.6-2.7  L48.3,46.8z M43,41.5l2.6,2.7l-1.6,1.6L41.4,43L43,41.5z M37.7,36.2l2.6,2.7l-1.6,1.6l-2.6-2.7L37.7,36.2z M32.4,30.9l2.6,2.7  l-1.6,1.6l-2.6-2.7L32.4,30.9z M37.6,32.1h-3.7v-2.2h3.7V32.1z M45,32.1h-3.7v-2.2H45V32.1z M52.5,32.1h-3.7v-2.2h3.7V32.1z   M60,32.1h-3.7v-2.2H60V32.1z M67.5,32.1h-3.7v-2.2h3.7V32.1z M75,32.1h-3.7v-2.2H75V32.1z M82.4,32.1h-3.7v-2.2h3.7V32.1z   M89.9,32.1h-3.7v-2.2h3.7V32.1z M97.4,32.1h-3.7v-2.2h3.7V32.1z M104.9,32.1h-3.7v-2.2h3.7V32.1z M112.4,32.1h-3.7v-2.2h3.7V32.1z   M119.9,32.1h-3.7v-2.2h3.7V32.1z M127.3,32.1h-3.7v-2.2h3.7V32.1z M134.8,32.1h-3.7v-2.2h3.7V32.1z M139.4,32.8V31h1.1v1.1h-2v-2.2  h3.1v2.9H139.4z M139.4,40.3v-3.8h2.2v3.8H139.4z M139.4,47.8V44h2.2v3.8H139.4z M139.4,55.3v-3.8h2.2v3.8H139.4z M139.4,62.8V59  h2.2v3.8H139.4z M139.4,70.3v-3.8h2.2v3.8H139.4z M135.7,71.9h3.7v2.2h-3.7V71.9z M128.3,71.9h3.7v2.2h-3.7V71.9z M120.8,71.9h3.7  v2.2h-3.7V71.9z M113.3,71.9h3.7v2.2h-3.7V71.9z M105.8,71.9h3.7v2.2h-3.7V71.9z M98.3,71.9h3.7v2.2h-3.7V71.9z M90.8,71.9h3.7v2.2  h-3.7V71.9z M83.4,71.9h3.7v2.2h-3.7V71.9z M75.9,71.9h3.7v2.2h-3.7V71.9z M68.4,71.9h3.7v2.2h-3.7V71.9z M60.9,71.9h3.7v2.2h-3.7  V71.9z M53.4,71.9h3.7v2.2h-3.7V71.9z M45.9,71.9h3.7v2.2h-3.7V71.9z M38.5,71.9h3.7v2.2h-3.7V71.9z"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="121.5" height="54"/>
              <path d="M74,49H73v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1H74V49z"/>
              <path d="M76.7,46.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3c0.3,0.3,0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5c0.3-0.3,0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4  s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6  c0.5-0.4,1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7  c0.5,0.1,0.9,0.4,1.2,0.7c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  C77.1,48,76.8,47.4,76.7,46.7z"/>
              <path d="M83.6,47l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6  c0.2-0.2,0.3-0.6,0.4-1c0.1-0.4,0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8  c-0.5-0.5-0.7-1.2-0.7-2c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3  c0.2,0.6,0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5c-0.5,0.3-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6  S83.6,47.7,83.6,47z M87.9,43.2c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6c-0.3,0.4-0.5,0.9-0.5,1.5  c0,0.5,0.2,1,0.5,1.3c0.3,0.3,0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5C87.7,44.3,87.9,43.8,87.9,43.2z"/>
              <path d="M93.4,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1h-1.2V49H93.4z M93.4,46v-3.9L90.7,46H93.4z"/>
              <path d="M100.7,49h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V49z"/>
              <path d="M104.6,49h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1  c0.1,0.4,0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V49z M104.6,45.8  c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C104.8,44.5,104.6,45.1,104.6,45.8z"/>
              <path d="M113.4,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1h-1.2V49H113.4z M113.4,46v-3.9l-2.7,3.9H113.4z"/>
              <path d="M118.3,44.3c-0.4-0.2-0.8-0.4-1-0.7S117,43,117,42.6c0-0.6,0.2-1.2,0.7-1.6c0.4-0.4,1-0.6,1.8-0.6c0.7,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2,0.8c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C117.4,44.7,117.8,44.5,118.3,44.3z   M117.8,46.5c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C117.9,45.6,117.8,46,117.8,46.5z M118.1,42.6  c0,0.4,0.1,0.7,0.4,1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1  c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4C118.2,41.9,118.1,42.2,118.1,42.6z"/>
              <path d="M60.4,62.5v-8.6h6.2v1h-5.1v2.6h4.7v1h-4.7v2.9h5.3v1H60.4z"/>
              <path d="M68.3,62.5v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H68.3z"/>
              <path d="M83.1,59.5l1.1,0.3c-0.2,0.9-0.7,1.6-1.3,2.1s-1.4,0.7-2.3,0.7c-0.9,0-1.7-0.2-2.3-0.6s-1-0.9-1.3-1.6  c-0.3-0.7-0.5-1.5-0.5-2.3c0-0.9,0.2-1.7,0.5-2.3c0.3-0.7,0.8-1.2,1.5-1.5s1.3-0.5,2.1-0.5c0.9,0,1.6,0.2,2.2,0.7  c0.6,0.4,1,1.1,1.2,1.8L83,56.5c-0.2-0.6-0.5-1.1-0.9-1.4s-0.9-0.4-1.4-0.4c-0.7,0-1.2,0.2-1.7,0.5s-0.8,0.7-0.9,1.3  s-0.3,1.1-0.3,1.6c0,0.7,0.1,1.4,0.3,1.9s0.5,1,1,1.2c0.4,0.3,0.9,0.4,1.5,0.4c0.6,0,1.2-0.2,1.6-0.6C82.6,60.8,82.9,60.2,83.1,59.5  z"/>
              <path d="M85.6,62.5v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5s-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H85.6z M86.8,57.7h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  c0.2-0.2,0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.8-0.4-1.4-0.4h-2.7V57.7z"/>
              <path d="M96.5,62.5v-3.6l-3.3-5h1.4l1.7,2.6c0.3,0.5,0.6,1,0.9,1.5c0.3-0.4,0.6-1,0.9-1.5l1.7-2.5h1.3l-3.4,5v3.6H96.5z"/>
              <path d="M102,62.5v-8.6h3.2c0.6,0,1,0,1.3,0.1c0.4,0.1,0.8,0.2,1.1,0.4c0.3,0.2,0.5,0.5,0.7,0.8s0.3,0.7,0.3,1.2  c0,0.7-0.2,1.3-0.7,1.9c-0.5,0.5-1.3,0.8-2.5,0.8h-2.2v3.5H102z M103.2,58h2.2c0.7,0,1.3-0.1,1.6-0.4c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.4-0.1-0.7-0.3-0.9s-0.4-0.4-0.7-0.5c-0.2-0.1-0.5-0.1-1.1-0.1h-2.2V58z"/>
              <path d="M112.2,62.5v-7.6h-2.8v-1h6.8v1h-2.8v7.6H112.2z"/>
              <path d="M117.3,62.5v-8.6h6.2v1h-5.1v2.6h4.7v1h-4.7v2.9h5.3v1H117.3z"/>
              <path d="M125.3,62.5v-8.6h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2  c0,0.7-0.1,1.2-0.2,1.7c-0.2,0.5-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.6,0.3-1,0.4s-0.9,0.1-1.4,0.1H125.3z   M126.4,61.5h1.8c0.6,0,1-0.1,1.3-0.2c0.3-0.1,0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1s0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1  c-0.3-0.5-0.7-0.8-1.1-1c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V61.5z"/>
              <rect x="59.4" y="38.5" fill-rule="evenodd" fill="none" width="73.3" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-2">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   201(   ; crypto-msg
      [
         h'130b06fd0bfed08e',
         h'cbe81743cebf0e55dc77b55d',
         h'02dc64f9c7d7b0a162b36030a1b6ecaa',
         h'd8cb582013941b487c1ddebce827b6ec3f46d982938acdc7e3b6a140\
           db36062d9519dd2f'
      ]
   )
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-2">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8c984486bfa027df241def04c5520ca6d9d798ffd32d075c450d4b4\
3d97a37eb280fdd89cf152ccf57d5824d8cb5820278403504ad3a9a9c24c\
1b35a3673eee165a5d523f8d2a5cf5ce6dd25a37f110
]]></artwork>
        </section>
      </section>
      <section anchor="elided-case">
        <name>Elided Case</name>
        <section anchor="envelope-cli-command-line-3">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice" | envelope elide
]]></artwork>
        </section>
        <section anchor="envelope-notation-3">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
ELIDED
]]></artwork>
        </section>
        <section anchor="tree-3">
          <name>Tree</name>
          <artwork><![CDATA[
13941b48 ELIDED
]]></artwork>
        </section>
        <section anchor="mermaid-3">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="151.2px" height="104px" viewBox="0 0 151.2 104" xml:space="preserve">
              <path d="M41.5,71.9h3.7v2.2h-3.7V71.9z M39.9,67.4l1.7,3.4l-2,1l-1.7-3.4L39.9,67.4z M36.6,60.7l1.7,3.4l-2,1l-1.7-3.4L36.6,60.7z   M33.2,54l1.7,3.4l-2,1L31.2,55L33.2,54z M34.1,48.3l-1.7,3.4l-2-1l1.7-3.4L34.1,48.3z M37.5,41.6l-1.7,3.4l-2-1l1.7-3.4L37.5,41.6z   M40.8,34.9l-1.7,3.4l-2-1l1.7-3.4L40.8,34.9z M45.2,32.1h-3.7V31l1,0.5l0,0l-2-1l0.3-0.6h4.4V32.1z M52.7,32.1H49v-2.2h3.7V32.1z   M60.2,32.1h-3.7v-2.2h3.7V32.1z M67.7,32.1h-3.7v-2.2h3.7V32.1z M75.2,32.1h-3.7v-2.2h3.7V32.1z M82.7,32.1h-3.7v-2.2h3.7V32.1z   M90.1,32.1h-3.7v-2.2h3.7V32.1z M97.6,32.1h-3.7v-2.2h3.7V32.1z M105.1,32.1h-3.7v-2.2h3.7V32.1z M110,34.1l-1.3-2.5l1-0.5v1.1  h-0.9v-2.2h1.6L112,33L110,34.1z M113.4,40.8l-1.7-3.4l2-1l1.7,3.4L113.4,40.8z M116.7,47.5l-1.7-3.4l2-1l1.7,3.4L116.7,47.5z   M118.4,53.2l0.8-1.7l1,0.5l-1,0.5l-0.8-1.7l2-1l1.1,2.2l-1.1,2.2L118.4,53.2z M115.1,59.9l1.7-3.4l2,1l-1.7,3.4L115.1,59.9z   M111.7,66.6l1.7-3.4l2,1l-1.7,3.4L111.7,66.6z M108.9,71.9h0.9V73l-1-0.5l1.3-2.6l2,1l-1.6,3.2h-1.6V71.9z M101.4,71.9h3.7v2.2  h-3.7V71.9z M93.9,71.9h3.7v2.2h-3.7V71.9z M86.4,71.9h3.7v2.2h-3.7V71.9z M78.9,71.9h3.7v2.2h-3.7V71.9z M71.4,71.9h3.7v2.2h-3.7  V71.9z M63.9,71.9h3.7v2.2h-3.7V71.9z M56.5,71.9h3.7v2.2h-3.7V71.9z M49,71.9h3.7v2.2H49V71.9z"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="101.2" height="54"/>
              <path d="M53.4,49h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V49z"/>
              <path d="M56.1,46.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4c-0.3,0.3-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-0.9,0.7  c0.5,0.1,0.9,0.4,1.2,0.7s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  C56.5,48,56.2,47.4,56.1,46.7z"/>
              <path d="M63,47l1-0.1c0.1,0.5,0.2,0.8,0.5,1c0.2,0.2,0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5c-0.5,0.3-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6S63,47.7,63,47z M67.3,43.2  c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5S67.3,43.8,67.3,43.2z"/>
              <path d="M72.8,49v-2.1h-3.7v-1l3.9-5.6h0.9V46H75v1h-1.2V49H72.8z M72.8,46v-3.9L70.1,46H72.8z"/>
              <path d="M80.1,49H79v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V49z"/>
              <path d="M84.1,49h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V49z M84,45.8c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  C84.2,44.5,84,45.1,84,45.8z"/>
              <path d="M92.8,49v-2.1h-3.7v-1l3.9-5.6h0.9V46H95v1h-1.2V49H92.8z M92.8,46v-3.9L90.1,46H92.8z"/>
              <path d="M97.7,44.3c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.4-0.4,1-0.6,1.8-0.6  c0.7,0,1.4,0.2,1.8,0.7c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8  c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2,0.8c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.8-1.1-0.8-1.9  c0-0.6,0.1-1,0.4-1.4C96.8,44.7,97.2,44.5,97.7,44.3z M97.2,46.5c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2  c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3s-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S97.2,46,97.2,46.5z   M97.5,42.6c0,0.4,0.1,0.7,0.4,1c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1  c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4C97.7,41.9,97.5,42.2,97.5,42.6z"/>
              <path d="M54.9,62.5v-8.6h6.2v1h-5.1v2.6h4.7v1h-4.7v2.9h5.3v1H54.9z"/>
              <path d="M62.8,62.5v-8.6H64v7.6h4.2v1H62.8z"/>
              <path d="M69.8,62.5v-8.6h1.1v8.6H69.8z"/>
              <path d="M72.9,62.5v-8.6h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2c0,0.7-0.1,1.2-0.2,1.7  c-0.2,0.5-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.6,0.3-1,0.4c-0.4,0.1-0.9,0.1-1.4,0.1H72.9z M74,61.5h1.8  c0.6,0,1-0.1,1.3-0.2s0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1c0.2-0.5,0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1c-0.3-0.5-0.7-0.8-1.1-1  c-0.3-0.1-0.8-0.2-1.5-0.2H74V61.5z"/>
              <path d="M81.6,62.5v-8.6h6.2v1h-5.1v2.6h4.7v1h-4.7v2.9H88v1H81.6z"/>
              <path d="M89.5,62.5v-8.6h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2c0,0.7-0.1,1.2-0.2,1.7  c-0.2,0.5-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8c-0.3,0.2-0.6,0.3-1,0.4c-0.4,0.1-0.9,0.1-1.4,0.1H89.5z M90.7,61.5h1.8  c0.6,0,1-0.1,1.3-0.2s0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1c0.2-0.5,0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1c-0.3-0.5-0.7-0.8-1.1-1  c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V61.5z"/>
              <rect x="49" y="38.5" fill-rule="evenodd" fill="none" width="53.2" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-3">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   203(   ; crypto-digest
     h'13941b487c1ddebce827b6ec3f46d982938acdc7e3b6a140db36062d9519dd2f'
   )
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-3">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8cb5820278403504ad3a9a9c24c1b35a3673eee165a5d523f8d2a5cf5ce6dd2\
5a37f110
]]></artwork>
        </section>
      </section>
      <section anchor="node-case">
        <name>Node Case</name>
        <section anchor="envelope-cli-command-line-4">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice" | envelope assertion "knows" "Bob"
]]></artwork>
        </section>
        <section anchor="envelope-notation-4">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
"Alice" [
    "knows": "Bob"
]
]]></artwork>
        </section>
        <section anchor="tree-4">
          <name>Tree</name>
          <artwork><![CDATA[
8955db5e NODE
    13941b48 subj "Alice"
    78d666eb ASSERTION
        db7dd21c pred "knows"
        13b74194 obj "Bob"
]]></artwork>
        </section>
        <section anchor="mermaid-4">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="533px" height="223.2px" viewBox="0 0 533 223.2" xml:space="preserve">
              <path fill="none" stroke="#000000" stroke-width="1.4997" d="M94.2,73.7l5.8-3.6c5.8-3.6,17.4-10.8,28.2-14.5s20.7-3.6,25.6-3.6h5"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <polygon fill="black" points="150.8,47.5 159.8,52 150.8,56.5 "/>
              <rect x="149.3" y="47.5" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path fill="none" stroke="#000000" stroke-width="1.4997" d="M94.2,109.8l5.8,3.6c5.8,3.6,17.4,10.8,31.7,14.5s31.2,3.6,39.7,3.6  h8.5"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <polygon fill="black" points="171.9,127 180.9,131.5 171.9,136 "/>
              <rect x="170.4" y="127" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path fill="none" stroke="#000000" stroke-width="1.4997" d="M274.6,112.5l8.6-3.5c8.6-3.5,25.9-10.4,39.7-13.9  c13.8-3.5,24-3.5,29.1-3.5h5.1"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <polygon fill="black" points="349.1,87.2 358.1,91.8 349.1,96.2 "/>
              <rect x="347.6" y="87.2" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path fill="none" stroke="#000000" stroke-width="1.4997" d="M274.6,150.5l8.6,3.5c8.6,3.5,25.9,10.4,40.8,13.9  c14.8,3.5,27.2,3.5,33.4,3.5h6.2"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <polygon fill="black" points="355.4,166.8 364.4,171.2 355.4,175.8 "/>
              <rect x="353.9" y="166.8" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path d="M118.5,53.9l1-0.2c0.1,0.4,0.2,0.7,0.5,1c0.3,0.2,0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7  c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8  c0-0.3,0.1-0.5,0.2-0.8s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2  c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2  c-0.2,0.2-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5  s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.7c-0.4,0.2-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5  S118.6,54.6,118.5,53.9z"/>
              <path d="M129,55.8v-0.9c-0.5,0.7-1.1,1.1-2,1.1c-0.4,0-0.7-0.1-1-0.2c-0.3-0.1-0.6-0.3-0.7-0.5s-0.3-0.5-0.3-0.8  c0-0.2-0.1-0.5-0.1-1v-3.9h1.1V53c0,0.6,0,0.9,0.1,1.1c0.1,0.3,0.2,0.5,0.4,0.7s0.5,0.2,0.8,0.2c0.3,0,0.6-0.1,0.9-0.2  s0.5-0.4,0.6-0.7s0.2-0.7,0.2-1.2v-3.3h1.1v6.2H129z"/>
              <path d="M132.5,55.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V55.8z M132.5,52.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S132.5,51.8,132.5,52.6z"/>
              <path d="M136.9,58.2l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.5,0.2-1.1v-6.5h1.1v6.6  c0,0.8-0.1,1.3-0.3,1.6c-0.3,0.4-0.7,0.6-1.3,0.6C137.4,58.3,137.2,58.2,136.9,58.2z M138.2,48.4v-1.2h1.1v1.2H138.2z"/>
              <rect x="118.1" y="45.2" fill-rule="evenodd" fill="none" width="21.7" height="13.5"/>
              <path d="M315.2,97.9v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7s0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4s0.7,0.7,0.9,1.2s0.3,1,0.3,1.6  c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2s-0.5-0.3-0.7-0.6v3H315.2z M316.2,92.4  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.2-1.2,0.6S316.2,91.6,316.2,92.4z"/>
              <path d="M321.9,95.5v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9s0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1c-0.3-0.2-0.5-0.2-0.8-0.2  c-0.2,0-0.4,0.1-0.6,0.2s-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H321.9z"/>
              <path d="M330.1,93.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5s-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S330,93.9,330.1,93.5z M326.7,91.8h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-0.9,0.2-1.2,0.5S326.7,91.2,326.7,91.8z"/>
              <path d="M336.6,95.5v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H336.6z M333.3,92.4  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S333.3,91.6,333.3,92.4z"/>
              <rect x="314.4" y="85" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
              <path d="M318.8,171.9c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8c0.5,0.6,0.8,1.3,0.8,2.3  c0,0.8-0.1,1.4-0.4,1.9c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C319.1,173.7,318.8,172.9,318.8,171.9z   M319.9,171.9c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6C320.1,170.5,319.9,171.1,319.9,171.9z"/>
              <path d="M326.9,175h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V175z M326.8,171.8c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S326.8,171.1,326.8,171.8z"/>
              <path d="M331.2,177.4l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C331.8,177.5,331.5,177.5,331.2,177.4z M332.6,167.6v-1.2h1.1v1.2H332.6z"/>
              <rect x="318.4" y="164.5" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
              <path fill="none" stroke="#000000" stroke-width="2.2496" d="M99.4,91.8c0,1.1-0.1,2.2-0.2,3.4c-0.1,1.1-0.3,2.2-0.5,3.3  c-0.2,1.1-0.5,2.2-0.8,3.3c-0.3,1.1-0.7,2.1-1.1,3.2c-0.4,1-0.9,2-1.4,3c-0.5,1-1.1,1.9-1.7,2.9c-0.6,0.9-1.3,1.8-2,2.7  s-1.5,1.7-2.3,2.5s-1.6,1.5-2.5,2.3c-0.9,0.7-1.8,1.4-2.7,2c-0.9,0.6-1.9,1.2-2.9,1.7c-1,0.5-2,1-3,1.4s-2.1,0.8-3.2,1.1  c-1.1,0.3-2.2,0.6-3.3,0.8s-2.2,0.4-3.3,0.5c-1.1,0.1-2.2,0.2-3.4,0.2c-1.1,0-2.2-0.1-3.4-0.2c-1.1-0.1-2.2-0.3-3.3-0.5  c-1.1-0.2-2.2-0.5-3.3-0.8c-1.1-0.3-2.1-0.7-3.2-1.1s-2-0.9-3-1.4c-1-0.5-1.9-1.1-2.9-1.7c-0.9-0.6-1.8-1.3-2.7-2  c-0.9-0.7-1.7-1.5-2.5-2.3s-1.5-1.6-2.3-2.5s-1.4-1.8-2-2.7c-0.6-0.9-1.2-1.9-1.7-2.9c-0.5-1-1-2-1.4-3c-0.4-1-0.8-2.1-1.1-3.2  c-0.3-1.1-0.6-2.2-0.8-3.3c-0.2-1.1-0.4-2.2-0.5-3.3C31.1,94,31,92.9,31,91.8c0-1.1,0.1-2.2,0.2-3.4c0.1-1.1,0.3-2.2,0.5-3.3  c0.2-1.1,0.5-2.2,0.8-3.3c0.3-1.1,0.7-2.1,1.1-3.2c0.4-1,0.9-2,1.4-3c0.5-1,1.1-1.9,1.7-2.9c0.6-0.9,1.3-1.8,2-2.7s1.5-1.7,2.3-2.5  s1.6-1.5,2.5-2.3c0.9-0.7,1.8-1.4,2.7-2c0.9-0.6,1.9-1.2,2.9-1.7c1-0.5,2-1,3-1.4s2.1-0.8,3.2-1.1c1.1-0.3,2.2-0.6,3.3-0.8  c1.1-0.2,2.2-0.4,3.3-0.5c1.1-0.1,2.2-0.2,3.4-0.2c1.1,0,2.2,0.1,3.4,0.2c1.1,0.1,2.2,0.3,3.3,0.5s2.2,0.5,3.3,0.8  c1.1,0.3,2.1,0.7,3.2,1.1s2,0.9,3,1.4c1,0.5,1.9,1.1,2.9,1.7c0.9,0.6,1.8,1.3,2.7,2c0.9,0.7,1.7,1.5,2.5,2.3s1.5,1.6,2.3,2.5  s1.4,1.8,2,2.7c0.6,0.9,1.2,1.9,1.7,2.9c0.5,1,1,2,1.4,3c0.4,1,0.8,2.1,1.1,3.2c0.3,1.1,0.6,2.2,0.8,3.3c0.2,1.1,0.4,2.2,0.5,3.3  C99.3,89.5,99.4,90.6,99.4,91.8z"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <path d="M40.6,84.1c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.4-0.4,1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2-0.8C39.2,87.6,39,87,39,86.3c0-0.6,0.1-1,0.4-1.4S40.1,84.2,40.6,84.1z M40.1,86.3  c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C40.2,85.4,40.1,85.8,40.1,86.3z M40.4,82.3  c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4  c-0.4,0-0.7,0.1-1,0.4S40.4,81.9,40.4,82.3z"/>
              <path d="M45.8,86.8l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8c-0.4,0.2-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8s-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C46.2,88,45.9,87.4,45.8,86.8z M50.1,83  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5C50,84.1,50.1,83.6,50.1,83z"/>
              <path d="M52.3,86.5l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C52.7,87.8,52.4,87.2,52.3,86.5z"/>
              <path d="M59,86.5l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C59.4,87.8,59.1,87.2,59,86.5z"/>
              <path d="M70,88.8V88c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H70z M66.7,85.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C66.8,84.2,66.7,84.8,66.7,85.6z"/>
              <path d="M73.6,88.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V88.8z M73.6,85.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S73.6,84.8,73.6,85.6z"/>
              <path d="M79,86.5l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2c0.3,0.3,0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6c0.4-0.4,0.5-0.9,0.5-1.5  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3  c0.5-0.4,1.1-0.5,1.6-0.5c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1  c-0.8,0-1.4-0.2-1.9-0.7C79.4,87.8,79.1,87.2,79,86.5z"/>
              <path d="M90.2,86.7l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3C89.9,87.5,90.1,87.2,90.2,86.7z M86.8,85h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-0.9,0.2-1.2,0.5S86.8,84.5,86.8,85z"/>
              <path d="M48.8,102.2v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H48.8z"/>
              <path d="M57.1,98.1c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6  c0.3,0.7,0.5,1.4,0.5,2.3c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6  c-0.6-0.4-1.1-0.9-1.4-1.6S57.1,98.8,57.1,98.1z M58.3,98.1c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9  c0.6-0.6,0.8-1.5,0.8-2.6c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8  C58.6,95.9,58.3,96.8,58.3,98.1z"/>
              <path d="M66.8,102.2v-8.6h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2  c0,0.7-0.1,1.2-0.2,1.7s-0.3,0.9-0.6,1.3s-0.5,0.6-0.8,0.8s-0.6,0.3-1,0.4c-0.4,0.1-0.9,0.1-1.4,0.1H66.8z M67.9,101.2h1.8  c0.6,0,1-0.1,1.3-0.2s0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1c0.1-0.5,0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1s-0.7-0.8-1.1-1  c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V101.2z"/>
              <path d="M75.5,102.2v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H75.5z"/>
              <rect x="38.5" y="78.2" fill-rule="evenodd" fill="none" width="53.2" height="27"/>
              <rect x="158.9" y="31" fill="none" stroke="#000000" stroke-width="2.2496" width="136.8" height="42"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <path d="M205.1,49H204v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7V49z"/>
              <path d="M207.8,46.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5c0.3-0.3,0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1L210,44c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4  c0.4-0.2,0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2  c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,0.8c0.2,0.3,0.3,0.7,0.3,1.1  c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7S207.8,47.4,207.8,46.7z"/>
              <path d="M214.6,47l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8c-0.4,0.2-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8s-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C214.9,48.2,214.7,47.7,214.6,47z M218.9,43.2  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5C218.7,44.3,218.9,43.8,218.9,43.2z"/>
              <path d="M224.5,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1h-1.2V49H224.5z M224.5,46v-3.9l-2.7,3.9H224.5z"/>
              <path d="M231.7,49h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7V49z"/>
              <path d="M235.7,49h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V49z M235.7,45.8c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S235.7,45.1,235.7,45.8z"/>
              <path d="M244.5,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1h-1.2V49H244.5z M244.5,46v-3.9l-2.7,3.9H244.5z"/>
              <path d="M249.4,44.3c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.4-0.4,1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4S248.9,44.5,249.4,44.3z M248.9,46.5  c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C249,45.6,248.9,46,248.9,46.5z M249.2,42.6  c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4  c-0.4,0-0.7,0.1-1,0.4S249.2,42.2,249.2,42.6z"/>
              <path d="M210.9,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H210.9z M212.8,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H212.8z"/>
              <path d="M214.3,62.5l3.3-8.6h1.2l3.5,8.6H221l-1-2.6h-3.6l-0.9,2.6H214.3z M216.7,59h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L216.7,59z"/>
              <path d="M223,62.5v-8.6h1.1v8.6H223z"/>
              <path d="M225.7,55.1v-1.2h1.1v1.2H225.7z M225.7,62.5v-6.2h1.1v6.2H225.7z"/>
              <path d="M232.5,60.2l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4c0-0.7,0.1-1.3,0.3-1.8  c0.2-0.5,0.6-0.9,1-1.1c0.5-0.3,0.9-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6c-0.3,0.4-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4C232.2,61.1,232.4,60.7,232.5,60.2z"/>
              <path d="M238.6,60.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3C238.3,61.3,238.5,60.9,238.6,60.5z M235.2,58.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S235.2,58.2,235.2,58.8z"/>
              <path d="M241.1,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H241.1z M243.1,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H243.1z"/>
              <rect x="166.4" y="38.5" fill-rule="evenodd" fill="none" width="122.2" height="27"/>
              <path fill="none" stroke="#000000" stroke-width="2.2496" d="M201,110.5h52.6c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5s1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9s1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2s1,0.9,1.5,1.4  s0.9,1,1.4,1.5s0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8s0.6,1.2,0.9,1.9c0.3,0.6,0.5,1.3,0.7,1.9c0.2,0.7,0.4,1.3,0.5,2  c0.1,0.7,0.2,1.4,0.3,2s0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2c-0.1,0.7-0.3,1.3-0.5,2c-0.2,0.7-0.4,1.3-0.7,1.9  c-0.3,0.6-0.6,1.3-0.9,1.9s-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7s-0.9,1-1.4,1.5s-1,0.9-1.5,1.4s-1.1,0.8-1.7,1.2  c-0.6,0.4-1.2,0.7-1.8,1.1s-1.2,0.6-1.9,0.9c-0.6,0.3-1.3,0.5-1.9,0.7s-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3  c-0.7,0.1-1.4,0.1-2.1,0.1H201c-0.7,0-1.4,0-2.1-0.1c-0.7-0.1-1.4-0.2-2-0.3c-0.7-0.1-1.3-0.3-2-0.5c-0.7-0.2-1.3-0.4-1.9-0.7  c-0.6-0.3-1.3-0.6-1.9-0.9s-1.2-0.7-1.8-1.1c-0.6-0.4-1.1-0.8-1.7-1.2s-1-0.9-1.5-1.4s-0.9-1-1.4-1.5c-0.4-0.5-0.8-1.1-1.2-1.7  c-0.4-0.6-0.7-1.2-1.1-1.8s-0.6-1.2-0.9-1.9c-0.3-0.6-0.5-1.3-0.7-1.9c-0.2-0.7-0.4-1.3-0.5-2s-0.2-1.4-0.3-2  c-0.1-0.7-0.1-1.4-0.1-2.1s0-1.4,0.1-2.1s0.2-1.4,0.3-2s0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9  c0.3-0.6,0.7-1.2,1.1-1.8c0.4-0.6,0.8-1.1,1.2-1.7c0.4-0.5,0.9-1,1.4-1.5s1-0.9,1.5-1.4s1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1  s1.2-0.6,1.9-0.9c0.6-0.3,1.3-0.5,1.9-0.7c0.7-0.2,1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3C199.6,110.5,200.3,110.5,201,110.5z"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <path d="M201.1,121v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H201.1z"/>
              <path d="M209.4,123.8c-0.4-0.2-0.8-0.4-1-0.7s-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6c0.4-0.4,1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  s0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4S208.8,124,209.4,123.8z M208.8,126  c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5C209,125.1,208.8,125.5,208.8,126z M209.2,122.1  c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4c0.3-0.3,0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4  c-0.4,0-0.7,0.1-1,0.4S209.2,121.7,209.2,122.1z"/>
              <path d="M218.7,128.5v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4c-0.4-0.3-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7s0.5-0.9,0.9-1.2c0.4-0.3,0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2s0.5,0.4,0.7,0.6v-3.1h1v8.6H218.7z   M215.4,125.4c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  c-0.3-0.4-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C215.6,124,215.4,124.6,215.4,125.4z"/>
              <path d="M226.6,122l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C226.2,120.8,226.5,121.3,226.6,122z M222.3,125.7c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8  s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.7-0.5-1.2-0.5  c-0.5,0-0.9,0.2-1.2,0.5S222.3,125.2,222.3,125.7z"/>
              <path d="M233.2,122l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C232.9,120.8,233.1,121.3,233.2,122z M228.9,125.7c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8  s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.7-0.5-1.2-0.5  c-0.5,0-0.9,0.2-1.2,0.5S228.9,125.2,228.9,125.7z"/>
              <path d="M239.9,122l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8c0.5,0.5,0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C239.6,120.8,239.8,121.3,239.9,122z M235.6,125.7c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8  s0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.7-0.5-1.2-0.5  c-0.5,0-0.9,0.2-1.2,0.5S235.6,125.2,235.6,125.7z"/>
              <path d="M245.7,126.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3C245.3,127.3,245.5,126.9,245.7,126.5z M242.2,124.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S242.2,124.2,242.2,124.8z"/>
              <path d="M249,128.5h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V128.5z M249,125.3c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S249,124.6,249,125.3z"/>
              <path d="M192.7,142l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H192.7z M195.2,138.5h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L195.2,138.5z"/>
              <path d="M201.3,139.2l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4s-1.3-0.4-1.7-0.5  c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9s1-0.3,1.6-0.3c0.6,0,1.2,0.1,1.7,0.3  c0.5,0.2,0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3  c-0.8,0-1.4-0.1-2-0.3c-0.5-0.2-0.9-0.6-1.2-1S201.3,139.8,201.3,139.2z"/>
              <path d="M209.3,139.2l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7s-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4s-1.3-0.4-1.7-0.5  c-0.4-0.2-0.7-0.5-0.9-0.8s-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2s0.6-0.7,1.1-0.9s1-0.3,1.6-0.3c0.6,0,1.2,0.1,1.7,0.3  c0.5,0.2,0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2c-0.3-0.3-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4s-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9c0.2,0.4,0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9c-0.5,0.2-1,0.3-1.7,0.3  c-0.8,0-1.4-0.1-2-0.3c-0.5-0.2-0.9-0.6-1.2-1S209.3,139.8,209.3,139.2z"/>
              <path d="M217.7,142v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H217.7z"/>
              <path d="M225.7,142v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5s-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2s-0.4-0.5-0.6-0.6  c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H225.7z M226.8,137.2h2.4c0.5,0,0.9-0.1,1.2-0.2c0.3-0.1,0.5-0.3,0.7-0.5  s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V137.2z"/>
              <path d="M236.3,142v-7.6h-2.8v-1h6.8v1h-2.8v7.6H236.3z"/>
              <path d="M241.6,142v-8.6h1.1v8.6H241.6z"/>
              <path d="M244.4,137.8c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6  c0.3,0.7,0.5,1.4,0.5,2.3c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6  c-0.6-0.4-1.1-0.9-1.4-1.6S244.4,138.6,244.4,137.8z M245.6,137.8c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9  c0.6-0.6,0.8-1.5,0.8-2.6c0-0.7-0.1-1.3-0.4-1.8s-0.6-0.9-1-1.2s-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8  C245.9,135.6,245.6,136.5,245.6,137.8z"/>
              <path d="M254.1,142v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H254.1z"/>
              <rect x="192.7" y="118" fill-rule="evenodd" fill="none" width="69" height="27"/>
              <rect x="357.2" y="70.8" fill="none" stroke="#000000" stroke-width="2.2496" width="144.8" height="42"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <path d="M408.1,88.8V88c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H408.1z M404.7,85.6  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S404.7,84.8,404.7,85.6z"/>
              <path d="M411.7,88.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V88.8z M411.7,85.6c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S411.7,84.8,411.7,85.6z"/>
              <path d="M417.2,81.3v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H417.2z"/>
              <path d="M428.1,88.8V88c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H428.1z M424.7,85.6  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S424.7,84.8,424.7,85.6z"/>
              <path d="M434.8,88.8V88c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1s-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  s0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H434.8z M431.4,85.6  c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6S431.4,84.8,431.4,85.6z"/>
              <path d="M442.6,87.7v1H437c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  s0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1  c0.1-0.8,0.4-1.4,0.8-1.8c0.5-0.4,1.1-0.6,2-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1  s-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1s-0.3,0.4-0.4,0.6H442.6z"/>
              <path d="M447.7,88.8h-1.1V82c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V88.8z"/>
              <path d="M454.8,86.5l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4  S454.7,87,454.8,86.5z"/>
              <path d="M409.2,96.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H409.2z M411.1,96.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H411.1z"/>
              <path d="M413.4,102.2v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9h-1.3l-2.1-3.2l-0.7,0.7v2.5H413.4z"/>
              <path d="M419.4,102.2V96h0.9v0.9c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2s0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8c0,0.2,0.1,0.5,0.1,1v3.8  h-1.1v-3.8c0-0.4,0-0.8-0.1-1s-0.2-0.4-0.4-0.5s-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4s-0.5,0.8-0.5,1.6v3.4H419.4z"/>
              <path d="M425.7,99.1c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C425.9,101,425.7,100.2,425.7,99.1z M426.7,99.1c0,0.8,0.2,1.4,0.5,1.8  s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  S426.7,98.3,426.7,99.1z"/>
              <path d="M433.9,102.2L432,96h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H433.9z"/>
              <path d="M441,100.4l1-0.2c0.1,0.4,0.2,0.7,0.5,1s0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7c0-0.2-0.1-0.4-0.3-0.6  c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5c-0.3-0.1-0.5-0.3-0.7-0.6s-0.2-0.5-0.2-0.8c0-0.3,0.1-0.5,0.2-0.8  s0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3s0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1  c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3  c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.7  s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5C441.4,101.6,441.1,101.1,441,100.4z"/>
              <path d="M447.4,96.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H447.4z M449.4,96.7l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H449.4z"/>
              <rect x="364.7" y="78.2" fill-rule="evenodd" fill="none" width="129.7" height="27"/>
              <rect x="363.5" y="150.2" fill="none" stroke="#000000" stroke-width="2.2496" width="132.2" height="42"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="483" height="173.2"/>
              <path d="M407.4,168.2h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V168.2z"/>
              <path d="M410.1,166l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6c0.5-0.4,1-0.6,1.7-0.6  c0.5,0,0.9,0.1,1.3,0.3s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7  s0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7C410.4,167.3,410.2,166.7,410.1,166z"/>
              <path d="M418,168.2h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V168.2z M418,165.1c0,0.7,0.1,1.3,0.3,1.6c0.3,0.5,0.8,0.8,1.3,0.8  c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6S418,164.3,418,165.1z"/>
              <path d="M423.5,160.8v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H423.5z"/>
              <path d="M433.5,168.2v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H433.5z M433.5,165.2v-3.9l-2.7,3.9H433.5z"/>
              <path d="M440.7,168.2h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1s0.8-0.8,0.9-1.1h0.7V168.2z"/>
              <path d="M443.6,166.3l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4c0,1.1-0.1,2-0.4,2.6  s-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6C443.9,167.5,443.7,166.9,443.6,166.3z M447.9,162.5c0-0.6-0.2-1.1-0.5-1.4  s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5  S447.9,163.1,447.9,162.5z"/>
              <path d="M453.5,168.2v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H453.5z M453.5,165.2v-3.9l-2.7,3.9H453.5z"/>
              <path d="M415.5,176.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H415.5z M417.4,176.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H417.4z"/>
              <path d="M419.8,181.8v-8.6h3.2c0.7,0,1.2,0.1,1.6,0.3s0.7,0.4,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.6-0.9,0.8  c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.3c0,0.4-0.1,0.8-0.3,1.1s-0.4,0.6-0.6,0.8s-0.6,0.3-0.9,0.4s-0.8,0.1-1.4,0.1H419.8z   M420.9,176.8h1.9c0.5,0,0.9,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.4s0.2-0.4,0.2-0.8c0-0.3-0.1-0.5-0.2-0.8s-0.3-0.4-0.6-0.4  s-0.7-0.1-1.3-0.1h-1.7V176.8z M420.9,180.7h2.1c0.4,0,0.6,0,0.8,0c0.3,0,0.5-0.1,0.7-0.2s0.3-0.3,0.4-0.5s0.2-0.5,0.2-0.7  c0-0.3-0.1-0.6-0.2-0.8s-0.4-0.4-0.7-0.5s-0.7-0.1-1.3-0.1h-2V180.7z"/>
              <path d="M427.3,178.6c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  s-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8C427.6,180.5,427.3,179.7,427.3,178.6z M428.4,178.6c0,0.8,0.2,1.4,0.5,1.8  s0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7s-0.8-0.6-1.3-0.6c-0.5,0-1,0.2-1.3,0.6  S428.4,177.8,428.4,178.6z"/>
              <path d="M435.3,181.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V181.8z M435.3,178.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S435.3,177.8,435.3,178.6z"/>
              <path d="M441.1,176.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H441.1z M443,176.2l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H443z"/>
              <rect x="371" y="157.8" fill-rule="evenodd" fill="none" width="117" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-4">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   [
      200(   ; envelope
         24("Alice")   ; leaf
      ),
      200(   ; envelope
         221(   ; assertion
            [
               200(   ; envelope
                  24("knows")   ; leaf
               ),
               200(   ; envelope
                  24("Bob")   ; leaf
               )
            ]
         )
      )
   ]
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-4">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c882d8c8d81865416c696365d8c8d8dd82d8c8d818656b6e6f7773d8c8d8\
1863426f62
]]></artwork>
        </section>
      </section>
      <section anchor="wrapped-envelope-case">
        <name>Wrapped Envelope Case</name>
        <section anchor="envelope-cli-command-line-5">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject "Alice" | envelope subject --wrapped
]]></artwork>
        </section>
        <section anchor="envelope-notation-5">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
{
    "Alice"
}
]]></artwork>
        </section>
        <section anchor="tree-5">
          <name>Tree</name>
          <artwork><![CDATA[
2bc17c65 WRAPPED
    13941b48 subj "Alice"
]]></artwork>
        </section>
        <section anchor="mermaid-5">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="362px" height="104px" viewBox="0 0 362 104" xml:space="preserve">
              <path fill="none" stroke="#000000" stroke-width="1.4998" d="M124.5,52.4l6.6-0.1c6.6-0.1,19.9-0.2,31.5-0.2s21.5-0.1,26.5-0.1h5"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="312" height="54"/>
              <polygon fill="black" points="186.1,47.5 195.1,52 186.1,56.5 "/>
              <rect x="184.6" y="47.5" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path d="M153.8,53.9l1-0.2c0.1,0.4,0.2,0.7,0.5,1s0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3s0.4-0.4,0.4-0.7c0-0.2-0.1-0.4-0.3-0.6  c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5s-0.5-0.3-0.7-0.6c-0.2-0.3-0.2-0.5-0.2-0.8c0-0.3,0.1-0.5,0.2-0.8  c0.1-0.2,0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3s0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2s0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1  c0-0.3-0.2-0.6-0.4-0.8s-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2s-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3  c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5s0.5,0.3,0.7,0.6s0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.6-0.9,0.7  s-0.8,0.3-1.3,0.3c-0.8,0-1.4-0.2-1.8-0.5C154.2,55.1,153.9,54.6,153.8,53.9z"/>
              <path d="M164.3,55.8v-0.9c-0.5,0.7-1.1,1.1-2,1.1c-0.4,0-0.7-0.1-1-0.2s-0.6-0.3-0.7-0.5s-0.3-0.5-0.3-0.8c0-0.2-0.1-0.5-0.1-1v-3.9  h1.1V53c0,0.6,0,0.9,0.1,1.1c0.1,0.3,0.2,0.5,0.4,0.7s0.5,0.2,0.8,0.2c0.3,0,0.6-0.1,0.9-0.2s0.5-0.4,0.6-0.7s0.2-0.7,0.2-1.2v-3.3  h1.1v6.2H164.3z"/>
              <path d="M167.8,55.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V55.8z M167.8,52.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S167.8,51.8,167.8,52.6z"/>
              <path d="M172.2,58.2l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1v-6.5h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C172.7,58.3,172.5,58.2,172.2,58.2z M173.5,48.4v-1.2h1.1v1.2H173.5z"/>
              <rect x="153.4" y="45.3" fill-rule="evenodd" fill="none" width="21.7" height="13.5"/>
              <polygon fill="none" stroke="#000000" stroke-width="2.2497" points="31,73 134.7,73 113.7,31 52,31 "/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="312" height="54"/>
              <path d="M62.8,48v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1s0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8s0.5-0.9,0.5-1.3  c0-0.4-0.1-0.8-0.4-1.1s-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5s-0.5,0.7-0.5,1.3l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8s1.1-0.6,2-0.6  c0.8,0,1.5,0.2,2,0.7c0.5,0.5,0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1s-0.4,0.7-0.7,1c-0.3,0.4-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1  s-0.3,0.4-0.4,0.6H62.8z"/>
              <path d="M65.2,49h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V49z M65.2,45.8c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S65.2,45.1,65.2,45.8z"/>
              <path d="M75,46.7l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5c0.4,0.3,0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4S74.9,47.2,75,46.7z"/>
              <path d="M80.6,49h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7V49z"/>
              <path d="M83.4,41.5v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3c-0.5,1-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  s0.6-1.9,1.1-2.8c0.5-0.9,1-1.6,1.5-2.2H83.4z"/>
              <path d="M94.3,46.7l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8C90.2,47.7,90,47,90,45.9  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5c0.4,0.3,0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4S94.3,47.2,94.3,46.7z"/>
              <path d="M101.5,42.5l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  s-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9s0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5s-0.6,0.8-1,1.1  c-0.4,0.2-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6c0.5-0.7,1.3-1,2.2-1  c0.7,0,1.2,0.2,1.7,0.6C101.1,41.3,101.4,41.8,101.5,42.5z M97.2,46.2c0,0.4,0.1,0.7,0.2,1s0.4,0.6,0.6,0.8s0.6,0.3,0.9,0.3  c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.5  S97.2,45.7,97.2,46.2z"/>
              <path d="M102.7,46.8l1.1-0.1c0.1,0.5,0.3,0.9,0.6,1.2s0.7,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.6s0.5-0.9,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4  c-0.3-0.3-0.8-0.5-1.3-0.5c-0.3,0-0.6,0.1-0.9,0.2s-0.5,0.4-0.6,0.6l-1-0.1l0.8-4.4h4.3v1h-3.4l-0.5,2.3c0.5-0.4,1.1-0.5,1.6-0.5  c0.8,0,1.4,0.3,1.9,0.8c0.5,0.5,0.8,1.2,0.8,2c0,0.8-0.2,1.4-0.7,2c-0.6,0.7-1.3,1-2.3,1c-0.8,0-1.4-0.2-1.9-0.7  S102.7,47.5,102.7,46.8z"/>
              <path d="M54.9,62.5l-2.3-8.6h1.2l1.3,5.6c0.1,0.6,0.3,1.2,0.4,1.8c0.2-0.9,0.3-1.4,0.4-1.6l1.6-5.8h1.4l1.2,4.3  c0.3,1.1,0.5,2.1,0.7,3c0.1-0.5,0.3-1.2,0.4-1.9l1.3-5.5h1.1l-2.4,8.6h-1.1L58.4,56c-0.2-0.5-0.2-0.9-0.3-1c-0.1,0.4-0.2,0.7-0.3,1  l-1.8,6.5H54.9z"/>
              <path d="M64.8,62.5v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8s0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5c-0.4,0.4-1,0.7-1.8,0.8  c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2c-0.2-0.3-0.4-0.5-0.6-0.6  s-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H64.8z M65.9,57.7h2.4c0.5,0,0.9-0.1,1.2-0.2s0.5-0.3,0.7-0.5s0.2-0.5,0.2-0.8  c0-0.4-0.1-0.7-0.4-1s-0.8-0.4-1.4-0.4h-2.7V57.7z"/>
              <path d="M72.5,62.5l3.3-8.6H77l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H72.5z M74.9,59h2.9L77,56.6c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L74.9,59z"/>
              <path d="M81.4,62.5v-8.6h3.2c0.6,0,1,0,1.3,0.1c0.4,0.1,0.8,0.2,1.1,0.4s0.5,0.5,0.7,0.8c0.2,0.4,0.3,0.7,0.3,1.2  c0,0.7-0.2,1.3-0.7,1.9C86.8,58.8,86,59,84.7,59h-2.2v3.5H81.4z M82.5,58h2.2c0.7,0,1.3-0.1,1.6-0.4s0.5-0.7,0.5-1.2  c0-0.4-0.1-0.7-0.3-0.9s-0.4-0.4-0.7-0.5c-0.2-0.1-0.5-0.1-1.1-0.1h-2.2V58z"/>
              <path d="M89.4,62.5v-8.6h3.2c0.6,0,1,0,1.3,0.1c0.4,0.1,0.8,0.2,1.1,0.4s0.5,0.5,0.7,0.8c0.2,0.4,0.3,0.7,0.3,1.2  c0,0.7-0.2,1.3-0.7,1.9C94.8,58.8,94,59,92.7,59h-2.2v3.5H89.4z M90.5,58h2.2c0.7,0,1.3-0.1,1.6-0.4s0.5-0.7,0.5-1.2  c0-0.4-0.1-0.7-0.3-0.9s-0.4-0.4-0.7-0.5c-0.2-0.1-0.5-0.1-1.1-0.1h-2.2V58z"/>
              <path d="M97.4,62.5v-8.6h6.2v1h-5.1v2.6h4.8v1h-4.8v2.9h5.3v1H97.4z"/>
              <path d="M105.4,62.5v-8.6h3c0.7,0,1.2,0,1.5,0.1c0.5,0.1,0.9,0.3,1.3,0.6c0.5,0.4,0.8,0.9,1,1.5s0.3,1.3,0.3,2  c0,0.7-0.1,1.2-0.2,1.7s-0.3,0.9-0.6,1.3c-0.2,0.3-0.5,0.6-0.8,0.8s-0.6,0.3-1,0.4s-0.9,0.1-1.4,0.1H105.4z M106.6,61.5h1.8  c0.6,0,1-0.1,1.3-0.2c0.3-0.1,0.6-0.3,0.8-0.4c0.3-0.3,0.5-0.6,0.6-1.1s0.2-1,0.2-1.7c0-0.9-0.1-1.6-0.4-2.1s-0.7-0.8-1.1-1  c-0.3-0.1-0.8-0.2-1.5-0.2h-1.8V61.5z"/>
              <rect x="52.5" y="38.5" fill-rule="evenodd" fill="none" width="60.7" height="27"/>
              <rect x="194.2" y="31" fill="none" stroke="#000000" stroke-width="2.2497" width="136.8" height="42"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="312" height="54"/>
              <path d="M240.4,49h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7V49z"/>
              <path d="M243.1,46.7l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3s0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5s0.5-0.8,0.5-1.3c0-0.5-0.2-0.9-0.5-1.2  s-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4s0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1  s-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4s-0.4,0.6-0.5,1.2l-1.1-0.2c0.1-0.7,0.4-1.3,0.9-1.6s1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3  s0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7s0.4,0.8,0.4,1.4  c0,0.8-0.3,1.4-0.8,1.9c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7C243.4,48,243.1,47.4,243.1,46.7z"/>
              <path d="M249.9,47l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2s0.4-0.3,0.6-0.6s0.3-0.6,0.4-1  s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8c-0.5-0.5-0.7-1.2-0.7-2  c0-0.9,0.3-1.6,0.8-2.1c0.5-0.5,1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5c0.5,0.3,0.8,0.7,1.1,1.3s0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6s-0.6,1.1-1.1,1.5c-0.5,0.3-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6S250,47.7,249.9,47z M254.2,43.2  c0-0.6-0.2-1.1-0.5-1.4s-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3s0.7,0.5,1.2,0.5  c0.5,0,0.9-0.2,1.2-0.5S254.2,43.8,254.2,43.2z"/>
              <path d="M259.8,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1h-1.2V49H259.8z M259.8,46v-3.9l-2.7,3.9H259.8z"/>
              <path d="M267,49H266v-6.7c-0.3,0.2-0.6,0.5-1,0.7s-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1h0.7V49z"/>
              <path d="M271,49h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2s0.6,0.4,0.8,0.7s0.4,0.6,0.5,1s0.2,0.8,0.2,1.3  c0,1.1-0.3,1.9-0.8,2.5c-0.5,0.6-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V49z M271,45.8c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6  S271,45.1,271,45.8z"/>
              <path d="M279.8,49v-2.1h-3.7v-1l3.9-5.6h0.9V46h1.2v1h-1.2V49H279.8z M279.8,46v-3.9l-2.7,3.9H279.8z"/>
              <path d="M284.7,44.3c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.8,0,1.4,0.2,1.8,0.7  c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1s-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8s0.4,0.8,0.4,1.4c0,0.7-0.3,1.4-0.8,1.9  c-0.5,0.5-1.2,0.8-2.1,0.8c-0.8,0-1.5-0.3-2.1-0.8c-0.5-0.5-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C283.8,44.7,284.2,44.5,284.7,44.3z   M284.2,46.5c0,0.3,0.1,0.6,0.2,0.9s0.4,0.5,0.6,0.7s0.6,0.2,0.9,0.2c0.5,0,0.9-0.2,1.2-0.5s0.5-0.7,0.5-1.2c0-0.5-0.2-0.9-0.5-1.3  c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S284.2,46,284.2,46.5z M284.5,42.6c0,0.4,0.1,0.7,0.4,1s0.6,0.4,1,0.4  c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1s-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4S284.5,42.2,284.5,42.6z"/>
              <path d="M246.2,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H246.2z M248.1,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H248.1z"/>
              <path d="M249.6,62.5l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H249.6z M252,59h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L252,59z"/>
              <path d="M258.4,62.5v-8.6h1.1v8.6H258.4z"/>
              <path d="M261,55.1v-1.2h1.1v1.2H261z M261,62.5v-6.2h1.1v6.2H261z"/>
              <path d="M267.8,60.2l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7c-0.5,0.4-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8c-0.5-0.6-0.8-1.4-0.8-2.4  c0-0.7,0.1-1.3,0.3-1.8s0.6-0.9,1-1.1s1-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5c0.4,0.3,0.7,0.8,0.8,1.5l-1,0.2  c-0.1-0.4-0.3-0.7-0.5-0.9s-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8s0.7,0.6,1.3,0.6  c0.4,0,0.8-0.1,1-0.4S267.7,60.7,267.8,60.2z"/>
              <path d="M274,60.5l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8c-0.5-0.6-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4c0.5-0.6,1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8c0.5,0.6,0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6  c0,0.7,0.2,1.2,0.6,1.6s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3S273.8,60.9,274,60.5z M270.5,58.8h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S270.5,58.2,270.5,58.8z"/>
              <path d="M276.4,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H276.4z M278.4,57l-0.3-1.6v-1.4h1.2v1.4L279,57H278.4z"/>
              <rect x="201.7" y="38.5" fill-rule="evenodd" fill="none" width="122.2" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-5">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   224(   ; wrapped-envelope
      24("Alice")   ; leaf
   )
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-5">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8e0d81865416c696365
]]></artwork>
        </section>
      </section>
      <section anchor="assertion-case">
        <name>Assertion Case</name>
        <section anchor="envelope-cli-command-line-6">
          <name>Envelope CLI Command Line</name>
          <artwork><![CDATA[
envelope subject assertion "knows" "Bob"
]]></artwork>
        </section>
        <section anchor="envelope-notation-6">
          <name>Envelope Notation</name>
          <artwork><![CDATA[
"knows": "Bob"
]]></artwork>
        </section>
        <section anchor="tree-6">
          <name>Tree</name>
          <artwork><![CDATA[
78d666eb ASSERTION
    db7dd21c pred "knows"
    13b74194 obj "Bob"
]]></artwork>
        </section>
        <section anchor="mermaid-6">
          <name>Mermaid</name>
          <artwork type="svg">  <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny" width="362.8px" height="183.5px" viewBox="0 0 362.8 183.5" xml:space="preserve">
              <path fill="none" stroke="#000000" stroke-width="1.4993" d="M119.5,70.8l6.1-3.1c6.1-3.1,18.4-9.4,29.7-12.5  c11.3-3.1,21.5-3.1,26.6-3.1h5.1"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="312.8" height="133.5"/>
              <polygon fill="black" points="178.9,47.5 187.9,52 178.9,56.5 "/>
              <rect x="177.4" y="47.5" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path fill="none" stroke="#000000" stroke-width="1.4993" d="M119.5,112.8l6.1,3.1c6.1,3.1,18.4,9.4,30.7,12.5  c12.3,3.1,24.7,3.1,30.8,3.1h6.2"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="312.8" height="133.5"/>
              <polygon fill="black" points="185.2,127 194.2,131.5 185.2,136 "/>
              <rect x="183.7" y="127" fill-rule="evenodd" fill="none" width="12" height="9"/>
              <path d="M145.1,58.1v-8.6h1v0.8c0.2-0.3,0.5-0.6,0.8-0.7c0.3-0.2,0.6-0.2,1-0.2c0.5,0,1,0.1,1.4,0.4c0.4,0.3,0.7,0.7,0.9,1.2  s0.3,1,0.3,1.6c0,0.6-0.1,1.2-0.3,1.7c-0.2,0.5-0.6,0.9-1,1.2s-0.9,0.4-1.4,0.4c-0.4,0-0.7-0.1-0.9-0.2c-0.3-0.1-0.5-0.3-0.7-0.6v3  H145.1z M146,52.7c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8  c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6c-0.4,0-0.8,0.2-1.2,0.6C146.2,51.3,146,51.9,146,52.7z"/>
              <path d="M151.7,55.8v-6.2h0.9v0.9c0.2-0.4,0.5-0.7,0.7-0.9c0.2-0.1,0.4-0.2,0.7-0.2c0.4,0,0.7,0.1,1.1,0.3l-0.4,1  c-0.3-0.2-0.5-0.2-0.8-0.2c-0.2,0-0.4,0.1-0.6,0.2c-0.2,0.1-0.3,0.3-0.4,0.6c-0.1,0.4-0.2,0.8-0.2,1.2v3.3H151.7z"/>
              <path d="M160,53.7l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8s-0.8-1.3-0.8-2.4  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  s0.8,0.5,1.3,0.5c0.4,0,0.7-0.1,1-0.3C159.6,54.5,159.8,54.2,160,53.7z M156.5,52h3.5c0-0.5-0.2-0.9-0.4-1.2  c-0.3-0.4-0.8-0.6-1.3-0.6c-0.5,0-0.9,0.2-1.2,0.5S156.6,51.5,156.5,52z"/>
              <path d="M166.4,55.8V55c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H166.4z   M163.1,52.6c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C163.2,51.2,163.1,51.8,163.1,52.6z"/>
              <rect x="144.3" y="45.2" fill-rule="evenodd" fill="none" width="24" height="13.5"/>
              <path d="M148.7,132.1c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S148.7,133.2,148.7,132.1z M149.8,132.1c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C149.9,130.7,149.8,131.3,149.8,132.1z"/>
              <path d="M156.7,135.2h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V135.2z M156.7,132.1c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C156.9,130.8,156.7,131.3,156.7,132.1z"/>
              <path d="M161.1,137.7l0.2-0.9c0.2,0.1,0.4,0.1,0.5,0.1c0.2,0,0.4-0.1,0.5-0.2s0.2-0.5,0.2-1.1V129h1.1v6.6c0,0.8-0.1,1.3-0.3,1.6  c-0.3,0.4-0.7,0.6-1.3,0.6C161.6,137.8,161.3,137.7,161.1,137.7z M162.4,127.9v-1.2h1.1v1.2H162.4z"/>
              <rect x="148.3" y="124.8" fill-rule="evenodd" fill="none" width="15.7" height="13.5"/>
              <path fill="none" stroke="#000000" stroke-width="2.249" d="M52,70.8h52.6c0.7,0,1.4,0,2.1,0.1c0.7,0.1,1.4,0.2,2,0.3  c0.7,0.1,1.3,0.3,2,0.5s1.3,0.4,1.9,0.7c0.6,0.3,1.3,0.6,1.9,0.9c0.6,0.3,1.2,0.7,1.8,1.1c0.6,0.4,1.1,0.8,1.7,1.2  c0.5,0.4,1,0.9,1.5,1.4s0.9,1,1.4,1.5s0.8,1.1,1.2,1.7c0.4,0.6,0.7,1.2,1.1,1.8c0.3,0.6,0.6,1.2,0.9,1.9c0.3,0.6,0.5,1.3,0.7,1.9  c0.2,0.7,0.4,1.3,0.5,2s0.2,1.4,0.3,2c0.1,0.7,0.1,1.4,0.1,2.1s0,1.4-0.1,2.1c-0.1,0.7-0.2,1.4-0.3,2s-0.3,1.3-0.5,2  c-0.2,0.7-0.4,1.3-0.7,1.9c-0.3,0.6-0.6,1.3-0.9,1.9c-0.3,0.6-0.7,1.2-1.1,1.8c-0.4,0.6-0.8,1.1-1.2,1.7s-0.9,1-1.4,1.5  s-1,0.9-1.5,1.4c-0.5,0.4-1.1,0.8-1.7,1.2c-0.6,0.4-1.2,0.7-1.8,1.1c-0.6,0.3-1.2,0.6-1.9,0.9c-0.6,0.3-1.3,0.5-1.9,0.7  s-1.3,0.4-2,0.5c-0.7,0.1-1.4,0.2-2,0.3c-0.7,0.1-1.4,0.1-2.1,0.1H52c-0.7,0-1.4,0-2.1-0.1c-0.7-0.1-1.4-0.2-2-0.3  c-0.7-0.1-1.3-0.3-2-0.5s-1.3-0.4-1.9-0.7c-0.6-0.3-1.3-0.6-1.9-0.9c-0.6-0.3-1.2-0.7-1.8-1.1c-0.6-0.4-1.1-0.8-1.7-1.2  c-0.5-0.4-1-0.9-1.5-1.4s-0.9-1-1.4-1.5s-0.8-1.1-1.2-1.7c-0.4-0.6-0.7-1.2-1.1-1.8c-0.3-0.6-0.6-1.2-0.9-1.9  c-0.3-0.6-0.5-1.3-0.7-1.9c-0.2-0.7-0.4-1.3-0.5-2c-0.1-0.7-0.2-1.4-0.3-2C31,93.1,31,92.4,31,91.8s0-1.4,0.1-2.1s0.2-1.4,0.3-2  c0.1-0.7,0.3-1.3,0.5-2c0.2-0.7,0.4-1.3,0.7-1.9c0.3-0.6,0.6-1.3,0.9-1.9c0.3-0.6,0.7-1.2,1.1-1.8c0.4-0.6,0.8-1.1,1.2-1.7  s0.9-1,1.4-1.5s1-0.9,1.5-1.4c0.5-0.4,1.1-0.8,1.7-1.2c0.6-0.4,1.2-0.7,1.8-1.1c0.6-0.3,1.2-0.6,1.9-0.9c0.6-0.3,1.3-0.5,1.9-0.7  s1.3-0.4,2-0.5c0.7-0.1,1.4-0.2,2-0.3C50.6,70.8,51.3,70.8,52,70.8z"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="312.8" height="133.5"/>
              <path d="M52.2,81.3v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H52.2z"/>
              <path d="M60.4,84.1c-0.4-0.2-0.8-0.4-1-0.7c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.6,0.2-1.2,0.7-1.6s1-0.6,1.8-0.6c0.7,0,1.4,0.2,1.8,0.7  c0.5,0.4,0.7,1,0.7,1.6c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.5-1,0.7c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.4  c0,0.7-0.3,1.4-0.8,1.9s-1.2,0.8-2,0.8c-0.8,0-1.5-0.3-2-0.8s-0.8-1.1-0.8-1.9c0-0.6,0.1-1,0.4-1.4C59.5,84.5,59.9,84.2,60.4,84.1z   M59.8,86.3c0,0.3,0.1,0.6,0.2,0.9c0.1,0.3,0.4,0.5,0.6,0.7C61,88,61.3,88,61.6,88c0.5,0,0.9-0.2,1.2-0.5c0.3-0.3,0.5-0.7,0.5-1.2  c0-0.5-0.2-0.9-0.5-1.3c-0.3-0.3-0.8-0.5-1.3-0.5c-0.5,0-0.9,0.2-1.2,0.5S59.8,85.8,59.8,86.3z M60.2,82.3c0,0.4,0.1,0.7,0.4,1  c0.3,0.3,0.6,0.4,1,0.4c0.4,0,0.7-0.1,1-0.4s0.4-0.6,0.4-0.9c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.7,0.1-1,0.4  C60.3,81.6,60.2,81.9,60.2,82.3z"/>
              <path d="M69.7,88.8V88c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7c0-0.6,0.1-1.2,0.3-1.7  c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1v8.6H69.7z M66.4,85.6  c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9s-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C66.6,84.2,66.4,84.8,66.4,85.6z"/>
              <path d="M77.6,82.3l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C77.2,81.1,77.5,81.6,77.6,82.3z M73.3,86c0,0.4,0.1,0.7,0.2,1c0.2,0.3,0.4,0.6,0.6,0.8  c0.3,0.2,0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.7-0.5-1.2-0.5  c-0.5,0-0.9,0.2-1.2,0.5S73.3,85.4,73.3,86z"/>
              <path d="M84.2,82.3l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C83.9,81.1,84.1,81.6,84.2,82.3z M79.9,86c0,0.4,0.1,0.7,0.2,1c0.2,0.3,0.4,0.6,0.6,0.8  c0.3,0.2,0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.7-0.5-1.2-0.5  c-0.5,0-0.9,0.2-1.2,0.5S79.9,85.4,79.9,86z"/>
              <path d="M90.9,82.3l-1,0.1c-0.1-0.4-0.2-0.7-0.4-0.9c-0.3-0.3-0.6-0.5-1.1-0.5c-0.3,0-0.6,0.1-0.9,0.3c-0.3,0.2-0.6,0.6-0.8,1.1  c-0.2,0.5-0.3,1.1-0.3,2c0.3-0.4,0.6-0.7,0.9-0.9c0.4-0.2,0.8-0.3,1.2-0.3c0.7,0,1.3,0.3,1.8,0.8s0.7,1.2,0.7,2c0,0.5-0.1,1-0.3,1.5  c-0.2,0.5-0.6,0.8-1,1.1s-0.9,0.4-1.4,0.4c-0.9,0-1.6-0.3-2.1-1c-0.6-0.6-0.8-1.7-0.8-3.2c0-1.7,0.3-2.9,0.9-3.6  c0.5-0.7,1.3-1,2.2-1c0.7,0,1.2,0.2,1.7,0.6C90.5,81.1,90.8,81.6,90.9,82.3z M86.6,86c0,0.4,0.1,0.7,0.2,1c0.2,0.3,0.4,0.6,0.6,0.8  c0.3,0.2,0.6,0.3,0.9,0.3c0.4,0,0.8-0.2,1.1-0.5c0.3-0.4,0.5-0.8,0.5-1.5c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.3-0.7-0.5-1.2-0.5  c-0.5,0-0.9,0.2-1.2,0.5S86.6,85.4,86.6,86z"/>
              <path d="M96.6,86.7l1.1,0.1c-0.2,0.6-0.5,1.1-1,1.5c-0.5,0.4-1.1,0.5-1.8,0.5c-0.9,0-1.6-0.3-2.2-0.8S92,86.7,92,85.7  c0-1,0.3-1.9,0.8-2.4s1.2-0.9,2.1-0.9c0.8,0,1.5,0.3,2,0.8s0.8,1.4,0.8,2.4c0,0.1,0,0.2,0,0.3h-4.6c0,0.7,0.2,1.2,0.6,1.6  S94.5,88,95,88c0.4,0,0.7-0.1,1-0.3C96.3,87.5,96.5,87.2,96.6,86.7z M93.2,85h3.5c0-0.5-0.2-0.9-0.4-1.2c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-0.9,0.2-1.2,0.5S93.2,84.5,93.2,85z"/>
              <path d="M100,88.8h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V88.8z M100,85.6c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C100.2,84.3,100,84.8,100,85.6z"/>
              <path d="M43.7,102.2l3.3-8.6h1.2l3.5,8.6h-1.3l-1-2.6h-3.6l-0.9,2.6H43.7z M46.2,98.7h2.9l-0.9-2.4c-0.3-0.7-0.5-1.3-0.6-1.8  c-0.1,0.6-0.3,1.1-0.5,1.6L46.2,98.7z"/>
              <path d="M52.3,99.5l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5c0.2-0.2,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  s-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3s0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2s-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4c-0.3,0.3-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9s-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C52.4,100.6,52.3,100.1,52.3,99.5z"/>
              <path d="M60.3,99.5l1.1-0.1c0.1,0.4,0.2,0.8,0.4,1.1c0.2,0.3,0.5,0.5,0.9,0.7c0.4,0.2,0.8,0.3,1.3,0.3c0.4,0,0.8-0.1,1.1-0.2  c0.3-0.1,0.6-0.3,0.7-0.5c0.2-0.2,0.2-0.5,0.2-0.7c0-0.3-0.1-0.5-0.2-0.7c-0.2-0.2-0.4-0.4-0.8-0.5c-0.2-0.1-0.7-0.2-1.5-0.4  s-1.3-0.4-1.7-0.5c-0.4-0.2-0.7-0.5-0.9-0.8c-0.2-0.3-0.3-0.7-0.3-1.1c0-0.4,0.1-0.8,0.4-1.2c0.2-0.4,0.6-0.7,1.1-0.9s1-0.3,1.6-0.3  c0.6,0,1.2,0.1,1.7,0.3s0.9,0.5,1.1,0.9c0.3,0.4,0.4,0.8,0.4,1.4l-1.1,0.1c-0.1-0.5-0.3-1-0.6-1.2s-0.8-0.4-1.5-0.4  c-0.7,0-1.2,0.1-1.5,0.4c-0.3,0.3-0.5,0.6-0.5,0.9c0,0.3,0.1,0.6,0.3,0.8c0.2,0.2,0.8,0.4,1.7,0.6c0.9,0.2,1.6,0.4,1.9,0.5  c0.5,0.2,0.9,0.5,1.1,0.9s0.4,0.8,0.4,1.2c0,0.5-0.1,0.9-0.4,1.3c-0.3,0.4-0.6,0.7-1.1,0.9s-1,0.3-1.7,0.3c-0.8,0-1.4-0.1-2-0.3  s-0.9-0.6-1.2-1C60.4,100.6,60.3,100.1,60.3,99.5z"/>
              <path d="M68.7,102.2v-8.6h6.2v1h-5.1v2.6h4.7v1h-4.7v2.9h5.3v1H68.7z"/>
              <path d="M76.7,102.2v-8.6h3.8c0.8,0,1.3,0.1,1.7,0.2s0.7,0.4,1,0.8c0.2,0.4,0.4,0.8,0.4,1.3c0,0.6-0.2,1.1-0.6,1.5  c-0.4,0.4-1,0.7-1.8,0.8c0.3,0.1,0.5,0.3,0.7,0.4c0.3,0.3,0.6,0.7,0.9,1.1l1.5,2.3h-1.4l-1.1-1.8c-0.3-0.5-0.6-0.9-0.8-1.2  c-0.2-0.3-0.4-0.5-0.6-0.6c-0.2-0.1-0.3-0.2-0.5-0.2c-0.1,0-0.3,0-0.6,0h-1.3v3.8H76.7z M77.8,97.5h2.4c0.5,0,0.9-0.1,1.2-0.2  c0.3-0.1,0.5-0.3,0.7-0.5s0.2-0.5,0.2-0.8c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.8-0.4-1.4-0.4h-2.7V97.5z"/>
              <path d="M87.3,102.2v-7.6h-2.8v-1h6.8v1h-2.8v7.6H87.3z"/>
              <path d="M92.6,102.2v-8.6h1.1v8.6H92.6z"/>
              <path d="M95.4,98.1c0-1.4,0.4-2.5,1.1-3.3c0.8-0.8,1.8-1.2,3-1.2c0.8,0,1.5,0.2,2.1,0.6c0.6,0.4,1.1,0.9,1.5,1.6  c0.3,0.7,0.5,1.4,0.5,2.3c0,0.9-0.2,1.7-0.5,2.3c-0.4,0.7-0.8,1.2-1.5,1.6c-0.6,0.4-1.3,0.5-2.1,0.5c-0.8,0-1.5-0.2-2.2-0.6  s-1.1-0.9-1.4-1.6S95.4,98.8,95.4,98.1z M96.6,98.1c0,1,0.3,1.9,0.8,2.4s1.3,0.9,2.1,0.9c0.9,0,1.6-0.3,2.1-0.9s0.8-1.5,0.8-2.6  c0-0.7-0.1-1.3-0.4-1.8c-0.2-0.5-0.6-0.9-1-1.2c-0.5-0.3-1-0.4-1.5-0.4c-0.8,0-1.5,0.3-2.1,0.8S96.6,96.8,96.6,98.1z"/>
              <path d="M105.1,102.2v-8.6h1.2l4.5,6.7v-6.7h1.1v8.6h-1.2l-4.5-6.8v6.8H105.1z"/>
              <rect x="43.7" y="78.2" fill-rule="evenodd" fill="none" width="68.9" height="27"/>
              <rect x="187" y="31" fill="none" stroke="#000000" stroke-width="2.249" width="144.7" height="42"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="312.8" height="133.5"/>
              <path d="M237.9,49v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1V49H237.9z   M234.5,45.9c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C234.7,44.5,234.5,45.1,234.5,45.9z"/>
              <path d="M241.5,49h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V49z M241.5,45.8c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C241.6,44.5,241.5,45.1,241.5,45.8z"/>
              <path d="M246.9,41.5v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H246.9z"/>
              <path d="M257.9,49v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1V49H257.9z   M254.5,45.9c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C254.7,44.5,254.5,45.1,254.5,45.9z"/>
              <path d="M264.5,49v-0.8c-0.4,0.6-1,0.9-1.7,0.9c-0.5,0-1-0.1-1.4-0.4s-0.7-0.7-1-1.1c-0.2-0.5-0.3-1.1-0.3-1.7  c0-0.6,0.1-1.2,0.3-1.7c0.2-0.5,0.5-0.9,0.9-1.2s0.9-0.4,1.4-0.4c0.4,0,0.7,0.1,1,0.2c0.3,0.2,0.5,0.4,0.7,0.6v-3.1h1V49H264.5z   M261.2,45.9c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.2,0.6c0.5,0,0.9-0.2,1.2-0.6s0.5-1,0.5-1.7c0-0.9-0.2-1.5-0.5-1.9  s-0.7-0.6-1.2-0.6c-0.5,0-0.9,0.2-1.2,0.6C261.4,44.5,261.2,45.1,261.2,45.9z"/>
              <path d="M272.4,48v1h-5.7c0-0.3,0-0.5,0.1-0.7c0.1-0.4,0.4-0.8,0.7-1.1c0.3-0.4,0.8-0.8,1.4-1.3c0.9-0.8,1.6-1.4,1.9-1.8  c0.3-0.4,0.5-0.9,0.5-1.3c0-0.4-0.1-0.8-0.4-1.1c-0.3-0.3-0.7-0.4-1.2-0.4c-0.5,0-0.9,0.2-1.2,0.5c-0.3,0.3-0.5,0.7-0.5,1.3  l-1.1-0.1c0.1-0.8,0.4-1.4,0.8-1.8s1.1-0.6,1.9-0.6c0.8,0,1.5,0.2,2,0.7s0.7,1,0.7,1.7c0,0.3-0.1,0.7-0.2,1c-0.1,0.3-0.4,0.7-0.7,1  c-0.3,0.4-0.9,0.9-1.6,1.5c-0.6,0.5-1,0.9-1.2,1.1c-0.2,0.2-0.3,0.4-0.4,0.6H272.4z"/>
              <path d="M277.5,49h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7c-0.4,0.2-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1  h0.7V49z"/>
              <path d="M284.6,46.7l1,0.1c-0.1,0.7-0.4,1.3-0.9,1.7s-1,0.6-1.7,0.6c-0.9,0-1.5-0.3-2.1-0.8s-0.8-1.4-0.8-2.4c0-0.7,0.1-1.3,0.3-1.8  c0.2-0.5,0.6-0.9,1-1.1c0.5-0.3,0.9-0.4,1.5-0.4c0.7,0,1.2,0.2,1.7,0.5s0.7,0.8,0.8,1.5l-1,0.2c-0.1-0.4-0.3-0.7-0.5-0.9  c-0.2-0.2-0.5-0.3-0.9-0.3c-0.5,0-1,0.2-1.3,0.6s-0.5,1-0.5,1.8c0,0.8,0.2,1.4,0.5,1.8c0.3,0.4,0.7,0.6,1.3,0.6c0.4,0,0.8-0.1,1-0.4  C284.3,47.6,284.5,47.2,284.6,46.7z"/>
              <path d="M239,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H239z M240.9,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H240.9z"/>
              <path d="M243.2,62.5v-8.6h1.1v4.9l2.5-2.5h1.4l-2.4,2.3l2.6,3.9H247l-2.1-3.2l-0.7,0.7v2.5H243.2z"/>
              <path d="M249.2,62.5v-6.2h0.9v0.9c0.5-0.7,1.1-1,2-1c0.4,0,0.7,0.1,1,0.2c0.3,0.1,0.5,0.3,0.7,0.5s0.3,0.5,0.3,0.8  c0,0.2,0.1,0.5,0.1,1v3.8h-1.1v-3.8c0-0.4,0-0.8-0.1-1c-0.1-0.2-0.2-0.4-0.4-0.5c-0.2-0.1-0.5-0.2-0.7-0.2c-0.4,0-0.8,0.1-1.2,0.4  c-0.3,0.3-0.5,0.8-0.5,1.6v3.4H249.2z"/>
              <path d="M255.5,59.4c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S255.5,60.4,255.5,59.4z M256.5,59.4c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C256.7,58,256.5,58.6,256.5,59.4z"/>
              <path d="M263.7,62.5l-1.9-6.2h1.1l1,3.6l0.4,1.3c0-0.1,0.1-0.5,0.3-1.3l1-3.6h1.1l0.9,3.6l0.3,1.2l0.4-1.2l1.1-3.6h1l-1.9,6.2h-1.1  l-1-3.7l-0.2-1.1l-1.3,4.8H263.7z"/>
              <path d="M270.7,60.6l1-0.2c0.1,0.4,0.2,0.7,0.5,1c0.3,0.2,0.6,0.3,1.1,0.3c0.5,0,0.8-0.1,1.1-0.3c0.2-0.2,0.4-0.4,0.4-0.7  c0-0.2-0.1-0.4-0.3-0.6c-0.1-0.1-0.5-0.2-1.1-0.4c-0.8-0.2-1.3-0.4-1.6-0.5c-0.3-0.1-0.5-0.3-0.7-0.6c-0.2-0.3-0.2-0.5-0.2-0.8  c0-0.3,0.1-0.5,0.2-0.8c0.1-0.2,0.3-0.4,0.5-0.6c0.2-0.1,0.4-0.2,0.7-0.3c0.3-0.1,0.6-0.1,0.9-0.1c0.5,0,0.9,0.1,1.3,0.2  c0.4,0.1,0.6,0.3,0.8,0.6s0.3,0.6,0.4,1l-1,0.1c0-0.3-0.2-0.6-0.4-0.8c-0.2-0.2-0.5-0.3-1-0.3c-0.5,0-0.8,0.1-1,0.2  c-0.2,0.2-0.3,0.3-0.3,0.6c0,0.1,0,0.3,0.1,0.4c0.1,0.1,0.2,0.2,0.4,0.3c0.1,0,0.4,0.1,0.9,0.3c0.7,0.2,1.3,0.4,1.6,0.5  c0.3,0.1,0.5,0.3,0.7,0.6c0.2,0.2,0.3,0.5,0.3,0.9c0,0.4-0.1,0.7-0.3,1c-0.2,0.3-0.5,0.6-0.9,0.7s-0.8,0.3-1.3,0.3  c-0.8,0-1.4-0.2-1.8-0.5C271.1,61.8,270.9,61.3,270.7,60.6z"/>
              <path d="M277.2,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H277.2z M279.2,57l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H279.2z"/>
              <rect x="194.5" y="38.5" fill-rule="evenodd" fill="none" width="129.6" height="27"/>
              <rect x="193.3" y="110.5" fill="none" stroke="#000000" stroke-width="2.249" width="132.1" height="42"/>
              <rect x="25" y="25" fill-rule="evenodd" fill="none" width="312.8" height="133.5"/>
              <path d="M237.2,128.5h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7c-0.4,0.2-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1  h0.7V128.5z"/>
              <path d="M239.9,126.2l1.1-0.1c0.1,0.6,0.3,1,0.6,1.3c0.3,0.3,0.6,0.4,1.1,0.4c0.5,0,0.9-0.2,1.3-0.5c0.3-0.3,0.5-0.8,0.5-1.3  c0-0.5-0.2-0.9-0.5-1.2c-0.3-0.3-0.7-0.5-1.2-0.5c-0.2,0-0.4,0-0.7,0.1l0.1-0.9c0.1,0,0.1,0,0.2,0c0.4,0,0.9-0.1,1.2-0.4  c0.4-0.2,0.5-0.6,0.5-1.1c0-0.4-0.1-0.7-0.4-1c-0.3-0.3-0.6-0.4-1-0.4c-0.4,0-0.8,0.1-1,0.4c-0.3,0.3-0.4,0.6-0.5,1.2l-1.1-0.2  c0.1-0.7,0.4-1.3,0.9-1.6s1-0.6,1.7-0.6c0.5,0,0.9,0.1,1.3,0.3c0.4,0.2,0.7,0.5,0.9,0.8s0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1  s-0.5,0.5-0.9,0.7c0.5,0.1,0.9,0.4,1.2,0.7c0.3,0.4,0.4,0.8,0.4,1.4c0,0.8-0.3,1.4-0.8,1.9s-1.2,0.8-2.1,0.8c-0.8,0-1.4-0.2-1.9-0.7  C240.2,127.5,240,126.9,239.9,126.2z"/>
              <path d="M247.8,128.5h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V128.5z M247.8,125.3c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C248,124,247.8,124.6,247.8,125.3z"/>
              <path d="M253.3,121v-1h5.6v0.8c-0.5,0.6-1.1,1.4-1.6,2.3s-1,2-1.2,3c-0.2,0.7-0.3,1.5-0.4,2.4h-1.1c0-0.7,0.1-1.5,0.4-2.4  c0.3-1,0.6-1.9,1.1-2.8s1-1.6,1.5-2.2H253.3z"/>
              <path d="M263.3,128.5v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H263.3z M263.3,125.5v-3.9l-2.7,3.9H263.3z"/>
              <path d="M270.5,128.5h-1.1v-6.7c-0.3,0.2-0.6,0.5-1,0.7c-0.4,0.2-0.8,0.4-1.1,0.5v-1c0.6-0.3,1.1-0.6,1.5-1c0.4-0.4,0.8-0.8,0.9-1.1  h0.7V128.5z"/>
              <path d="M273.4,126.5l1-0.1c0.1,0.5,0.2,0.8,0.5,1s0.6,0.3,0.9,0.3c0.3,0,0.6-0.1,0.9-0.2c0.2-0.1,0.4-0.3,0.6-0.6  c0.2-0.2,0.3-0.6,0.4-1s0.2-0.9,0.2-1.3c0,0,0-0.1,0-0.2c-0.2,0.3-0.5,0.6-0.9,0.8s-0.8,0.3-1.2,0.3c-0.7,0-1.3-0.3-1.8-0.8  s-0.7-1.2-0.7-2c0-0.9,0.3-1.6,0.8-2.1s1.2-0.8,1.9-0.8c0.6,0,1.1,0.2,1.5,0.5s0.8,0.7,1.1,1.3c0.2,0.6,0.4,1.4,0.4,2.4  c0,1.1-0.1,2-0.4,2.6c-0.2,0.7-0.6,1.1-1.1,1.5s-1,0.5-1.7,0.5c-0.7,0-1.2-0.2-1.6-0.6S273.5,127.2,273.4,126.5z M277.7,122.7  c0-0.6-0.2-1.1-0.5-1.4c-0.3-0.4-0.7-0.5-1.2-0.5c-0.5,0-0.9,0.2-1.2,0.6s-0.5,0.9-0.5,1.5c0,0.5,0.2,1,0.5,1.3  c0.3,0.3,0.7,0.5,1.2,0.5c0.5,0,0.9-0.2,1.2-0.5C277.5,123.8,277.7,123.3,277.7,122.7z"/>
              <path d="M283.3,128.5v-2.1h-3.7v-1l3.9-5.6h0.9v5.6h1.2v1h-1.2v2.1H283.3z M283.3,125.5v-3.9l-2.7,3.9H283.3z"/>
              <path d="M245.3,136.5l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H245.3z M247.2,136.5l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H247.2z"/>
              <path d="M249.6,142v-8.6h3.2c0.7,0,1.2,0.1,1.6,0.3c0.4,0.2,0.7,0.4,0.9,0.8c0.2,0.4,0.3,0.7,0.3,1.1c0,0.4-0.1,0.7-0.3,1  c-0.2,0.3-0.5,0.6-0.9,0.8c0.5,0.2,0.9,0.4,1.2,0.8c0.3,0.4,0.4,0.8,0.4,1.3c0,0.4-0.1,0.8-0.3,1.1s-0.4,0.6-0.6,0.8  c-0.2,0.2-0.6,0.3-0.9,0.4c-0.4,0.1-0.8,0.1-1.4,0.1H249.6z M250.7,137h1.9c0.5,0,0.9,0,1.1-0.1c0.3-0.1,0.5-0.2,0.7-0.4  c0.1-0.2,0.2-0.4,0.2-0.8c0-0.3-0.1-0.5-0.2-0.8c-0.1-0.2-0.3-0.4-0.6-0.4c-0.3-0.1-0.7-0.1-1.3-0.1h-1.7V137z M250.7,141h2.1  c0.4,0,0.6,0,0.8,0c0.3,0,0.5-0.1,0.7-0.2c0.2-0.1,0.3-0.3,0.4-0.5s0.2-0.5,0.2-0.7c0-0.3-0.1-0.6-0.2-0.8s-0.4-0.4-0.7-0.5  c-0.3-0.1-0.7-0.1-1.3-0.1h-2V141z"/>
              <path d="M257.1,138.9c0-1.2,0.3-2,1-2.6c0.5-0.5,1.2-0.7,2-0.7c0.9,0,1.6,0.3,2.1,0.8s0.8,1.3,0.8,2.3c0,0.8-0.1,1.4-0.4,1.9  c-0.2,0.5-0.6,0.8-1,1.1s-1,0.4-1.5,0.4c-0.9,0-1.6-0.3-2.1-0.8S257.1,139.9,257.1,138.9z M258.2,138.9c0,0.8,0.2,1.4,0.5,1.8  c0.3,0.4,0.8,0.6,1.3,0.6c0.5,0,1-0.2,1.3-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.7c-0.3-0.4-0.8-0.6-1.3-0.6  c-0.5,0-1,0.2-1.3,0.6C258.4,137.5,258.2,138.1,258.2,138.9z"/>
              <path d="M265.1,142h-1v-8.6h1.1v3.1c0.4-0.6,1-0.8,1.7-0.8c0.4,0,0.7,0.1,1.1,0.2c0.3,0.2,0.6,0.4,0.8,0.7c0.2,0.3,0.4,0.6,0.5,1  s0.2,0.8,0.2,1.3c0,1.1-0.3,1.9-0.8,2.5s-1.2,0.9-1.9,0.9c-0.7,0-1.3-0.3-1.7-0.9V142z M265.1,138.8c0,0.7,0.1,1.3,0.3,1.6  c0.3,0.5,0.8,0.8,1.3,0.8c0.5,0,0.9-0.2,1.2-0.6c0.3-0.4,0.5-1,0.5-1.8c0-0.8-0.2-1.4-0.5-1.8c-0.3-0.4-0.7-0.6-1.2-0.6  c-0.5,0-0.9,0.2-1.2,0.6C265.3,137.5,265.1,138.1,265.1,138.8z"/>
              <path d="M270.9,136.5l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H270.9z M272.8,136.5l-0.3-1.6v-1.4h1.2v1.4l-0.3,1.6H272.8z"/>
              <rect x="200.8" y="118" fill-rule="evenodd" fill="none" width="116.9" height="27"/>
            </svg>
          </artwork>
        </section>
        <section anchor="cbor-diagnostic-notation-6">
          <name>CBOR Diagnostic Notation</name>
          <artwork><![CDATA[
200(   ; envelope
   221(   ; assertion
      [
         200(   ; envelope
            24("knows")   ; leaf
         ),
         200(   ; envelope
            24("Bob")   ; leaf
         )
      ]
   )
)
]]></artwork>
        </section>
        <section anchor="cbor-hex-6">
          <name>CBOR Hex</name>
          <artwork><![CDATA[
d8c8d8dd82d8c8d818656b6e6f7773d8c8d81863426f62
]]></artwork>
        </section>
      </section>
    </section>
    <section anchor="known-values">
      <name>Known Values</name>
      <t>This section is informative.</t>
      <t>Known values are a specific case of an envelope that defines a namespace consisting of single unsigned integers. The expectation is that the most common and widely useful predicates will be assigned in this namespace, but known values may be used in any position in an envelope.</t>
      <t>Most of the examples in this document use UTF-8 strings as predicates, but in real-world applications, the same predicate may be used many times in a document and across a body of knowledge. Since the size of an envelope is proportionate to the size of its content, a predicate made using a string like a human-readable sentence or a URL could take up a great deal of space in a typical envelope. Even emplacing the digest of a known structure takes 32 bytes. Known values provide a way to compactly represent predicates and other common values in as few as three bytes.</t>
      <t>Other CBOR tags can be used to define completely separate namespaces if desired, but the reference implementation <xref target="ENVELOPE-REFIMPL"/> and its tools <xref target="ENVELOPE-CLI"/> recognize specific known values and their human-readable names.</t>
      <t>Custom ontologies such as Web Ontology Language <xref target="OWL"/> or Friend of a Friend <xref target="FOAF"/> may someday be represented as ranges of integers in this known space, or be defined in their own namespaces.</t>
      <t>A specification for a standard minimal ontology of known values is TBD.</t>
      <t>The following table lists all the known values currently defined in the reference implementation <xref target="ENVELOPE-REFIMPL"/>. This list is currently informative, but all these known values have been used in the reference implementation for various examples and test vectors.</t>
      <t>Note that a work-in-progress specification for remote procedure calls using envelope has been assigned a namespace starting at 100.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Value</th>
            <th align="left">Name</th>
            <th align="left">Used as</th>
            <th align="left">Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">1</td>
            <td align="left">
              <tt>id</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique identifier of some kind.</td>
          </tr>
          <tr>
            <td align="left">2</td>
            <td align="left">
              <tt>isA</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-specific type identifier.</td>
          </tr>
          <tr>
            <td align="left">3</td>
            <td align="left">
              <tt>verifiedBy</tt></td>
            <td align="left">predicate</td>
            <td align="left">A signature on the digest of the subject, verifiable with the signer's public key.</td>
          </tr>
          <tr>
            <td align="left">4</td>
            <td align="left">
              <tt>note</tt></td>
            <td align="left">predicate</td>
            <td align="left">A human-readable informative note.</td>
          </tr>
          <tr>
            <td align="left">5</td>
            <td align="left">
              <tt>hasRecipient</tt></td>
            <td align="left">predicate</td>
            <td align="left">A sealed message encrypting to a specific recipient the ephemeral encryption key that was used to encrypt the subject.</td>
          </tr>
          <tr>
            <td align="left">6</td>
            <td align="left">
              <tt>sskrShare</tt></td>
            <td align="left">predicate</td>
            <td align="left">A single SSKR <xref target="SSKR"/> share of the ephemeral encryption key that was used to encrypt the subject.</td>
          </tr>
          <tr>
            <td align="left">7</td>
            <td align="left">
              <tt>controller</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique identifier of the party that controls the contents of this document.</td>
          </tr>
          <tr>
            <td align="left">8</td>
            <td align="left">
              <tt>publicKeys</tt></td>
            <td align="left">predicate</td>
            <td align="left">A "public key base" consisting of the information needed to encrypt messages to a party or verify messages signed by them.</td>
          </tr>
          <tr>
            <td align="left">9</td>
            <td align="left">
              <tt>dereferenceVia</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique Pointer such as a URL indicating from where the elided envelope subject can be recovered.</td>
          </tr>
          <tr>
            <td align="left">10</td>
            <td align="left">
              <tt>entity</tt></td>
            <td align="left">predicate</td>
            <td align="left">A document representing an entity of interest in the current context.</td>
          </tr>
          <tr>
            <td align="left">11</td>
            <td align="left">
              <tt>hasName</tt></td>
            <td align="left">predicate</td>
            <td align="left">The human-readable name of the subject.</td>
          </tr>
          <tr>
            <td align="left">12</td>
            <td align="left">
              <tt>language</tt></td>
            <td align="left">predicate</td>
            <td align="left">The ISO 639 <xref target="ISO639"/> code for the human natural language used to write the subject.</td>
          </tr>
          <tr>
            <td align="left">13</td>
            <td align="left">
              <tt>issuer</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique identifier of the document's issuing entity.</td>
          </tr>
          <tr>
            <td align="left">14</td>
            <td align="left">
              <tt>holder</tt></td>
            <td align="left">predicate</td>
            <td align="left">A domain-unique identifier of the document's holder, i.e., the entity to which the document pertains.</td>
          </tr>
          <tr>
            <td align="left">15</td>
            <td align="left">
              <tt>salt</tt></td>
            <td align="left">predicate</td>
            <td align="left">A block of random data used to deliberately perturb the digest tree for the purpose of decorrelation.</td>
          </tr>
          <tr>
            <td align="left">16</td>
            <td align="left">
              <tt>date</tt></td>
            <td align="left">predicate</td>
            <td align="left">A timestamp, e.g., the time at which a remote procedure call request was signed.</td>
          </tr>
          <tr>
            <td align="left">100</td>
            <td align="left">
              <tt>body</tt></td>
            <td align="left">predicate</td>
            <td align="left">RPC: The body of a function call. The object is the function identifier and the assertions on the object are the function parameters.</td>
          </tr>
          <tr>
            <td align="left">101</td>
            <td align="left">
              <tt>result</tt></td>
            <td align="left">predicate</td>
            <td align="left">RPC: A result of a successful function call. The object is the returned value.</td>
          </tr>
          <tr>
            <td align="left">102</td>
            <td align="left">
              <tt>error</tt></td>
            <td align="left">predicate</td>
            <td align="left">RPC: A result of an unsuccessful function call. The object is a message or other diagnostic state.</td>
          </tr>
          <tr>
            <td align="left">103</td>
            <td align="left">
              <tt>ok</tt></td>
            <td align="left">object</td>
            <td align="left">RPC: The object of a <tt>result</tt> predicate for a successful remote procedure call that has no other return value.</td>
          </tr>
          <tr>
            <td align="left">104</td>
            <td align="left">
              <tt>processing</tt></td>
            <td align="left">object</td>
            <td align="left">RPC: The object of a <tt>result</tt> predicate where a function call is accepted for processing and has not yet produced a result or error.</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="existence-proofs">
      <name>Existence Proofs</name>
      <t>This section is informative.</t>
      <t>Because each element of an envelope provides a unique digest, and because changing an element in an envelope changes the digest of all elements upwards towards its root, the structure of an envelope is comparable to a merkle tree <xref target="MERKLE"/>.</t>
      <t>In a Merkle Tree, all semantically significant information is carried by the tree's leaves (for example, the transactions in a block of Bitcoin transactions), while the internal nodes of the tree are nothing but digests computed from combinations of pairs of lower nodes, all the way up to the root of the tree (the "Merkle root".)</t>
      <t>In an envelope, every digest references some semantically significant content: it could reference the subject of the envelope, or one of the assertions in the envelope, or at the predicate or object of a given assertion. Of course, those elements are all envelopes themselves, and thus potentially the root of their own subtree.</t>
      <t>In a Merkle tree, the minimum subset of hashes necessary to confirm that a specific leaf node (the "target") must be present is called a "Merkle proof." For envelopes, an analogous proof would be a transformation of the envelope that is entirely elided but preserves the structure necessary to reveal the target.</t>
      <t>As an example, we produce an envelope representing a simple FOAF <xref target="FOAF"/> style graph:</t>
      <sourcecode type="sh"><![CDATA[
$ ALICE_FRIENDS=`envelope subject Alice |
    envelope assertion knows Bob |
    envelope assertion knows Carol |
    envelope assertion knows Dan`

$ envelope $ALICE_FRIENDS
"Alice" [
    "knows": "Bob"
    "knows": "Carol"
    "knows": "Dan"
]
]]></sourcecode>
      <t>We then elide the entire envelope, leaving only the root-level digest. This digest is a cryptographic commitment to the envelope's contents.</t>
      <sourcecode type="sh"><![CDATA[
$ COMMITMENT=`envelope elide $ALICE_FRIENDS`
$ envelope --tree $COMMITMENT
cc6fb8f6 ELIDED
]]></sourcecode>
      <t>A third party, having received this commitment, can then request proof that the envelope contains a particular assertion, called the <em>target</em>.</t>
      <sourcecode type="sh"><![CDATA[
$ REQUESTED_ASSERTION=`envelope subject assertion knows Bob`

$ envelope --tree $REQUESTED_ASSERTION
78d666eb ASSERTION
    db7dd21c pred "knows"
    13b74194 obj "Bob"
]]></sourcecode>
      <t>The holder can then produce a proof, which is an elided form of the original document that contains a minimum spanning set of digests, including the target.</t>
      <sourcecode type="sh"><![CDATA[
$ KNOWS_BOB_DIGEST=`envelope digest $REQUESTED_ASSERTION`

$ KNOWS_BOB_PROOF=`envelope proof create $ALICE_FRIENDS \
    $KNOWS_BOB_DIGEST`

$ envelope --tree $KNOWS_BOB_PROOF
cc6fb8f6 NODE
    13941b48 subj ELIDED
    10d8d5b0 ELIDED
    4012caf2 ELIDED
    78d666eb ELIDED
]]></sourcecode>
      <t>Note that the proof:</t>
      <ol spacing="normal" type="1"><li>has the same root digest as the commitment,</li>
        <li>includes the digest of the <tt>knows-Bob</tt> assertion: <tt>55560bdf</tt>,</li>
        <li>includes only the other digests necessary to calculate the digest tree from the target back to the root, without revealing any additional information about the envelope.</li>
      </ol>
      <t>Criteria 3 was met when the proof was produced. Criteria 1 and 2 are checked by the command line tool when confirming the proof:</t>
      <sourcecode type="sh"><![CDATA[
$ envelope proof confirm --silent $COMMITMENT $KNOWS_BOB_PROOF \
    $KNOWS_BOB_DIGEST && echo "Success"
Success
]]></sourcecode>
    </section>
    <section anchor="reference-implementation">
      <name>Reference Implementation</name>
      <t>This section is informative.</t>
      <t>The current reference implementation of envelope is written in Swift and is part of the Blockchain Commons Secure Components Framework <xref target="ENVELOPE-REFIMPL"/>.</t>
      <t>The envelope command line tool <xref target="ENVELOPE-CLI"/> is also written in Swift.</t>
    </section>
    <section anchor="future-proofing">
      <name>Future Proofing</name>
      <t>This section is informative.</t>
      <t>Because envelope is a specification for documents that may persist indefinitely, it is a design goal of this specification that later implementation versions are able to parse envelopes produced by earlier versions. Furthermore, later implementations should be able to compose new envelopes using older envelopes as components.</t>
      <t>The authors considered adding a version number to every envelope, but deemed this unnecessary as any code that parses later envelopes can determine what features are required from the CBOR structure alone.</t>
      <t>The general migration strategy is that the specific structure of envelopes defined in the first general release of this specification is the baseline, and later specifications may incrementally add structural features such as envelope cases, new tags, or support for new structures or algorithms, but are generally expected to maintain backward compatibility.</t>
      <t>An example of addition would be to add an additional supported method of encryption. The <tt>crypto-msg</tt> specification CDDL is a CBOR array with either three or four elements:</t>
      <sourcecode type="cddl"><![CDATA[
crypto-msg = #6.201([ ciphertext, nonce, auth, ? aad ])
ciphertext = bytes       ; encrypted using ChaCha20
aad = digest             ; Additional Authenticated Data
nonce = bytes .size 12   ; Random, generated at encryption-time
auth = bytes .size 16    ; Authentication tag created by Poly1305
]]></sourcecode>
      <t>For the sake of this example, we assume the new method to be supported has all the same fields but needs to be processed differently. In this case, the first element of the array could become an optional integer:</t>
      <sourcecode type="cddl"><![CDATA[
crypto-msg = #6.201([ ? version, ciphertext, nonce, auth, ? aad ])
version = uint           ; absent for old method, 1 for new method
]]></sourcecode>
      <t>If present, the first field specifies the later encryption method. If absent, the original encryption method is specified. For low-numbered versions, the storage cost of specifying a later version is one byte, and backward compatibility is preserved.</t>
      <section anchor="commitment-to-the-hash-algorithm">
        <name>Commitment to the Hash Algorithm</name>
        <t>For changes that are more sweeping, like supporting a different hash algorithm to produce the merkle tree digests, it would be necessary to use a different top-level CBOR tag to represent the envelope itself. Currently the envelope tag is #6.200, and the choice of digest algorithm in our reference implementation is SHA-256. If this version were officially released and a future version of Gordian Envelope was also released that supported BLAKE3, it will need to have a different tag. However, a problem for interoperability of these two distinct formats then arises in the choice of whether a particular envelope is encoded assuming SHA-256 or BLAKE3. Whenever there is a choice about two or more ways to encode particular data, this violates the determinism requirement that Gordian Envelopes are designed to uphold. In other words, an envelope encoding certain information using SHA-256 will not, in general, be structurally identical to the same information encoded in an envelope using BLAKE3. For instance, they will both have different root hashes, and simply knowing which algorithm produced each one will not help you know whether they have equivalent content. Only two envelope cases actually encode their digest in the binary stream: ELIDED and ENCRYPTED. If an envelope doesn't use either of these cases, then you could choose to decode the envelope with either algorithm, but if it does use either of these cases then the envelope will still decode, but attempting to decrypt or unelide its contents will result in mismatched digests. This is why the envelope itself needs to declare the hashing algorithm used using its top-level CBOR tag, and why the choice of which hash algorithm to commit to should be carefully considered.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>This section is informative unless noted otherwise.</t>
      <section anchor="structural-considerations">
        <name>Structural Considerations</name>
        <section anchor="cbor-considerations">
          <name>CBOR Considerations</name>
          <t>Generally, this document inherits the security considerations of CBOR <xref target="RFC8949"/>. Though CBOR has limited web usage, it has received strong usage in hardware, resulting in a mature specification.</t>
        </section>
      </section>
      <section anchor="cryptographic-considerations">
        <name>Cryptographic Considerations</name>
        <section anchor="inherited-considerations">
          <name>Inherited Considerations</name>
          <t>Generally, this document inherits the security considerations of the cryptographic constructs it uses such as IETF-ChaCha20-Poly1305 <xref target="RFC8439"/> and SHA-256 <xref target="RFC6234"/>.</t>
        </section>
        <section anchor="choice-of-cryptographic-primitives-no-set-curve">
          <name>Choice of Cryptographic Primitives (No Set Curve)</name>
          <t>Though envelope recommends the use of certain cryptographic algorithms, most are not required (with the exception of SHA-256 usage, noted below). In particular, envelope has no required curve. Different choices will obviously result in different security considerations.</t>
        </section>
      </section>
      <section anchor="validation-requirements">
        <name>Validation Requirements</name>
        <t>Unlike HTML, envelope is intended to be conservative in both what it sends <em>and</em> what it accepts. This means that receivers of envelope-based documents should carefully validate them. Any deviation from the validation requirements of this specification <bcp14>MUST</bcp14> result in the rejection of the entire envelope. Even after validation, envelope contents should be treated with due skepticism.</t>
      </section>
      <section anchor="signature-considerations">
        <name>Signature Considerations</name>
        <t>This specification allows the signing of envelopes that are partially (or even entirely) elided. There may be use cases for this, such as when multiple users are each signing partially elided envelopes that will then be united. However, it's generally a dangerous practice. Our own tools require overrides to allow it. Other developers should take care to warn users of the dangers of signing elided envelopes.</t>
      </section>
      <section anchor="hashing">
        <name>Hashing</name>
        <section anchor="choice-of-sha-256-hash-primitive">
          <name>Choice of SHA-256 Hash Primitive</name>
          <t>Envelope uses the SHA-256 digest algorithm <xref target="RFC6234"/>, which is regarded as reliable and widely supported by many implementations in both software and hardware.</t>
        </section>
        <section anchor="well-known-hashes">
          <name>Well-Known Hashes</name>
          <t>Because they are short unsigned integers, well-known values produce well-known digests. Elided envelopes may, in some cases, inadvertently reveal information by transmitting digests that may be correlated to known information. Envelopes can be salted by adding assertions that contain random data to perturb the digest tree, hence decorrelating it from any known values.</t>
        </section>
        <section anchor="digest-trees">
          <name>Digest Trees</name>
          <t>Existence proofs include the minimal set of digests that are necessary to calculate the digest tree from the target to the root, but may themselves leak information about the contents of the envelope due to the other digests that must be included in the spanning set. Designers of envelope-based formats should anticipate such attacks and use decorrelation mechanisms like salting where necessary.</t>
        </section>
        <section anchor="a-tree-not-a-list">
          <name>A Tree, Not a List</name>
          <t>Envelope makes use of a hash tree instead of a hash list to allow this sort of minimal revelation. This decision may also have advantages in scaling. However, there should be further investigation of the limitations of hash trees regarding scaling, particularly for the scaling of large, elided structures.</t>
          <t>There should also be careful consideration of the best practices needed for the creation of deeply nested envelopes, for the usage of sub-envelopes created at different times, and for other technical details related to the use of a potentially broad hash tree, as such best practices do not currently exist.</t>
        </section>
        <section anchor="salts">
          <name>Salts</name>
          <t>Specifics for the size and usage of salt are not included in this specifications. There are also no requirements for whether salts should be revealed or can be elided. Careful attention may be required for these factors to ensure that they don't accidentally introduce vulnerabilities into usage.</t>
        </section>
        <section anchor="collisions">
          <name>Collisions</name>
          <t>Hash trees tend to make it harder to create collisions than the use of a raw hash function. If attackers manage to find a collision for a hash, they can only replace one node (and its children), so the impact is limited, especially since finding collisions higher in a hash tree grows increasingly difficult because the collision must be a concatenation of multiple hashes. This should generally reduce issues with collisions: finding collisions that fit a hash tree tends to be harder than finding regular collisions. But, the issue should always be considered.</t>
        </section>
        <section anchor="leaf-node-attacks">
          <name>Leaf-Node Attacks</name>
          <t>Envelope's hash tree is proof against the leaf-node weakness of Bitcoin that can affect SPVs because its predicates are an unordered set, serialized in increasing lexicographic order by digest, with no possibility for duplication and thus fully deterministic ordering of the tree.</t>
          <t>See the leaf-node attack at <xref target="LEAF-MERKLE"/>.</t>
        </section>
        <section anchor="forgery-attacks-on-unbalanced-trees">
          <name>Forgery Attacks on Unbalanced Trees</name>
          <t>Envelopes should be proof against a known forgery attack against Bitcoin because of their different construction, in which all tree nodes contain semantically important data and duplicate assertions are not allowed.</t>
          <t>See the forgery attack here: <xref target="BLOCK-EXPLOIT"/>.</t>
        </section>
      </section>
      <section anchor="elision">
        <name>Elision</name>
        <section anchor="duplication-of-claims">
          <name>Duplication of Claims</name>
          <t>Support for elision allows for the possibility of contradictory claims where one is kept hidden at any time. So, for example, an envelope could contain contradictory predictions of election results and only reveal the one that matches the actual results. As a result, revealed material should be carefully assessed for this possibility when elided material also exists.</t>
        </section>
      </section>
      <section anchor="additional-specification-creation">
        <name>Additional Specification Creation</name>
        <t>Creators of specifications for envelope-based documents should give due consideration to security implications that are outside the scope of this specification to anticipate or avert. One example would be the number and type of assertions allowed in a particular document, and whether additional assertions (metadata) are allowed on those assertions.</t>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="cbor-tags">
        <name>CBOR Tags</name>
        <t>This section proposes a number of IANA allocated specific CBOR tags <xref target="IANA-CBOR-TAGS"/>.</t>
        <t>In the table below, tags directly referenced in this specification have "yes" in the "spec" field.</t>
        <t>The reference implementation <xref target="ENVELOPE-REFIMPL"/> uses tags not used in this specification, and these are marked "no" in the "spec" field.</t>
        <t>This document requests that IANA reserve the assigned tags listed below in the range 200-230 for use by envelope and associated specifications.</t>
        <table>
          <thead>
            <tr>
              <th align="left">data item</th>
              <th align="left">spec</th>
              <th align="left">semantics</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">200</td>
              <td align="left">yes</td>
              <td align="left">envelope</td>
            </tr>
            <tr>
              <td align="left">201</td>
              <td align="left">yes</td>
              <td align="left">crypto-message</td>
            </tr>
            <tr>
              <td align="left">202</td>
              <td align="left">no</td>
              <td align="left">common-identifier</td>
            </tr>
            <tr>
              <td align="left">203</td>
              <td align="left">yes</td>
              <td align="left">digest</td>
            </tr>
            <tr>
              <td align="left">204</td>
              <td align="left">no</td>
              <td align="left">symmetric-key</td>
            </tr>
            <tr>
              <td align="left">205</td>
              <td align="left">no</td>
              <td align="left">private-key-base</td>
            </tr>
            <tr>
              <td align="left">206</td>
              <td align="left">no</td>
              <td align="left">public-key-base</td>
            </tr>
            <tr>
              <td align="left">207</td>
              <td align="left">no</td>
              <td align="left">sealed-message</td>
            </tr>
            <tr>
              <td align="left">208-221</td>
              <td align="left">no</td>
              <td align="left">unassigned</td>
            </tr>
            <tr>
              <td align="left">221</td>
              <td align="left">yes</td>
              <td align="left">assertion</td>
            </tr>
            <tr>
              <td align="left">222</td>
              <td align="left">no</td>
              <td align="left">signature</td>
            </tr>
            <tr>
              <td align="left">223</td>
              <td align="left">yes</td>
              <td align="left">known-value</td>
            </tr>
            <tr>
              <td align="left">224</td>
              <td align="left">yes</td>
              <td align="left">wrapped-envelope</td>
            </tr>
            <tr>
              <td align="left">225-229</td>
              <td align="left">no</td>
              <td align="left">unassigned</td>
            </tr>
            <tr>
              <td align="left">230</td>
              <td align="left">no</td>
              <td align="left">agreement-public-key</td>
            </tr>
          </tbody>
        </table>
        <t>Points of contact:
    * Christopher Allen <eref target="mailto:christophera@blockchaincommons.com">christophera@blockchaincommons.com</eref>
    * Wolf McNally <eref target="mailto:wolf@wolfmcnally.com">wolf@wolfmcnally.com</eref></t>
      </section>
      <section anchor="media-type">
        <name>Media Type</name>
        <t>The proposed media type <xref target="RFC6838"/> for envelope is <tt>application/envelope+cbor</tt>.</t>
        <ul spacing="normal">
          <li>Type name: application</li>
          <li>Subtype name: envelope+cbor</li>
          <li>Required parameters: n/a</li>
          <li>Optional parameters: n/a</li>
          <li>Encoding considerations: binary</li>
          <li>Security considerations: See the previous section of this document</li>
          <li>Interoperability considerations: n/a</li>
          <li>Published specification: This document</li>
          <li>Applications that use this media type:  None yet, but it is expected that this format will be deployed in protocols and applications.</li>
          <li>
            <t>Additional information:
            </t>
            <ul spacing="normal">
              <li>Magic number(s): n/a</li>
              <li>File extension(s): .envelope</li>
              <li>Macintosh file type code(s): n/a</li>
            </ul>
          </li>
          <li>
            <t>Person &amp; email address to contact for further information:
            </t>
            <ul spacing="normal">
              <li>Christopher Allen <eref target="mailto:christophera@blockchaincommons.com">christophera@blockchaincommons.com</eref></li>
              <li>Wolf McNally <eref target="mailto:wolf@wolfmcnally.com">wolf@wolfmcnally.com</eref></li>
            </ul>
          </li>
          <li>Intended usage: COMMON</li>
          <li>Restrictions on usage: none</li>
          <li>
            <t>Author:
            </t>
            <ul spacing="normal">
              <li>Wolf McNally <eref target="mailto:wolf@wolfmcnally.com">wolf@wolfmcnally.com</eref></li>
            </ul>
          </li>
          <li>
            <t>Change controller:
            </t>
            <ul spacing="normal">
              <li>The IESG <eref target="mailto:iesg@ietf.org">iesg@ietf.org</eref></li>
            </ul>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="appendix-why-cbor">
      <name>Appendix: Why CBOR?</name>
      <t>The Concise Binary Object Representation, or CBOR, was chosen as the foundational data structure envelopes for a variety of reasons. These include:</t>
      <ol spacing="normal" type="1"><li>
          <strong>IETF Standardization.</strong> CBOR is a mature open international IETF standard <xref target="RFC8949"/>.</li>
        <li>
          <strong>IANA Registration.</strong> CBOR is further standardized by the registration of common data type tags through IANA <xref target="IANA-CBOR-TAGS"/>.</li>
        <li>
          <strong>Fully Extensible.</strong> Beyond that, CBOR is entirely extensible with any data types desired, such as our own listing of UR tags <xref target="BC-UR-TAGS"/>.</li>
        <li>
          <strong>Self-describing Descriptions.</strong> CBOR-encoded data is self-describing, so there are no requirements for pre-defined schemas nor more complex descriptions such as those found in ASN.1 <xref target="ASN-1"/>.</li>
        <li>
          <strong>Constraint Friendly.</strong> CBOR is built to be frugal with CPU and memory, so it works well in constrained environments such as on cryptographic silicon chips.</li>
        <li>
          <strong>Unambiguous Encoding.</strong> Our use of Deterministic CBOR, combined with our own specification rules, such as the sorting of Envelopes by hash, results in a singular, unambiguous encoding.</li>
        <li>
          <strong>Multiple Implementations.</strong> Implementation are available in a variety of languages <xref target="CBOR-IMPLS"/>.</li>
        <li>
          <strong>Compact Implementations.</strong> Compactness of encoding and decoding is one of CBOR's core goals; implementations are built on headers or snippets of code, and do not require any external tools.</li>
      </ol>
      <t>Also see a comparison to Protocol Buffers <xref target="UR-QA"/>, a comparison to Flatbuffers <xref target="CBOR-FLATBUFFERS"/>, and a comparison to other binary formats <xref target="CBOR-FORMAT-COMPARISON"/>.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC8949">
          <front>
            <title>Concise Binary Object Representation (CBOR)</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="December" year="2020"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
              <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049.  It does not create a new version of the format.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="94"/>
          <seriesInfo name="RFC" value="8949"/>
          <seriesInfo name="DOI" value="10.17487/RFC8949"/>
        </reference>
        <reference anchor="RFC8610">
          <front>
            <title>Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures</title>
            <author fullname="H. Birkholz" initials="H." surname="Birkholz">
              <organization/>
            </author>
            <author fullname="C. Vigano" initials="C." surname="Vigano">
              <organization/>
            </author>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <date month="June" year="2019"/>
            <abstract>
              <t>This document proposes a notational convention to express Concise Binary Object Representation (CBOR) data structures (RFC 7049).  Its main goal is to provide an easy and unambiguous way to express structures for protocol messages and data formats that use CBOR or JSON.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8610"/>
          <seriesInfo name="DOI" value="10.17487/RFC8610"/>
        </reference>
        <reference anchor="RFC8439">
          <front>
            <title>ChaCha20 and Poly1305 for IETF Protocols</title>
            <author fullname="Y. Nir" initials="Y." surname="Nir">
              <organization/>
            </author>
            <author fullname="A. Langley" initials="A." surname="Langley">
              <organization/>
            </author>
            <date month="June" year="2018"/>
            <abstract>
              <t>This document defines the ChaCha20 stream cipher as well as the use of the Poly1305 authenticator, both as stand-alone algorithms and as a "combined mode", or Authenticated Encryption with Associated Data (AEAD) algorithm.</t>
              <t>RFC 7539, the predecessor of this document, was meant to serve as a stable reference and an implementation guide.  It was a product of the Crypto Forum Research Group (CFRG).  This document merges the errata filed against RFC 7539 and adds a little text to the Security Considerations section.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8439"/>
          <seriesInfo name="DOI" value="10.17487/RFC8439"/>
        </reference>
        <reference anchor="RFC6838">
          <front>
            <title>Media Type Specifications and Registration Procedures</title>
            <author fullname="N. Freed" initials="N." surname="Freed">
              <organization/>
            </author>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <date month="January" year="2013"/>
            <abstract>
              <t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols.  This memo documents an Internet Best Current Practice.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="13"/>
          <seriesInfo name="RFC" value="6838"/>
          <seriesInfo name="DOI" value="10.17487/RFC6838"/>
        </reference>
        <reference anchor="IANA-CBOR-TAGS" target="https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml">
          <front>
            <title>IANA, Concise Binary Object Representation (CBOR) Tags</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC6234">
          <front>
            <title>US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF)</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." surname="Hansen">
              <organization/>
            </author>
            <date month="May" year="2011"/>
            <abstract>
              <t>Federal Information Processing Standard, FIPS</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6234"/>
          <seriesInfo name="DOI" value="10.17487/RFC6234"/>
        </reference>
        <reference anchor="CRYPTO-MSG" target="https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2022-001-secure-message.md">
          <front>
            <title>UR Type Definition for Secure Messages</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ENVELOPE-REFIMPL" target="https://github.com/BlockchainCommons/BCSwiftSecureComponents">
          <front>
            <title>Envelope Reference Implementation, part of the Blockchain Commons Secure Components Framework</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ENVELOPE-CLI" target="https://github.com/BlockchainCommons/envelope-cli-swift">
          <front>
            <title>Envelope Command Line Tool</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="MERKLE" target="https://en.wikipedia.org/wiki/Merkle_tree">
          <front>
            <title>Merkle Tree</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="MERMAID" target="https://mermaid-js.github.io/mermaid/#/">
          <front>
            <title>Mermaid.js</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="FOAF" target="https://en.wikipedia.org/wiki/FOAF">
          <front>
            <title>Friend of a Friend (FOAF)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="SSKR" target="https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-011-sskr.md">
          <front>
            <title>Sharded Secret Key Recovery (SSKR)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="OWL" target="https://www.w3.org/OWL/">
          <front>
            <title>Web Ontology Language (OWL)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ISO639" target="https://en.wikipedia.org/wiki/ISO_639">
          <front>
            <title>ISO 639 - Standard for representation of names for language and language groups</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="BC-UR-TAGS" target="https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-006-urtypes.md">
          <front>
            <title>Registry of Uniform Resource (UR) Types</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CBOR-IMPLS" target="http://cbor.io/impls.html">
          <front>
            <title>CBOR Implementations</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="UR-QA" target="https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-005-ur.md#qa">
          <front>
            <title>UR (Uniform Resources) Q&amp;A</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CBOR-FLATBUFFERS" target="https://stackoverflow.com/questions/47799396/flatbuffers-vs-cbor">
          <front>
            <title>Flatbuffers vs CBOR</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CBOR-FORMAT-COMPARISON" target="https://www.rfc-editor.org/rfc/rfc8949#name-comparison-of-other-binary-">
          <front>
            <title>Comparison of Other Binary Formats to CBOR's Design Objectives</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ASN-1" target="https://www.itu.int/rec/T-REC-X.680/">
          <front>
            <title>X.680 : Information technology - Abstract Syntax Notation One (ASN.1): Specification of basic notation</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="LEAF-MERKLE" target="https://bitslog.com/2018/06/09/leaf-node-weakness-in-bitcoin-merkle-tree-design/">
          <front>
            <title>Leaf-Node weakness in Bitcoin Merkle Tree Design</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="BLOCK-EXPLOIT" target="https://bitcointalk.org/?topic=102395">
          <front>
            <title>CVE-2012-2459 (block merkle calculation exploit)</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>TODO acknowledge.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAHvNB2QAA+y96XobV5Ig+p9PkZfubyzXZEK5L6pyz8iUXNSULLlNWZ7+
2vW1EomEiBIIsJEgadb2LPdZ7pPd2M6SC0BQpCRKzZ4pE8rlnDgRcWI/kZ7n
7a1n63n9yNl/dVw7Txfn9Xx5WjtH69VZtT5b1RPnSbkune+Xq5Nyvb9Xjser
+hyeVk/u702W1aI8gREmq3K69k7gX/P5pVfLA54f7FXlun67XF0+curfTvea
9aouTx45z56++n5vb3a6euTAbM069P3CD/dKuPvIeXx6Op/Be7PlonHKxcT5
qS7n3qvZSb13sVy9e7tanp0+cl7Ua/yX8wv8Z7Z46/wRL++9qy/h6gRmWKzr
1aJee08QtD2YGUb6z3K+XAC4l3Wz15yUq/V//tfZcl03j5zFcu909sj5j/Wy
cp1muQI4pw38ujzBH3/e2yvP1sfL1aM9x9tz4P9mC3jpl5HzQ/UCl0zXGBW/
LOfT1uXl6m25mP2V1vPI+W6+rN5Vx+Vs4RwsT05gifRQfVLO5o+cC3j5f+N/
BJWjannSmvJg5Dyez+uFNeHB8WrWrJenx/XKunedWSszQvm/57NpfTFbH5fz
slrN1gzC3oKYYHZeP6IXf/r+IC/iAib/7uVP+koa+HDlyZPn+koc4TOHj+H/
q2tpHuWPnB+e/fCUrjx7/OKxh6N4rx7/8YhHx/8T1sTbLsC8qGZN7Xw3W5Sr
S+fl+C91tQa2OF3VTb1Y0yKdBzjKN86r8m1jRilXb+v1I+d4vT5tHj18eHFx
MZqVi3IE6HlYNs3s7eIEBmgeVuPlylvDq+bX6Lfj9clcgx1G8SPn6PCxFyYp
XTz46d9/fPXS++Hojz2of/7JeXUJW+lJPZ0tZgTddLlyjuoKtpXzQ9005dt6
M5RvAf1nY0T8Q0M4odvDn2DJ5ao6fjieL8cPT8oG+PzhaXlar5qH42rlhX4Y
er4feA3N5p3wbKOTCc339MXrp89f/vjU++np989++PF5D3YtB36qp/WqXlS1
8+zkdF6fKES7zinsHGc5ddYgNvqcpZYJ/zyF3QbYdb5fAafibn2/JX93cHQx
m655XDNsez0Hz59tXguOhJLk+WxRO6+Wy/n7AaIFWzWfeQ3CBEJsMW3vjR+e
/vSn5097sOz/UK/ezWH2VQ2Sc9P09WJ0MXs3O60nM2ZS/NdDfvU/QSjVaoof
Hj97MjgHbOnJ6C/N5ilO+BnvL81IFjtbqosPv3pI733/8vH3/dG/X81qQCJQ
HrQC/36AT35z3fXgS/TK0dGffurPc3RcriagfoDgq3rt/Km+BGasluc17P0H
+MqWCW+6d3xQWrB3mncrtWNe/tLfJPu/1GPn5WK9nC/fXjrPy8XbM9hjzgN4
dgtsKH0uIkIDPMiYfnb0MgUh2ZsArjtww/FAHwPnAkJIhKzaMg9IgUqgoXtz
BQZyuv4Hqcst7DBMIZj+P2F6euu7A+/nDeJ5/6f6LagOoAtA8vNihlsBaNUs
z1YgNx78jPIYBOGW6W+BXn7qna3WOI0iGekTlG4DEOO9jkTbAB5Ah8oAt8cM
nm9GWh8AOv7tcX9oEPsPukhovnH+7X88/rDrT2D9sPSv/qs0q//++eNX3/38
/fdPfxrAwffzcj0+m4J8b5zzhl7YDCFYTtU73HzT+fKCAP2vs7ohvD2Ms6wo
oiJ9ODUjeueNh3izYHkJ4uqVd/Dyhx8f/wSc9WKAKiDVS7BCmKdfrtGYEW3P
9mfjrJc02tcNqFVU3GIGgNzdwl645VbTygPuXgMpkb/hn/g/tF++ws3jVXpu
bzn1lji3N6a52fB6fPTCC/og/99RmvsOWpqiAAD2dV0dL1goeM7jMeyMEgyV
o0tgtN+cF0vZtS9BCT2AUUfBN2BSnNbVbCr2Li5+XDazCgxSfnj70mbrs9Fs
sX64qquHr0ClH3gEFYuW508ff+9t0kbP63LqvVhOaueiLt8twEgAAxNQvq6W
8NfSVYLtzXCMZ+sGVkycEfpB/tBPH/rFwzlOsIAJPDWBN1sAXmkCsEpwAg81
mjehCRjm756/PPiT9/T//vj85bNXA2zy+ikwfRB6YZwUzoMx7hiHx3Kqcl6d
zRmN4GvMl7P1FlksgKzL+Tviiv8F9u+s+jbww6hI9vY8z3NKod/eHvpHb5Ty
f+OcrpbgJyznTsO0A/lbOo1xm5gfSCYfz8Cmhh0M9J07zFTOBL2q6bI6a+BZ
ZBoYvRzP5mBsI5PDnIvmZLZ28P8vYOTT1ey8rC499cpFeTnSpg1MDbYWoxDu
wfvTssKxwO9y9snJccBNOyMzd59Uw3F5DhM6i7OTMewy4LizxQy2tDOtS4Qf
GaGan03AqQKnrWwuB5RO6ZzDjqnXJPcbcCMWa+BZjQLwnEpnfDabrz3NTN58
9g4AnYHhu3aQ7i5ADfLsBCzkBt/uzHLWoFeHO94lqG0sIWbx38fL+YSXUOpF
Igqaes6SYX7pgAW7ujwFe3Xl1PMZ8LsQrSIztum8jJ7P8gwRf17C0wAKAIFT
6Sf0Ig2a+AF7ZTBZubh0aObl21V5eozoARIJhsG9WsOCATxY6Ww9YoY7mU0m
83pv7yv0XlfLCcwDmNjb+yN4tOC1GHP2omwMyRFkB3xhB3xf5+2ynNNOBrSC
Fwy4GNfO77RL74ErPbn8HWB0DsIcQVeoBGBm5XjOxsMMnWeYaEVXwDVcoSUB
mJoZWfd7pgpP8KOwqBq+XjRnK8ZMuVYcDe4Wcw9dpF1QwaqWFZj1bU7HDYYE
hAGAtRb1ChHk/K67jtHvfuf0cDOzUFPixjyiPfBE6OeCuCiFS2Bdtb0k4C+k
PezlM1It4N7jEwDugmB2gVRf45An9br0DMPhcnAl1RKYFxZCdhqoQpyE1InZ
gSPnGT/bnJ2eLgGuk7P5egbGiJIKpOtcZ7pangDDoJnSliFmj+Ho83IMrD5B
iQTUgp1BvIaBC7Un1yscveE9xMDgJMT3lsji90bOK+D+t8ewTjApz8DsJBtp
bjM9rp+ZfMYrAfqTWAJwwFxHsfNkBvpoDZceV5fgKVXOH2l058GTx38Ee2h9
vKJJVsrBbGCM9UVdGyo2I6J3i60GqS2c0hAPC/sQo8IlwqiaDB58C0hrQChw
yKmzB1iUEFJRIp1g9AX2dFPNl02bScaXIptgxzBHr5SQIe9YhNWCqE/XaCyQ
FoCdphbu55ERo2hagYI7qRH7NYpvYalSyTfFWytQObSoVQ3LF2ccDAXnL7Ae
mBeI05zVK1fogJRa1BfOHJ9GpCj84HoBJqBq+a6WhfPkPSzhvuwivSEmqNBs
AgwcI+kFycdlc4yYQZkK49dsYwPzXQDzHmuwpktkLcaM3ggIVFteAgNWHARs
zuBt2My4rXF8RLGNciW1AXVnTDgKvMCTauLhcU9whcK/I1bz06XiCtpyyFxn
KwBzAkqjEWAYYKAxUJME7qOOeJrYBhTy7WPSlyh3JGxiG1itzcU4miCXIcsp
7WJhFv+pMIvkWdvBW5DcS9mg+CwrJSDug2f4IIy/3wwCuU/bwUF7rdFybAzy
wkgSvIriDpEv47rOqiSRQiKy9+S4RpDnMzBmWD6ATQjW+ugbwtaTlvZvB/MQ
Z0ANRslyQXoS1R4ZSEB5tFtRweopO8YDMgRplC7vIpvPNjMw4hKYAVHXBo+8
RmWGYHzYIoZGPtAM6cSiWWRhCYv+bVZp5gN4QJ05jwF4/R5LhGXdLL5eCwMK
dwGxZiAOVmdzJAsL21X9F5Kuv2f1BssGFeLiC6satNNiCZue0X2xXIG5yUpt
MpuStF07p/UStUo50aZL2TSgPIi5CWnmWYKWrBl7BBRWzSNnNiWzw4gFxTeE
I1AdJKwIskugCLAXQM/Em5hn0JoFk+cr56mI0yPeX7yl1EVA9WMY4Knw/ZAu
QODBvkKjSm1RJaGnYo+pwKXSDq5lw4nOB54GTpqgP6a1Jt8Y2QC5FN4kUalk
/lMtkBA6BbitIQkM23I+PVudgnqxLG4g56SsOJ69qk+W53jN0j7fgHA3E1vP
TM44aVJ3nm6LSucB/J5hoL87Lq/ukJSBR0FrEkOyjIEVgb2Bb7OoQmoeWsZ4
lzaWmsJHn5Ge4inBNliA27ZS7x+wouvOiO+TIOhOjXTlV11wOUA8zZulJjgT
WSv6ugRlAPwjnhb7A6RRS5YJp2hIrXDp2jAGAQPGLxl6vN9nKwSgIeX1AB4a
ozUA9PjGWc2ad8pwMXr0FepREWiaI0/qCkTmrGqGFSxBTCAM2C0XLBjZniBN
dQIKlV0ZXsyqJhOhRNNQmxfMC0I9YCLwRpX3YDEIoqWpVjA7m09oY4IgZMHD
Q/ISgU4NyEbEyyErJyLZORg+F2j9EHInlnFUT1wlHhm3aFhpHwxR3bPuVpig
MvKE5YQYhW05AQiHQeD/P8OdpFj2MeYPAZmYCqQIPa5HFIVYcAij7bee4kAN
+zoyksIZb9J6Qkp3eeqxXcVLku1TryYKPpz/x4HBDGmP8WllkzFRUQef1OiX
i2NazUE4s8NwTI4+EkWZQ6Xz+gAR/OTZE20CMZF4d09m57MJGET2RmdAXywX
3gFoB7EiiXKKSn0yGFfNmLNj3Bmwe+YYOapkKHIX2R89Zg2jAgYNEIHJ9/gM
jeO1Cni1qHh0eQKuFag8ivn/iPp3k6wXmmAACEB+sE92+mT/G7HNS0zdyljg
F/OqMXVw9agWu/A6d5yDKDRRW+rouDyZrb5uVBIDcxrwkmvQQwRt2AuVl6rl
KQaTOnaFiX9cgLGOKpSv47UzePq0XhDiQR8PD8CDl85/nS1XZydsFypdLlAg
b70lW07t7x/PxvNdCbEDygSEUx4V0aX9JHge16BDGWyRLCvWQLRBQB7DKxRX
OZ9VtQMyrSkZzh+UA30llOBOw7Plol6eNZvAPJ+VbRWN0YLGwKqRLZrH1hjW
hgOuOF5OhNgG2Xy5cTAUBhAc13NSYV3bjDfK92fkEzxfLrG+gTcIFWQccTxG
qRRW1rjJm9PZqtTZ5j4SMGyEdzgzLLJEBmOZDtTHvYkxpP8B0stY1I2a7ayR
UFBPSijnjGLgGFAUNdZoVUomsQiEypqqG94zQhovn+C/DYqA9BhyXZHmNJfB
jBQh/AQTUjMwBVj7PKkruA8u3OyvcOEZTUrv44qO6vnUO0Djd3qJsFu3nQdH
B8+egFZXGlMcMwSWNo2w62kND4NVRoPMxCYR55mLRmBJLseEMFeGOwyjfmOd
7WGwhdyvNPYQvu/qyyXG4zDAQTcoBCQBTJi1T2PwVkCHWIiv5h5QBp4dj5v/
aYeBTLANUL0675BO6Zi/vvNYJboG2cht8rbr1OtKMY92si+dx28XS3ScaDfC
3l6h0nCHtbzlaIsLbA1UykCWFTdbi3PzTqwXTAyvyT2msBnbkeX8LaL++KTh
pxrgLXBQLPedXb4TDPGdgE+yWtjvNGfKaTWEalTIc8q0UrhB4v7XGTiiZyde
ucZ0GXplMyw5WndiD9XxEuQXR1vA/JF/kvgldTpDNxqojXKIDXUCpEGRALyB
DimllzhYgWIUy53Arf/h56NX4MTTX+fFS/r909N/+/nZT0+f4O+jw8fPn+sf
e/LE0eHLn58/Mb/Mmwcvf/jh6Ysn/DJcdVqX9vZ/ePzv+8xN+y9/fPXs5YvH
z/c5GoEBWBUaxXVxiJhCysBqtIWavQkambMxG1PfHfz4//2/Qez87W//z0/f
H4RBUPzjH/KPPMhi+AdalMK76APwP9Gv3AMBXJccPga+r8rT2RpEikvRouPl
xQKtLBSov/sPxMyfHzl/GFenQfyvcgEX3LqocNa6SDjrX+m9zEgcuDQwjcZm
63oH0214H/97698K79ZFZAvAf9PKKZ6U74DFJKyxbsW41oajHu3tjS/X9d4j
5+eGyYJSZ7G88CoQZcsTzFyBSG5qtjyby8VycXlCImZ/Wa3r9T5gWeJSMMjj
hbZTTMwYATBBQfLG4ArH6DAqs25AHqPJrl6FIWcnoHBgwFcUeKG6Ag6V41bn
V8vOJpNUDIoSyQlSeO8rI3I4p9zOvSrc1ex+z3DxUtjDrGeyfYhESeZJrg8X
ZsUhCLGNCjVQ8Kgy5VCi72aoiUHYgkcOzhMHf3G0uSneoLDBjCdURXBkA1iV
Zab6BEvvvoGN4+GPf/wDhlyyrwee2oT0Tulc1PO5J95zbQxMBQmRCPmgcWh7
jOvWG5N+UAyng7+wSXFZ9BJMSDUQmMw8rtvc2GghIYhmY+fV8tR5jv7U3l6f
c8q3bwlakCkr0sFY7CFSvUaHsyoblKnfA3sIj6NsxYuc7FwsQdLO5hNQXsDm
v3PeYHL6Df54Bwy+8M7L+VlN/9a+Kv+L/MM3wBkXy87Arv0sLV09DfJyUoPf
tqr3hcrMj64zG9UjCYfpSLUEM+0HVVBXYwHU8wztF/bVkHlJ2LEaF2jaAwCW
MbZZzfRgtGf0BpuAULiUOMDpmTJrKtiQbMDM2vUx7NGXbcJMagWXDp4vJRiM
W91CP8ZuAWbStC06UF4dY85v6HH0pXEz4yMkWHDzvJHAHCMZnQ1xK2GfmCeV
LKE3dDzzDehNmeVihZpiomuTrRnr34AaEmKmER+10U/hWXxwjCkqGUgPbCbr
j4jhUb1gGvSNDi6+0WbvGw4wvgEk/vOf/3SqyWS+pyf/1vkqHYW+/4ALdnUB
IofY977Z2+teg1f4YWRyh8sqLDaXK5p51b85FML/QJLIzy7e5LJeNUAAQNMe
PiCK/yKBiANZN976ysFyE3pARC9sc9mFjLVZw7KOGK2FfQkqSxoAHlp5lN2B
h0Wu0qopsYqSkoUFe+iIutjFcJ0lppSAj0bxKBkFLha0c0yaxiPx+mxdn6A+
eyWeyOq87sg+2rfk0E9qhnTVyKwt8EU/kFxkQahiPVhjzNeBf5UtYmdTZ+yM
cHSVRB4wOMEo6Q1BoNKogAIRhTKD5I/pFaI9e55ki72lENPK+fnV915OeYbF
W7ZDJUKPIVt7ryFiOSFPgmMBblXToAYc11WJxsXpspFn0YcTEFu4QKF/NgVN
MJM6DYTPWp5O452MZ2/PsPZ8bw+FHWwnXIiLEQ6r0MYkfTgaw1HZlpouqYoG
DCdV9PJmOls16xflCZXxyFZUwYk3jIY3EvGXnApbApxU4bhyBy32WvnNDmUe
IRAXyzP09hEI5hynXq2WVCNwOi8rymexE0NRbAPMjIsPNH5HznfwAFPY4j0k
nTAYo4MMjrOFsLXBmixWoQlLRS8R6yRwdZhy1pL3YKzR86SyUE4SRMIKZ2Iv
AgXmmCudSXJD4AVPemqICE9xLm21Ki85UTzDsASShWtZvxEVKZaz2jRkB9iG
mNpHs/XGXWRLVJKGLE3jB2ThaMn1lfMnlI/Oa5KPXSllmwhtYYU1JAq6hXO2
kKoT2V6MElrSacmGFZlSNJ7sx5HMLLsTaThdkSW2ZmFHNSwmIcXKX+8HjEAZ
QWllmkiPGv5mYmqZzYmSE8qI6aFp8ooKT2VqIProLRgsbyTkMvnu8g3Hj3Qh
0+/BvUKjcbZWdTdcMrTGaqT6VMazZwGnbLW26WKrJiZPGD04Axxa5DGx6TZx
Fi0jrEUb2akblLjRfhLKXdhx6dpO5vF+eWwCkqQgHjx++viJpNdEnJsaMHGz
YFsjK/wmuCGTUGfLDAR6Z37dOI+NYGnDI5PCnLBV6vlE8thgGyl11vZO0Oan
cfXupKtnKwqW6cqbjqHHxV+NY51paBslCuZvxePyTpq3TCbkyzfm4htXqso2
TPS3v3UPooBmPmsE+onxbgDy/d2O0+zDoOZMjvgjF6Ql6nItSaQ5qZ62f0wR
AsanaOs2LsVz3j84LuH/hz4N/ONyfhlEfkKQ4HE2TPZQVShWWdJeMAEOND7o
EBQ6Zb+gicPGDufexG1kjNk4tKj4piyBwx9Yiqds8Qea98IaxmKi8Zgn3/SY
0rVH0EWMikuFk41Bo9f7w+MDmycMuMpUDR78h4SueJoF+K01z+Y6/8uBhTh/
BrPVPAIvssfJ//f73u5UiN/Dd79VsNn/9/vtO2ePYNDzjBrwWZwgpBd/Amou
T1znLUUpyRVaWwlRD1OndPqv+3oqE7fzWWgPWDU8Cm2WLGNDuy/I2HtsSzGW
42geSCmYEmu8l7pSjYcuJWKs3M5TKiVVkel2qASzlybs6eLE83q67k3cEgM8
jSKEtf+F15iT5azc0ISqAgs3hjwG+9VSq4oYAEQUEtplMhsO4QNhu+hBAzyS
pB5fBg5r/btDvSgccFs6PgtVx3etActbBXhVNQuhy9g1romFKI1Mjo3tCFtF
N6h5VcJj2baZya2xzRr1nHKUlH26RrYFGwfVz8IaXeJKZF4prhFRwCaYRJfU
hF9bHrcLC8dIIbOODbzxej0Z9E0voKeWD+xqOcmUCVlzPb3W3Mg7iv+pWNhU
W6py4c6C9D9NKRzNZ4WDm6pekJ09UIAlWlhHTGRQQojGtipnojxffz6S3uyj
YVZGldrt7b1YrsXe6KOpecPKgR1YIh/9Bw8sYLiGC0WxzMBmENnm4MHY+7xd
WlE2lkkv+h7jgPAKntvh6pNWiLITfDGrd5m7zhY80UP4oSXyuObyTQnrcxyr
HwWxtBrFcTiSZzs+9k6meMO3zn90Qxmu8z+dHgrxMHb3GsY8LBo9tMMbCl2W
PfkLBzWs86GdXb4hWmRFKVZ12z8yFVwYmkPxa+jnotUr3t9apREpiA7Pz3U1
J9vbOlsqxWFUPcGpVRtlvbiM2M7xgy4SrXU/1hjqqZ8uAW07Wu3rgVrBRVtS
bRaJYuxYgTG7hpU25aO9vWDUjhi0PHwu8VY+TRceV9IaJKz2wqsGEke9O4qN
YsNPgluwbPT8niE9D6UvgHHTfwqGUD/3Os/bt5hSVFt4pkF9wgoMy3Q7OQpj
px5zyaiSQj2yWV5iY3w9Cv26yurX6Q4RFuxl9gL2Lbe/xMR0g1n5ar1cofR7
as3K0XkrcN8BQywTqtKiPI/JBanRZwsA0qGi5m2GBJUM0GBUv6rcMNyHsg0a
FaM+p2S09VAnrt125HAEfWIIoYZhVC01xSLQAyOHXeGnodC2MoYe0Lq+eaNG
VlZRB3wK8GhsgHnitYweGI+CzSNlzZdrqXHoQ4z/wqjDROt7E+S3dQTKMCw+
UGP//e9vHDrzs7bPGWt3Etl5YQ4pInQqZ9RwDsfEeIVjD8yJPDlDZ0V8K64f
5Do30LAkKpZy7sZWVsIZKgtGwSw7IaJNBH75Ee1gMQ4f4EFUO5DAPM3QbBrK
9tw5COe82T+sQbjsgwuGplb75Bf3EPkGIXyTJnGeJukB/L/v36icnsq2VtKF
YI5dCHRqss0XDRdoyYZj/MqS/sWpq+Ols2/Pse/83fntt4njrRzvFH6DzYsj
eHKAFX5o497B4f/u/Mrx+4t3ztd/wyoO4I9/CZx/fL0XTyI/mpRVUdeTNEqy
aJoGhV8XVRwUwbiGf9R+VGbjqAqDuhiPo0mYlVVQJkmRBXU6Ziz/3A+Bt5a9
Xi7ntvd/8PzZP/7hop+uCuat3Sj1YIgKpkPJyBIDVY4iNECuy9aUXzctu072
BhlCIL3W1bEgnSzl8VJFORDDOucmUwjhAXH6lgznecf1b7eEtaEQ5KZN1NkX
wrLDYcptO6buRyw5Cid3+R+STyFKcHBu2NTcEEHVSsNGs+xNO9a3aY9awdJ2
HBL7jeDCJjNVIaSPTNNGxJGjb96oo0czDPP8Rnee5E++9yPZnNu2HTzd2Xn8
6i3uuUkRRdPKT4skCeqyTqsoHqdpVAdVGk+qvE7D8bSKoyqYxBGyTjgZ10lW
RlU8zuMoKT7onrNx//E3nqcC5ZroG/fg7WCxH2feqMa6QWcJmzVW2EX8o7Zq
NnplXE+XKx0F1m4tD6S5mErCVLHxD48PdLx5gU/Smxy81h4EztcJtUpJBvY4
GIpSy0CWuSBlG91YIE49nZc8H6WuZlPO1EyWFIAgAo86m/jZ1OKzdmYUC3jw
CmVmdHoIucLVp7Zna+tAJWVGsLxBY1nvzz89/fdv9Ql9Ez56V1++2S7Vf23l
1fW8wH2wsH+BYfvPfAD5PxqNLtCeqlXOUrORCHE6KlUygxkuwjDJo0+vuuyQ
5uY9Y8c3d90w3VS6kuYST2gHKG+F7+hI0K5ctwvKecQPS4NrsY8K69wV7jFh
1mtaPO1Q7KCb0vfl2uVEtsssD1gBDjznKantbcFEYL1fpIDAgKSKBzgqOcfy
dIqXDQdpW3aR6j4ggP/971YMzDdX23U4XmA9D/zQfm0xUlHxvpn1i94mU6yf
a+rTkmSnCRZ2tL2Omhrz6Ojn7/7P04NXlgjWbPR4Pqvq/ZYUtvnI+Rd5dy+I
ijgYx3kGenpSj6s6D7NxWlfRNE4nRR4WUV5Wkyqro3FaBrE/GUepn4aTIgmK
ySSc7sEUj4+Onv6EVbH/6Q/AYgI6+2hbNPvO/nfL8TbYrPH2snySpmk9zqdx
5RdZVvpxmJQASwkMXgZpEcVlOq6KrEqnfhWV47KewvZIgirIgrgM2/AFu8F3
UK6W890gDPZiPwircgooScfTqEjDJIjH1XRSTfPJJAOYkiCLEpC9WVjlCaA2
AXxOw7qGi2lZBG0Iw90gfDq5KFeT3UAM99KkioC20dRP0iAJytQvgjqLABqQ
JeO4BEjLIANUl0nph+W0mgR+nKT+OMWlBRnz7y/6AGNLtDfq+LuKq3ZsWixL
NNtbM6+yi631mnWWEytqZfODZty+gXD128H7vBS+2bOR/C8K7j3ZY85/0IhC
mUfM3J1LzE+di0LCvT/vbSaingy4KsEtmJVgdifAbn42TiZVnQR+MimCCDhq
nIdTPyrCCeqIcJpOYj+tc9grcZaKsW1yJN0iMe3FdY70i4LuxKCp6onFdDk/
PS7HNWVj8KwJEf1Nb5WYVae2CvMS3ZTvqNkPHV/TJ1S6nEKzkKiv5byWKtPd
qhcEBMG5mpZTcapozlLVzbrktgIMuNrMOnKIsW1qW6KzN1RSz6kyqgEQEU3u
Vl+xe9Rta4CSzouXT7gZqxLBtN+V6KY7ChojH3Rnrck4A/EbVBSbV1yl75bA
DUEYUsC9xX5KElx7xLoop1meRzyi4l28oyT0tYcMonEGZkvMQ9K2IS59tUQu
lHP16BOT04znKbCvw4ytCt0Lo01Ay122jEmKyWvO+rrZlZeEnDfWkTdWETcW
4DdWo0oDED51FLUfXBfzb8gmbMTW0e1RjDhaS3sQbTUr71dZmCdU1zgQ8hAS
caTopoT69caU+vXGpPr1xrQyDvb14mUDkbIbq52Ppto25pev6d5szkH3fWR5
Vg/VToLoFO1mJwA7JbCCvSAV3HXES/GWt+bJMCD7CR3KzyNB8mJ5YeFYChNt
RHdpuRvFu2LoOkEvE3JVo26PeWVxVOYgY6ZxEIyDOA7CIJmOx5OorupoUieh
n+aBX+dlNJnkYVQEeVgHYZT7YZpl40lmKHVdlP6610XqvkB6XSoP0PfGy1Lb
v1Nmcc19P1CJcUVsQzd8sA0LUylhehjpswS2TSFCQj9vxRGWdiBie+zAri+X
ENvF8v2CCT/+9PTJs4PHr54OhRPYctvibeq395TNl4CiAlUc55OwDMbV2C9T
0FBFGmTVZFL4oLTCIkjScQnaazwOyxy8iGkyLpFNX26Ma1wROXipghpsWRZV
lI3z2i+qCvi9jOBSleR1PJ2k43AaxJN4HEx8UC1JCQZCOknKYBJNg7ZLfrsh
jVuyxHaykdulO1ZCwSrF0ackh3j0pqS8MR1ux+rEPfHhjM6bYunXG6PpFg2+
2wi3faQtYB0sP5RerZf90+TWoQp2CNURgcaSjjo5gWe6TrmJsek7NtwJVm8k
bFuzPGuoFwpn5uRMkI4RcHWq6uFkp33lyTX1f2VLpKFTaHa4vFUCbIrc5Pyq
c1rOVnTmHvuOGT3WvBEuVUKL41T6ff+RiAC/fT1Q1wO6PhqN2vdfqPsv9v7M
hHhM+w6bTOi8jkrqn8xwWWNlGd9eyIyF4DFZdHIqGQ8bnLZ6AkhF2/RsTkev
MFuq+7kgIbAFMooTFRZqHZkUOnMXWZXblQrLVnUdHaKUuirpT9k6H08cKa1h
pHDXTLTAdiUV967E5l5I4ylGIsZ40qx9gm9/XNoV7PudSa2jZ8IbxBocF1ks
TVjErvZD3GD3k+UJHlwF4OwgbYdAhHPqzSwHzER2Lk9FTuKCH5lGznrmXvRX
xbhoxGdyVH5Wvl2VJ40VcsTVIj5wN05ooWgC6BOO+9dubCGJfLxPw1M1gC4A
RGcKax+0jA9GpkY0HKll7UUj6yB2PDJo30tGsjfE1FS1nLQkOXAwW0h2a78X
fHX3DfB2b3lS61zZ2en12mqAcXwGdz0wDCclcQ/y/My0OG1UtaowobJira5f
XC1slZJqXFNXC0512q1zT4QbYJXYApSrW8qFNjWpSVD3BITF/dyKV32iQbjj
PkJ6VYT0l1oawDVLQ1arFb4jUUwSXlzJIt8ocv72N/mM0T/+Aej+Q7ni77mh
EPt2vzl/u/+vf4D/Or+dzBfNt/vyQRbrEzqh7/sP8Tl+5NFv89ni3dCDQVEU
D+nuPjWOA/p+ux+Mwn381Eb942o5nc1hStjUl8D2s8n6+Nv9JCpG+elv+w7o
XVAccCGGN/DC+ay++G7527f7vuM79JhD9wiMR3TU99t91TRg/1/3/nBaAivD
FPNv9xegQPeRaZfv4KGvfPo/dcGTqYNRXBT5vjP5dv+HLBsVbpAVo2iejxIv
hHkq9cMNk1HqpdEodQGKwMtjAMU5AA51k9ANYv6TRCP8cZzsPwRYsC+7A7CH
yb5zyX8QMg8bDH+7j7piOZnst6AVqOIcVmrQERe4ZBzydDm/fIs+H70znpcV
oPkUP60BVAsSf5S7cTZKnCCBAQASh68lKVxrwQQQjyICC5/fGbAgNFAVDNEN
EJ6ngM4AUBnPM8TpKK/krws4j7wwHcVulI5yL0pGoeNUARIBb0ch0AV/xPT4
MZDp06A8C5BnwswJch9/RQFin69GaQfnmT+KCS544ROhPMxixHkA+AMmT71o
lFTyF1m88AKA0Y19wH4AzIw4j+G33M7oB6wxxh/HcOGTYD1KAHw3z4AnohQQ
7sJrucNXixSutqCKkoDAwuc/LdZhLxLWXcG6q7DuKqxnrsF6zrcz+hNFIIMQ
5+ko+EQ4x/YtQZoiptMYfwOXAwH4epbA9Q7aQVgyt+NLn1LEhFE2SlHEuCJi
XCViXC1iXEvEuErEuCxi3E8vYsI8FRETFr4WMWHRFetaxMALn5TZQwDwsxcx
YZxqGROiJhUhA5bqJilDr3xSzEd+sVXMgP1ixEykxEzMf8C2cRnvn0jMxARB
mBCuc/wd+UgDvh7FPTED9guLGXrpE2E+iwGD8bxAIR2D2ah+wDYArAZ+CCiP
gWcA7xmiPYN/0/2IKIa/4ggXCL8+saSJ40QkTQw4V5ImTuJNkgZe+KT8Hkf+
5y9pYj/Rkib2Cy1pYoB4g6ShVz4t5tN8u0GDGlZhPhmJiMnhNmE+4RfApPlU
mCf1Tq5clGb0uyCThq4XUd+kyZTThC/dFPeIyCAAFLroN84DDwRd5YMUQNzB
bxftQR/lR+MDqnxEJt2NKrzqw6/cw+fhKvyN4KnY43fxb1b5OCI+4fGVCP6X
Ai3kEv4voUd4gBhv5HIhoncC2E3wUCNP4sUMB2lk5ET+5jRX5MqgrlyFufgK
riUS2PCdtBLIBFZaq6whlesF/tUrLVxeKc4Ranygc4vg8O+UMBfMPXw9wMkF
ZpwqFSTkZjGEtYoB9niogN4NG1lNJH8BXprfl1kJbqFVILQKhW4Rr5qejeV+
IVTL6DleBUBKECcNYywSehNuZLzINfcKgiEW7BC2gDME3bg6nAS0SyNLiTye
h1YIF7yAUQ1/kcjJAfJe4bL9HuDuTdg3VBz51w6rhvRwfo5TCdYAjEAYEJcV
VExjYZOAMEzITC3uIXaKLJbKW5ya8JvnHgmOYxj1dRLR2tMWJwSC/0hwlQi+
M8FnKNyBeyqiN23OQh5KhCPxOr6FEBCFYFEhzh/x/Odg0h3C8rsIARchJZQc
I7iAQXo4IsgQ1YBMQn1Ay84rmk2oHMheVrwcC7RZZSgfC0+DBACyWitCDgKM
yL6HvwXNAwpD0SXFJdBSA0IYESwjJoiY9wmm4jWC/1eH1gJUD4XTFYSRSJ2U
eFpxY+7yqmj/mR3qMWS02Qi7Ae32QOirJEvsydVGSRNPXjJbsVBUcEliHQl4
AU6rIe2RI0V2zkfhnElZCCqVQA0E/ICvW5spEYYItfBCQnopKCcmP2NFSdvI
M1gRAREL66Sy6dIDsPQQzpxUYAYTImSuAZKQjpfifBSf41pprgBZDa//tW1u
wa4UtX8drQ8+bmZ0D6jipI2zCNRy5BbZqBD+PWeKhrIsktWy8kxkc+gqTYV0
D4RTSOs0jISMdmlAKI3cwOYhvQsDmQMArEQBqMmAZ+ll4QPUQjR6V7iojdxV
TufRIa0LMBwFsHXdIhzFMrnaPjFvK2BCoZsrzHaL7MzcEWvdohn6SMBC+W8g
7LBzFOLOLZJRgowYHgNE58LTliLNRBUUTVuRhoPCJprTqySmlV7UKhz/Msgh
gUxbRkjSUogklqqO9s4VukD+Af4R+O6C0JFzwapK5gxNoAhPNgZJMwQU1EMw
0rjGvxVzglgjkRcywKToRKDlcBEUMtEoEplH10BwMjkKEI+BSIUcGVcUKwHf
sEBjIUwjaXXPkiI69mJLNoaKXZCvKyOtc2Er2jskM4UIzPMI/RHgAbFQuAYh
yKkhmMEUyDxGY9q3KIOciJsgVGSLhVypLH6D4AQADnBY4CKfAloY5kLT2DWT
9WiE8TJmOpQEWkEGoksy1yh/j41I3gKxYn+wCJB+jWiZQGkbWlLq8huhkCkj
vZYI4AUtUmxV2YJoJdH4XYYW3am1PoKJOjsAIQai7JCWgoiNIhRxW0SARb/r
igJeVSGiIBFRUACN0d0pfKBxAn94Ww2otgOEDuPXroBJIkFD3NYBEfiC7Brl
u7tGYbxd/ueU8wpwW2i6oIQPef2yM9kyov9WtASxXSPcVMYKYF2hLAO4Fymc
i8yPhaJFV+bntPWBawKR+ImS+O2NTwbVQRQUFHSOMIwiSwhxR5nl/NVxcFP5
anEbZH8uBI8sggdC7mhHyZ813f1o6B0ItSOW+wIPRrgEsp7UT2kFyW2alE3L
lOwakkSiAVOy2dWEBGhFgDHu82ETcpMBSWLyg5uQIAkz4hm8b2ANrN99YUjx
iywbxfO7YFEiPDnBg/kg3CLmt8BJ8g69kiDNUBzaViXd6EqUXCRKkMbXSQMn
u5iVYZJ+2XZlCA7JXTQsMVWhLEuCcdC0DMHd/7JsyxBDph/KuKRwUs+8/ODG
pXa8e+blRuMS0aCsS0KJNi8ph7XZvhTh4+1uYYp9GcaFNjBxDmVh0nyDJqYw
3xdlY24VB7dvZG4QC5utTKCGqyD1tZ1pCYi+oRnG8a1amsiUn6GliapTWZqo
bQvXWo62NGVxG5TBx7c0ER62NBnOIUsziuLPyNIEaLWliWu6y5ZmFBba0lSU
0HAPWpooTe6SpYnwKEvT/BY4taWJq7qOpRmF0a1bmjH894u2NGPMp95BSxNT
1crSJBgHLc0Y6fZFWZpxENxbmj6hQVmahBJtaVINwwewNGM/15YmzqEsTZpv
0NIU5vuiLM2t4uAOWJpADbEuRUAYqDdZmjG2er1FSxNLOT5DSxNLV5SlGRe+
tjRpOdrSlMVtUAYf39JEeNjSZDiHLM24iD4jSxOg1ZYmVRfdYUszznNtaSpK
aLgHLc24SO6UpYnwKEvT/BY4taUZ58m1LM04D2/J0rxGlRwo9VhVyRUFYDQM
As2Lgcs6H0v548qzarfkBiycmFd4houpxE7AW5XgNGDZRdoHC3ZD1m0BGwhk
bkphEz8RiLoLmePFRqWhwLiAy1Q3RCFl4L2Q4EmkboiME5QniUe1zwwFFRuR
ZYOsi+5xqC6ntLmQeUP6C+Yxsw/KYJwSVZcIRRG1XjSS+iEx8dA4oqEiqTKR
G6HciOVGom4EciOEG1Q9JzfEygrwsrINhRhyCwtCqRqpkQuJXMjVk0pIY8Vo
yOYAWzMoL4COgVKU9HzIuEZ0slkXIkqZqAWbFPQ/QifimhBP+iCkp0lKxfQ6
Lpe8C6rvIoEgpPSElAkaKB4LECJMTODknjAHgsw1YakyOD1hJF33Z6+7EiuI
FIbcIJySLu1hupKnLZolXDhVyQRMebGuI6qCi+R6RuQXIEkZsGFGCs2jKkdW
ocJQvGhBBkkY5D/CUcMoRA4nFFLaPyWOFixXgn2XyRK7RJaG0YlbgNBayZaD
eYm4jahnVyhftfcrFrASqzShODTCS1jx2t/y+LeitbuhCF3FrYJbuR65ir2F
7eV64qr9IDgXWwUPCdEGwnlJkJOWc2m3VYEYBwUpU7UpZbO6gagt3sOys/EJ
V7DnMvaUgkvIThIZ0QRk+wAVWIhUIlzI6BSquUw1eA/+HxsrESn5QCwqVvKR
KHnhFZd5JRQDILYxAKoPZCsAQN4Ai1kwNAtXSdy2SrjNgmKlSOMYEeOjG+hp
L1AV2oaiwmNPTIxI/peKpCAuE62oHQlVJirKMpQbqRhHAW9jJf4jIpb2ZEWz
IoujF53LkyTguPDUsltyy7xNhNxcbhySCk887echwUV+2CbtQGCja9QGSm7R
AsSyynmri+8VkYYgSapN84w3Nm0bquEV2EOx7ch+OIjxBFroI4DwM6afuWuI
AkZDTNsGi+QruxRX/F7LfqSFWSXFRAWreEcFBYho4uDlYsOxf5ta0jQhsSEM
kIgNl2zwao8EyJhcWAVvx2ZLSD752Xlw7CXiozHfJMI3mZRZq9LvXJRzIJzA
SjrQQhD/nXq8dQuPvQbltiLIkdROx8LTOesVJnwm/yB5t2Fdqiw58ySMMFdK
VyDNLe5B3hCLma0YCdiw8WuHOUISa1mbc5W4IipHnimPDrk8OpZ/ZhIxEhwp
Fz1lDldmUaKDA6HidPUG8cshUqNLIBKGQLl8bq1SIFQclUo4MXNljS6HAdpe
gvHPDDU28JhUess/o80SJVTUiJVEmXOwY46vw+45jkcRMhfoojmrPz5iYFGD
hL4oNkWRWKRJ0ZEmuezWXKSJ2j9s/YcK0xkboGRtBv0adVLWIOgT0ks+Ojrw
E3d6yvW/gvIuLYp7SnwoSrCeJUoUJH6JEsUgHTKWZukVQdJKI2S3YCmbvEan
XBE0rVQ0ZofgaSfcc1UQVaJAvTBqs0vwNPMFf7GrEAUaK6X8OSiD6DYjp0cy
LBbLmRm65OKtBeqls3Hk3JGsLtJhmG3bpqsko95SEl7KoJrUcXtPAi5zXxON
yaCJoXFbeCYjEzcmBEe2VkuVifZSLpHyl6zUjDkGFCv1oZg2VGosFDWWCetG
SpmYzSpsR5EcOxzkWiEkEUKJXM+tsx/qNBCZe9tO/ij5pLSiOm4UK5uuFddX
8TMKRGuZEIlMyFUYMxHchbKROB46LBkOMpHQbqbkc+wafuowWu6z3f4ZH5kB
6GGzykLiTaHBT3xiRoMXuAbSDi0KNizvfZhP48NQVT77MEUg7owU6CsfJqfq
qjvuwwiQ6MMYeDusFlPHjTDAVBzv+nCOzlo6yjCCnJEYwBseSVm4BVfzc/jf
Ib7aNfLQBgmDjDSLkI+CkxxLomiFcFxOYOLmDbuuBOu3JhCRKZGNhkU9J1RM
tkftVfZoJAiqXAuyszw1gOiDRORmYuQmq8DQ7F1RQFIKwE4aBvbxoDEsEJEm
a8VWCGbZwBp0skxwoCsUCmW0NKKTZJWFyXB5EjXSm4zxgVI+FbdPzm7qM8C5
0pUFZUPBig3kTqJUp6xP9gOpiyOBMHUNqB06sjliuCKyd4oQKujotchtZba0
FihcNijFzLSehLmVsWaZCaHbKdxQOVq2c7RSEOGtpEfEloGivpJ4gbBhcIhr
QlsOm4mFoU/JkVwFxtzAM8mRUMpRItmfschCu2wlFS8+1Fk3k6MNRFRRFF3t
1py4KTBmovLfVUY3xC2WvybQukYgZl4scqSjkGMOwTkwB/gmOf4T/4DIO07Q
VTnEdzoJGF1TXlyntVgSjaxj8mG7JUAALFRw+VCw/z7pGJXkidJWXC/84HFC
FIaY1j0EAUmSrqsaWeln6tS2doTOvaBS/KEiIhTkrkw0IpeXKPFwDKO8jrvJ
V/TXcjdO76Jh/zwMfDeO7+36u2nXY3Qds8vk8xfYWJDdf2anLp8F1BEkm3ej
LsoCt9tYKCuRfgsdAsVrjSmZIcurEbPTVQQWbhN5SK0BiMAB/TdUMj2yRHih
RLhqjEAP9A182lAqxkCWnDAwZ/CU7RN5gZiSIesnxUcK1x4TnSS+JHBYmyUS
HshcTstGlr6KxezAVEdsVTAELqeWQu67kXL0ZKSKzISkmTI1eEWhkJJQeITU
yZCCYB0LoUBHhVxaQhnCG9mAqWLaQhCRsAnOC3clGqJ3hT6eOugJJUcartw1
IHb5LYypWOAcSYABM7Ajg3kEIyWgqqiEg6xM1Fjw5zVKYHwFl82vUn1VMafc
NfyQ251ZpDwBxwg+ifiOEiRc8Rm7y7AmR60juaPesgYP9pqGtEuK+PocFwvH
xcMcFw9wXIxRVrghyXxfl7WyQmOT1TPueCbIDnRJoloYyi5wb4T1KFSo7etY
iJyzJmnsTEo6pJa6UlX4vjJC3lZO+VbVlHVVk64t26acuEJa8vG2jM5FYuHf
wi7MlP0YH4QxVkjFKAPxZyGJQo1qKqyTO6kIL9XmJ1XLE29bxYizxrrn+rqc
vCPMGhURkLUNWkzRhgzCkLetwHQNvMRhWAsbq/4tdqAg1oqXM+5W7amnQiQx
sYDKSnDIZ8C62mhbZQbhRxqU0DVQ9awFXFaSzYV5qawr5t3DqQ+SCof0HGmq
kFzhq58P+/sWm765KR4NxOIMFX3AOlWsrAV/B5Mw6OBgBGfusdeMYxFnwPvo
pSbFcYh7l+pTeOlq9ymSoZzJpb2W25b9FBh4rkbqqTJs/YcAGhHPkMH13rMJ
DoEumWcXwtF10m14n8dK5X6q73d1C4ZMUmCuuYn+CVvEYvEXykuWJI0Ifu5T
5amA2eDWVCEzzlOoFI3mFZb9HiefpaKHnN1ApufYwlDoLBFLQlekcPgytMOX
hjg+ypejkAoKExAAEQZSBmtZ2YpR9MqvPG2hwhAmxKZ30xEiN0bk4owKzz0C
5JiT8a88SvDfNEuG+CHEAUQaVWJMUD+lWz1hQEZAxG2azAw99YxP7yCI8DmS
yxEF7q5+Xu91HfNIU+mwyRGVnZsNhgOBlJuUsYY+NojDSBb3BzMmhEQXg8pY
dGxYkKWgAt+WpRcKrbt98JSja4ftUlcZluZ6KCZKzt5zK2RBVrDL4Qc7ohtb
SQIOEsYSKFTqPBdnjEOCxirO5FrgmmMVqUAWygyFtlxTi58zcrh9gVfEKd2n
AmpXpexVv0cbe5g2AI0t9hH9y5bMKn9PUU2VTGGrTLu+tgTPlO+vHWpLtLdu
ZBLF5uV6JkSSi8dJ+NFHwiRCwZFPS0iZChrCvjoGRdkTnEFVHcSWmcr09HSI
VYSgMICpzlE9DRNP8YwoFCXDYy9UclHpGeJIz3b4TbRWrMzgEHjc+C8xlQ2T
681Tq4A4m+Ocj7Iusymu/WOikhU+p2iKivZHlrHAiS4dYeBkhUxpZwY48aQD
74Ra5Z1zSJ5i8cphMDZxIBFjuZF6KqDBN3MjJFPP+Enk0dk3lIGTqRsmNyis
52ndqxbPOpgKXhTmCNuNb+NeNwhVNKRt4dlhOEPysJKZXROcY5BMhEidLCg6
1zNhX7VsY+zmwvESW2cM8giuILYJZLsw1oUorhBF3PzYVUeKhI5yYC8V55kF
hTIKI1HwzBtmZ3MulFnJ5Cv4eCLx3UFQ4IkqkseSPFS/RUp/+NpXLvwJwhyt
zA3O8Hkysr3h85A2mTgr8j61GWt7xPREdzZsLhGEMWf7ZPtyIC/khI9nRYWF
+BgtVtGoVNDZjtSSRGiU3JYYIdetu8Z71VZKYyyYkFLMKpXDgdaQt2MiBn/h
qv0pcKVKLLWcWeaLA3RzAvyMiKsWm1AeVS+c3BAaldFgFK1SK9ow1XnwQX80
aySyxzuKF2wkm8iP0ARPdAB004m/MKD9wy1lBMbQ+t2vNcLUU8zs85Hiao7z
mqbrAYJGZYA92s8DdLfuS2s/aWkt0aPnI2Fz/CBM/zt4qXYjAGQm3Zz6A7qp
9CkX7tZjUN3zemh02CiZMv4i4bRUNibtVN08Wa2zn4vQVkqkkS9aW/Xrlo2X
ijDIGzvo6OuaXJU1j0QBqBOKOo9UmfRhIhKwYGJ5OldE/+1uyUxRQNlAtrkz
sDX1ASi1JRIBt5DqXkuEhJ7JngZySMpk/FUKJW2M1I49v9eqggSllU3j3I8v
7GeUV8RbWq7qk50uxowkw6SPPdMhwaZdLZ2RfD5A8kcksEHPCSvkrsUU5Oiy
CktMbUSoIw1ksRnHQZl2rbJoJfxjhcnAkjntkKwGrzG/VUKxxeScvdCn8rW4
EoKElr4hm/g1wd9j/kjZOnDzGGGmdgLH8oMLMuw4KPusgSzKZl7VgUQXwJkU
qCKv48wFNHWg3GJNSpSamrvEQiYhMRR5SqGac19MMJ86lMMPgB8jDd0FJqSu
WA3eHzG5A3pwoGdfUKCNHMThUBAbqRsNR7HpPew1XvDnZ9DounEg2xqsZ6zT
UYKoQHXdqjeJXZNeJAI0dljG14EX9Yyu3hrc1CGHXVoQyiJaJ9TV9lSVUCpO
SOoq9kx0MFF+re3EErMwIrrfxcjUO3atLDG4J6UG/eSckn2KM5VDa4pfxXlo
VNY19VQcLdX2RSD2RdTJvSUSB1OJKp1zm3tWdFkhgb9+QS6/XdyrtqG1ctHh
oujIwrKr44h+vYyZSt2Gbpvq6gMXtJVF86gAoC4IuHJJdoWvrxurRKpGL1N+
oDIJ25qo80GMgAM6bH0VCikeqD2fQlik/Axf59bvnp3kF/fcf8/9Xwj3Fxb3
Fxb3F5u4nz5rBipq9+pRemUgxWkNExEmc137rxjAOsFnYbtbcBDphm2q+p2U
MZdNZRJHynUMv2VduuzZqaq9VK7RKfo5n43HljbCYp4EzSPPOJa0Gzhwa0Kz
FGqV0L3sHtqXom49ZXnBfKTXzwEDlL8lM5s6X9EHRY7DTpWmrmy2ZIPylGh/
6to5JR3yTUl+tRFIRhxjeO41zdlzzlPkBSRVhpZHiF8HCo5TJjX+K0NzBp8a
yKNZRNYpb7w8UHcT05LzL7TaH1eY0pZC/4pXi99jslZOHlZCTxEe7mbFvwIx
peoaDW7P36CYg6H9zkdB6M1OlhTtWy43D3b/IltabCw1j1JfPiiZ+eobb+9Z
bB7HH7nYnHrwuXk+yl/nn3W7O9VMMKYSZOz7dCe73SF4kZvT5zsZUvxsswG6
ewgqwAJDJM9n1AkNwUVKMOzJpg+EbSrf/Eid0BC8ENHPzWAVJTTQXUqEiLAc
tSvoK2wrpkLCrgppinh2uUGTy5NFdoY9UuFfFL/H2s5VkeNE9FQsxrqKSpP9
QCmWQMUGUEkcEkxdOKMvZUNHsqFDLK+5uxs6NBuaISU20kD3yEM3vgTy8Bfp
YvzA8h0mT5QIcRhOIo4GuUucGHY4uBefUUxTBQ9VyPg6sc3myphmq8h7l1im
yl/rGOaGCKbut6yTGSaWCVTo0iUJjBYcBa/z8Ma5X00vK+fLiqs7Ne3XFAsu
3W25xGanHCJ7SlbucDhzSNvWyh1Wxi1Tm/YWs4i9HOKGxq12oPrKbOLArt+W
VYzpy+05HqNQCO+ZQtjRs8BjiSLzNlVG0pNkgKCTsNsb/WMVMZVe44fYLY8z
HhVz7g6Ih3RjLENBXR7Nqa/9qJCwekhuZjgX2mbn8PwhDdizKkI1yesitXqd
q54AARsSW6SzzuY1xp6SaJLbz+LhF6odqaGIlDfvKlsqYF8+9EysT3/JWcXs
QlPDn1vqJu5Kolz4I4U540NaaG/x2BOoKMgKUkrrPbouN5bxyO2PDHuNdK/l
gXYO6rhHouAf6LJ8xFAGvk8aXkFMms/X4A/tgF539NvvsDy4TdG2jXDmAoNr
AiUaKQbgnlGCzQOIC1FtFOocwBxbLKZzHRcT2RcIhanObo6cTptjjvjj56nw
di7aa85BF3iGBndTPlBOaUu8QbuTkqlzWkKMHRyi/tH/mGMbQIh425fPBen2
kX6KfGhzY+sX0EUfq8C2LjtQwtPExHmAm3wBvVO+oENsUr6g6gI2fvm8E9BX
od0dv4BOOkZFKc030D/wF9Ad+dI5O6auCcFGlXpWnURS+flu5Xcqws4WfmlH
+A1++VyqZVylWi2D4aovnx/FdP4r8JGZLEbsWQv49k4ah75zBUIkCXd+Q0tQ
E3hSn3jO8mt84jkAKZZtiWZRWwUMj+F3uW7WO6HAYwgfNZxF+jTNJNck7Phe
ZUcqoKkl7nCxEe8jYawPVG40XGxkarF3LTeyje7rlB011qOeL2dvY3st7jXK
jhqjFreWG/WLjQjXrYwLWFXRAVIdLOUUwzf8i1oOGF4gY5CqIdKEbfiBaqON
tUbGWVEFOh+m6qhbc6RL3QeqjnAdA7FCXGGOBquqO4Inw8+07IjW01tjodb4
GQVECV7iwULz4B08036A8OHuiWj3MKwcH9Vw90x4cpLSiIcdOHw+nNm/+tC5
aVN6rUPnSsNfcdi8m/LfdMhckVgfLm+MR+9Z/vzWw+RHiKWQsAT2uMEYBTf5
TsLWoCU7Nh4i79i3H/kw+QFCHBNfFK6BPrJ+57Iu/KSwCg90TpdrPrfsT9cf
Pmd+W6fMMcigoYpdC8KeN5QQhXLxU27nsMFgwIkFQ8/NIaUV3kchP20Ucsi4
zxRp4H5yT5lPQxmkQ482LJVSDje4/n/Xb+whIkJCBIZSNVLE0yxIcCe3+pW9
OMHz6qTQYMYIZ3CtuQaMVIAvSzk6uj0om4jVlO3+Sr/iKObiMPCQs3nHDVJf
d+EjoKE5T6zOu/GHjXwW/8wkXOoYGpwYvUPfR/ICVaqVeCplFYoHpxDH2jgk
iz8Xlpe2qp3jnsxVSSvuqb7sok6/xy7btTxOTmE1a50Couq/yycdLZrHSnqY
ukUNo1JvZMZSDFAwl1gKzv7OqX0qnWxlKbLjwtXA5Y+cGmMsEa0v1ZosM6QD
GRIO3smwqNAiYk9bIzaCXHt19/7+l+zv8/EiJHqEREfWUAxAEW75TeF5+kwQ
sEz6JTj8uI4e62MeG1ee7/Sp3A1x5O2fzG0znY5de75um2hhkeC148CksavO
pO1P5tIqBqokYqHdXU4NCZgF5Vk0yMR8VArNC3DvWnKI2gFkGVVFMJwULzMw
91ySBNfGjGYX39KN3sP5zuo6lrhIQgTZ6RV8tBMFz3xVz5lko90rOvGgeXLr
bW/CtLhve6Pc+vu2N1oK37e90WHR+7Y39pmp+7Y3H7TtDcljaXujfouU/hht
b+irDHlw/7WUT/C1FGwNVLhhxmfQ0NwJ5cM2QhVqLIS/YnFK7DD13flaioIR
P/Ii0PZOkWLbwzBPeqdIbS/kBl+x29bt+0N9xa53+N5uzHT7X7GTY6sbutrD
SDkmDBSmza/+l2vCoDDU0Nu+Y23cN6B57wY0AX1VMMeIkIXq3plQZPChLXEH
PmMxt5Lv99+x6Odufe3nJCKRP+p3LPCAZRjwPh/x921CYqXCtdhqoDcys+V9
b97B1ERIwTlBo0EWHVHGvuRhHt12e149Lsxr5hj8YEKYZ9Rc7nP9ZgLBrz+b
gEZC1InJX3nw7hZrTDYeyDlS8GG6yIK1d4I7uVehH1CFUkBPVKhBdY8ImWzY
exV6r0Kvr0KBfbQK1axUWL+7DMcdqyI/uFHHqhA/IndbHatosMGOVWGR3/fs
6Vf2qVTQfc+ez6RnD9m5BTUS0XydW7+HO1bdc/89938J3F9Y3F9Y3F9s4n7q
WAUq6jY6Vulh7jtW9TtWhUX60TtW0ZyDHauIVO/VsUoTObiyYxVO/2V3rAoL
7gjMq81GqWutXHesEjzc5Y5VYUFekwF3sGOVRfvb6VgVZtntdqwKw+LzbFmF
XkT+Gv5r8u8qm/4ZNVFpNa2iLXI3u6j4vG0xkKZgpUNCBu7BxlVEpM/ooBbB
q1tX0bru6EEt8k2BBqp5ldDDwD3Yvorasn8O/au+jN3d6mB1h3d3aO1ugZW4
ycA92MXqCyGS3cfqDhMpShSJBFIikYF6oJdViF9dvz9GdhebWSnNOApgA+lP
ANzu6ULWZkP9rCjm/2EaWu2WSKmM1/b+Da0keusNJFV2S6lUFrmuTK20IuZX
JlmkoRXsQNdC+WBLqzCB7Xm9nlY7vrKpqVWYBh++qRVN8hog/W/Z1SpE8t/p
swsCJn9uW4Os+1rJAq7cCZ+isVWY0PFGgROL+SyYB3tbETPe+d5WSI373lb3
va3aIvAj9bYKUxzQYsTB3la7aZ5Wc6sdX9nS3SrEDwncVnurJJP2VpFf3LC9
FVhyH7u9VeRGYfLhDrkP1ZORbf1hD7l39ImuI7MKrFuH3KnLU0Q5FI0SCqNh
xX8URtuOuG+sItvkeyUHMX1WNQrRHtJzuNZsA8Evhiqad4uxQ7NGK3nWKitn
bHQkX9gYhzcVvarObHDpiqxTaUzEtGudLFasoiwZJSdyW07Yh3+s6FiumEV/
29ULRcIX8mYq7KJOc+QqAKczm4FQPREZR+6my4En0lXCPrGwj7h8LudPQ5VP
SpnNR4rRhc0zxeb9k93pERIkJoIUrkUcacmERNxYpb+hHmnARW97E1LSRG6j
r2kfKO62cm6i25nXNjS/ByEtgKJxaAE90I8phDvpff87i0Rf/nn4kHKUYeYa
Bsit34m0ZAKbN4y/iAZ4tI6+54U4aLW/g03yuba/C4uB0DisEDZ/fodi+AhU
z5vxidXC+65w27rCRUqiw7Y1GJPuASlt1c+mK1yEPRDQFipcA31k/c5lXbhF
VRjHPm73CbvCaahi14KwH09XNuA9T2/m6ZgVEfO0xhjSPmZl9BnxdJyS0Ug8
raGPrN+5rCu9ezytoYpdC8KBVARSiA4sef6m8v7+CkbXKPMXP6FX6P9xyvw7
KamrsGiV+duR3+uV+6PDLHs881r5QdcqI+iW+TfGQty9vF/XU/YK/Af3fa+s
v7frN5TzHyGraJdbsU2XnTCg4kZRskMbF3yU3K9g51fw0Z6jjceIothXjWl2
qceklwaaxCU80Gv472ed0A4TsfeRpFGU3dWEdojHrqMopQQEw8pei4Z7ILMS
MZHuSigfIRowfnPXYqJ7B/xLdsAP4xj875iYKsbr5nfkal4gQ4F+I19/Cf73
0P6MIzSYWBp/vv3ocBUDhtKXoh4SKUqjNm13WD3EuVEPAiupBwN3j0jxzrYE
PkoJKoqJ7fZK2ms8l8ZSlh1hFcTuCSr82vGtN57Dar37xnNyfcfGc5J14Ozq
B20418iepQCBe99obnTfaO4TNZqzL7cazqHOsalgube33nBOn+3stZzTpwP8
D9dwTme0dcs5q6qSN+z7N5wjOSwN59Rvkc4fo+FcQBXCxUdJEDSd1EBlSyCT
IiCgBk4RY2hKyTWvF05VXB157xdWzd4vrNpNk18RXrVspJ3CrJZI3hR4GWxY
YiTIlvDrAfcki2NqtOPnFLgMXQvXjkM97/hOvFsYtvkk4dcjBWVEO0ggJuip
ZDH2VYjMbQVcTS8S15ck1gcLtB4JLJT8sODqnRnOyXBNsYDbtxX5x3Mfmhu6
DbQGxD5VUpCPtKk41OpBc9vuwsYTUUcKLiqoNjD2jl1jKBxodN+P81P046Qq
BTxwk7v4O6GdE7maKnT2O6S4SXS3O3JqKLGxmIa4d3I84hjQPbd9Cm6LQkpG
E7dFkcjpyNVUIW4rPgNeKzSnFRv4rCDteM9nn4bPyOoXPiukACJyNVWkKV96
9zlNQxm6FsQDrfkyqhO/73M5WJ3MDfUQQYVrIYu6W4RkIoa33ecyZhVEZr+Z
o0e4ggr808+6zyXBT7jk1UR3tc+lwEcGqYF1sONdnPo36niHselb63hHgw12
vIvx6MS8XSqiDijd9/zSJ3Xve37poP/d7PlFXw1LqOeB5uvc+j3c8e6e+++5
/0vg/sLi/sLi/mIT91PHO1BRt9HxTg9z3/Gu3/EuTpKP3vGO5hzseEekeq+O
d5rIwZUd73D6L7vjXUzn09Vq6RMiZuW6453g4S53vMOaCdXxjoEf6nhn0f52
Ot7FUXq7He+iPP88O97FPiDrNfz3sy4/anW8i/3orpYfUce72CdnWmDFw+wW
3IMd74hIn1HHO4JXd7yjdd3hjndIA9XxTuhh4B7seBdhb987dFpuY8e7L2N3
tzre3eHdHVq7W2AlbjJwD3a8+0KIZHe8u8NEihJFIoGUSGSgHuh4F/vJfcc7
f3QXO94pzTgKYAP53dTS7XS8Y2021PEu9ilf4fqj+453Qq4P0/EOdqBroXyw
4x12prtmx7sdX9nU8Q717gfveEeTvAYg/lt2vIuD7HPoeBcHxJsGZN3xThZw
5U74FB3v0MxVHe+QASPXgnmw4x0x4105Jrex4x1S477j3X3Hu7YI/Egd77CN
kup4R4w42PFuN83T6ni34ytbOt5F+CGS2+p4l6ajgmNpMP7NOt7hJzw/cuiL
aJArMUOxxA9kPOb9j7/gWXFglDzuJP7uOyT49x0SOh0SqBdBjF9ndzXb9Cwl
NCoUN382MULaGI6GPhLU37kYYRgQBQKyxRlWihcauAfa5RVunOV3qqMWAtWz
6QhQJMQ5MiKWA2UA8hycFQ/AJo8jkTZiATcRg8cO6T2ycPn9CN+PsFCIvrQ5
KuSJvm0WfEKhG2e0j+6bZ96N5plxRtwQUzmrkIZsHbLvc//Ot84UQCkKZYDu
WXvvucUS2WLJxi2WDGyxgE40FfEujW9yniAkU2inV4aaPYVUA18UqlcOlT9b
wadAueO6BEN43CrCuFL/mshgb6tsOkLX0cNRa1ilj3WkMpVtm7djkKnMSCOr
TakPFR/S4gmH1MELcJgf8/FUbXe4xsKzyyyUkI8bU9fU8ve8dhGWLpNSx3t1
/F9l4ol3QPIV0kBMQMpH2TGfuo11o0lahpZoiYXqUHd90ftma41YaoOnYkJc
WtYHL3xN4PR0ENI+Bs8kvdNhHgEzk4CJgExKkCwDXoBlId2NMA/uTcpxCpQJ
JTs0xAP5qJx38+dkSSK8RIncsJJ7By3JiKVzMuLzapmmh4Z7wGRKdhTOchqA
+wvu+EqqohPaq8/iUcxefZZcp/lI0I8UPGzO3+KfcrW+WK7e/eve3vfLlVOX
zaUD0y3fLmbr2XLhOvXivJ4vT2tnvarrxikXE+eHenVSzibOZFa+XZUnjbNc
zC+d5nh54ayPawBg1ayd6fJs5Ywv1/DOcgrjVoCz2du6WbvO+GztzBbrerUo
5/Ai/EduwfCr2olCfm8EIK2WJzRmOV6e1wYWhGIGjyNMrnNROyflu5onX87n
y4vZ4q2zHDf16rzEVTSP9vZ+57w6tkaYwVzOG8BY/capygZHOZ4BjMfL+aSh
kWDCFYKmX2EYRzJSczb+C5Jl//F8VgGqj8uGQFpeLKwnn+K6Yf044PoYoHXK
BsAioOgVuDFbWS81Mvzpqp7MqnLNa13yXAqRegz+53F5XvcHUoBaE5anp3W5
AtwTPM16dVatzwDjcKFsqnoxQbzN699mQP9VeQoIcZarSY101MRjNAH6JrNm
PVsAVFMkksbSYrkumXMujusVwXWpJm6Wq3U9AYKfHpfjeg3rm18ClV+16AaI
bWCxBDBgoakXa16moLFBTof5zk6APjicnhrp2OBiprNzJNd0CgDA28uz9ekZ
ciSw7Zp54al654WAa197BXSCfwubw6+D717+5DwBbl8sYc2V/RLdOq5/o1U0
wGC/lSencwDjpLx0xrVz1uCCgc6APOcc1rVcNSPnGSB8MlE7DBdnVg10gT3Z
wN4FMbO2ebZanpwgN8xni9r529+evnj99PnLH596B8+f/eMfzqKuJzDXeum8
rReEmvbb4xqxy0gAtAHev/rKeV6XU+cA8Ib/+sqgAIZ0DmS65zDd3t4///nP
PT1Wh/npZnsAjSK613uOUEz/DKIiDsZx3h9L4X/vDyKjnPXlKUg6EFz7//oH
+K/z28l80Xy7f7xenz56+PDi4mJ0EY2Wq7cPQ9/3UcDt8yOPfgOUvRt6MCiK
4iHd3QfqrBqAGMQlxjvHgJQfV0uQpjAlMPqlkaag0MLT34xEDfwY/3k+qy++
W4KY9h3foYccuEMgPGpOywrGIX5endf7tlCX6G9w3SBtEtpB2uxWg7RBXNjj
JXFb82WUbSquDBSokhnV1++KgEHqKUMmdgcCB44DxkRHB+eUEQMIPkWw1j5w
cMOgbb/2O9bVQDpsOxS07Z7v3TV4a4492MFb3f2vF74VYz92P1AQ16R2dBh3
UxDXMthvMZjrOEfMTBmMptmqy24cO+wFqVROLtHNSK4ZnJIMoXKidZDKKl76
sMEqqcmS/1lhq+GgVcf3uyJ4VbWxpINYxOJXhrF6QSwVrI2uCmYRjx7lGRI1
c4V4YIZjzsnFM8+ys3thLPs47i7BLMW7W4NYrb7grTDWcBDroKDoFYYKFMC5
/tUNoBZU8lJsDGO9jtPDopAgFsjRw4KLgPk9KhYsnhdczn848HF7UGV4rzgM
/OjTivyAy7GLz8oHxnO7DHci1T27HF0m+DbEONPKLjK4wg/u8vMO/jCCi4fK
ESEK8sD87PFHQLtrKwOyk3sYBDkyIL2BeOE3004ElW93JgkpNhLLKR7Rx9f/
HkNPmW39LoNIL66IU6WVN/k+w1YFdp0GYtb3Gkbv0TosCH2K7+OCQoqRE7U1
kv/qOM4PcifttBm++RccSFVVJqDZaiW2weSKumc8r/yiQ8CJQDzBpFbimiX9
ldeHHfx0RXSnuVjfdHT94W85WGu5bqsx3c7T0zlEfJugx9QyJg4VnKH52Y1I
YSLCTTaUoTzPUX8k2WHOcfEc93P34cM85Wex9gyfTXoJ1BwPtKUg/q7ZvyDn
iGyOBTgJ6J/wZp0LZJyuGsQ2YAhc+zQiXu4+iYIswTOtyCv0JPw9LPiDuHSX
x5FSuvNU3e0rxtxNsfJue6mx1RrFvbrkuNsY5X1LjwMBY0vhcdXO81yjAFmd
NVdFcZ+sEPkAqQBcSQaijwItJTGtadPTVgFe/mK72WQ36WZzEAT4ZoqP4M8C
UQV8JTgjUyaD4ZKce9oMyOrtX93c1NNGDwsg6xl6lENJs0nGmfA5PUfWRbLj
80m3WWuUjxI5Pjq6RugEP340HG63o+0Y4doYV6QgWOj7D0AB/16H8PbgX2H8
QAJl39C9eV1O974xQTMa8hDjkXhpklf5JA/yNImDtEqLNEoT9azzpwVGi1+X
87P6BiFAz3tH45zXq9l0Vk++u7wyGjj0qAkITooomlZ+OjjinY0JJvmVEcEk
3xoPPF3OL98uF9cNAkYA1+lytlg3GEN0swgmwU+e4o8QLOnASejbKoFz05Cg
n28OCCZUVVtcu9WpMuOVVpHzckqvSMGyOTen/HW3c3LuA5ybwzNLxSEuDKRI
wt9A4ibWQ+rqAzZA3XxaLknYfE9cBV+gf3UNo5RMxq2Rq+uVV3Vq2nUkSxcp
SAzrIE3R5sb/ohHOf8MPEL/qlFvdRtyqW3RVGey0olZWgMCKW9n1gtcrwqI3
DtKAiotgjJS8gIyVcsoxrJSIvyWG9UEKsXRo96oCLAUemF8K0C5H5juF7k1z
5+uE7IcD9huq024cqt8lUG96/O0SqrfPOexWX92urrbp4lqBJrH1zWmbm9RZ
bwrQS1j3ytD8xrjGpnrrlEJSGKDXzNNhqoxOCt9JpnqeYVfIe5a6WyyVUYkr
spRmnW68IxTbRn1gmqyc9/rCtESIlKf5Ib40rcIPgbyuP3jV++I0mje4tu5y
qaU97SD39sIZO5+grkxF4x0PZzDvXhHGsOxCKfsbDF/kxIOpS0Et+BW6mgzd
sJWEbHMJKAQSkkBMJ1UrHTNS9nfcMYcpgOb5dt5JNjRZWI1KhMhGbu09VY5t
yvMV+tGmC0SE8b6U0F47sMLsoz98pwp4E7HSEmlTaLMQPnLAia8MRmEUYCGd
RgZG7EJBiw7gh5JPCTUZdKfpQaNF9d8Q8vHXTbTACCWbEpqqQm1tbjLQCxId
eNC8oKQd/40HkmsRP5j0ehx+yIbeijiJLYs2N/auLGkib2xp8N1Y6N7U2NsG
wKr6tXOIVzT6Dq/d6JvVmMfQ6Vbfg6IkPQj8kOPvALCPR7IRdZpYHCfG5nfS
ydFOHQz0+Oav57ht18oIg+53VW6px7fjHDGU6BlqeDsciIFwDuoTo+vj4wBq
xC1UXCNWrbJ9redCzxgQeGA8xhYFNAY1WsDgedLPJaQRh2qvCsSqz5d9/gHY
TrX59rbiKcY6KfiqEYWeHw6pgq+bGoofpMjz2NuTyAq/4C/8d1PsVQ0aunr4
Lq3Sdkpk22c+GyMqrv68p5JoraP1nm99A1WmCERM6GiBbWTFyvpQEQklp8xn
PtO0x4CZP5gFwsuAabrbzwLR3c44kTzXMhIPs+jzthHPYTmwiO5i02GkpYy0
dBhpfeTj6cz73b9x9+ehSr1oRCF6Cyv1cmufE1Cjhq4ev+8XJELWLynIS+lh
XBsVO+BJQDcpNn3o6vaivEc5dqMDoZxnlJTfHOTNsfNLkrsMWo5OggKy6xqg
wWty3xvP+nUc9o915m9D1cv1zv7ZluyWs3+ICrTO0OQGHZh8tIN/lfXUwAFA
hEXBlQb0AYeB038q9+0qk1m0aPf0X2VE+K2dAkypm6PT9U9IEcb8tYnAU6kC
ZRSqCJtcd/WKBMeBrEIptkgUmrqucB1ZuFYKSv2NhizTVADRXWNkp8YyuKkS
JR8C39LNjsQujQxjqU58oWiF2ObxFjPax1AV2mnbHiCqUjfFojl8R34w8trp
5STU3YmvkV5OwoG2L7eWXQ6jBxEnlimr651jdviq/PJk6kc6q/x0Ua0uT/Fc
zo2PlTh/N6dXah7W+RXBxKRzfem80Xf1iRe4/ObK/PPTFwc//fuPr54+2Xoe
ZeCpO5t9zmDTXpl/xoe2Z6DVdsc8MgjM44ja34WHUfAa/w2CKwLWLrCoiz5x
M8rmHjfLTLGLHpZuPpcnqIkfqqOYN+6Gp/UzpH1jrCxLCv38c/rGUeqbx/kB
TMiiHZdQ67GNg+tnEJicK/7yuR4bP5CakBigxx3nuX6Ijquit5/M7dFRgSLI
sRtHz+UBRAom5vCj9b2H9eDP9TP4PAqeyKd+hPQ89VHrvaGe4hlSNzKFtUAU
JM5rvERtCDo3D+NE3UvQ+dv4qoPeZPfl1Fcvp9m2l3/IevNmet6cwN8yb46f
Sts8dpFte5+q7ra9HgRXzR8E2wEIQjzktOU+NaXddr9gCPLXUSA+EmpYetBx
4FH8mkZxSM/p52MfW1dj6CQkpzXv3s+wGXG84W6SbH87RWiSAmYfvp9tmR2j
R7ZUoFUruRBQc+Utt9GuUbcdp/9AEG1930+s93u3i62TF37nXWyiad3P0Rjb
+HZGxTSb7qb5tnfJd+vddRx1P9k6c7x1ZjQaNt29aaVPGKBBsvHwHx5gp8jG
h+gQdJjF/SMfWcpRy1s95dcpPf+Yp/0GWrTtdtqvUza+Mc973dZsvQMRn65F
29bDETfO9zrOQcatjdyMTj5R5lexVz8+NVgzZbWk2u203+ZaKbnTOfcnhPpi
T/1tqqO6VhXVzqcABdVHQk48CRipKqo8k+Kk2zkHuLGWSgKCO7a1Gq6pOsip
vw2eB1Rg5/pX7zwg6pZdjmOZA4ERaXp+UR0I9Gln8L1+TCDb5RD4++sC7hbX
P/9H31j6gOf/dItbFSa79Q+aFmLCUjFkfjsfM7XStleeB2xHiHc5EXjAZynk
PKBAHpifQ3X612RAekWMwXjoQOAAEwbksm0+EHgUBNgSyqU/1LNKmLN7HjBu
qT91HjAbOg/Y+sTCFecA22VNH+IkYFvZmYqJ654FDFAT8lnAINOU1vgVnynj
GqkdzwI21j3XHzgDyLK0bYh9gDOAAQlJOgMoK3DNUojjck7pf9QzgDuU77XO
AnIXezoLqOANzc/uWcDUH9kn4XrfcMz4G46Z9Q1HfKVfpBu1ztPt/IU3fHMo
35cUOt+nO6qSaeZy/IZaxjUSyQdLhLWjyfjxN01Dxhl/za4gBghUqbxtoPMG
CKV2U7EFs1ioG7BTnRixS8BvNcJRkhJEFjVN7bCySIoSK8MQgRRQgZh4nkcu
flFZZbjsMp1ClW6obJ1OkWX6+6QaRKU6SWuw6dRYajPS8kepjlhUR8FfQySw
QqsgTgmfRPhXvsYqu5EMpYMco1IpTqwSkKGrKec4XZomchr0Wt/4HOz/eBe/
7alIGHidGgXJoXsqwd76xici5a+UTcTcHjV5vPYHPi3PwM4yDH7osysROx/8
TPqfZi1Snc2lQ7p4lJe/i4L0Clu2R+oGgtDEsjFM5he3cybfVYlwqNhNAA3U
RqLbcTXww16KUgoaFMdURvwquyuwiKzSPYkQuut/hsqa8oyvn3VdxYh1J5tW
iCSMdiWHAB0ZZnSMmoJgprZNqJZ2pPyQxrKpQ0nKXurNZitK8Yl0oG+thq+T
vjUVjhTitnyflR7rvZq1RPguioDe6fVeSNrpZTu5LCIl6Dj16tvXEknQe75w
ua7DPAFS36JbYAmlrF2lyPuHwz1e3/vNlTnUThTrwEjh2mliWpN0OUhVSjYw
/qyAEnV2qvpMdz7AC1xiGdDnxUJdMGyqAAJxSLE7uGUBJMIZbKjpDR14xngn
sYMyJuckbTuZWEhnyGslEzPY9h8umegHfJEyd0vvpHlLyTvH+Q/5C/93/HUQ
+WM/nU788bSe+Hn9tWvfrcZ1HmRxVNXjqV8nyaTKsjH8aT/lh5MqjadFlU2y
sV8GaTiOUj+CX+O0rsqy/fQkr8ZJDuBJqi+rgsmkHld1Hmb4fDSN00mRh0WU
lxVMWEfjtAxi/1cziONMcIY0nBRJUEwm4fRrufln/PvNVSnTqsjjOE/H09IP
s8k0jINJPfXjKklCvyph9klW5NPpJAonfpZUceJP4nH86140KbIyyupxmPvT
ySQvqmmQhFU1TbIJLClWSwuzPPajxI/LSVQWZVGFcfXrXjCOkjJKs6iu6yBN
ymSShNE0n4RlAiNUdQoLgQeyaRD4JqE7n01uPZuLY16dp33+7MlVSdrOI3c2
Q5sEO/QMxId2y9Bi5nFLbgAzW2kmyjxC0yekzwOBiIF/Pdf3KaPL1l626Vl1
n8RkRJqxPe7zCFVAkjyXmzgof0tgRJ80VE96wVwPqu5zbhM/y4NGyPCz6j6n
iFHER1SIMvi0vs8JlNAk6F5HAZ1oSeagZfglcbxAB8ZWujSjdw45dNFLltpD
9nJ+aSZvb8qXbn07D7e97VAmK9ieMt2WJcYk2rbXYdMj5vgbXmgbUdw7Oaej
AlLTGlL1TfocDA03ip6rV0zQBtCveWcuhEEqPTf3peUTHWhNNj2s7kvYAdNs
SURfJKMSf6GkJ3/UVR6DSvr5IAX8eG7elnYQ5MkUcz2xsLvMrO7LzHgjhT2w
6XF1Xxp8ScYO41sZ9cHxyTxGfKbqVfzcICny1OQ3g04msJOjLKJtucA83ZrB
zLe9m3Vn7uQo060zo5e7JYPZfhO21O3kJ/1gW3PShAOPHz0unaSjz/I880Ay
crfDp7skIxXu7Qq63ZKSwynJTYdQu0lJyTDZ2ZWNycmuH3Fr35F6j+Qkbag4
x/CRnHTWbNU7OnNFalJQcMN2Dh/9qzkbEpKbvp5zOynJTQnJazZ2uF5K8ohI
iPojkpYO1Fb5Flo6qPzDLbVyELByVwPYrc8Ir24+miVWqgdfQOUTWs1H6bAN
Ptj/2iy344XXio8p0HPueHqbeUZLLLXyjd2Oo7eZZ8zjLU1HP/FHNwDF0mOU
oQzkb5cBih0YrLAZrAjlULDFYIUwWNFnsEJl1jekEVW8zq7/2d5fdCCfSLge
yChawbEr8op9TRVYA/Syi60eejvkF28lu9g+veOq/CL3Gcb0YpEpmmuss/MS
bsksiopTi9mYYdwkxJpOpHY4s9h4u2UUjwRaV0PN/hm5qqGinXv3coiMcZQa
CtZQ/+omEBOssL1e3DiJ+32ncAfqUQ7TGAPV8DY2Ak77GzEt7Mf1AS283Nc5
xYcMRw8Ho7uH5m8QjlZH6NRJfROWxqWhdjQBaZVpbIekmx1D0ZWdQroiJL0h
IG34rBeSxopNE5A22jNoJQa3ss9hngM74BubDx1+aUTmM4c/UIXV50DmTZmH
uHiPQ0yR7cDfet4hauUd+MtFezrdcL2g/2Cc/+r4/sYo/C4x+F/3elH4F8vJ
Tbp0DsTgzUek9vGsV7Pv7H+3HO/8LR9J4si7j+TlPw9F6/MiSSbjBAZ6+eQp
vaXj9wif/vIP3snySZqm9dh5fHT09KdXz16+2DMZlwxwE1T0bSw1sb4bROMs
DooYv5XVXcldzQokUWTnBEL8YGUvKwAPOXRne1bgGm1DQQIVRbbPhi8a4Bme
o0qoaUpayV8X68E8+hJ7mKMUAIOtCX0KgqZuCHY3HaRMbvw1eCsBGWSR+hZ8
qxnqeF5W70yb0yDxuXI7cYIE7YUkdPgaRk/afU7xQ0aRfDLvWk18DVSFUUk3
QXLgA6iIZVew7Cosu4TlCIMFhGXKp+DNqKAwMzgOxyhdPwGmM+48nzlBTho0
ojOEfDVKO6gGB55z0PDCJ8J0mMVU5IfZi5xYNKnkL/JsgQwdE169ICJfBf7k
fDvmPwWoPvgBFm3wCTAexdgBLAe3wokSrOwr0Czgq+BChW2UR9g0jMDK6ftf
nxLnic84dwXnrsK5SzinxJzCOZ2cw9sZcXriRhizR6yno5t+uuy9sJ7gZwOC
NEVcpzH+zgIiAV3Hj212EA8WDNs99NJNMa9KmRNMUxVzHRd3TQm6hOqsIijJ
K0glpfJ61Td1KXjUqDiElB6Jb64qj1RTjlQ1GzO9DXgAMl+VFcjV4tI5rpEn
VTCEQo6tBj6qZYJrTuJzGwKTDCDrtRN4VnFVVZqp6m1UoDoYjP+Hqq+elXFh
wzxtWj43pwwD3SFBlWdSDMQsijvuaOffJDRMTyKOB7nGFk+tXjAqfiHtPiUI
7Zv+GjoTo2BWoXnVMoYjHbonXmMC15m1Kt33YFsVugrB977NFHmqhafXzUdQ
FMRxjpArUzdhqaoYtFcZVuDJ0xwbw+gYUiYx8cCjAj4rHMGuiOebE3WqTYUu
3FVtNRSH5R3GlZI5CutRp+5EKkhbjBFYQSNVNUhBtqadKwmHMyL6RJ5uhCe5
j0xcK/rme6QbHAEauoiJqPNWcrvfa/7IMWQEnw4A01rCTsHxBw0kbzyjsrFb
zpGASX36NMQ9suAHp7DZ0Vzif4JSu52JCi1IOxPP1OiqjKVqXCL+NiebE2EH
dZBAieNI6NA6IZYJHUh6HOA3PGMEC57Dz3nKhzA0sEQEOgKQj+J25y263nbL
6VwAG77JNUwD/N6QpT4jMTut1hAJhwwL4edzX/dstQMSuewXqekWtCWqdZnK
sem+nFxfHDYqVa55Su9KaTbZrQhNmYddKd/utYu0hY6wYE93nUeHtC6sRgow
8Vqo1J/ZTtfsAXWLh7FMTt2wuYBJtSQa4g6bRyHFeRPViA0LePxP1rKvsbTl
Dq36CPjugiJ8o4hGn0G/uMbfpU+ckaWtLnEky6/uDwf4cKkwyCCGuotg7RS6
DZsbxG1sD7dJsCZHelisYFMz9AiExYLMcf71esSpnKH0hmtEBemecMMd4bSK
1j3hGv/qXnDVgEmAYEpPOEo40FIQmxE2pri5PLjdL38cCVi0/zWEna8XgZfF
7ni+u/MUxtuFf45cnfEZQkUHFO+hrtdRhRiZK63IrINTdLTLmAQj1U0xkl0S
dZSm5FB1e0tLu5BAanR+MVHivr3Lybo6iAL0ntEVxO/h8BIweWQth4tbqSOM
LG+I1FY2NReSW5kG1nKi63exb7Id+jSqMD6bCFFIiMnwnoE2sH73ZGaY0p3k
M/paKkArcoyps/v3UomRNn0v9TZLF44MdIFrQdoTiHQiMMNS7PcyNZttJuaw
gWna2fVNTIQnJ3gw5ILbxvwWOEnm4QnAIM34Y2nGzKQbXSmTq6BfGl8nwJps
tjOv9wWsuEglyoodjP7/9r60uY3kSvA7f0WF7Bi3eqvYqBMF2Z4ZiqIshXWN
qFbvhtdhFYEiiVER4KIAsmm157fvOzOzDpDgITVlS+NpknVl5suX7z5GoZSA
l5AtcerFTB2MYURuwMq1/p8mHqZyCw1UUjs9lADFSAK9YmagHN0BUgCJm2It
0FAw5nYRI7nIqPQpjKmgkl/Uu9UPJcVVzgfHJ0U0i1jomSRAhuS4w1Lqcjmj
cxRSMqx0ZGC8QYJMcR21xhtiNXQ/5HwjEeSCSCSnmE9NLRcSuZDqk6HciCix
j7R2uiFCFBpLSYQbC7sO5UZMOYUDLvMusZ5yK5Vbud5QWo3OhYj5P8srSBRg
5zQAjoK1cLmBaAEjOassvUUSKCg3hkRRBKAIZW6XG1KBNYpwpzRjeh2nRl/k
hNBQgjJ5e1hkQckkYGohYUKhyIucvRfbwrsSbKZyZiCoZMxqLhyAPaHwBhgU
Ihcf0c9QWg90NmAsuYLOFtJXJF9U5d5IROpY7Gih2IUiOQKxVM9lwYyYXEA2
RGasglm8djUgcY41kHIEVR1KeKNAEvCZ07cRczW1WtO6qfGHH3FdGeNLJyj7
uply9mB82vNamLcvCDFuHly0LqthSHBL7iRyJx330ADCU4KFpHDjYWakFljL
dawtSqegFhjL3zKeI8ugg4bOVs0xSHTwxhpkSVnIvp5PObd+KMyKj7Mccp/8
Pww/hGrN5CHzhTwQhBN6lyiIpJ4TBZCRmODQyPB/LLpwtd9QJCxm6bHIwKFY
SwVb/FgCYSUy3XfW7nm7QF9jnwIymNLim4bm3jamf53V3iQ84WgYkLkmQE8t
hjcKzDMK3LULfVwzIO964XiXNP7uDcnbjbFnTE5ZQCP4Sf/NJHegFY+3nwwo
2BLNSQrav1N6VUjviCR+4zi8/ii8K/Kmb1/pI8HB8pT9TSH+lvtmTby+BMsa
6PpaMXo2N8O/g9i8NZF5a3p97/PcqOefzrIlTmJgLK4kv31FMrH23H2Yf5+P
4bJw/zr4+sL8r+zfyIU0sM2Kn+fUjROPJUc20wZi6hShpVYbvHXlsTsN+d9N
B0QRfJkkuoD4t3aMKDInWBBZ5Fo4qRhIlhEn+lXOmvGPdbOfLJm21h0qy3IV
sHrphKnPYYLwIgWWHuGMM/UwTyoPku3kOMFw1mPK92O5RCQsyUgSTcF20bLs
g1Re39o4WD0V8i0Bh2rqZAUtUhVhyCoC6QOh2warkSS0Symq3DYAa9zm5CrQ
fWjvz+jb7nzh3RnxnuR+qpEcvuxCp/UMEIft/H3+z9JMgwynwwEmMqGBGIvg
rDOaOoLQTZ0pa4yoN6hshxEcLArxvDE6xayg0+cHhaX8q/bo4vQxvJyWkt5z
hy7PErfEzLe9Jd9o3BemcUND44aGxg17adyI5HHJifbXe+zGBhybee44UedK
j129gaeu5Yv4nB67Xap5n0sPSwGcAZEWDMvTO3Xc5ULdUl++3lYqyAkywBJY
1y3xl3S7RKVYXHmUk/4tAjaZM9nohAJ4LvSR6+3FwnvstkRiWMnGVlDnACkx
iBjCpKIsc5VIqsjpMR7qsVHuOpSBIzG8Zor1mnaeinadNrVrtVoKjEWTs8X8
EDf3dd1U740hgDI+BnMwNExUw0gRrJZkd1nvyLrKAjEv4QicEhIYvxcf50BL
mbr9e8iSqUn5I5ILIi6QmATaMdeuzBezq09WrV3qLDVKOdYk9ildz0y/2wmw
gTJfrBSYBhGYdBw3xI27jgqkrky/yVgLy4YUoMpejtvn39hIxyvyb9TRtGne
DU2xzfhSxGO7DZ0Uq5xTrHInQw/faXlwKHHn4o8Phvk14oR6M3hM7BEgjmQF
hQ9u4s5RJ1FMsbU6SvK5QoMVoBFVyElGz6JBcjeJ5o4YsUHCeTSQmrR3UkKk
haZ33N/gRRQO1rWz721vMLahPlfWFrkyp3WjdgdcxlsmvEFtkd7I4rXt7R2h
vVFhRC2LQW8s7pWN7i81EXcqjGxkIm42vBckQ3OUxbc2IoZU1fsOOh98szN+
fjsj7tYIo0JBdAoTLpw19HUPgclFIZaAuqywyK9rbcT5SWMDM9Xc/trme1GE
8um1SsvTKwgJfrVdWp5vt0ahhKw7rSN1TW5ALZe+/vojso4vWoLkBoYGM004
mWbG7S1Jro95iWBe0o95SQ/mUWu6S6qRfHN2XrO7wX6UEC3BLbDQpV2h65lp
0PK1OTxhNdzYQFfi2yXR+tAlvL6xwa/q8DSTi3w7z44kgitOh5WgOkWkJXzG
2DRGNOQZPUesLiId/Ornu7VHkGNyhesKY0jUGIL5iWjZjiLMHkPN+5hrprPu
jt8SZKKqlenoOOI+uSMKGnfOqu4mRSwxVEK/ySnIMPFCv9RhfHFPbRS42nkO
6Ve3QTtdJy6I97st2vl+mwuh+QbrnlbGgKc0IRFVY8S6eSisgSz61nAnh5ZP
qBru2IBFZjaLFcwTAlXENfJRwo9ExXZLclArA8FS2+iaTAV4OkQAUZ4i9UK5
dH/QdKOQXG7L/VtXCg9kcgEb8bhuoGXq6/blG7s86COauShCgRy7XYR7hIVB
kB1Rp2Ky1Jrd6GwT2m+wRfw3SytaWhEeMYIPxqZWidSL0UJJ5BJKsrokUWKD
CO22vdV8NvLtCB0Oj8DfgErhc0TG4w2fj9VYZ2wxWXaTyvBhFPUYeG4TnhsN
YG+ASqfHnES4bSqhiQE0HFvhkGUTEja0apojNBKga5sjqwq1ZkTHgiwkm9Yi
EfkcdRe2zMokQCOC1a6Rmdsxsm0yEftkLtodNyWwAvRQruG9vLbOTPzWSE59
5iDsUK6rRSFRRPYj03hM0Z79OSjGK1RCao8zENGJ/nJJsjp1Yj9yL8dqFPKN
Ru0S8KGVwIym7tB2zkwR0zkt03qsBS5BaC20TKsTq8GOxOKeaGIWVWv2zflS
I7xKrvRFTRfIXCVDTLsiUMnO13IhoXJ1qiYbW28UKB61boQiYIbPADetCpNQ
bDNbPgJrYWc5PFJm4BreWSRN9bKbLC91XdVxEDsSAN4a1cYkwR6RsO1iIFBZ
Sz6BMjAthEJxQKSqKVhxmHdLxk7kq0O5HFpXgRDuQNJsVHZTWWWoN6LAyHmM
SgE5MVXtijXyWuVBhRlBuR64MK/lNdpMyvk0W6p1aF2THU/BGo40n4HmzNpj
YP2XkaBjbvRkgYjg73CsDHsgiaMEwDoUZGfoCvB9Ab7o84mvyU2yWxSUG8lx
GQnjU3kuFs5LODC255NjGVQ/UCcHG0cJv3bD0Qi/GNKBHdDX5HehoZ873BYG
wklFKEAeg3pxphqXgF/BlqmDjTIffOaCsUtiYhXRkNMfG2VVzyGLIpEQXE1p
QCzJx2otJceJz3H80TOaWsdwjjpdGMVCmYJvKvPtVeYBOYYjNBMb6KIsItez
r1VjHmBFIzLzyEpSOlmyKlohKqMoAYX3UWuW2VG4v51pR5dFkyq2Zb9+Lu59
DzGjtVHGZhRSfR7YweQriDPD2WZ8omTeaKF31tBR4zN6PtKiNYHVWy03Hli+
7fLuUM9AN/gobhuyjRTXLnxpkm4cyGSCjyy+WJ8US0Yq1qt1N/ebgUhDX8Vx
DkRKzZkhRtGcQCPVd9Ct7dBO9jXCkyb0s4eduzszxseULIezj52+50Piypwq
FPbaEmD3oozOGimtEZbpxzMY+2aXyLBCkVNoRunQjYjohioNtDTmeX7TiWZN
ASYlsYGX1pObXh2K1vDlrI8RsvMGCcSuoWNjiJnafMPH+4CPMaWVMT7GMYtr
ZO6QXSJ8zLdHXyU+6rwRH80aOvhIWe/f8PGe4CPpLIKPI5KmGB9ll8Tkln2N
+GjmzUa9rB8fk5RkruybEVaMsElKrAS7huDvKQFn5DuAIuMm9bEGYeiODbHm
u+hfMmN0na0sJn/FbnaaP3v7CDHj++1op1mS6KvzbRdoG6F7PEyiPj8cdVnu
d8TRe1gmbYQHFYuipbf3xTkf61gdKFoes26rZryeBoypAh86CKGUXo3W7rMm
BLbtEnIC2uLGTGUxjTohA9FZNJxUDxMZQRLnCDXaEKvlkow1tWPC1H7ULc6a
yvHM+00rGnWrkTEaRTuUxYxqxftMGGNmmIo2DY81YsgYDVI5cWpX71hKqsCh
vLp4rudJqNk2F5jIaGMeFjw1xik3xDjlof2m1UOPUNTadfaDCvr7oXE70EIu
XVrUszRXHrAKtJFV1MwwDPQzBh+UTyhIA7UNiXk2EJHHJbp8jsN9i+O57+B7
j/3t20n4dhL+uU/CyDkJo3UnIRwy69o8JJ9e6Y3gMJ+JCaq50RwULaLa2CQR
Pq2uhLGpnqmScmZ9ckMROW2TKDdrjj4q19V/qUU6scUqJdYgJ2Y0cyUBLahI
J4LQXY6L3shsmEUo75gyksKGA0ctI34PAlnuhK9Q/gnWSD2OWtHvJl3EoQ8a
MSLHt0Uh8j6bbO0cCqITxxix957G7GihGeICbhV2NkLPBTpNMt5q/GuINkt8
qicKILObbOJ5km4fHAwTTGjJ+b9YYpWuPCd50UCBpF1SxBgm9z29KqIiEGHM
oXo88YyiEc0i2lueYgEGBzs2TsujN1tRICgZc5m2cPNq9dlobYpPnFLDAUwb
Gmj9+xsm+cCmfskkn2SAbRVukHmvKVv3pUQpLYRq2mDM/2XZ9r9KiVKZFmZu
2xm2c0+pffZdp9N/5vKUkj4vc1+bP79O1/4i5SllcgR8M88O8DH9OEfuuoGT
v75r937ddOvTbNozjP5ZjmokRzW6n0c1skc1WndUY7z9z7AXuBDcixjBfv/2
gqdFe2Fm2N4LDJTH6gFDUB+SeDi2AjPlFAasT4eySxwwIgqRYytXgZHEtLFI
7D6XcSTtjE1jzkbYVvQqL6uQbBKaE1lissYsq0okS5FsymOLgUnXVEU5EZFM
I4G07EXmq7e+IdwK6bcROexjUC1Aoq/qwAqtQ1+62CuSZWqct+ldXKVSEVeg
Sbj/LOnJV0go90442nb4Po/azqS7aVadd4OKk5ROKHkf/NtH6qserL4iE7Ev
4R6dmH0xa0ikfh3KsHcan18HascYXBKXzzh2RTy+c7q1LkEnCt/z9hGqWG7L
t+Btw52CcEaYtS00bV14Nj0pokO42RthN9gtCbFmaaNiR3iWbI8qLryK5aET
TDBDlhxXSCmwS05ARy0ibTGqZP+w+Wr6jD7YGWSkg7wfZU7vCHUHSrjfJbE7
RpNs9Sri/WDrlhAsH2U+IDWSaxmrUu6rFBSySh4F1mxnWlCpGS6y8VK5w06M
2SoXfMhgrOQZLbAjb6DVZTSS6iXMjG5Q3r52xD2jPneK2jM2X7+cfSJN1UKf
5xsOEJp27iRnZGYhfbhv/He3LmGvhpLLC9fjOeIpYVaGnV1HxohpZYB0L5IY
z9QxmZuwB2JlbFpC1rTUBsUOVyF1o8SnEWj8PHndK2FJFRtK4JmKpNCMK2sA
A0BfUsxHkfzEFc06wfo2cbfZVZKEBPHksi5txm3NtH3D7mz9vdlsVLW1YPMH
1ndnU1ucNfuK/KGHyPRs6e/RRvjhutTXdmkToq+G2DXd2cS43zAT+4M1vdmE
v6hd8Frd2ZRJa/DltXqyafaFb2d7aVe2O+nJxlRgk25su4B6RJNx+IQyiEIK
0zYo2SOLJJuxmYQr/yeUG7vZG6NOw5EsERvTtSrJhNHIbQXQtjNlsZSnwQaT
0e2qyTRSmr6AoYl6u2a5UJq7qSHQKw3SIB0OTgcwy1oeuRvVkhEdwNSQ6a8g
w7h8de2YamDiU8JNisfI6JeWjBFuyn8ocbxGsRjRPTYsFeMacRxCZ0te8PW8
tuQhZu/nepJwZWkYosobFIVRS9ZVpWB2E+rMio0+gN+FtN1U99KgTgelcoPP
X4u1jo+GJ3NPZQvum7UO55bQLsgsO5IpRr+E2YCdS7+6sQ6n0yO8pYwea8tj
nKXbbn0M0D5CErJSssfw+yn31XRqZPATbd5GasivRlwTat4NpyW+xzWSXMni
stpIbmLQnddIEk3D1EaqhXb5god9FZFUNWLX8rVqriekQmRYYxN/H9ImjXxn
w0jOobJ/WAGhP0Z0DSe7q0pI/alPqCXJxGIS68wkO5aeGx61VI5auvaopT1H
LaTIzWHGdoPLzRUpD8Bt7Td7ZdhrfACsykOkdhz/EDUsSKFq3Cb+4Qb81hyT
TgCKycfrDajQzynfDV2hItNzl8mBHKnYoTYJUi3I/JBTDlMSkc0MYJUfh9K+
ReQK30pubiyDyd4WwpD4DWUuaMY6magkzQF2kFtd24QjQOmGXBRTppTDQ8d8
3pmPZ75YEwwdSx3QRrXVu9hA0wrFchS70Bw6maBadTiGqzu96D1Np8MWUXQJ
Qd/I7rfFBnuy4AKAKMmURyhn2ekT1HM6NLl2dvPvg9WG50R1Au38Oqyf4rzx
vH5NkiHOlwSP1CJRn2z4OeKmN5UNcQ9kfrQHdq5duxTOeiOSK1VFgCdu+kLc
UvWHoejkw+3Nw0nCsKvn/1CfHf37H34oFsvz+eLjv29t/eY3v/F2H79+6z2Z
Fkezeb2cjr1X82WxnM5nW1v/8z//sxUNBt8B4fy9V87Oymp+Wm7BX3/B/8C/
3ptyK/nuwU41HZcPHtITVVkcyt2H/gavRyHfKuq6XNB0POffXxp/Xf6pxpQ+
zubndXdK5p+Z27W//Hh+cNl3Gxf+utW5QT//uvWQgG735Vn5M+/DJB/neYT/
neRhnqVJmI2zURZnKV+bTNy72UFWZofD4TDma/93C67GSZQdZpGO4P20KE5P
y4m3Jwvzdou65LHtpRfPvd35yUkxm3gvprOSJ6Og8OrVwX8jlspWe794nVtB
cM7j2JWZrzdR7ROBQj619Q/7/LtFKQNHB+NwOM5S76e3O2/e7D2hN8J4lIQH
SU5DmvfN2y/LxUkxnWxt/UHw3ltenMLhgbPw4N//AP/1fj6pZvUfHxwvl6eP
fvjh/Px8+zzeni+OfoC9H+CZecCPPPq5ms4+9j0YjkajH+juA++sXNSwJjiB
aAA7AJi+WczhgMKQy+nswhzQOItOf3ZsWoME/zyblueP53DqB97Ag0c8uE7D
P6pPizF843RRwok4Kx/coEIQ0JnRKOcKQSEV58SmNlXGGtJYfvrY35ZIbCyh
g3UUivCBWUQkI6S3tOfFoWMdTBMmr/Pq4mg+k8cPqmIM4DydT2dL2B1AYBTT
QdXwMEkkhKl7fC3FgoLNALw82c5oRvj8NYyjdkqjVpJMikVSUxTf77EnwnXY
DpXPRYE171/piRDDnCq4d+SRcDTzf1FPxDqrwXU8EmGKyXVYaNBHdBz5KaZ1
Wcxs53WRjQsez7EmhYnLH4qOH1Ij0tApe8E6QCDgzBw8SlWrUeTKGzib8puk
3XoeCqPvUwmHb+CC2m06UUN105YTrbXcpIFV/oai8QxVgjvj1qymwCIBoAMU
ahaV3gfZ+dqZhzhtTLjLpB3Z/ZSgZXpUWMzMtL0NQ8wQxbJ9lZjbxjZIQQ8h
meX5unOgUkEFq+yGt+7UjdMZcgMO/DXlgoJ2kgj0IVpxElDKmlU+6Xor/BsO
IxcBxIzcjbkP1pjpa9LdYIqbu+KGlnXGoT+MQUzC2Br8JURLXRx6KXJ473Mw
ctO7BOvDJjln5Vwrcs4Yh6+ImGvHywkX+QwRc+vi5epGnBwdvk6knJi8pOaA
v3nEnIuzm8TNMTtpRs5l3eK7aIy842LnX4gGUpFznv4XrXF+DQKoswt9M89O
LxnpO+JfFjno1C3w70UEoQSWqODTjiS0EmsnlvAzRhL2V/TdH1KXBuqVlvY1
3cjxE79iv4EcwwqTkL53z2r+5d0AxRG5S+8aZXepGxvF8I4G8JP+m3Ka2L8e
xjKMqUmdQrstNQ1Csmnr/L9IDZ7awfRb197hiPHtS2rutGz+pi6fccreac0d
J8TWVNzREsgtXAIpkeO/KC1/EPLxzX27KcCYRrh92Il6k4I7bX91Cy9uWHBn
Q1cq+j95thTJqvPuYBwKxgk1QW/ENaXOxCllw+ZGXxLZlLWktbX+4Ha6/Odo
8NnKczDtPR0JLhHc1RZUKsPdpMHnmrAgVJgYyOhEt/Bud3pEdkbNEvBrJkcV
v085cW6wmVg2OJVDj02sxwbPS4VLTckFmlT4fCLYp5arVFx1oCaMm8G/kXxj
hGPDN0jr4gB4yY8NX6ToukqN8cmNXIsDwzwadiSfQ4MBQqDIPcPVtiVW6hNs
2jHcaY6+kpjkC+fqu9a5Vs6+Glw2y9XPOMkqo4aSQ/Ijr0nUlwO4roBH3lKf
Lk/QT7ulFEh7dpt6PBsON6glNGTySUIbt/R4MRyiYTe7URUh+U5b5MIT4KJQ
pDE0Fo2c2Gnl4xzK6CpwA1N2wxUu6OQ5vTSV6FG5991cWnxiUgu1KEdlHJaK
EhfsYfoMZ4dNadn8ACCwQRix7CCZRGtlWQMNA+3sGMksHT+/WwZCLHZM0mkO
79M2yclHvyK4RomCa5QguKhGVQNcIwLXaHBfwDUaNsC1SS2SUTcYJxykTai7
soj/JZu99lmsWYYLNN7GBPk2m73SGtBkNsBarVlIPGJNt1cn2Gajrq9Er1QE
v6NurzjDpgUvjSQM/lpdPLBnzPourYDR0Y27tA4/W5fWS813UYLY9Gt25aNW
LHfVo/VfN66+bsTT90fTS4X9wWeKp29H02seuKCIiacfmw9uGFePOAJICrI4
Iwv1WjV409Ptb3S/e63eizjisZV4L40n7u+x2okn1k2NN4or3o/SgbRVle3C
AkTk/bysrepnDSJe105138wLENBMsVNdCENsr9fJMh1x3SV+tdPJkm63RsmG
1E47y34VUj0Mv2KPAs3+vjoUZHJwwGSWHdBfH72Ggl7DfvQa9qAXqSyXNEp1
1VlV2S7p/mJ40qVdXxyZ9oruL5YThQ4fuirK/A66vTT9Lxv1e9mNciQYCUIU
4RpJt1QDYm64wXcyoVBqijB9XWQpqVzbsOdLWyPq7/RyhQ2ux6C4r9P17bz/
zosg+2h2dXMXxwLqtHeprV1vbVuXtWLT0AJ+30wl8u2sOgICNp7YpPlfRnEB
2AB2s2aBebdtTIJF3Ne1QL3EXEIvEnOI7qYDKn2nw7TyhioaasVEvN5hPWFf
B9SM2inCvZ7up1kHGhQsskHv029+UYcPXtfLhFAeSntTA/AOP0k+R3PT9k7E
jZ0IBf6mvv5Y9aVw+67r7KsRRGBoKu3XRgdgbt9DjWLgxjGDDWYkgCJGypao
uy6rr58FkmVG6GxXhvb2q0kQPkdTzS95/gXwfrj5jJ5qdb4bhFJz4A66m95V
LkIUJXxRwsyDVpz+ukSEh5fH2k/yctCOtDeR8zualHCLkHmT2OBJUoJHKQRX
RsnL04/aj9sg+WE+ybKsPPB29vf33r57/voVgWJyMJxMonDsnS7KiQ4qAfQH
wyQcJd4c4+ebn73H0fPbeSN+HiSqtC+CHlgf3bvbKPpYoujDERxKrMpaZVTy
BqPo6acfwvkJ0IaOJTeCMCIdMsTzjncpoj7miPqMCuYB+7y9Lc+1DYZxfwxh
O7B+mHOoTApwwiRYDKynaz2B9cOhhjbeQWD9rWAe4mIR6L4A3Veg+wj0mDQF
ATo6YAnWCek3Id7N8Rc00/86QM+pz0U09Mgw7IeYauHJ1ThrpzPEWk8YiOdd
ZDOQNgmsRJX1s4FxFrsm9zxgRSp2BIDIV0tjyr6gbW2WnLTkIHWLRlzgyBSN
zsbWmCbRIirWRc7g3C42Uv9CI+7DjVgX9WZtFaYz0GWe0YrRJwHqSRpJ6GVH
hhIt31SyVNmgX8tvxGUYAUjEys17tzRNvLaBYciaCIUQ4KwpcEum3/YapSiJ
cqg/CtkDU0AuMhOUPQns9bYTPuo1y8QVC8BWeGkkkijojXlcLEiOhTMUrDJx
Q+0IAA2fQM9e/IwW0wnbH2CKw/COJdJ6M0l0k05P9WaS5606PIUp6ospaq4h
mQXJ3qiwQexGig0IcqciKH6U0A9H5e93docEUEC/96kJprhBtVo3YGSjnqdj
G73wWarX0sLIFMNFIkzOxS0pxyZVbK0b6spWpzg5ohSRFLOQ5Audcis9Ae1L
mp6weeWwKOlLTrAchTrgxtGXqubY5hbXqhGwr9Ol5o126sQgqBoGL6Rvp40t
WK2Il9YH6OcR/XUC1p5MW7+4YRbYDck7ErKoI/NmdmHW0GEUGa01vV1VKefs
3GEnts1rCeD8hdwNnb26td3+Grt1g15suzhf3q/c17nTftl1dCgrOdDiIbC+
wV0kSr0Po9Et8qQyihPH/hk+/h7z1HxnmpSfhtGA2Ihw1MqVwhttYpQLMaJ2
gZsLt2l/stQ11QoKrmCtIo1IjTtmGi9mPsT9SEQOi1/soiBM12BhB+84jcjm
jKpXXKMzY6EZjOLNqM0hOT44U9INaKDz6Ev4kvAr9rBzExi0kXO4D5kqhYiS
/OyHpt1X5mv4Nd9TrpU5HGvkh6bLVeZIJEMhuyIuytz4bBGW+Rouq7nRLrQw
tDqsB0LC6S/XvKuxs/CyhpuzWzyyhN41A9NkFE25EJC1Dzdu0HIDXa4RTQQ+
QWiDn9jeS+BD1qvCC0G3LVdSZLkvEZzae0cdW7x/gQmSEkHVoWl6IxYKYxKB
BWkCLlsVWOM0B8C70QA23kr8UuGzNLIEExWKSCJmAtWUNHKCVC5pPCY3mMCy
fyiwWeUUYaEx9bHjTqCYf/cGRx9wPyQTha8NhjgS34ifaaCOGoJwIL577vJD
vFsFc9oh5Y1aUmkoFxvBtZlDgkdBo2W8JkDE8u5I5UzNB+TgXFMJXTvSsbU+
2o1Df0RGgxDDEBP6SQZ3dwdqeYflHpNIP2xsdSQCqxufwzOywSNKbUet60NB
Vl61dYnlgt1RoI0cWHFmOIZyKLgX76AR8c5MPuS4TrkeyZnhbbS+okgO2UhY
kF7nY2pi2WtBHZ/jL2ycIat6hHi7KX4KaS0rt/wbU9+/fzZjjAmkR+/fF2vD
MtaQl8vqO+KU2tHu+PE8kfT84M5d7cPbudrbsUtXuNwdgbkvBKzjfHdKqvp9
DvfAUd0vd7OnaCkkV2+KojL5pQ1sSbEjPTrPRNHouNiFl+n0jat9N8NWOT7J
QPwzg5/9DvdWLGs7FLnjer+2453XkOIx0tVgNgBOIVcVquV3N5KxU4fDb2jK
wbX87+2Es8v88J63m+HAOQKNZ0k14nW+7bOAxdtu3wpnrXFhXUucz21cwHXh
NqHt5LLGOHdvWugYFtarLBnafvjYZNvSKcfMuJ37gXX3cAO/YHaiawbYIEtx
3DQ63jpb8RI7RI/V+rbZikyig0EzX7E3JiHbHUq/sdAfYmYZHTazQ5hrE+MR
7AblwBd61HhamiEaqvi7IbK3Tlx0saIRxrkOO9N9XgNmTMhq2iksiZCUbxh5
DzAyx5pFhJHIfRkjzQ4hRhKL/soxktZAGMmraWcJ4QvfMPKeYCRljxFGjhBa
hJFmhzAZj7jf142RvAbESFlNGyP56p371vZHEX3Wx5+p+HB+DdcaFlZIUUgf
pSyidx1rI2wqnSObHKGDK6ciDAoXzDJEP0GernerbWC6b+8LfxOnJl/vZAIO
bt2r9Ve200vvVlrJ2s6t981GT/29cqzAQfNOqMTDoL9JJxIZ7J91zfDdhL21
5N8f5ZSufcsAXvOpdtkAjHwZjTiUM7AZT4lvdzoRe7NihCbuqt3afdYkkrZj
Szn9TAwezXzOoZC5SOhKo0p5bxF1Y96IZO/0WDWSctVMR5YYsZ7KeTQJvC5b
TeXA5pcbTzSEQXNk1GZn+SQvdlTrwaCF2vRWcc8Ib6oZkKkcSTWtd2whVeCQ
XxvDEirW1oExAOmK7bHjKAvH56nhFppYlvLQftPCoacsamEDh1PLyfBD44mg
hXTq95ultTIrXGHAqsxGUFGTwjDQ1w13IMBZqw+bGsRoXcsu8lEOd1PyNQ3w
W4Ts+GvoG7zv2tW+nYdv5+Gf+DyQdZPPAyE7nweD9+3zkCsLW1O1YMhVC4ZO
1YKsy2aGWfMzG1ZnEVC3935NlRZbCqpVp2Vsd/FzVGkR/SWwooSp0+Iev0Zk
nHDqwFHVbLWWIQuV1GJgBELn+motDfpxad2Wq2yyPdVbcOi2vYQ6ZPA+DlFs
ibgDVsbVK/AvuPwMH2trEdj5ttUlF42co26G1Qh1EZBVOFCI9zMSTSMmSqqF
P3N2vQjRaRTV5DPb8pKrN9zKlJrCy8ZUtYWrPMk1PqW+XiKgpdpOgXzI9e+K
C4/3oumTiETpyZjsqmeT/Ej7ul5UQGTlqFKgesFQMIGxpBX5rBWx2hgZIimh
UoQDoivVjKAkNwcRrzpounQTxWzFTMbsUHUWS1QNHXVW5osS7pM6RxPGKjZm
6j21S8ImEkQVKjgZJqTCfxQrKAu1ArKSBohZ8P9UMyRsev+S+CYNLoE6jdYX
4ciHNy7BYUNPksSNPbmLChxX+CyjGMPyMb93sP1ZXCC/QnwlJSHjujjTNaZ0
zFSY8v0Kr4xiycoFWqHzDO2v3ZolVBDwVqnwv7LizinxvI47S4r/zIo7TjeT
XdKZh/bXTtJcQo3qNizA+mUCAWhOnSzcf9Kzn5qzn97ns5/as5/as5+uO/sZ
3fjn2y1cF+9WhqPe193KqCwr7ZbOM7S/dkuWoPHgRuXpHWK2UZl6I8knzg7Z
IlSdcvVtQ/9VZevbSq4pX89lNY2tI7CKPM/dLWDPrCJry9r4udqNCeotXK/G
SV2kFLBvhhNvUsJeCWzkvEfH6BntV2cPh8ptLy9RpqcxckBws/o3nremAg52
HdqkSna9UeECjXAyBQv6yxU0AlWcwgVjqzEqBbikhIEo5u3SBa57slG4wCrF
lkwNblvCoId2aGJFw7gWkLlnN8qlYnam5TzQb2N3ob098WiTJPmYZR+E4yZV
PQY98h/6c5p1M5LtURURl0+p5i7Vy0UvMKrNVHAnGVa08TE3CKRcvTN4/FnU
V08qGZkhmvl+6vmUWvGXkPu2uSRttTHKJR4pcp6FL6AFQ85arGYHX2U4cdeG
DmqoubJTT1PNkJGNEdOmrWQUsoRDaVou2JPBHBKqgdKts5VyqF/yNSQh8WzJ
YGcnTlVdMrOKvmNyjzKQIspcSbH0Gc05x7Nopt8RjtBhxkWskdVIOZgKM7ez
ytj+hGqGsusUPV3hwaCjVCEs+XmKTKiEN1ZsPoJn6ON+Jq3Kif9hSaxKFkv3
gWxs589oQh1+grgBm5Jd1uit4+OXXFkj5TQavjnGfmUopNiIMKenQolspmfI
HhX+0PrGb7pxneRn13TZyNvVbmsOpMWQyMfXHzTElbUN4FoODjVtr2kEp0Vp
miZ3f7CmJVx/Q7gu5wldvmPoiAwYNMUJDcW9Vou4sT6pc7+0QdzawuGZ41xw
ae31WsbVskTTMI4X2dcyLhoiYmZoKEfEHnHAssXxHmFqo+JX+JxUj9vseUOr
3Xq4N6ixG0Yj7Oy4tshurNlk4UC/ejMjHybjfXEjH1aEAGh8eVmWhu3KSyhL
RpkQV+stbRXfbflZrijCO7ZHsFGMd000vAmt6YQ8yfkw0sONivIyQWqx8bXl
ea+McneK9LrSi/pKm8V6G0lC1y7X63iir120l1Vq11iwtmzvOv9sf/FeJ3OD
JakuYZJMoV0UnakCChnsBoRoI99Buo7MS1mncj6+VssqHzTPrCYV4fL+W1dx
tlhYmeeNOpazho4cjuHYYRTeI9sqTqlHII0ZpdaWTj1Lt93aqaCShSQ3xlTZ
kN9P8f1m/dSsZzSq33afCPwQC2fjWUtvXw67JR+axFxjnlBRRtypn708tpoN
NTU16i+LLQGoV5TDlvIspgz22KUgV5bDdtG6URa73rAcNvUeRVKJVQDNppEA
Run3UWQtw4HVFxohw6axhcs/e466coZLq2M30scadbJ7qRMKotTeKKIy2TLp
mERRs4CONe2GhzOXw5mvPZx5z+HEVq1YeQuV06tsPikPQOamDV8Z9tpwABmS
yG2vYi1zodokWnw+UT7vBM9swO/XHqdW8NJVOZtx4/PK/03X0kwOeN7UuzIZ
mUZQ2qa2aNs4xJa1paMWY8DAyJV+fCuHulExerYSI1HpwIaG9sbV5a6xSs8I
yXWuPu3GUxCeATWNh3aaSXgccfdykTcyX8w2hlJq0JdW2VJKqYIwceZWSE8z
FDDTKdeBtanRcW62N2lNNnoP0+vxKGKxjpwyOb8CKxlPF+VCZ+oEf+rSzAtx
ZLT7aSjDwoRYIQUdiTrv0Pm960qkaJrkqy7Uk5CVgFcCa/xKIgky5gW0V2bu
ofN7twIvuV02YgX4KHFubI294StRpzLCYIDmBDJ0XKNoTpj1BEfdXSHekC+a
yrZSgfcv8hOf6XvR3k2+k7K0zVK9/O+hf53vYBXb3q/Ir3/dqAbwZJJH/BtW
As4OsjI7HA6HsbkWJ1F2mEX8la3feH+G6c+890W1KuutrXfH09qrYc+wzC/8
Op0dzhcnAMizcntri589o2e9YlF6hVefluPpIcB7XNSlNz/0iplZorc8Lpbe
pDyczvB5b1aclFTN1hvPZ/UUtml2hK/U8LMqvRVcO5qVExh0WR6Vi3rbe3dc
euXPMATvJc6IvrmE6yewz/ChkxO4jpWLAWXK6sJb1eXhqqKSwdNxsYSBzwGv
vIMSd1m/Dx+AT5n5+N7Baul9dFd3UlzgO/A1er6YXXin83rKs5i5qwS4vMSp
wEKWNN3i5LQqazPKZD5enZSzJX7L+/Hd0yBHOx4sGUBSO/PkScBbi7KoAsDs
auIVp6cV3oVR4T5+voY525ca0zzBSS6nJzx2YQdG6BTjxbzGTTiYTy5wrrja
qpwcldve/nQ2Lvnr0793NnGKk5yfzumA4JjLeePZ6bLG/VzCSD58353bBGeG
m1zIkr1q+hGx5ngFkw1goZPiAHa+LvF1mMN8ATd/fPsCPriC5S8LeHp1CteO
4FlEpaIihCEkokUuL05htMruhrcH9MQrYQ+KMY6IU51Mj0reoUJ2GaazGi9X
gMI4Ru3FkXdwAZuw7TVwHBZ+BmgFr50DoGHhgG8w9hLwbFFSRWYAr4NqCOk5
jLhQxJTv4FRr77A8xx/L40VZynBbW6/pcTrKywJwYgyw1x2FAfn00LhVuUQE
r8vTYoHwNegL3z+EB+spTISxCBe9KA/LBUF1iu8iJvAh+vRp79X7vRev3+wF
b/eePn/55sU//kEzx51czudV7T6y++I53AYyPj+a4Y6bA984Lvg6DDpdtLeW
JgnL3F3Vy/mJB3gyr+ZHU3ilXo2PERw/lQfea7584b0oZker4qiEGbz+CecF
GPF0MS0Rrrh78vunT09f7zyF24j/9fyknPA5MJsCwINPL+BrMBIiqZAUcyoF
Dfj0wyDwMoNayAMuBZ+wQIZF7JjVMyQPCV/rJay+WMABnM6mJ4ihuho5ZhYN
au/d4yfbSGZLeLmq5ueEogSpCggiABJoFe5e473xagE7iVjXnOP19hjJKcwA
x8GZ2I86RJ7RRyZRt6ZxXJwB3pZwvJQsXjoHhM5ZsZjOV7WlioQoeBjPgKjP
FwhV4NTCKuCYAUMPprMADh4ceSBYXYAvyhN8AZ4YlxM8wXD8AWWZ0BiqdQzb
T1M1VN/lP7BlC+I+MCjmm2xt/cIs0PvFe4UU1v33i/djzfiEvz8p6/FiekrT
+WXrl0cB/dOfzj/3UvM2vOaF8ukP08mH1miWgv7i7QAVPykAIKvZ9P/B9IAY
zZYADyAZSAcB872P09lkG6fiReab9c6HDb5pjjIWyHc+zV+L9Wtn5QIvTx5f
fOj9GsK3IFo6n7XILfEJbh/ge/wdwvXzKcihzERgbxa/A0q7OqiQqJQXPHqi
o89gsz9cspYWvXFw2cNX+Wupfg3Q4i0s+hSoyPJD31qAwyArBdRDKgRovbg4
JUwBWuxIOwv9CPP802PA+wWxIX4BIAFLYaw+L2pDzuW+CxieYaYzrOuPi/1j
EK4+9K9XhKX9/T+/hVOOP4AM1viCkUBuP5uhzgYZ+wIIVbno3/vLsBO/Cqxq
KQPLp2q6LgJDzc85UhKPn+v4jBZ/Li/q/vEfWLyh1gsPWqIljmVQAsAwK8tJ
c+2y1TVvMM8XCRci64W9K0TkABdTnvAsRzrLSWmI4Ptp8eEKKL3BivoAImWA
LPHAKSYqB/M+XACnPAexgIWysprinDv9OERSQNYMsy2FCIQDmRRuxfLCHp3u
pEQ8NEyTCCJKfviics0FHmUh9cIyePd+lr0KQ3u2kHZ+6B8QWV6PbNCiEvLJ
SD5ZiTjwYe0nn++/9rJ4BEcBfoNf4DCM55OSOMVSh/SIPsGB0O+ZE3C+mC7L
ngnEhpLWK8X9m+C/Avl3yPzrFbMoBK+Mkyjs5tXkjsbhT/nedLvcZp1BNhSX
ezwdHzde8E5B84VP1zKhVMlQUS0vI7sH1Xz8EUcHGQsm502KZeEIrdX0oEQh
FaQLHGC1OHA5wxIFYN2h09UCNCtChAmgMmBYRWdVJpTpGSsu5wOk+CxByvC9
cvtIVo4Xkcfzuot+2QGuAlBrJo18zvUoDXhs1JnWj/32ze4jwkVVrQrvcDVj
FRq/z2rsnA/tlOmfecDZSpGhrTWiVoYq7xZCEMzLqAicgFaw0N0bhDxhOLQr
d/96Jrzj8UM8YaBFIOLWqDlfOfdFCfuJxJDEQh05EqqzWMwdPL5y5Bmq/RsO
Xhi+DKjDatbEGnxg85dmNjHPZv7R3Ta8JF+j383GyUWChIGdnbeI+XaW/WhE
XA7lztlcZseQasIpEcaG79bIzD/cYmbMJFr4RqCCuZ6iFoRzt2MRjvEUl95F
ibrrfLIak3Ssm7LwaA9xvlu/8fZ+BmZK0v2bxXx+eKWJ6HE5LtDQURZw4EpW
B9oWBdGqcUOFoDFd8Gl6B/KF8TEQa2VJ8qGm5YUfKeu2jg8gkBdA1Dk9B9UM
uTv/RB0XFrIUa4oxA3SNHqTqL4hRkWgAItVH/B1p16dPL/fe/vnFHihVW1vP
0Q7xku9iTyufZlCXwHiWaJtAnR2oCmkxtAYrjuAwxQJ0WpUs6PNAxKsSdK3a
+w63T3QnoWhAb+tizOSBLCCGEj+eLsdz5NTOIw99pH1VKYIQkIoZsMHZfFLW
yjpoQUhaACeOEd6oATI0GQgrwiOUSeCvg+msENp0CPRnuqBfQJEFdKfP+kaF
RZPJ6lTNRQj0xpDf4W8PBG5498H2Qwam3Qeg5SDaXOjmGimrZtVnLYxFvHwE
2y2mJKulOszeSMxmOCQsMyOUOJRYJKDGk2KItMcR33YO7NH0jBVQ/si29/oQ
Z7OoaS+R5xk0JWNqZc1YhNMndVmdEUSJM4AafTrHZU1pvS2gir0CVobQbaHl
ktCSrKZoo1id4HN1Se8COQBVHyRjpBHFQsxcs8Pp4kS1cqP2oGWatll2D9To
o3L54KF3soLtOSBYkE2MELuqiLDoHp8iAdl+4D1FnNZ14uLgf0U1P0I7AT3j
ndOWocmWkdkemNaG8QRhMITKAqUNEZYRh7VjWt066o2VLgDBCsZXXgyaeWrC
QT1256WSyQaJaIrNgH74tId2KWueqpcXcO1oUZwePyIrPWhqW7/1dl483937
29O3z/dePdn/44eOZE/d/4D+IjMwN237PfI4eI/nB1c9sluAwnXVQ0+K2Yct
mJR54LeN6W1JL0JxirSa+TUv0Xjti/D9B1t/ZX/DT3T8ZrxLRjZduOcKKR8p
bzMHx4MKtqkSMiB2LKEJJBeQKjcnOKMrYn5yMl0SwxDio5//nTFVo+HJ7Mfu
65cvn797uffqnbMZPMcmMD64cAoComO/tW9vjcfZ4UF+mHl7L54/2XvCi95B
DXcxYd3SRysarg/UthLow4TVXztln/Q6gpLKpXwojOPDsj9YCoruordOx6uq
WNj99fUI4kvfM3Z/7y777d5//bi3/27vyd9M38UeZOzBuya+KBx6Pnd3nR1J
fSTNxsLHnEqGkC9i/pSPLxMCJB1KNeaLKQgUcNqN8mMMEwJGQx1Pi9kMd0lo
pLBDUKpm42o1Ub+CoRgGpH9+9fqn/b89fv34b0+e/wmA4cBT8LUPTARP++qb
t69fP3Xe5P0fowukjZDe/yWo/bY9bv8OtYaw6Prq9ZM9Af8oCQ+SnHZfsZhu
DCb5JD0YuNeSQRiNi8PIvWY23D0B1sLL/BKWA+Qw3CZR1Hi1iJkJlAo1E5lj
sRVtC/Q7Ah/+9YFwKEDktBj7yPuQpmk2OJgcfvC3YucDhrqoGsHiTpMJFhWe
KLEPNFRXFIYsAngHBUhgjpzjk4FzvloKe2Ep9sIrJhPyIAIKulJgcTBfNY82
OkzQMrGYFl5MeimoeSjtzywE6bLK79ueeT4kcSEikWJ8XI4/WuFyLE1eK3Qp
oaeHPyncXrFa98cgdRsRRTgIghokSzhFDgXs4Ng6BPX+7d+8cnw89x7ss171
YEt+Ef+299ZIbM8bfoWrNJB3jqFqrW8CluHK+mgGAq6AUt7++fSQXabo+ASy
qhj2GOVs0DjgmV1y7tXefjlGgQL+PAWpEeW4p6iQU9PZXg8Mz84h4O396Dje
kJhV9bwzw21y3j9dkURDqhls38bKmbP0osfFovRRvO3oZDvFLrdkCSQX1BRN
Oz6K1/QJdD4ezbyjOftniaU1P0sfwsO0aG+F9M8VGVjULQC8M0+L54jJZbGo
0F6iL24DGBZ4jE/mCxQgegaB2RwbmVKGQNUGZfBZee4MxG4kZjT2asGaEG+y
7GKxgiO+qNngjBbgCZ1vEgZlat5sdXIAH0JzM+kxVswhJauEGYoAsJpZ2oM2
YaAWZMckuBE0almZnRUywgmaf04Qf87xycOSPDEMTJQf0Cds6RW5ma0kDFL3
TI/MUTkjn8HJFMQo2hh4DgY8umhEXRhVoKE62zm1HJRAKABp9NsgoZcSJtKD
ImJeQjM+HghWe3jNjQc5OANI+YI3GJUhgLyZEQxkwKA2dnvk4OvAx3HT0d1O
ely9OsXwBkJ9vGGWVpOWVx2B4LA8PpEIDYSsLAj1DYpOYbMnmmhRkiB+gOYG
tiEspwfTCk2+IAoatYI0RGEHVt9BQwOsBFUiyypkeuSWApSbMMDVs8NGsg8s
AQcn9dGHFlh3nzx5waeUdr9YLAB65IArp8T8OB4BVnoIuqlRSYUBjCeTast+
3Puj95tsOxqE3/3FG09P4XV0BAA85zN0pOOZ8L3/8Ipi4v314ZZ9At6jgAex
w/1eFwCL4hO3e1zA/6LBFr76R+W27r/fezsWJjsrlACXpHZPQIVZFls0BTPO
NoWnkCPh995bslH7sm0UHLB0QBigmXgL595+PZOB7WhEy4ojkcaIHr2ZVxdh
PJBm60/FrF1j7IoiuqtLgnQCxJWeQWSTPYWdPyidrUbJSA0pJB0dTstqUhMG
ohOrljfEtgdvTKaHxOyW1cW291zCHBDdfeckOhY5MnAQMowF/cZoUwHcm58a
IYWiJq5Ghf9QiudvgBVKHP/orWCAxg4XB2Q9wIMIJFhg44NIo0eTrzCknx+q
ucFdIcFJj4CIiko4jTeUPwNgOpQh/aaC0HnUs9QKhS3c5Gp+HjB9R1O48CI1
K84XaKYeS1wYv3nBvIEno0CY1mRwQqwT82cv7eAoLLZnTLYx/I+EkKaW+6yo
j70dJVeMitZEWjDpQibp1edleQrT8TkgS9CO52fwiCxDlvwRWxaNiyxJjj3U
6kdLS8wawjSKHe63l/NTUeo19ImtMWpAaii60yWwhEOQcU3IStMIBC8DfAgb
B77xo4B0iWYUo745SwEajbRurXgIX9t/thNgYQDEETpKumPnJfE8oK9shxOm
NuEwO++QRTJ9Gkb/03wxmcKx2tP5nhci1JlXaXfs4X/8YufPezFDE4MX8cAj
eCgApwHF4mjbezY/R+mCg+/mIN2c0HEhay8MtygEhfjMwz4sz+fwDfSRj+ms
gXxYs0ZdLKZ1aYydFoCgJhCraBgaXCkSgDifUJAMEDfEIwEfshVezbb3E4yA
E8VvL0T2lCFEA4J5wfOEoefFRS1uehSDnGHR0+jLlkznFcXdkYImktC0PlHJ
x+r47T1gAYnFVobt6hTNC0Q5WScEKX7C5klrEsLJ4OrG7DRtaHHMx3TdvG+o
CsJjIi74ROKNlIKRVxNmK5UJqkRS735VAdvyfPBgCtmntN0YhzZman8hQa+w
EkYaizKkZbPNl48KGS4vyLiD3xRXqTkqRvImjw7SKl2ad1xWp97FfEXvGhyh
4WlQ3ISzoiqtQX7be02K9/m8JZF5BcCEBaqZyL1o0VYbH+Mj+h6AmgAEy+Lk
kVgYaA17r3bf/p837/aeMEl3ADWZl/Xsdxx8K/KOOQciCxLm4zKYDwJKolpA
bmydiv2eKzgZIEnoLsbC0oDrR+PBWl9Eb9ES/8sDipgJ6t6JCT2COxStAhu9
mrFl0om7lRhn8eABtE7gEBRL0P4nSprFaIq67vFFH3W1UgWMVamrGRGF2ILB
B/LxM/pxvGibjjNW6SguDUHE6vIUtvHgb1ZHG8P4hytEB6tdIddjjRuJ2a5c
Z43gUsUXIFZhKCGGg0l47jmQOeai+1ZpaH/ShNi3b/xJpX+/GbsEg8K3p0ux
aelUx43XERT01U+fAvzJcZnz1dExX0bBr5oCRGCu5+UBgBokCWIFeMdYjbEU
BGwB3cUdPwaRAcQGeJKxgPYHPUAnHJrX0AlEgGgYzftW/5zXA8PdOQgIN1pW
+xnTRnTSIppZ7e353rungWoIgcrbBMFnO/A/iV9W2gvX5VcyudA+GjRsrvrN
AkE9JV/rqzmg1xKFjLPyIWIUbYrj70FMLWcTXtuK9VjlBM21uDoj5SmIf9Wq
5N+ZEMjyZ3TVi6ygS5BdZ5Q9gAmcPyTWZPmg34x1nc3tt8e4gm3viaH5fAiF
SswPzjAklyQXpReWPazZMsaY9wVQHuZLby2HBXT4cUZy5LN3L1/4DbkAhZCZ
RNwdcN4HiLB8LFFRRgZFhospDo2w/Rvs5N/MNY5jUOp1UhYzEWXlILD7WUcM
DkiasuYroSiWnJzxCoi4nWx7OzMMqT6biulLzSRndp2OJFGvsVu8/HH/nQNL
DpH5byFFxmHZcHNJlkJxSKqAGc2BnaHsliguReUkzJms4Hh9RMQZA60XWmYC
cfupY2PWBUafyzFFzznHS7r+Z1EYCOWINX+HjlvKrhBv60PxspANYuFmowi3
4xivKZwCPcpkcD5BAoVGEHhywaIYSRc6ETtkK/ZRpkV4TJwUR0Nj5MQRg6cY
BWctNCAvowq0YPcyxkWMAf6vV+wv53wH2WUPAykXFJqClhiEEHwNHmYnQcmT
WJhNofyUMfHKOUisi5ksSIPyaNyaU5x4Ze318MY9Yy7bJlVKDEivM5Rqa2vP
SoEi++qTHUXHJYWOf2xRHgG/kCQJmBPZRJ0kKquKHFxwXlHbnqqHt54fLs/J
ckuRRcyEhOj+VFZVwPk0z0jgtBZoEhLxNYDkYtlN/UJLCbz8sZWMQ8qnc8cI
N3ttPAFUJNGb4kRE0APxcXKGtokZJ/CQ598VttFNgvEGAGhioOoWMlZwImEc
ocg0jafhfGPbUTEkQBdDKRmSah+2YSWuA7IRSonKdn/gpA9yN6qsTrAkyWJM
vnCvXKjJVjzh9zE8CXbBBnWRR6dWv5iNEEGzY8P1aenBDX1kDfcYCrgITxvk
gn7/j2u8Ys1gcUdyRSIo32368XjDJCZFFmds0q5zdxvzOSgHoY+RqG4sx51i
jaanuFomZ8tlMf7IOS2I1I3wVWBWaHsB4lyLkaVgqYxj9gwUZYN2JHTs1RwD
bl7A/jjn/IRy1ETiKFiGJiCj0lcWE+cyZfcY4sXcas5OLN1YRHwNseVICuAL
ZKzALSHDBBsaJmewYop+x4M0Jj+mQ2dZjbf86ZC9MPAw7OdyetSI2CGR1op/
ZglKi2g/eAjfkXLgnGqcsNylcDNEKV+JqTXXsyvDTorWYtWJpkyjMzvgEAtm
DLVmCOioZOeVpydliZryDF5waY1vHmZpHMn96iBw/DTCuDGD0ZpuMF6ZdaVD
E866BJyZkT1gUgJJIM5kaI0jdRaNSLCDxbyYWJD6SNUJQVtLm8xJBrWJXyXS
AUHAfUBPIA37IiTUFu5oCWcU19XBo0aibZ6utphRq2jAAW713BFUWabCYdR0
gB92JR4m0ai0LZSYqsCxK1uKavJsqch74Dq9eP4AsMOCUs3YnFRT0qe4s0D6
m6N1AMRMMsWwUQbzVIjTnK2qmdrPpnQMyJIJYFC1Yl5VdHQAcs8sSqPMyw6h
jyVrbosJuwEliGNs3sOpzJpbuyjOeTM1qpeNGkRskE4BP8aNgK8dTsnkaL4m
kcr4spiBEGoU67AoMSG2JAMOB/Bpxuf4eFpNACEegpDGSDalHFdvahRROGq0
qxJniYwDhyZLmF3J8fSIj3+DRB0tUMwkb11BuUsXdAjweC9NrC9TeV2FEm5c
2Qw9PDNzBI3kyBYsIWCCMVbmg/3H/aPsjZoFZjvRR32TJ4w4RI3DmfuStT2i
IbqHuF36PpAuMkna72x7j1fiTKDBLSUig6aoQNagATj0oiwOg1e4JTvMTyzh
x2wOS+s1OrI4wmglZo0YkBnQfp4D/5yhmcONBCbpAr2JQHVgR/ffvK8NzHHv
3dRlkuFAEpsv2JkN3BEwAkNKKqAAdL7tLsLAP0/HRt+ld1DC0UBuAjkc9dN5
XasLgyILViah3Ua1smpm7bdL/aKTxCVBrftl2Vo3nwukrZ8+vdjbeRo4kdkI
3qdz4BUgrAhwMaXix9lBUaGtdGIEIkOrLfFpAlsTxw/lczqs3FaIK3BNTK4l
+Ma+QYoePKuW1or3l4OyVRZshDbDgQQejoHNJBsi4BSQjSBlpcnE/AnBFF6t
aSNJfgQAe/zi9e6fg73//ebF6+fvBGQoS9cUZ0OCo7NhaD2piukJsgnHZV7K
sRWN0uT1OFvPUUMgWwO2ASkGukTfEVkIaRKmZIM2C0RkMkHNeOlpNYNtb3/O
LNZ4URs5AKzhC9iaozB6G6GjrEQpZ2Vd0vVnVhcgQXJWqryPBlTWr9g6re9t
exghLH/5lkudFBSBVfUaMnGb6trwJTzNDoDOTVSs8xnil8SjRU90HOD7TR+/
SCkYNga/zUXpbEZNHDpx1+ssJRiyTmJ1U1RC46wahlATNN80WgHI6rXG9NZj
3Jg1cUBzV4xGdoUaGfoFTOkMJxwCfeQcQkPE4oI/62I8YzozHddJJAtTY7S4
ryz8nG98dwKyFh6shxqGT5+koCX0BNhHyQT9fOfVTo+1lK2374qjtjGaimfU
XACF1wJLoI/gSBzAYKJqbB2IT5/wGTIRB+92/rSvqSasUqG+TmZBn5+eTLHQ
DmGyuDTXCGQs2j+4KOsHqg89wAcesONcgoGuVzuCzRA4DSQ+tjZAe2zjmq1Z
HjwpFhic+GA2Xz8X17Ys8dCCdQRCcYnzIdVMf5oKKkJqOzVmOTTIYCmeIIoH
dB6QVh/YuCz24db1HGQdd1+MEfQXpsAgFJ14v9Bt/CG0ujYFASTfX39gbv5g
AE9eYATML3Y4vhPaOxpeIXlufD+CG8BL6T5FHgZO1iA/EttPiBLO1xP7an1x
Aoi+mI4DTJbm26m9fbqYnsGa8SYRB3kic56gVOv2A0NnBCKDrcnnQRSF/Mwv
IF3oJuG9yFm4jTKn1yJnzba+AN9y1ko8OTjjyg10M7E3z0E4OYX5NKEdpTCh
Uf+E4oEdtThalIT4gV03psRR9natHA0YwyMKcP3e2z1eAMrNMfrF26kqoOd/
GNtLxX8emPhR3sR6G37+u7z807w69F6OXxG7/8M5/PWf+J+T8Qyv8JNIZF4C
Qyu8d0AI+aAKccFQGbxBFPLTp+Dl85cgATUoPnLYD049oR/0xv8aH8wXHwC3
v6fvUlb2I7fyENzYXx0s7b3Gm3D3rapcNh/1kTf7oYBbrzWUqHtrzzjTG7T0
kbh5cdR+X8QjT6Ua4O/kyzC0tl1NAD7yvB0G0f4Yz+YNbnJ93D7zj7x3re/t
nLbZHysw5J7QPXjkea9QkLgoxdjFgbI2WJD1z2ktJiZTo2oCatr8ggko7O1y
PkbzNFElZ9xtnEdvLLki48viCLgJ85vv6oe8Sr71FNMBy59Bt0GpjW5uN4qS
4dtjVHVRBaXcwQuSsyal+RLAC3YSAP5vHtC+aYWclcq1cO4YHgtCPmsS6szw
sx8X3npyPpHK/ojSfF6/IoTFclQqGM70PpaeQ8hSYO+jaw21S2FWWuOiKs3r
eEif7+3/yfvDtKyP/nNaLg+3QRbH04yoBPOb/vzI++n4glj/f/CpBuliPAWs
eswBD685EeetBkcJM51z2Sif4onGKKrMNG/icL6asUsJTUnIsWy4rrVLsbUA
S/SULKOjcqc2m9oYTjlV4/vv0Qvr7Uuxo+nf2YL4/fcss3B6tpSBOaVAdUo2
lTnQu6ZQknV9Y1YHfBlZ+dvyaEohx63PKg7VZmSb0LBw3mGSTFW32IJ+waFh
VHCLXLk0TJ9cFeMknpKYvscHA+QrnMPj8mI+4+PqmwnZXEPzLOu7qLGYoWtb
kUt9X3PxOVW2PsmPRtp7vBv8aGeU4Iz2y+owmFC9oQN83ik9VCuEAg0QYrkE
SWHjJTXqLDTHt2t9A6wKNGy7BpXnhNzJEofFhcd+9ibO2GZBLB8TsiHB2tl/
tR3CUuBnEOIqUlzFLum9GBot1bvg1Djbe7CaVkuxsRwuVkeALATM3Tc/Et07
KWEeF7QMCi5cgA6PHiCPtT3+NJtjp4v5TLQZhXjbMV8DDxjj1ePpKZDRDCf4
I3C1g+nRChmJMiWcIboIRZd/0rBN8KnjZGj1x+reNoVtrHDpOD9JOZJAS/iq
tTocXIjRTjVT0mfQ0MKu/pUzRQ1C294a4uxfqkWsmSVDCNK8xNrNGZBrqZTU
PPxaGwWRkTALpXtCxpy3ka2CPcPILbU+mSg5slOU8ocEukr0CyViYiD9HJTc
33e8izhTRgzUWMpiQv4ZoAGzKdBMFb8mEjIrdm114uIxxKNJqe7k38XIe9Sl
65KNipjYP61ZG30jXNZ7vEJLDa4ezuF/7aC/tP3s06pYHpjHCEhPX+y8e/zj
06d7b/fpDTHIum+xaV+C19SlpK+/fvty510AnOnNztvn+69fkZoHOgPFAROT
GGulRo61+PRIg47/+OAQgFc++AcwjddPXnvF2NZ03Pr/3zg0NCx6AwA=

-->

</rfc>
