unimsg provisional

spec/unimsg-v0.umsg

%unimsg 0 spec/unimsg/v0 · 1146 lines · 73358 bytes of text · 66821 bytes canonical · the raw file

Read it as structure instead →

Point at anything below — a sigil, a literal, a brace — and the card says what it is. Keyboard: tab through the document. Every explanation is also printed in full beneath the source.

%unimsg 0 spec/unimsg/v0

-- The unimsg v0 specification, written in unimsg.
--
-- Self-hosting is not a stunt here. The format claims that its own rules are
-- expressible as data, and a specification that cannot be written in the thing
-- it specifies has not earned that claim.
--
-- This document is sufficient to implement a parser and a canonical encoder
-- without any other material. Where it is not, that is a defect in this file.

spec @unimsg/v0 {
  title   "unimsg v0 — text syntax and canonical encoding"
  status  :provisional
  release "v0.1 — 2026-08-23. A release label for this document and the nine
           implementations that agree on it, NOT a format version: the header
           `%unimsg 0` is the format version and stays 0 until something in the
           bytes changes.

           v1 is the goal and not the next step. See docs/11, which reaffirmed
           `never label it v1` on the day the case for v1 was strongest — five
           defects were found that day, every one invisible to every check that
           existed that morning, and a version number is a promise about what
           has stopped changing."
  base    "RFC 8949 (CBOR)"
  doc     "A human text syntax for CBOR with degradable extensions. The text
           form is a lossless projection of the binary form: text -> CBOR ->
           text -> CBOR is byte-identical."

  -- ===================================================================
  -- KERNEL
  -- ===================================================================

  kernel normative {
    doc commentary "Everything else is a composition over these. A value is one of:"
    types [
      | name       cbor-major  notes
      | :"null"    7           "simple value 22"
      | :bool      7           "simple values 20 and 21"
      | :int       0           "unbounded; beyond 64 bits use tag 2 or 3"
      | :float     7           "IEEE-754; NaN and infinities are values"
      | :bytes     2           "opaque octets, never text"
      | :text      3           "UTF-8, not normalised"
      | :seq       4           "ordered"
      | :map       5           "keys unique by canonical bytes"
      | :tagged    6           "a value qualified by a tag"
      | :array     6           "a homogeneous numeric array: an RFC 8746 tag over a byte string. See arrays"
    ]

    a-key-is-answered-at-three-layers "AND THE THREE ANSWERS DIFFER, which is
       not a defect in any of them. Asking `what may a key be` without saying
       WHERE produced a specification, a profile and six implementations that
       each answered a different question and all sounded like they were
       answering the same one.

       THE KERNEL admits any canonical value as a key, and D1 settles their
       equality: byte equality of the canonical encoding. So 0.0 and -0.0 are
       two keys, because f90000 and f98000 are two byte strings, and 1 and 1.0
       are two keys for the same reason.

       THE V0 PROFILE narrows that to text and integer keys. Not for elegance:
       a float key is F6 — every language's float comparison says -0.0 == 0.0
       while their canonical forms differ, so a map holding both cannot be
       represented at all in a host whose map is a hash table. A byte-string
       key is refused for the mirror reason, being unhashable outright in some
       hosts and identical to a text key in others.

       THE TEXT SYNTAX writes a key as a word or a quoted string, and has a
       spelling for nothing else. So a document with an integer key is legal,
       encodes, decodes and hashes, and HAS NO TEXT FORM — the same way a
       document read back from CBOR has no comments.

       PROFILE CHECKING IS A SEPARATE ACT FROM DECODING, so a decoder that
       refuses a key the profile ALLOWS — text, or an integer — is not being
       strict, it is being wrong. Six implementations refused an integer key in
       six different ways while this document and the v0 profile both said it
       was permitted, and one of them answered with a crash.

       AN IMPLEMENTATION MAY STILL REFUSE WHAT IT CANNOT REPRESENT, and must
       say which of the two it is doing. The reference refuses a float key at
       the decoder, and that is a representation limit rather than a profile
       check: its values live in a hash map, so f90000 and f98000 arrive as one
       entry and a pair is lost in silence. Refusing is the honest answer to
       that, and pretending it was the profile talking would hide a limit
       behind a rule."

    a-quantity-carries-its-unit-as-a-qualifier "`mass kg 5.97e24`, and the
       shape is normative even though the units are not.

       THE SYNTAX WAS ALREADY HERE. A bare word before a value is a qualifier
       and can be nothing else, so this parses, encodes and round-trips without
       any change to the format — what was missing was anybody saying it was
       THE way, which is why three documents in this repository invented three
       conventions: a units block mapping name-suffixes to prose, a unit buried
       in a column name, and a sibling key. No two agreed and nothing read any
       of them.

       WHICH UNITS EXIST IS NOT THE KERNEL'S BUSINESS. A list of units with
       meanings is a registry, a registry is governance, and this project
       deleted governance on purpose — the same reasoning that made tags
       hash-derived. So the kernel fixes the SHAPE, which makes the question
       `what unit is this quantity in` answerable for any document by anything,
       and vocab/qualifiers/units-v0.umsg carries a set documents may adopt,
       extend, or ignore in favour of their own.

       This is F19, and the answer is the one F21 arrived at from the other
       direction: mechanism in the format, policy in a composable extension."

    a-formatter-refuses-what-it-cannot-spell "It does not invent a spelling.
       Rendering the integer key 1 as `\"1\" 2` produces text that re-reads as
       a TEXT key and encodes to different bytes — a round trip that silently
       changes the document, which is worse than no round trip at all.

       WHAT THE REFERENCE DID INSTEAD, before this was written down, was worse
       than either: it rendered `{1: 2}` as `1 null`. The key stringified, the
       lookup for the stringified key found nothing, and the formatter emitted
       a pair that was neither in the document nor readable back."
  }

  -- ===================================================================
  -- LEXICAL STRUCTURE
  -- ===================================================================

  lexical normative {
    encoding "UTF-8"

    word-runes {
      doc      "What may appear in a bare word, key, symbol name or sigil payload."
      accept   [ :unicode-letter, :unicode-digit, :unicode-mark ]
      punctuation "_-./+"
      note     "Marks are essential, not an edge case: without them the IPA
                affricate d͡ʒ and every pointed Arabic form are unwritable.
                Mathematical symbols are NOT word runes; quote them."
    }

    sigil-payload-runes {
      doc  "After a sigil, ':' and '=' are additionally permitted, so that
            #sha256:9f2a and ~b64:iVBORw0KGgo= lex as one token."
      adds ":="
    }

    sigils [
      | glyph  token       payload            example
      | "@"    :identifier "word"             "@ord-88213"
      | "->"   :reference  "an identifier or a path"  "-> @cust-4471, -> @lexicon.entries.kitāb"
      | "#"    :hash       "algorithm:hex"    "#sha256:deadbeef"
      | "~"    :bytes      "encoding:data"    "~hex:ff00 or ~b64:iVBORw0KGgo="
      | ":"    :symbol     "word"             ":dispatched"
      | "!"    :extension  "name, then value" "!acme/hint { zone 4 }"
      | "^"    :array      "type, or type:shape; then [ elements ]"  "^f64 [ 1.5, 2.5 ] or ^i16:2x3 [ … ]"
      | "|"    :table-row  "cells"            "| sku qty"
      | "--"   :comment    "to end of line"   "-- a note"
      | "%"    :header     "unimsg only"      "%unimsg 0 label"
    ]

    byte-payloads "SETTLED 2026-09-02, closing issue 006. `~hex:` takes an even
       number of hexadecimal digits in either case and nothing else; the
       formatter emits lower case. `~b64:` takes the RFC 4648 section 4
       alphabet — A to Z, a to z, 0 to 9, + and / — padded with = to a multiple
       of four characters, and nothing else: no base64url (- and _), no
       unpadded tail, no whitespace, no line breaks. Two spellings of one byte
       string is what canonical encoding exists to prevent, so the url-safe
       alphabet is not a second option; it is malformed.

       Stated because it was not, and the silence cost a real document: a
       producer tested only on a runtime whose decoder accepts base64url
       shipped a blob that a browser refused, and no check could have told it
       so, because nothing here said which language ~b64: was. The examples
       were standard and padded; that was the intent, and now it is the rule.
       The rejects table under conformance carries the vectors."

    reserved-sigils {
      doc    "Held back so a future addition cannot silently reinterpret text
              that parses today. Encountering one is an error."
      glyphs "&$*?\\"
      spent  "^ became the typed array sigil on 2026-09-02 — the first of these
              to be used, and used for exactly what they were held back for: an
              addition that reinterprets no text that parsed before it"
    }

    reserved-literals {
      doc    "Bare words that are values rather than annotations. A fixed
              lexical list, so no coercion is value-dependent: NO is never
              false. These may NOT be used as symbol names — ':true' is a
              symbol named true, which is never what an author means, so it
              is an error."
      nor-as-a-bare-key "The same rule, for the same reason, in the other
              position: `null 1` is a pair whose key is the word null, which is
              never what an author means either. Quote it — `\"null\" 1` — and
              the intent is unambiguous to a reader as well as to a parser.

              This was found by four independent implementations refusing a
              document the reference implementation accepted. The specification
              had ruled on symbol names and been silent on keys, and every
              independent reader concluded the rule extended; only the
              reference concluded it did not. Four to one is not a majority
              vote on a language question, but it is a strong signal about what
              the text actually says, and the consistent reading is the one
              adopted here."
      words  [ :"true", :"false", :"null", :"nan", :"inf", :"-inf" ]
    }

    separators {
      value-must-start-on-the-key-line true
      doc    "A key-value pair ends at a separator, so a value may not begin
              on the line after its key — that newline would end the pair.
              Long strings wrap freely, since a string may span lines.
              A key-value pair ends at a separator. Newline and comma are two
              spellings of the same thing, one of them invisible. Runs of
              separators collapse."
      forms  [ :newline, :comma ]
    }

    strings {
      delimiter "\""
      escapes   [ :backslash-n, :backslash-t, :backslash-r, :backslash-quote, :backslash-backslash ]
      note      "May span lines. Any other escape is an error."
    }

    numbers {
      doc commentary "A leading '-' begins a number only when a digit follows;
           otherwise it belongs to a word such as by-sequence."
      forms [
        | form        example    lexes-as   note
        | :integer    "-42"      :int       "arbitrary precision"
        | :decimal    "19.99"    :decimal   "UNMARKED — the general case"
        | :float      "2.5f"     :float     "marked with a trailing f"
        | :scientific "6.022e23" :decimal   "exact unless marked f"
      ]
      note commentary "A number immediately followed by word characters is a malformed
            number, not a number then a word: 12abc is an error."

      the-marker-does-not-require-a-point "`f` marks the number binary rather
            than exact. It attaches to ANY of the forms above and imposes no
            shape on the mantissa: `0f`, `2f` and `-3f` are floats exactly as
            `2.5f` is, and `6e23f` is one with no point in it at all.

            Said outright because the table shows only `2.5f` and two
            implementations read the single example as a requirement, refusing
            `0f` while accepting `6e23f` — which is the same absence of a point
            and was accepted because the exponent made it look decimal. A
            corpus document writing `min [ 32.81f, -35.2f, 0f ]` is what
            surfaced it.

            Nothing canonical turns on this. Every formatter here renders float
            zero as `0.0f`, so the two readings differ only over what an author
            may WRITE, and the disagreement could not show up in a comparison of
            bytes."
    }

    timestamps {
      doc     "Tried before numbers, since 2026-08-03 would otherwise lex as
               2026 followed by an unexpected '-'. At least YYYY-MM is
               required, so a bare year stays an integer."
      pattern "^\\d{4}-\\d{2}(-\\d{2}([T ]\\d{2}:\\d{2}(:\\d{2}(\\.\\d+)?)?(Z|[+-]\\d{2}:\\d{2})?)?)?"
      note    "The literal text is preserved verbatim. Precision is
               information: 2026-08 is a month, never a widened instant, and
               an offset describes the observer."

      the-match-is-bounded "AT MOST 64 CHARACTERS, and an implementation may
               match against a window of that size rather than against the rest
               of the document. Said because leaving it unsaid cost three
               implementations the same defect.

               THE PATTERN IS ANCHORED AND SHORT, so `match what is left` and
               `match the next few characters` accept exactly the same input.
               They are not the same program. Where the rest of the input is a
               borrow — a rust slice, a C pointer — or where the matcher takes a
               start index, as kotlin and dotnet do, the first spelling is free.
               Where it is a copy, as it is in go, dart and javascript, it is
               O(n) per token and quadratic per document, and it stays invisible
               until somebody parses a megabyte. See F31."
    }

    times-of-day {
      doc          "A wall-clock time, tried after the date-rooted form and
                    before numbers, for the same reason: 03:52 would otherwise
                    lex as 03 followed by an unexpected colon. It shares the
                    timestamp tag, because a time of day is a temporal value at
                    a precision rather than a new kind of thing."
      pattern      "^\\d{2}:\\d{2}(:\\d{2}(\\.\\d+)?)?"
      no-offset    "A time carrying a zone but no date is a confusing object,
                    and what opening hours, watch changes and prayer times
                    actually need is the wall clock. Adding an offset later
                    breaks nothing."
      two-digits-for-the-minute "Which is what keeps ratios out. `25:1` and
                    `1:1` are quoted strings in a document here, and a
                    one-digit minute never matches, so they stay strings. A
                    literal that swallowed ratios would change the meaning of a
                    document that already parses."
      ranges-are-not-checked "The shape is checked and the clock is not, which
                    matches the date form: `2026-13-45` is accepted today, so
                    `25:10` is too. Both are shapes rather than assertions
                    about the calendar, and inheriting one rule beats inventing
                    a second."
    }
  }

  -- ===================================================================
  -- GRAMMAR
  -- ===================================================================

  grammar normative {
    notation "EBNF"
    productions [
      | rule         definition
      | :document    "[ header ] , { separator } , [ pair , { seps , pair } ] , { separator }"
      | :header      "'%unimsg' , int , [ word ] , separator"
      | :pair        "key , { annotation } , value"
      | :key         "word | string"
      | :annotation  "word | identifier"
      | :value       "map | seq | table | array | scalar | tagged"
      | :map         "'{' , { separator } , [ pair , { seps , pair } , { separator } ] , '}'"
      | :seq         "'[' , { separator } , [ value , { seps , value } , { separator } ] , ']'"
      | :seps        "separator , { separator }"
      | :table       "'[' , { separator } , row , { seps , row } , { separator } , ']'"
      | :row         "'|' , { cell }"
      | :array       "'^' , element-type , [ ':' , extent , { 'x' , extent } ] , '[' , { separator } , [ element , { seps , element } , { separator } ] , ']'"
      | :element     "int | decimal | 'nan' | 'inf' | '-inf' | 'null'"
      | :cell        "value"
      | :scalar      "int | decimal | float | string | symbol | timestamp | time-of-day | bytes | reserved-literal"
      | :tagged      "identifier | reference | hash | extension"
    ]

    rules {
      annotations-precede-the-value "After a key, zero or more bare words are annotations, then exactly
         one value. gloss en \"student\" is key gloss, annotation en, value
         \"student\"."

      bare-words-are-always-annotations "A bare word is never a value. Symbols are written :name. This
         removes a positional rule and with it a silent ambiguity: [ a b ]
         would otherwise mean one annotated value while [ a, b ] means two
         symbols, and both round-trip cleanly."

      identifiers-may-annotate "An identifier at the end of a value position is the value; followed
         by more, it annotates. Unambiguous either way, since it is always
         spelled @name. This is what lets 'lexeme @lex/x { … }' parse with no
         extra grammar."

      a-separator-between-items-is-required "The grammar above says seps, meaning one or more, and not { separator },
         meaning zero or more. An earlier version said the latter, which made
         'a 1 b 2' and '[ 1 2 3 ]' grammatical while the prose beside it said a
         pair ends at a separator. Four implementations read the prose and
         refused them; a fifth read the grammar and accepted them, which is how
         the contradiction was found — the EBNF had never been implemented from
         before, only read.

         Required is the correct reading: optional separators reintroduce the
         whitespace ambiguity that the symbol sigil was adopted to remove."

      duplicate-keys-are-an-error "In any map, at any depth. JSON leaves this undefined and it is a
         real interop hazard; under content addressing it is worse, because
         two documents that decode identically would hash differently."

      what-a-reference-denotes "A reference names one of two things, and which
         one is visible in the reference itself.

         A name containing no dot denotes an identifier — something declared
         with @ somewhere. A name containing a dot denotes a path from the root
         of the document holding the reference, each segment a map key.

         The distinction costs no syntax because infix dot is already reserved
         for paths, and both forms already parse: a reference is stored as one
         opaque string either way, dots included.

         Why both. An identifier is a stable name that survives the thing being
         moved, and must be declared. A path is a location that needs no
         declaration and breaks if the document is reorganised. Neither is
         better; they answer different needs, and requiring only one imposes
         its cost everywhere. Requiring identifiers makes every entry of a
         keyed collection write its own name twice, with nothing checking the
         two agree. Requiring paths makes every reference fragile.

         A key that itself contains a dot cannot be reached by a path, because
         the dot is a separator. Such a key needs an identifier.

         A PATH IS ROOTED AT THE DOCUMENT, AND ALSO AT ITS SOLE TOP-LEVEL BLOCK
         WHEN THERE IS EXACTLY ONE. Almost every document is one named block —
         `language @lang/akk/ob/v0 { … }` — and inside it nobody writes
         `@language.sources.x`, because the block is named for what the whole
         document is about and repeating that inside its own document is noise.
         They write `@sources.x`, and they are right.

         MEASURED BEFORE THE RULE WAS CHANGED, across fifty-seven documents:
         fourteen dotted references resolved from the document root, one
         hundred and forty-two resolved only from inside the sole top-level
         block, and five resolved neither way. A rule that a hundred and
         forty-two references disagree with is not a rule anybody is following.

         The fallback applies ONLY when there is exactly one top-level block,
         so resolution stays deterministic: a document with two of them has one
         root and no ambiguity about which."

      a-reference-outside-the-set-says-so "`external`, written as a qualifier
         on the reference:

           src external -> @genbank/OQ441238

         WITHOUT IT A CHECKER CANNOT REPORT ANYTHING USEFUL. A GenBank
         accession, an IMO ship number and a customer id in an example about
         sigils all resolve to nothing, and so does a typo — and nothing in the
         document distinguishes them, so a checker either stays silent about
         both or shouts about both. Marking the deliberate ones is what makes
         everything left over a real question.

         It changes no encoding and no resolution: a reference is inert either
         way, and a checker still reports rather than judges. What the mark
         does is move a reference out of the checker's questions and into the
         document's statements, where a reader can see it."

      key-it-if-you-will-reference-it "A consequence worth stating, because it
         decides how a document is shaped. A path segment is a map key, so a
         row of a table cannot be addressed: rows are sequence elements and
         have no names. An identifier written in a row annotates that row's
         first value rather than naming the row.

         So a collection whose members will be referenced should be a map keyed
         by their names, not a table. A table is right for rows that are read
         together and pointed at never — which is most tables, and exactly why
         the distinction is easy to miss until the first reference is needed."

      references-are-still-inert "None of the above is resolved while reading.
         A decoder produces the reference and stops, exactly as before —
         resolution is a separate act performed by something that has chosen a
         set of documents to resolve against, and is no more part of decoding
         than following a hyperlink is part of parsing HTML."

      no-external-target-syntax "SETTLED 2026-09-02. The format defines no way
         to say WHERE an external target lives — no URL form, no repository
         name, no locator. A reference is an identifier or a path, `external`
         says the author knows the target is not in this document, and that is
         the whole of what the format carries. Locating the document that
         holds @genbank/OQ441238 is the business of whatever chose the document
         set, exactly as resolution is, and a locator inside the reference
         would make the reference wrong the day the target moved. A vocabulary
         that needs to say where its members are found carries a locator
         beside the reference as an ordinary value; the kernel does not."

      resolution-is-relative-to-a-set "A path is rooted at its own document; a
         reference across documents therefore uses an identifier. Whether any
         given reference resolves depends on which documents are in hand, so a
         reference that resolves in no set is not thereby invalid — the format
         cannot know what else exists. A checker reports; it does not judge."

            table-is-sugar "A table encodes exactly as a sequence of maps with identical key
         sets. Header cells name the fields; each row must supply exactly as
         many cells. Cells need no separator because an annotated value is
         self-delimiting."

      authored-order-is-kept-beside-the-value "A table's columns are map keys,
         and map keys sort canonically, so the order a table was written in is
         not recoverable from the encoding. That is correct and must stay
         correct: two documents that decode identically have to encode
         identically, or an address means nothing.

         But the order carries meaning to a reader — an identifier, then what
         was given, then what is expected — and losing it makes a vector table
         materially harder to use. So the authored order is kept OUT of the
         value, alongside the comments, which solve the same problem the same
         way: a decoder produces the map, and the document separately records
         which order its columns were written in, keyed by path.

         AND A BLOCK'S PAIRS ARE THE SAME CASE, which took longer to see only
         because a block does not display its keys side by side where the loss
         is obvious. A specification whose sections arrive conformance,
         grammar, kernel, scope is in an order nobody chose, and the reader is
         left to reassemble the argument. So a document records both: the
         order each block's pairs were written in, and the order each table's
         columns were written in — both outside the value, each keyed by the
         path of the block or the table, with the empty path for the document
         body and the indexed form a.b[2].c for a sequence element, so that
         two tables in one sequence do not record under the same key.

         A SEQUENCE OF BLOCKS THAT RENDERS AS A TABLE never had a header to
         record, because it was not written as one. Its columns take the pair
         order of its first row instead — the same record answering the same
         question one level down. Without that clause the two ways of writing
         the same value render differently, which is the sugar failing to be
         sugar.

         What follows from that, and is the honest cost: the order survives a
         text round trip and does not survive an encode and decode. A document
         read from CBOR has canonical order throughout and no way to know what
         the author intended, exactly as it has no comments. Anything that
         needs the authored order must read the text."

      a-final-row-needs-no-separator "SETTLED 2026-08-23, in favour of the
         seven implementations that already accepted it, and against the
         grammar as it was written. `x [ | a b, | 1 2 ]` is well formed: a
         separator goes BETWEEN rows, and the closing bracket ends the last
         one.

         The production was the defect. A map's rule carries a `{ separator }`
         tail and so does a sequence's; the row rule was written without one,
         which made the table the single place in the format where a closing
         bracket could not follow the last item. That is an oversight in an
         EBNF line, not a decision anybody took.

         WHAT DECIDED IT was asking the two strict implementations the same
         question about the other two containers. Rust accepts `x [ 1, 2 ]` and
         `x { a 1, b 2 }` and refuses only `x [ | a b, | 1 2 ]` — so the strict
         reading was not a principle either of them held, it was this
         production leaking into one code path. Dart did the same.

         The precedent stands unchanged: a-separator-between-items-is-required
         is about BETWEEN, and always was. `x [ | a b | 1 2 ]`, with no
         separator between the two rows, is still malformed.

         What was never at stake: any canonical document. The formatter always
         ends a block table's final row with a newline, so every document this
         project has emitted satisfies both readings, and the disagreement was
         reachable only by a hand-written single-line table. It was found by
         writing one into a conformance vector and discovering the vector had
         never been executed."

      header-cells-are-keys "A header cell names a map key, so it may be
         written the way a key is written anywhere else: a bare word, or a
         quoted string when the name contains a space.

         The first version of this rule allowed only bare words, which made a
         table header the one place in the format where a key could not be
         quoted. The failure was silent and misleading: `| hazard  what happens`
         parsed as three columns, and the error arrived on the following row as
         a cell-count mismatch, naming neither the header nor the cause. It
         caught the same author four times in one day across four documents,
         which is a property of the grammar rather than of the author.

         Purely additive: every table already written stays valid and encodes
         to the same bytes, because a bare word means what it always meant."

      rows-are-separated "RESTATED 2026-09-02 with a vector, because the rule
         was written and not enforced. a-final-row-needs-no-separator says
         `x [ | a b | 1 2 ]` is malformed, and on the day that sentence was
         checked the reference and four of eleven implementations accepted it
         while five refused it — and the five were being reported as the odd
         ones. A rule five implementations follow and the reference does not
         is a rule nothing pinned. `x [ | a b | 1 2 ]` is now a reject vector,
         the reference refuses it with a message that names the fix, and the
         four follow.

         WHY MALFORMED RATHER THAN CONVENIENT: a row's cells carry no
         separator, because an annotated value is self-delimiting, so the '|'
         is the only thing that says where one row ends and the next begins.
         Letting a row begin mid-line makes '|' do that job in two positions,
         and the one place this format has been fragile is exactly the row
         boundary — F27, F29, and a cell ending in an identifier swallowing the
         cell after it. One reading: a row begins after a separator. The
         formatter has always emitted that, so no canonical document changes."

      a-header-with-no-rows-is-a-table "SETTLED 2026-09-02. `x [ | a b ]` is
         well formed, encodes to the empty sequence — `a1617880` is a vector —
         and its header is kept beside the value exactly as a table's column
         order is: recorded by path, honoured by the formatter, and lost
         through the bytes. So a formatter renders it back as the header-only
         table it was written as, and not as `[]`.

         This is not a new mechanism. authored-order-is-kept-beside-the-value
         already records every table's columns by path; a table with no rows
         is the case where that record is ALL there is to keep. The
         alternative reading — an error — would refuse the idiom this
         repository's own design documents use for a review table nobody has
         reviewed yet, and the other alternative — accept and emit `[]` — is a
         formatter silently discarding what an author wrote, which is the
         failure F16 and F25 were. The tenth implementation accepted it on the
         ground that refusing would be inventing a rule; that ground was right,
         and the formatting half of the answer was missing."
    }
  }

  -- ===================================================================
  -- ARRAYS
  -- ===================================================================

  arrays normative {
    doc commentary "A homogeneous numeric array as a kernel value. Proposed in
         docs/49 on a measurement of one implementation, measured again in
         docs/52 in five, and adopted 2026-09-02: peak memory for a sequence
         of 800,000 floats runs from 8x the encoded bytes in the leanest
         implementation to 145x in the heaviest, a 16,000-row table encodes
         at 1.5x its own text because every row repeats every key, and a
         ten-million-value variable could not be decoded at all. The array is
         the one value model under which an eight-byte number costs eight
         bytes."

    text-form "A sigil, an element type, an optional shape, and the elements
       written as numbers in order, separated as a sequence's items are:

         ^f64 [ 1.5, 2.5, 3.5 ]
         ^i16:2x3 [ 1, -1, 2, -2, 3, -3 ]
         ^u8 [ 1, null, 3 ]

       THE TYPE IS THE MARKER. Elements carry no f; an unmarked 1.5 inside
       ^f64 is a binary64 because the array says so, and 1.5 inside ^u8 is an
       error. Integer elements are decimal integers within the type's range.
       Float elements are any numeric literal, or nan, inf and -inf.

       null IN AN ELEMENT POSITION MEANS MISSING — a property of the position,
       not a value at it — and puts a validity mask on the array. A fill value
       is a number pretending not to be one; docs/52 read three of them out of
       one file by hand.

       A SHAPE IS EXTENTS JOINED BY x, at least two of them; the element count
       must equal their product or the document is in error. A
       one-dimensional array's shape is its length and is not written. Rows
       run along the last extent."

    element-types [
      | type  tag  width  holds
      | :u8   64   1      "unsigned integer"
      | :u16  65   2      "unsigned integer"
      | :u32  66   4      "unsigned integer"
      | :u64  67   8      "unsigned integer"
      | :i8   72   1      "two's-complement integer"
      | :i16  73   2      "two's-complement integer"
      | :i32  74   4      "two's-complement integer"
      | :i64  75   8      "two's-complement integer"
      | :f16  80   2      "IEEE 754 binary16"
      | :f32  81   4      "IEEE 754 binary32"
      | :f64  82   8      "IEEE 754 binary64"
    ]

    encoding "RFC 8746's, and no other: the substrate already registers a tag
       per element type, and a parallel list would be the vendored-table
       mistake made as a design decision. Elements are packed BIG-ENDIAN into
       one byte string under the type's tag — network order, which is how
       every other number in a CBOR stream is written. The little-endian tags
       (69–71, 77–79, 84–86), the clamped uint8 (68), binary128 (83, 87) and
       column-major (1040) are REFUSED by a decoder: two encodings of one value
       is what determinism forbids.

       A SHAPE is RFC 8746's tag 40, row-major: 40([ [ extents… ], array ]),
       written only when there are two or more extents.

       A MASK is tag 70107: 70107([ bitmap, array ]), where the array is the
       shaped or unshaped array, the bitmap is a byte string of one bit per
       element, least significant bit first, 1 for present, padding bits zero,
       and every masked position holds zero bits in the payload. A mask with
       every position present is not canonical and is refused."

    equality "NEEDS NO NEW RULE. D1 says byte equality of the canonical
       encoding; the encoding above is deterministic; so two arrays are equal
       exactly when their element type, shape, mask and element bit patterns
       are — which is what docs/49 asked for, and it falls out of the format
       rather than being added to it.

       ONE CONSEQUENCE: only the canonical quiet NaN — 7e00, 7fc00000,
       7ff8000000000000 — may appear in a float array. The text has one
       spelling for NaN, so a NaN with a payload would be a value with no
       round trip, and a decoder refuses it."

    one-text-per-float "THE BURDEN, stated here rather than met in the twelfth
       implementation. A float element is written in the SHORTEST digit string
       that reads back as the same value AT THE ARRAY'S WIDTH — binary16,
       binary32 or binary64 — laid out as ECMAScript lays out a Number:
       positional when the decimal exponent lies in [-6, 21), otherwise
       d.ddde±N with the exponent's sign always written; -0 keeps its sign
       because the bit pattern is the value. 0.1 in ^f32 is `0.1`, not
       `0.10000000149011612`. Scalar floats follow the same rule with their
       marker appended (see formatting.floats-keep-their-marker), so a float
       has one text wherever it stands.

       WHERE TWO DIGIT STRINGS OF THE SHORTEST LENGTH BOTH READ BACK AS THE
       VALUE, the canonical text is the one nearer the value, and on an exact
       tie the one whose last digit is even. SO THE SEARCH TRIES BOTH
       NEIGHBOURS at each digit length — the exact expansion truncated, and
       that truncation incremented — and not one candidate from a
       round-to-nearest. Added 2026-09-03, found by the
       JavaScript implementation on a binary32 element of a real file:
       26.6640625 is `26.664062` and `26.664063` at eight digits and only the
       first is canonical. A formatter that rounds the exact value at n
       significant digits gets this wrong wherever its language rounds ties
       away from zero, which most do, and no vector had caught it because no
       vector held a tie.

       Chosen because it is completely specified, one implementation's
       runtime already does it natively, and every other language here can do
       it from its shortest-float routine and a dozen lines of layout. Pinning
       any one language's %g would have pinned that language's habit."

    guards "An array is one level of nesting holding any number of elements,
       so a guard framed in depth guards nothing here. A decoder checks the
       byte string's length against the element width before it allocates
       anything, checks a shape's product against the count with overflow
       detection, and MAY refuse an array above an element count it declares —
       a fixed-arena implementation refused 354,753 in docs/52, honestly and
       with a position. profiles/v0 says nothing about element counts yet, and
       that is the open question docs/49 raised and this specification has
       not closed."

    not-in-v0 "Compression, chunking, complex numbers, sparse matrices, a
       datetime element type, and a unit on the array rather than on its
       elements. docs/49's not-in-v0 table says why for each; docs/52
       confirmed the datetime deferral against a real file. Units, named axes
       and uncertainties are the measurement vocabulary's, not the kernel's."
  }

  -- ===================================================================
  -- ENCODING
  -- ===================================================================

  encoding normative {
    determinism {
      profile "RFC 8949 section 4.2 core deterministic encoding"
      required true
      note commentary "Mandatory, not a mode. Shortest-form integers, definite lengths,
            shortest-form floats, map keys sorted by their encoded bytes.
            An encoder must refuse to emit anything else."
    }

    decoding {
      doc commentary "The specification was encoder-only until independent implementations
           built decoders anyway and each invented its own strictness rules.
           A reader that accepts input an encoder could never have produced is
           not interoperable with one that refuses it."

      reject-non-deterministic-input true
      reject-trailing-data true

      how "The simplest conforming check, and the one least able to miss a
           rule: re-encode the decoded value and compare the bytes with the
           input. Enforcing determinism rule by rule during decode verifies
           the causes; this verifies the property, and cannot be incomplete.
           Report the offset of the first differing byte."

      note commentary "A decoder must not repair. Sorting an out-of-order map or
            shortening a non-shortest integer silently turns non-conforming
            input into conforming output, which is how divergence spreads."
    }

    byte-order-mark {
      doc commentary "A leading U+FEFF is an encoding marker, not content. Implementations
           observed splitting on this: two rejected it, one silently consumed
           it, which is exactly the kind of gap a specification exists to close."
      permitted true
      ignored   true
      note commentary "Permitted and skipped, following RFC 8259's treatment for JSON.
            Rejecting is defensible but hostile — editors emit these without
            being asked — and the marker carries no data, so ignoring it loses
            nothing."
    }

    tags [
      | number  name          content                                    notes
      | 4       :decimal      "[ exponent, mantissa ] both integers"     "RFC 8949 3.4.4; value = mantissa * 10^exponent"
      | 70100   :symbol       "text"                                     "the name, without the leading colon"
      | 70101   :annotated    "[ [ annotation… ], value ]"               "annotations are symbol or identifier tags"
      | 70102   :identifier   "text"                                     "the name, without the leading @"
      | 70103   :reference    "text"                                     "target name WITHOUT the leading @; never resolved by the parser"
      | 70104   :hash         "[ algorithm-text, digest-bytes ]"         "digest is decoded from hex"
      | 70105   :extension    "[ name-text, value ]"                     "name without the leading !"
      | :note   :sigils-stripped "@ -> ! are syntax, not part of the stored name" "applies to 70102, 70103, 70105"
      | 70106   :timestamp    "text"                                     "the literal, verbatim"
      | 70107   :validity     "[ bitmap-bytes, array ]"                  "a typed array with missing positions; see arrays"
      | 40      :shape        "[ [ extents… ], typed-array ]"            "RFC 8746 multi-dimensional array, row-major"
      | "64–67" :unsigned     "byte string, big-endian"                  "RFC 8746: u8 u16 u32 u64"
      | "72–75" :signed       "byte string, big-endian"                  "RFC 8746: i8 i16 i32 i64"
      | "80–82" :float        "byte string, big-endian"                  "RFC 8746: f16 f32 f64"
    ]

    tag-numbers-are-provisional "70100–70106 are placeholders. The eventual scheme is hash-derived, so
       these will change. They are fixed here so that independent
       implementations can agree today."

    mapping [
      | text-form            cbor
      | "{ … }"              "map, text keys"
      | "[ … ]"              "array"
      | "| rows"             "array of maps — identical to the longhand"
      | "123"                "integer, or tag 2/3 beyond 64 bits"
      | "19.99"              "tag 4 decimal fraction"
      | "2.5f"               "float, shortest form"
      | "\"…\""              "text"
      | ":word"              "tag 70100"
      | "word value"         "tag 70101"
      | "@name"              "tag 70102"
      | "-> @name"           "tag 70103"
      | "#alg:hex"           "tag 70104"
      | "!name value"        "tag 70105"
      | "2026-08"            "tag 70106"
      | "~hex: / ~b64:"      "byte string — a kernel type, no tag"
      | "^f64 [ … ]"         "tag 82 over a byte string; 64–67, 72–75, 80–82 by element type"
      | "^f64:2x3 [ … ]"     "tag 40 [ [ 2, 3 ], typed array ]"
      | "^u8 [ 1, null ]"    "tag 70107 [ bitmap, array ]"
      | "true false null"    "simple values"
      | "nan inf -inf"       "floats"
    ]

    decimals-preserve-what-was-written "Mantissa and exponent are stored as written, not canonicalised. 1.00
       and 1.0 are DIFFERENT values, because trailing zeros carry
       significance in money and measurement. 19.99 becomes [ -2, 1999 ]."

    comments-never-reach-the-binary "Comments are lexical. Encoding a document with and without commentary
       must produce identical bytes, or content addressing breaks: a
       signature would be invalidated by fixing a typo in a comment."
  }

  -- ===================================================================
  -- DECISIONS
  -- ===================================================================

  decisions normative [
    | id    subject             ruling                                                        rationale
    | :D1   :key-equality       "byte equality of the canonical encoding of the key"          "native equality diverges: -0.0 == 0.0 but NaN != NaN"
    | :D2   :map-ordering       "unordered; canonical sorts keys by encoded bytes"            "required for content addressing"
    | :D3   :determinism        "RFC 8949 4.2, mandatory"                                     "hashing and signing depend on it"
    | :D4   :finiteness         "values are finite"                                           "indefinite length is streaming, not infinity"
    | :D5   :normalisation      "none; text preserved byte-for-byte"                          "normalising silently alters data"
    | :D14  :bidi-controls      "content, not a threat the encoding may edit away"            "txt-005: the hazard is a renderer mixing trusted and untrusted text"
    | :D6   :comments           "lexical only; survive text to text"                          "in the bytes they would break content addressing"
    | :D7   :tag-space          "hash-derived eventually; fixed numbers for now"              "defers governance without foreclosing it"
    | :D10  :key-types          "any canonical value in the kernel; text and integer in the v0 profile" "profile restrictions are reversible; kernel changes are not. See a-key-is-answered-at-three-layers"
    | :D11  :decimal-default    "unmarked literals are exact decimals; floats marked f"       "the general case should be unmarked"
    | :D12  :units               "a qualifier on the value; the kernel fixes the shape, a vocabulary the set" "a unit registry is governance, and governance was deleted on purpose"
    | :D13  :time-of-day         "a wall-clock literal, sharing the timestamp tag, no offset" "F22: a time of day is ordinary data and could not be written at all"
  ]

  -- ===================================================================
  -- CANONICAL TEXT FORM
  -- ===================================================================

  formatting normative {
    doc commentary "There is exactly one canonical rendering and no options. The point
         of a canonical formatter is to end the argument, not to host it.
         Formatting must be idempotent. The rendering is the layout block
         below, settled 2026-09-03; tools/fmtcompare measures every
         implementation's text against the reference's, document by document,
         and agreement on the whole corpus is a freeze gate."

    ordering {
      rule "The authored order where the document records one, and otherwise
            single-line values first, multi-line after, alphabetical within
            each group."
      authored-order-comes-first "A block's pairs and a table's columns render
            in the order they were written, read from the record that travels
            beside the value. See authored-order-is-kept-beside-the-value,
            which is the same rule stated where tables are defined.

            A formatter that ignored the record would make the record useless.
            The authored order survives a text round trip and nothing else,
            and the formatter IS the text round trip — so a formatter that
            sorts is not a formatter with a different opinion about
            presentation, it is the thing that destroys what the record exists
            to keep. The reference formatter did exactly that for a while,
            against this specification, while three other implementations
            honoured the record and were right against it."
      a-record-may-be-partial "The keys a record names, and that the value
            still carries, render first in the recorded order; any remaining
            keys follow under the fallback rule, and a name the value no
            longer carries is skipped. That is what keeps the rule useful when
            a document is edited between the parse and the format. The
            stricter alternative — honour the record only when it accounts for
            every key exactly — throws the whole authored order away on the
            first pair anything adds."
      it-is-still-idempotent "Reading back what was just emitted records
            exactly the order just emitted, so a second format changes
            nothing."
      one-rendering-per-document "A document is its value AND what travels
            beside it, so there is still exactly one rendering and no options.
            Two documents with equal values and different records render
            differently for the same reason two with different comments do,
            and they encode identically, which is the property that has to
            hold."
      note commentary "None of this matches the binary key order of D2, and it does not
            have to: the binary sorts independently, so text order affects no
            bytes. It need only be deterministic."
    }

    comment-binding {
      rule "A comment binds to the path of the pair it precedes, never to a
            line number, and moves with that pair when ordering changes.
            A comment that FOLLOWS a value on the same line binds to the pair
            just read, and terminates that pair as a separator would."
      trailing-comments-are-legal true
      note-on-trailing "Left unstated, this split four implementations three to
                        one: three accepted a trailing comment and one refused
                        it, correctly, because the specification described only
                        comments that precede. Authors reach for the trailing
                        form immediately — the first document written in anger
                        used one — so it is permitted rather than forbidden."
      why  "A comment left in place while content moves around it ends up
            describing something it was not written about — a confident claim
            about the wrong value, which is worse than deleting it."
      note commentary "A block carrying comments never collapses to flow form, since the
            comments would have nowhere to live."
    }

    inline {
      budget 56
      rule   "Maps and sequences render on one line when every value is
              single-line and the result fits the budget; otherwise block
              form. Flow form separates with commas, block form with
              newlines."
      measured-against "SETTLED 2026-09-02: `the result` is the composite's
              own inline text — `{ a 1, b 2 }` or `[ 1, 2 ]`, brackets
              included — measured against the budget and nothing else. Not
              the key before it, and not the indentation it will sit at. That
              is what the reference has done since its first formatter, so
              this pins a convention rather than changing one, and it is the
              reading under which a value's rendering does not depend on
              where it sits: render once, reuse everywhere, and the
              exponential formatter the implementer's guide spends its length
              on cannot be built.

              Several implementations measured the key or the indentation as
              well, and emitted non-canonical text for values near the
              budget that nothing saw: the byte checks go through the
              encoder, and the order check compares order. `tools/fmtcompare`
              now compares formatter text against the reference, document by
              document, which is the check `format-idempotently` and `one
              canonical rendering` always needed."
    }

    tables {
      rule "A sequence renders as a table when it holds two or more maps with
            identical key sets, no multi-line cells, header names needing no
            quoting, and the inline form does not already fit."
      note commentary "The final column is not padded: trailing whitespace breaks diffs
            and editors strip it, which would break idempotence."
    }

    layout normative {
      doc "SETTLED 2026-09-03, the first freeze gate of docs/50: the rules
           the reference formatter had always followed and the specification
           had never stated, so that eleven formatters can agree byte for byte
           and tools/fmtcompare can say so. Where the reference's habit was a
           bug rather than a rule — a quoted key padded to its unquoted width,
           a Japanese key padded by its bytes, a paragraph folded into one
           line of escapes — the rule below is the fix and the reference was
           changed to match. Every width is measured in Unicode code points
           of the rendered text: not bytes, which over-pad a non-Latin key,
           and not display columns, which no format can define."

      document [
        | rule                                                                                        detail
        | "the header line, then one blank line, then the root"                                       "`%unimsg 0 label` or `%unimsg 0`; a headerless document has neither the line nor the blank. The blank line after the header is the only blank line in canonical text"
        | "the header is THREE FIELDS, not a line of text: the sigil and version, and the label when there is one, each separated by ONE space"  "a document whose header was authored with two spaces renders with one. Stated 2026-09-03 after the Julia implementation found corpus/cases.umsg doing exactly that, and nothing saying whether to keep it"
        | "a root map renders as pairs at depth zero; any other root value renders as itself"        "the closing newline of the last line ends the output"
        | "indentation is two spaces per depth"                                                       "a pair's value that opens a block puts `{` or `[` on the pair's line and the closing bracket at the pair's own indentation"
      ]

      pairs [
        | rule                                                                                        detail
        | "a pair is the rendered key, one space, the rendered value"                                 "the key is bare when every character is a word character and it is not a reserved literal; otherwise quoted. An empty key renders as `\"\"`"
        | "BARE MEANS IT LEXES AS ONE WORD, not merely that its characters are word characters"  "every character of `2024`, `1.5` and `2026-08-06` is a word character and none of them lexes as a word — a lexer returns an integer, a decimal and a timestamp — so all three are QUOTED as keys, in a pair and in a table header alike. Corrected 2026-09-03: the reference had emitted them bare and could not read its own output back, costing three corpus documents their round trip. The JavaScript and Go implementations found the two halves of it independently, and the implementer's guide had carried the rule since the tenth implementation"
        | "keys in a block are padded to a column when the widest RENDERED key is 16 code points or fewer"  "each rendered key is followed by spaces up to the widest, then the one separating space. When the widest exceeds 16 no key is padded"
        | "the column is measured on keys as rendered"                                                "a key that needs quoting counts its quotes, so it lines up with its neighbours"
      ]

      comments [
        | rule                                                                                        detail
        | "a comment renders as `--`, one space, its text, on its own line at the indentation of what it precedes"  "the text is what followed the dashes when read, with surrounding whitespace trimmed; an empty comment renders as the bare `--` with no trailing space"
        | "a pair's comments precede the pair; an element's precede the element; a block's tail comments follow its last pair at the same indentation"  "a trailing comment read from the same line as a value becomes a preceding comment of that pair — but only WITH NO SEPARATOR BETWEEN. A comma has already ended the pair, so a comment after one precedes whatever comes next; `p 1,  -- note` puts the note above `q`, and `r 1  -- note` puts it above `r`. Stated 2026-09-03, found by the Python implementation, and the two readings differ on two corpus documents"
        | "a comment after the last element of a sequence, or the last row of a table, belongs to the ENCLOSING block: it precedes the next pair, or is the block's tail comment"  "so the sequence itself carries no comment and may still render inline or as a table"
        | "a comment on the SAME LINE as a table row binds to that row as an element comment, and so declines the table"  "only a comment on its own line after the last row flows out to the enclosing block. A row is not a pair, so the two rules above overlapped on it until 2026-09-03, when the Rust implementation named the case"
        | "a block or sequence with any comment BENEATH it never renders inline and never renders as a table"  "beneath means at a path strictly under the composite's own — a pair inside it, an element of it. A comment AT the composite's own path belongs to the pair that holds it and renders above that pair, so `a { c 2 }` with a note stays inline. Reading beneath as `at or beneath` turns four corpus documents into blocks; the word carries the whole distinction"
      ]

      strings [
        | rule                                                                                        detail
        | "a string is quoted with exactly four escapes: `\\t`, `\\r`, `\\\"` and `\\\\`"                    "every other character, a control character included, is written as itself"
        | "a NEWLINE INSIDE A STRING IS WRITTEN RAW"                                                  "`\\n` and a raw newline read as the same value; the canonical text writes the newline, so a paragraph stays a paragraph. The characters after the newline are part of the value and are written exactly, so a string is never re-indented"
        | "a string containing a newline is a multi-line value"                                      "it has no inline form, so a block holding one never collapses to flow form, a sequence holding one never becomes a table, and it sorts with the multi-line group under the fallback order"
      ]

      inline-and-block [
        | rule                                                                                        detail
        | "a map or sequence renders inline when every value has an inline form and the composite's own text is at most 56 code points"  "`{ a 1, b 2 }`, `[ 1, 2 ]`: one space inside each bracket, `, ` between members; a pair inside is key, one space, value, with no padding"
        | "otherwise a map renders as `{`, its pairs one per line at the next depth, `}`"             "and a sequence as `[`, its elements one per line, `]`, or as a table when the tables rules allow"
        | "an empty map is `{}` and an empty sequence `[]`"                                           "except a sequence that carries a recorded header and no rows, which renders as the header row alone in block form"
      ]

      tables [
        | rule                                                                                        detail
        | "a sequence renders as a table when it holds two or more maps, every map has two or more keys, every map has the same key set, no cell is multi-line, no comment lies beneath the sequence, and the inline form does not fit"  "a header cell is a key and is quoted where a key would be, so a header such as `\"what it would do\"` keeps its table"
        | "a cell that renders ending in an identifier disqualifies the table unless it is in the last column"  "`@name` before a value annotates it, so such a cell would swallow the next"
        | "column order is the recorded header; failing that the recorded pair order of the first row; failing that the fallback order of the first row's keys"  "the recorded orders are what the parser keeps beside the value"
        | "a cell is a value at the path `row[i].column`, so a block inside a cell records and renders its pair order like any other block"  "settled 2026-09-03 when the .NET implementation found the reference losing that order and failing its own idempotence on one document"
        | "A ROW MAP RECORDS NO ORDER OF ITS OWN: the header is the table's record, so a sequence of maps that does NOT become a table renders each map in the fallback order"  "the two pull opposite ways and both are required. An implementation that stores the authored order on the row map — the obvious place — renders a one-row or table-refused sequence in header order instead of alphabetically, with every byte check still green. Found by the C implementation, 2026-09-03"
        | "a recorded header with no rows renders as the header row alone: `|`, then each header cell after one space, unpadded"  "the table rule applied to a table of one row"
        | "each row is `|`, then for every cell one space and the cell padded to the column's width; the last column is never padded"  "the width is the widest rendered cell in the column, header included, in code points"
      ]

      arrays [
        | rule                                                                                        detail
        | "a typed array renders inline when its whole text fits the budget"                           "`^f64 [ 1.5, 2.5 ]`; an empty array is `^u8 []`"
        | "an unshaped array that does not fit renders TEN ELEMENTS PER LINE"                         "so the first element of every line has an index that is a multiple of ten, and a changed value never reflows the lines around it"
        | "a shaped array that does not fit renders one innermost row per line: as many elements as the last extent"  "so a matrix reads as a matrix; a last extent of zero renders as an empty array"
        | "elements on a line are joined by `, `, and each line sits at the next depth"                "a missing position is `null`; every element's text is one-text-per-float's"
      ]

      scalars [
        | rule                                                                                        detail
        | "an exact decimal renders from its mantissa and exponent, not from the digits as authored"  "with d the mantissa's digit count and e the exponent: e = 0 is the digits then `e0` (`5e0`, `10e0`); e > 0 or d + e <= -6 is scientific — the first digit, then a point and the remaining digits when there are any, then `e` and the normalised exponent with no plus sign: `6.022e23`, `2.1e-36`, `1e5`, `1.0e6` for mantissa 10; otherwise positional: `0.00017`, `0.000001`, `1974.3781`. Where the author put the point is not information the value carries"
        | "a float is one-text-per-float's digits with a point and the marker"                       "`0.5f`, `1e+21f`, `nan`, `inf`, `-inf`"
        | "bytes render as `~hex:` and lowercase hex; a hash as `#alg:` and lowercase hex"            "an identifier as `@name`, a reference as `-> @name`, an extension as `!name` one space and its value, annotations as the bare words then one space then the value"
        | "a symbol renders bare after its colon when its name is a non-empty run of word characters and not a reserved literal, otherwise quoted after the colon"  "the sigil-payload predicate, which is wider than a bare key's: `:1`, `:3d`, `:-1`, `:a.b`, `:2026-08-06` are bare; `:\"null\"`, `:\"a b\"`, `:\"a:b\"`, `:\"\"` are quoted"
      ]

      fallback-order "Where no order is recorded — a document read from bytes,
         or built rather than parsed — a block's pairs render single-line
         values first, then multi-line, each group ascending by the key's
         code points. Single-line means the value has an inline form."
    }

    floats-keep-their-marker "A binary float always renders with a trailing f and a decimal point,
       so it can never re-read as an integer or as an exact decimal. Its
       digits and their layout are arrays.one-text-per-float's, settled
       2026-09-02: shortest round-trip digits in ECMAScript's layout, so
       0.00001f and 1e+21f rather than one language's %g."
  }

  -- ===================================================================
  -- ERRORS
  -- ===================================================================

  errors normative {
    doc commentary "A format is exactly as friendly as its worst parse error."
    requirements [
      :every-error-carries-line-and-column,
      :errors-name-the-fix-where-one-is-obvious,
      :decoding-is-total-and-side-effect-free,
      :nothing-is-resolved-or-fetched-during-parsing
    ]
    examples [
      | input        message
      | "x [ a b ]"  "annotation \"b\" has no value — did you mean \":b\"?"
      | "x :true"    "\":true\" is a symbol named \"true\", not the literal — write true"
      | "a 1, a 2"   "duplicate key \"a\""
      | "x 12abc"    "\"12abc\" is not a valid number or word"
    ]
  }

  -- ===================================================================
  -- CONFORMANCE
  -- ===================================================================

  conformance normative {
    must [
      :round-trip-text-to-cbor-to-text-to-cbor-byte-identically,
      :format-idempotently,
      :reject-duplicate-keys-at-every-depth,
      :preserve-the-integer-float-distinction,
      :preserve-decimal-mantissa-and-exponent-as-written,
      :preserve-timestamp-precision-and-offset,
      :emit-only-deterministic-encodings
    ]

    integer-float-note "Language runtimes without distinct numeric types must use a wrapper.
       JavaScript cannot represent the distinction at all: it maps float 1.0
       onto the canonical form of integer 1, silently."

    self-test {
      doc commentary "An implementation is correct when it agrees byte-for-byte with the
           reference encoder on every document in the test corpus."
      command "go run ./tools/compare -- <your-encoder-command>"
      note commentary "That command needs a repository an implementer working from this
            document alone does not have. The vectors below are the part of
            the conformance criterion that travels with the specification."
    }

    -- Each source line encodes to exactly these bytes. Machine-checkable, and
    -- sufficient on its own to pin every tag number, the annotation shape, the
    -- decimal representation and the integer/float distinction — all of which
    -- a first independent implementation otherwise had to infer.
    vectors vector [
      | source                                      canonical-hex
      | "a 1"                                       "a1616101"
      | "x [ | a b, | 1 2, ]"                       "a1617881a2616101616202"
      | "x [ | a b, | 1 2 ]"                        "a1617881a2616101616202"
      | "x [ | \"a\" \"b\", | 1 2, ]"                 "a1617881a2616101616202"
      | "a -1"                                      "a1616120"
      | "a 1.0"                                     "a16161c482200a"
      | "a 1.00"                                    "a16161c482211864"
      | "a 03:52"                                   "a16161da000111da6530333a3532"
      | "a kg 5"                                    "a16161da000111d58281da000111d4626b6705"
      | "a 1.0f"                                    "a16161f93c00"
      | "a 0f"                                       "a16161f90000"
      | "a \"x\""                                   "a161616178"
      | "a :x"                                      "a16161da000111d46178"
      | "a true"                                    "a16161f5"
      | "a null"                                    "a16161f6"
      | "a nan"                                     "a16161f97e00"
      | "a inf"                                     "a16161f97c00"
      | "a []"                                      "a1616180"
      | "a {}"                                      "a16161a0"
      | "a [ 1, 2 ]"                                "a16161820102"
      | "a @x"                                      "a16161da000111d66178"
      | "a -> @x"                                   "a16161da000111d76178"
      | "a #sha256:00ff"                            "a16161da000111d882667368613235364200ff"
      | "a ~hex:00ff"                               "a161614200ff"
      | "a !e/x 1"                                  "a16161da000111d98263652f7801"
      | "a usd 1.99"                                "a16161da000111d58281da000111d463757364c4822118c7"
      | "a 2026-08"                                 "a16161da000111da67323032362d3038"
      | "a 2026-08-03T14:22:07Z"                    "a16161da000111da74323032362d30382d30335431343a32323a30375a"
      | "a 18446744073709551615"                    "a161611bffffffffffffffff"
      | "a 340282366920938463463374607431768211456" "a16161c2510100000000000000000000000000000000"
      | "a { b 1, c 2 }"                            "a16161a2616201616302"
      | "a [ { b 1, c 2 }, { b 3, c 4 } ]"          "a1616182a2616201616302a2616203616304"
      | "x [ | a b ]"                               "a1617880"
      | "a ~hex:00FF"                               "a161614200ff"
      | "a ^u8 [ 1, 2, 3 ]"                         "a16161d84043010203"
      | "a ^f64 [ 1.5 ]"                            "a16161d852483ff8000000000000"
      | "a ^i16:2x2 [ 1, -1, 2, -2 ]"               "a16161d82882820202d849480001ffff0002fffe"
      | "a ^u8 [ 1, null, 3 ]"                      "a16161da000111db824105d84043010003"
      | "a ^f16 [ 1.5, -0, nan ]"                   "a16161d850463e0080007e00"
      | "a ^f32 [ 0.1 ]"                            "a16161d851443dcccccd"
      | "a ^i64 [ -1 ]"                             "a16161d84b48ffffffffffffffff"
      | "a ^u8 []"                                  "a16161d84040"
    ]

    -- The other half of conformance: inputs a decoder MUST refuse. Each source
    -- line fails to parse. The harness passes an implementation on one of
    -- these when its command exits non-zero, and FAILS it when the command
    -- prints bytes — a decoder that accepts a malformed document has widened
    -- the language, and two implementations with different widenings read
    -- the same file differently while both report success.
    rejects vector [
      | source                  why
      | "x [ | a b | 1 2 ]"     "a row begins after a separator; see rows-are-separated"
      | "a ~b64:aGk"            "base64 is padded to a multiple of four; see byte-payloads"
      | "a ~b64:aG-_"           "base64url is not the alphabet; see byte-payloads"
      | "a ~hex:0"              "hexadecimal digits come in pairs; see byte-payloads"
      | "a ~hex:0g"             "g is not a hexadecimal digit; see byte-payloads"
      | "a ^f64:6 [ 1, 2, 3, 4, 5, 6 ]"  "a one-dimensional shape is the length and is not written; see arrays"
      | "a ^u8 [ 256 ]"         "256 does not fit u8"
      | "a ^u8 [ 1.5 ]"         "a fraction in an integer array"
      | "a ^f64:2x2 [ 1, 2, 3 ]"  "the shape holds 4 and 3 were written"
      | "a ^f64 [ 1.5f ]"       "the type is the marker; no f inside an array"
      | "a ^x8 [ 1 ]"           "no such element type"
    ]

    -- Bytes a decoder must refuse, as hex. The text above cannot produce them,
    -- which is why they are listed as bytes: a decoder that accepts them has
    -- accepted a second encoding of a value, or a value with no text.
    reject-bytes vector [
      | hex                                       why
      | "a16161d856483ff8000000000000"            "tag 86 is a little-endian f64 array; only big-endian is canonical"
      | "a16161da000111db824107d84043010203"      "a validity mask with every position present"
      | "a16161d852487ff8000000000001"            "a NaN with a payload; the text has one NaN"
      | "a16161da000111db824105d84043010203"      "a masked position holding non-zero bits"
      | "a16161d8524300ff00"                      "three bytes is not a whole number of f64 elements"
      | "a16161d828828103d84043010203"            "tag 40 with one extent"
    ]
  }
}

The canonical encoding

Produced by the reference encoder when this page was built. Decoding these bytes and printing them in the text form returns the document above, byte for byte — that round trip is the claim the whole format rests on.

a1 64 73 70 65 63 da 00 01 11 d5 82 81 da 00 01 11 d6 69 75 6e 69 6d 73
67 2f 76 30 ae 63 64 6f 63 78 b9 41 20 68 75 6d 61 6e 20 74 65 78 74 20
73 79 6e 74 61 78 20 66 6f 72 20 43 42 4f 52 20 77 69 74 68 20 64 65 67
72 61 64 61 62 6c 65 20 65 78 74 65 6e 73 69 6f 6e 73 2e 20 54 68 65 20
74 65 78 74 0a 20 20 20 20 20 20 20 20 20 20 20 66 6f 72 6d 20 69 73 20
61 20 6c 6f 73 73 6c 65 73 73 20 70 72 6f 6a 65 63 74 69 6f 6e 20 6f 66
20 74 68 65 20 62 69 6e 61 72 79 20 66 6f 72 6d 3a 20 74 65 78 74 20 2d
3e 20 43 42 4f 52 20 2d 3e 0a 20 20 20 20 20 20 20 20 20 20 20 74 65 78
74 20 2d 3e 20 43 42 4f 52 20 69 73 20 62 79 74 65 2d 69 64 65 6e 74 69
63 61 6c 2e 64 62 61 73 65 6f 52 46 43 20 38 39 34 39 20 28 43 42 4f 52
29 65 74 69 74 6c 65 78 30 75 6e 69 6d 73 67 20 76 30 20 e2 80 94 20 74
65 78 74 20 73 79 6e 74 61 78 20 61 6e 64 20 63 61 6e 6f 6e 69 63 61 6c
20 65 6e 63 6f 64 69 6e 67 66 61 72 72 61 79 73 da 00 01 11 d5 82 81 da
00 01 11 d4 69 6e 6f 72 6d 61 74 69 76 65 a8 63 64 6f 63 da 00 01 11 d5
82 81 da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61 72 79 79 02 58 41 20 68
6f 6d 6f 67 65 6e 65 6f 75 73 20 6e 75 6d 65 72 69 63 20 61 72 72 61 79
20 61 73 20 61 20 6b 65 72 6e 65 6c 20 76 61 6c 75 65 2e 20 50 72 6f 70
6f 73 65 64 20 69 6e 0a 20 20 20 20 20 20 20 20 20 64 6f 63 73 2f 34 39
20 6f 6e 20 61 20 6d 65 61 73 75 72 65 6d 65 6e 74 20 6f 66 20 6f 6e 65
20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 2c 20 6d 65 61 73 75 72 65
64 20 61 67 61 69 6e 20 69 6e 0a 20 20 20 20 20 20 20 20 20 64 6f 63 73
2f 35 32 20 69 6e 20 66 69 76 65 2c 20 61 6e 64 20 61 64 6f 70 74 65 64
20 32 30 32 36 2d 30 39 2d 30 32 3a 20 70 65 61 6b 20 6d 65 6d 6f 72 79
20 66 6f 72 20 61 20 73 65 71 75 65 6e 63 65 0a 20 20 20 20 20 20 20 20
20 6f 66 20 38 30 30 2c 30 30 30 20 66 6c 6f 61 74 73 20 72 75 6e 73 20
66 72 6f 6d 20 38 78 20 74 68 65 20 65 6e 63 6f 64 65 64 20 62 79 74 65
73 20 69 6e 20 74 68 65 20 6c 65 61 6e 65 73 74 0a 20 20 20 20 20 20 20
20 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 20 74 6f 20 31 34 35 78
20 69 6e 20 74 68 65 20 68 65 61 76 69 65 73 74 2c 20 61 20 31 36 2c 30
30 30 2d 72 6f 77 20 74 61 62 6c 65 20 65 6e 63 6f 64 65 73 0a 20 20 20
20 20 20 20 20 20 61 74 20 31 2e 35 78 20 69 74 73 20 6f 77 6e 20 74 65
78 74 20 62 65 63 61 75 73 65 20 65 76 65 72 79 20 72 6f 77 20 72 65 70
65 61 74 73 20 65 76 65 72 79 20 6b 65 79 2c 20 61 6e 64 20 61 0a 20 20
20 20 20 20 20 20 20 74 65 6e 2d 6d 69 6c 6c 69 6f 6e 2d 76 61 6c 75 65
20 76 61 72 69 61 62 6c 65 20 63 6f 75 6c 64 20 6e 6f 74 20 62 65 20 64
65 63 6f 64 65 64 20 61 74 20 61 6c 6c 2e 20 54 68 65 20 61 72 72 61 79
20 69 73 0a 20 20 20 20 20 20 20 20 20 74 68 65 20 6f 6e 65 20 76 61 6c
75 65 20 6d 6f 64 65 6c 20 75 6e 64 65 72 20 77 68 69 63 68 20 61 6e 20
65 69 67 68 74 2d 62 79 74 65 20 6e 75 6d 62 65 72 20 63 6f 73 74 73 20
65 69 67 68 74 0a 20 20 20 20 20 20 20 20 20 62 79 74 65 73 2e 66 67 75
61 72 64 73 79 02 6b 41 6e 20 61 72 72 61 79 20 69 73 20 6f 6e 65 20 6c
65 76 65 6c 20 6f 66 20 6e 65 73 74 69 6e 67 20 68 6f 6c 64 69 6e 67 20
61 6e 79 20 6e 75 6d 62 65 72 20 6f 66 20 65 6c 65 6d 65 6e 74 73 2c 0a
20 20 20 20 20 20 20 73 6f 20 61 20 67 75 61 72 64 20 66 72 61 6d 65 64
20 69 6e 20 64 65 70 74 68 20 67 75 61 72 64 73 20 6e 6f 74 68 69 6e 67
20 68 65 72 65 2e 20 41 20 64 65 63 6f 64 65 72 20 63 68 65 63 6b 73 20
74 68 65 0a 20 20 20 20 20 20 20 62 79 74 65 20 73 74 72 69 6e 67 27 73
20 6c 65 6e 67 74 68 20 61 67 61 69 6e 73 74 20 74 68 65 20 65 6c 65 6d
65 6e 74 20 77 69 64 74 68 20 62 65 66 6f 72 65 20 69 74 20 61 6c 6c 6f
63 61 74 65 73 0a 20 20 20 20 20 20 20 61 6e 79 74 68 69 6e 67 2c 20 63
68 65 63 6b 73 20 61 20 73 68 61 70 65 27 73 20 70 72 6f 64 75 63 74 20
61 67 61 69 6e 73 74 20 74 68 65 20 63 6f 75 6e 74 20 77 69 74 68 20 6f
76 65 72 66 6c 6f 77 0a 20 20 20 20 20 20 20 64 65 74 65 63 74 69 6f 6e
2c 20 61 6e 64 20 4d 41 59 20 72 65 66 75 73 65 20 61 6e 20 61 72 72 61
79 20 61 62 6f 76 65 20 61 6e 20 65 6c 65 6d 65 6e 74 20 63 6f 75 6e 74
20 69 74 20 64 65 63 6c 61 72 65 73 20 e2 80 94 0a 20 20 20 20 20 20 20
61 20 66 69 78 65 64 2d 61 72 65 6e 61 20 69 6d 70 6c 65 6d 65 6e 74 61
74 69 6f 6e 20 72 65 66 75 73 65 64 20 33 35 34 2c 37 35 33 20 69 6e 20
64 6f 63 73 2f 35 32 2c 20 68 6f 6e 65 73 74 6c 79 20 61 6e 64 0a 20 20
20 20 20 20 20 77 69 74 68 20 61 20 70 6f 73 69 74 69 6f 6e 2e 20 70 72
6f 66 69 6c 65 73 2f 76 30 20 73 61 79 73 20 6e 6f 74 68 69 6e 67 20 61
62 6f 75 74 20 65 6c 65 6d 65 6e 74 20 63 6f 75 6e 74 73 20 79 65 74 2c
20 61 6e 64 0a 20 20 20 20 20 20 20 74 68 61 74 20 69 73 20 74 68 65 20
6f 70 65 6e 20 71 75 65 73 74 69 6f 6e 20 64 6f 63 73 2f 34 39 20 72 61
69 73 65 64 20 61 6e 64 20 74 68 69 73 20 73 70 65 63 69 66 69 63 61 74
69 6f 6e 20 68 61 73 0a 20 20 20 20 20 20 20 6e 6f 74 20 63 6c 6f 73 65
64 2e 68 65 6e 63 6f 64 69 6e 67 79 04 34 52 46 43 20 38 37 34 36 27 73
2c 20 61 6e 64 20 6e 6f 20 6f 74 68 65 72 3a 20 74 68 65 20 73 75 62 73
74 72 61 74 65 20 61 6c 72 65 61 64 79 20 72 65 67 69 73 74 65 72 73 20
61 20 74 61 67 0a 20 20 20 20 20 20 20 70 65 72 20 65 6c 65 6d 65 6e 74
20 74 79 70 65 2c 20 61 6e 64 20 61 20 70 61 72 61 6c 6c 65 6c 20 6c 69
73 74 20 77 6f 75 6c 64 20 62 65 20 74 68 65 20 76 65 6e 64 6f 72 65 64
2d 74 61 62 6c 65 0a 20 20 20 20 20 20 20 6d 69 73 74 61 6b 65 20 6d 61
64 65 20 61 73 20 61 20 64 65 73 69 67 6e 20 64 65 63 69 73 69 6f 6e 2e
20 45 6c 65 6d 65 6e 74 73 20 61 72 65 20 70 61 63 6b 65 64 20 42 49 47
2d 45 4e 44 49 41 4e 20 69 6e 74 6f 0a 20 20 20 20 20 20 20 6f 6e 65 20
62 79 74 65 20 73 74 72 69 6e 67 20 75 6e 64 65 72 20 74 68 65 20 74 79
70 65 27 73 20 74 61 67 20 e2 80 94 20 6e 65 74 77 6f 72 6b 20 6f 72 64
65 72 2c 20 77 68 69 63 68 20 69 73 20 68 6f 77 0a 20 20 20 20 20 20 20
65 76 65 72 79 20 6f 74 68 65 72 20 6e 75 6d 62 65 72 20 69 6e 20 61 20
43 42 4f 52 20 73 74 72 65 61 6d 20 69 73 20 77 72 69 74 74 65 6e 2e 20
54 68 65 20 6c 69 74 74 6c 65 2d 65 6e 64 69 61 6e 20 74 61 67 73 0a 20
20 20 20 20 20 20 28 36 39 e2 80 93 37 31 2c 20 37 37 e2 80 93 37 39 2c
20 38 34 e2 80 93 38 36 29 2c 20 74 68 65 20 63 6c 61 6d 70 65 64 20 75
69 6e 74 38 20 28 36 38 29 2c 20 62 69 6e 61 72 79 31 32 38 20 28 38 33
2c 20 38 37 29 20 61 6e 64 0a 20 20 20 20 20 20 20 63 6f 6c 75 6d 6e 2d
6d 61 6a 6f 72 20 28 31 30 34 30 29 20 61 72 65 20 52 45 46 55 53 45 44
20 62 79 20 61 20 64 65 63 6f 64 65 72 3a 20 74 77 6f 20 65 6e 63 6f 64
69 6e 67 73 20 6f 66 20 6f 6e 65 20 76 61 6c 75 65 0a 20 20 20 20 20 20
20 69 73 20 77 68 61 74 20 64 65 74 65 72 6d 69 6e 69 73 6d 20 66 6f 72
62 69 64 73 2e 0a 0a 20 20 20 20 20 20 20 41 20 53 48 41 50 45 20 69 73
20 52 46 43 20 38 37 34 36 27 73 20 74 61 67 20 34 30 2c 20 72 6f 77 2d
6d 61 6a 6f 72 3a 20 34 30 28 5b 20 5b 20 65 78 74 65 6e 74 73 e2 80 a6
20 5d 2c 20 61 72 72 61 79 20 5d 29 2c 0a 20 20 20 20 20 20 20 77 72 69
74 74 65 6e 20 6f 6e 6c 79 20 77 68 65 6e 20 74 68 65 72 65 20 61 72 65
20 74 77 6f 20 6f 72 20 6d 6f 72 65 20 65 78 74 65 6e 74 73 2e 0a 0a 20
20 20 20 20 20 20 41 20 4d 41 53 4b 20 69 73 20 74 61 67 20 37 30 31 30
37 3a 20 37 30 31 30 37 28 5b 20 62 69 74 6d 61 70 2c 20 61 72 72 61 79
20 5d 29 2c 20 77 68 65 72 65 20 74 68 65 20 61 72 72 61 79 20 69 73 20
74 68 65 0a 20 20 20 20 20 20 20 73 68 61 70 65 64 20 6f 72 20 75 6e 73
68 61 70 65 64 20 61 72 72 61 79 2c 20 74 68 65 20 62 69 74 6d 61 70 20
69 73 20 61 20 62 79 74 65 20 73 74 72 69 6e 67 20 6f 66 20 6f 6e 65 20
62 69 74 20 70 65 72 0a 20 20 20 20 20 20 20 65 6c 65 6d 65 6e 74 2c 20
6c 65 61 73 74 20 73 69 67 6e 69 66 69 63 61 6e 74 20 62 69 74 20 66 69
72 73 74 2c 20 31 20 66 6f 72 20 70 72 65 73 65 6e 74 2c 20 70 61 64 64
69 6e 67 20 62 69 74 73 20 7a 65 72 6f 2c 0a 20 20 20 20 20 20 20 61 6e
64 20 65 76 65 72 79 20 6d 61 73 6b 65 64 20 70 6f 73 69 74 69 6f 6e 20
68 6f 6c 64 73 20 7a 65 72 6f 20 62 69 74 73 20 69 6e 20 74 68 65 20 70
61 79 6c 6f 61 64 2e 20 41 20 6d 61 73 6b 20 77 69 74 68 0a 20 20 20 20
20 20 20 65 76 65 72 79 20 70 6f 73 69 74 69 6f 6e 20 70 72 65 73 65 6e
74 20 69 73 20 6e 6f 74 20 63 61 6e 6f 6e 69 63 61 6c 20 61 6e 64 20 69
73 20 72 65 66 75 73 65 64 2e 68 65 71 75 61 6c 69 74 79 79 02 54 4e 45
45 44 53 20 4e 4f 20 4e 45 57 20 52 55 4c 45 2e 20 44 31 20 73 61 79 73
20 62 79 74 65 20 65 71 75 61 6c 69 74 79 20 6f 66 20 74 68 65 20 63 61
6e 6f 6e 69 63 61 6c 0a 20 20 20 20 20 20 20 65 6e 63 6f 64 69 6e 67 3b
20 74 68 65 20 65 6e 63 6f 64 69 6e 67 20 61 62 6f 76 65 20 69 73 20 64
65 74 65 72 6d 69 6e 69 73 74 69 63 3b 20 73 6f 20 74 77 6f 20 61 72 72
61 79 73 20 61 72 65 20 65 71 75 61 6c 0a 20 20 20 20 20 20 20 65 78 61
63 74 6c 79 20 77 68 65 6e 20 74 68 65 69 72 20 65 6c 65 6d 65 6e 74 20
74 79 70 65 2c 20 73 68 61 70 65 2c 20 6d 61 73 6b 20 61 6e 64 20 65 6c
65 6d 65 6e 74 20 62 69 74 20 70 61 74 74 65 72 6e 73 0a 20 20 20 20 20
20 20 61 72 65 20 e2 80 94 20 77 68 69 63 68 20 69 73 20 77 68 61 74 20
64 6f 63 73 2f 34 39 20 61 73 6b 65 64 20 66 6f 72 2c 20 61 6e 64 20 69
74 20 66 61 6c 6c 73 20 6f 75 74 20 6f 66 20 74 68 65 20 66 6f 72 6d 61
74 0a 20 20 20 20 20 20 20 72 61 74 68 65 72 20 74 68 61 6e 20 62 65 69
6e 67 20 61 64 64 65 64 20 74 6f 20 69 74 2e 0a 0a 20 20 20 20 20 20 20
4f 4e 45 20 43 4f 4e 53 45 51 55 45 4e 43 45 3a 20 6f 6e 6c 79 20 74 68
65 20 63 61 6e 6f 6e 69 63 61 6c 20 71 75 69 65 74 20 4e 61 4e 20 e2 80
94 20 37 65 30 30 2c 20 37 66 63 30 30 30 30 30 2c 0a 20 20 20 20 20 20
20 37 66 66 38 30 30 30 30 30 30 30 30 30 30 30 30 20 e2 80 94 20 6d 61
79 20 61 70 70 65 61 72 20 69 6e 20 61 20 66 6c 6f 61 74 20 61 72 72 61
79 2e 20 54 68 65 20 74 65 78 74 20 68 61 73 20 6f 6e 65 0a 20 20 20 20
20 20 20 73 70 65 6c 6c 69 6e 67 20 66 6f 72 20 4e 61 4e 2c 20 73 6f 20
61 20 4e 61 4e 20 77 69 74 68 20 61 20 70 61 79 6c 6f 61 64 20 77 6f 75
6c 64 20 62 65 20 61 20 76 61 6c 75 65 20 77 69 74 68 20 6e 6f 0a 20 20
20 20 20 20 20 72 6f 75 6e 64 20 74 72 69 70 2c 20 61 6e 64 20 61 20 64
65 63 6f 64 65 72 20 72 65 66 75 73 65 73 20 69 74 2e 69 6e 6f 74 2d 69
6e 2d 76 30 79 01 64 43 6f 6d 70 72 65 73 73 69 6f 6e 2c 20 63 68 75 6e
6b 69 6e 67 2c 20 63 6f 6d 70 6c 65 78 20 6e 75 6d 62 65 72 73 2c 20 73
70 61 72 73 65 20 6d 61 74 72 69 63 65 73 2c 20 61 0a 20 20 20 20 20 20
20 64 61 74 65 74 69 6d 65 20 65 6c 65 6d 65 6e 74 20 74 79 70 65 2c 20
61 6e 64 20 61 20 75 6e 69 74 20 6f 6e 20 74 68 65 20 61 72 72 61 79 20
72 61 74 68 65 72 20 74 68 61 6e 20 6f 6e 20 69 74 73 0a 20 20 20 20 20
20 20 65 6c 65 6d 65 6e 74 73 2e 20 64 6f 63 73 2f 34 39 27 73 20 6e 6f
74 2d 69 6e 2d 76 30 20 74 61 62 6c 65 20 73 61 79 73 20 77 68 79 20 66
6f 72 20 65 61 63 68 3b 20 64 6f 63 73 2f 35 32 0a 20 20 20 20 20 20 20
63 6f 6e 66 69 72 6d 65 64 20 74 68 65 20 64 61 74 65 74 69 6d 65 20 64
65 66 65 72 72 61 6c 20 61 67 61 69 6e 73 74 20 61 20 72 65 61 6c 20 66
69 6c 65 2e 20 55 6e 69 74 73 2c 20 6e 61 6d 65 64 20 61 78 65 73 0a 20
20 20 20 20 20 20 61 6e 64 20 75 6e 63 65 72 74 61 69 6e 74 69 65 73 20
61 72 65 20 74 68 65 20 6d 65 61 73 75 72 65 6d 65 6e 74 20 76 6f 63 61
62 75 6c 61 72 79 27 73 2c 20 6e 6f 74 20 74 68 65 20 6b 65 72 6e 65 6c
27 73 2e 69 74 65 78 74 2d 66 6f 72 6d 79 04 21 41 20 73 69 67 69 6c 2c
20 61 6e 20 65 6c 65 6d 65 6e 74 20 74 79 70 65 2c 20 61 6e 20 6f 70 74
69 6f 6e 61 6c 20 73 68 61 70 65 2c 20 61 6e 64 20 74 68 65 20 65 6c 65
6d 65 6e 74 73 0a 20 20 20 20 20 20 20 77 72 69 74 74 65 6e 20 61 73 20
6e 75 6d 62 65 72 73 20 69 6e 20 6f 72 64 65 72 2c 20 73 65 70 61 72 61
74 65 64 20 61 73 20 61 20 73 65 71 75 65 6e 63 65 27 73 20 69 74 65 6d
73 20 61 72 65 3a 0a 0a 20 20 20 20 20 20 20 20 20 5e 66 36 34 20 5b 20
31 2e 35 2c 20 32 2e 35 2c 20 33 2e 35 20 5d 0a 20 20 20 20 20 20 20 20
20 5e 69 31 36 3a 32 78 33 20 5b 20 31 2c 20 2d 31 2c 20 32 2c 20 2d 32
2c 20 33 2c 20 2d 33 20 5d 0a 20 20 20 20 20 20 20 20 20 5e 75 38 20 5b
20 31 2c 20 6e 75 6c 6c 2c 20 33 20 5d 0a 0a 20 20 20 20 20 20 20 54 48
45 20 54 59 50 45 20 49 53 20 54 48 45 20 4d 41 52 4b 45 52 2e 20 45 6c
65 6d 65 6e 74 73 20 63 61 72 72 79 20 6e 6f 20 66 3b 20 61 6e 20 75 6e
6d 61 72 6b 65 64 20 31 2e 35 20 69 6e 73 69 64 65 0a 20 20 20 20 20 20
20 5e 66 36 34 20 69 73 20 61 20 62 69 6e 61 72 79 36 34 20 62 65 63 61
75 73 65 20 74 68 65 20 61 72 72 61 79 20 73 61 79 73 20 73 6f 2c 20 61
6e 64 20 31 2e 35 20 69 6e 73 69 64 65 20 5e 75 38 20 69 73 20 61 6e 0a
20 20 20 20 20 20 20 65 72 72 6f 72 2e 20 49 6e 74 65 67 65 72 20 65 6c
65 6d 65 6e 74 73 20 61 72 65 20 64 65 63 69 6d 61 6c 20 69 6e 74 65 67
65 72 73 20 77 69 74 68 69 6e 20 74 68 65 20 74 79 70 65 27 73 20 72 61
6e 67 65 2e 0a 20 20 20 20 20 20 20 46 6c 6f 61 74 20 65 6c 65 6d 65 6e
74 73 20 61 72 65 20 61 6e 79 20 6e 75 6d 65 72 69 63 20 6c 69 74 65 72
61 6c 2c 20 6f 72 20 6e 61 6e 2c 20 69 6e 66 20 61 6e 64 20 2d 69 6e 66
2e 0a 0a 20 20 20 20 20 20 20 6e 75 6c 6c 20 49 4e 20 41 4e 20 45 4c 45
4d 45 4e 54 20 50 4f 53 49 54 49 4f 4e 20 4d 45 41 4e 53 20 4d 49 53 53
49 4e 47 20 e2 80 94 20 61 20 70 72 6f 70 65 72 74 79 20 6f 66 20 74 68
65 20 70 6f 73 69 74 69 6f 6e 2c 0a 20 20 20 20 20 20 20 6e 6f 74 20 61
20 76 61 6c 75 65 20 61 74 20 69 74 20 e2 80 94 20 61 6e 64 20 70 75 74
73 20 61 20 76 61 6c 69 64 69 74 79 20 6d 61 73 6b 20 6f 6e 20 74 68 65
20 61 72 72 61 79 2e 20 41 20 66 69 6c 6c 20 76 61 6c 75 65 0a 20 20 20
20 20 20 20 69 73 20 61 20 6e 75 6d 62 65 72 20 70 72 65 74 65 6e 64 69
6e 67 20 6e 6f 74 20 74 6f 20 62 65 20 6f 6e 65 3b 20 64 6f 63 73 2f 35
32 20 72 65 61 64 20 74 68 72 65 65 20 6f 66 20 74 68 65 6d 20 6f 75 74
20 6f 66 0a 20 20 20 20 20 20 20 6f 6e 65 20 66 69 6c 65 20 62 79 20 68
61 6e 64 2e 0a 0a 20 20 20 20 20 20 20 41 20 53 48 41 50 45 20 49 53 20
45 58 54 45 4e 54 53 20 4a 4f 49 4e 45 44 20 42 59 20 78 2c 20 61 74 20
6c 65 61 73 74 20 74 77 6f 20 6f 66 20 74 68 65 6d 3b 20 74 68 65 20 65
6c 65 6d 65 6e 74 20 63 6f 75 6e 74 0a 20 20 20 20 20 20 20 6d 75 73 74
20 65 71 75 61 6c 20 74 68 65 69 72 20 70 72 6f 64 75 63 74 20 6f 72 20
74 68 65 20 64 6f 63 75 6d 65 6e 74 20 69 73 20 69 6e 20 65 72 72 6f 72
2e 20 41 0a 20 20 20 20 20 20 20 6f 6e 65 2d 64 69 6d 65 6e 73 69 6f 6e
61 6c 20 61 72 72 61 79 27 73 20 73 68 61 70 65 20 69 73 20 69 74 73 20
6c 65 6e 67 74 68 20 61 6e 64 20 69 73 20 6e 6f 74 20 77 72 69 74 74 65
6e 2e 20 52 6f 77 73 0a 20 20 20 20 20 20 20 72 75 6e 20 61 6c 6f 6e 67
20 74 68 65 20 6c 61 73 74 20 65 78 74 65 6e 74 2e 6d 65 6c 65 6d 65 6e
74 2d 74 79 70 65 73 8b a4 63 74 61 67 18 40 64 74 79 70 65 da 00 01 11
d4 62 75 38 65 68 6f 6c 64 73 70 75 6e 73 69 67 6e 65 64 20 69 6e 74 65
67 65 72 65 77 69 64 74 68 01 a4 63 74 61 67 18 41 64 74 79 70 65 da 00
01 11 d4 63 75 31 36 65 68 6f 6c 64 73 70 75 6e 73 69 67 6e 65 64 20 69
6e 74 65 67 65 72 65 77 69 64 74 68 02 a4 63 74 61 67 18 42 64 74 79 70
65 da 00 01 11 d4 63 75 33 32 65 68 6f 6c 64 73 70 75 6e 73 69 67 6e 65
64 20 69 6e 74 65 67 65 72 65 77 69 64 74 68 04 a4 63 74 61 67 18 43 64
74 79 70 65 da 00 01 11 d4 63 75 36 34 65 68 6f 6c 64 73 70 75 6e 73 69
67 6e 65 64 20 69 6e 74 65 67 65 72 65 77 69 64 74 68 08 a4 63 74 61 67
18 48 64 74 79 70 65 da 00 01 11 d4 62 69 38 65 68 6f 6c 64 73 78 18 74
77 6f 27 73 2d 63 6f 6d 70 6c 65 6d 65 6e 74 20 69 6e 74 65 67 65 72 65
77 69 64 74 68 01 a4 63 74 61 67 18 49 64 74 79 70 65 da 00 01 11 d4 63
69 31 36 65 68 6f 6c 64 73 78 18 74 77 6f 27 73 2d 63 6f 6d 70 6c 65 6d
65 6e 74 20 69 6e 74 65 67 65 72 65 77 69 64 74 68 02 a4 63 74 61 67 18
4a 64 74 79 70 65 da 00 01 11 d4 63 69 33 32 65 68 6f 6c 64 73 78 18 74
77 6f 27 73 2d 63 6f 6d 70 6c 65 6d 65 6e 74 20 69 6e 74 65 67 65 72 65
77 69 64 74 68 04 a4 63 74 61 67 18 4b 64 74 79 70 65 da 00 01 11 d4 63
69 36 34 65 68 6f 6c 64 73 78 18 74 77 6f 27 73 2d 63 6f 6d 70 6c 65 6d
65 6e 74 20 69 6e 74 65 67 65 72 65 77 69 64 74 68 08 a4 63 74 61 67 18
50 64 74 79 70 65 da 00 01 11 d4 63 66 31 36 65 68 6f 6c 64 73 71 49 45
45 45 20 37 35 34 20 62 69 6e 61 72 79 31 36 65 77 69 64 74 68 02 a4 63
74 61 67 18 51 64 74 79 70 65 da 00 01 11 d4 63 66 33 32 65 68 6f 6c 64
73 71 49 45 45 45 20 37 35 34 20 62 69 6e 61 72 79 33 32 65 77 69 64 74
68 04 a4 63 74 61 67 18 52 64 74 79 70 65 da 00 01 11 d4 63 66 36 34 65
68 6f 6c 64 73 71 49 45 45 45 20 37 35 34 20 62 69 6e 61 72 79 36 34 65
77 69 64 74 68 08 72 6f 6e 65 2d 74 65 78 74 2d 70 65 72 2d 66 6c 6f 61
74 79 07 1d 54 48 45 20 42 55 52 44 45 4e 2c 20 73 74 61 74 65 64 20 68
65 72 65 20 72 61 74 68 65 72 20 74 68 61 6e 20 6d 65 74 20 69 6e 20 74
68 65 20 74 77 65 6c 66 74 68 0a 20 20 20 20 20 20 20 69 6d 70 6c 65 6d
65 6e 74 61 74 69 6f 6e 2e 20 41 20 66 6c 6f 61 74 20 65 6c 65 6d 65 6e
74 20 69 73 20 77 72 69 74 74 65 6e 20 69 6e 20 74 68 65 20 53 48 4f 52
54 45 53 54 20 64 69 67 69 74 20 73 74 72 69 6e 67 0a 20 20 20 20 20 20
20 74 68 61 74 20 72 65 61 64 73 20 62 61 63 6b 20 61 73 20 74 68 65 20
73 61 6d 65 20 76 61 6c 75 65 20 41 54 20 54 48 45 20 41 52 52 41 59 27
53 20 57 49 44 54 48 20 e2 80 94 20 62 69 6e 61 72 79 31 36 2c 0a 20 20
20 20 20 20 20 62 69 6e 61 72 79 33 32 20 6f 72 20 62 69 6e 61 72 79 36
34 20 e2 80 94 20 6c 61 69 64 20 6f 75 74 20 61 73 20 45 43 4d 41 53 63
72 69 70 74 20 6c 61 79 73 20 6f 75 74 20 61 20 4e 75 6d 62 65 72 3a 0a
20 20 20 20 20 20 20 70 6f 73 69 74 69 6f 6e 61 6c 20 77 68 65 6e 20 74
68 65 20 64 65 63 69 6d 61 6c 20 65 78 70 6f 6e 65 6e 74 20 6c 69 65 73
20 69 6e 20 5b 2d 36 2c 20 32 31 29 2c 20 6f 74 68 65 72 77 69 73 65 0a
20 20 20 20 20 20 20 64 2e 64 64 64 65 c2 b1 4e 20 77 69 74 68 20 74 68
65 20 65 78 70 6f 6e 65 6e 74 27 73 20 73 69 67 6e 20 61 6c 77 61 79 73
20 77 72 69 74 74 65 6e 3b 20 2d 30 20 6b 65 65 70 73 20 69 74 73 20 73
69 67 6e 0a 20 20 20 20 20 20 20 62 65 63 61 75 73 65 20 74 68 65 20 62
69 74 20 70 61 74 74 65 72 6e 20 69 73 20 74 68 65 20 76 61 6c 75 65 2e
20 30 2e 31 20 69 6e 20 5e 66 33 32 20 69 73 20 60 30 2e 31 60 2c 20 6e
6f 74 0a 20 20 20 20 20 20 20 60 30 2e 31 30 30 30 30 30 30 30 31 34 39
30 31 31 36 31 32 60 2e 20 53 63 61 6c 61 72 20 66 6c 6f 61 74 73 20 66
6f 6c 6c 6f 77 20 74 68 65 20 73 61 6d 65 20 72 75 6c 65 20 77 69 74 68
20 74 68 65 69 72 0a 20 20 20 20 20 20 20 6d 61 72 6b 65 72 20 61 70 70
65 6e 64 65 64 20 28 73 65 65 20 66 6f 72 6d 61 74 74 69 6e 67 2e 66 6c
6f 61 74 73 2d 6b 65 65 70 2d 74 68 65 69 72 2d 6d 61 72 6b 65 72 29 2c
20 73 6f 20 61 20 66 6c 6f 61 74 0a 20 20 20 20 20 20 20 68 61 73 20 6f
6e 65 20 74 65 78 74 20 77 68 65 72 65 76 65 72 20 69 74 20 73 74 61 6e
64 73 2e 0a 0a 20 20 20 20 20 20 20 57 48 45 52 45 20 54 57 4f 20 44 49
47 49 54 20 53 54 52 49 4e 47 53 20 4f 46 20 54 48 45 20 53 48 4f 52 54
45 53 54 20 4c 45 4e 47 54 48 20 42 4f 54 48 20 52 45 41 44 20 42 41 43
4b 20 41 53 20 54 48 45 0a 20 20 20 20 20 20 20 56 41 4c 55 45 2c 20 74
68 65 20 63 61 6e 6f 6e 69 63 61 6c 20 74 65 78 74 20 69 73 20 74 68 65
20 6f 6e 65 20 6e 65 61 72 65 72 20 74 68 65 20 76 61 6c 75 65 2c 20 61
6e 64 20 6f 6e 20 61 6e 20 65 78 61 63 74 0a 20 20 20 20 20 20 20 74 69
65 20 74 68 65 20 6f 6e 65 20 77 68 6f 73 65 20 6c 61 73 74 20 64 69 67
69 74 20 69 73 20 65 76 65 6e 2e 20 53 4f 20 54 48 45 20 53 45 41 52 43
48 20 54 52 49 45 53 20 42 4f 54 48 0a 20 20 20 20 20 20 20 4e 45 49 47
48 42 4f 55 52 53 20 61 74 20 65 61 63 68 20 64 69 67 69 74 20 6c 65 6e
67 74 68 20 e2 80 94 20 74 68 65 20 65 78 61 63 74 20 65 78 70 61 6e 73
69 6f 6e 20 74 72 75 6e 63 61 74 65 64 2c 20 61 6e 64 0a 20 20 20 20 20
20 20 74 68 61 74 20 74 72 75 6e 63 61 74 69 6f 6e 20 69 6e 63 72 65 6d
65 6e 74 65 64 20 e2 80 94 20 61 6e 64 20 6e 6f 74 20 6f 6e 65 20 63 61
6e 64 69 64 61 74 65 20 66 72 6f 6d 20 61 0a 20 20 20 20 20 20 20 72 6f
75 6e 64 2d 74 6f 2d 6e 65 61 72 65 73 74 2e 20 41 64 64 65 64 20 32 30
32 36 2d 30 39 2d 30 33 2c 20 66 6f 75 6e 64 20 62 79 20 74 68 65 0a 20
20 20 20 20 20 20 4a 61 76 61 53 63 72 69 70 74 20 69 6d 70 6c 65 6d 65
6e 74 61 74 69 6f 6e 20 6f 6e 20 61 20 62 69 6e 61 72 79 33 32 20 65 6c
65 6d 65 6e 74 20 6f 66 20 61 20 72 65 61 6c 20 66 69 6c 65 3a 0a 20 20
20 20 20 20 20 32 36 2e 36 36 34 30 36 32 35 20 69 73 20 60 32 36 2e 36
36 34 30 36 32 60 20 61 6e 64 20 60 32 36 2e 36 36 34 30 36 33 60 20 61
74 20 65 69 67 68 74 20 64 69 67 69 74 73 20 61 6e 64 20 6f 6e 6c 79 20
74 68 65 0a 20 20 20 20 20 20 20 66 69 72 73 74 20 69 73 20 63 61 6e 6f
6e 69 63 61 6c 2e 20 41 20 66 6f 72 6d 61 74 74 65 72 20 74 68 61 74 20
72 6f 75 6e 64 73 20 74 68 65 20 65 78 61 63 74 20 76 61 6c 75 65 20 61
74 20 6e 0a 20 20 20 20 20 20 20 73 69 67 6e 69 66 69 63 61 6e 74 20 64
69 67 69 74 73 20 67 65 74 73 20 74 68 69 73 20 77 72 6f 6e 67 20 77 68
65 72 65 76 65 72 20 69 74 73 20 6c 61 6e 67 75 61 67 65 20 72 6f 75 6e
64 73 20 74 69 65 73 0a 20 20 20 20 20 20 20 61 77 61 79 20 66 72 6f 6d
20 7a 65 72 6f 2c 20 77 68 69 63 68 20 6d 6f 73 74 20 64 6f 2c 20 61 6e
64 20 6e 6f 20 76 65 63 74 6f 72 20 68 61 64 20 63 61 75 67 68 74 20 69
74 20 62 65 63 61 75 73 65 20 6e 6f 0a 20 20 20 20 20 20 20 76 65 63 74
6f 72 20 68 65 6c 64 20 61 20 74 69 65 2e 0a 0a 20 20 20 20 20 20 20 43
68 6f 73 65 6e 20 62 65 63 61 75 73 65 20 69 74 20 69 73 20 63 6f 6d 70
6c 65 74 65 6c 79 20 73 70 65 63 69 66 69 65 64 2c 20 6f 6e 65 20 69 6d
70 6c 65 6d 65 6e 74 61 74 69 6f 6e 27 73 0a 20 20 20 20 20 20 20 72 75
6e 74 69 6d 65 20 61 6c 72 65 61 64 79 20 64 6f 65 73 20 69 74 20 6e 61
74 69 76 65 6c 79 2c 20 61 6e 64 20 65 76 65 72 79 20 6f 74 68 65 72 20
6c 61 6e 67 75 61 67 65 20 68 65 72 65 20 63 61 6e 20 64 6f 0a 20 20 20
20 20 20 20 69 74 20 66 72 6f 6d 20 69 74 73 20 73 68 6f 72 74 65 73 74
2d 66 6c 6f 61 74 20 72 6f 75 74 69 6e 65 20 61 6e 64 20 61 20 64 6f 7a
65 6e 20 6c 69 6e 65 73 20 6f 66 20 6c 61 79 6f 75 74 2e 20 50 69 6e 6e
69 6e 67 0a 20 20 20 20 20 20 20 61 6e 79 20 6f 6e 65 20 6c 61 6e 67 75
61 67 65 27 73 20 25 67 20 77 6f 75 6c 64 20 68 61 76 65 20 70 69 6e 6e
65 64 20 74 68 61 74 20 6c 61 6e 67 75 61 67 65 27 73 20 68 61 62 69 74
2e 66 65 72 72 6f 72 73 da 00 01 11 d5 82 81 da 00 01 11 d4 69 6e 6f 72
6d 61 74 69 76 65 a3 63 64 6f 63 da 00 01 11 d5 82 81 da 00 01 11 d4 6a
63 6f 6d 6d 65 6e 74 61 72 79 78 39 41 20 66 6f 72 6d 61 74 20 69 73 20
65 78 61 63 74 6c 79 20 61 73 20 66 72 69 65 6e 64 6c 79 20 61 73 20 69
74 73 20 77 6f 72 73 74 20 70 61 72 73 65 20 65 72 72 6f 72 2e 68 65 78
61 6d 70 6c 65 73 84 a2 65 69 6e 70 75 74 69 78 20 5b 20 61 20 62 20 5d
67 6d 65 73 73 61 67 65 78 32 61 6e 6e 6f 74 61 74 69 6f 6e 20 22 62 22
20 68 61 73 20 6e 6f 20 76 61 6c 75 65 20 e2 80 94 20 64 69 64 20 79 6f
75 20 6d 65 61 6e 20 22 3a 62 22 3f a2 65 69 6e 70 75 74 67 78 20 3a 74
72 75 65 67 6d 65 73 73 61 67 65 78 40 22 3a 74 72 75 65 22 20 69 73 20
61 20 73 79 6d 62 6f 6c 20 6e 61 6d 65 64 20 22 74 72 75 65 22 2c 20 6e
6f 74 20 74 68 65 20 6c 69 74 65 72 61 6c 20 e2 80 94 20 77 72 69 74 65
20 74 72 75 65 a2 65 69 6e 70 75 74 68 61 20 31 2c 20 61 20 32 67 6d 65
73 73 61 67 65 71 64 75 70 6c 69 63 61 74 65 20 6b 65 79 20 22 61 22 a2
65 69 6e 70 75 74 67 78 20 31 32 61 62 63 67 6d 65 73 73 61 67 65 78 25
22 31 32 61 62 63 22 20 69 73 20 6e 6f 74 20 61 20 76 61 6c 69 64 20 6e
75 6d 62 65 72 20 6f 72 20 77 6f 72 64 6c 72 65 71 75 69 72 65 6d 65 6e
74 73 84 da 00 01 11 d4 78 23 65 76 65 72 79 2d 65 72 72 6f 72 2d 63 61
72 72 69 65 73 2d 6c 69 6e 65 2d 61 6e 64 2d 63 6f 6c 75 6d 6e da 00 01
11 d4 78 28 65 72 72 6f 72 73 2d 6e 61 6d 65 2d 74 68 65 2d 66 69 78 2d
77 68 65 72 65 2d 6f 6e 65 2d 69 73 2d 6f 62 76 69 6f 75 73 da 00 01 11
d4 78 26 64 65 63 6f 64 69 6e 67 2d 69 73 2d 74 6f 74 61 6c 2d 61 6e 64
2d 73 69 64 65 2d 65 66 66 65 63 74 2d 66 72 65 65 da 00 01 11 d4 78 2d
6e 6f 74 68 69 6e 67 2d 69 73 2d 72 65 73 6f 6c 76 65 64 2d 6f 72 2d 66
65 74 63 68 65 64 2d 64 75 72 69 6e 67 2d 70 61 72 73 69 6e 67 66 6b 65
72 6e 65 6c da 00 01 11 d5 82 81 da 00 01 11 d4 69 6e 6f 72 6d 61 74 69
76 65 a5 63 64 6f 63 da 00 01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d 6d
65 6e 74 61 72 79 78 3f 45 76 65 72 79 74 68 69 6e 67 20 65 6c 73 65 20
69 73 20 61 20 63 6f 6d 70 6f 73 69 74 69 6f 6e 20 6f 76 65 72 20 74 68
65 73 65 2e 20 41 20 76 61 6c 75 65 20 69 73 20 6f 6e 65 20 6f 66 3a 65
74 79 70 65 73 8a a3 64 6e 61 6d 65 da 00 01 11 d4 64 6e 75 6c 6c 65 6e
6f 74 65 73 6f 73 69 6d 70 6c 65 20 76 61 6c 75 65 20 32 32 6a 63 62 6f
72 2d 6d 61 6a 6f 72 07 a3 64 6e 61 6d 65 da 00 01 11 d4 64 62 6f 6f 6c
65 6e 6f 74 65 73 77 73 69 6d 70 6c 65 20 76 61 6c 75 65 73 20 32 30 20
61 6e 64 20 32 31 6a 63 62 6f 72 2d 6d 61 6a 6f 72 07 a3 64 6e 61 6d 65
da 00 01 11 d4 63 69 6e 74 65 6e 6f 74 65 73 78 28 75 6e 62 6f 75 6e 64
65 64 3b 20 62 65 79 6f 6e 64 20 36 34 20 62 69 74 73 20 75 73 65 20 74
61 67 20 32 20 6f 72 20 33 6a 63 62 6f 72 2d 6d 61 6a 6f 72 00 a3 64 6e
61 6d 65 da 00 01 11 d4 65 66 6c 6f 61 74 65 6e 6f 74 65 73 78 27 49 45
45 45 2d 37 35 34 3b 20 4e 61 4e 20 61 6e 64 20 69 6e 66 69 6e 69 74 69
65 73 20 61 72 65 20 76 61 6c 75 65 73 6a 63 62 6f 72 2d 6d 61 6a 6f 72
07 a3 64 6e 61 6d 65 da 00 01 11 d4 65 62 79 74 65 73 65 6e 6f 74 65 73
78 19 6f 70 61 71 75 65 20 6f 63 74 65 74 73 2c 20 6e 65 76 65 72 20 74
65 78 74 6a 63 62 6f 72 2d 6d 61 6a 6f 72 02 a3 64 6e 61 6d 65 da 00 01
11 d4 64 74 65 78 74 65 6e 6f 74 65 73 75 55 54 46 2d 38 2c 20 6e 6f 74
20 6e 6f 72 6d 61 6c 69 73 65 64 6a 63 62 6f 72 2d 6d 61 6a 6f 72 03 a3
64 6e 61 6d 65 da 00 01 11 d4 63 73 65 71 65 6e 6f 74 65 73 67 6f 72 64
65 72 65 64 6a 63 62 6f 72 2d 6d 61 6a 6f 72 04 a3 64 6e 61 6d 65 da 00
01 11 d4 63 6d 61 70 65 6e 6f 74 65 73 78 1e 6b 65 79 73 20 75 6e 69 71
75 65 20 62 79 20 63 61 6e 6f 6e 69 63 61 6c 20 62 79 74 65 73 6a 63 62
6f 72 2d 6d 61 6a 6f 72 05 a3 64 6e 61 6d 65 da 00 01 11 d4 66 74 61 67
67 65 64 65 6e 6f 74 65 73 78 1a 61 20 76 61 6c 75 65 20 71 75 61 6c 69
66 69 65 64 20 62 79 20 61 20 74 61 67 6a 63 62 6f 72 2d 6d 61 6a 6f 72
06 a3 64 6e 61 6d 65 da 00 01 11 d4 65 61 72 72 61 79 65 6e 6f 74 65 73
78 4b 61 20 68 6f 6d 6f 67 65 6e 65 6f 75 73 20 6e 75 6d 65 72 69 63 20
61 72 72 61 79 3a 20 61 6e 20 52 46 43 20 38 37 34 36 20 74 61 67 20 6f
76 65 72 20 61 20 62 79 74 65 20 73 74 72 69 6e 67 2e 20 53 65 65 20 61
72 72 61 79 73 6a 63 62 6f 72 2d 6d 61 6a 6f 72 06 78 21 61 2d 6b 65 79
2d 69 73 2d 61 6e 73 77 65 72 65 64 2d 61 74 2d 74 68 72 65 65 2d 6c 61
79 65 72 73 79 08 72 41 4e 44 20 54 48 45 20 54 48 52 45 45 20 41 4e 53
57 45 52 53 20 44 49 46 46 45 52 2c 20 77 68 69 63 68 20 69 73 0a 20 20
20 20 20 20 20 6e 6f 74 20 61 20 64 65 66 65 63 74 20 69 6e 20 61 6e 79
20 6f 66 20 74 68 65 6d 2e 20 41 73 6b 69 6e 67 20 60 77 68 61 74 20 6d
61 79 20 61 20 6b 65 79 20 62 65 60 20 77 69 74 68 6f 75 74 20 73 61 79
69 6e 67 0a 20 20 20 20 20 20 20 57 48 45 52 45 20 70 72 6f 64 75 63 65
64 20 61 20 73 70 65 63 69 66 69 63 61 74 69 6f 6e 2c 20 61 20 70 72 6f
66 69 6c 65 20 61 6e 64 20 73 69 78 20 69 6d 70 6c 65 6d 65 6e 74 61 74
69 6f 6e 73 20 74 68 61 74 0a 20 20 20 20 20 20 20 65 61 63 68 20 61 6e
73 77 65 72 65 64 20 61 20 64 69 66 66 65 72 65 6e 74 20 71 75 65 73 74
69 6f 6e 20 61 6e 64 20 61 6c 6c 20 73 6f 75 6e 64 65 64 20 6c 69 6b 65
20 74 68 65 79 20 77 65 72 65 0a 20 20 20 20 20 20 20 61 6e 73 77 65 72
69 6e 67 20 74 68 65 20 73 61 6d 65 20 6f 6e 65 2e 0a 0a 20 20 20 20 20
20 20 54 48 45 20 4b 45 52 4e 45 4c 20 61 64 6d 69 74 73 20 61 6e 79 20
63 61 6e 6f 6e 69 63 61 6c 20 76 61 6c 75 65 20 61 73 20 61 20 6b 65 79
2c 20 61 6e 64 20 44 31 20 73 65 74 74 6c 65 73 20 74 68 65 69 72 0a 20
20 20 20 20 20 20 65 71 75 61 6c 69 74 79 3a 20 62 79 74 65 20 65 71 75
61 6c 69 74 79 20 6f 66 20 74 68 65 20 63 61 6e 6f 6e 69 63 61 6c 20 65
6e 63 6f 64 69 6e 67 2e 20 53 6f 20 30 2e 30 20 61 6e 64 20 2d 30 2e 30
20 61 72 65 0a 20 20 20 20 20 20 20 74 77 6f 20 6b 65 79 73 2c 20 62 65
63 61 75 73 65 20 66 39 30 30 30 30 20 61 6e 64 20 66 39 38 30 30 30 20
61 72 65 20 74 77 6f 20 62 79 74 65 20 73 74 72 69 6e 67 73 2c 20 61 6e
64 20 31 20 61 6e 64 20 31 2e 30 0a 20 20 20 20 20 20 20 61 72 65 20 74
77 6f 20 6b 65 79 73 20 66 6f 72 20 74 68 65 20 73 61 6d 65 20 72 65 61
73 6f 6e 2e 0a 0a 20 20 20 20 20 20 20 54 48 45 20 56 30 20 50 52 4f 46
49 4c 45 20 6e 61 72 72 6f 77 73 20 74 68 61 74 20 74 6f 20 74 65 78 74
20 61 6e 64 20 69 6e 74 65 67 65 72 20 6b 65 79 73 2e 20 4e 6f 74 20 66
6f 72 20 65 6c 65 67 61 6e 63 65 3a 0a 20 20 20 20 20 20 20 61 20 66 6c
6f 61 74 20 6b 65 79 20 69 73 20 46 36 20 e2 80 94 20 65 76 65 72 79 20
6c 61 6e 67 75 61 67 65 27 73 20 66 6c 6f 61 74 20 63 6f 6d 70 61 72 69
73 6f 6e 20 73 61 79 73 20 2d 30 2e 30 20 3d 3d 20 30 2e 30 0a 20 20 20
20 20 20 20 77 68 69 6c 65 20 74 68 65 69 72 20 63 61 6e 6f 6e 69 63 61
6c 20 66 6f 72 6d 73 20 64 69 66 66 65 72 2c 20 73 6f 20 61 20 6d 61 70
20 68 6f 6c 64 69 6e 67 20 62 6f 74 68 20 63 61 6e 6e 6f 74 20 62 65 0a
20 20 20 20 20 20 20 72 65 70 72 65 73 65 6e 74 65 64 20 61 74 20 61 6c
6c 20 69 6e 20 61 20 68 6f 73 74 20 77 68 6f 73 65 20 6d 61 70 20 69 73
20 61 20 68 61 73 68 20 74 61 62 6c 65 2e 20 41 20 62 79 74 65 2d 73 74
72 69 6e 67 0a 20 20 20 20 20 20 20 6b 65 79 20 69 73 20 72 65 66 75 73
65 64 20 66 6f 72 20 74 68 65 20 6d 69 72 72 6f 72 20 72 65 61 73 6f 6e
2c 20 62 65 69 6e 67 20 75 6e 68 61 73 68 61 62 6c 65 20 6f 75 74 72 69
67 68 74 20 69 6e 20 73 6f 6d 65 0a 20 20 20 20 20 20 20 68 6f 73 74 73
20 61 6e 64 20 69 64 65 6e 74 69 63 61 6c 20 74 6f 20 61 20 74 65 78 74
20 6b 65 79 20 69 6e 20 6f 74 68 65 72 73 2e 0a 0a 20 20 20 20 20 20 20
54 48 45 20 54 45 58 54 20 53 59 4e 54 41 58 20 77 72 69 74 65 73 20 61
20 6b 65 79 20 61 73 20 61 20 77 6f 72 64 20 6f 72 20 61 20 71 75 6f 74
65 64 20 73 74 72 69 6e 67 2c 20 61 6e 64 20 68 61 73 20 61 0a 20 20 20
20 20 20 20 73 70 65 6c 6c 69 6e 67 20 66 6f 72 20 6e 6f 74 68 69 6e 67
20 65 6c 73 65 2e 20 53 6f 20 61 20 64 6f 63 75 6d 65 6e 74 20 77 69 74
68 20 61 6e 20 69 6e 74 65 67 65 72 20 6b 65 79 20 69 73 20 6c 65 67 61
6c 2c 0a 20 20 20 20 20 20 20 65 6e 63 6f 64 65 73 2c 20 64 65 63 6f 64
65 73 20 61 6e 64 20 68 61 73 68 65 73 2c 20 61 6e 64 20 48 41 53 20 4e
4f 20 54 45 58 54 20 46 4f 52 4d 20 e2 80 94 20 74 68 65 20 73 61 6d 65
20 77 61 79 20 61 0a 20 20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 20 72
65 61 64 20 62 61 63 6b 20 66 72 6f 6d 20 43 42 4f 52 20 68 61 73 20 6e
6f 20 63 6f 6d 6d 65 6e 74 73 2e 0a 0a 20 20 20 20 20 20 20 50 52 4f 46
49 4c 45 20 43 48 45 43 4b 49 4e 47 20 49 53 20 41 20 53 45 50 41 52 41
54 45 20 41 43 54 20 46 52 4f 4d 20 44 45 43 4f 44 49 4e 47 2c 20 73 6f
20 61 20 64 65 63 6f 64 65 72 20 74 68 61 74 0a 20 20 20 20 20 20 20 72
65 66 75 73 65 73 20 61 20 6b 65 79 20 74 68 65 20 70 72 6f 66 69 6c 65
20 41 4c 4c 4f 57 53 20 e2 80 94 20 74 65 78 74 2c 20 6f 72 20 61 6e 20
69 6e 74 65 67 65 72 20 e2 80 94 20 69 73 20 6e 6f 74 20 62 65 69 6e 67
0a 20 20 20 20 20 20 20 73 74 72 69 63 74 2c 20 69 74 20 69 73 20 62 65
69 6e 67 20 77 72 6f 6e 67 2e 20 53 69 78 20 69 6d 70 6c 65 6d 65 6e 74
61 74 69 6f 6e 73 20 72 65 66 75 73 65 64 20 61 6e 20 69 6e 74 65 67 65
72 20 6b 65 79 20 69 6e 0a 20 20 20 20 20 20 20 73 69 78 20 64 69 66 66
65 72 65 6e 74 20 77 61 79 73 20 77 68 69 6c 65 20 74 68 69 73 20 64 6f
63 75 6d 65 6e 74 20 61 6e 64 20 74 68 65 20 76 30 20 70 72 6f 66 69 6c
65 20 62 6f 74 68 20 73 61 69 64 20 69 74 0a 20 20 20 20 20 20 20 77 61
73 20 70 65 72 6d 69 74 74 65 64 2c 20 61 6e 64 20 6f 6e 65 20 6f 66 20
74 68 65 6d 20 61 6e 73 77 65 72 65 64 20 77 69 74 68 20 61 20 63 72 61
73 68 2e 0a 0a 20 20 20 20 20 20 20 41 4e 20 49 4d 50 4c 45 4d 45 4e 54
41 54 49 4f 4e 20 4d 41 59 20 53 54 49 4c 4c 20 52 45 46 55 53 45 20 57
48 41 54 20 49 54 20 43 41 4e 4e 4f 54 20 52 45 50 52 45 53 45 4e 54 2c
20 61 6e 64 20 6d 75 73 74 0a 20 20 20 20 20 20 20 73 61 79 20 77 68 69
63 68 20 6f 66 20 74 68 65 20 74 77 6f 20 69 74 20 69 73 20 64 6f 69 6e
67 2e 20 54 68 65 20 72 65 66 65 72 65 6e 63 65 20 72 65 66 75 73 65 73
20 61 20 66 6c 6f 61 74 20 6b 65 79 20 61 74 0a 20 20 20 20 20 20 20 74
68 65 20 64 65 63 6f 64 65 72 2c 20 61 6e 64 20 74 68 61 74 20 69 73 20
61 20 72 65 70 72 65 73 65 6e 74 61 74 69 6f 6e 20 6c 69 6d 69 74 20 72
61 74 68 65 72 20 74 68 61 6e 20 61 20 70 72 6f 66 69 6c 65 0a 20 20 20
20 20 20 20 63 68 65 63 6b 3a 20 69 74 73 20 76 61 6c 75 65 73 20 6c 69
76 65 20 69 6e 20 61 20 68 61 73 68 20 6d 61 70 2c 20 73 6f 20 66 39 30
30 30 30 20 61 6e 64 20 66 39 38 30 30 30 20 61 72 72 69 76 65 20 61 73
20 6f 6e 65 0a 20 20 20 20 20 20 20 65 6e 74 72 79 20 61 6e 64 20 61 20
70 61 69 72 20 69 73 20 6c 6f 73 74 20 69 6e 20 73 69 6c 65 6e 63 65 2e
20 52 65 66 75 73 69 6e 67 20 69 73 20 74 68 65 20 68 6f 6e 65 73 74 20
61 6e 73 77 65 72 20 74 6f 0a 20 20 20 20 20 20 20 74 68 61 74 2c 20 61
6e 64 20 70 72 65 74 65 6e 64 69 6e 67 20 69 74 20 77 61 73 20 74 68 65
20 70 72 6f 66 69 6c 65 20 74 61 6c 6b 69 6e 67 20 77 6f 75 6c 64 20 68
69 64 65 20 61 20 6c 69 6d 69 74 0a 20 20 20 20 20 20 20 62 65 68 69 6e
64 20 61 20 72 75 6c 65 2e 78 28 61 2d 66 6f 72 6d 61 74 74 65 72 2d 72
65 66 75 73 65 73 2d 77 68 61 74 2d 69 74 2d 63 61 6e 6e 6f 74 2d 73 70
65 6c 6c 79 02 32 49 74 20 64 6f 65 73 20 6e 6f 74 20 69 6e 76 65 6e 74
20 61 20 73 70 65 6c 6c 69 6e 67 2e 0a 20 20 20 20 20 20 20 52 65 6e 64
65 72 69 6e 67 20 74 68 65 20 69 6e 74 65 67 65 72 20 6b 65 79 20 31 20
61 73 20 60 22 31 22 20 32 60 20 70 72 6f 64 75 63 65 73 20 74 65 78 74
20 74 68 61 74 20 72 65 2d 72 65 61 64 73 20 61 73 0a 20 20 20 20 20 20
20 61 20 54 45 58 54 20 6b 65 79 20 61 6e 64 20 65 6e 63 6f 64 65 73 20
74 6f 20 64 69 66 66 65 72 65 6e 74 20 62 79 74 65 73 20 e2 80 94 20 61
20 72 6f 75 6e 64 20 74 72 69 70 20 74 68 61 74 20 73 69 6c 65 6e 74 6c
79 0a 20 20 20 20 20 20 20 63 68 61 6e 67 65 73 20 74 68 65 20 64 6f 63
75 6d 65 6e 74 2c 20 77 68 69 63 68 20 69 73 20 77 6f 72 73 65 20 74 68
61 6e 20 6e 6f 20 72 6f 75 6e 64 20 74 72 69 70 20 61 74 20 61 6c 6c 2e
0a 0a 20 20 20 20 20 20 20 57 48 41 54 20 54 48 45 20 52 45 46 45 52 45
4e 43 45 20 44 49 44 20 49 4e 53 54 45 41 44 2c 20 62 65 66 6f 72 65 20
74 68 69 73 20 77 61 73 20 77 72 69 74 74 65 6e 20 64 6f 77 6e 2c 20 77
61 73 20 77 6f 72 73 65 0a 20 20 20 20 20 20 20 74 68 61 6e 20 65 69 74
68 65 72 3a 20 69 74 20 72 65 6e 64 65 72 65 64 20 60 7b 31 3a 20 32 7d
60 20 61 73 20 60 31 20 6e 75 6c 6c 60 2e 20 54 68 65 20 6b 65 79 20 73
74 72 69 6e 67 69 66 69 65 64 2c 20 74 68 65 0a 20 20 20 20 20 20 20 6c
6f 6f 6b 75 70 20 66 6f 72 20 74 68 65 20 73 74 72 69 6e 67 69 66 69 65
64 20 6b 65 79 20 66 6f 75 6e 64 20 6e 6f 74 68 69 6e 67 2c 20 61 6e 64
20 74 68 65 20 66 6f 72 6d 61 74 74 65 72 20 65 6d 69 74 74 65 64 0a 20
20 20 20 20 20 20 61 20 70 61 69 72 20 74 68 61 74 20 77 61 73 20 6e 65
69 74 68 65 72 20 69 6e 20 74 68 65 20 64 6f 63 75 6d 65 6e 74 20 6e 6f
72 20 72 65 61 64 61 62 6c 65 20 62 61 63 6b 2e 78 2a 61 2d 71 75 61 6e
74 69 74 79 2d 63 61 72 72 69 65 73 2d 69 74 73 2d 75 6e 69 74 2d 61 73
2d 61 2d 71 75 61 6c 69 66 69 65 72 79 04 d6 60 6d 61 73 73 20 6b 67 20
35 2e 39 37 65 32 34 60 2c 20 61 6e 64 20 74 68 65 0a 20 20 20 20 20 20
20 73 68 61 70 65 20 69 73 20 6e 6f 72 6d 61 74 69 76 65 20 65 76 65 6e
20 74 68 6f 75 67 68 20 74 68 65 20 75 6e 69 74 73 20 61 72 65 20 6e 6f
74 2e 0a 0a 20 20 20 20 20 20 20 54 48 45 20 53 59 4e 54 41 58 20 57 41
53 20 41 4c 52 45 41 44 59 20 48 45 52 45 2e 20 41 20 62 61 72 65 20 77
6f 72 64 20 62 65 66 6f 72 65 20 61 20 76 61 6c 75 65 20 69 73 20 61 20
71 75 61 6c 69 66 69 65 72 0a 20 20 20 20 20 20 20 61 6e 64 20 63 61 6e
20 62 65 20 6e 6f 74 68 69 6e 67 20 65 6c 73 65 2c 20 73 6f 20 74 68 69
73 20 70 61 72 73 65 73 2c 20 65 6e 63 6f 64 65 73 20 61 6e 64 20 72 6f
75 6e 64 2d 74 72 69 70 73 20 77 69 74 68 6f 75 74 0a 20 20 20 20 20 20
20 61 6e 79 20 63 68 61 6e 67 65 20 74 6f 20 74 68 65 20 66 6f 72 6d 61
74 20 e2 80 94 20 77 68 61 74 20 77 61 73 20 6d 69 73 73 69 6e 67 20 77
61 73 20 61 6e 79 62 6f 64 79 20 73 61 79 69 6e 67 20 69 74 20 77 61 73
0a 20 20 20 20 20 20 20 54 48 45 20 77 61 79 2c 20 77 68 69 63 68 20 69
73 20 77 68 79 20 74 68 72 65 65 20 64 6f 63 75 6d 65 6e 74 73 20 69 6e
20 74 68 69 73 20 72 65 70 6f 73 69 74 6f 72 79 20 69 6e 76 65 6e 74 65
64 20 74 68 72 65 65 0a 20 20 20 20 20 20 20 63 6f 6e 76 65 6e 74 69 6f
6e 73 3a 20 61 20 75 6e 69 74 73 20 62 6c 6f 63 6b 20 6d 61 70 70 69 6e
67 20 6e 61 6d 65 2d 73 75 66 66 69 78 65 73 20 74 6f 20 70 72 6f 73 65
2c 20 61 20 75 6e 69 74 20 62 75 72 69 65 64 0a 20 20 20 20 20 20 20 69
6e 20 61 20 63 6f 6c 75 6d 6e 20 6e 61 6d 65 2c 20 61 6e 64 20 61 20 73
69 62 6c 69 6e 67 20 6b 65 79 2e 20 4e 6f 20 74 77 6f 20 61 67 72 65 65
64 20 61 6e 64 20 6e 6f 74 68 69 6e 67 20 72 65 61 64 20 61 6e 79 0a 20
20 20 20 20 20 20 6f 66 20 74 68 65 6d 2e 0a 0a 20 20 20 20 20 20 20 57
48 49 43 48 20 55 4e 49 54 53 20 45 58 49 53 54 20 49 53 20 4e 4f 54 20
54 48 45 20 4b 45 52 4e 45 4c 27 53 20 42 55 53 49 4e 45 53 53 2e 20 41
20 6c 69 73 74 20 6f 66 20 75 6e 69 74 73 20 77 69 74 68 0a 20 20 20 20
20 20 20 6d 65 61 6e 69 6e 67 73 20 69 73 20 61 20 72 65 67 69 73 74 72
79 2c 20 61 20 72 65 67 69 73 74 72 79 20 69 73 20 67 6f 76 65 72 6e 61
6e 63 65 2c 20 61 6e 64 20 74 68 69 73 20 70 72 6f 6a 65 63 74 0a 20 20
20 20 20 20 20 64 65 6c 65 74 65 64 20 67 6f 76 65 72 6e 61 6e 63 65 20
6f 6e 20 70 75 72 70 6f 73 65 20 e2 80 94 20 74 68 65 20 73 61 6d 65 20
72 65 61 73 6f 6e 69 6e 67 20 74 68 61 74 20 6d 61 64 65 20 74 61 67 73
0a 20 20 20 20 20 20 20 68 61 73 68 2d 64 65 72 69 76 65 64 2e 20 53 6f
20 74 68 65 20 6b 65 72 6e 65 6c 20 66 69 78 65 73 20 74 68 65 20 53 48
41 50 45 2c 20 77 68 69 63 68 20 6d 61 6b 65 73 20 74 68 65 20 71 75 65
73 74 69 6f 6e 0a 20 20 20 20 20 20 20 60 77 68 61 74 20 75 6e 69 74 20
69 73 20 74 68 69 73 20 71 75 61 6e 74 69 74 79 20 69 6e 60 20 61 6e 73
77 65 72 61 62 6c 65 20 66 6f 72 20 61 6e 79 20 64 6f 63 75 6d 65 6e 74
20 62 79 20 61 6e 79 74 68 69 6e 67 2c 0a 20 20 20 20 20 20 20 61 6e 64
20 76 6f 63 61 62 2f 71 75 61 6c 69 66 69 65 72 73 2f 75 6e 69 74 73 2d
76 30 2e 75 6d 73 67 20 63 61 72 72 69 65 73 20 61 20 73 65 74 20 64 6f
63 75 6d 65 6e 74 73 20 6d 61 79 20 61 64 6f 70 74 2c 0a 20 20 20 20 20
20 20 65 78 74 65 6e 64 2c 20 6f 72 20 69 67 6e 6f 72 65 20 69 6e 20 66
61 76 6f 75 72 20 6f 66 20 74 68 65 69 72 20 6f 77 6e 2e 0a 0a 20 20 20
20 20 20 20 54 68 69 73 20 69 73 20 46 31 39 2c 20 61 6e 64 20 74 68 65
20 61 6e 73 77 65 72 20 69 73 20 74 68 65 20 6f 6e 65 20 46 32 31 20 61
72 72 69 76 65 64 20 61 74 20 66 72 6f 6d 20 74 68 65 20 6f 74 68 65 72
0a 20 20 20 20 20 20 20 64 69 72 65 63 74 69 6f 6e 3a 20 6d 65 63 68 61
6e 69 73 6d 20 69 6e 20 74 68 65 20 66 6f 72 6d 61 74 2c 20 70 6f 6c 69
63 79 20 69 6e 20 61 20 63 6f 6d 70 6f 73 61 62 6c 65 20 65 78 74 65 6e
73 69 6f 6e 2e 66 73 74 61 74 75 73 da 00 01 11 d4 6b 70 72 6f 76 69 73
69 6f 6e 61 6c 67 67 72 61 6d 6d 61 72 da 00 01 11 d5 82 81 da 00 01 11
d4 69 6e 6f 72 6d 61 74 69 76 65 a3 65 72 75 6c 65 73 b1 6e 74 61 62 6c
65 2d 69 73 2d 73 75 67 61 72 78 f2 41 20 74 61 62 6c 65 20 65 6e 63 6f
64 65 73 20 65 78 61 63 74 6c 79 20 61 73 20 61 20 73 65 71 75 65 6e 63
65 20 6f 66 20 6d 61 70 73 20 77 69 74 68 20 69 64 65 6e 74 69 63 61 6c
20 6b 65 79 0a 20 20 20 20 20 20 20 20 20 73 65 74 73 2e 20 48 65 61 64
65 72 20 63 65 6c 6c 73 20 6e 61 6d 65 20 74 68 65 20 66 69 65 6c 64 73
3b 20 65 61 63 68 20 72 6f 77 20 6d 75 73 74 20 73 75 70 70 6c 79 20 65
78 61 63 74 6c 79 20 61 73 0a 20 20 20 20 20 20 20 20 20 6d 61 6e 79 20
63 65 6c 6c 73 2e 20 43 65 6c 6c 73 20 6e 65 65 64 20 6e 6f 20 73 65 70
61 72 61 74 6f 72 20 62 65 63 61 75 73 65 20 61 6e 20 61 6e 6e 6f 74 61
74 65 64 20 76 61 6c 75 65 20 69 73 0a 20 20 20 20 20 20 20 20 20 73 65
6c 66 2d 64 65 6c 69 6d 69 74 69 6e 67 2e 72 72 6f 77 73 2d 61 72 65 2d
73 65 70 61 72 61 74 65 64 79 04 ca 52 45 53 54 41 54 45 44 20 32 30 32
36 2d 30 39 2d 30 32 20 77 69 74 68 20 61 20 76 65 63 74 6f 72 2c 20 62
65 63 61 75 73 65 20 74 68 65 20 72 75 6c 65 0a 20 20 20 20 20 20 20 20
20 77 61 73 20 77 72 69 74 74 65 6e 20 61 6e 64 20 6e 6f 74 20 65 6e 66
6f 72 63 65 64 2e 20 61 2d 66 69 6e 61 6c 2d 72 6f 77 2d 6e 65 65 64 73
2d 6e 6f 2d 73 65 70 61 72 61 74 6f 72 20 73 61 79 73 0a 20 20 20 20 20
20 20 20 20 60 78 20 5b 20 7c 20 61 20 62 20 7c 20 31 20 32 20 5d 60 20
69 73 20 6d 61 6c 66 6f 72 6d 65 64 2c 20 61 6e 64 20 6f 6e 20 74 68 65
20 64 61 79 20 74 68 61 74 20 73 65 6e 74 65 6e 63 65 20 77 61 73 0a 20
20 20 20 20 20 20 20 20 63 68 65 63 6b 65 64 20 74 68 65 20 72 65 66 65
72 65 6e 63 65 20 61 6e 64 20 66 6f 75 72 20 6f 66 20 65 6c 65 76 65 6e
20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 73 20 61 63 63 65 70 74 65
64 20 69 74 0a 20 20 20 20 20 20 20 20 20 77 68 69 6c 65 20 66 69 76 65
20 72 65 66 75 73 65 64 20 69 74 20 e2 80 94 20 61 6e 64 20 74 68 65 20
66 69 76 65 20 77 65 72 65 20 62 65 69 6e 67 20 72 65 70 6f 72 74 65 64
20 61 73 20 74 68 65 20 6f 64 64 0a 20 20 20 20 20 20 20 20 20 6f 6e 65
73 2e 20 41 20 72 75 6c 65 20 66 69 76 65 20 69 6d 70 6c 65 6d 65 6e 74
61 74 69 6f 6e 73 20 66 6f 6c 6c 6f 77 20 61 6e 64 20 74 68 65 20 72 65
66 65 72 65 6e 63 65 20 64 6f 65 73 20 6e 6f 74 0a 20 20 20 20 20 20 20
20 20 69 73 20 61 20 72 75 6c 65 20 6e 6f 74 68 69 6e 67 20 70 69 6e 6e
65 64 2e 20 60 78 20 5b 20 7c 20 61 20 62 20 7c 20 31 20 32 20 5d 60 20
69 73 20 6e 6f 77 20 61 20 72 65 6a 65 63 74 20 76 65 63 74 6f 72 2c 0a
20 20 20 20 20 20 20 20 20 74 68 65 20 72 65 66 65 72 65 6e 63 65 20 72
65 66 75 73 65 73 20 69 74 20 77 69 74 68 20 61 20 6d 65 73 73 61 67 65
20 74 68 61 74 20 6e 61 6d 65 73 20 74 68 65 20 66 69 78 2c 20 61 6e 64
20 74 68 65 0a 20 20 20 20 20 20 20 20 20 66 6f 75 72 20 66 6f 6c 6c 6f
77 2e 0a 0a 20 20 20 20 20 20 20 20 20 57 48 59 20 4d 41 4c 46 4f 52 4d
45 44 20 52 41 54 48 45 52 20 54 48 41 4e 20 43 4f 4e 56 45 4e 49 45 4e
54 3a 20 61 20 72 6f 77 27 73 20 63 65 6c 6c 73 20 63 61 72 72 79 20 6e
6f 0a 20 20 20 20 20 20 20 20 20 73 65 70 61 72 61 74 6f 72 2c 20 62 65
63 61 75 73 65 20 61 6e 20 61 6e 6e 6f 74 61 74 65 64 20 76 61 6c 75 65
20 69 73 20 73 65 6c 66 2d 64 65 6c 69 6d 69 74 69 6e 67 2c 20 73 6f 20
74 68 65 20 27 7c 27 0a 20 20 20 20 20 20 20 20 20 69 73 20 74 68 65 20
6f 6e 6c 79 20 74 68 69 6e 67 20 74 68 61 74 20 73 61 79 73 20 77 68 65
72 65 20 6f 6e 65 20 72 6f 77 20 65 6e 64 73 20 61 6e 64 20 74 68 65 20
6e 65 78 74 20 62 65 67 69 6e 73 2e 0a 20 20 20 20 20 20 20 20 20 4c 65
74 74 69 6e 67 20 61 20 72 6f 77 20 62 65 67 69 6e 20 6d 69 64 2d 6c 69
6e 65 20 6d 61 6b 65 73 20 27 7c 27 20 64 6f 20 74 68 61 74 20 6a 6f 62
20 69 6e 20 74 77 6f 20 70 6f 73 69 74 69 6f 6e 73 2c 0a 20 20 20 20 20
20 20 20 20 61 6e 64 20 74 68 65 20 6f 6e 65 20 70 6c 61 63 65 20 74 68
69 73 20 66 6f 72 6d 61 74 20 68 61 73 20 62 65 65 6e 20 66 72 61 67 69
6c 65 20 69 73 20 65 78 61 63 74 6c 79 20 74 68 65 20 72 6f 77 0a 20 20
20 20 20 20 20 20 20 62 6f 75 6e 64 61 72 79 20 e2 80 94 20 46 32 37 2c
20 46 32 39 2c 20 61 6e 64 20 61 20 63 65 6c 6c 20 65 6e 64 69 6e 67 20
69 6e 20 61 6e 20 69 64 65 6e 74 69 66 69 65 72 20 73 77 61 6c 6c 6f 77
69 6e 67 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 63 65 6c 6c 20 61 66
74 65 72 20 69 74 2e 20 4f 6e 65 20 72 65 61 64 69 6e 67 3a 20 61 20 72
6f 77 20 62 65 67 69 6e 73 20 61 66 74 65 72 20 61 20 73 65 70 61 72 61
74 6f 72 2e 20 54 68 65 0a 20 20 20 20 20 20 20 20 20 66 6f 72 6d 61 74
74 65 72 20 68 61 73 20 61 6c 77 61 79 73 20 65 6d 69 74 74 65 64 20 74
68 61 74 2c 20 73 6f 20 6e 6f 20 63 61 6e 6f 6e 69 63 61 6c 20 64 6f 63
75 6d 65 6e 74 20 63 68 61 6e 67 65 73 2e 75 68 65 61 64 65 72 2d 63 65
6c 6c 73 2d 61 72 65 2d 6b 65 79 73 79 03 63 41 20 68 65 61 64 65 72 20
63 65 6c 6c 20 6e 61 6d 65 73 20 61 20 6d 61 70 20 6b 65 79 2c 20 73 6f
20 69 74 20 6d 61 79 20 62 65 0a 20 20 20 20 20 20 20 20 20 77 72 69 74
74 65 6e 20 74 68 65 20 77 61 79 20 61 20 6b 65 79 20 69 73 20 77 72 69
74 74 65 6e 20 61 6e 79 77 68 65 72 65 20 65 6c 73 65 3a 20 61 20 62 61
72 65 20 77 6f 72 64 2c 20 6f 72 20 61 0a 20 20 20 20 20 20 20 20 20 71
75 6f 74 65 64 20 73 74 72 69 6e 67 20 77 68 65 6e 20 74 68 65 20 6e 61
6d 65 20 63 6f 6e 74 61 69 6e 73 20 61 20 73 70 61 63 65 2e 0a 0a 20 20
20 20 20 20 20 20 20 54 68 65 20 66 69 72 73 74 20 76 65 72 73 69 6f 6e
20 6f 66 20 74 68 69 73 20 72 75 6c 65 20 61 6c 6c 6f 77 65 64 20 6f 6e
6c 79 20 62 61 72 65 20 77 6f 72 64 73 2c 20 77 68 69 63 68 20 6d 61 64
65 20 61 0a 20 20 20 20 20 20 20 20 20 74 61 62 6c 65 20 68 65 61 64 65
72 20 74 68 65 20 6f 6e 65 20 70 6c 61 63 65 20 69 6e 20 74 68 65 20 66
6f 72 6d 61 74 20 77 68 65 72 65 20 61 20 6b 65 79 20 63 6f 75 6c 64 20
6e 6f 74 20 62 65 0a 20 20 20 20 20 20 20 20 20 71 75 6f 74 65 64 2e 20
54 68 65 20 66 61 69 6c 75 72 65 20 77 61 73 20 73 69 6c 65 6e 74 20 61
6e 64 20 6d 69 73 6c 65 61 64 69 6e 67 3a 20 60 7c 20 68 61 7a 61 72 64
20 20 77 68 61 74 20 68 61 70 70 65 6e 73 60 0a 20 20 20 20 20 20 20 20
20 70 61 72 73 65 64 20 61 73 20 74 68 72 65 65 20 63 6f 6c 75 6d 6e 73
2c 20 61 6e 64 20 74 68 65 20 65 72 72 6f 72 20 61 72 72 69 76 65 64 20
6f 6e 20 74 68 65 20 66 6f 6c 6c 6f 77 69 6e 67 20 72 6f 77 20 61 73 0a
20 20 20 20 20 20 20 20 20 61 20 63 65 6c 6c 2d 63 6f 75 6e 74 20 6d 69
73 6d 61 74 63 68 2c 20 6e 61 6d 69 6e 67 20 6e 65 69 74 68 65 72 20 74
68 65 20 68 65 61 64 65 72 20 6e 6f 72 20 74 68 65 20 63 61 75 73 65 2e
20 49 74 0a 20 20 20 20 20 20 20 20 20 63 61 75 67 68 74 20 74 68 65 20
73 61 6d 65 20 61 75 74 68 6f 72 20 66 6f 75 72 20 74 69 6d 65 73 20 69
6e 20 6f 6e 65 20 64 61 79 20 61 63 72 6f 73 73 20 66 6f 75 72 20 64 6f
63 75 6d 65 6e 74 73 2c 0a 20 20 20 20 20 20 20 20 20 77 68 69 63 68 20
69 73 20 61 20 70 72 6f 70 65 72 74 79 20 6f 66 20 74 68 65 20 67 72 61
6d 6d 61 72 20 72 61 74 68 65 72 20 74 68 61 6e 20 6f 66 20 74 68 65 20
61 75 74 68 6f 72 2e 0a 0a 20 20 20 20 20 20 20 20 20 50 75 72 65 6c 79
20 61 64 64 69 74 69 76 65 3a 20 65 76 65 72 79 20 74 61 62 6c 65 20 61
6c 72 65 61 64 79 20 77 72 69 74 74 65 6e 20 73 74 61 79 73 20 76 61 6c
69 64 20 61 6e 64 20 65 6e 63 6f 64 65 73 0a 20 20 20 20 20 20 20 20 20
74 6f 20 74 68 65 20 73 61 6d 65 20 62 79 74 65 73 2c 20 62 65 63 61 75
73 65 20 61 20 62 61 72 65 20 77 6f 72 64 20 6d 65 61 6e 73 20 77 68 61
74 20 69 74 20 61 6c 77 61 79 73 20 6d 65 61 6e 74 2e 78 18 69 64 65 6e
74 69 66 69 65 72 73 2d 6d 61 79 2d 61 6e 6e 6f 74 61 74 65 78 f6 41 6e
20 69 64 65 6e 74 69 66 69 65 72 20 61 74 20 74 68 65 20 65 6e 64 20 6f
66 20 61 20 76 61 6c 75 65 20 70 6f 73 69 74 69 6f 6e 20 69 73 20 74 68
65 20 76 61 6c 75 65 3b 20 66 6f 6c 6c 6f 77 65 64 0a 20 20 20 20 20 20
20 20 20 62 79 20 6d 6f 72 65 2c 20 69 74 20 61 6e 6e 6f 74 61 74 65 73
2e 20 55 6e 61 6d 62 69 67 75 6f 75 73 20 65 69 74 68 65 72 20 77 61 79
2c 20 73 69 6e 63 65 20 69 74 20 69 73 20 61 6c 77 61 79 73 0a 20 20 20
20 20 20 20 20 20 73 70 65 6c 6c 65 64 20 40 6e 61 6d 65 2e 20 54 68 69
73 20 69 73 20 77 68 61 74 20 6c 65 74 73 20 27 6c 65 78 65 6d 65 20 40
6c 65 78 2f 78 20 7b 20 e2 80 a6 20 7d 27 20 70 61 72 73 65 20 77 69 74
68 20 6e 6f 0a 20 20 20 20 20 20 20 20 20 65 78 74 72 61 20 67 72 61 6d
6d 61 72 2e 78 18 77 68 61 74 2d 61 2d 72 65 66 65 72 65 6e 63 65 2d 64
65 6e 6f 74 65 73 79 08 c0 41 20 72 65 66 65 72 65 6e 63 65 20 6e 61 6d
65 73 20 6f 6e 65 20 6f 66 20 74 77 6f 20 74 68 69 6e 67 73 2c 20 61 6e
64 20 77 68 69 63 68 0a 20 20 20 20 20 20 20 20 20 6f 6e 65 20 69 73 20
76 69 73 69 62 6c 65 20 69 6e 20 74 68 65 20 72 65 66 65 72 65 6e 63 65
20 69 74 73 65 6c 66 2e 0a 0a 20 20 20 20 20 20 20 20 20 41 20 6e 61 6d
65 20 63 6f 6e 74 61 69 6e 69 6e 67 20 6e 6f 20 64 6f 74 20 64 65 6e 6f
74 65 73 20 61 6e 20 69 64 65 6e 74 69 66 69 65 72 20 e2 80 94 20 73 6f
6d 65 74 68 69 6e 67 20 64 65 63 6c 61 72 65 64 0a 20 20 20 20 20 20 20
20 20 77 69 74 68 20 40 20 73 6f 6d 65 77 68 65 72 65 2e 20 41 20 6e 61
6d 65 20 63 6f 6e 74 61 69 6e 69 6e 67 20 61 20 64 6f 74 20 64 65 6e 6f
74 65 73 20 61 20 70 61 74 68 20 66 72 6f 6d 20 74 68 65 20 72 6f 6f 74
0a 20 20 20 20 20 20 20 20 20 6f 66 20 74 68 65 20 64 6f 63 75 6d 65 6e
74 20 68 6f 6c 64 69 6e 67 20 74 68 65 20 72 65 66 65 72 65 6e 63 65 2c
20 65 61 63 68 20 73 65 67 6d 65 6e 74 20 61 20 6d 61 70 20 6b 65 79 2e
0a 0a 20 20 20 20 20 20 20 20 20 54 68 65 20 64 69 73 74 69 6e 63 74 69
6f 6e 20 63 6f 73 74 73 20 6e 6f 20 73 79 6e 74 61 78 20 62 65 63 61 75
73 65 20 69 6e 66 69 78 20 64 6f 74 20 69 73 20 61 6c 72 65 61 64 79 20
72 65 73 65 72 76 65 64 0a 20 20 20 20 20 20 20 20 20 66 6f 72 20 70 61
74 68 73 2c 20 61 6e 64 20 62 6f 74 68 20 66 6f 72 6d 73 20 61 6c 72 65
61 64 79 20 70 61 72 73 65 3a 20 61 20 72 65 66 65 72 65 6e 63 65 20 69
73 20 73 74 6f 72 65 64 20 61 73 20 6f 6e 65 0a 20 20 20 20 20 20 20 20
20 6f 70 61 71 75 65 20 73 74 72 69 6e 67 20 65 69 74 68 65 72 20 77 61
79 2c 20 64 6f 74 73 20 69 6e 63 6c 75 64 65 64 2e 0a 0a 20 20 20 20 20
20 20 20 20 57 68 79 20 62 6f 74 68 2e 20 41 6e 20 69 64 65 6e 74 69 66
69 65 72 20 69 73 20 61 20 73 74 61 62 6c 65 20 6e 61 6d 65 20 74 68 61
74 20 73 75 72 76 69 76 65 73 20 74 68 65 20 74 68 69 6e 67 20 62 65 69
6e 67 0a 20 20 20 20 20 20 20 20 20 6d 6f 76 65 64 2c 20 61 6e 64 20 6d
75 73 74 20 62 65 20 64 65 63 6c 61 72 65 64 2e 20 41 20 70 61 74 68 20
69 73 20 61 20 6c 6f 63 61 74 69 6f 6e 20 74 68 61 74 20 6e 65 65 64 73
20 6e 6f 0a 20 20 20 20 20 20 20 20 20 64 65 63 6c 61 72 61 74 69 6f 6e
20 61 6e 64 20 62 72 65 61 6b 73 20 69 66 20 74 68 65 20 64 6f 63 75 6d
65 6e 74 20 69 73 20 72 65 6f 72 67 61 6e 69 73 65 64 2e 20 4e 65 69 74
68 65 72 20 69 73 0a 20 20 20 20 20 20 20 20 20 62 65 74 74 65 72 3b 20
74 68 65 79 20 61 6e 73 77 65 72 20 64 69 66 66 65 72 65 6e 74 20 6e 65
65 64 73 2c 20 61 6e 64 20 72 65 71 75 69 72 69 6e 67 20 6f 6e 6c 79 20
6f 6e 65 20 69 6d 70 6f 73 65 73 0a 20 20 20 20 20 20 20 20 20 69 74 73
20 63 6f 73 74 20 65 76 65 72 79 77 68 65 72 65 2e 20 52 65 71 75 69 72
69 6e 67 20 69 64 65 6e 74 69 66 69 65 72 73 20 6d 61 6b 65 73 20 65 76
65 72 79 20 65 6e 74 72 79 20 6f 66 20 61 0a 20 20 20 20 20 20 20 20 20
6b 65 79 65 64 20 63 6f 6c 6c 65 63 74 69 6f 6e 20 77 72 69 74 65 20 69
74 73 20 6f 77 6e 20 6e 61 6d 65 20 74 77 69 63 65 2c 20 77 69 74 68 20
6e 6f 74 68 69 6e 67 20 63 68 65 63 6b 69 6e 67 20 74 68 65 0a 20 20 20
20 20 20 20 20 20 74 77 6f 20 61 67 72 65 65 2e 20 52 65 71 75 69 72 69
6e 67 20 70 61 74 68 73 20 6d 61 6b 65 73 20 65 76 65 72 79 20 72 65 66
65 72 65 6e 63 65 20 66 72 61 67 69 6c 65 2e 0a 0a 20 20 20 20 20 20 20
20 20 41 20 6b 65 79 20 74 68 61 74 20 69 74 73 65 6c 66 20 63 6f 6e 74
61 69 6e 73 20 61 20 64 6f 74 20 63 61 6e 6e 6f 74 20 62 65 20 72 65 61
63 68 65 64 20 62 79 20 61 20 70 61 74 68 2c 20 62 65 63 61 75 73 65 0a
20 20 20 20 20 20 20 20 20 74 68 65 20 64 6f 74 20 69 73 20 61 20 73 65
70 61 72 61 74 6f 72 2e 20 53 75 63 68 20 61 20 6b 65 79 20 6e 65 65 64
73 20 61 6e 20 69 64 65 6e 74 69 66 69 65 72 2e 0a 0a 20 20 20 20 20 20
20 20 20 41 20 50 41 54 48 20 49 53 20 52 4f 4f 54 45 44 20 41 54 20 54
48 45 20 44 4f 43 55 4d 45 4e 54 2c 20 41 4e 44 20 41 4c 53 4f 20 41 54
20 49 54 53 20 53 4f 4c 45 20 54 4f 50 2d 4c 45 56 45 4c 20 42 4c 4f 43
4b 0a 20 20 20 20 20 20 20 20 20 57 48 45 4e 20 54 48 45 52 45 20 49 53
20 45 58 41 43 54 4c 59 20 4f 4e 45 2e 20 41 6c 6d 6f 73 74 20 65 76 65
72 79 20 64 6f 63 75 6d 65 6e 74 20 69 73 20 6f 6e 65 20 6e 61 6d 65 64
20 62 6c 6f 63 6b 20 e2 80 94 0a 20 20 20 20 20 20 20 20 20 60 6c 61 6e
67 75 61 67 65 20 40 6c 61 6e 67 2f 61 6b 6b 2f 6f 62 2f 76 30 20 7b 20
e2 80 a6 20 7d 60 20 e2 80 94 20 61 6e 64 20 69 6e 73 69 64 65 20 69 74
20 6e 6f 62 6f 64 79 20 77 72 69 74 65 73 0a 20 20 20 20 20 20 20 20 20
60 40 6c 61 6e 67 75 61 67 65 2e 73 6f 75 72 63 65 73 2e 78 60 2c 20 62
65 63 61 75 73 65 20 74 68 65 20 62 6c 6f 63 6b 20 69 73 20 6e 61 6d 65
64 20 66 6f 72 20 77 68 61 74 20 74 68 65 20 77 68 6f 6c 65 0a 20 20 20
20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 20 69 73 20 61 62 6f 75 74 20
61 6e 64 20 72 65 70 65 61 74 69 6e 67 20 74 68 61 74 20 69 6e 73 69 64
65 20 69 74 73 20 6f 77 6e 20 64 6f 63 75 6d 65 6e 74 20 69 73 20 6e 6f
69 73 65 2e 0a 20 20 20 20 20 20 20 20 20 54 68 65 79 20 77 72 69 74 65
20 60 40 73 6f 75 72 63 65 73 2e 78 60 2c 20 61 6e 64 20 74 68 65 79 20
61 72 65 20 72 69 67 68 74 2e 0a 0a 20 20 20 20 20 20 20 20 20 4d 45 41
53 55 52 45 44 20 42 45 46 4f 52 45 20 54 48 45 20 52 55 4c 45 20 57 41
53 20 43 48 41 4e 47 45 44 2c 20 61 63 72 6f 73 73 20 66 69 66 74 79 2d
73 65 76 65 6e 20 64 6f 63 75 6d 65 6e 74 73 3a 0a 20 20 20 20 20 20 20
20 20 66 6f 75 72 74 65 65 6e 20 64 6f 74 74 65 64 20 72 65 66 65 72 65
6e 63 65 73 20 72 65 73 6f 6c 76 65 64 20 66 72 6f 6d 20 74 68 65 20 64
6f 63 75 6d 65 6e 74 20 72 6f 6f 74 2c 20 6f 6e 65 0a 20 20 20 20 20 20
20 20 20 68 75 6e 64 72 65 64 20 61 6e 64 20 66 6f 72 74 79 2d 74 77 6f
20 72 65 73 6f 6c 76 65 64 20 6f 6e 6c 79 20 66 72 6f 6d 20 69 6e 73 69
64 65 20 74 68 65 20 73 6f 6c 65 20 74 6f 70 2d 6c 65 76 65 6c 0a 20 20
20 20 20 20 20 20 20 62 6c 6f 63 6b 2c 20 61 6e 64 20 66 69 76 65 20 72
65 73 6f 6c 76 65 64 20 6e 65 69 74 68 65 72 20 77 61 79 2e 20 41 20 72
75 6c 65 20 74 68 61 74 20 61 20 68 75 6e 64 72 65 64 20 61 6e 64 0a 20
20 20 20 20 20 20 20 20 66 6f 72 74 79 2d 74 77 6f 20 72 65 66 65 72 65
6e 63 65 73 20 64 69 73 61 67 72 65 65 20 77 69 74 68 20 69 73 20 6e 6f
74 20 61 20 72 75 6c 65 20 61 6e 79 62 6f 64 79 20 69 73 20 66 6f 6c 6c
6f 77 69 6e 67 2e 0a 0a 20 20 20 20 20 20 20 20 20 54 68 65 20 66 61 6c
6c 62 61 63 6b 20 61 70 70 6c 69 65 73 20 4f 4e 4c 59 20 77 68 65 6e 20
74 68 65 72 65 20 69 73 20 65 78 61 63 74 6c 79 20 6f 6e 65 20 74 6f 70
2d 6c 65 76 65 6c 20 62 6c 6f 63 6b 2c 0a 20 20 20 20 20 20 20 20 20 73
6f 20 72 65 73 6f 6c 75 74 69 6f 6e 20 73 74 61 79 73 20 64 65 74 65 72
6d 69 6e 69 73 74 69 63 3a 20 61 20 64 6f 63 75 6d 65 6e 74 20 77 69 74
68 20 74 77 6f 20 6f 66 20 74 68 65 6d 20 68 61 73 20 6f 6e 65 0a 20 20
20 20 20 20 20 20 20 72 6f 6f 74 20 61 6e 64 20 6e 6f 20 61 6d 62 69 67
75 69 74 79 20 61 62 6f 75 74 20 77 68 69 63 68 2e 78 19 6e 6f 2d 65 78
74 65 72 6e 61 6c 2d 74 61 72 67 65 74 2d 73 79 6e 74 61 78 79 02 de 53
45 54 54 4c 45 44 20 32 30 32 36 2d 30 39 2d 30 32 2e 20 54 68 65 20 66
6f 72 6d 61 74 20 64 65 66 69 6e 65 73 20 6e 6f 20 77 61 79 0a 20 20 20
20 20 20 20 20 20 74 6f 20 73 61 79 20 57 48 45 52 45 20 61 6e 20 65 78
74 65 72 6e 61 6c 20 74 61 72 67 65 74 20 6c 69 76 65 73 20 e2 80 94 20
6e 6f 20 55 52 4c 20 66 6f 72 6d 2c 20 6e 6f 20 72 65 70 6f 73 69 74 6f
72 79 0a 20 20 20 20 20 20 20 20 20 6e 61 6d 65 2c 20 6e 6f 20 6c 6f 63
61 74 6f 72 2e 20 41 20 72 65 66 65 72 65 6e 63 65 20 69 73 20 61 6e 20
69 64 65 6e 74 69 66 69 65 72 20 6f 72 20 61 20 70 61 74 68 2c 20 60 65
78 74 65 72 6e 61 6c 60 0a 20 20 20 20 20 20 20 20 20 73 61 79 73 20 74
68 65 20 61 75 74 68 6f 72 20 6b 6e 6f 77 73 20 74 68 65 20 74 61 72 67
65 74 20 69 73 20 6e 6f 74 20 69 6e 20 74 68 69 73 20 64 6f 63 75 6d 65
6e 74 2c 20 61 6e 64 20 74 68 61 74 20 69 73 0a 20 20 20 20 20 20 20 20
20 74 68 65 20 77 68 6f 6c 65 20 6f 66 20 77 68 61 74 20 74 68 65 20 66
6f 72 6d 61 74 20 63 61 72 72 69 65 73 2e 20 4c 6f 63 61 74 69 6e 67 20
74 68 65 20 64 6f 63 75 6d 65 6e 74 20 74 68 61 74 0a 20 20 20 20 20 20
20 20 20 68 6f 6c 64 73 20 40 67 65 6e 62 61 6e 6b 2f 4f 51 34 34 31 32
33 38 20 69 73 20 74 68 65 20 62 75 73 69 6e 65 73 73 20 6f 66 20 77 68
61 74 65 76 65 72 20 63 68 6f 73 65 20 74 68 65 20 64 6f 63 75 6d 65 6e
74 0a 20 20 20 20 20 20 20 20 20 73 65 74 2c 20 65 78 61 63 74 6c 79 20
61 73 20 72 65 73 6f 6c 75 74 69 6f 6e 20 69 73 2c 20 61 6e 64 20 61 20
6c 6f 63 61 74 6f 72 20 69 6e 73 69 64 65 20 74 68 65 20 72 65 66 65 72
65 6e 63 65 0a 20 20 20 20 20 20 20 20 20 77 6f 75 6c 64 20 6d 61 6b 65
20 74 68 65 20 72 65 66 65 72 65 6e 63 65 20 77 72 6f 6e 67 20 74 68 65
20 64 61 79 20 74 68 65 20 74 61 72 67 65 74 20 6d 6f 76 65 64 2e 20 41
20 76 6f 63 61 62 75 6c 61 72 79 0a 20 20 20 20 20 20 20 20 20 74 68 61
74 20 6e 65 65 64 73 20 74 6f 20 73 61 79 20 77 68 65 72 65 20 69 74 73
20 6d 65 6d 62 65 72 73 20 61 72 65 20 66 6f 75 6e 64 20 63 61 72 72 69
65 73 20 61 20 6c 6f 63 61 74 6f 72 0a 20 20 20 20 20 20 20 20 20 62 65
73 69 64 65 20 74 68 65 20 72 65 66 65 72 65 6e 63 65 20 61 73 20 61 6e
20 6f 72 64 69 6e 61 72 79 20 76 61 6c 75 65 3b 20 74 68 65 20 6b 65 72
6e 65 6c 20 64 6f 65 73 20 6e 6f 74 2e 78 1a 72 65 66 65 72 65 6e 63 65
73 2d 61 72 65 2d 73 74 69 6c 6c 2d 69 6e 65 72 74 79 01 51 4e 6f 6e 65
20 6f 66 20 74 68 65 20 61 62 6f 76 65 20 69 73 20 72 65 73 6f 6c 76 65
64 20 77 68 69 6c 65 20 72 65 61 64 69 6e 67 2e 0a 20 20 20 20 20 20 20
20 20 41 20 64 65 63 6f 64 65 72 20 70 72 6f 64 75 63 65 73 20 74 68 65
20 72 65 66 65 72 65 6e 63 65 20 61 6e 64 20 73 74 6f 70 73 2c 20 65 78
61 63 74 6c 79 20 61 73 20 62 65 66 6f 72 65 20 e2 80 94 0a 20 20 20 20
20 20 20 20 20 72 65 73 6f 6c 75 74 69 6f 6e 20 69 73 20 61 20 73 65 70
61 72 61 74 65 20 61 63 74 20 70 65 72 66 6f 72 6d 65 64 20 62 79 20 73
6f 6d 65 74 68 69 6e 67 20 74 68 61 74 20 68 61 73 20 63 68 6f 73 65 6e
20 61 0a 20 20 20 20 20 20 20 20 20 73 65 74 20 6f 66 20 64 6f 63 75 6d
65 6e 74 73 20 74 6f 20 72 65 73 6f 6c 76 65 20 61 67 61 69 6e 73 74 2c
20 61 6e 64 20 69 73 20 6e 6f 20 6d 6f 72 65 20 70 61 72 74 20 6f 66 20
64 65 63 6f 64 69 6e 67 0a 20 20 20 20 20 20 20 20 20 74 68 61 6e 20 66
6f 6c 6c 6f 77 69 6e 67 20 61 20 68 79 70 65 72 6c 69 6e 6b 20 69 73 20
70 61 72 74 20 6f 66 20 70 61 72 73 69 6e 67 20 48 54 4d 4c 2e 78 1b 64
75 70 6c 69 63 61 74 65 2d 6b 65 79 73 2d 61 72 65 2d 61 6e 2d 65 72 72
6f 72 78 d3 49 6e 20 61 6e 79 20 6d 61 70 2c 20 61 74 20 61 6e 79 20 64
65 70 74 68 2e 20 4a 53 4f 4e 20 6c 65 61 76 65 73 20 74 68 69 73 20 75
6e 64 65 66 69 6e 65 64 20 61 6e 64 20 69 74 20 69 73 20 61 0a 20 20 20
20 20 20 20 20 20 72 65 61 6c 20 69 6e 74 65 72 6f 70 20 68 61 7a 61 72
64 3b 20 75 6e 64 65 72 20 63 6f 6e 74 65 6e 74 20 61 64 64 72 65 73 73
69 6e 67 20 69 74 20 69 73 20 77 6f 72 73 65 2c 20 62 65 63 61 75 73 65
0a 20 20 20 20 20 20 20 20 20 74 77 6f 20 64 6f 63 75 6d 65 6e 74 73 20
74 68 61 74 20 64 65 63 6f 64 65 20 69 64 65 6e 74 69 63 61 6c 6c 79 20
77 6f 75 6c 64 20 68 61 73 68 20 64 69 66 66 65 72 65 6e 74 6c 79 2e 78
1d 61 6e 6e 6f 74 61 74 69 6f 6e 73 2d 70 72 65 63 65 64 65 2d 74 68 65
2d 76 61 6c 75 65 78 a0 41 66 74 65 72 20 61 20 6b 65 79 2c 20 7a 65 72
6f 20 6f 72 20 6d 6f 72 65 20 62 61 72 65 20 77 6f 72 64 73 20 61 72 65
20 61 6e 6e 6f 74 61 74 69 6f 6e 73 2c 20 74 68 65 6e 20 65 78 61 63 74
6c 79 0a 20 20 20 20 20 20 20 20 20 6f 6e 65 20 76 61 6c 75 65 2e 20 67
6c 6f 73 73 20 65 6e 20 22 73 74 75 64 65 6e 74 22 20 69 73 20 6b 65 79
20 67 6c 6f 73 73 2c 20 61 6e 6e 6f 74 61 74 69 6f 6e 20 65 6e 2c 20 76
61 6c 75 65 0a 20 20 20 20 20 20 20 20 20 22 73 74 75 64 65 6e 74 22 2e
78 1e 61 2d 66 69 6e 61 6c 2d 72 6f 77 2d 6e 65 65 64 73 2d 6e 6f 2d 73
65 70 61 72 61 74 6f 72 79 06 6e 53 45 54 54 4c 45 44 20 32 30 32 36 2d
30 38 2d 32 33 2c 20 69 6e 20 66 61 76 6f 75 72 20 6f 66 20 74 68 65 0a
20 20 20 20 20 20 20 20 20 73 65 76 65 6e 20 69 6d 70 6c 65 6d 65 6e 74
61 74 69 6f 6e 73 20 74 68 61 74 20 61 6c 72 65 61 64 79 20 61 63 63 65
70 74 65 64 20 69 74 2c 20 61 6e 64 20 61 67 61 69 6e 73 74 20 74 68 65
0a 20 20 20 20 20 20 20 20 20 67 72 61 6d 6d 61 72 20 61 73 20 69 74 20
77 61 73 20 77 72 69 74 74 65 6e 2e 20 60 78 20 5b 20 7c 20 61 20 62 2c
20 7c 20 31 20 32 20 5d 60 20 69 73 20 77 65 6c 6c 20 66 6f 72 6d 65 64
3a 20 61 0a 20 20 20 20 20 20 20 20 20 73 65 70 61 72 61 74 6f 72 20 67
6f 65 73 20 42 45 54 57 45 45 4e 20 72 6f 77 73 2c 20 61 6e 64 20 74 68
65 20 63 6c 6f 73 69 6e 67 20 62 72 61 63 6b 65 74 20 65 6e 64 73 20 74
68 65 20 6c 61 73 74 0a 20 20 20 20 20 20 20 20 20 6f 6e 65 2e 0a 0a 20
20 20 20 20 20 20 20 20 54 68 65 20 70 72 6f 64 75 63 74 69 6f 6e 20 77
61 73 20 74 68 65 20 64 65 66 65 63 74 2e 20 41 20 6d 61 70 27 73 20 72
75 6c 65 20 63 61 72 72 69 65 73 20 61 20 60 7b 20 73 65 70 61 72 61 74
6f 72 20 7d 60 0a 20 20 20 20 20 20 20 20 20 74 61 69 6c 20 61 6e 64 20
73 6f 20 64 6f 65 73 20 61 20 73 65 71 75 65 6e 63 65 27 73 3b 20 74 68
65 20 72 6f 77 20 72 75 6c 65 20 77 61 73 20 77 72 69 74 74 65 6e 20 77
69 74 68 6f 75 74 20 6f 6e 65 2c 0a 20 20 20 20 20 20 20 20 20 77 68 69
63 68 20 6d 61 64 65 20 74 68 65 20 74 61 62 6c 65 20 74 68 65 20 73 69
6e 67 6c 65 20 70 6c 61 63 65 20 69 6e 20 74 68 65 20 66 6f 72 6d 61 74
20 77 68 65 72 65 20 61 20 63 6c 6f 73 69 6e 67 0a 20 20 20 20 20 20 20
20 20 62 72 61 63 6b 65 74 20 63 6f 75 6c 64 20 6e 6f 74 20 66 6f 6c 6c
6f 77 20 74 68 65 20 6c 61 73 74 20 69 74 65 6d 2e 20 54 68 61 74 20 69
73 20 61 6e 20 6f 76 65 72 73 69 67 68 74 20 69 6e 20 61 6e 0a 20 20 20
20 20 20 20 20 20 45 42 4e 46 20 6c 69 6e 65 2c 20 6e 6f 74 20 61 20 64
65 63 69 73 69 6f 6e 20 61 6e 79 62 6f 64 79 20 74 6f 6f 6b 2e 0a 0a 20
20 20 20 20 20 20 20 20 57 48 41 54 20 44 45 43 49 44 45 44 20 49 54 20
77 61 73 20 61 73 6b 69 6e 67 20 74 68 65 20 74 77 6f 20 73 74 72 69 63
74 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 73 20 74 68 65 20 73 61
6d 65 0a 20 20 20 20 20 20 20 20 20 71 75 65 73 74 69 6f 6e 20 61 62 6f
75 74 20 74 68 65 20 6f 74 68 65 72 20 74 77 6f 20 63 6f 6e 74 61 69 6e
65 72 73 2e 20 52 75 73 74 20 61 63 63 65 70 74 73 20 60 78 20 5b 20 31
2c 20 32 20 5d 60 20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 60 78 20 7b
20 61 20 31 2c 20 62 20 32 20 7d 60 20 61 6e 64 20 72 65 66 75 73 65 73
20 6f 6e 6c 79 20 60 78 20 5b 20 7c 20 61 20 62 2c 20 7c 20 31 20 32 20
5d 60 20 e2 80 94 20 73 6f 20 74 68 65 20 73 74 72 69 63 74 0a 20 20 20
20 20 20 20 20 20 72 65 61 64 69 6e 67 20 77 61 73 20 6e 6f 74 20 61 20
70 72 69 6e 63 69 70 6c 65 20 65 69 74 68 65 72 20 6f 66 20 74 68 65 6d
20 68 65 6c 64 2c 20 69 74 20 77 61 73 20 74 68 69 73 0a 20 20 20 20 20
20 20 20 20 70 72 6f 64 75 63 74 69 6f 6e 20 6c 65 61 6b 69 6e 67 20 69
6e 74 6f 20 6f 6e 65 20 63 6f 64 65 20 70 61 74 68 2e 20 44 61 72 74 20
64 69 64 20 74 68 65 20 73 61 6d 65 2e 0a 0a 20 20 20 20 20 20 20 20 20
54 68 65 20 70 72 65 63 65 64 65 6e 74 20 73 74 61 6e 64 73 20 75 6e 63
68 61 6e 67 65 64 3a 20 61 2d 73 65 70 61 72 61 74 6f 72 2d 62 65 74 77
65 65 6e 2d 69 74 65 6d 73 2d 69 73 2d 72 65 71 75 69 72 65 64 0a 20 20
20 20 20 20 20 20 20 69 73 20 61 62 6f 75 74 20 42 45 54 57 45 45 4e 2c
20 61 6e 64 20 61 6c 77 61 79 73 20 77 61 73 2e 20 60 78 20 5b 20 7c 20
61 20 62 20 7c 20 31 20 32 20 5d 60 2c 20 77 69 74 68 20 6e 6f 0a 20 20
20 20 20 20 20 20 20 73 65 70 61 72 61 74 6f 72 20 62 65 74 77 65 65 6e
20 74 68 65 20 74 77 6f 20 72 6f 77 73 2c 20 69 73 20 73 74 69 6c 6c 20
6d 61 6c 66 6f 72 6d 65 64 2e 0a 0a 20 20 20 20 20 20 20 20 20 57 68 61
74 20 77 61 73 20 6e 65 76 65 72 20 61 74 20 73 74 61 6b 65 3a 20 61 6e
79 20 63 61 6e 6f 6e 69 63 61 6c 20 64 6f 63 75 6d 65 6e 74 2e 20 54 68
65 20 66 6f 72 6d 61 74 74 65 72 20 61 6c 77 61 79 73 0a 20 20 20 20 20
20 20 20 20 65 6e 64 73 20 61 20 62 6c 6f 63 6b 20 74 61 62 6c 65 27 73
20 66 69 6e 61 6c 20 72 6f 77 20 77 69 74 68 20 61 20 6e 65 77 6c 69 6e
65 2c 20 73 6f 20 65 76 65 72 79 20 64 6f 63 75 6d 65 6e 74 20 74 68 69
73 0a 20 20 20 20 20 20 20 20 20 70 72 6f 6a 65 63 74 20 68 61 73 20 65
6d 69 74 74 65 64 20 73 61 74 69 73 66 69 65 73 20 62 6f 74 68 20 72 65
61 64 69 6e 67 73 2c 20 61 6e 64 20 74 68 65 20 64 69 73 61 67 72 65 65
6d 65 6e 74 20 77 61 73 0a 20 20 20 20 20 20 20 20 20 72 65 61 63 68 61
62 6c 65 20 6f 6e 6c 79 20 62 79 20 61 20 68 61 6e 64 2d 77 72 69 74 74
65 6e 20 73 69 6e 67 6c 65 2d 6c 69 6e 65 20 74 61 62 6c 65 2e 20 49 74
20 77 61 73 20 66 6f 75 6e 64 20 62 79 0a 20 20 20 20 20 20 20 20 20 77
72 69 74 69 6e 67 20 6f 6e 65 20 69 6e 74 6f 20 61 20 63 6f 6e 66 6f 72
6d 61 6e 63 65 20 76 65 63 74 6f 72 20 61 6e 64 20 64 69 73 63 6f 76 65
72 69 6e 67 20 74 68 65 20 76 65 63 74 6f 72 20 68 61 64 0a 20 20 20 20
20 20 20 20 20 6e 65 76 65 72 20 62 65 65 6e 20 65 78 65 63 75 74 65 64
2e 78 1f 6b 65 79 2d 69 74 2d 69 66 2d 79 6f 75 2d 77 69 6c 6c 2d 72 65
66 65 72 65 6e 63 65 2d 69 74 79 02 7b 41 20 63 6f 6e 73 65 71 75 65 6e
63 65 20 77 6f 72 74 68 20 73 74 61 74 69 6e 67 2c 20 62 65 63 61 75 73
65 20 69 74 0a 20 20 20 20 20 20 20 20 20 64 65 63 69 64 65 73 20 68 6f
77 20 61 20 64 6f 63 75 6d 65 6e 74 20 69 73 20 73 68 61 70 65 64 2e 20
41 20 70 61 74 68 20 73 65 67 6d 65 6e 74 20 69 73 20 61 20 6d 61 70 20
6b 65 79 2c 20 73 6f 20 61 0a 20 20 20 20 20 20 20 20 20 72 6f 77 20 6f
66 20 61 20 74 61 62 6c 65 20 63 61 6e 6e 6f 74 20 62 65 20 61 64 64 72
65 73 73 65 64 3a 20 72 6f 77 73 20 61 72 65 20 73 65 71 75 65 6e 63 65
20 65 6c 65 6d 65 6e 74 73 20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 68
61 76 65 20 6e 6f 20 6e 61 6d 65 73 2e 20 41 6e 20 69 64 65 6e 74 69 66
69 65 72 20 77 72 69 74 74 65 6e 20 69 6e 20 61 20 72 6f 77 20 61 6e 6e
6f 74 61 74 65 73 20 74 68 61 74 20 72 6f 77 27 73 0a 20 20 20 20 20 20
20 20 20 66 69 72 73 74 20 76 61 6c 75 65 20 72 61 74 68 65 72 20 74 68
61 6e 20 6e 61 6d 69 6e 67 20 74 68 65 20 72 6f 77 2e 0a 0a 20 20 20 20
20 20 20 20 20 53 6f 20 61 20 63 6f 6c 6c 65 63 74 69 6f 6e 20 77 68 6f
73 65 20 6d 65 6d 62 65 72 73 20 77 69 6c 6c 20 62 65 20 72 65 66 65 72
65 6e 63 65 64 20 73 68 6f 75 6c 64 20 62 65 20 61 20 6d 61 70 20 6b 65
79 65 64 0a 20 20 20 20 20 20 20 20 20 62 79 20 74 68 65 69 72 20 6e 61
6d 65 73 2c 20 6e 6f 74 20 61 20 74 61 62 6c 65 2e 20 41 20 74 61 62 6c
65 20 69 73 20 72 69 67 68 74 20 66 6f 72 20 72 6f 77 73 20 74 68 61 74
20 61 72 65 20 72 65 61 64 0a 20 20 20 20 20 20 20 20 20 74 6f 67 65 74
68 65 72 20 61 6e 64 20 70 6f 69 6e 74 65 64 20 61 74 20 6e 65 76 65 72
20 e2 80 94 20 77 68 69 63 68 20 69 73 20 6d 6f 73 74 20 74 61 62 6c 65
73 2c 20 61 6e 64 20 65 78 61 63 74 6c 79 20 77 68 79 0a 20 20 20 20 20
20 20 20 20 74 68 65 20 64 69 73 74 69 6e 63 74 69 6f 6e 20 69 73 20 65
61 73 79 20 74 6f 20 6d 69 73 73 20 75 6e 74 69 6c 20 74 68 65 20 66 69
72 73 74 20 72 65 66 65 72 65 6e 63 65 20 69 73 20 6e 65 65 64 65 64 2e
78 1f 72 65 73 6f 6c 75 74 69 6f 6e 2d 69 73 2d 72 65 6c 61 74 69 76 65
2d 74 6f 2d 61 2d 73 65 74 79 01 62 41 20 70 61 74 68 20 69 73 20 72 6f
6f 74 65 64 20 61 74 20 69 74 73 20 6f 77 6e 20 64 6f 63 75 6d 65 6e 74
3b 20 61 0a 20 20 20 20 20 20 20 20 20 72 65 66 65 72 65 6e 63 65 20 61
63 72 6f 73 73 20 64 6f 63 75 6d 65 6e 74 73 20 74 68 65 72 65 66 6f 72
65 20 75 73 65 73 20 61 6e 20 69 64 65 6e 74 69 66 69 65 72 2e 20 57 68
65 74 68 65 72 20 61 6e 79 0a 20 20 20 20 20 20 20 20 20 67 69 76 65 6e
20 72 65 66 65 72 65 6e 63 65 20 72 65 73 6f 6c 76 65 73 20 64 65 70 65
6e 64 73 20 6f 6e 20 77 68 69 63 68 20 64 6f 63 75 6d 65 6e 74 73 20 61
72 65 20 69 6e 20 68 61 6e 64 2c 20 73 6f 20 61 0a 20 20 20 20 20 20 20
20 20 72 65 66 65 72 65 6e 63 65 20 74 68 61 74 20 72 65 73 6f 6c 76 65
73 20 69 6e 20 6e 6f 20 73 65 74 20 69 73 20 6e 6f 74 20 74 68 65 72 65
62 79 20 69 6e 76 61 6c 69 64 20 e2 80 94 20 74 68 65 20 66 6f 72 6d 61
74 0a 20 20 20 20 20 20 20 20 20 63 61 6e 6e 6f 74 20 6b 6e 6f 77 20 77
68 61 74 20 65 6c 73 65 20 65 78 69 73 74 73 2e 20 41 20 63 68 65 63 6b
65 72 20 72 65 70 6f 72 74 73 3b 20 69 74 20 64 6f 65 73 20 6e 6f 74 20
6a 75 64 67 65 2e 78 20 61 2d 68 65 61 64 65 72 2d 77 69 74 68 2d 6e 6f
2d 72 6f 77 73 2d 69 73 2d 61 2d 74 61 62 6c 65 79 04 7d 53 45 54 54 4c
45 44 20 32 30 32 36 2d 30 39 2d 30 32 2e 20 60 78 20 5b 20 7c 20 61 20
62 20 5d 60 20 69 73 0a 20 20 20 20 20 20 20 20 20 77 65 6c 6c 20 66 6f
72 6d 65 64 2c 20 65 6e 63 6f 64 65 73 20 74 6f 20 74 68 65 20 65 6d 70
74 79 20 73 65 71 75 65 6e 63 65 20 e2 80 94 20 60 61 31 36 31 37 38 38
30 60 20 69 73 20 61 20 76 65 63 74 6f 72 20 e2 80 94 0a 20 20 20 20 20
20 20 20 20 61 6e 64 20 69 74 73 20 68 65 61 64 65 72 20 69 73 20 6b 65
70 74 20 62 65 73 69 64 65 20 74 68 65 20 76 61 6c 75 65 20 65 78 61 63
74 6c 79 20 61 73 20 61 20 74 61 62 6c 65 27 73 20 63 6f 6c 75 6d 6e 0a
20 20 20 20 20 20 20 20 20 6f 72 64 65 72 20 69 73 3a 20 72 65 63 6f 72
64 65 64 20 62 79 20 70 61 74 68 2c 20 68 6f 6e 6f 75 72 65 64 20 62 79
20 74 68 65 20 66 6f 72 6d 61 74 74 65 72 2c 20 61 6e 64 20 6c 6f 73 74
0a 20 20 20 20 20 20 20 20 20 74 68 72 6f 75 67 68 20 74 68 65 20 62 79
74 65 73 2e 20 53 6f 20 61 20 66 6f 72 6d 61 74 74 65 72 20 72 65 6e 64
65 72 73 20 69 74 20 62 61 63 6b 20 61 73 20 74 68 65 20 68 65 61 64 65
72 2d 6f 6e 6c 79 0a 20 20 20 20 20 20 20 20 20 74 61 62 6c 65 20 69 74
20 77 61 73 20 77 72 69 74 74 65 6e 20 61 73 2c 20 61 6e 64 20 6e 6f 74
20 61 73 20 60 5b 5d 60 2e 0a 0a 20 20 20 20 20 20 20 20 20 54 68 69 73
20 69 73 20 6e 6f 74 20 61 20 6e 65 77 20 6d 65 63 68 61 6e 69 73 6d 2e
20 61 75 74 68 6f 72 65 64 2d 6f 72 64 65 72 2d 69 73 2d 6b 65 70 74 2d
62 65 73 69 64 65 2d 74 68 65 2d 76 61 6c 75 65 0a 20 20 20 20 20 20 20
20 20 61 6c 72 65 61 64 79 20 72 65 63 6f 72 64 73 20 65 76 65 72 79 20
74 61 62 6c 65 27 73 20 63 6f 6c 75 6d 6e 73 20 62 79 20 70 61 74 68 3b
20 61 20 74 61 62 6c 65 20 77 69 74 68 20 6e 6f 20 72 6f 77 73 0a 20 20
20 20 20 20 20 20 20 69 73 20 74 68 65 20 63 61 73 65 20 77 68 65 72 65
20 74 68 61 74 20 72 65 63 6f 72 64 20 69 73 20 41 4c 4c 20 74 68 65 72
65 20 69 73 20 74 6f 20 6b 65 65 70 2e 20 54 68 65 0a 20 20 20 20 20 20
20 20 20 61 6c 74 65 72 6e 61 74 69 76 65 20 72 65 61 64 69 6e 67 20 e2
80 94 20 61 6e 20 65 72 72 6f 72 20 e2 80 94 20 77 6f 75 6c 64 20 72 65
66 75 73 65 20 74 68 65 20 69 64 69 6f 6d 20 74 68 69 73 0a 20 20 20 20
20 20 20 20 20 72 65 70 6f 73 69 74 6f 72 79 27 73 20 6f 77 6e 20 64 65
73 69 67 6e 20 64 6f 63 75 6d 65 6e 74 73 20 75 73 65 20 66 6f 72 20 61
20 72 65 76 69 65 77 20 74 61 62 6c 65 20 6e 6f 62 6f 64 79 20 68 61 73
0a 20 20 20 20 20 20 20 20 20 72 65 76 69 65 77 65 64 20 79 65 74 2c 20
61 6e 64 20 74 68 65 20 6f 74 68 65 72 20 61 6c 74 65 72 6e 61 74 69 76
65 20 e2 80 94 20 61 63 63 65 70 74 20 61 6e 64 20 65 6d 69 74 20 60 5b
5d 60 20 e2 80 94 20 69 73 20 61 0a 20 20 20 20 20 20 20 20 20 66 6f 72
6d 61 74 74 65 72 20 73 69 6c 65 6e 74 6c 79 20 64 69 73 63 61 72 64 69
6e 67 20 77 68 61 74 20 61 6e 20 61 75 74 68 6f 72 20 77 72 6f 74 65 2c
20 77 68 69 63 68 20 69 73 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 66
61 69 6c 75 72 65 20 46 31 36 20 61 6e 64 20 46 32 35 20 77 65 72 65 2e
20 54 68 65 20 74 65 6e 74 68 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f
6e 20 61 63 63 65 70 74 65 64 20 69 74 20 6f 6e 20 74 68 65 0a 20 20 20
20 20 20 20 20 20 67 72 6f 75 6e 64 20 74 68 61 74 20 72 65 66 75 73 69
6e 67 20 77 6f 75 6c 64 20 62 65 20 69 6e 76 65 6e 74 69 6e 67 20 61 20
72 75 6c 65 3b 20 74 68 61 74 20 67 72 6f 75 6e 64 20 77 61 73 20 72 69
67 68 74 2c 0a 20 20 20 20 20 20 20 20 20 61 6e 64 20 74 68 65 20 66 6f
72 6d 61 74 74 69 6e 67 20 68 61 6c 66 20 6f 66 20 74 68 65 20 61 6e 73
77 65 72 20 77 61 73 20 6d 69 73 73 69 6e 67 2e 78 21 62 61 72 65 2d 77
6f 72 64 73 2d 61 72 65 2d 61 6c 77 61 79 73 2d 61 6e 6e 6f 74 61 74 69
6f 6e 73 79 01 02 41 20 62 61 72 65 20 77 6f 72 64 20 69 73 20 6e 65 76
65 72 20 61 20 76 61 6c 75 65 2e 20 53 79 6d 62 6f 6c 73 20 61 72 65 20
77 72 69 74 74 65 6e 20 3a 6e 61 6d 65 2e 20 54 68 69 73 0a 20 20 20 20
20 20 20 20 20 72 65 6d 6f 76 65 73 20 61 20 70 6f 73 69 74 69 6f 6e 61
6c 20 72 75 6c 65 20 61 6e 64 20 77 69 74 68 20 69 74 20 61 20 73 69 6c
65 6e 74 20 61 6d 62 69 67 75 69 74 79 3a 20 5b 20 61 20 62 20 5d 0a 20
20 20 20 20 20 20 20 20 77 6f 75 6c 64 20 6f 74 68 65 72 77 69 73 65 20
6d 65 61 6e 20 6f 6e 65 20 61 6e 6e 6f 74 61 74 65 64 20 76 61 6c 75 65
20 77 68 69 6c 65 20 5b 20 61 2c 20 62 20 5d 20 6d 65 61 6e 73 20 74 77
6f 0a 20 20 20 20 20 20 20 20 20 73 79 6d 62 6f 6c 73 2c 20 61 6e 64 20
62 6f 74 68 20 72 6f 75 6e 64 2d 74 72 69 70 20 63 6c 65 61 6e 6c 79 2e
78 23 61 2d 72 65 66 65 72 65 6e 63 65 2d 6f 75 74 73 69 64 65 2d 74 68
65 2d 73 65 74 2d 73 61 79 73 2d 73 6f 79 03 41 60 65 78 74 65 72 6e 61
6c 60 2c 20 77 72 69 74 74 65 6e 20 61 73 20 61 20 71 75 61 6c 69 66 69
65 72 0a 20 20 20 20 20 20 20 20 20 6f 6e 20 74 68 65 20 72 65 66 65 72
65 6e 63 65 3a 0a 0a 20 20 20 20 20 20 20 20 20 20 20 73 72 63 20 65 78
74 65 72 6e 61 6c 20 2d 3e 20 40 67 65 6e 62 61 6e 6b 2f 4f 51 34 34 31
32 33 38 0a 0a 20 20 20 20 20 20 20 20 20 57 49 54 48 4f 55 54 20 49 54
20 41 20 43 48 45 43 4b 45 52 20 43 41 4e 4e 4f 54 20 52 45 50 4f 52 54
20 41 4e 59 54 48 49 4e 47 20 55 53 45 46 55 4c 2e 20 41 20 47 65 6e 42
61 6e 6b 0a 20 20 20 20 20 20 20 20 20 61 63 63 65 73 73 69 6f 6e 2c 20
61 6e 20 49 4d 4f 20 73 68 69 70 20 6e 75 6d 62 65 72 20 61 6e 64 20 61
20 63 75 73 74 6f 6d 65 72 20 69 64 20 69 6e 20 61 6e 20 65 78 61 6d 70
6c 65 20 61 62 6f 75 74 0a 20 20 20 20 20 20 20 20 20 73 69 67 69 6c 73
20 61 6c 6c 20 72 65 73 6f 6c 76 65 20 74 6f 20 6e 6f 74 68 69 6e 67 2c
20 61 6e 64 20 73 6f 20 64 6f 65 73 20 61 20 74 79 70 6f 20 e2 80 94 20
61 6e 64 20 6e 6f 74 68 69 6e 67 20 69 6e 20 74 68 65 0a 20 20 20 20 20
20 20 20 20 64 6f 63 75 6d 65 6e 74 20 64 69 73 74 69 6e 67 75 69 73 68
65 73 20 74 68 65 6d 2c 20 73 6f 20 61 20 63 68 65 63 6b 65 72 20 65 69
74 68 65 72 20 73 74 61 79 73 20 73 69 6c 65 6e 74 20 61 62 6f 75 74 0a
20 20 20 20 20 20 20 20 20 62 6f 74 68 20 6f 72 20 73 68 6f 75 74 73 20
61 62 6f 75 74 20 62 6f 74 68 2e 20 4d 61 72 6b 69 6e 67 20 74 68 65 20
64 65 6c 69 62 65 72 61 74 65 20 6f 6e 65 73 20 69 73 20 77 68 61 74 20
6d 61 6b 65 73 0a 20 20 20 20 20 20 20 20 20 65 76 65 72 79 74 68 69 6e
67 20 6c 65 66 74 20 6f 76 65 72 20 61 20 72 65 61 6c 20 71 75 65 73 74
69 6f 6e 2e 0a 0a 20 20 20 20 20 20 20 20 20 49 74 20 63 68 61 6e 67 65
73 20 6e 6f 20 65 6e 63 6f 64 69 6e 67 20 61 6e 64 20 6e 6f 20 72 65 73
6f 6c 75 74 69 6f 6e 3a 20 61 20 72 65 66 65 72 65 6e 63 65 20 69 73 20
69 6e 65 72 74 20 65 69 74 68 65 72 0a 20 20 20 20 20 20 20 20 20 77 61
79 2c 20 61 6e 64 20 61 20 63 68 65 63 6b 65 72 20 73 74 69 6c 6c 20 72
65 70 6f 72 74 73 20 72 61 74 68 65 72 20 74 68 61 6e 20 6a 75 64 67 65
73 2e 20 57 68 61 74 20 74 68 65 20 6d 61 72 6b 0a 20 20 20 20 20 20 20
20 20 64 6f 65 73 20 69 73 20 6d 6f 76 65 20 61 20 72 65 66 65 72 65 6e
63 65 20 6f 75 74 20 6f 66 20 74 68 65 20 63 68 65 63 6b 65 72 27 73 20
71 75 65 73 74 69 6f 6e 73 20 61 6e 64 20 69 6e 74 6f 20 74 68 65 0a 20
20 20 20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 27 73 20 73 74 61 74 65
6d 65 6e 74 73 2c 20 77 68 65 72 65 20 61 20 72 65 61 64 65 72 20 63 61
6e 20 73 65 65 20 69 74 2e 78 25 61 2d 73 65 70 61 72 61 74 6f 72 2d 62
65 74 77 65 65 6e 2d 69 74 65 6d 73 2d 69 73 2d 72 65 71 75 69 72 65 64
79 02 89 54 68 65 20 67 72 61 6d 6d 61 72 20 61 62 6f 76 65 20 73 61 79
73 20 73 65 70 73 2c 20 6d 65 61 6e 69 6e 67 20 6f 6e 65 20 6f 72 20 6d
6f 72 65 2c 20 61 6e 64 20 6e 6f 74 20 7b 20 73 65 70 61 72 61 74 6f 72
20 7d 2c 0a 20 20 20 20 20 20 20 20 20 6d 65 61 6e 69 6e 67 20 7a 65 72
6f 20 6f 72 20 6d 6f 72 65 2e 20 41 6e 20 65 61 72 6c 69 65 72 20 76 65
72 73 69 6f 6e 20 73 61 69 64 20 74 68 65 20 6c 61 74 74 65 72 2c 20 77
68 69 63 68 20 6d 61 64 65 0a 20 20 20 20 20 20 20 20 20 27 61 20 31 20
62 20 32 27 20 61 6e 64 20 27 5b 20 31 20 32 20 33 20 5d 27 20 67 72 61
6d 6d 61 74 69 63 61 6c 20 77 68 69 6c 65 20 74 68 65 20 70 72 6f 73 65
20 62 65 73 69 64 65 20 69 74 20 73 61 69 64 20 61 0a 20 20 20 20 20 20
20 20 20 70 61 69 72 20 65 6e 64 73 20 61 74 20 61 20 73 65 70 61 72 61
74 6f 72 2e 20 46 6f 75 72 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e
73 20 72 65 61 64 20 74 68 65 20 70 72 6f 73 65 20 61 6e 64 0a 20 20 20
20 20 20 20 20 20 72 65 66 75 73 65 64 20 74 68 65 6d 3b 20 61 20 66 69
66 74 68 20 72 65 61 64 20 74 68 65 20 67 72 61 6d 6d 61 72 20 61 6e 64
20 61 63 63 65 70 74 65 64 20 74 68 65 6d 2c 20 77 68 69 63 68 20 69 73
20 68 6f 77 0a 20 20 20 20 20 20 20 20 20 74 68 65 20 63 6f 6e 74 72 61
64 69 63 74 69 6f 6e 20 77 61 73 20 66 6f 75 6e 64 20 e2 80 94 20 74 68
65 20 45 42 4e 46 20 68 61 64 20 6e 65 76 65 72 20 62 65 65 6e 20 69 6d
70 6c 65 6d 65 6e 74 65 64 20 66 72 6f 6d 0a 20 20 20 20 20 20 20 20 20
62 65 66 6f 72 65 2c 20 6f 6e 6c 79 20 72 65 61 64 2e 0a 0a 20 20 20 20
20 20 20 20 20 52 65 71 75 69 72 65 64 20 69 73 20 74 68 65 20 63 6f 72
72 65 63 74 20 72 65 61 64 69 6e 67 3a 20 6f 70 74 69 6f 6e 61 6c 20 73
65 70 61 72 61 74 6f 72 73 20 72 65 69 6e 74 72 6f 64 75 63 65 20 74 68
65 0a 20 20 20 20 20 20 20 20 20 77 68 69 74 65 73 70 61 63 65 20 61 6d
62 69 67 75 69 74 79 20 74 68 61 74 20 74 68 65 20 73 79 6d 62 6f 6c 20
73 69 67 69 6c 20 77 61 73 20 61 64 6f 70 74 65 64 20 74 6f 20 72 65 6d
6f 76 65 2e 78 27 61 75 74 68 6f 72 65 64 2d 6f 72 64 65 72 2d 69 73 2d
6b 65 70 74 2d 62 65 73 69 64 65 2d 74 68 65 2d 76 61 6c 75 65 79 08 fc
41 20 74 61 62 6c 65 27 73 20 63 6f 6c 75 6d 6e 73 20 61 72 65 20 6d 61
70 20 6b 65 79 73 2c 0a 20 20 20 20 20 20 20 20 20 61 6e 64 20 6d 61 70
20 6b 65 79 73 20 73 6f 72 74 20 63 61 6e 6f 6e 69 63 61 6c 6c 79 2c 20
73 6f 20 74 68 65 20 6f 72 64 65 72 20 61 20 74 61 62 6c 65 20 77 61 73
20 77 72 69 74 74 65 6e 20 69 6e 20 69 73 0a 20 20 20 20 20 20 20 20 20
6e 6f 74 20 72 65 63 6f 76 65 72 61 62 6c 65 20 66 72 6f 6d 20 74 68 65
20 65 6e 63 6f 64 69 6e 67 2e 20 54 68 61 74 20 69 73 20 63 6f 72 72 65
63 74 20 61 6e 64 20 6d 75 73 74 20 73 74 61 79 0a 20 20 20 20 20 20 20
20 20 63 6f 72 72 65 63 74 3a 20 74 77 6f 20 64 6f 63 75 6d 65 6e 74 73
20 74 68 61 74 20 64 65 63 6f 64 65 20 69 64 65 6e 74 69 63 61 6c 6c 79
20 68 61 76 65 20 74 6f 20 65 6e 63 6f 64 65 0a 20 20 20 20 20 20 20 20
20 69 64 65 6e 74 69 63 61 6c 6c 79 2c 20 6f 72 20 61 6e 20 61 64 64 72
65 73 73 20 6d 65 61 6e 73 20 6e 6f 74 68 69 6e 67 2e 0a 0a 20 20 20 20
20 20 20 20 20 42 75 74 20 74 68 65 20 6f 72 64 65 72 20 63 61 72 72 69
65 73 20 6d 65 61 6e 69 6e 67 20 74 6f 20 61 20 72 65 61 64 65 72 20 e2
80 94 20 61 6e 20 69 64 65 6e 74 69 66 69 65 72 2c 20 74 68 65 6e 20 77
68 61 74 0a 20 20 20 20 20 20 20 20 20 77 61 73 20 67 69 76 65 6e 2c 20
74 68 65 6e 20 77 68 61 74 20 69 73 20 65 78 70 65 63 74 65 64 20 e2 80
94 20 61 6e 64 20 6c 6f 73 69 6e 67 20 69 74 20 6d 61 6b 65 73 20 61 20
76 65 63 74 6f 72 20 74 61 62 6c 65 0a 20 20 20 20 20 20 20 20 20 6d 61
74 65 72 69 61 6c 6c 79 20 68 61 72 64 65 72 20 74 6f 20 75 73 65 2e 20
53 6f 20 74 68 65 20 61 75 74 68 6f 72 65 64 20 6f 72 64 65 72 20 69 73
20 6b 65 70 74 20 4f 55 54 20 6f 66 20 74 68 65 0a 20 20 20 20 20 20 20
20 20 76 61 6c 75 65 2c 20 61 6c 6f 6e 67 73 69 64 65 20 74 68 65 20 63
6f 6d 6d 65 6e 74 73 2c 20 77 68 69 63 68 20 73 6f 6c 76 65 20 74 68 65
20 73 61 6d 65 20 70 72 6f 62 6c 65 6d 20 74 68 65 20 73 61 6d 65 0a 20
20 20 20 20 20 20 20 20 77 61 79 3a 20 61 20 64 65 63 6f 64 65 72 20 70
72 6f 64 75 63 65 73 20 74 68 65 20 6d 61 70 2c 20 61 6e 64 20 74 68 65
20 64 6f 63 75 6d 65 6e 74 20 73 65 70 61 72 61 74 65 6c 79 20 72 65 63
6f 72 64 73 0a 20 20 20 20 20 20 20 20 20 77 68 69 63 68 20 6f 72 64 65
72 20 69 74 73 20 63 6f 6c 75 6d 6e 73 20 77 65 72 65 20 77 72 69 74 74
65 6e 20 69 6e 2c 20 6b 65 79 65 64 20 62 79 20 70 61 74 68 2e 0a 0a 20
20 20 20 20 20 20 20 20 41 4e 44 20 41 20 42 4c 4f 43 4b 27 53 20 50 41
49 52 53 20 41 52 45 20 54 48 45 20 53 41 4d 45 20 43 41 53 45 2c 20 77
68 69 63 68 20 74 6f 6f 6b 20 6c 6f 6e 67 65 72 20 74 6f 20 73 65 65 20
6f 6e 6c 79 0a 20 20 20 20 20 20 20 20 20 62 65 63 61 75 73 65 20 61 20
62 6c 6f 63 6b 20 64 6f 65 73 20 6e 6f 74 20 64 69 73 70 6c 61 79 20 69
74 73 20 6b 65 79 73 20 73 69 64 65 20 62 79 20 73 69 64 65 20 77 68 65
72 65 20 74 68 65 20 6c 6f 73 73 0a 20 20 20 20 20 20 20 20 20 69 73 20
6f 62 76 69 6f 75 73 2e 20 41 20 73 70 65 63 69 66 69 63 61 74 69 6f 6e
20 77 68 6f 73 65 20 73 65 63 74 69 6f 6e 73 20 61 72 72 69 76 65 20 63
6f 6e 66 6f 72 6d 61 6e 63 65 2c 0a 20 20 20 20 20 20 20 20 20 67 72 61
6d 6d 61 72 2c 20 6b 65 72 6e 65 6c 2c 20 73 63 6f 70 65 20 69 73 20 69
6e 20 61 6e 20 6f 72 64 65 72 20 6e 6f 62 6f 64 79 20 63 68 6f 73 65 2c
20 61 6e 64 20 74 68 65 20 72 65 61 64 65 72 20 69 73 0a 20 20 20 20 20
20 20 20 20 6c 65 66 74 20 74 6f 20 72 65 61 73 73 65 6d 62 6c 65 20 74
68 65 20 61 72 67 75 6d 65 6e 74 2e 20 53 6f 20 61 20 64 6f 63 75 6d 65
6e 74 20 72 65 63 6f 72 64 73 20 62 6f 74 68 3a 20 74 68 65 0a 20 20 20
20 20 20 20 20 20 6f 72 64 65 72 20 65 61 63 68 20 62 6c 6f 63 6b 27 73
20 70 61 69 72 73 20 77 65 72 65 20 77 72 69 74 74 65 6e 20 69 6e 2c 20
61 6e 64 20 74 68 65 20 6f 72 64 65 72 20 65 61 63 68 20 74 61 62 6c 65
27 73 0a 20 20 20 20 20 20 20 20 20 63 6f 6c 75 6d 6e 73 20 77 65 72 65
20 77 72 69 74 74 65 6e 20 69 6e 20 e2 80 94 20 62 6f 74 68 20 6f 75 74
73 69 64 65 20 74 68 65 20 76 61 6c 75 65 2c 20 65 61 63 68 20 6b 65 79
65 64 20 62 79 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 70 61 74 68 20
6f 66 20 74 68 65 20 62 6c 6f 63 6b 20 6f 72 20 74 68 65 20 74 61 62 6c
65 2c 20 77 69 74 68 20 74 68 65 20 65 6d 70 74 79 20 70 61 74 68 20 66
6f 72 20 74 68 65 20 64 6f 63 75 6d 65 6e 74 0a 20 20 20 20 20 20 20 20
20 62 6f 64 79 20 61 6e 64 20 74 68 65 20 69 6e 64 65 78 65 64 20 66 6f
72 6d 20 61 2e 62 5b 32 5d 2e 63 20 66 6f 72 20 61 20 73 65 71 75 65 6e
63 65 20 65 6c 65 6d 65 6e 74 2c 20 73 6f 20 74 68 61 74 0a 20 20 20 20
20 20 20 20 20 74 77 6f 20 74 61 62 6c 65 73 20 69 6e 20 6f 6e 65 20 73
65 71 75 65 6e 63 65 20 64 6f 20 6e 6f 74 20 72 65 63 6f 72 64 20 75 6e
64 65 72 20 74 68 65 20 73 61 6d 65 20 6b 65 79 2e 0a 0a 20 20 20 20 20
20 20 20 20 41 20 53 45 51 55 45 4e 43 45 20 4f 46 20 42 4c 4f 43 4b 53
20 54 48 41 54 20 52 45 4e 44 45 52 53 20 41 53 20 41 20 54 41 42 4c 45
20 6e 65 76 65 72 20 68 61 64 20 61 20 68 65 61 64 65 72 20 74 6f 0a 20
20 20 20 20 20 20 20 20 72 65 63 6f 72 64 2c 20 62 65 63 61 75 73 65 20
69 74 20 77 61 73 20 6e 6f 74 20 77 72 69 74 74 65 6e 20 61 73 20 6f 6e
65 2e 20 49 74 73 20 63 6f 6c 75 6d 6e 73 20 74 61 6b 65 20 74 68 65 20
70 61 69 72 0a 20 20 20 20 20 20 20 20 20 6f 72 64 65 72 20 6f 66 20 69
74 73 20 66 69 72 73 74 20 72 6f 77 20 69 6e 73 74 65 61 64 20 e2 80 94
20 74 68 65 20 73 61 6d 65 20 72 65 63 6f 72 64 20 61 6e 73 77 65 72 69
6e 67 20 74 68 65 20 73 61 6d 65 0a 20 20 20 20 20 20 20 20 20 71 75 65
73 74 69 6f 6e 20 6f 6e 65 20 6c 65 76 65 6c 20 64 6f 77 6e 2e 20 57 69
74 68 6f 75 74 20 74 68 61 74 20 63 6c 61 75 73 65 20 74 68 65 20 74 77
6f 20 77 61 79 73 20 6f 66 20 77 72 69 74 69 6e 67 0a 20 20 20 20 20 20
20 20 20 74 68 65 20 73 61 6d 65 20 76 61 6c 75 65 20 72 65 6e 64 65 72
20 64 69 66 66 65 72 65 6e 74 6c 79 2c 20 77 68 69 63 68 20 69 73 20 74
68 65 20 73 75 67 61 72 20 66 61 69 6c 69 6e 67 20 74 6f 20 62 65 0a 20
20 20 20 20 20 20 20 20 73 75 67 61 72 2e 0a 0a 20 20 20 20 20 20 20 20
20 57 68 61 74 20 66 6f 6c 6c 6f 77 73 20 66 72 6f 6d 20 74 68 61 74 2c
20 61 6e 64 20 69 73 20 74 68 65 20 68 6f 6e 65 73 74 20 63 6f 73 74 3a
20 74 68 65 20 6f 72 64 65 72 20 73 75 72 76 69 76 65 73 20 61 0a 20 20
20 20 20 20 20 20 20 74 65 78 74 20 72 6f 75 6e 64 20 74 72 69 70 20 61
6e 64 20 64 6f 65 73 20 6e 6f 74 20 73 75 72 76 69 76 65 20 61 6e 20 65
6e 63 6f 64 65 20 61 6e 64 20 64 65 63 6f 64 65 2e 20 41 20 64 6f 63 75
6d 65 6e 74 0a 20 20 20 20 20 20 20 20 20 72 65 61 64 20 66 72 6f 6d 20
43 42 4f 52 20 68 61 73 20 63 61 6e 6f 6e 69 63 61 6c 20 6f 72 64 65 72
20 74 68 72 6f 75 67 68 6f 75 74 20 61 6e 64 20 6e 6f 20 77 61 79 20 74
6f 20 6b 6e 6f 77 20 77 68 61 74 0a 20 20 20 20 20 20 20 20 20 74 68 65
20 61 75 74 68 6f 72 20 69 6e 74 65 6e 64 65 64 2c 20 65 78 61 63 74 6c
79 20 61 73 20 69 74 20 68 61 73 20 6e 6f 20 63 6f 6d 6d 65 6e 74 73 2e
20 41 6e 79 74 68 69 6e 67 20 74 68 61 74 0a 20 20 20 20 20 20 20 20 20
6e 65 65 64 73 20 74 68 65 20 61 75 74 68 6f 72 65 64 20 6f 72 64 65 72
20 6d 75 73 74 20 72 65 61 64 20 74 68 65 20 74 65 78 74 2e 68 6e 6f 74
61 74 69 6f 6e 64 45 42 4e 46 6b 70 72 6f 64 75 63 74 69 6f 6e 73 90 a2
64 72 75 6c 65 da 00 01 11 d4 68 64 6f 63 75 6d 65 6e 74 6a 64 65 66 69
6e 69 74 69 6f 6e 78 47 5b 20 68 65 61 64 65 72 20 5d 20 2c 20 7b 20 73
65 70 61 72 61 74 6f 72 20 7d 20 2c 20 5b 20 70 61 69 72 20 2c 20 7b 20
73 65 70 73 20 2c 20 70 61 69 72 20 7d 20 5d 20 2c 20 7b 20 73 65 70 61
72 61 74 6f 72 20 7d a2 64 72 75 6c 65 da 00 01 11 d4 66 68 65 61 64 65
72 6a 64 65 66 69 6e 69 74 69 6f 6e 78 26 27 25 75 6e 69 6d 73 67 27 20
2c 20 69 6e 74 20 2c 20 5b 20 77 6f 72 64 20 5d 20 2c 20 73 65 70 61 72
61 74 6f 72 a2 64 72 75 6c 65 da 00 01 11 d4 64 70 61 69 72 6a 64 65 66
69 6e 69 74 69 6f 6e 78 1c 6b 65 79 20 2c 20 7b 20 61 6e 6e 6f 74 61 74
69 6f 6e 20 7d 20 2c 20 76 61 6c 75 65 a2 64 72 75 6c 65 da 00 01 11 d4
63 6b 65 79 6a 64 65 66 69 6e 69 74 69 6f 6e 6d 77 6f 72 64 20 7c 20 73
74 72 69 6e 67 a2 64 72 75 6c 65 da 00 01 11 d4 6a 61 6e 6e 6f 74 61 74
69 6f 6e 6a 64 65 66 69 6e 69 74 69 6f 6e 71 77 6f 72 64 20 7c 20 69 64
65 6e 74 69 66 69 65 72 a2 64 72 75 6c 65 da 00 01 11 d4 65 76 61 6c 75
65 6a 64 65 66 69 6e 69 74 69 6f 6e 78 2b 6d 61 70 20 7c 20 73 65 71 20
7c 20 74 61 62 6c 65 20 7c 20 61 72 72 61 79 20 7c 20 73 63 61 6c 61 72
20 7c 20 74 61 67 67 65 64 a2 64 72 75 6c 65 da 00 01 11 d4 63 6d 61 70
6a 64 65 66 69 6e 69 74 69 6f 6e 78 46 27 7b 27 20 2c 20 7b 20 73 65 70
61 72 61 74 6f 72 20 7d 20 2c 20 5b 20 70 61 69 72 20 2c 20 7b 20 73 65
70 73 20 2c 20 70 61 69 72 20 7d 20 2c 20 7b 20 73 65 70 61 72 61 74 6f
72 20 7d 20 5d 20 2c 20 27 7d 27 a2 64 72 75 6c 65 da 00 01 11 d4 63 73
65 71 6a 64 65 66 69 6e 69 74 69 6f 6e 78 48 27 5b 27 20 2c 20 7b 20 73
65 70 61 72 61 74 6f 72 20 7d 20 2c 20 5b 20 76 61 6c 75 65 20 2c 20 7b
20 73 65 70 73 20 2c 20 76 61 6c 75 65 20 7d 20 2c 20 7b 20 73 65 70 61
72 61 74 6f 72 20 7d 20 5d 20 2c 20 27 5d 27 a2 64 72 75 6c 65 da 00 01
11 d4 64 73 65 70 73 6a 64 65 66 69 6e 69 74 69 6f 6e 78 19 73 65 70 61
72 61 74 6f 72 20 2c 20 7b 20 73 65 70 61 72 61 74 6f 72 20 7d a2 64 72
75 6c 65 da 00 01 11 d4 65 74 61 62 6c 65 6a 64 65 66 69 6e 69 74 69 6f
6e 78 40 27 5b 27 20 2c 20 7b 20 73 65 70 61 72 61 74 6f 72 20 7d 20 2c
20 72 6f 77 20 2c 20 7b 20 73 65 70 73 20 2c 20 72 6f 77 20 7d 20 2c 20
7b 20 73 65 70 61 72 61 74 6f 72 20 7d 20 2c 20 27 5d 27 a2 64 72 75 6c
65 da 00 01 11 d4 63 72 6f 77 6a 64 65 66 69 6e 69 74 69 6f 6e 6e 27 7c
27 20 2c 20 7b 20 63 65 6c 6c 20 7d a2 64 72 75 6c 65 da 00 01 11 d4 65
61 72 72 61 79 6a 64 65 66 69 6e 69 74 69 6f 6e 78 87 27 5e 27 20 2c 20
65 6c 65 6d 65 6e 74 2d 74 79 70 65 20 2c 20 5b 20 27 3a 27 20 2c 20 65
78 74 65 6e 74 20 2c 20 7b 20 27 78 27 20 2c 20 65 78 74 65 6e 74 20 7d
20 5d 20 2c 20 27 5b 27 20 2c 20 7b 20 73 65 70 61 72 61 74 6f 72 20 7d
20 2c 20 5b 20 65 6c 65 6d 65 6e 74 20 2c 20 7b 20 73 65 70 73 20 2c 20
65 6c 65 6d 65 6e 74 20 7d 20 2c 20 7b 20 73 65 70 61 72 61 74 6f 72 20
7d 20 5d 20 2c 20 27 5d 27 a2 64 72 75 6c 65 da 00 01 11 d4 67 65 6c 65
6d 65 6e 74 6a 64 65 66 69 6e 69 74 69 6f 6e 78 2f 69 6e 74 20 7c 20 64
65 63 69 6d 61 6c 20 7c 20 27 6e 61 6e 27 20 7c 20 27 69 6e 66 27 20 7c
20 27 2d 69 6e 66 27 20 7c 20 27 6e 75 6c 6c 27 a2 64 72 75 6c 65 da 00
01 11 d4 64 63 65 6c 6c 6a 64 65 66 69 6e 69 74 69 6f 6e 65 76 61 6c 75
65 a2 64 72 75 6c 65 da 00 01 11 d4 66 73 63 61 6c 61 72 6a 64 65 66 69
6e 69 74 69 6f 6e 78 5c 69 6e 74 20 7c 20 64 65 63 69 6d 61 6c 20 7c 20
66 6c 6f 61 74 20 7c 20 73 74 72 69 6e 67 20 7c 20 73 79 6d 62 6f 6c 20
7c 20 74 69 6d 65 73 74 61 6d 70 20 7c 20 74 69 6d 65 2d 6f 66 2d 64 61
79 20 7c 20 62 79 74 65 73 20 7c 20 72 65 73 65 72 76 65 64 2d 6c 69 74
65 72 61 6c a2 64 72 75 6c 65 da 00 01 11 d4 66 74 61 67 67 65 64 6a 64
65 66 69 6e 69 74 69 6f 6e 78 29 69 64 65 6e 74 69 66 69 65 72 20 7c 20
72 65 66 65 72 65 6e 63 65 20 7c 20 68 61 73 68 20 7c 20 65 78 74 65 6e
73 69 6f 6e 67 6c 65 78 69 63 61 6c da 00 01 11 d5 82 81 da 00 01 11 d4
69 6e 6f 72 6d 61 74 69 76 65 ac 66 73 69 67 69 6c 73 8a a4 65 67 6c 79
70 68 61 40 65 74 6f 6b 65 6e da 00 01 11 d4 6a 69 64 65 6e 74 69 66 69
65 72 67 65 78 61 6d 70 6c 65 6a 40 6f 72 64 2d 38 38 32 31 33 67 70 61
79 6c 6f 61 64 64 77 6f 72 64 a4 65 67 6c 79 70 68 62 2d 3e 65 74 6f 6b
65 6e da 00 01 11 d4 69 72 65 66 65 72 65 6e 63 65 67 65 78 61 6d 70 6c
65 78 29 2d 3e 20 40 63 75 73 74 2d 34 34 37 31 2c 20 2d 3e 20 40 6c 65
78 69 63 6f 6e 2e 65 6e 74 72 69 65 73 2e 6b 69 74 c4 81 62 67 70 61 79
6c 6f 61 64 77 61 6e 20 69 64 65 6e 74 69 66 69 65 72 20 6f 72 20 61 20
70 61 74 68 a4 65 67 6c 79 70 68 61 23 65 74 6f 6b 65 6e da 00 01 11 d4
64 68 61 73 68 67 65 78 61 6d 70 6c 65 70 23 73 68 61 32 35 36 3a 64 65
61 64 62 65 65 66 67 70 61 79 6c 6f 61 64 6d 61 6c 67 6f 72 69 74 68 6d
3a 68 65 78 a4 65 67 6c 79 70 68 61 7e 65 74 6f 6b 65 6e da 00 01 11 d4
65 62 79 74 65 73 67 65 78 61 6d 70 6c 65 78 1e 7e 68 65 78 3a 66 66 30
30 20 6f 72 20 7e 62 36 34 3a 69 56 42 4f 52 77 30 4b 47 67 6f 3d 67 70
61 79 6c 6f 61 64 6d 65 6e 63 6f 64 69 6e 67 3a 64 61 74 61 a4 65 67 6c
79 70 68 61 3a 65 74 6f 6b 65 6e da 00 01 11 d4 66 73 79 6d 62 6f 6c 67
65 78 61 6d 70 6c 65 6b 3a 64 69 73 70 61 74 63 68 65 64 67 70 61 79 6c
6f 61 64 64 77 6f 72 64 a4 65 67 6c 79 70 68 61 21 65 74 6f 6b 65 6e da
00 01 11 d4 69 65 78 74 65 6e 73 69 6f 6e 67 65 78 61 6d 70 6c 65 75 21
61 63 6d 65 2f 68 69 6e 74 20 7b 20 7a 6f 6e 65 20 34 20 7d 67 70 61 79
6c 6f 61 64 70 6e 61 6d 65 2c 20 74 68 65 6e 20 76 61 6c 75 65 a4 65 67
6c 79 70 68 61 5e 65 74 6f 6b 65 6e da 00 01 11 d4 65 61 72 72 61 79 67
65 78 61 6d 70 6c 65 78 25 5e 66 36 34 20 5b 20 31 2e 35 2c 20 32 2e 35
20 5d 20 6f 72 20 5e 69 31 36 3a 32 78 33 20 5b 20 e2 80 a6 20 5d 67 70
61 79 6c 6f 61 64 78 26 74 79 70 65 2c 20 6f 72 20 74 79 70 65 3a 73 68
61 70 65 3b 20 74 68 65 6e 20 5b 20 65 6c 65 6d 65 6e 74 73 20 5d a4 65
67 6c 79 70 68 61 7c 65 74 6f 6b 65 6e da 00 01 11 d4 69 74 61 62 6c 65
2d 72 6f 77 67 65 78 61 6d 70 6c 65 69 7c 20 73 6b 75 20 71 74 79 67 70
61 79 6c 6f 61 64 65 63 65 6c 6c 73 a4 65 67 6c 79 70 68 62 2d 2d 65 74
6f 6b 65 6e da 00 01 11 d4 67 63 6f 6d 6d 65 6e 74 67 65 78 61 6d 70 6c
65 69 2d 2d 20 61 20 6e 6f 74 65 67 70 61 79 6c 6f 61 64 6e 74 6f 20 65
6e 64 20 6f 66 20 6c 69 6e 65 a4 65 67 6c 79 70 68 61 25 65 74 6f 6b 65
6e da 00 01 11 d4 66 68 65 61 64 65 72 67 65 78 61 6d 70 6c 65 6f 25 75
6e 69 6d 73 67 20 30 20 6c 61 62 65 6c 67 70 61 79 6c 6f 61 64 6b 75 6e
69 6d 73 67 20 6f 6e 6c 79 67 6e 75 6d 62 65 72 73 a4 63 64 6f 63 da 00
01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61 72 79 78 77 41
20 6c 65 61 64 69 6e 67 20 27 2d 27 20 62 65 67 69 6e 73 20 61 20 6e 75
6d 62 65 72 20 6f 6e 6c 79 20 77 68 65 6e 20 61 20 64 69 67 69 74 20 66
6f 6c 6c 6f 77 73 3b 0a 20 20 20 20 20 20 20 20 20 20 20 6f 74 68 65 72
77 69 73 65 20 69 74 20 62 65 6c 6f 6e 67 73 20 74 6f 20 61 20 77 6f 72
64 20 73 75 63 68 20 61 73 20 62 79 2d 73 65 71 75 65 6e 63 65 2e 64 6e
6f 74 65 da 00 01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61
72 79 78 80 41 20 6e 75 6d 62 65 72 20 69 6d 6d 65 64 69 61 74 65 6c 79
20 66 6f 6c 6c 6f 77 65 64 20 62 79 20 77 6f 72 64 20 63 68 61 72 61 63
74 65 72 73 20 69 73 20 61 20 6d 61 6c 66 6f 72 6d 65 64 0a 20 20 20 20
20 20 20 20 20 20 20 20 6e 75 6d 62 65 72 2c 20 6e 6f 74 20 61 20 6e 75
6d 62 65 72 20 74 68 65 6e 20 61 20 77 6f 72 64 3a 20 31 32 61 62 63 20
69 73 20 61 6e 20 65 72 72 6f 72 2e 65 66 6f 72 6d 73 84 a4 64 66 6f 72
6d da 00 01 11 d4 67 69 6e 74 65 67 65 72 64 6e 6f 74 65 73 61 72 62 69
74 72 61 72 79 20 70 72 65 63 69 73 69 6f 6e 67 65 78 61 6d 70 6c 65 63
2d 34 32 68 6c 65 78 65 73 2d 61 73 da 00 01 11 d4 63 69 6e 74 a4 64 66
6f 72 6d da 00 01 11 d4 67 64 65 63 69 6d 61 6c 64 6e 6f 74 65 78 1d 55
4e 4d 41 52 4b 45 44 20 e2 80 94 20 74 68 65 20 67 65 6e 65 72 61 6c 20
63 61 73 65 67 65 78 61 6d 70 6c 65 65 31 39 2e 39 39 68 6c 65 78 65 73
2d 61 73 da 00 01 11 d4 67 64 65 63 69 6d 61 6c a4 64 66 6f 72 6d da 00
01 11 d4 65 66 6c 6f 61 74 64 6e 6f 74 65 78 18 6d 61 72 6b 65 64 20 77
69 74 68 20 61 20 74 72 61 69 6c 69 6e 67 20 66 67 65 78 61 6d 70 6c 65
64 32 2e 35 66 68 6c 65 78 65 73 2d 61 73 da 00 01 11 d4 65 66 6c 6f 61
74 a4 64 66 6f 72 6d da 00 01 11 d4 6a 73 63 69 65 6e 74 69 66 69 63 64
6e 6f 74 65 75 65 78 61 63 74 20 75 6e 6c 65 73 73 20 6d 61 72 6b 65 64
20 66 67 65 78 61 6d 70 6c 65 68 36 2e 30 32 32 65 32 33 68 6c 65 78 65
73 2d 61 73 da 00 01 11 d4 67 64 65 63 69 6d 61 6c 78 23 74 68 65 2d 6d
61 72 6b 65 72 2d 64 6f 65 73 2d 6e 6f 74 2d 72 65 71 75 69 72 65 2d 61
2d 70 6f 69 6e 74 79 03 9c 60 66 60 20 6d 61 72 6b 73 20 74 68 65 20 6e
75 6d 62 65 72 20 62 69 6e 61 72 79 20 72 61 74 68 65 72 0a 20 20 20 20
20 20 20 20 20 20 20 20 74 68 61 6e 20 65 78 61 63 74 2e 20 49 74 20 61
74 74 61 63 68 65 73 20 74 6f 20 41 4e 59 20 6f 66 20 74 68 65 20 66 6f
72 6d 73 20 61 62 6f 76 65 20 61 6e 64 20 69 6d 70 6f 73 65 73 20 6e 6f
0a 20 20 20 20 20 20 20 20 20 20 20 20 73 68 61 70 65 20 6f 6e 20 74 68
65 20 6d 61 6e 74 69 73 73 61 3a 20 60 30 66 60 2c 20 60 32 66 60 20 61
6e 64 20 60 2d 33 66 60 20 61 72 65 20 66 6c 6f 61 74 73 20 65 78 61 63
74 6c 79 20 61 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 60 32 2e 35 66
60 20 69 73 2c 20 61 6e 64 20 60 36 65 32 33 66 60 20 69 73 20 6f 6e 65
20 77 69 74 68 20 6e 6f 20 70 6f 69 6e 74 20 69 6e 20 69 74 20 61 74 20
61 6c 6c 2e 0a 0a 20 20 20 20 20 20 20 20 20 20 20 20 53 61 69 64 20 6f
75 74 72 69 67 68 74 20 62 65 63 61 75 73 65 20 74 68 65 20 74 61 62 6c
65 20 73 68 6f 77 73 20 6f 6e 6c 79 20 60 32 2e 35 66 60 20 61 6e 64 20
74 77 6f 0a 20 20 20 20 20 20 20 20 20 20 20 20 69 6d 70 6c 65 6d 65 6e
74 61 74 69 6f 6e 73 20 72 65 61 64 20 74 68 65 20 73 69 6e 67 6c 65 20
65 78 61 6d 70 6c 65 20 61 73 20 61 20 72 65 71 75 69 72 65 6d 65 6e 74
2c 20 72 65 66 75 73 69 6e 67 0a 20 20 20 20 20 20 20 20 20 20 20 20 60
30 66 60 20 77 68 69 6c 65 20 61 63 63 65 70 74 69 6e 67 20 60 36 65 32
33 66 60 20 e2 80 94 20 77 68 69 63 68 20 69 73 20 74 68 65 20 73 61 6d
65 20 61 62 73 65 6e 63 65 20 6f 66 20 61 20 70 6f 69 6e 74 0a 20 20 20
20 20 20 20 20 20 20 20 20 61 6e 64 20 77 61 73 20 61 63 63 65 70 74 65
64 20 62 65 63 61 75 73 65 20 74 68 65 20 65 78 70 6f 6e 65 6e 74 20 6d
61 64 65 20 69 74 20 6c 6f 6f 6b 20 64 65 63 69 6d 61 6c 2e 20 41 0a 20
20 20 20 20 20 20 20 20 20 20 20 63 6f 72 70 75 73 20 64 6f 63 75 6d 65
6e 74 20 77 72 69 74 69 6e 67 20 60 6d 69 6e 20 5b 20 33 32 2e 38 31 66
2c 20 2d 33 35 2e 32 66 2c 20 30 66 20 5d 60 20 69 73 20 77 68 61 74 0a
20 20 20 20 20 20 20 20 20 20 20 20 73 75 72 66 61 63 65 64 20 69 74 2e
0a 0a 20 20 20 20 20 20 20 20 20 20 20 20 4e 6f 74 68 69 6e 67 20 63 61
6e 6f 6e 69 63 61 6c 20 74 75 72 6e 73 20 6f 6e 20 74 68 69 73 2e 20 45
76 65 72 79 20 66 6f 72 6d 61 74 74 65 72 20 68 65 72 65 20 72 65 6e 64
65 72 73 20 66 6c 6f 61 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 7a 65
72 6f 20 61 73 20 60 30 2e 30 66 60 2c 20 73 6f 20 74 68 65 20 74 77 6f
20 72 65 61 64 69 6e 67 73 20 64 69 66 66 65 72 20 6f 6e 6c 79 20 6f 76
65 72 20 77 68 61 74 20 61 6e 20 61 75 74 68 6f 72 0a 20 20 20 20 20 20
20 20 20 20 20 20 6d 61 79 20 57 52 49 54 45 2c 20 61 6e 64 20 74 68 65
20 64 69 73 61 67 72 65 65 6d 65 6e 74 20 63 6f 75 6c 64 20 6e 6f 74 20
73 68 6f 77 20 75 70 20 69 6e 20 61 20 63 6f 6d 70 61 72 69 73 6f 6e 20
6f 66 0a 20 20 20 20 20 20 20 20 20 20 20 20 62 79 74 65 73 2e 67 73 74
72 69 6e 67 73 a3 64 6e 6f 74 65 78 2d 4d 61 79 20 73 70 61 6e 20 6c 69
6e 65 73 2e 20 41 6e 79 20 6f 74 68 65 72 20 65 73 63 61 70 65 20 69 73
20 61 6e 20 65 72 72 6f 72 2e 67 65 73 63 61 70 65 73 85 da 00 01 11 d4
6b 62 61 63 6b 73 6c 61 73 68 2d 6e da 00 01 11 d4 6b 62 61 63 6b 73 6c
61 73 68 2d 74 da 00 01 11 d4 6b 62 61 63 6b 73 6c 61 73 68 2d 72 da 00
01 11 d4 6f 62 61 63 6b 73 6c 61 73 68 2d 71 75 6f 74 65 da 00 01 11 d4
73 62 61 63 6b 73 6c 61 73 68 2d 62 61 63 6b 73 6c 61 73 68 69 64 65 6c
69 6d 69 74 65 72 61 22 68 65 6e 63 6f 64 69 6e 67 65 55 54 46 2d 38 6a
73 65 70 61 72 61 74 6f 72 73 a3 63 64 6f 63 79 01 8d 41 20 6b 65 79 2d
76 61 6c 75 65 20 70 61 69 72 20 65 6e 64 73 20 61 74 20 61 20 73 65 70
61 72 61 74 6f 72 2c 20 73 6f 20 61 20 76 61 6c 75 65 20 6d 61 79 20 6e
6f 74 20 62 65 67 69 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6f
6e 20 74 68 65 20 6c 69 6e 65 20 61 66 74 65 72 20 69 74 73 20 6b 65 79
20 e2 80 94 20 74 68 61 74 20 6e 65 77 6c 69 6e 65 20 77 6f 75 6c 64 20
65 6e 64 20 74 68 65 20 70 61 69 72 2e 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 4c 6f 6e 67 20 73 74 72 69 6e 67 73 20 77 72 61 70 20 66 72
65 65 6c 79 2c 20 73 69 6e 63 65 20 61 20 73 74 72 69 6e 67 20 6d 61 79
20 73 70 61 6e 20 6c 69 6e 65 73 2e 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 41 20 6b 65 79 2d 76 61 6c 75 65 20 70 61 69 72 20 65 6e 64 73
20 61 74 20 61 20 73 65 70 61 72 61 74 6f 72 2e 20 4e 65 77 6c 69 6e 65
20 61 6e 64 20 63 6f 6d 6d 61 20 61 72 65 20 74 77 6f 0a 20 20 20 20 20
20 20 20 20 20 20 20 20 20 73 70 65 6c 6c 69 6e 67 73 20 6f 66 20 74 68
65 20 73 61 6d 65 20 74 68 69 6e 67 2c 20 6f 6e 65 20 6f 66 20 74 68 65
6d 20 69 6e 76 69 73 69 62 6c 65 2e 20 52 75 6e 73 20 6f 66 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 73 65 70 61 72 61 74 6f 72 73 20 63 6f
6c 6c 61 70 73 65 2e 65 66 6f 72 6d 73 82 da 00 01 11 d4 67 6e 65 77 6c
69 6e 65 da 00 01 11 d4 65 63 6f 6d 6d 61 78 20 76 61 6c 75 65 2d 6d 75
73 74 2d 73 74 61 72 74 2d 6f 6e 2d 74 68 65 2d 6b 65 79 2d 6c 69 6e 65
f5 6a 74 69 6d 65 73 74 61 6d 70 73 a4 63 64 6f 63 78 be 54 72 69 65 64
20 62 65 66 6f 72 65 20 6e 75 6d 62 65 72 73 2c 20 73 69 6e 63 65 20 32
30 32 36 2d 30 38 2d 30 33 20 77 6f 75 6c 64 20 6f 74 68 65 72 77 69 73
65 20 6c 65 78 20 61 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
32 30 32 36 20 66 6f 6c 6c 6f 77 65 64 20 62 79 20 61 6e 20 75 6e 65 78
70 65 63 74 65 64 20 27 2d 27 2e 20 41 74 20 6c 65 61 73 74 20 59 59 59
59 2d 4d 4d 20 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 72
65 71 75 69 72 65 64 2c 20 73 6f 20 61 20 62 61 72 65 20 79 65 61 72 20
73 74 61 79 73 20 61 6e 20 69 6e 74 65 67 65 72 2e 64 6e 6f 74 65 78 b2
54 68 65 20 6c 69 74 65 72 61 6c 20 74 65 78 74 20 69 73 20 70 72 65 73
65 72 76 65 64 20 76 65 72 62 61 74 69 6d 2e 20 50 72 65 63 69 73 69 6f
6e 20 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 6e 66 6f
72 6d 61 74 69 6f 6e 3a 20 32 30 32 36 2d 30 38 20 69 73 20 61 20 6d 6f
6e 74 68 2c 20 6e 65 76 65 72 20 61 20 77 69 64 65 6e 65 64 20 69 6e 73
74 61 6e 74 2c 20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 61 6e 20 6f 66 66 73 65 74 20 64 65 73 63 72 69 62 65 73 20 74 68 65
20 6f 62 73 65 72 76 65 72 2e 67 70 61 74 74 65 72 6e 78 4c 5e 5c 64 7b
34 7d 2d 5c 64 7b 32 7d 28 2d 5c 64 7b 32 7d 28 5b 54 20 5d 5c 64 7b 32
7d 3a 5c 64 7b 32 7d 28 3a 5c 64 7b 32 7d 28 5c 2e 5c 64 2b 29 3f 29 3f
28 5a 7c 5b 2b 2d 5d 5c 64 7b 32 7d 3a 5c 64 7b 32 7d 29 3f 29 3f 29 3f
74 74 68 65 2d 6d 61 74 63 68 2d 69 73 2d 62 6f 75 6e 64 65 64 79 03 65
41 54 20 4d 4f 53 54 20 36 34 20 43 48 41 52 41 43 54 45 52 53 2c 20 61
6e 64 20 61 6e 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 20 6d 61 79
0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6d 61 74 63 68 20 61 67
61 69 6e 73 74 20 61 20 77 69 6e 64 6f 77 20 6f 66 20 74 68 61 74 20 73
69 7a 65 20 72 61 74 68 65 72 20 74 68 61 6e 20 61 67 61 69 6e 73 74 20
74 68 65 20 72 65 73 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
6f 66 20 74 68 65 20 64 6f 63 75 6d 65 6e 74 2e 20 53 61 69 64 20 62 65
63 61 75 73 65 20 6c 65 61 76 69 6e 67 20 69 74 20 75 6e 73 61 69 64 20
63 6f 73 74 20 74 68 72 65 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 73 20 74 68 65 20 73 61
6d 65 20 64 65 66 65 63 74 2e 0a 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 54 48 45 20 50 41 54 54 45 52 4e 20 49 53 20 41 4e 43 48 4f 52
45 44 20 41 4e 44 20 53 48 4f 52 54 2c 20 73 6f 20 60 6d 61 74 63 68 20
77 68 61 74 20 69 73 20 6c 65 66 74 60 20 61 6e 64 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 60 6d 61 74 63 68 20 74 68 65 20 6e 65 78 74
20 66 65 77 20 63 68 61 72 61 63 74 65 72 73 60 20 61 63 63 65 70 74 20
65 78 61 63 74 6c 79 20 74 68 65 20 73 61 6d 65 20 69 6e 70 75 74 2e 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 54 68 65 79 20 61 72 65 20
6e 6f 74 20 74 68 65 20 73 61 6d 65 20 70 72 6f 67 72 61 6d 2e 20 57 68
65 72 65 20 74 68 65 20 72 65 73 74 20 6f 66 20 74 68 65 20 69 6e 70 75
74 20 69 73 20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62 6f
72 72 6f 77 20 e2 80 94 20 61 20 72 75 73 74 20 73 6c 69 63 65 2c 20 61
20 43 20 70 6f 69 6e 74 65 72 20 e2 80 94 20 6f 72 20 77 68 65 72 65 20
74 68 65 20 6d 61 74 63 68 65 72 20 74 61 6b 65 73 20 61 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 73 74 61 72 74 20 69 6e 64 65 78 2c 20
61 73 20 6b 6f 74 6c 69 6e 20 61 6e 64 20 64 6f 74 6e 65 74 20 64 6f 2c
20 74 68 65 20 66 69 72 73 74 20 73 70 65 6c 6c 69 6e 67 20 69 73 20 66
72 65 65 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 57 68 65 72
65 20 69 74 20 69 73 20 61 20 63 6f 70 79 2c 20 61 73 20 69 74 20 69 73
20 69 6e 20 67 6f 2c 20 64 61 72 74 20 61 6e 64 20 6a 61 76 61 73 63 72
69 70 74 2c 20 69 74 20 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 4f 28 6e 29 20 70 65 72 20 74 6f 6b 65 6e 20 61 6e 64 20 71 75 61
64 72 61 74 69 63 20 70 65 72 20 64 6f 63 75 6d 65 6e 74 2c 20 61 6e 64
20 69 74 20 73 74 61 79 73 20 69 6e 76 69 73 69 62 6c 65 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 75 6e 74 69 6c 20 73 6f 6d 65 62 6f 64
79 20 70 61 72 73 65 73 20 61 20 6d 65 67 61 62 79 74 65 2e 20 53 65 65
20 46 33 31 2e 6a 77 6f 72 64 2d 72 75 6e 65 73 a4 63 64 6f 63 78 42 57
68 61 74 20 6d 61 79 20 61 70 70 65 61 72 20 69 6e 20 61 20 62 61 72 65
20 77 6f 72 64 2c 20 6b 65 79 2c 20 73 79 6d 62 6f 6c 20 6e 61 6d 65 20
6f 72 20 73 69 67 69 6c 20 70 61 79 6c 6f 61 64 2e 64 6e 6f 74 65 78 ce
4d 61 72 6b 73 20 61 72 65 20 65 73 73 65 6e 74 69 61 6c 2c 20 6e 6f 74
20 61 6e 20 65 64 67 65 20 63 61 73 65 3a 20 77 69 74 68 6f 75 74 20 74
68 65 6d 20 74 68 65 20 49 50 41 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 61 66 66 72 69 63 61 74 65 20 64 cd a1 ca 92 20 61 6e 64 20
65 76 65 72 79 20 70 6f 69 6e 74 65 64 20 41 72 61 62 69 63 20 66 6f 72
6d 20 61 72 65 20 75 6e 77 72 69 74 61 62 6c 65 2e 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 4d 61 74 68 65 6d 61 74 69 63 61 6c 20 73
79 6d 62 6f 6c 73 20 61 72 65 20 4e 4f 54 20 77 6f 72 64 20 72 75 6e 65
73 3b 20 71 75 6f 74 65 20 74 68 65 6d 2e 66 61 63 63 65 70 74 83 da 00
01 11 d4 6e 75 6e 69 63 6f 64 65 2d 6c 65 74 74 65 72 da 00 01 11 d4 6d
75 6e 69 63 6f 64 65 2d 64 69 67 69 74 da 00 01 11 d4 6c 75 6e 69 63 6f
64 65 2d 6d 61 72 6b 6b 70 75 6e 63 74 75 61 74 69 6f 6e 65 5f 2d 2e 2f
2b 6c 74 69 6d 65 73 2d 6f 66 2d 64 61 79 a5 63 64 6f 63 79 01 64 41 20
77 61 6c 6c 2d 63 6c 6f 63 6b 20 74 69 6d 65 2c 20 74 72 69 65 64 20 61
66 74 65 72 20 74 68 65 20 64 61 74 65 2d 72 6f 6f 74 65 64 20 66 6f 72
6d 20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 62 65 66 6f 72 65 20 6e 75 6d 62 65 72 73 2c 20 66 6f 72 20 74 68
65 20 73 61 6d 65 20 72 65 61 73 6f 6e 3a 20 30 33 3a 35 32 20 77 6f 75
6c 64 20 6f 74 68 65 72 77 69 73 65 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 6c 65 78 20 61 73 20 30 33 20 66 6f 6c 6c 6f
77 65 64 20 62 79 20 61 6e 20 75 6e 65 78 70 65 63 74 65 64 20 63 6f 6c
6f 6e 2e 20 49 74 20 73 68 61 72 65 73 20 74 68 65 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 69 6d 65 73 74 61 6d 70 20
74 61 67 2c 20 62 65 63 61 75 73 65 20 61 20 74 69 6d 65 20 6f 66 20 64
61 79 20 69 73 20 61 20 74 65 6d 70 6f 72 61 6c 20 76 61 6c 75 65 20 61
74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 20
70 72 65 63 69 73 69 6f 6e 20 72 61 74 68 65 72 20 74 68 61 6e 20 61 20
6e 65 77 20 6b 69 6e 64 20 6f 66 20 74 68 69 6e 67 2e 67 70 61 74 74 65
72 6e 78 1d 5e 5c 64 7b 32 7d 3a 5c 64 7b 32 7d 28 3a 5c 64 7b 32 7d 28
5c 2e 5c 64 2b 29 3f 29 3f 69 6e 6f 2d 6f 66 66 73 65 74 78 f4 41 20 74
69 6d 65 20 63 61 72 72 79 69 6e 67 20 61 20 7a 6f 6e 65 20 62 75 74 20
6e 6f 20 64 61 74 65 20 69 73 20 61 20 63 6f 6e 66 75 73 69 6e 67 20 6f
62 6a 65 63 74 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 61 6e 64 20 77 68 61 74 20 6f 70 65 6e 69 6e 67 20 68 6f 75 72
73 2c 20 77 61 74 63 68 20 63 68 61 6e 67 65 73 20 61 6e 64 20 70 72 61
79 65 72 20 74 69 6d 65 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 61 63 74 75 61 6c 6c 79 20 6e 65 65 64 20 69 73 20 74
68 65 20 77 61 6c 6c 20 63 6c 6f 63 6b 2e 20 41 64 64 69 6e 67 20 61 6e
20 6f 66 66 73 65 74 20 6c 61 74 65 72 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 62 72 65 61 6b 73 20 6e 6f 74 68 69 6e 67
2e 76 72 61 6e 67 65 73 2d 61 72 65 2d 6e 6f 74 2d 63 68 65 63 6b 65 64
79 01 37 54 68 65 20 73 68 61 70 65 20 69 73 20 63 68 65 63 6b 65 64 20
61 6e 64 20 74 68 65 20 63 6c 6f 63 6b 20 69 73 20 6e 6f 74 2c 20 77 68
69 63 68 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
6d 61 74 63 68 65 73 20 74 68 65 20 64 61 74 65 20 66 6f 72 6d 3a 20 60
32 30 32 36 2d 31 33 2d 34 35 60 20 69 73 20 61 63 63 65 70 74 65 64 20
74 6f 64 61 79 2c 20 73 6f 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 60 32 35 3a 31 30 60 20 69 73 20 74 6f 6f 2e 20 42 6f
74 68 20 61 72 65 20 73 68 61 70 65 73 20 72 61 74 68 65 72 20 74 68 61
6e 20 61 73 73 65 72 74 69 6f 6e 73 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 61 62 6f 75 74 20 74 68 65 20 63 61 6c 65 6e
64 61 72 2c 20 61 6e 64 20 69 6e 68 65 72 69 74 69 6e 67 20 6f 6e 65 20
72 75 6c 65 20 62 65 61 74 73 20 69 6e 76 65 6e 74 69 6e 67 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 61 20 73 65 63 6f 6e
64 2e 78 19 74 77 6f 2d 64 69 67 69 74 73 2d 66 6f 72 2d 74 68 65 2d 6d
69 6e 75 74 65 79 01 3f 57 68 69 63 68 20 69 73 20 77 68 61 74 20 6b 65
65 70 73 20 72 61 74 69 6f 73 20 6f 75 74 2e 20 60 32 35 3a 31 60 20 61
6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 60
31 3a 31 60 20 61 72 65 20 71 75 6f 74 65 64 20 73 74 72 69 6e 67 73 20
69 6e 20 61 20 64 6f 63 75 6d 65 6e 74 20 68 65 72 65 2c 20 61 6e 64 20
61 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6f 6e
65 2d 64 69 67 69 74 20 6d 69 6e 75 74 65 20 6e 65 76 65 72 20 6d 61 74
63 68 65 73 2c 20 73 6f 20 74 68 65 79 20 73 74 61 79 20 73 74 72 69 6e
67 73 2e 20 41 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 6c 69 74 65 72 61 6c 20 74 68 61 74 20 73 77 61 6c 6c 6f 77 65 64
20 72 61 74 69 6f 73 20 77 6f 75 6c 64 20 63 68 61 6e 67 65 20 74 68 65
20 6d 65 61 6e 69 6e 67 20 6f 66 20 61 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 20 74 68 61 74 20
61 6c 72 65 61 64 79 20 70 61 72 73 65 73 2e 6d 62 79 74 65 2d 70 61 79
6c 6f 61 64 73 79 03 f9 53 45 54 54 4c 45 44 20 32 30 32 36 2d 30 39 2d
30 32 2c 20 63 6c 6f 73 69 6e 67 20 69 73 73 75 65 20 30 30 36 2e 20 60
7e 68 65 78 3a 60 20 74 61 6b 65 73 20 61 6e 20 65 76 65 6e 0a 20 20 20
20 20 20 20 6e 75 6d 62 65 72 20 6f 66 20 68 65 78 61 64 65 63 69 6d 61
6c 20 64 69 67 69 74 73 20 69 6e 20 65 69 74 68 65 72 20 63 61 73 65 20
61 6e 64 20 6e 6f 74 68 69 6e 67 20 65 6c 73 65 3b 20 74 68 65 0a 20 20
20 20 20 20 20 66 6f 72 6d 61 74 74 65 72 20 65 6d 69 74 73 20 6c 6f 77
65 72 20 63 61 73 65 2e 20 60 7e 62 36 34 3a 60 20 74 61 6b 65 73 20 74
68 65 20 52 46 43 20 34 36 34 38 20 73 65 63 74 69 6f 6e 20 34 0a 20 20
20 20 20 20 20 61 6c 70 68 61 62 65 74 20 e2 80 94 20 41 20 74 6f 20 5a
2c 20 61 20 74 6f 20 7a 2c 20 30 20 74 6f 20 39 2c 20 2b 20 61 6e 64 20
2f 20 e2 80 94 20 70 61 64 64 65 64 20 77 69 74 68 20 3d 20 74 6f 20 61
20 6d 75 6c 74 69 70 6c 65 0a 20 20 20 20 20 20 20 6f 66 20 66 6f 75 72
20 63 68 61 72 61 63 74 65 72 73 2c 20 61 6e 64 20 6e 6f 74 68 69 6e 67
20 65 6c 73 65 3a 20 6e 6f 20 62 61 73 65 36 34 75 72 6c 20 28 2d 20 61
6e 64 20 5f 29 2c 20 6e 6f 0a 20 20 20 20 20 20 20 75 6e 70 61 64 64 65
64 20 74 61 69 6c 2c 20 6e 6f 20 77 68 69 74 65 73 70 61 63 65 2c 20 6e
6f 20 6c 69 6e 65 20 62 72 65 61 6b 73 2e 20 54 77 6f 20 73 70 65 6c 6c
69 6e 67 73 20 6f 66 20 6f 6e 65 20 62 79 74 65 0a 20 20 20 20 20 20 20
73 74 72 69 6e 67 20 69 73 20 77 68 61 74 20 63 61 6e 6f 6e 69 63 61 6c
20 65 6e 63 6f 64 69 6e 67 20 65 78 69 73 74 73 20 74 6f 20 70 72 65 76
65 6e 74 2c 20 73 6f 20 74 68 65 20 75 72 6c 2d 73 61 66 65 0a 20 20 20
20 20 20 20 61 6c 70 68 61 62 65 74 20 69 73 20 6e 6f 74 20 61 20 73 65
63 6f 6e 64 20 6f 70 74 69 6f 6e 3b 20 69 74 20 69 73 20 6d 61 6c 66 6f
72 6d 65 64 2e 0a 0a 20 20 20 20 20 20 20 53 74 61 74 65 64 20 62 65 63
61 75 73 65 20 69 74 20 77 61 73 20 6e 6f 74 2c 20 61 6e 64 20 74 68 65
20 73 69 6c 65 6e 63 65 20 63 6f 73 74 20 61 20 72 65 61 6c 20 64 6f 63
75 6d 65 6e 74 3a 20 61 0a 20 20 20 20 20 20 20 70 72 6f 64 75 63 65 72
20 74 65 73 74 65 64 20 6f 6e 6c 79 20 6f 6e 20 61 20 72 75 6e 74 69 6d
65 20 77 68 6f 73 65 20 64 65 63 6f 64 65 72 20 61 63 63 65 70 74 73 20
62 61 73 65 36 34 75 72 6c 0a 20 20 20 20 20 20 20 73 68 69 70 70 65 64
20 61 20 62 6c 6f 62 20 74 68 61 74 20 61 20 62 72 6f 77 73 65 72 20 72
65 66 75 73 65 64 2c 20 61 6e 64 20 6e 6f 20 63 68 65 63 6b 20 63 6f 75
6c 64 20 68 61 76 65 20 74 6f 6c 64 20 69 74 0a 20 20 20 20 20 20 20 73
6f 2c 20 62 65 63 61 75 73 65 20 6e 6f 74 68 69 6e 67 20 68 65 72 65 20
73 61 69 64 20 77 68 69 63 68 20 6c 61 6e 67 75 61 67 65 20 7e 62 36 34
3a 20 77 61 73 2e 20 54 68 65 20 65 78 61 6d 70 6c 65 73 0a 20 20 20 20
20 20 20 77 65 72 65 20 73 74 61 6e 64 61 72 64 20 61 6e 64 20 70 61 64
64 65 64 3b 20 74 68 61 74 20 77 61 73 20 74 68 65 20 69 6e 74 65 6e 74
2c 20 61 6e 64 20 6e 6f 77 20 69 74 20 69 73 20 74 68 65 20 72 75 6c 65
2e 0a 20 20 20 20 20 20 20 54 68 65 20 72 65 6a 65 63 74 73 20 74 61 62
6c 65 20 75 6e 64 65 72 20 63 6f 6e 66 6f 72 6d 61 6e 63 65 20 63 61 72
72 69 65 73 20 74 68 65 20 76 65 63 74 6f 72 73 2e 6f 72 65 73 65 72 76
65 64 2d 73 69 67 69 6c 73 a3 63 64 6f 63 78 7e 48 65 6c 64 20 62 61 63
6b 20 73 6f 20 61 20 66 75 74 75 72 65 20 61 64 64 69 74 69 6f 6e 20 63
61 6e 6e 6f 74 20 73 69 6c 65 6e 74 6c 79 20 72 65 69 6e 74 65 72 70 72
65 74 20 74 65 78 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68
61 74 20 70 61 72 73 65 73 20 74 6f 64 61 79 2e 20 45 6e 63 6f 75 6e 74
65 72 69 6e 67 20 6f 6e 65 20 69 73 20 61 6e 20 65 72 72 6f 72 2e 65 73
70 65 6e 74 78 da 5e 20 62 65 63 61 6d 65 20 74 68 65 20 74 79 70 65 64
20 61 72 72 61 79 20 73 69 67 69 6c 20 6f 6e 20 32 30 32 36 2d 30 39 2d
30 32 20 e2 80 94 20 74 68 65 20 66 69 72 73 74 20 6f 66 20 74 68 65 73
65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 6f 20 62 65 20 75 73
65 64 2c 20 61 6e 64 20 75 73 65 64 20 66 6f 72 20 65 78 61 63 74 6c 79
20 77 68 61 74 20 74 68 65 79 20 77 65 72 65 20 68 65 6c 64 20 62 61 63
6b 20 66 6f 72 3a 20 61 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
61 64 64 69 74 69 6f 6e 20 74 68 61 74 20 72 65 69 6e 74 65 72 70 72 65
74 73 20 6e 6f 20 74 65 78 74 20 74 68 61 74 20 70 61 72 73 65 64 20 62
65 66 6f 72 65 20 69 74 66 67 6c 79 70 68 73 65 26 24 2a 3f 5c 71 72 65
73 65 72 76 65 64 2d 6c 69 74 65 72 61 6c 73 a3 63 64 6f 63 79 01 39 42
61 72 65 20 77 6f 72 64 73 20 74 68 61 74 20 61 72 65 20 76 61 6c 75 65
73 20 72 61 74 68 65 72 20 74 68 61 6e 20 61 6e 6e 6f 74 61 74 69 6f 6e
73 2e 20 41 20 66 69 78 65 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 6c 65 78 69 63 61 6c 20 6c 69 73 74 2c 20 73 6f 20 6e 6f 20 63 6f 65
72 63 69 6f 6e 20 69 73 20 76 61 6c 75 65 2d 64 65 70 65 6e 64 65 6e 74
3a 20 4e 4f 20 69 73 20 6e 65 76 65 72 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 66 61 6c 73 65 2e 20 54 68 65 73 65 20 6d 61 79 20 4e 4f 54
20 62 65 20 75 73 65 64 20 61 73 20 73 79 6d 62 6f 6c 20 6e 61 6d 65 73
20 e2 80 94 20 27 3a 74 72 75 65 27 20 69 73 20 61 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 73 79 6d 62 6f 6c 20 6e 61 6d 65 64 20 74 72 75
65 2c 20 77 68 69 63 68 20 69 73 20 6e 65 76 65 72 20 77 68 61 74 20 61
6e 20 61 75 74 68 6f 72 20 6d 65 61 6e 73 2c 20 73 6f 20 69 74 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 69 73 20 61 6e 20 65 72 72 6f 72 2e
65 77 6f 72 64 73 86 da 00 01 11 d4 64 74 72 75 65 da 00 01 11 d4 65 66
61 6c 73 65 da 00 01 11 d4 64 6e 75 6c 6c da 00 01 11 d4 63 6e 61 6e da
00 01 11 d4 63 69 6e 66 da 00 01 11 d4 64 2d 69 6e 66 71 6e 6f 72 2d 61
73 2d 61 2d 62 61 72 65 2d 6b 65 79 79 03 50 54 68 65 20 73 61 6d 65 20
72 75 6c 65 2c 20 66 6f 72 20 74 68 65 20 73 61 6d 65 20 72 65 61 73 6f
6e 2c 20 69 6e 20 74 68 65 20 6f 74 68 65 72 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 70 6f 73 69 74 69 6f 6e 3a 20 60 6e 75 6c 6c 20 31 60
20 69 73 20 61 20 70 61 69 72 20 77 68 6f 73 65 20 6b 65 79 20 69 73 20
74 68 65 20 77 6f 72 64 20 6e 75 6c 6c 2c 20 77 68 69 63 68 20 69 73 0a
20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e 65 76 65 72 20 77 68 61 74
20 61 6e 20 61 75 74 68 6f 72 20 6d 65 61 6e 73 20 65 69 74 68 65 72 2e
20 51 75 6f 74 65 20 69 74 20 e2 80 94 20 60 22 6e 75 6c 6c 22 20 31 60
20 e2 80 94 20 61 6e 64 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74
68 65 20 69 6e 74 65 6e 74 20 69 73 20 75 6e 61 6d 62 69 67 75 6f 75 73
20 74 6f 20 61 20 72 65 61 64 65 72 20 61 73 20 77 65 6c 6c 20 61 73 20
74 6f 20 61 20 70 61 72 73 65 72 2e 0a 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 54 68 69 73 20 77 61 73 20 66 6f 75 6e 64 20 62 79 20 66 6f
75 72 20 69 6e 64 65 70 65 6e 64 65 6e 74 20 69 6d 70 6c 65 6d 65 6e 74
61 74 69 6f 6e 73 20 72 65 66 75 73 69 6e 67 20 61 0a 20 20 20 20 20 20
20 20 20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 20 74 68 65 20 72 65 66
65 72 65 6e 63 65 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 20 61 63
63 65 70 74 65 64 2e 20 54 68 65 20 73 70 65 63 69 66 69 63 61 74 69 6f
6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 68 61 64 20 72 75 6c 65
64 20 6f 6e 20 73 79 6d 62 6f 6c 20 6e 61 6d 65 73 20 61 6e 64 20 62 65
65 6e 20 73 69 6c 65 6e 74 20 6f 6e 20 6b 65 79 73 2c 20 61 6e 64 20 65
76 65 72 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 6e 64 65 70
65 6e 64 65 6e 74 20 72 65 61 64 65 72 20 63 6f 6e 63 6c 75 64 65 64 20
74 68 65 20 72 75 6c 65 20 65 78 74 65 6e 64 65 64 3b 20 6f 6e 6c 79 20
74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 72 65 66 65 72 65
6e 63 65 20 63 6f 6e 63 6c 75 64 65 64 20 69 74 20 64 69 64 20 6e 6f 74
2e 20 46 6f 75 72 20 74 6f 20 6f 6e 65 20 69 73 20 6e 6f 74 20 61 20 6d
61 6a 6f 72 69 74 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 76 6f
74 65 20 6f 6e 20 61 20 6c 61 6e 67 75 61 67 65 20 71 75 65 73 74 69 6f
6e 2c 20 62 75 74 20 69 74 20 69 73 20 61 20 73 74 72 6f 6e 67 20 73 69
67 6e 61 6c 20 61 62 6f 75 74 20 77 68 61 74 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 74 68 65 20 74 65 78 74 20 61 63 74 75 61 6c 6c 79 20
73 61 79 73 2c 20 61 6e 64 20 74 68 65 20 63 6f 6e 73 69 73 74 65 6e 74
20 72 65 61 64 69 6e 67 20 69 73 20 74 68 65 20 6f 6e 65 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 61 64 6f 70 74 65 64 20 68 65 72 65 2e 73
73 69 67 69 6c 2d 70 61 79 6c 6f 61 64 2d 72 75 6e 65 73 a2 63 64 6f 63
78 7f 41 66 74 65 72 20 61 20 73 69 67 69 6c 2c 20 27 3a 27 20 61 6e 64
20 27 3d 27 20 61 72 65 20 61 64 64 69 74 69 6f 6e 61 6c 6c 79 20 70 65
72 6d 69 74 74 65 64 2c 20 73 6f 20 74 68 61 74 0a 20 20 20 20 20 20 20
20 20 20 20 20 23 73 68 61 32 35 36 3a 39 66 32 61 20 61 6e 64 20 7e 62
36 34 3a 69 56 42 4f 52 77 30 4b 47 67 6f 3d 20 6c 65 78 20 61 73 20 6f
6e 65 20 74 6f 6b 65 6e 2e 64 61 64 64 73 62 3a 3d 67 72 65 6c 65 61 73
65 79 02 5b 76 30 2e 31 20 e2 80 94 20 32 30 32 36 2d 30 38 2d 32 33 2e
20 41 20 72 65 6c 65 61 73 65 20 6c 61 62 65 6c 20 66 6f 72 20 74 68 69
73 20 64 6f 63 75 6d 65 6e 74 20 61 6e 64 20 74 68 65 20 6e 69 6e 65 0a
20 20 20 20 20 20 20 20 20 20 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f
6e 73 20 74 68 61 74 20 61 67 72 65 65 20 6f 6e 20 69 74 2c 20 4e 4f 54
20 61 20 66 6f 72 6d 61 74 20 76 65 72 73 69 6f 6e 3a 20 74 68 65 20 68
65 61 64 65 72 0a 20 20 20 20 20 20 20 20 20 20 20 60 25 75 6e 69 6d 73
67 20 30 60 20 69 73 20 74 68 65 20 66 6f 72 6d 61 74 20 76 65 72 73 69
6f 6e 20 61 6e 64 20 73 74 61 79 73 20 30 20 75 6e 74 69 6c 20 73 6f 6d
65 74 68 69 6e 67 20 69 6e 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20
20 62 79 74 65 73 20 63 68 61 6e 67 65 73 2e 0a 0a 20 20 20 20 20 20 20
20 20 20 20 76 31 20 69 73 20 74 68 65 20 67 6f 61 6c 20 61 6e 64 20 6e
6f 74 20 74 68 65 20 6e 65 78 74 20 73 74 65 70 2e 20 53 65 65 20 64 6f
63 73 2f 31 31 2c 20 77 68 69 63 68 20 72 65 61 66 66 69 72 6d 65 64 0a
20 20 20 20 20 20 20 20 20 20 20 60 6e 65 76 65 72 20 6c 61 62 65 6c 20
69 74 20 76 31 60 20 6f 6e 20 74 68 65 20 64 61 79 20 74 68 65 20 63 61
73 65 20 66 6f 72 20 76 31 20 77 61 73 20 73 74 72 6f 6e 67 65 73 74 20
e2 80 94 20 66 69 76 65 0a 20 20 20 20 20 20 20 20 20 20 20 64 65 66 65
63 74 73 20 77 65 72 65 20 66 6f 75 6e 64 20 74 68 61 74 20 64 61 79 2c
20 65 76 65 72 79 20 6f 6e 65 20 69 6e 76 69 73 69 62 6c 65 20 74 6f 20
65 76 65 72 79 20 63 68 65 63 6b 20 74 68 61 74 0a 20 20 20 20 20 20 20
20 20 20 20 65 78 69 73 74 65 64 20 74 68 61 74 20 6d 6f 72 6e 69 6e 67
2c 20 61 6e 64 20 61 20 76 65 72 73 69 6f 6e 20 6e 75 6d 62 65 72 20 69
73 20 61 20 70 72 6f 6d 69 73 65 20 61 62 6f 75 74 20 77 68 61 74 0a 20
20 20 20 20 20 20 20 20 20 20 68 61 73 20 73 74 6f 70 70 65 64 20 63 68
61 6e 67 69 6e 67 2e 68 65 6e 63 6f 64 69 6e 67 da 00 01 11 d5 82 81 da
00 01 11 d4 69 6e 6f 72 6d 61 74 69 76 65 a8 64 74 61 67 73 8e a4 64 6e
61 6d 65 da 00 01 11 d4 67 64 65 63 69 6d 61 6c 65 6e 6f 74 65 73 78 2e
52 46 43 20 38 39 34 39 20 33 2e 34 2e 34 3b 20 76 61 6c 75 65 20 3d 20
6d 61 6e 74 69 73 73 61 20 2a 20 31 30 5e 65 78 70 6f 6e 65 6e 74 66 6e
75 6d 62 65 72 04 67 63 6f 6e 74 65 6e 74 78 24 5b 20 65 78 70 6f 6e 65
6e 74 2c 20 6d 61 6e 74 69 73 73 61 20 5d 20 62 6f 74 68 20 69 6e 74 65
67 65 72 73 a4 64 6e 61 6d 65 da 00 01 11 d4 66 73 79 6d 62 6f 6c 65 6e
6f 74 65 73 78 23 74 68 65 20 6e 61 6d 65 2c 20 77 69 74 68 6f 75 74 20
74 68 65 20 6c 65 61 64 69 6e 67 20 63 6f 6c 6f 6e 66 6e 75 6d 62 65 72
1a 00 01 11 d4 67 63 6f 6e 74 65 6e 74 64 74 65 78 74 a4 64 6e 61 6d 65
da 00 01 11 d4 69 61 6e 6e 6f 74 61 74 65 64 65 6e 6f 74 65 73 78 29 61
6e 6e 6f 74 61 74 69 6f 6e 73 20 61 72 65 20 73 79 6d 62 6f 6c 20 6f 72
20 69 64 65 6e 74 69 66 69 65 72 20 74 61 67 73 66 6e 75 6d 62 65 72 1a
00 01 11 d5 67 63 6f 6e 74 65 6e 74 78 1c 5b 20 5b 20 61 6e 6e 6f 74 61
74 69 6f 6e e2 80 a6 20 5d 2c 20 76 61 6c 75 65 20 5d a4 64 6e 61 6d 65
da 00 01 11 d4 6a 69 64 65 6e 74 69 66 69 65 72 65 6e 6f 74 65 73 78 1f
74 68 65 20 6e 61 6d 65 2c 20 77 69 74 68 6f 75 74 20 74 68 65 20 6c 65
61 64 69 6e 67 20 40 66 6e 75 6d 62 65 72 1a 00 01 11 d6 67 63 6f 6e 74
65 6e 74 64 74 65 78 74 a4 64 6e 61 6d 65 da 00 01 11 d4 69 72 65 66 65
72 65 6e 63 65 65 6e 6f 74 65 73 78 3f 74 61 72 67 65 74 20 6e 61 6d 65
20 57 49 54 48 4f 55 54 20 74 68 65 20 6c 65 61 64 69 6e 67 20 40 3b 20
6e 65 76 65 72 20 72 65 73 6f 6c 76 65 64 20 62 79 20 74 68 65 20 70 61
72 73 65 72 66 6e 75 6d 62 65 72 1a 00 01 11 d7 67 63 6f 6e 74 65 6e 74
64 74 65 78 74 a4 64 6e 61 6d 65 da 00 01 11 d4 64 68 61 73 68 65 6e 6f
74 65 73 78 1a 64 69 67 65 73 74 20 69 73 20 64 65 63 6f 64 65 64 20 66
72 6f 6d 20 68 65 78 66 6e 75 6d 62 65 72 1a 00 01 11 d8 67 63 6f 6e 74
65 6e 74 78 20 5b 20 61 6c 67 6f 72 69 74 68 6d 2d 74 65 78 74 2c 20 64
69 67 65 73 74 2d 62 79 74 65 73 20 5d a4 64 6e 61 6d 65 da 00 01 11 d4
69 65 78 74 65 6e 73 69 6f 6e 65 6e 6f 74 65 73 78 1a 6e 61 6d 65 20 77
69 74 68 6f 75 74 20 74 68 65 20 6c 65 61 64 69 6e 67 20 21 66 6e 75 6d
62 65 72 1a 00 01 11 d9 67 63 6f 6e 74 65 6e 74 74 5b 20 6e 61 6d 65 2d
74 65 78 74 2c 20 76 61 6c 75 65 20 5d a4 64 6e 61 6d 65 da 00 01 11 d4
6f 73 69 67 69 6c 73 2d 73 74 72 69 70 70 65 64 65 6e 6f 74 65 73 78 1e
61 70 70 6c 69 65 73 20 74 6f 20 37 30 31 30 32 2c 20 37 30 31 30 33 2c
20 37 30 31 30 35 66 6e 75 6d 62 65 72 da 00 01 11 d4 64 6e 6f 74 65 67
63 6f 6e 74 65 6e 74 78 2e 40 20 2d 3e 20 21 20 61 72 65 20 73 79 6e 74
61 78 2c 20 6e 6f 74 20 70 61 72 74 20 6f 66 20 74 68 65 20 73 74 6f 72
65 64 20 6e 61 6d 65 a4 64 6e 61 6d 65 da 00 01 11 d4 69 74 69 6d 65 73
74 61 6d 70 65 6e 6f 74 65 73 75 74 68 65 20 6c 69 74 65 72 61 6c 2c 20
76 65 72 62 61 74 69 6d 66 6e 75 6d 62 65 72 1a 00 01 11 da 67 63 6f 6e
74 65 6e 74 64 74 65 78 74 a4 64 6e 61 6d 65 da 00 01 11 d4 68 76 61 6c
69 64 69 74 79 65 6e 6f 74 65 73 78 30 61 20 74 79 70 65 64 20 61 72 72
61 79 20 77 69 74 68 20 6d 69 73 73 69 6e 67 20 70 6f 73 69 74 69 6f 6e
73 3b 20 73 65 65 20 61 72 72 61 79 73 66 6e 75 6d 62 65 72 1a 00 01 11
db 67 63 6f 6e 74 65 6e 74 77 5b 20 62 69 74 6d 61 70 2d 62 79 74 65 73
2c 20 61 72 72 61 79 20 5d a4 64 6e 61 6d 65 da 00 01 11 d4 65 73 68 61
70 65 65 6e 6f 74 65 73 78 2b 52 46 43 20 38 37 34 36 20 6d 75 6c 74 69
2d 64 69 6d 65 6e 73 69 6f 6e 61 6c 20 61 72 72 61 79 2c 20 72 6f 77 2d
6d 61 6a 6f 72 66 6e 75 6d 62 65 72 18 28 67 63 6f 6e 74 65 6e 74 78 1f
5b 20 5b 20 65 78 74 65 6e 74 73 e2 80 a6 20 5d 2c 20 74 79 70 65 64 2d
61 72 72 61 79 20 5d a4 64 6e 61 6d 65 da 00 01 11 d4 68 75 6e 73 69 67
6e 65 64 65 6e 6f 74 65 73 78 18 52 46 43 20 38 37 34 36 3a 20 75 38 20
75 31 36 20 75 33 32 20 75 36 34 66 6e 75 6d 62 65 72 67 36 34 e2 80 93
36 37 67 63 6f 6e 74 65 6e 74 77 62 79 74 65 20 73 74 72 69 6e 67 2c 20
62 69 67 2d 65 6e 64 69 61 6e a4 64 6e 61 6d 65 da 00 01 11 d4 66 73 69
67 6e 65 64 65 6e 6f 74 65 73 78 18 52 46 43 20 38 37 34 36 3a 20 69 38
20 69 31 36 20 69 33 32 20 69 36 34 66 6e 75 6d 62 65 72 67 37 32 e2 80
93 37 35 67 63 6f 6e 74 65 6e 74 77 62 79 74 65 20 73 74 72 69 6e 67 2c
20 62 69 67 2d 65 6e 64 69 61 6e a4 64 6e 61 6d 65 da 00 01 11 d4 65 66
6c 6f 61 74 65 6e 6f 74 65 73 75 52 46 43 20 38 37 34 36 3a 20 66 31 36
20 66 33 32 20 66 36 34 66 6e 75 6d 62 65 72 67 38 30 e2 80 93 38 32 67
63 6f 6e 74 65 6e 74 77 62 79 74 65 20 73 74 72 69 6e 67 2c 20 62 69 67
2d 65 6e 64 69 61 6e 67 6d 61 70 70 69 6e 67 94 a2 64 63 62 6f 72 6e 6d
61 70 2c 20 74 65 78 74 20 6b 65 79 73 69 74 65 78 74 2d 66 6f 72 6d 67
7b 20 e2 80 a6 20 7d a2 64 63 62 6f 72 65 61 72 72 61 79 69 74 65 78 74
2d 66 6f 72 6d 67 5b 20 e2 80 a6 20 5d a2 64 63 62 6f 72 78 2b 61 72 72
61 79 20 6f 66 20 6d 61 70 73 20 e2 80 94 20 69 64 65 6e 74 69 63 61 6c
20 74 6f 20 74 68 65 20 6c 6f 6e 67 68 61 6e 64 69 74 65 78 74 2d 66 6f
72 6d 66 7c 20 72 6f 77 73 a2 64 63 62 6f 72 78 22 69 6e 74 65 67 65 72
2c 20 6f 72 20 74 61 67 20 32 2f 33 20 62 65 79 6f 6e 64 20 36 34 20 62
69 74 73 69 74 65 78 74 2d 66 6f 72 6d 63 31 32 33 a2 64 63 62 6f 72 76
74 61 67 20 34 20 64 65 63 69 6d 61 6c 20 66 72 61 63 74 69 6f 6e 69 74
65 78 74 2d 66 6f 72 6d 65 31 39 2e 39 39 a2 64 63 62 6f 72 74 66 6c 6f
61 74 2c 20 73 68 6f 72 74 65 73 74 20 66 6f 72 6d 69 74 65 78 74 2d 66
6f 72 6d 64 32 2e 35 66 a2 64 63 62 6f 72 64 74 65 78 74 69 74 65 78 74
2d 66 6f 72 6d 65 22 e2 80 a6 22 a2 64 63 62 6f 72 69 74 61 67 20 37 30
31 30 30 69 74 65 78 74 2d 66 6f 72 6d 65 3a 77 6f 72 64 a2 64 63 62 6f
72 69 74 61 67 20 37 30 31 30 31 69 74 65 78 74 2d 66 6f 72 6d 6a 77 6f
72 64 20 76 61 6c 75 65 a2 64 63 62 6f 72 69 74 61 67 20 37 30 31 30 32
69 74 65 78 74 2d 66 6f 72 6d 65 40 6e 61 6d 65 a2 64 63 62 6f 72 69 74
61 67 20 37 30 31 30 33 69 74 65 78 74 2d 66 6f 72 6d 68 2d 3e 20 40 6e
61 6d 65 a2 64 63 62 6f 72 69 74 61 67 20 37 30 31 30 34 69 74 65 78 74
2d 66 6f 72 6d 68 23 61 6c 67 3a 68 65 78 a2 64 63 62 6f 72 69 74 61 67
20 37 30 31 30 35 69 74 65 78 74 2d 66 6f 72 6d 6b 21 6e 61 6d 65 20 76
61 6c 75 65 a2 64 63 62 6f 72 69 74 61 67 20 37 30 31 30 36 69 74 65 78
74 2d 66 6f 72 6d 67 32 30 32 36 2d 30 38 a2 64 63 62 6f 72 78 25 62 79
74 65 20 73 74 72 69 6e 67 20 e2 80 94 20 61 20 6b 65 72 6e 65 6c 20 74
79 70 65 2c 20 6e 6f 20 74 61 67 69 74 65 78 74 2d 66 6f 72 6d 6d 7e 68
65 78 3a 20 2f 20 7e 62 36 34 3a a2 64 63 62 6f 72 78 44 74 61 67 20 38
32 20 6f 76 65 72 20 61 20 62 79 74 65 20 73 74 72 69 6e 67 3b 20 36 34
e2 80 93 36 37 2c 20 37 32 e2 80 93 37 35 2c 20 38 30 e2 80 93 38 32 20
62 79 20 65 6c 65 6d 65 6e 74 20 74 79 70 65 69 74 65 78 74 2d 66 6f 72
6d 6c 5e 66 36 34 20 5b 20 e2 80 a6 20 5d a2 64 63 62 6f 72 78 20 74 61
67 20 34 30 20 5b 20 5b 20 32 2c 20 33 20 5d 2c 20 74 79 70 65 64 20 61
72 72 61 79 20 5d 69 74 65 78 74 2d 66 6f 72 6d 70 5e 66 36 34 3a 32 78
33 20 5b 20 e2 80 a6 20 5d a2 64 63 62 6f 72 78 1b 74 61 67 20 37 30 31
30 37 20 5b 20 62 69 74 6d 61 70 2c 20 61 72 72 61 79 20 5d 69 74 65 78
74 2d 66 6f 72 6d 6f 5e 75 38 20 5b 20 31 2c 20 6e 75 6c 6c 20 5d a2 64
63 62 6f 72 6d 73 69 6d 70 6c 65 20 76 61 6c 75 65 73 69 74 65 78 74 2d
66 6f 72 6d 6f 74 72 75 65 20 66 61 6c 73 65 20 6e 75 6c 6c a2 64 63 62
6f 72 66 66 6c 6f 61 74 73 69 74 65 78 74 2d 66 6f 72 6d 6c 6e 61 6e 20
69 6e 66 20 2d 69 6e 66 68 64 65 63 6f 64 69 6e 67 a5 63 64 6f 63 da 00
01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61 72 79 79 01 17
54 68 65 20 73 70 65 63 69 66 69 63 61 74 69 6f 6e 20 77 61 73 20 65 6e
63 6f 64 65 72 2d 6f 6e 6c 79 20 75 6e 74 69 6c 20 69 6e 64 65 70 65 6e
64 65 6e 74 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 73 0a 20 20 20
20 20 20 20 20 20 20 20 62 75 69 6c 74 20 64 65 63 6f 64 65 72 73 20 61
6e 79 77 61 79 20 61 6e 64 20 65 61 63 68 20 69 6e 76 65 6e 74 65 64 20
69 74 73 20 6f 77 6e 20 73 74 72 69 63 74 6e 65 73 73 20 72 75 6c 65 73
2e 0a 20 20 20 20 20 20 20 20 20 20 20 41 20 72 65 61 64 65 72 20 74 68
61 74 20 61 63 63 65 70 74 73 20 69 6e 70 75 74 20 61 6e 20 65 6e 63 6f
64 65 72 20 63 6f 75 6c 64 20 6e 65 76 65 72 20 68 61 76 65 20 70 72 6f
64 75 63 65 64 20 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 6e 6f 74 20
69 6e 74 65 72 6f 70 65 72 61 62 6c 65 20 77 69 74 68 20 6f 6e 65 20 74
68 61 74 20 72 65 66 75 73 65 73 20 69 74 2e 63 68 6f 77 79 01 5e 54 68
65 20 73 69 6d 70 6c 65 73 74 20 63 6f 6e 66 6f 72 6d 69 6e 67 20 63 68
65 63 6b 2c 20 61 6e 64 20 74 68 65 20 6f 6e 65 20 6c 65 61 73 74 20 61
62 6c 65 20 74 6f 20 6d 69 73 73 20 61 0a 20 20 20 20 20 20 20 20 20 20
20 72 75 6c 65 3a 20 72 65 2d 65 6e 63 6f 64 65 20 74 68 65 20 64 65 63
6f 64 65 64 20 76 61 6c 75 65 20 61 6e 64 20 63 6f 6d 70 61 72 65 20 74
68 65 20 62 79 74 65 73 20 77 69 74 68 20 74 68 65 0a 20 20 20 20 20 20
20 20 20 20 20 69 6e 70 75 74 2e 20 45 6e 66 6f 72 63 69 6e 67 20 64 65
74 65 72 6d 69 6e 69 73 6d 20 72 75 6c 65 20 62 79 20 72 75 6c 65 20 64
75 72 69 6e 67 20 64 65 63 6f 64 65 20 76 65 72 69 66 69 65 73 0a 20 20
20 20 20 20 20 20 20 20 20 74 68 65 20 63 61 75 73 65 73 3b 20 74 68 69
73 20 76 65 72 69 66 69 65 73 20 74 68 65 20 70 72 6f 70 65 72 74 79 2c
20 61 6e 64 20 63 61 6e 6e 6f 74 20 62 65 20 69 6e 63 6f 6d 70 6c 65 74
65 2e 0a 20 20 20 20 20 20 20 20 20 20 20 52 65 70 6f 72 74 20 74 68 65
20 6f 66 66 73 65 74 20 6f 66 20 74 68 65 20 66 69 72 73 74 20 64 69 66
66 65 72 69 6e 67 20 62 79 74 65 2e 64 6e 6f 74 65 da 00 01 11 d5 82 81
da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61 72 79 78 d0 41 20 64 65 63 6f
64 65 72 20 6d 75 73 74 20 6e 6f 74 20 72 65 70 61 69 72 2e 20 53 6f 72
74 69 6e 67 20 61 6e 20 6f 75 74 2d 6f 66 2d 6f 72 64 65 72 20 6d 61 70
20 6f 72 0a 20 20 20 20 20 20 20 20 20 20 20 20 73 68 6f 72 74 65 6e 69
6e 67 20 61 20 6e 6f 6e 2d 73 68 6f 72 74 65 73 74 20 69 6e 74 65 67 65
72 20 73 69 6c 65 6e 74 6c 79 20 74 75 72 6e 73 20 6e 6f 6e 2d 63 6f 6e
66 6f 72 6d 69 6e 67 0a 20 20 20 20 20 20 20 20 20 20 20 20 69 6e 70 75
74 20 69 6e 74 6f 20 63 6f 6e 66 6f 72 6d 69 6e 67 20 6f 75 74 70 75 74
2c 20 77 68 69 63 68 20 69 73 20 68 6f 77 20 64 69 76 65 72 67 65 6e 63
65 20 73 70 72 65 61 64 73 2e 74 72 65 6a 65 63 74 2d 74 72 61 69 6c 69
6e 67 2d 64 61 74 61 f5 78 1e 72 65 6a 65 63 74 2d 6e 6f 6e 2d 64 65 74
65 72 6d 69 6e 69 73 74 69 63 2d 69 6e 70 75 74 f5 6b 64 65 74 65 72 6d
69 6e 69 73 6d a3 64 6e 6f 74 65 da 00 01 11 d5 82 81 da 00 01 11 d4 6a
63 6f 6d 6d 65 6e 74 61 72 79 78 c4 4d 61 6e 64 61 74 6f 72 79 2c 20 6e
6f 74 20 61 20 6d 6f 64 65 2e 20 53 68 6f 72 74 65 73 74 2d 66 6f 72 6d
20 69 6e 74 65 67 65 72 73 2c 20 64 65 66 69 6e 69 74 65 20 6c 65 6e 67
74 68 73 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 73 68 6f 72 74 65 73
74 2d 66 6f 72 6d 20 66 6c 6f 61 74 73 2c 20 6d 61 70 20 6b 65 79 73 20
73 6f 72 74 65 64 20 62 79 20 74 68 65 69 72 20 65 6e 63 6f 64 65 64 20
62 79 74 65 73 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 41 6e 20 65 6e
63 6f 64 65 72 20 6d 75 73 74 20 72 65 66 75 73 65 20 74 6f 20 65 6d 69
74 20 61 6e 79 74 68 69 6e 67 20 65 6c 73 65 2e 67 70 72 6f 66 69 6c 65
78 30 52 46 43 20 38 39 34 39 20 73 65 63 74 69 6f 6e 20 34 2e 32 20 63
6f 72 65 20 64 65 74 65 72 6d 69 6e 69 73 74 69 63 20 65 6e 63 6f 64 69
6e 67 68 72 65 71 75 69 72 65 64 f5 6f 62 79 74 65 2d 6f 72 64 65 72 2d
6d 61 72 6b a4 63 64 6f 63 da 00 01 11 d5 82 81 da 00 01 11 d4 6a 63 6f
6d 6d 65 6e 74 61 72 79 78 e3 41 20 6c 65 61 64 69 6e 67 20 55 2b 46 45
46 46 20 69 73 20 61 6e 20 65 6e 63 6f 64 69 6e 67 20 6d 61 72 6b 65 72
2c 20 6e 6f 74 20 63 6f 6e 74 65 6e 74 2e 20 49 6d 70 6c 65 6d 65 6e 74
61 74 69 6f 6e 73 0a 20 20 20 20 20 20 20 20 20 20 20 6f 62 73 65 72 76
65 64 20 73 70 6c 69 74 74 69 6e 67 20 6f 6e 20 74 68 69 73 3a 20 74 77
6f 20 72 65 6a 65 63 74 65 64 20 69 74 2c 20 6f 6e 65 20 73 69 6c 65 6e
74 6c 79 20 63 6f 6e 73 75 6d 65 64 0a 20 20 20 20 20 20 20 20 20 20 20
69 74 2c 20 77 68 69 63 68 20 69 73 20 65 78 61 63 74 6c 79 20 74 68 65
20 6b 69 6e 64 20 6f 66 20 67 61 70 20 61 20 73 70 65 63 69 66 69 63 61
74 69 6f 6e 20 65 78 69 73 74 73 20 74 6f 20 63 6c 6f 73 65 2e 64 6e 6f
74 65 da 00 01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61 72
79 78 f4 50 65 72 6d 69 74 74 65 64 20 61 6e 64 20 73 6b 69 70 70 65 64
2c 20 66 6f 6c 6c 6f 77 69 6e 67 20 52 46 43 20 38 32 35 39 27 73 20 74
72 65 61 74 6d 65 6e 74 20 66 6f 72 20 4a 53 4f 4e 2e 0a 20 20 20 20 20
20 20 20 20 20 20 20 52 65 6a 65 63 74 69 6e 67 20 69 73 20 64 65 66 65
6e 73 69 62 6c 65 20 62 75 74 20 68 6f 73 74 69 6c 65 20 e2 80 94 20 65
64 69 74 6f 72 73 20 65 6d 69 74 20 74 68 65 73 65 20 77 69 74 68 6f 75
74 0a 20 20 20 20 20 20 20 20 20 20 20 20 62 65 69 6e 67 20 61 73 6b 65
64 20 e2 80 94 20 61 6e 64 20 74 68 65 20 6d 61 72 6b 65 72 20 63 61 72
72 69 65 73 20 6e 6f 20 64 61 74 61 2c 20 73 6f 20 69 67 6e 6f 72 69 6e
67 20 69 74 20 6c 6f 73 65 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 6e
6f 74 68 69 6e 67 2e 67 69 67 6e 6f 72 65 64 f5 69 70 65 72 6d 69 74 74
65 64 f5 78 1b 74 61 67 2d 6e 75 6d 62 65 72 73 2d 61 72 65 2d 70 72 6f
76 69 73 69 6f 6e 61 6c 78 b1 37 30 31 30 30 e2 80 93 37 30 31 30 36 20
61 72 65 20 70 6c 61 63 65 68 6f 6c 64 65 72 73 2e 20 54 68 65 20 65 76
65 6e 74 75 61 6c 20 73 63 68 65 6d 65 20 69 73 20 68 61 73 68 2d 64 65
72 69 76 65 64 2c 20 73 6f 0a 20 20 20 20 20 20 20 74 68 65 73 65 20 77
69 6c 6c 20 63 68 61 6e 67 65 2e 20 54 68 65 79 20 61 72 65 20 66 69 78
65 64 20 68 65 72 65 20 73 6f 20 74 68 61 74 20 69 6e 64 65 70 65 6e 64
65 6e 74 0a 20 20 20 20 20 20 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f
6e 73 20 63 61 6e 20 61 67 72 65 65 20 74 6f 64 61 79 2e 78 1f 63 6f 6d
6d 65 6e 74 73 2d 6e 65 76 65 72 2d 72 65 61 63 68 2d 74 68 65 2d 62 69
6e 61 72 79 78 cf 43 6f 6d 6d 65 6e 74 73 20 61 72 65 20 6c 65 78 69 63
61 6c 2e 20 45 6e 63 6f 64 69 6e 67 20 61 20 64 6f 63 75 6d 65 6e 74 20
77 69 74 68 20 61 6e 64 20 77 69 74 68 6f 75 74 20 63 6f 6d 6d 65 6e 74
61 72 79 0a 20 20 20 20 20 20 20 6d 75 73 74 20 70 72 6f 64 75 63 65 20
69 64 65 6e 74 69 63 61 6c 20 62 79 74 65 73 2c 20 6f 72 20 63 6f 6e 74
65 6e 74 20 61 64 64 72 65 73 73 69 6e 67 20 62 72 65 61 6b 73 3a 20 61
0a 20 20 20 20 20 20 20 73 69 67 6e 61 74 75 72 65 20 77 6f 75 6c 64 20
62 65 20 69 6e 76 61 6c 69 64 61 74 65 64 20 62 79 20 66 69 78 69 6e 67
20 61 20 74 79 70 6f 20 69 6e 20 61 20 63 6f 6d 6d 65 6e 74 2e 78 22 64
65 63 69 6d 61 6c 73 2d 70 72 65 73 65 72 76 65 2d 77 68 61 74 2d 77 61
73 2d 77 72 69 74 74 65 6e 78 d0 4d 61 6e 74 69 73 73 61 20 61 6e 64 20
65 78 70 6f 6e 65 6e 74 20 61 72 65 20 73 74 6f 72 65 64 20 61 73 20 77
72 69 74 74 65 6e 2c 20 6e 6f 74 20 63 61 6e 6f 6e 69 63 61 6c 69 73 65
64 2e 20 31 2e 30 30 0a 20 20 20 20 20 20 20 61 6e 64 20 31 2e 30 20 61
72 65 20 44 49 46 46 45 52 45 4e 54 20 76 61 6c 75 65 73 2c 20 62 65 63
61 75 73 65 20 74 72 61 69 6c 69 6e 67 20 7a 65 72 6f 73 20 63 61 72 72
79 0a 20 20 20 20 20 20 20 73 69 67 6e 69 66 69 63 61 6e 63 65 20 69 6e
20 6d 6f 6e 65 79 20 61 6e 64 20 6d 65 61 73 75 72 65 6d 65 6e 74 2e 20
31 39 2e 39 39 20 62 65 63 6f 6d 65 73 20 5b 20 2d 32 2c 20 31 39 39 39
20 5d 2e 69 64 65 63 69 73 69 6f 6e 73 da 00 01 11 d5 82 81 da 00 01 11
d4 69 6e 6f 72 6d 61 74 69 76 65 8c a4 62 69 64 da 00 01 11 d4 62 44 31
66 72 75 6c 69 6e 67 78 32 62 79 74 65 20 65 71 75 61 6c 69 74 79 20 6f
66 20 74 68 65 20 63 61 6e 6f 6e 69 63 61 6c 20 65 6e 63 6f 64 69 6e 67
20 6f 66 20 74 68 65 20 6b 65 79 67 73 75 62 6a 65 63 74 da 00 01 11 d4
6c 6b 65 79 2d 65 71 75 61 6c 69 74 79 69 72 61 74 69 6f 6e 61 6c 65 78
34 6e 61 74 69 76 65 20 65 71 75 61 6c 69 74 79 20 64 69 76 65 72 67 65
73 3a 20 2d 30 2e 30 20 3d 3d 20 30 2e 30 20 62 75 74 20 4e 61 4e 20 21
3d 20 4e 61 4e a4 62 69 64 da 00 01 11 d4 62 44 32 66 72 75 6c 69 6e 67
78 30 75 6e 6f 72 64 65 72 65 64 3b 20 63 61 6e 6f 6e 69 63 61 6c 20 73
6f 72 74 73 20 6b 65 79 73 20 62 79 20 65 6e 63 6f 64 65 64 20 62 79 74
65 73 67 73 75 62 6a 65 63 74 da 00 01 11 d4 6c 6d 61 70 2d 6f 72 64 65
72 69 6e 67 69 72 61 74 69 6f 6e 61 6c 65 78 1f 72 65 71 75 69 72 65 64
20 66 6f 72 20 63 6f 6e 74 65 6e 74 20 61 64 64 72 65 73 73 69 6e 67 a4
62 69 64 da 00 01 11 d4 62 44 33 66 72 75 6c 69 6e 67 77 52 46 43 20 38
39 34 39 20 34 2e 32 2c 20 6d 61 6e 64 61 74 6f 72 79 67 73 75 62 6a 65
63 74 da 00 01 11 d4 6b 64 65 74 65 72 6d 69 6e 69 73 6d 69 72 61 74 69
6f 6e 61 6c 65 78 20 68 61 73 68 69 6e 67 20 61 6e 64 20 73 69 67 6e 69
6e 67 20 64 65 70 65 6e 64 20 6f 6e 20 69 74 a4 62 69 64 da 00 01 11 d4
62 44 34 66 72 75 6c 69 6e 67 71 76 61 6c 75 65 73 20 61 72 65 20 66 69
6e 69 74 65 67 73 75 62 6a 65 63 74 da 00 01 11 d4 6a 66 69 6e 69 74 65
6e 65 73 73 69 72 61 74 69 6f 6e 61 6c 65 78 2c 69 6e 64 65 66 69 6e 69
74 65 20 6c 65 6e 67 74 68 20 69 73 20 73 74 72 65 61 6d 69 6e 67 2c 20
6e 6f 74 20 69 6e 66 69 6e 69 74 79 a4 62 69 64 da 00 01 11 d4 62 44 35
66 72 75 6c 69 6e 67 78 22 6e 6f 6e 65 3b 20 74 65 78 74 20 70 72 65 73
65 72 76 65 64 20 62 79 74 65 2d 66 6f 72 2d 62 79 74 65 67 73 75 62 6a
65 63 74 da 00 01 11 d4 6d 6e 6f 72 6d 61 6c 69 73 61 74 69 6f 6e 69 72
61 74 69 6f 6e 61 6c 65 78 20 6e 6f 72 6d 61 6c 69 73 69 6e 67 20 73 69
6c 65 6e 74 6c 79 20 61 6c 74 65 72 73 20 64 61 74 61 a4 62 69 64 da 00
01 11 d4 63 44 31 34 66 72 75 6c 69 6e 67 78 30 63 6f 6e 74 65 6e 74 2c
20 6e 6f 74 20 61 20 74 68 72 65 61 74 20 74 68 65 20 65 6e 63 6f 64 69
6e 67 20 6d 61 79 20 65 64 69 74 20 61 77 61 79 67 73 75 62 6a 65 63 74
da 00 01 11 d4 6d 62 69 64 69 2d 63 6f 6e 74 72 6f 6c 73 69 72 61 74 69
6f 6e 61 6c 65 78 43 74 78 74 2d 30 30 35 3a 20 74 68 65 20 68 61 7a 61
72 64 20 69 73 20 61 20 72 65 6e 64 65 72 65 72 20 6d 69 78 69 6e 67 20
74 72 75 73 74 65 64 20 61 6e 64 20 75 6e 74 72 75 73 74 65 64 20 74 65
78 74 a4 62 69 64 da 00 01 11 d4 62 44 36 66 72 75 6c 69 6e 67 78 22 6c
65 78 69 63 61 6c 20 6f 6e 6c 79 3b 20 73 75 72 76 69 76 65 20 74 65 78
74 20 74 6f 20 74 65 78 74 67 73 75 62 6a 65 63 74 da 00 01 11 d4 68 63
6f 6d 6d 65 6e 74 73 69 72 61 74 69 6f 6e 61 6c 65 78 30 69 6e 20 74 68
65 20 62 79 74 65 73 20 74 68 65 79 20 77 6f 75 6c 64 20 62 72 65 61 6b
20 63 6f 6e 74 65 6e 74 20 61 64 64 72 65 73 73 69 6e 67 a4 62 69 64 da
00 01 11 d4 62 44 37 66 72 75 6c 69 6e 67 78 2e 68 61 73 68 2d 64 65 72
69 76 65 64 20 65 76 65 6e 74 75 61 6c 6c 79 3b 20 66 69 78 65 64 20 6e
75 6d 62 65 72 73 20 66 6f 72 20 6e 6f 77 67 73 75 62 6a 65 63 74 da 00
01 11 d4 69 74 61 67 2d 73 70 61 63 65 69 72 61 74 69 6f 6e 61 6c 65 78
28 64 65 66 65 72 73 20 67 6f 76 65 72 6e 61 6e 63 65 20 77 69 74 68 6f
75 74 20 66 6f 72 65 63 6c 6f 73 69 6e 67 20 69 74 a4 62 69 64 da 00 01
11 d4 63 44 31 30 66 72 75 6c 69 6e 67 78 45 61 6e 79 20 63 61 6e 6f 6e
69 63 61 6c 20 76 61 6c 75 65 20 69 6e 20 74 68 65 20 6b 65 72 6e 65 6c
3b 20 74 65 78 74 20 61 6e 64 20 69 6e 74 65 67 65 72 20 69 6e 20 74 68
65 20 76 30 20 70 72 6f 66 69 6c 65 67 73 75 62 6a 65 63 74 da 00 01 11
d4 69 6b 65 79 2d 74 79 70 65 73 69 72 61 74 69 6f 6e 61 6c 65 78 62 70
72 6f 66 69 6c 65 20 72 65 73 74 72 69 63 74 69 6f 6e 73 20 61 72 65 20
72 65 76 65 72 73 69 62 6c 65 3b 20 6b 65 72 6e 65 6c 20 63 68 61 6e 67
65 73 20 61 72 65 20 6e 6f 74 2e 20 53 65 65 20 61 2d 6b 65 79 2d 69 73
2d 61 6e 73 77 65 72 65 64 2d 61 74 2d 74 68 72 65 65 2d 6c 61 79 65 72
73 a4 62 69 64 da 00 01 11 d4 63 44 31 31 66 72 75 6c 69 6e 67 78 35 75
6e 6d 61 72 6b 65 64 20 6c 69 74 65 72 61 6c 73 20 61 72 65 20 65 78 61
63 74 20 64 65 63 69 6d 61 6c 73 3b 20 66 6c 6f 61 74 73 20 6d 61 72 6b
65 64 20 66 67 73 75 62 6a 65 63 74 da 00 01 11 d4 6f 64 65 63 69 6d 61
6c 2d 64 65 66 61 75 6c 74 69 72 61 74 69 6f 6e 61 6c 65 78 23 74 68 65
20 67 65 6e 65 72 61 6c 20 63 61 73 65 20 73 68 6f 75 6c 64 20 62 65 20
75 6e 6d 61 72 6b 65 64 a4 62 69 64 da 00 01 11 d4 63 44 31 32 66 72 75
6c 69 6e 67 78 4a 61 20 71 75 61 6c 69 66 69 65 72 20 6f 6e 20 74 68 65
20 76 61 6c 75 65 3b 20 74 68 65 20 6b 65 72 6e 65 6c 20 66 69 78 65 73
20 74 68 65 20 73 68 61 70 65 2c 20 61 20 76 6f 63 61 62 75 6c 61 72 79
20 74 68 65 20 73 65 74 67 73 75 62 6a 65 63 74 da 00 01 11 d4 65 75 6e
69 74 73 69 72 61 74 69 6f 6e 61 6c 65 78 44 61 20 75 6e 69 74 20 72 65
67 69 73 74 72 79 20 69 73 20 67 6f 76 65 72 6e 61 6e 63 65 2c 20 61 6e
64 20 67 6f 76 65 72 6e 61 6e 63 65 20 77 61 73 20 64 65 6c 65 74 65 64
20 6f 6e 20 70 75 72 70 6f 73 65 a4 62 69 64 da 00 01 11 d4 63 44 31 33
66 72 75 6c 69 6e 67 78 3a 61 20 77 61 6c 6c 2d 63 6c 6f 63 6b 20 6c 69
74 65 72 61 6c 2c 20 73 68 61 72 69 6e 67 20 74 68 65 20 74 69 6d 65 73
74 61 6d 70 20 74 61 67 2c 20 6e 6f 20 6f 66 66 73 65 74 67 73 75 62 6a
65 63 74 da 00 01 11 d4 6b 74 69 6d 65 2d 6f 66 2d 64 61 79 69 72 61 74
69 6f 6e 61 6c 65 78 43 46 32 32 3a 20 61 20 74 69 6d 65 20 6f 66 20 64
61 79 20 69 73 20 6f 72 64 69 6e 61 72 79 20 64 61 74 61 20 61 6e 64 20
63 6f 75 6c 64 20 6e 6f 74 20 62 65 20 77 72 69 74 74 65 6e 20 61 74 20
61 6c 6c 6a 66 6f 72 6d 61 74 74 69 6e 67 da 00 01 11 d5 82 81 da 00 01
11 d4 69 6e 6f 72 6d 61 74 69 76 65 a7 63 64 6f 63 da 00 01 11 d5 82 81
da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61 72 79 79 01 a5 54 68 65 72 65
20 69 73 20 65 78 61 63 74 6c 79 20 6f 6e 65 20 63 61 6e 6f 6e 69 63 61
6c 20 72 65 6e 64 65 72 69 6e 67 20 61 6e 64 20 6e 6f 20 6f 70 74 69 6f
6e 73 2e 20 54 68 65 20 70 6f 69 6e 74 0a 20 20 20 20 20 20 20 20 20 6f
66 20 61 20 63 61 6e 6f 6e 69 63 61 6c 20 66 6f 72 6d 61 74 74 65 72 20
69 73 20 74 6f 20 65 6e 64 20 74 68 65 20 61 72 67 75 6d 65 6e 74 2c 20
6e 6f 74 20 74 6f 20 68 6f 73 74 20 69 74 2e 0a 20 20 20 20 20 20 20 20
20 46 6f 72 6d 61 74 74 69 6e 67 20 6d 75 73 74 20 62 65 20 69 64 65 6d
70 6f 74 65 6e 74 2e 20 54 68 65 20 72 65 6e 64 65 72 69 6e 67 20 69 73
20 74 68 65 20 6c 61 79 6f 75 74 20 62 6c 6f 63 6b 0a 20 20 20 20 20 20
20 20 20 62 65 6c 6f 77 2c 20 73 65 74 74 6c 65 64 20 32 30 32 36 2d 30
39 2d 30 33 3b 20 74 6f 6f 6c 73 2f 66 6d 74 63 6f 6d 70 61 72 65 20 6d
65 61 73 75 72 65 73 20 65 76 65 72 79 0a 20 20 20 20 20 20 20 20 20 69
6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 27 73 20 74 65 78 74 20 61 67 61
69 6e 73 74 20 74 68 65 20 72 65 66 65 72 65 6e 63 65 27 73 2c 20 64 6f
63 75 6d 65 6e 74 20 62 79 20 64 6f 63 75 6d 65 6e 74 2c 0a 20 20 20 20
20 20 20 20 20 61 6e 64 20 61 67 72 65 65 6d 65 6e 74 20 6f 6e 20 74 68
65 20 77 68 6f 6c 65 20 63 6f 72 70 75 73 20 69 73 20 61 20 66 72 65 65
7a 65 20 67 61 74 65 2e 66 69 6e 6c 69 6e 65 a3 64 72 75 6c 65 78 e0 4d
61 70 73 20 61 6e 64 20 73 65 71 75 65 6e 63 65 73 20 72 65 6e 64 65 72
20 6f 6e 20 6f 6e 65 20 6c 69 6e 65 20 77 68 65 6e 20 65 76 65 72 79 20
76 61 6c 75 65 20 69 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 73
69 6e 67 6c 65 2d 6c 69 6e 65 20 61 6e 64 20 74 68 65 20 72 65 73 75 6c
74 20 66 69 74 73 20 74 68 65 20 62 75 64 67 65 74 3b 20 6f 74 68 65 72
77 69 73 65 20 62 6c 6f 63 6b 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 66 6f 72 6d 2e 20 46 6c 6f 77 20 66 6f 72 6d 20 73 65 70 61 72 61 74
65 73 20 77 69 74 68 20 63 6f 6d 6d 61 73 2c 20 62 6c 6f 63 6b 20 66 6f
72 6d 20 77 69 74 68 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 6e 65
77 6c 69 6e 65 73 2e 66 62 75 64 67 65 74 18 38 70 6d 65 61 73 75 72 65
64 2d 61 67 61 69 6e 73 74 79 04 9e 53 45 54 54 4c 45 44 20 32 30 32 36
2d 30 39 2d 30 32 3a 20 60 74 68 65 20 72 65 73 75 6c 74 60 20 69 73 20
74 68 65 20 63 6f 6d 70 6f 73 69 74 65 27 73 0a 20 20 20 20 20 20 20 20
20 20 20 20 20 20 6f 77 6e 20 69 6e 6c 69 6e 65 20 74 65 78 74 20 e2 80
94 20 60 7b 20 61 20 31 2c 20 62 20 32 20 7d 60 20 6f 72 20 60 5b 20 31
2c 20 32 20 5d 60 2c 20 62 72 61 63 6b 65 74 73 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 20 69 6e 63 6c 75 64 65 64 20 e2 80 94 20 6d 65 61 73
75 72 65 64 20 61 67 61 69 6e 73 74 20 74 68 65 20 62 75 64 67 65 74 20
61 6e 64 20 6e 6f 74 68 69 6e 67 20 65 6c 73 65 2e 20 4e 6f 74 0a 20 20
20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 20 6b 65 79 20 62 65 66 6f
72 65 20 69 74 2c 20 61 6e 64 20 6e 6f 74 20 74 68 65 20 69 6e 64 65 6e
74 61 74 69 6f 6e 20 69 74 20 77 69 6c 6c 20 73 69 74 20 61 74 2e 20 54
68 61 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 73 20 77 68 61
74 20 74 68 65 20 72 65 66 65 72 65 6e 63 65 20 68 61 73 20 64 6f 6e 65
20 73 69 6e 63 65 20 69 74 73 20 66 69 72 73 74 20 66 6f 72 6d 61 74 74
65 72 2c 20 73 6f 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 74 68 69
73 20 70 69 6e 73 20 61 20 63 6f 6e 76 65 6e 74 69 6f 6e 20 72 61 74 68
65 72 20 74 68 61 6e 20 63 68 61 6e 67 69 6e 67 20 6f 6e 65 2c 20 61 6e
64 20 69 74 20 69 73 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20
20 20 72 65 61 64 69 6e 67 20 75 6e 64 65 72 20 77 68 69 63 68 20 61 20
76 61 6c 75 65 27 73 20 72 65 6e 64 65 72 69 6e 67 20 64 6f 65 73 20 6e
6f 74 20 64 65 70 65 6e 64 20 6f 6e 0a 20 20 20 20 20 20 20 20 20 20 20
20 20 20 77 68 65 72 65 20 69 74 20 73 69 74 73 3a 20 72 65 6e 64 65 72
20 6f 6e 63 65 2c 20 72 65 75 73 65 20 65 76 65 72 79 77 68 65 72 65 2c
20 61 6e 64 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 65
78 70 6f 6e 65 6e 74 69 61 6c 20 66 6f 72 6d 61 74 74 65 72 20 74 68 65
20 69 6d 70 6c 65 6d 65 6e 74 65 72 27 73 20 67 75 69 64 65 20 73 70 65
6e 64 73 20 69 74 73 20 6c 65 6e 67 74 68 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 6f 6e 20 63 61 6e 6e 6f 74 20 62 65 20 62 75 69 6c 74 2e
0a 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 53 65 76 65 72 61 6c 20
69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 73 20 6d 65 61 73 75 72 65 64
20 74 68 65 20 6b 65 79 20 6f 72 20 74 68 65 20 69 6e 64 65 6e 74 61 74
69 6f 6e 20 61 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 77 65 6c
6c 2c 20 61 6e 64 20 65 6d 69 74 74 65 64 20 6e 6f 6e 2d 63 61 6e 6f 6e
69 63 61 6c 20 74 65 78 74 20 66 6f 72 20 76 61 6c 75 65 73 20 6e 65 61
72 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 62 75 64 67
65 74 20 74 68 61 74 20 6e 6f 74 68 69 6e 67 20 73 61 77 3a 20 74 68 65
20 62 79 74 65 20 63 68 65 63 6b 73 20 67 6f 20 74 68 72 6f 75 67 68 20
74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 65 6e 63 6f 64 65
72 2c 20 61 6e 64 20 74 68 65 20 6f 72 64 65 72 20 63 68 65 63 6b 20 63
6f 6d 70 61 72 65 73 20 6f 72 64 65 72 2e 20 60 74 6f 6f 6c 73 2f 66 6d
74 63 6f 6d 70 61 72 65 60 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20
6e 6f 77 20 63 6f 6d 70 61 72 65 73 20 66 6f 72 6d 61 74 74 65 72 20 74
65 78 74 20 61 67 61 69 6e 73 74 20 74 68 65 20 72 65 66 65 72 65 6e 63
65 2c 20 64 6f 63 75 6d 65 6e 74 20 62 79 0a 20 20 20 20 20 20 20 20 20
20 20 20 20 20 64 6f 63 75 6d 65 6e 74 2c 20 77 68 69 63 68 20 69 73 20
74 68 65 20 63 68 65 63 6b 20 60 66 6f 72 6d 61 74 2d 69 64 65 6d 70 6f
74 65 6e 74 6c 79 60 20 61 6e 64 20 60 6f 6e 65 0a 20 20 20 20 20 20 20
20 20 20 20 20 20 20 63 61 6e 6f 6e 69 63 61 6c 20 72 65 6e 64 65 72 69
6e 67 60 20 61 6c 77 61 79 73 20 6e 65 65 64 65 64 2e 66 6c 61 79 6f 75
74 da 00 01 11 d5 82 81 da 00 01 11 d4 69 6e 6f 72 6d 61 74 69 76 65 aa
63 64 6f 63 79 02 ec 53 45 54 54 4c 45 44 20 32 30 32 36 2d 30 39 2d 30
33 2c 20 74 68 65 20 66 69 72 73 74 20 66 72 65 65 7a 65 20 67 61 74 65
20 6f 66 20 64 6f 63 73 2f 35 30 3a 20 74 68 65 20 72 75 6c 65 73 0a 20
20 20 20 20 20 20 20 20 20 20 74 68 65 20 72 65 66 65 72 65 6e 63 65 20
66 6f 72 6d 61 74 74 65 72 20 68 61 64 20 61 6c 77 61 79 73 20 66 6f 6c
6c 6f 77 65 64 20 61 6e 64 20 74 68 65 20 73 70 65 63 69 66 69 63 61 74
69 6f 6e 0a 20 20 20 20 20 20 20 20 20 20 20 68 61 64 20 6e 65 76 65 72
20 73 74 61 74 65 64 2c 20 73 6f 20 74 68 61 74 20 65 6c 65 76 65 6e 20
66 6f 72 6d 61 74 74 65 72 73 20 63 61 6e 20 61 67 72 65 65 20 62 79 74
65 20 66 6f 72 20 62 79 74 65 0a 20 20 20 20 20 20 20 20 20 20 20 61 6e
64 20 74 6f 6f 6c 73 2f 66 6d 74 63 6f 6d 70 61 72 65 20 63 61 6e 20 73
61 79 20 73 6f 2e 20 57 68 65 72 65 20 74 68 65 20 72 65 66 65 72 65 6e
63 65 27 73 20 68 61 62 69 74 20 77 61 73 20 61 0a 20 20 20 20 20 20 20
20 20 20 20 62 75 67 20 72 61 74 68 65 72 20 74 68 61 6e 20 61 20 72 75
6c 65 20 e2 80 94 20 61 20 71 75 6f 74 65 64 20 6b 65 79 20 70 61 64 64
65 64 20 74 6f 20 69 74 73 20 75 6e 71 75 6f 74 65 64 20 77 69 64 74 68
2c 0a 20 20 20 20 20 20 20 20 20 20 20 61 20 4a 61 70 61 6e 65 73 65 20
6b 65 79 20 70 61 64 64 65 64 20 62 79 20 69 74 73 20 62 79 74 65 73 2c
20 61 20 70 61 72 61 67 72 61 70 68 20 66 6f 6c 64 65 64 20 69 6e 74 6f
20 6f 6e 65 0a 20 20 20 20 20 20 20 20 20 20 20 6c 69 6e 65 20 6f 66 20
65 73 63 61 70 65 73 20 e2 80 94 20 74 68 65 20 72 75 6c 65 20 62 65 6c
6f 77 20 69 73 20 74 68 65 20 66 69 78 20 61 6e 64 20 74 68 65 20 72 65
66 65 72 65 6e 63 65 20 77 61 73 0a 20 20 20 20 20 20 20 20 20 20 20 63
68 61 6e 67 65 64 20 74 6f 20 6d 61 74 63 68 2e 20 45 76 65 72 79 20 77
69 64 74 68 20 69 73 20 6d 65 61 73 75 72 65 64 20 69 6e 20 55 6e 69 63
6f 64 65 20 63 6f 64 65 20 70 6f 69 6e 74 73 0a 20 20 20 20 20 20 20 20
20 20 20 6f 66 20 74 68 65 20 72 65 6e 64 65 72 65 64 20 74 65 78 74 3a
20 6e 6f 74 20 62 79 74 65 73 2c 20 77 68 69 63 68 20 6f 76 65 72 2d 70
61 64 20 61 20 6e 6f 6e 2d 4c 61 74 69 6e 20 6b 65 79 2c 0a 20 20 20 20
20 20 20 20 20 20 20 61 6e 64 20 6e 6f 74 20 64 69 73 70 6c 61 79 20 63
6f 6c 75 6d 6e 73 2c 20 77 68 69 63 68 20 6e 6f 20 66 6f 72 6d 61 74 20
63 61 6e 20 64 65 66 69 6e 65 2e 65 70 61 69 72 73 84 a2 64 72 75 6c 65
78 39 61 20 70 61 69 72 20 69 73 20 74 68 65 20 72 65 6e 64 65 72 65 64
20 6b 65 79 2c 20 6f 6e 65 20 73 70 61 63 65 2c 20 74 68 65 20 72 65 6e
64 65 72 65 64 20 76 61 6c 75 65 66 64 65 74 61 69 6c 78 89 74 68 65 20
6b 65 79 20 69 73 20 62 61 72 65 20 77 68 65 6e 20 65 76 65 72 79 20 63
68 61 72 61 63 74 65 72 20 69 73 20 61 20 77 6f 72 64 20 63 68 61 72 61
63 74 65 72 20 61 6e 64 20 69 74 20 69 73 20 6e 6f 74 20 61 20 72 65 73
65 72 76 65 64 20 6c 69 74 65 72 61 6c 3b 20 6f 74 68 65 72 77 69 73 65
20 71 75 6f 74 65 64 2e 20 41 6e 20 65 6d 70 74 79 20 6b 65 79 20 72 65
6e 64 65 72 73 20 61 73 20 60 22 22 60 a2 64 72 75 6c 65 78 53 42 41 52
45 20 4d 45 41 4e 53 20 49 54 20 4c 45 58 45 53 20 41 53 20 4f 4e 45 20
57 4f 52 44 2c 20 6e 6f 74 20 6d 65 72 65 6c 79 20 74 68 61 74 20 69 74
73 20 63 68 61 72 61 63 74 65 72 73 20 61 72 65 20 77 6f 72 64 20 63 68
61 72 61 63 74 65 72 73 66 64 65 74 61 69 6c 79 02 1f 65 76 65 72 79 20
63 68 61 72 61 63 74 65 72 20 6f 66 20 60 32 30 32 34 60 2c 20 60 31 2e
35 60 20 61 6e 64 20 60 32 30 32 36 2d 30 38 2d 30 36 60 20 69 73 20 61
20 77 6f 72 64 20 63 68 61 72 61 63 74 65 72 20 61 6e 64 20 6e 6f 6e 65
20 6f 66 20 74 68 65 6d 20 6c 65 78 65 73 20 61 73 20 61 20 77 6f 72 64
20 e2 80 94 20 61 20 6c 65 78 65 72 20 72 65 74 75 72 6e 73 20 61 6e 20
69 6e 74 65 67 65 72 2c 20 61 20 64 65 63 69 6d 61 6c 20 61 6e 64 20 61
20 74 69 6d 65 73 74 61 6d 70 20 e2 80 94 20 73 6f 20 61 6c 6c 20 74 68
72 65 65 20 61 72 65 20 51 55 4f 54 45 44 20 61 73 20 6b 65 79 73 2c 20
69 6e 20 61 20 70 61 69 72 20 61 6e 64 20 69 6e 20 61 20 74 61 62 6c 65
20 68 65 61 64 65 72 20 61 6c 69 6b 65 2e 20 43 6f 72 72 65 63 74 65 64
20 32 30 32 36 2d 30 39 2d 30 33 3a 20 74 68 65 20 72 65 66 65 72 65 6e
63 65 20 68 61 64 20 65 6d 69 74 74 65 64 20 74 68 65 6d 20 62 61 72 65
20 61 6e 64 20 63 6f 75 6c 64 20 6e 6f 74 20 72 65 61 64 20 69 74 73 20
6f 77 6e 20 6f 75 74 70 75 74 20 62 61 63 6b 2c 20 63 6f 73 74 69 6e 67
20 74 68 72 65 65 20 63 6f 72 70 75 73 20 64 6f 63 75 6d 65 6e 74 73 20
74 68 65 69 72 20 72 6f 75 6e 64 20 74 72 69 70 2e 20 54 68 65 20 4a 61
76 61 53 63 72 69 70 74 20 61 6e 64 20 47 6f 20 69 6d 70 6c 65 6d 65 6e
74 61 74 69 6f 6e 73 20 66 6f 75 6e 64 20 74 68 65 20 74 77 6f 20 68 61
6c 76 65 73 20 6f 66 20 69 74 20 69 6e 64 65 70 65 6e 64 65 6e 74 6c 79
2c 20 61 6e 64 20 74 68 65 20 69 6d 70 6c 65 6d 65 6e 74 65 72 27 73 20
67 75 69 64 65 20 68 61 64 20 63 61 72 72 69 65 64 20 74 68 65 20 72 75
6c 65 20 73 69 6e 63 65 20 74 68 65 20 74 65 6e 74 68 20 69 6d 70 6c 65
6d 65 6e 74 61 74 69 6f 6e a2 64 72 75 6c 65 78 5e 6b 65 79 73 20 69 6e
20 61 20 62 6c 6f 63 6b 20 61 72 65 20 70 61 64 64 65 64 20 74 6f 20 61
20 63 6f 6c 75 6d 6e 20 77 68 65 6e 20 74 68 65 20 77 69 64 65 73 74 20
52 45 4e 44 45 52 45 44 20 6b 65 79 20 69 73 20 31 36 20 63 6f 64 65 20
70 6f 69 6e 74 73 20 6f 72 20 66 65 77 65 72 66 64 65 74 61 69 6c 78 84
65 61 63 68 20 72 65 6e 64 65 72 65 64 20 6b 65 79 20 69 73 20 66 6f 6c
6c 6f 77 65 64 20 62 79 20 73 70 61 63 65 73 20 75 70 20 74 6f 20 74 68
65 20 77 69 64 65 73 74 2c 20 74 68 65 6e 20 74 68 65 20 6f 6e 65 20 73
65 70 61 72 61 74 69 6e 67 20 73 70 61 63 65 2e 20 57 68 65 6e 20 74 68
65 20 77 69 64 65 73 74 20 65 78 63 65 65 64 73 20 31 36 20 6e 6f 20 6b
65 79 20 69 73 20 70 61 64 64 65 64 a2 64 72 75 6c 65 78 2a 74 68 65 20
63 6f 6c 75 6d 6e 20 69 73 20 6d 65 61 73 75 72 65 64 20 6f 6e 20 6b 65
79 73 20 61 73 20 72 65 6e 64 65 72 65 64 66 64 65 74 61 69 6c 78 4e 61
20 6b 65 79 20 74 68 61 74 20 6e 65 65 64 73 20 71 75 6f 74 69 6e 67 20
63 6f 75 6e 74 73 20 69 74 73 20 71 75 6f 74 65 73 2c 20 73 6f 20 69 74
20 6c 69 6e 65 73 20 75 70 20 77 69 74 68 20 69 74 73 20 6e 65 69 67 68
62 6f 75 72 73 66 61 72 72 61 79 73 84 a2 64 72 75 6c 65 78 40 61 20 74
79 70 65 64 20 61 72 72 61 79 20 72 65 6e 64 65 72 73 20 69 6e 6c 69 6e
65 20 77 68 65 6e 20 69 74 73 20 77 68 6f 6c 65 20 74 65 78 74 20 66 69
74 73 20 74 68 65 20 62 75 64 67 65 74 66 64 65 74 61 69 6c 78 2f 60 5e
66 36 34 20 5b 20 31 2e 35 2c 20 32 2e 35 20 5d 60 3b 20 61 6e 20 65 6d
70 74 79 20 61 72 72 61 79 20 69 73 20 60 5e 75 38 20 5b 5d 60 a2 64 72
75 6c 65 78 41 61 6e 20 75 6e 73 68 61 70 65 64 20 61 72 72 61 79 20 74
68 61 74 20 64 6f 65 73 20 6e 6f 74 20 66 69 74 20 72 65 6e 64 65 72 73
20 54 45 4e 20 45 4c 45 4d 45 4e 54 53 20 50 45 52 20 4c 49 4e 45 66 64
65 74 61 69 6c 78 80 73 6f 20 74 68 65 20 66 69 72 73 74 20 65 6c 65 6d
65 6e 74 20 6f 66 20 65 76 65 72 79 20 6c 69 6e 65 20 68 61 73 20 61 6e
20 69 6e 64 65 78 20 74 68 61 74 20 69 73 20 61 20 6d 75 6c 74 69 70 6c
65 20 6f 66 20 74 65 6e 2c 20 61 6e 64 20 61 20 63 68 61 6e 67 65 64 20
76 61 6c 75 65 20 6e 65 76 65 72 20 72 65 66 6c 6f 77 73 20 74 68 65 20
6c 69 6e 65 73 20 61 72 6f 75 6e 64 20 69 74 a2 64 72 75 6c 65 78 68 61
20 73 68 61 70 65 64 20 61 72 72 61 79 20 74 68 61 74 20 64 6f 65 73 20
6e 6f 74 20 66 69 74 20 72 65 6e 64 65 72 73 20 6f 6e 65 20 69 6e 6e 65
72 6d 6f 73 74 20 72 6f 77 20 70 65 72 20 6c 69 6e 65 3a 20 61 73 20 6d
61 6e 79 20 65 6c 65 6d 65 6e 74 73 20 61 73 20 74 68 65 20 6c 61 73 74
20 65 78 74 65 6e 74 66 64 65 74 61 69 6c 78 4e 73 6f 20 61 20 6d 61 74
72 69 78 20 72 65 61 64 73 20 61 73 20 61 20 6d 61 74 72 69 78 3b 20 61
20 6c 61 73 74 20 65 78 74 65 6e 74 20 6f 66 20 7a 65 72 6f 20 72 65 6e
64 65 72 73 20 61 73 20 61 6e 20 65 6d 70 74 79 20 61 72 72 61 79 a2 64
72 75 6c 65 78 4b 65 6c 65 6d 65 6e 74 73 20 6f 6e 20 61 20 6c 69 6e 65
20 61 72 65 20 6a 6f 69 6e 65 64 20 62 79 20 60 2c 20 60 2c 20 61 6e 64
20 65 61 63 68 20 6c 69 6e 65 20 73 69 74 73 20 61 74 20 74 68 65 20 6e
65 78 74 20 64 65 70 74 68 66 64 65 74 61 69 6c 78 4a 61 20 6d 69 73 73
69 6e 67 20 70 6f 73 69 74 69 6f 6e 20 69 73 20 60 6e 75 6c 6c 60 3b 20
65 76 65 72 79 20 65 6c 65 6d 65 6e 74 27 73 20 74 65 78 74 20 69 73 20
6f 6e 65 2d 74 65 78 74 2d 70 65 72 2d 66 6c 6f 61 74 27 73 66 74 61 62
6c 65 73 87 a2 64 72 75 6c 65 78 db 61 20 73 65 71 75 65 6e 63 65 20 72
65 6e 64 65 72 73 20 61 73 20 61 20 74 61 62 6c 65 20 77 68 65 6e 20 69
74 20 68 6f 6c 64 73 20 74 77 6f 20 6f 72 20 6d 6f 72 65 20 6d 61 70 73
2c 20 65 76 65 72 79 20 6d 61 70 20 68 61 73 20 74 77 6f 20 6f 72 20 6d
6f 72 65 20 6b 65 79 73 2c 20 65 76 65 72 79 20 6d 61 70 20 68 61 73 20
74 68 65 20 73 61 6d 65 20 6b 65 79 20 73 65 74 2c 20 6e 6f 20 63 65 6c
6c 20 69 73 20 6d 75 6c 74 69 2d 6c 69 6e 65 2c 20 6e 6f 20 63 6f 6d 6d
65 6e 74 20 6c 69 65 73 20 62 65 6e 65 61 74 68 20 74 68 65 20 73 65 71
75 65 6e 63 65 2c 20 61 6e 64 20 74 68 65 20 69 6e 6c 69 6e 65 20 66 6f
72 6d 20 64 6f 65 73 20 6e 6f 74 20 66 69 74 66 64 65 74 61 69 6c 78 73
61 20 68 65 61 64 65 72 20 63 65 6c 6c 20 69 73 20 61 20 6b 65 79 20 61
6e 64 20 69 73 20 71 75 6f 74 65 64 20 77 68 65 72 65 20 61 20 6b 65 79
20 77 6f 75 6c 64 20 62 65 2c 20 73 6f 20 61 20 68 65 61 64 65 72 20 73
75 63 68 20 61 73 20 60 22 77 68 61 74 20 69 74 20 77 6f 75 6c 64 20 64
6f 22 60 20 6b 65 65 70 73 20 69 74 73 20 74 61 62 6c 65 a2 64 72 75 6c
65 78 62 61 20 63 65 6c 6c 20 74 68 61 74 20 72 65 6e 64 65 72 73 20 65
6e 64 69 6e 67 20 69 6e 20 61 6e 20 69 64 65 6e 74 69 66 69 65 72 20 64
69 73 71 75 61 6c 69 66 69 65 73 20 74 68 65 20 74 61 62 6c 65 20 75 6e
6c 65 73 73 20 69 74 20 69 73 20 69 6e 20 74 68 65 20 6c 61 73 74 20 63
6f 6c 75 6d 6e 66 64 65 74 61 69 6c 78 4a 60 40 6e 61 6d 65 60 20 62 65
66 6f 72 65 20 61 20 76 61 6c 75 65 20 61 6e 6e 6f 74 61 74 65 73 20 69
74 2c 20 73 6f 20 73 75 63 68 20 61 20 63 65 6c 6c 20 77 6f 75 6c 64 20
73 77 61 6c 6c 6f 77 20 74 68 65 20 6e 65 78 74 a2 64 72 75 6c 65 78 93
63 6f 6c 75 6d 6e 20 6f 72 64 65 72 20 69 73 20 74 68 65 20 72 65 63 6f
72 64 65 64 20 68 65 61 64 65 72 3b 20 66 61 69 6c 69 6e 67 20 74 68 61
74 20 74 68 65 20 72 65 63 6f 72 64 65 64 20 70 61 69 72 20 6f 72 64 65
72 20 6f 66 20 74 68 65 20 66 69 72 73 74 20 72 6f 77 3b 20 66 61 69 6c
69 6e 67 20 74 68 61 74 20 74 68 65 20 66 61 6c 6c 62 61 63 6b 20 6f 72
64 65 72 20 6f 66 20 74 68 65 20 66 69 72 73 74 20 72 6f 77 27 73 20 6b
65 79 73 66 64 65 74 61 69 6c 78 3e 74 68 65 20 72 65 63 6f 72 64 65 64
20 6f 72 64 65 72 73 20 61 72 65 20 77 68 61 74 20 74 68 65 20 70 61 72
73 65 72 20 6b 65 65 70 73 20 62 65 73 69 64 65 20 74 68 65 20 76 61 6c
75 65 a2 64 72 75 6c 65 78 7f 61 20 63 65 6c 6c 20 69 73 20 61 20 76 61
6c 75 65 20 61 74 20 74 68 65 20 70 61 74 68 20 60 72 6f 77 5b 69 5d 2e
63 6f 6c 75 6d 6e 60 2c 20 73 6f 20 61 20 62 6c 6f 63 6b 20 69 6e 73 69
64 65 20 61 20 63 65 6c 6c 20 72 65 63 6f 72 64 73 20 61 6e 64 20 72 65
6e 64 65 72 73 20 69 74 73 20 70 61 69 72 20 6f 72 64 65 72 20 6c 69 6b
65 20 61 6e 79 20 6f 74 68 65 72 20 62 6c 6f 63 6b 66 64 65 74 61 69 6c
78 85 73 65 74 74 6c 65 64 20 32 30 32 36 2d 30 39 2d 30 33 20 77 68 65
6e 20 74 68 65 20 2e 4e 45 54 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f
6e 20 66 6f 75 6e 64 20 74 68 65 20 72 65 66 65 72 65 6e 63 65 20 6c 6f
73 69 6e 67 20 74 68 61 74 20 6f 72 64 65 72 20 61 6e 64 20 66 61 69 6c
69 6e 67 20 69 74 73 20 6f 77 6e 20 69 64 65 6d 70 6f 74 65 6e 63 65 20
6f 6e 20 6f 6e 65 20 64 6f 63 75 6d 65 6e 74 a2 64 72 75 6c 65 78 a2 41
20 52 4f 57 20 4d 41 50 20 52 45 43 4f 52 44 53 20 4e 4f 20 4f 52 44 45
52 20 4f 46 20 49 54 53 20 4f 57 4e 3a 20 74 68 65 20 68 65 61 64 65 72
20 69 73 20 74 68 65 20 74 61 62 6c 65 27 73 20 72 65 63 6f 72 64 2c 20
73 6f 20 61 20 73 65 71 75 65 6e 63 65 20 6f 66 20 6d 61 70 73 20 74 68
61 74 20 64 6f 65 73 20 4e 4f 54 20 62 65 63 6f 6d 65 20 61 20 74 61 62
6c 65 20 72 65 6e 64 65 72 73 20 65 61 63 68 20 6d 61 70 20 69 6e 20 74
68 65 20 66 61 6c 6c 62 61 63 6b 20 6f 72 64 65 72 66 64 65 74 61 69 6c
79 01 2f 74 68 65 20 74 77 6f 20 70 75 6c 6c 20 6f 70 70 6f 73 69 74 65
20 77 61 79 73 20 61 6e 64 20 62 6f 74 68 20 61 72 65 20 72 65 71 75 69
72 65 64 2e 20 41 6e 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 20 74
68 61 74 20 73 74 6f 72 65 73 20 74 68 65 20 61 75 74 68 6f 72 65 64 20
6f 72 64 65 72 20 6f 6e 20 74 68 65 20 72 6f 77 20 6d 61 70 20 e2 80 94
20 74 68 65 20 6f 62 76 69 6f 75 73 20 70 6c 61 63 65 20 e2 80 94 20 72
65 6e 64 65 72 73 20 61 20 6f 6e 65 2d 72 6f 77 20 6f 72 20 74 61 62 6c
65 2d 72 65 66 75 73 65 64 20 73 65 71 75 65 6e 63 65 20 69 6e 20 68 65
61 64 65 72 20 6f 72 64 65 72 20 69 6e 73 74 65 61 64 20 6f 66 20 61 6c
70 68 61 62 65 74 69 63 61 6c 6c 79 2c 20 77 69 74 68 20 65 76 65 72 79
20 62 79 74 65 20 63 68 65 63 6b 20 73 74 69 6c 6c 20 67 72 65 65 6e 2e
20 46 6f 75 6e 64 20 62 79 20 74 68 65 20 43 20 69 6d 70 6c 65 6d 65 6e
74 61 74 69 6f 6e 2c 20 32 30 32 36 2d 30 39 2d 30 33 a2 64 72 75 6c 65
78 74 61 20 72 65 63 6f 72 64 65 64 20 68 65 61 64 65 72 20 77 69 74 68
20 6e 6f 20 72 6f 77 73 20 72 65 6e 64 65 72 73 20 61 73 20 74 68 65 20
68 65 61 64 65 72 20 72 6f 77 20 61 6c 6f 6e 65 3a 20 60 7c 60 2c 20 74
68 65 6e 20 65 61 63 68 20 68 65 61 64 65 72 20 63 65 6c 6c 20 61 66 74
65 72 20 6f 6e 65 20 73 70 61 63 65 2c 20 75 6e 70 61 64 64 65 64 66 64
65 74 61 69 6c 78 2c 74 68 65 20 74 61 62 6c 65 20 72 75 6c 65 20 61 70
70 6c 69 65 64 20 74 6f 20 61 20 74 61 62 6c 65 20 6f 66 20 6f 6e 65 20
72 6f 77 a2 64 72 75 6c 65 78 79 65 61 63 68 20 72 6f 77 20 69 73 20 60
7c 60 2c 20 74 68 65 6e 20 66 6f 72 20 65 76 65 72 79 20 63 65 6c 6c 20
6f 6e 65 20 73 70 61 63 65 20 61 6e 64 20 74 68 65 20 63 65 6c 6c 20 70
61 64 64 65 64 20 74 6f 20 74 68 65 20 63 6f 6c 75 6d 6e 27 73 20 77 69
64 74 68 3b 20 74 68 65 20 6c 61 73 74 20 63 6f 6c 75 6d 6e 20 69 73 20
6e 65 76 65 72 20 70 61 64 64 65 64 66 64 65 74 61 69 6c 78 54 74 68 65
20 77 69 64 74 68 20 69 73 20 74 68 65 20 77 69 64 65 73 74 20 72 65 6e
64 65 72 65 64 20 63 65 6c 6c 20 69 6e 20 74 68 65 20 63 6f 6c 75 6d 6e
2c 20 68 65 61 64 65 72 20 69 6e 63 6c 75 64 65 64 2c 20 69 6e 20 63 6f
64 65 20 70 6f 69 6e 74 73 67 73 63 61 6c 61 72 73 84 a2 64 72 75 6c 65
78 58 61 6e 20 65 78 61 63 74 20 64 65 63 69 6d 61 6c 20 72 65 6e 64 65
72 73 20 66 72 6f 6d 20 69 74 73 20 6d 61 6e 74 69 73 73 61 20 61 6e 64
20 65 78 70 6f 6e 65 6e 74 2c 20 6e 6f 74 20 66 72 6f 6d 20 74 68 65 20
64 69 67 69 74 73 20 61 73 20 61 75 74 68 6f 72 65 64 66 64 65 74 61 69
6c 79 01 c3 77 69 74 68 20 64 20 74 68 65 20 6d 61 6e 74 69 73 73 61 27
73 20 64 69 67 69 74 20 63 6f 75 6e 74 20 61 6e 64 20 65 20 74 68 65 20
65 78 70 6f 6e 65 6e 74 3a 20 65 20 3d 20 30 20 69 73 20 74 68 65 20 64
69 67 69 74 73 20 74 68 65 6e 20 60 65 30 60 20 28 60 35 65 30 60 2c 20
60 31 30 65 30 60 29 3b 20 65 20 3e 20 30 20 6f 72 20 64 20 2b 20 65 20
3c 3d 20 2d 36 20 69 73 20 73 63 69 65 6e 74 69 66 69 63 20 e2 80 94 20
74 68 65 20 66 69 72 73 74 20 64 69 67 69 74 2c 20 74 68 65 6e 20 61 20
70 6f 69 6e 74 20 61 6e 64 20 74 68 65 20 72 65 6d 61 69 6e 69 6e 67 20
64 69 67 69 74 73 20 77 68 65 6e 20 74 68 65 72 65 20 61 72 65 20 61 6e
79 2c 20 74 68 65 6e 20 60 65 60 20 61 6e 64 20 74 68 65 20 6e 6f 72 6d
61 6c 69 73 65 64 20 65 78 70 6f 6e 65 6e 74 20 77 69 74 68 20 6e 6f 20
70 6c 75 73 20 73 69 67 6e 3a 20 60 36 2e 30 32 32 65 32 33 60 2c 20 60
32 2e 31 65 2d 33 36 60 2c 20 60 31 65 35 60 2c 20 60 31 2e 30 65 36 60
20 66 6f 72 20 6d 61 6e 74 69 73 73 61 20 31 30 3b 20 6f 74 68 65 72 77
69 73 65 20 70 6f 73 69 74 69 6f 6e 61 6c 3a 20 60 30 2e 30 30 30 31 37
60 2c 20 60 30 2e 30 30 30 30 30 31 60 2c 20 60 31 39 37 34 2e 33 37 38
31 60 2e 20 57 68 65 72 65 20 74 68 65 20 61 75 74 68 6f 72 20 70 75 74
20 74 68 65 20 70 6f 69 6e 74 20 69 73 20 6e 6f 74 20 69 6e 66 6f 72 6d
61 74 69 6f 6e 20 74 68 65 20 76 61 6c 75 65 20 63 61 72 72 69 65 73 a2
64 72 75 6c 65 78 42 61 20 66 6c 6f 61 74 20 69 73 20 6f 6e 65 2d 74 65
78 74 2d 70 65 72 2d 66 6c 6f 61 74 27 73 20 64 69 67 69 74 73 20 77 69
74 68 20 61 20 70 6f 69 6e 74 20 61 6e 64 20 74 68 65 20 6d 61 72 6b 65
72 66 64 65 74 61 69 6c 78 26 60 30 2e 35 66 60 2c 20 60 31 65 2b 32 31
66 60 2c 20 60 6e 61 6e 60 2c 20 60 69 6e 66 60 2c 20 60 2d 69 6e 66 60
a2 64 72 75 6c 65 78 4e 62 79 74 65 73 20 72 65 6e 64 65 72 20 61 73 20
60 7e 68 65 78 3a 60 20 61 6e 64 20 6c 6f 77 65 72 63 61 73 65 20 68 65
78 3b 20 61 20 68 61 73 68 20 61 73 20 60 23 61 6c 67 3a 60 20 61 6e 64
20 6c 6f 77 65 72 63 61 73 65 20 68 65 78 66 64 65 74 61 69 6c 78 a1 61
6e 20 69 64 65 6e 74 69 66 69 65 72 20 61 73 20 60 40 6e 61 6d 65 60 2c
20 61 20 72 65 66 65 72 65 6e 63 65 20 61 73 20 60 2d 3e 20 40 6e 61 6d
65 60 2c 20 61 6e 20 65 78 74 65 6e 73 69 6f 6e 20 61 73 20 60 21 6e 61
6d 65 60 20 6f 6e 65 20 73 70 61 63 65 20 61 6e 64 20 69 74 73 20 76 61
6c 75 65 2c 20 61 6e 6e 6f 74 61 74 69 6f 6e 73 20 61 73 20 74 68 65 20
62 61 72 65 20 77 6f 72 64 73 20 74 68 65 6e 20 6f 6e 65 20 73 70 61 63
65 20 74 68 65 6e 20 74 68 65 20 76 61 6c 75 65 a2 64 72 75 6c 65 78 96
61 20 73 79 6d 62 6f 6c 20 72 65 6e 64 65 72 73 20 62 61 72 65 20 61 66
74 65 72 20 69 74 73 20 63 6f 6c 6f 6e 20 77 68 65 6e 20 69 74 73 20 6e
61 6d 65 20 69 73 20 61 20 6e 6f 6e 2d 65 6d 70 74 79 20 72 75 6e 20 6f
66 20 77 6f 72 64 20 63 68 61 72 61 63 74 65 72 73 20 61 6e 64 20 6e 6f
74 20 61 20 72 65 73 65 72 76 65 64 20 6c 69 74 65 72 61 6c 2c 20 6f 74
68 65 72 77 69 73 65 20 71 75 6f 74 65 64 20 61 66 74 65 72 20 74 68 65
20 63 6f 6c 6f 6e 66 64 65 74 61 69 6c 78 a2 74 68 65 20 73 69 67 69 6c
2d 70 61 79 6c 6f 61 64 20 70 72 65 64 69 63 61 74 65 2c 20 77 68 69 63
68 20 69 73 20 77 69 64 65 72 20 74 68 61 6e 20 61 20 62 61 72 65 20 6b
65 79 27 73 3a 20 60 3a 31 60 2c 20 60 3a 33 64 60 2c 20 60 3a 2d 31 60
2c 20 60 3a 61 2e 62 60 2c 20 60 3a 32 30 32 36 2d 30 38 2d 30 36 60 20
61 72 65 20 62 61 72 65 3b 20 60 3a 22 6e 75 6c 6c 22 60 2c 20 60 3a 22
61 20 62 22 60 2c 20 60 3a 22 61 3a 62 22 60 2c 20 60 3a 22 22 60 20 61
72 65 20 71 75 6f 74 65 64 67 73 74 72 69 6e 67 73 83 a2 64 72 75 6c 65
78 47 61 20 73 74 72 69 6e 67 20 69 73 20 71 75 6f 74 65 64 20 77 69 74
68 20 65 78 61 63 74 6c 79 20 66 6f 75 72 20 65 73 63 61 70 65 73 3a 20
60 5c 74 60 2c 20 60 5c 72 60 2c 20 60 5c 22 60 20 61 6e 64 20 60 5c 5c
60 66 64 65 74 61 69 6c 78 49 65 76 65 72 79 20 6f 74 68 65 72 20 63 68
61 72 61 63 74 65 72 2c 20 61 20 63 6f 6e 74 72 6f 6c 20 63 68 61 72 61
63 74 65 72 20 69 6e 63 6c 75 64 65 64 2c 20 69 73 20 77 72 69 74 74 65
6e 20 61 73 20 69 74 73 65 6c 66 a2 64 72 75 6c 65 78 28 61 20 4e 45 57
4c 49 4e 45 20 49 4e 53 49 44 45 20 41 20 53 54 52 49 4e 47 20 49 53 20
57 52 49 54 54 45 4e 20 52 41 57 66 64 65 74 61 69 6c 78 e8 60 5c 6e 60
20 61 6e 64 20 61 20 72 61 77 20 6e 65 77 6c 69 6e 65 20 72 65 61 64 20
61 73 20 74 68 65 20 73 61 6d 65 20 76 61 6c 75 65 3b 20 74 68 65 20 63
61 6e 6f 6e 69 63 61 6c 20 74 65 78 74 20 77 72 69 74 65 73 20 74 68 65
20 6e 65 77 6c 69 6e 65 2c 20 73 6f 20 61 20 70 61 72 61 67 72 61 70 68
20 73 74 61 79 73 20 61 20 70 61 72 61 67 72 61 70 68 2e 20 54 68 65 20
63 68 61 72 61 63 74 65 72 73 20 61 66 74 65 72 20 74 68 65 20 6e 65 77
6c 69 6e 65 20 61 72 65 20 70 61 72 74 20 6f 66 20 74 68 65 20 76 61 6c
75 65 20 61 6e 64 20 61 72 65 20 77 72 69 74 74 65 6e 20 65 78 61 63 74
6c 79 2c 20 73 6f 20 61 20 73 74 72 69 6e 67 20 69 73 20 6e 65 76 65 72
20 72 65 2d 69 6e 64 65 6e 74 65 64 a2 64 72 75 6c 65 78 33 61 20 73 74
72 69 6e 67 20 63 6f 6e 74 61 69 6e 69 6e 67 20 61 20 6e 65 77 6c 69 6e
65 20 69 73 20 61 20 6d 75 6c 74 69 2d 6c 69 6e 65 20 76 61 6c 75 65 66
64 65 74 61 69 6c 78 b9 69 74 20 68 61 73 20 6e 6f 20 69 6e 6c 69 6e 65
20 66 6f 72 6d 2c 20 73 6f 20 61 20 62 6c 6f 63 6b 20 68 6f 6c 64 69 6e
67 20 6f 6e 65 20 6e 65 76 65 72 20 63 6f 6c 6c 61 70 73 65 73 20 74 6f
20 66 6c 6f 77 20 66 6f 72 6d 2c 20 61 20 73 65 71 75 65 6e 63 65 20 68
6f 6c 64 69 6e 67 20 6f 6e 65 20 6e 65 76 65 72 20 62 65 63 6f 6d 65 73
20 61 20 74 61 62 6c 65 2c 20 61 6e 64 20 69 74 20 73 6f 72 74 73 20 77
69 74 68 20 74 68 65 20 6d 75 6c 74 69 2d 6c 69 6e 65 20 67 72 6f 75 70
20 75 6e 64 65 72 20 74 68 65 20 66 61 6c 6c 62 61 63 6b 20 6f 72 64 65
72 68 63 6f 6d 6d 65 6e 74 73 85 a2 64 72 75 6c 65 78 66 61 20 63 6f 6d
6d 65 6e 74 20 72 65 6e 64 65 72 73 20 61 73 20 60 2d 2d 60 2c 20 6f 6e
65 20 73 70 61 63 65 2c 20 69 74 73 20 74 65 78 74 2c 20 6f 6e 20 69 74
73 20 6f 77 6e 20 6c 69 6e 65 20 61 74 20 74 68 65 20 69 6e 64 65 6e 74
61 74 69 6f 6e 20 6f 66 20 77 68 61 74 20 69 74 20 70 72 65 63 65 64 65
73 66 64 65 74 61 69 6c 78 95 74 68 65 20 74 65 78 74 20 69 73 20 77 68
61 74 20 66 6f 6c 6c 6f 77 65 64 20 74 68 65 20 64 61 73 68 65 73 20 77
68 65 6e 20 72 65 61 64 2c 20 77 69 74 68 20 73 75 72 72 6f 75 6e 64 69
6e 67 20 77 68 69 74 65 73 70 61 63 65 20 74 72 69 6d 6d 65 64 3b 20 61
6e 20 65 6d 70 74 79 20 63 6f 6d 6d 65 6e 74 20 72 65 6e 64 65 72 73 20
61 73 20 74 68 65 20 62 61 72 65 20 60 2d 2d 60 20 77 69 74 68 20 6e 6f
20 74 72 61 69 6c 69 6e 67 20 73 70 61 63 65 a2 64 72 75 6c 65 78 8a 61
20 70 61 69 72 27 73 20 63 6f 6d 6d 65 6e 74 73 20 70 72 65 63 65 64 65
20 74 68 65 20 70 61 69 72 3b 20 61 6e 20 65 6c 65 6d 65 6e 74 27 73 20
70 72 65 63 65 64 65 20 74 68 65 20 65 6c 65 6d 65 6e 74 3b 20 61 20 62
6c 6f 63 6b 27 73 20 74 61 69 6c 20 63 6f 6d 6d 65 6e 74 73 20 66 6f 6c
6c 6f 77 20 69 74 73 20 6c 61 73 74 20 70 61 69 72 20 61 74 20 74 68 65
20 73 61 6d 65 20 69 6e 64 65 6e 74 61 74 69 6f 6e 66 64 65 74 61 69 6c
79 01 99 61 20 74 72 61 69 6c 69 6e 67 20 63 6f 6d 6d 65 6e 74 20 72 65
61 64 20 66 72 6f 6d 20 74 68 65 20 73 61 6d 65 20 6c 69 6e 65 20 61 73
20 61 20 76 61 6c 75 65 20 62 65 63 6f 6d 65 73 20 61 20 70 72 65 63 65
64 69 6e 67 20 63 6f 6d 6d 65 6e 74 20 6f 66 20 74 68 61 74 20 70 61 69
72 20 e2 80 94 20 62 75 74 20 6f 6e 6c 79 20 57 49 54 48 20 4e 4f 20 53
45 50 41 52 41 54 4f 52 20 42 45 54 57 45 45 4e 2e 20 41 20 63 6f 6d 6d
61 20 68 61 73 20 61 6c 72 65 61 64 79 20 65 6e 64 65 64 20 74 68 65 20
70 61 69 72 2c 20 73 6f 20 61 20 63 6f 6d 6d 65 6e 74 20 61 66 74 65 72
20 6f 6e 65 20 70 72 65 63 65 64 65 73 20 77 68 61 74 65 76 65 72 20 63
6f 6d 65 73 20 6e 65 78 74 3b 20 60 70 20 31 2c 20 20 2d 2d 20 6e 6f 74
65 60 20 70 75 74 73 20 74 68 65 20 6e 6f 74 65 20 61 62 6f 76 65 20 60
71 60 2c 20 61 6e 64 20 60 72 20 31 20 20 2d 2d 20 6e 6f 74 65 60 20 70
75 74 73 20 69 74 20 61 62 6f 76 65 20 60 72 60 2e 20 53 74 61 74 65 64
20 32 30 32 36 2d 30 39 2d 30 33 2c 20 66 6f 75 6e 64 20 62 79 20 74 68
65 20 50 79 74 68 6f 6e 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 2c
20 61 6e 64 20 74 68 65 20 74 77 6f 20 72 65 61 64 69 6e 67 73 20 64 69
66 66 65 72 20 6f 6e 20 74 77 6f 20 63 6f 72 70 75 73 20 64 6f 63 75 6d
65 6e 74 73 a2 64 72 75 6c 65 78 a5 61 20 63 6f 6d 6d 65 6e 74 20 61 66
74 65 72 20 74 68 65 20 6c 61 73 74 20 65 6c 65 6d 65 6e 74 20 6f 66 20
61 20 73 65 71 75 65 6e 63 65 2c 20 6f 72 20 74 68 65 20 6c 61 73 74 20
72 6f 77 20 6f 66 20 61 20 74 61 62 6c 65 2c 20 62 65 6c 6f 6e 67 73 20
74 6f 20 74 68 65 20 45 4e 43 4c 4f 53 49 4e 47 20 62 6c 6f 63 6b 3a 20
69 74 20 70 72 65 63 65 64 65 73 20 74 68 65 20 6e 65 78 74 20 70 61 69
72 2c 20 6f 72 20 69 73 20 74 68 65 20 62 6c 6f 63 6b 27 73 20 74 61 69
6c 20 63 6f 6d 6d 65 6e 74 66 64 65 74 61 69 6c 78 53 73 6f 20 74 68 65
20 73 65 71 75 65 6e 63 65 20 69 74 73 65 6c 66 20 63 61 72 72 69 65 73
20 6e 6f 20 63 6f 6d 6d 65 6e 74 20 61 6e 64 20 6d 61 79 20 73 74 69 6c
6c 20 72 65 6e 64 65 72 20 69 6e 6c 69 6e 65 20 6f 72 20 61 73 20 61 20
74 61 62 6c 65 a2 64 72 75 6c 65 78 6c 61 20 63 6f 6d 6d 65 6e 74 20 6f
6e 20 74 68 65 20 53 41 4d 45 20 4c 49 4e 45 20 61 73 20 61 20 74 61 62
6c 65 20 72 6f 77 20 62 69 6e 64 73 20 74 6f 20 74 68 61 74 20 72 6f 77
20 61 73 20 61 6e 20 65 6c 65 6d 65 6e 74 20 63 6f 6d 6d 65 6e 74 2c 20
61 6e 64 20 73 6f 20 64 65 63 6c 69 6e 65 73 20 74 68 65 20 74 61 62 6c
65 66 64 65 74 61 69 6c 78 ce 6f 6e 6c 79 20 61 20 63 6f 6d 6d 65 6e 74
20 6f 6e 20 69 74 73 20 6f 77 6e 20 6c 69 6e 65 20 61 66 74 65 72 20 74
68 65 20 6c 61 73 74 20 72 6f 77 20 66 6c 6f 77 73 20 6f 75 74 20 74 6f
20 74 68 65 20 65 6e 63 6c 6f 73 69 6e 67 20 62 6c 6f 63 6b 2e 20 41 20
72 6f 77 20 69 73 20 6e 6f 74 20 61 20 70 61 69 72 2c 20 73 6f 20 74 68
65 20 74 77 6f 20 72 75 6c 65 73 20 61 62 6f 76 65 20 6f 76 65 72 6c 61
70 70 65 64 20 6f 6e 20 69 74 20 75 6e 74 69 6c 20 32 30 32 36 2d 30 39
2d 30 33 2c 20 77 68 65 6e 20 74 68 65 20 52 75 73 74 20 69 6d 70 6c 65
6d 65 6e 74 61 74 69 6f 6e 20 6e 61 6d 65 64 20 74 68 65 20 63 61 73 65
a2 64 72 75 6c 65 78 61 61 20 62 6c 6f 63 6b 20 6f 72 20 73 65 71 75 65
6e 63 65 20 77 69 74 68 20 61 6e 79 20 63 6f 6d 6d 65 6e 74 20 42 45 4e
45 41 54 48 20 69 74 20 6e 65 76 65 72 20 72 65 6e 64 65 72 73 20 69 6e
6c 69 6e 65 20 61 6e 64 20 6e 65 76 65 72 20 72 65 6e 64 65 72 73 20 61
73 20 61 20 74 61 62 6c 65 66 64 65 74 61 69 6c 79 01 63 62 65 6e 65 61
74 68 20 6d 65 61 6e 73 20 61 74 20 61 20 70 61 74 68 20 73 74 72 69 63
74 6c 79 20 75 6e 64 65 72 20 74 68 65 20 63 6f 6d 70 6f 73 69 74 65 27
73 20 6f 77 6e 20 e2 80 94 20 61 20 70 61 69 72 20 69 6e 73 69 64 65 20
69 74 2c 20 61 6e 20 65 6c 65 6d 65 6e 74 20 6f 66 20 69 74 2e 20 41 20
63 6f 6d 6d 65 6e 74 20 41 54 20 74 68 65 20 63 6f 6d 70 6f 73 69 74 65
27 73 20 6f 77 6e 20 70 61 74 68 20 62 65 6c 6f 6e 67 73 20 74 6f 20 74
68 65 20 70 61 69 72 20 74 68 61 74 20 68 6f 6c 64 73 20 69 74 20 61 6e
64 20 72 65 6e 64 65 72 73 20 61 62 6f 76 65 20 74 68 61 74 20 70 61 69
72 2c 20 73 6f 20 60 61 20 7b 20 63 20 32 20 7d 60 20 77 69 74 68 20 61
20 6e 6f 74 65 20 73 74 61 79 73 20 69 6e 6c 69 6e 65 2e 20 52 65 61 64
69 6e 67 20 62 65 6e 65 61 74 68 20 61 73 20 60 61 74 20 6f 72 20 62 65
6e 65 61 74 68 60 20 74 75 72 6e 73 20 66 6f 75 72 20 63 6f 72 70 75 73
20 64 6f 63 75 6d 65 6e 74 73 20 69 6e 74 6f 20 62 6c 6f 63 6b 73 3b 20
74 68 65 20 77 6f 72 64 20 63 61 72 72 69 65 73 20 74 68 65 20 77 68 6f
6c 65 20 64 69 73 74 69 6e 63 74 69 6f 6e 68 64 6f 63 75 6d 65 6e 74 84
a2 64 72 75 6c 65 78 33 74 68 65 20 68 65 61 64 65 72 20 6c 69 6e 65 2c
20 74 68 65 6e 20 6f 6e 65 20 62 6c 61 6e 6b 20 6c 69 6e 65 2c 20 74 68
65 6e 20 74 68 65 20 72 6f 6f 74 66 64 65 74 61 69 6c 78 a4 60 25 75 6e
69 6d 73 67 20 30 20 6c 61 62 65 6c 60 20 6f 72 20 60 25 75 6e 69 6d 73
67 20 30 60 3b 20 61 20 68 65 61 64 65 72 6c 65 73 73 20 64 6f 63 75 6d
65 6e 74 20 68 61 73 20 6e 65 69 74 68 65 72 20 74 68 65 20 6c 69 6e 65
20 6e 6f 72 20 74 68 65 20 62 6c 61 6e 6b 2e 20 54 68 65 20 62 6c 61 6e
6b 20 6c 69 6e 65 20 61 66 74 65 72 20 74 68 65 20 68 65 61 64 65 72 20
69 73 20 74 68 65 20 6f 6e 6c 79 20 62 6c 61 6e 6b 20 6c 69 6e 65 20 69
6e 20 63 61 6e 6f 6e 69 63 61 6c 20 74 65 78 74 a2 64 72 75 6c 65 78 83
74 68 65 20 68 65 61 64 65 72 20 69 73 20 54 48 52 45 45 20 46 49 45 4c
44 53 2c 20 6e 6f 74 20 61 20 6c 69 6e 65 20 6f 66 20 74 65 78 74 3a 20
74 68 65 20 73 69 67 69 6c 20 61 6e 64 20 76 65 72 73 69 6f 6e 2c 20 61
6e 64 20 74 68 65 20 6c 61 62 65 6c 20 77 68 65 6e 20 74 68 65 72 65 20
69 73 20 6f 6e 65 2c 20 65 61 63 68 20 73 65 70 61 72 61 74 65 64 20 62
79 20 4f 4e 45 20 73 70 61 63 65 66 64 65 74 61 69 6c 78 c9 61 20 64 6f
63 75 6d 65 6e 74 20 77 68 6f 73 65 20 68 65 61 64 65 72 20 77 61 73 20
61 75 74 68 6f 72 65 64 20 77 69 74 68 20 74 77 6f 20 73 70 61 63 65 73
20 72 65 6e 64 65 72 73 20 77 69 74 68 20 6f 6e 65 2e 20 53 74 61 74 65
64 20 32 30 32 36 2d 30 39 2d 30 33 20 61 66 74 65 72 20 74 68 65 20 4a
75 6c 69 61 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 20 66 6f 75 6e
64 20 63 6f 72 70 75 73 2f 63 61 73 65 73 2e 75 6d 73 67 20 64 6f 69 6e
67 20 65 78 61 63 74 6c 79 20 74 68 61 74 2c 20 61 6e 64 20 6e 6f 74 68
69 6e 67 20 73 61 79 69 6e 67 20 77 68 65 74 68 65 72 20 74 6f 20 6b 65
65 70 20 69 74 a2 64 72 75 6c 65 78 51 61 20 72 6f 6f 74 20 6d 61 70 20
72 65 6e 64 65 72 73 20 61 73 20 70 61 69 72 73 20 61 74 20 64 65 70 74
68 20 7a 65 72 6f 3b 20 61 6e 79 20 6f 74 68 65 72 20 72 6f 6f 74 20 76
61 6c 75 65 20 72 65 6e 64 65 72 73 20 61 73 20 69 74 73 65 6c 66 66 64
65 74 61 69 6c 78 34 74 68 65 20 63 6c 6f 73 69 6e 67 20 6e 65 77 6c 69
6e 65 20 6f 66 20 74 68 65 20 6c 61 73 74 20 6c 69 6e 65 20 65 6e 64 73
20 74 68 65 20 6f 75 74 70 75 74 a2 64 72 75 6c 65 78 23 69 6e 64 65 6e
74 61 74 69 6f 6e 20 69 73 20 74 77 6f 20 73 70 61 63 65 73 20 70 65 72
20 64 65 70 74 68 66 64 65 74 61 69 6c 78 7a 61 20 70 61 69 72 27 73 20
76 61 6c 75 65 20 74 68 61 74 20 6f 70 65 6e 73 20 61 20 62 6c 6f 63 6b
20 70 75 74 73 20 60 7b 60 20 6f 72 20 60 5b 60 20 6f 6e 20 74 68 65 20
70 61 69 72 27 73 20 6c 69 6e 65 20 61 6e 64 20 74 68 65 20 63 6c 6f 73
69 6e 67 20 62 72 61 63 6b 65 74 20 61 74 20 74 68 65 20 70 61 69 72 27
73 20 6f 77 6e 20 69 6e 64 65 6e 74 61 74 69 6f 6e 6e 66 61 6c 6c 62 61
63 6b 2d 6f 72 64 65 72 79 01 16 57 68 65 72 65 20 6e 6f 20 6f 72 64 65
72 20 69 73 20 72 65 63 6f 72 64 65 64 20 e2 80 94 20 61 20 64 6f 63 75
6d 65 6e 74 20 72 65 61 64 20 66 72 6f 6d 20 62 79 74 65 73 2c 0a 20 20
20 20 20 20 20 20 20 6f 72 20 62 75 69 6c 74 20 72 61 74 68 65 72 20 74
68 61 6e 20 70 61 72 73 65 64 20 e2 80 94 20 61 20 62 6c 6f 63 6b 27 73
20 70 61 69 72 73 20 72 65 6e 64 65 72 20 73 69 6e 67 6c 65 2d 6c 69 6e
65 0a 20 20 20 20 20 20 20 20 20 76 61 6c 75 65 73 20 66 69 72 73 74 2c
20 74 68 65 6e 20 6d 75 6c 74 69 2d 6c 69 6e 65 2c 20 65 61 63 68 20 67
72 6f 75 70 20 61 73 63 65 6e 64 69 6e 67 20 62 79 20 74 68 65 20 6b 65
79 27 73 0a 20 20 20 20 20 20 20 20 20 63 6f 64 65 20 70 6f 69 6e 74 73
2e 20 53 69 6e 67 6c 65 2d 6c 69 6e 65 20 6d 65 61 6e 73 20 74 68 65 20
76 61 6c 75 65 20 68 61 73 20 61 6e 20 69 6e 6c 69 6e 65 20 66 6f 72 6d
2e 70 69 6e 6c 69 6e 65 2d 61 6e 64 2d 62 6c 6f 63 6b 83 a2 64 72 75 6c
65 78 7b 61 20 6d 61 70 20 6f 72 20 73 65 71 75 65 6e 63 65 20 72 65 6e
64 65 72 73 20 69 6e 6c 69 6e 65 20 77 68 65 6e 20 65 76 65 72 79 20 76
61 6c 75 65 20 68 61 73 20 61 6e 20 69 6e 6c 69 6e 65 20 66 6f 72 6d 20
61 6e 64 20 74 68 65 20 63 6f 6d 70 6f 73 69 74 65 27 73 20 6f 77 6e 20
74 65 78 74 20 69 73 20 61 74 20 6d 6f 73 74 20 35 36 20 63 6f 64 65 20
70 6f 69 6e 74 73 66 64 65 74 61 69 6c 78 88 60 7b 20 61 20 31 2c 20 62
20 32 20 7d 60 2c 20 60 5b 20 31 2c 20 32 20 5d 60 3a 20 6f 6e 65 20 73
70 61 63 65 20 69 6e 73 69 64 65 20 65 61 63 68 20 62 72 61 63 6b 65 74
2c 20 60 2c 20 60 20 62 65 74 77 65 65 6e 20 6d 65 6d 62 65 72 73 3b 20
61 20 70 61 69 72 20 69 6e 73 69 64 65 20 69 73 20 6b 65 79 2c 20 6f 6e
65 20 73 70 61 63 65 2c 20 76 61 6c 75 65 2c 20 77 69 74 68 20 6e 6f 20
70 61 64 64 69 6e 67 a2 64 72 75 6c 65 78 4d 6f 74 68 65 72 77 69 73 65
20 61 20 6d 61 70 20 72 65 6e 64 65 72 73 20 61 73 20 60 7b 60 2c 20 69
74 73 20 70 61 69 72 73 20 6f 6e 65 20 70 65 72 20 6c 69 6e 65 20 61 74
20 74 68 65 20 6e 65 78 74 20 64 65 70 74 68 2c 20 60 7d 60 66 64 65 74
61 69 6c 78 60 61 6e 64 20 61 20 73 65 71 75 65 6e 63 65 20 61 73 20 60
5b 60 2c 20 69 74 73 20 65 6c 65 6d 65 6e 74 73 20 6f 6e 65 20 70 65 72
20 6c 69 6e 65 2c 20 60 5d 60 2c 20 6f 72 20 61 73 20 61 20 74 61 62 6c
65 20 77 68 65 6e 20 74 68 65 20 74 61 62 6c 65 73 20 72 75 6c 65 73 20
61 6c 6c 6f 77 a2 64 72 75 6c 65 78 2f 61 6e 20 65 6d 70 74 79 20 6d 61
70 20 69 73 20 60 7b 7d 60 20 61 6e 64 20 61 6e 20 65 6d 70 74 79 20 73
65 71 75 65 6e 63 65 20 60 5b 5d 60 66 64 65 74 61 69 6c 78 71 65 78 63
65 70 74 20 61 20 73 65 71 75 65 6e 63 65 20 74 68 61 74 20 63 61 72 72
69 65 73 20 61 20 72 65 63 6f 72 64 65 64 20 68 65 61 64 65 72 20 61 6e
64 20 6e 6f 20 72 6f 77 73 2c 20 77 68 69 63 68 20 72 65 6e 64 65 72 73
20 61 73 20 74 68 65 20 68 65 61 64 65 72 20 72 6f 77 20 61 6c 6f 6e 65
20 69 6e 20 62 6c 6f 63 6b 20 66 6f 72 6d 66 74 61 62 6c 65 73 a2 64 6e
6f 74 65 da 00 01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61
72 79 78 81 54 68 65 20 66 69 6e 61 6c 20 63 6f 6c 75 6d 6e 20 69 73 20
6e 6f 74 20 70 61 64 64 65 64 3a 20 74 72 61 69 6c 69 6e 67 20 77 68 69
74 65 73 70 61 63 65 20 62 72 65 61 6b 73 20 64 69 66 66 73 0a 20 20 20
20 20 20 20 20 20 20 20 20 61 6e 64 20 65 64 69 74 6f 72 73 20 73 74 72
69 70 20 69 74 2c 20 77 68 69 63 68 20 77 6f 75 6c 64 20 62 72 65 61 6b
20 69 64 65 6d 70 6f 74 65 6e 63 65 2e 64 72 75 6c 65 78 cd 41 20 73 65
71 75 65 6e 63 65 20 72 65 6e 64 65 72 73 20 61 73 20 61 20 74 61 62 6c
65 20 77 68 65 6e 20 69 74 20 68 6f 6c 64 73 20 74 77 6f 20 6f 72 20 6d
6f 72 65 20 6d 61 70 73 20 77 69 74 68 0a 20 20 20 20 20 20 20 20 20 20
20 20 69 64 65 6e 74 69 63 61 6c 20 6b 65 79 20 73 65 74 73 2c 20 6e 6f
20 6d 75 6c 74 69 2d 6c 69 6e 65 20 63 65 6c 6c 73 2c 20 68 65 61 64 65
72 20 6e 61 6d 65 73 20 6e 65 65 64 69 6e 67 20 6e 6f 0a 20 20 20 20 20
20 20 20 20 20 20 20 71 75 6f 74 69 6e 67 2c 20 61 6e 64 20 74 68 65 20
69 6e 6c 69 6e 65 20 66 6f 72 6d 20 64 6f 65 73 20 6e 6f 74 20 61 6c 72
65 61 64 79 20 66 69 74 2e 68 6f 72 64 65 72 69 6e 67 a6 64 6e 6f 74 65
da 00 01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61 72 79 78
c0 4e 6f 6e 65 20 6f 66 20 74 68 69 73 20 6d 61 74 63 68 65 73 20 74 68
65 20 62 69 6e 61 72 79 20 6b 65 79 20 6f 72 64 65 72 20 6f 66 20 44 32
2c 20 61 6e 64 20 69 74 20 64 6f 65 73 20 6e 6f 74 0a 20 20 20 20 20 20
20 20 20 20 20 20 68 61 76 65 20 74 6f 3a 20 74 68 65 20 62 69 6e 61 72
79 20 73 6f 72 74 73 20 69 6e 64 65 70 65 6e 64 65 6e 74 6c 79 2c 20 73
6f 20 74 65 78 74 20 6f 72 64 65 72 20 61 66 66 65 63 74 73 20 6e 6f 0a
20 20 20 20 20 20 20 20 20 20 20 20 62 79 74 65 73 2e 20 49 74 20 6e 65
65 64 20 6f 6e 6c 79 20 62 65 20 64 65 74 65 72 6d 69 6e 69 73 74 69 63
2e 64 72 75 6c 65 78 a4 54 68 65 20 61 75 74 68 6f 72 65 64 20 6f 72 64
65 72 20 77 68 65 72 65 20 74 68 65 20 64 6f 63 75 6d 65 6e 74 20 72 65
63 6f 72 64 73 20 6f 6e 65 2c 20 61 6e 64 20 6f 74 68 65 72 77 69 73 65
0a 20 20 20 20 20 20 20 20 20 20 20 20 73 69 6e 67 6c 65 2d 6c 69 6e 65
20 76 61 6c 75 65 73 20 66 69 72 73 74 2c 20 6d 75 6c 74 69 2d 6c 69 6e
65 20 61 66 74 65 72 2c 20 61 6c 70 68 61 62 65 74 69 63 61 6c 20 77 69
74 68 69 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 65 61 63 68 20 67 72
6f 75 70 2e 76 69 74 2d 69 73 2d 73 74 69 6c 6c 2d 69 64 65 6d 70 6f 74
65 6e 74 78 86 52 65 61 64 69 6e 67 20 62 61 63 6b 20 77 68 61 74 20 77
61 73 20 6a 75 73 74 20 65 6d 69 74 74 65 64 20 72 65 63 6f 72 64 73 0a
20 20 20 20 20 20 20 20 20 20 20 20 65 78 61 63 74 6c 79 20 74 68 65 20
6f 72 64 65 72 20 6a 75 73 74 20 65 6d 69 74 74 65 64 2c 20 73 6f 20 61
20 73 65 63 6f 6e 64 20 66 6f 72 6d 61 74 20 63 68 61 6e 67 65 73 0a 20
20 20 20 20 20 20 20 20 20 20 20 6e 6f 74 68 69 6e 67 2e 77 61 2d 72 65
63 6f 72 64 2d 6d 61 79 2d 62 65 2d 70 61 72 74 69 61 6c 79 02 1c 54 68
65 20 6b 65 79 73 20 61 20 72 65 63 6f 72 64 20 6e 61 6d 65 73 2c 20 61
6e 64 20 74 68 61 74 20 74 68 65 20 76 61 6c 75 65 0a 20 20 20 20 20 20
20 20 20 20 20 20 73 74 69 6c 6c 20 63 61 72 72 69 65 73 2c 20 72 65 6e
64 65 72 20 66 69 72 73 74 20 69 6e 20 74 68 65 20 72 65 63 6f 72 64 65
64 20 6f 72 64 65 72 3b 20 61 6e 79 20 72 65 6d 61 69 6e 69 6e 67 0a 20
20 20 20 20 20 20 20 20 20 20 20 6b 65 79 73 20 66 6f 6c 6c 6f 77 20 75
6e 64 65 72 20 74 68 65 20 66 61 6c 6c 62 61 63 6b 20 72 75 6c 65 2c 20
61 6e 64 20 61 20 6e 61 6d 65 20 74 68 65 20 76 61 6c 75 65 20 6e 6f 0a
20 20 20 20 20 20 20 20 20 20 20 20 6c 6f 6e 67 65 72 20 63 61 72 72 69
65 73 20 69 73 20 73 6b 69 70 70 65 64 2e 20 54 68 61 74 20 69 73 20 77
68 61 74 20 6b 65 65 70 73 20 74 68 65 20 72 75 6c 65 20 75 73 65 66 75
6c 20 77 68 65 6e 0a 20 20 20 20 20 20 20 20 20 20 20 20 61 20 64 6f 63
75 6d 65 6e 74 20 69 73 20 65 64 69 74 65 64 20 62 65 74 77 65 65 6e 20
74 68 65 20 70 61 72 73 65 20 61 6e 64 20 74 68 65 20 66 6f 72 6d 61 74
2e 20 54 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 73 74 72 69 63 74
65 72 20 61 6c 74 65 72 6e 61 74 69 76 65 20 e2 80 94 20 68 6f 6e 6f 75
72 20 74 68 65 20 72 65 63 6f 72 64 20 6f 6e 6c 79 20 77 68 65 6e 20 69
74 20 61 63 63 6f 75 6e 74 73 20 66 6f 72 0a 20 20 20 20 20 20 20 20 20
20 20 20 65 76 65 72 79 20 6b 65 79 20 65 78 61 63 74 6c 79 20 e2 80 94
20 74 68 72 6f 77 73 20 74 68 65 20 77 68 6f 6c 65 20 61 75 74 68 6f 72
65 64 20 6f 72 64 65 72 20 61 77 61 79 20 6f 6e 20 74 68 65 0a 20 20 20
20 20 20 20 20 20 20 20 20 66 69 72 73 74 20 70 61 69 72 20 61 6e 79 74
68 69 6e 67 20 61 64 64 73 2e 78 1a 61 75 74 68 6f 72 65 64 2d 6f 72 64
65 72 2d 63 6f 6d 65 73 2d 66 69 72 73 74 79 03 55 41 20 62 6c 6f 63 6b
27 73 20 70 61 69 72 73 20 61 6e 64 20 61 20 74 61 62 6c 65 27 73 20 63
6f 6c 75 6d 6e 73 20 72 65 6e 64 65 72 0a 20 20 20 20 20 20 20 20 20 20
20 20 69 6e 20 74 68 65 20 6f 72 64 65 72 20 74 68 65 79 20 77 65 72 65
20 77 72 69 74 74 65 6e 2c 20 72 65 61 64 20 66 72 6f 6d 20 74 68 65 20
72 65 63 6f 72 64 20 74 68 61 74 20 74 72 61 76 65 6c 73 0a 20 20 20 20
20 20 20 20 20 20 20 20 62 65 73 69 64 65 20 74 68 65 20 76 61 6c 75 65
2e 20 53 65 65 20 61 75 74 68 6f 72 65 64 2d 6f 72 64 65 72 2d 69 73 2d
6b 65 70 74 2d 62 65 73 69 64 65 2d 74 68 65 2d 76 61 6c 75 65 2c 0a 20
20 20 20 20 20 20 20 20 20 20 20 77 68 69 63 68 20 69 73 20 74 68 65 20
73 61 6d 65 20 72 75 6c 65 20 73 74 61 74 65 64 20 77 68 65 72 65 20 74
61 62 6c 65 73 20 61 72 65 20 64 65 66 69 6e 65 64 2e 0a 0a 20 20 20 20
20 20 20 20 20 20 20 20 41 20 66 6f 72 6d 61 74 74 65 72 20 74 68 61 74
20 69 67 6e 6f 72 65 64 20 74 68 65 20 72 65 63 6f 72 64 20 77 6f 75 6c
64 20 6d 61 6b 65 20 74 68 65 20 72 65 63 6f 72 64 20 75 73 65 6c 65 73
73 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 54 68 65 20 61 75 74 68 6f
72 65 64 20 6f 72 64 65 72 20 73 75 72 76 69 76 65 73 20 61 20 74 65 78
74 20 72 6f 75 6e 64 20 74 72 69 70 20 61 6e 64 20 6e 6f 74 68 69 6e 67
20 65 6c 73 65 2c 0a 20 20 20 20 20 20 20 20 20 20 20 20 61 6e 64 20 74
68 65 20 66 6f 72 6d 61 74 74 65 72 20 49 53 20 74 68 65 20 74 65 78 74
20 72 6f 75 6e 64 20 74 72 69 70 20 e2 80 94 20 73 6f 20 61 20 66 6f 72
6d 61 74 74 65 72 20 74 68 61 74 0a 20 20 20 20 20 20 20 20 20 20 20 20
73 6f 72 74 73 20 69 73 20 6e 6f 74 20 61 20 66 6f 72 6d 61 74 74 65 72
20 77 69 74 68 20 61 20 64 69 66 66 65 72 65 6e 74 20 6f 70 69 6e 69 6f
6e 20 61 62 6f 75 74 0a 20 20 20 20 20 20 20 20 20 20 20 20 70 72 65 73
65 6e 74 61 74 69 6f 6e 2c 20 69 74 20 69 73 20 74 68 65 20 74 68 69 6e
67 20 74 68 61 74 20 64 65 73 74 72 6f 79 73 20 77 68 61 74 20 74 68 65
20 72 65 63 6f 72 64 20 65 78 69 73 74 73 0a 20 20 20 20 20 20 20 20 20
20 20 20 74 6f 20 6b 65 65 70 2e 20 54 68 65 20 72 65 66 65 72 65 6e 63
65 20 66 6f 72 6d 61 74 74 65 72 20 64 69 64 20 65 78 61 63 74 6c 79 20
74 68 61 74 20 66 6f 72 20 61 20 77 68 69 6c 65 2c 0a 20 20 20 20 20 20
20 20 20 20 20 20 61 67 61 69 6e 73 74 20 74 68 69 73 20 73 70 65 63 69
66 69 63 61 74 69 6f 6e 2c 20 77 68 69 6c 65 20 74 68 72 65 65 20 6f 74
68 65 72 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69 6f 6e 73 0a 20 20 20 20
20 20 20 20 20 20 20 20 68 6f 6e 6f 75 72 65 64 20 74 68 65 20 72 65 63
6f 72 64 20 61 6e 64 20 77 65 72 65 20 72 69 67 68 74 20 61 67 61 69 6e
73 74 20 69 74 2e 78 1a 6f 6e 65 2d 72 65 6e 64 65 72 69 6e 67 2d 70 65
72 2d 64 6f 63 75 6d 65 6e 74 79 01 69 41 20 64 6f 63 75 6d 65 6e 74 20
69 73 20 69 74 73 20 76 61 6c 75 65 20 41 4e 44 20 77 68 61 74 20 74 72
61 76 65 6c 73 0a 20 20 20 20 20 20 20 20 20 20 20 20 62 65 73 69 64 65
20 69 74 2c 20 73 6f 20 74 68 65 72 65 20 69 73 20 73 74 69 6c 6c 20 65
78 61 63 74 6c 79 20 6f 6e 65 20 72 65 6e 64 65 72 69 6e 67 20 61 6e 64
20 6e 6f 20 6f 70 74 69 6f 6e 73 2e 0a 20 20 20 20 20 20 20 20 20 20 20
20 54 77 6f 20 64 6f 63 75 6d 65 6e 74 73 20 77 69 74 68 20 65 71 75 61
6c 20 76 61 6c 75 65 73 20 61 6e 64 20 64 69 66 66 65 72 65 6e 74 20 72
65 63 6f 72 64 73 20 72 65 6e 64 65 72 0a 20 20 20 20 20 20 20 20 20 20
20 20 64 69 66 66 65 72 65 6e 74 6c 79 20 66 6f 72 20 74 68 65 20 73 61
6d 65 20 72 65 61 73 6f 6e 20 74 77 6f 20 77 69 74 68 20 64 69 66 66 65
72 65 6e 74 20 63 6f 6d 6d 65 6e 74 73 20 64 6f 2c 0a 20 20 20 20 20 20
20 20 20 20 20 20 61 6e 64 20 74 68 65 79 20 65 6e 63 6f 64 65 20 69 64
65 6e 74 69 63 61 6c 6c 79 2c 20 77 68 69 63 68 20 69 73 20 74 68 65 20
70 72 6f 70 65 72 74 79 20 74 68 61 74 20 68 61 73 20 74 6f 0a 20 20 20
20 20 20 20 20 20 20 20 20 68 6f 6c 64 2e 6f 63 6f 6d 6d 65 6e 74 2d 62
69 6e 64 69 6e 67 a5 63 77 68 79 78 d1 41 20 63 6f 6d 6d 65 6e 74 20 6c
65 66 74 20 69 6e 20 70 6c 61 63 65 20 77 68 69 6c 65 20 63 6f 6e 74 65
6e 74 20 6d 6f 76 65 73 20 61 72 6f 75 6e 64 20 69 74 20 65 6e 64 73 20
75 70 0a 20 20 20 20 20 20 20 20 20 20 20 20 64 65 73 63 72 69 62 69 6e
67 20 73 6f 6d 65 74 68 69 6e 67 20 69 74 20 77 61 73 20 6e 6f 74 20 77
72 69 74 74 65 6e 20 61 62 6f 75 74 20 e2 80 94 20 61 20 63 6f 6e 66 69
64 65 6e 74 20 63 6c 61 69 6d 0a 20 20 20 20 20 20 20 20 20 20 20 20 61
62 6f 75 74 20 74 68 65 20 77 72 6f 6e 67 20 76 61 6c 75 65 2c 20 77 68
69 63 68 20 69 73 20 77 6f 72 73 65 20 74 68 61 6e 20 64 65 6c 65 74 69
6e 67 20 69 74 2e 64 6e 6f 74 65 da 00 01 11 d5 82 81 da 00 01 11 d4 6a
63 6f 6d 6d 65 6e 74 61 72 79 78 72 41 20 62 6c 6f 63 6b 20 63 61 72 72
79 69 6e 67 20 63 6f 6d 6d 65 6e 74 73 20 6e 65 76 65 72 20 63 6f 6c 6c
61 70 73 65 73 20 74 6f 20 66 6c 6f 77 20 66 6f 72 6d 2c 20 73 69 6e 63
65 20 74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 20 63 6f 6d 6d 65 6e
74 73 20 77 6f 75 6c 64 20 68 61 76 65 20 6e 6f 77 68 65 72 65 20 74 6f
20 6c 69 76 65 2e 64 72 75 6c 65 79 01 1c 41 20 63 6f 6d 6d 65 6e 74 20
62 69 6e 64 73 20 74 6f 20 74 68 65 20 70 61 74 68 20 6f 66 20 74 68 65
20 70 61 69 72 20 69 74 20 70 72 65 63 65 64 65 73 2c 20 6e 65 76 65 72
20 74 6f 20 61 0a 20 20 20 20 20 20 20 20 20 20 20 20 6c 69 6e 65 20 6e
75 6d 62 65 72 2c 20 61 6e 64 20 6d 6f 76 65 73 20 77 69 74 68 20 74 68
61 74 20 70 61 69 72 20 77 68 65 6e 20 6f 72 64 65 72 69 6e 67 20 63 68
61 6e 67 65 73 2e 0a 20 20 20 20 20 20 20 20 20 20 20 20 41 20 63 6f 6d
6d 65 6e 74 20 74 68 61 74 20 46 4f 4c 4c 4f 57 53 20 61 20 76 61 6c 75
65 20 6f 6e 20 74 68 65 20 73 61 6d 65 20 6c 69 6e 65 20 62 69 6e 64 73
20 74 6f 20 74 68 65 20 70 61 69 72 0a 20 20 20 20 20 20 20 20 20 20 20
20 6a 75 73 74 20 72 65 61 64 2c 20 61 6e 64 20 74 65 72 6d 69 6e 61 74
65 73 20 74 68 61 74 20 70 61 69 72 20 61 73 20 61 20 73 65 70 61 72 61
74 6f 72 20 77 6f 75 6c 64 2e 70 6e 6f 74 65 2d 6f 6e 2d 74 72 61 69 6c
69 6e 67 79 01 c4 4c 65 66 74 20 75 6e 73 74 61 74 65 64 2c 20 74 68 69
73 20 73 70 6c 69 74 20 66 6f 75 72 20 69 6d 70 6c 65 6d 65 6e 74 61 74
69 6f 6e 73 20 74 68 72 65 65 20 74 6f 0a 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 6f 6e 65 3a 20 74 68 72 65 65
20 61 63 63 65 70 74 65 64 20 61 20 74 72 61 69 6c 69 6e 67 20 63 6f 6d
6d 65 6e 74 20 61 6e 64 20 6f 6e 65 20 72 65 66 75 73 65 64 0a 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 69 74 2c
20 63 6f 72 72 65 63 74 6c 79 2c 20 62 65 63 61 75 73 65 20 74 68 65 20
73 70 65 63 69 66 69 63 61 74 69 6f 6e 20 64 65 73 63 72 69 62 65 64 20
6f 6e 6c 79 0a 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 63 6f 6d 6d 65 6e 74 73 20 74 68 61 74 20 70 72 65 63 65
64 65 2e 20 41 75 74 68 6f 72 73 20 72 65 61 63 68 20 66 6f 72 20 74 68
65 20 74 72 61 69 6c 69 6e 67 0a 20 20 20 20 20 20 20 20 20 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 66 6f 72 6d 20 69 6d 6d 65 64 69 61 74
65 6c 79 20 e2 80 94 20 74 68 65 20 66 69 72 73 74 20 64 6f 63 75 6d 65
6e 74 20 77 72 69 74 74 65 6e 20 69 6e 20 61 6e 67 65 72 0a 20 20 20 20
20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 75 73 65 64
20 6f 6e 65 20 e2 80 94 20 73 6f 20 69 74 20 69 73 20 70 65 72 6d 69 74
74 65 64 20 72 61 74 68 65 72 20 74 68 61 6e 20 66 6f 72 62 69 64 64 65
6e 2e 78 1b 74 72 61 69 6c 69 6e 67 2d 63 6f 6d 6d 65 6e 74 73 2d 61 72
65 2d 6c 65 67 61 6c f5 78 18 66 6c 6f 61 74 73 2d 6b 65 65 70 2d 74 68
65 69 72 2d 6d 61 72 6b 65 72 79 01 58 41 20 62 69 6e 61 72 79 20 66 6c
6f 61 74 20 61 6c 77 61 79 73 20 72 65 6e 64 65 72 73 20 77 69 74 68 20
61 20 74 72 61 69 6c 69 6e 67 20 66 20 61 6e 64 20 61 20 64 65 63 69 6d
61 6c 20 70 6f 69 6e 74 2c 0a 20 20 20 20 20 20 20 73 6f 20 69 74 20 63
61 6e 20 6e 65 76 65 72 20 72 65 2d 72 65 61 64 20 61 73 20 61 6e 20 69
6e 74 65 67 65 72 20 6f 72 20 61 73 20 61 6e 20 65 78 61 63 74 20 64 65
63 69 6d 61 6c 2e 20 49 74 73 0a 20 20 20 20 20 20 20 64 69 67 69 74 73
20 61 6e 64 20 74 68 65 69 72 20 6c 61 79 6f 75 74 20 61 72 65 20 61 72
72 61 79 73 2e 6f 6e 65 2d 74 65 78 74 2d 70 65 72 2d 66 6c 6f 61 74 27
73 2c 20 73 65 74 74 6c 65 64 0a 20 20 20 20 20 20 20 32 30 32 36 2d 30
39 2d 30 32 3a 20 73 68 6f 72 74 65 73 74 20 72 6f 75 6e 64 2d 74 72 69
70 20 64 69 67 69 74 73 20 69 6e 20 45 43 4d 41 53 63 72 69 70 74 27 73
20 6c 61 79 6f 75 74 2c 20 73 6f 0a 20 20 20 20 20 20 20 30 2e 30 30 30
30 31 66 20 61 6e 64 20 31 65 2b 32 31 66 20 72 61 74 68 65 72 20 74 68
61 6e 20 6f 6e 65 20 6c 61 6e 67 75 61 67 65 27 73 20 25 67 2e 6b 63 6f
6e 66 6f 72 6d 61 6e 63 65 da 00 01 11 d5 82 81 da 00 01 11 d4 69 6e 6f
72 6d 61 74 69 76 65 a6 64 6d 75 73 74 87 da 00 01 11 d4 78 38 72 6f 75
6e 64 2d 74 72 69 70 2d 74 65 78 74 2d 74 6f 2d 63 62 6f 72 2d 74 6f 2d
74 65 78 74 2d 74 6f 2d 63 62 6f 72 2d 62 79 74 65 2d 69 64 65 6e 74 69
63 61 6c 6c 79 da 00 01 11 d4 73 66 6f 72 6d 61 74 2d 69 64 65 6d 70 6f
74 65 6e 74 6c 79 da 00 01 11 d4 78 24 72 65 6a 65 63 74 2d 64 75 70 6c
69 63 61 74 65 2d 6b 65 79 73 2d 61 74 2d 65 76 65 72 79 2d 64 65 70 74
68 da 00 01 11 d4 78 26 70 72 65 73 65 72 76 65 2d 74 68 65 2d 69 6e 74
65 67 65 72 2d 66 6c 6f 61 74 2d 64 69 73 74 69 6e 63 74 69 6f 6e da 00
01 11 d4 78 31 70 72 65 73 65 72 76 65 2d 64 65 63 69 6d 61 6c 2d 6d 61
6e 74 69 73 73 61 2d 61 6e 64 2d 65 78 70 6f 6e 65 6e 74 2d 61 73 2d 77
72 69 74 74 65 6e da 00 01 11 d4 78 27 70 72 65 73 65 72 76 65 2d 74 69
6d 65 73 74 61 6d 70 2d 70 72 65 63 69 73 69 6f 6e 2d 61 6e 64 2d 6f 66
66 73 65 74 da 00 01 11 d4 78 21 65 6d 69 74 2d 6f 6e 6c 79 2d 64 65 74
65 72 6d 69 6e 69 73 74 69 63 2d 65 6e 63 6f 64 69 6e 67 73 67 72 65 6a
65 63 74 73 da 00 01 11 d5 82 81 da 00 01 11 d4 66 76 65 63 74 6f 72 8b
a2 63 77 68 79 78 36 61 20 72 6f 77 20 62 65 67 69 6e 73 20 61 66 74 65
72 20 61 20 73 65 70 61 72 61 74 6f 72 3b 20 73 65 65 20 72 6f 77 73 2d
61 72 65 2d 73 65 70 61 72 61 74 65 64 66 73 6f 75 72 63 65 71 78 20 5b
20 7c 20 61 20 62 20 7c 20 31 20 32 20 5d a2 63 77 68 79 78 39 62 61 73
65 36 34 20 69 73 20 70 61 64 64 65 64 20 74 6f 20 61 20 6d 75 6c 74 69
70 6c 65 20 6f 66 20 66 6f 75 72 3b 20 73 65 65 20 62 79 74 65 2d 70 61
79 6c 6f 61 64 73 66 73 6f 75 72 63 65 6a 61 20 7e 62 36 34 3a 61 47 6b
a2 63 77 68 79 78 30 62 61 73 65 36 34 75 72 6c 20 69 73 20 6e 6f 74 20
74 68 65 20 61 6c 70 68 61 62 65 74 3b 20 73 65 65 20 62 79 74 65 2d 70
61 79 6c 6f 61 64 73 66 73 6f 75 72 63 65 6b 61 20 7e 62 36 34 3a 61 47
2d 5f a2 63 77 68 79 78 33 68 65 78 61 64 65 63 69 6d 61 6c 20 64 69 67
69 74 73 20 63 6f 6d 65 20 69 6e 20 70 61 69 72 73 3b 20 73 65 65 20 62
79 74 65 2d 70 61 79 6c 6f 61 64 73 66 73 6f 75 72 63 65 68 61 20 7e 68
65 78 3a 30 a2 63 77 68 79 78 2f 67 20 69 73 20 6e 6f 74 20 61 20 68 65
78 61 64 65 63 69 6d 61 6c 20 64 69 67 69 74 3b 20 73 65 65 20 62 79 74
65 2d 70 61 79 6c 6f 61 64 73 66 73 6f 75 72 63 65 69 61 20 7e 68 65 78
3a 30 67 a2 63 77 68 79 78 44 61 20 6f 6e 65 2d 64 69 6d 65 6e 73 69 6f
6e 61 6c 20 73 68 61 70 65 20 69 73 20 74 68 65 20 6c 65 6e 67 74 68 20
61 6e 64 20 69 73 20 6e 6f 74 20 77 72 69 74 74 65 6e 3b 20 73 65 65 20
61 72 72 61 79 73 66 73 6f 75 72 63 65 78 1d 61 20 5e 66 36 34 3a 36 20
5b 20 31 2c 20 32 2c 20 33 2c 20 34 2c 20 35 2c 20 36 20 5d a2 63 77 68
79 73 32 35 36 20 64 6f 65 73 20 6e 6f 74 20 66 69 74 20 75 38 66 73 6f
75 72 63 65 6d 61 20 5e 75 38 20 5b 20 32 35 36 20 5d a2 63 77 68 79 78
1e 61 20 66 72 61 63 74 69 6f 6e 20 69 6e 20 61 6e 20 69 6e 74 65 67 65
72 20 61 72 72 61 79 66 73 6f 75 72 63 65 6d 61 20 5e 75 38 20 5b 20 31
2e 35 20 5d a2 63 77 68 79 78 24 74 68 65 20 73 68 61 70 65 20 68 6f 6c
64 73 20 34 20 61 6e 64 20 33 20 77 65 72 65 20 77 72 69 74 74 65 6e 66
73 6f 75 72 63 65 76 61 20 5e 66 36 34 3a 32 78 32 20 5b 20 31 2c 20 32
2c 20 33 20 5d a2 63 77 68 79 78 2c 74 68 65 20 74 79 70 65 20 69 73 20
74 68 65 20 6d 61 72 6b 65 72 3b 20 6e 6f 20 66 20 69 6e 73 69 64 65 20
61 6e 20 61 72 72 61 79 66 73 6f 75 72 63 65 6f 61 20 5e 66 36 34 20 5b
20 31 2e 35 66 20 5d a2 63 77 68 79 74 6e 6f 20 73 75 63 68 20 65 6c 65
6d 65 6e 74 20 74 79 70 65 66 73 6f 75 72 63 65 6b 61 20 5e 78 38 20 5b
20 31 20 5d 67 76 65 63 74 6f 72 73 da 00 01 11 d5 82 81 da 00 01 11 d4
66 76 65 63 74 6f 72 98 2a a2 66 73 6f 75 72 63 65 63 61 20 31 6d 63 61
6e 6f 6e 69 63 61 6c 2d 68 65 78 68 61 31 36 31 36 31 30 31 a2 66 73 6f
75 72 63 65 73 78 20 5b 20 7c 20 61 20 62 2c 20 7c 20 31 20 32 2c 20 5d
6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 76 61 31 36 31 37 38 38 31 61
32 36 31 36 31 30 31 36 31 36 32 30 32 a2 66 73 6f 75 72 63 65 72 78 20
5b 20 7c 20 61 20 62 2c 20 7c 20 31 20 32 20 5d 6d 63 61 6e 6f 6e 69 63
61 6c 2d 68 65 78 76 61 31 36 31 37 38 38 31 61 32 36 31 36 31 30 31 36
31 36 32 30 32 a2 66 73 6f 75 72 63 65 77 78 20 5b 20 7c 20 22 61 22 20
22 62 22 2c 20 7c 20 31 20 32 2c 20 5d 6d 63 61 6e 6f 6e 69 63 61 6c 2d
68 65 78 76 61 31 36 31 37 38 38 31 61 32 36 31 36 31 30 31 36 31 36 32
30 32 a2 66 73 6f 75 72 63 65 64 61 20 2d 31 6d 63 61 6e 6f 6e 69 63 61
6c 2d 68 65 78 68 61 31 36 31 36 31 32 30 a2 66 73 6f 75 72 63 65 65 61
20 31 2e 30 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 6e 61 31 36 31 36
31 63 34 38 32 32 30 30 61 a2 66 73 6f 75 72 63 65 66 61 20 31 2e 30 30
6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 70 61 31 36 31 36 31 63 34 38
32 32 31 31 38 36 34 a2 66 73 6f 75 72 63 65 67 61 20 30 33 3a 35 32 6d
63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78 1c 61 31 36 31 36 31 64 61 30
30 30 31 31 31 64 61 36 35 33 30 33 33 33 61 33 35 33 32 a2 66 73 6f 75
72 63 65 66 61 20 6b 67 20 35 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78
78 26 61 31 36 31 36 31 64 61 30 30 30 31 31 31 64 35 38 32 38 31 64 61
30 30 30 31 31 31 64 34 36 32 36 62 36 37 30 35 a2 66 73 6f 75 72 63 65
66 61 20 31 2e 30 66 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 6c 61 31
36 31 36 31 66 39 33 63 30 30 a2 66 73 6f 75 72 63 65 64 61 20 30 66 6d
63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 6c 61 31 36 31 36 31 66 39 30 30
30 30 a2 66 73 6f 75 72 63 65 65 61 20 22 78 22 6d 63 61 6e 6f 6e 69 63
61 6c 2d 68 65 78 6a 61 31 36 31 36 31 36 31 37 38 a2 66 73 6f 75 72 63
65 64 61 20 3a 78 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 74 61 31 36
31 36 31 64 61 30 30 30 31 31 31 64 34 36 31 37 38 a2 66 73 6f 75 72 63
65 66 61 20 74 72 75 65 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 68 61
31 36 31 36 31 66 35 a2 66 73 6f 75 72 63 65 66 61 20 6e 75 6c 6c 6d 63
61 6e 6f 6e 69 63 61 6c 2d 68 65 78 68 61 31 36 31 36 31 66 36 a2 66 73
6f 75 72 63 65 65 61 20 6e 61 6e 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65
78 6c 61 31 36 31 36 31 66 39 37 65 30 30 a2 66 73 6f 75 72 63 65 65 61
20 69 6e 66 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 6c 61 31 36 31 36
31 66 39 37 63 30 30 a2 66 73 6f 75 72 63 65 64 61 20 5b 5d 6d 63 61 6e
6f 6e 69 63 61 6c 2d 68 65 78 68 61 31 36 31 36 31 38 30 a2 66 73 6f 75
72 63 65 64 61 20 7b 7d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 68 61
31 36 31 36 31 61 30 a2 66 73 6f 75 72 63 65 6a 61 20 5b 20 31 2c 20 32
20 5d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 6c 61 31 36 31 36 31 38
32 30 31 30 32 a2 66 73 6f 75 72 63 65 64 61 20 40 78 6d 63 61 6e 6f 6e
69 63 61 6c 2d 68 65 78 74 61 31 36 31 36 31 64 61 30 30 30 31 31 31 64
36 36 31 37 38 a2 66 73 6f 75 72 63 65 67 61 20 2d 3e 20 40 78 6d 63 61
6e 6f 6e 69 63 61 6c 2d 68 65 78 74 61 31 36 31 36 31 64 61 30 30 30 31
31 31 64 37 36 31 37 38 a2 66 73 6f 75 72 63 65 6e 61 20 23 73 68 61 32
35 36 3a 30 30 66 66 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78 26 61
31 36 31 36 31 64 61 30 30 30 31 31 31 64 38 38 32 36 36 37 33 36 38 36
31 33 32 33 35 33 36 34 32 30 30 66 66 a2 66 73 6f 75 72 63 65 6b 61 20
7e 68 65 78 3a 30 30 66 66 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 6c
61 31 36 31 36 31 34 32 30 30 66 66 a2 66 73 6f 75 72 63 65 68 61 20 21
65 2f 78 20 31 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78 1c 61 31 36
31 36 31 64 61 30 30 30 31 31 31 64 39 38 32 36 33 36 35 32 66 37 38 30
31 a2 66 73 6f 75 72 63 65 6a 61 20 75 73 64 20 31 2e 39 39 6d 63 61 6e
6f 6e 69 63 61 6c 2d 68 65 78 78 30 61 31 36 31 36 31 64 61 30 30 30 31
31 31 64 35 38 32 38 31 64 61 30 30 30 31 31 31 64 34 36 33 37 35 37 33
36 34 63 34 38 32 32 31 31 38 63 37 a2 66 73 6f 75 72 63 65 69 61 20 32
30 32 36 2d 30 38 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78 20 61 31
36 31 36 31 64 61 30 30 30 31 31 31 64 61 36 37 33 32 33 30 33 32 33 36
32 64 33 30 33 38 a2 66 73 6f 75 72 63 65 76 61 20 32 30 32 36 2d 30 38
2d 30 33 54 31 34 3a 32 32 3a 30 37 5a 6d 63 61 6e 6f 6e 69 63 61 6c 2d
68 65 78 78 3a 61 31 36 31 36 31 64 61 30 30 30 31 31 31 64 61 37 34 33
32 33 30 33 32 33 36 32 64 33 30 33 38 32 64 33 30 33 33 35 34 33 31 33
34 33 61 33 32 33 32 33 61 33 30 33 37 35 61 a2 66 73 6f 75 72 63 65 76
61 20 31 38 34 34 36 37 34 34 30 37 33 37 30 39 35 35 31 36 31 35 6d 63
61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78 18 61 31 36 31 36 31 31 62 66 66
66 66 66 66 66 66 66 66 66 66 66 66 66 66 a2 66 73 6f 75 72 63 65 78 29
61 20 33 34 30 32 38 32 33 36 36 39 32 30 39 33 38 34 36 33 34 36 33 33
37 34 36 30 37 34 33 31 37 36 38 32 31 31 34 35 36 6d 63 61 6e 6f 6e 69
63 61 6c 2d 68 65 78 78 2c 61 31 36 31 36 31 63 32 35 31 30 31 30 30 30
30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30
30 30 30 30 30 a2 66 73 6f 75 72 63 65 6e 61 20 7b 20 62 20 31 2c 20 63
20 32 20 7d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 74 61 31 36 31 36
31 61 32 36 31 36 32 30 31 36 31 36 33 30 32 a2 66 73 6f 75 72 63 65 78
20 61 20 5b 20 7b 20 62 20 31 2c 20 63 20 32 20 7d 2c 20 7b 20 62 20 33
2c 20 63 20 34 20 7d 20 5d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78
24 61 31 36 31 36 31 38 32 61 32 36 31 36 32 30 31 36 31 36 33 30 32 61
32 36 31 36 32 30 33 36 31 36 33 30 34 a2 66 73 6f 75 72 63 65 6b 78 20
5b 20 7c 20 61 20 62 20 5d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 68
61 31 36 31 37 38 38 30 a2 66 73 6f 75 72 63 65 6b 61 20 7e 68 65 78 3a
30 30 46 46 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 6c 61 31 36 31 36
31 34 32 30 30 66 66 a2 66 73 6f 75 72 63 65 71 61 20 5e 75 38 20 5b 20
31 2c 20 32 2c 20 33 20 5d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 72
61 31 36 31 36 31 64 38 34 30 34 33 30 31 30 32 30 33 a2 66 73 6f 75 72
63 65 6e 61 20 5e 66 36 34 20 5b 20 31 2e 35 20 5d 6d 63 61 6e 6f 6e 69
63 61 6c 2d 68 65 78 78 1c 61 31 36 31 36 31 64 38 35 32 34 38 33 66 66
38 30 30 30 30 30 30 30 30 30 30 30 30 a2 66 73 6f 75 72 63 65 78 1b 61
20 5e 69 31 36 3a 32 78 32 20 5b 20 31 2c 20 2d 31 2c 20 32 2c 20 2d 32
20 5d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78 28 61 31 36 31 36 31
64 38 32 38 38 32 38 32 30 32 30 32 64 38 34 39 34 38 30 30 30 31 66 66
66 66 30 30 30 32 66 66 66 65 a2 66 73 6f 75 72 63 65 74 61 20 5e 75 38
20 5b 20 31 2c 20 6e 75 6c 6c 2c 20 33 20 5d 6d 63 61 6e 6f 6e 69 63 61
6c 2d 68 65 78 78 22 61 31 36 31 36 31 64 61 30 30 30 31 31 31 64 62 38
32 34 31 30 35 64 38 34 30 34 33 30 31 30 30 30 33 a2 66 73 6f 75 72 63
65 77 61 20 5e 66 31 36 20 5b 20 31 2e 35 2c 20 2d 30 2c 20 6e 61 6e 20
5d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78 18 61 31 36 31 36 31 64
38 35 30 34 36 33 65 30 30 38 30 30 30 37 65 30 30 a2 66 73 6f 75 72 63
65 6e 61 20 5e 66 33 32 20 5b 20 30 2e 31 20 5d 6d 63 61 6e 6f 6e 69 63
61 6c 2d 68 65 78 74 61 31 36 31 36 31 64 38 35 31 34 34 33 64 63 63 63
63 63 64 a2 66 73 6f 75 72 63 65 6d 61 20 5e 69 36 34 20 5b 20 2d 31 20
5d 6d 63 61 6e 6f 6e 69 63 61 6c 2d 68 65 78 78 1c 61 31 36 31 36 31 64
38 34 62 34 38 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 66 a2 66 73
6f 75 72 63 65 68 61 20 5e 75 38 20 5b 5d 6d 63 61 6e 6f 6e 69 63 61 6c
2d 68 65 78 6c 61 31 36 31 36 31 64 38 34 30 34 30 69 73 65 6c 66 2d 74
65 73 74 a3 63 64 6f 63 da 00 01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d
6d 65 6e 74 61 72 79 78 85 41 6e 20 69 6d 70 6c 65 6d 65 6e 74 61 74 69
6f 6e 20 69 73 20 63 6f 72 72 65 63 74 20 77 68 65 6e 20 69 74 20 61 67
72 65 65 73 20 62 79 74 65 2d 66 6f 72 2d 62 79 74 65 20 77 69 74 68 20
74 68 65 0a 20 20 20 20 20 20 20 20 20 20 20 72 65 66 65 72 65 6e 63 65
20 65 6e 63 6f 64 65 72 20 6f 6e 20 65 76 65 72 79 20 64 6f 63 75 6d 65
6e 74 20 69 6e 20 74 68 65 20 74 65 73 74 20 63 6f 72 70 75 73 2e 64 6e
6f 74 65 da 00 01 11 d5 82 81 da 00 01 11 d4 6a 63 6f 6d 6d 65 6e 74 61
72 79 78 d7 54 68 61 74 20 63 6f 6d 6d 61 6e 64 20 6e 65 65 64 73 20 61
20 72 65 70 6f 73 69 74 6f 72 79 20 61 6e 20 69 6d 70 6c 65 6d 65 6e 74
65 72 20 77 6f 72 6b 69 6e 67 20 66 72 6f 6d 20 74 68 69 73 0a 20 20 20
20 20 20 20 20 20 20 20 20 64 6f 63 75 6d 65 6e 74 20 61 6c 6f 6e 65 20
64 6f 65 73 20 6e 6f 74 20 68 61 76 65 2e 20 54 68 65 20 76 65 63 74 6f
72 73 20 62 65 6c 6f 77 20 61 72 65 20 74 68 65 20 70 61 72 74 20 6f 66
0a 20 20 20 20 20 20 20 20 20 20 20 20 74 68 65 20 63 6f 6e 66 6f 72 6d
61 6e 63 65 20 63 72 69 74 65 72 69 6f 6e 20 74 68 61 74 20 74 72 61 76
65 6c 73 20 77 69 74 68 20 74 68 65 20 73 70 65 63 69 66 69 63 61 74 69
6f 6e 2e 67 63 6f 6d 6d 61 6e 64 78 30 67 6f 20 72 75 6e 20 2e 2f 74 6f
6f 6c 73 2f 63 6f 6d 70 61 72 65 20 2d 2d 20 3c 79 6f 75 72 2d 65 6e 63
6f 64 65 72 2d 63 6f 6d 6d 61 6e 64 3e 6c 72 65 6a 65 63 74 2d 62 79 74
65 73 da 00 01 11 d5 82 81 da 00 01 11 d4 66 76 65 63 74 6f 72 86 a2 63
68 65 78 78 1c 61 31 36 31 36 31 64 38 35 36 34 38 33 66 66 38 30 30 30
30 30 30 30 30 30 30 30 30 63 77 68 79 78 41 74 61 67 20 38 36 20 69 73
20 61 20 6c 69 74 74 6c 65 2d 65 6e 64 69 61 6e 20 66 36 34 20 61 72 72
61 79 3b 20 6f 6e 6c 79 20 62 69 67 2d 65 6e 64 69 61 6e 20 69 73 20 63
61 6e 6f 6e 69 63 61 6c a2 63 68 65 78 78 22 61 31 36 31 36 31 64 61 30
30 30 31 31 31 64 62 38 32 34 31 30 37 64 38 34 30 34 33 30 31 30 32 30
33 63 77 68 79 78 2b 61 20 76 61 6c 69 64 69 74 79 20 6d 61 73 6b 20 77
69 74 68 20 65 76 65 72 79 20 70 6f 73 69 74 69 6f 6e 20 70 72 65 73 65
6e 74 a2 63 68 65 78 78 1c 61 31 36 31 36 31 64 38 35 32 34 38 37 66 66
38 30 30 30 30 30 30 30 30 30 30 30 31 63 77 68 79 78 2a 61 20 4e 61 4e
20 77 69 74 68 20 61 20 70 61 79 6c 6f 61 64 3b 20 74 68 65 20 74 65 78
74 20 68 61 73 20 6f 6e 65 20 4e 61 4e a2 63 68 65 78 78 22 61 31 36 31
36 31 64 61 30 30 30 31 31 31 64 62 38 32 34 31 30 35 64 38 34 30 34 33
30 31 30 32 30 33 63 77 68 79 78 27 61 20 6d 61 73 6b 65 64 20 70 6f 73
69 74 69 6f 6e 20 68 6f 6c 64 69 6e 67 20 6e 6f 6e 2d 7a 65 72 6f 20 62
69 74 73 a2 63 68 65 78 72 61 31 36 31 36 31 64 38 35 32 34 33 30 30 66
66 30 30 63 77 68 79 78 31 74 68 72 65 65 20 62 79 74 65 73 20 69 73 20
6e 6f 74 20 61 20 77 68 6f 6c 65 20 6e 75 6d 62 65 72 20 6f 66 20 66 36
34 20 65 6c 65 6d 65 6e 74 73 a2 63 68 65 78 78 1c 61 31 36 31 36 31 64
38 32 38 38 32 38 31 30 33 64 38 34 30 34 33 30 31 30 32 30 33 63 77 68
79 76 74 61 67 20 34 30 20 77 69 74 68 20 6f 6e 65 20 65 78 74 65 6e 74
72 69 6e 74 65 67 65 72 2d 66 6c 6f 61 74 2d 6e 6f 74 65 78 c8 4c 61 6e
67 75 61 67 65 20 72 75 6e 74 69 6d 65 73 20 77 69 74 68 6f 75 74 20 64
69 73 74 69 6e 63 74 20 6e 75 6d 65 72 69 63 20 74 79 70 65 73 20 6d 75
73 74 20 75 73 65 20 61 20 77 72 61 70 70 65 72 2e 0a 20 20 20 20 20 20
20 4a 61 76 61 53 63 72 69 70 74 20 63 61 6e 6e 6f 74 20 72 65 70 72 65
73 65 6e 74 20 74 68 65 20 64 69 73 74 69 6e 63 74 69 6f 6e 20 61 74 20
61 6c 6c 3a 20 69 74 20 6d 61 70 73 20 66 6c 6f 61 74 20 31 2e 30 0a 20
20 20 20 20 20 20 6f 6e 74 6f 20 74 68 65 20 63 61 6e 6f 6e 69 63 61 6c
20 66 6f 72 6d 20 6f 66 20 69 6e 74 65 67 65 72 20 31 2c 20 73 69 6c 65
6e 74 6c 79 2e
canonical CBOR for spec/unimsg-v0.umsg 66821 bytes

Every construct on this page

The formal columns are read from the specification when this page is generated. The last column is this site's plain-language gloss and is not normative — where they differ, the specification is right.

constructglyphcarriesexamplegloss
:annotationA bare name qualifying the value after it—for example a language tag or a unit such as kg. It is not a value itself; a bare name with nothing after it is an error, not a guess.
:array^type, or type:shape; then [ elements ]^f64 [ 1.5, 2.5 ] or ^i16:2x3 [ … ]A packed, homogeneous numeric array. The ^ marker gives every element its type and may also give the row-major shape: ^f64:2x3 [ … ].
:array-elementOne element of a typed array. Its type comes from the ^ marker, so 1.5 inside ^f64 is binary64 rather than an exact decimal.
:array-missingA missing position in a typed array. null here is not an element value: it adds a validity mask while preserving the array's shape.
:blockA block: named pairs, in braces. Its keys are sorted in the encoding and shown here as written.
:bytes~encoding:data~hex:ff00 or ~b64:iVBORw0KGgo=Raw octets, carried as octets. No base64 tax, no pretending they are text.
:comment--to end of line-- a noteA note for people. It travels with the pair it precedes and never reaches the bytes.
:decimalAn exact decimal. 19.99 is nineteen and ninety-nine hundredths, not the nearest double to it.
:extension!name, then value!acme/hint { zone 4 }A qualifier this reader may not know. It survives the round trip intact, and stays legible on the way past — the rule that separates an extension from a private convention.
:floatA binary float, marked so it can never be mistaken for the exact decimal beside it.
:hash#algorithm:hex#sha256:deadbeefThe digest of some content, with the algorithm said out loud so it is still meaningful in ten years.
:header%unimsg only%unimsg 0 labelDeclares the format version and what this document is. Optional, and useful exactly when a file arrives without context.
:identifier@word@ord-88213Gives this value a name, so another document can point at it without copying it.
:integerA whole number of any size. Past 2^53 it is still exact, which is the whole reason this is not JSON.
:keyA field name: the first thing in a pair. It is bare when possible and quoted when needed, and names the content without becoming part of the value.
:reference->an identifier or a path-> @cust-4471, -> @lexicon.entries.kitābPoints at a name. Nothing follows it while reading — resolution is somebody else's job, deliberately.
:reserved-literalOne of six bare words that are values rather than names. The list is fixed, so no value is coerced by what it looks like.
:sequenceAn ordered list. Order is preserved and is meaning.
:stringText. May span lines, so prose does not have to be escaped into one.
:symbol:word:dispatchedA name from a fixed vocabulary, not free text. :high is a value someone chose; "high" is a phrase someone typed.
:table-row|cells| sku qtyOne record of a table. A table is sugar for a sequence of blocks with the same keys, and encodes identically to the longhand.
:timestampA temporal value at the precision written. 2026-08 stays a month, and 03:52 stays a wall-clock time; neither is widened into an invented instant.