From 648bf20cb660f82c45e662233654fd08ef6b1124f387943ded0e675b438f157d Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 9 Oct 2024 14:17:05 +0300 Subject: [PATCH] Explicitly show vlen --- spec/encoding/index.texi | 72 +++--- spec/encoding/table.texi | 516 +++++++++++++++++++-------------------- 2 files changed, 294 insertions(+), 294 deletions(-) diff --git a/spec/encoding/index.texi b/spec/encoding/index.texi index e2ab3b2..9126cfc 100644 --- a/spec/encoding/index.texi +++ b/spec/encoding/index.texi @@ -8,54 +8,54 @@ emitting the TLV-like encoding for each item recursively. Possible values for the tag: -@multitable {dec} {hex} {12345678} {float256} -@headitem dec @tab hex @tab bin @tab description +@multitable {dec} {hex} {12345678} {len} {float256} +@headitem dec @tab hex @tab bin @tab vlen @tab description -@item 000 @tab 00 @tab @code{00000000} @tab @ref{Containers, EOC} -@item 001 @tab 01 @tab @code{00000001} @tab @ref{Primitives, NIL} -@item 002 @tab 02 @tab @code{00000010} @tab @ref{Primitives, FALSE} -@item 003 @tab 03 @tab @code{00000011} @tab @ref{Primitives, TRUE} -@item 004 @tab 04 @tab @code{00000100} @tab @ref{UUID} +@item 000 @tab 00 @tab @code{00000000} @tab 0 @tab @ref{Containers, EOC} +@item 001 @tab 01 @tab @code{00000001} @tab 0 @tab @ref{Primitives, NIL} +@item 002 @tab 02 @tab @code{00000010} @tab 0 @tab @ref{Primitives, FALSE} +@item 003 @tab 03 @tab @code{00000011} @tab 0 @tab @ref{Primitives, TRUE} +@item 004 @tab 04 @tab @code{00000100} @tab 16 @tab @ref{UUID} @item [...] -@item 008 @tab 08 @tab @code{00001000} @tab @ref{Containers, LIST} -@item 009 @tab 09 @tab @code{00001001} @tab @ref{Containers, MAP} +@item 008 @tab 08 @tab @code{00001000} @tab 0 @tab @ref{Containers, LIST} +@item 009 @tab 09 @tab @code{00001001} @tab 0 @tab @ref{Containers, MAP} @item 010 @tab 0A @tab @code{00001010} @tab -@item 011 @tab 0B @tab @code{00001011} @tab @ref{Blobs, BLOB} +@item 011 @tab 0B @tab @code{00001011} @tab 8 @tab @ref{Blobs, BLOB} @item [...] -@item 016 @tab 10 @tab @code{00010000} @tab @ref{Floats, FLOAT16} -@item 017 @tab 11 @tab @code{00010001} @tab @ref{Floats, FLOAT32} -@item 018 @tab 12 @tab @code{00010010} @tab @ref{Floats, FLOAT64} -@item 019 @tab 13 @tab @code{00010011} @tab @ref{Floats, FLOAT128} -@item 020 @tab 14 @tab @code{00010100} @tab @ref{Floats, FLOAT256} +@item 016 @tab 10 @tab @code{00010000} @tab 2 @tab @ref{Floats, FLOAT16} +@item 017 @tab 11 @tab @code{00010001} @tab 4 @tab @ref{Floats, FLOAT32} +@item 018 @tab 12 @tab @code{00010010} @tab 8 @tab @ref{Floats, FLOAT64} +@item 019 @tab 13 @tab @code{00010011} @tab 16 @tab @ref{Floats, FLOAT128} +@item 020 @tab 14 @tab @code{00010100} @tab 32 @tab @ref{Floats, FLOAT256} @item [...] -@item 024 @tab 18 @tab @code{00011000} @tab @ref{TAI64, TAI64} -@item 025 @tab 19 @tab @code{00011001} @tab @ref{TAI64, TAI64N} -@item 026 @tab 1A @tab @code{00011010} @tab @ref{TAI64, TAI64NA} +@item 024 @tab 18 @tab @code{00011000} @tab 8 @tab @ref{TAI64, TAI64} +@item 025 @tab 19 @tab @code{00011001} @tab 12 @tab @ref{TAI64, TAI64N} +@item 026 @tab 1A @tab @code{00011010} @tab 16 @tab @ref{TAI64, TAI64NA} @item [...] -@item 032 @tab 20 @tab @code{0010LLLL} @tab @ref{Integers, +INT(len=1)} +@item 032 @tab 20 @tab @code{0010LLLL} @tab 1 @tab @ref{Integers, +INT(len=1)} @item [...] -@item 047 @tab 2F @tab @code{0010LLLL} @tab @ref{Integers, +INT(len=16)} -@item 048 @tab 30 @tab @code{0011LLLL} @tab @ref{Integers, -INT(len=1)} +@item 047 @tab 2F @tab @code{0010LLLL} @tab 16 @tab @ref{Integers, +INT(len=16)} +@item 048 @tab 30 @tab @code{0011LLLL} @tab 1 @tab @ref{Integers, -INT(len=1)} @item [...] -@item 063 @tab 3F @tab @code{0011LLLL} @tab @ref{Integers, -INT(len=16)} -@item 064 @tab 40 @tab @code{010VVVVV} @tab @ref{Integers, INT=0} +@item 063 @tab 3F @tab @code{0011LLLL} @tab 16 @tab @ref{Integers, -INT(len=16)} +@item 064 @tab 40 @tab @code{010VVVVV} @tab 0 @tab @ref{Integers, INT=0} @item [...] -@item 095 @tab 5F @tab @code{010VVVVV} @tab @ref{Integers, INT=31} -@item 096 @tab 60 @tab @code{011VVVVV} @tab @ref{Integers, INT=-1} +@item 095 @tab 5F @tab @code{010VVVVV} @tab 0 @tab @ref{Integers, INT=31} +@item 096 @tab 60 @tab @code{011VVVVV} @tab 0 @tab @ref{Integers, INT=-1} @item [...] -@item 127 @tab 7F @tab @code{011VVVVV} @tab @ref{Integers, INT=-32} -@item 128 @tab 80 @tab @code{10LLLLLL} @tab @ref{Strings, BIN(len=0)} +@item 127 @tab 7F @tab @code{011VVVVV} @tab 0 @tab @ref{Integers, INT=-32} +@item 128 @tab 80 @tab @code{10LLLLLL} @tab 0 @tab @ref{Strings, BIN(len=0)} @item [...] -@item 188 @tab BC @tab @code{10111100} @tab @ref{Strings, BIN(len=60)} -@item 189 @tab BD @tab @code{10111101} @tab @ref{Strings, BIN(len of 8b)} -@item 190 @tab BE @tab @code{10111110} @tab @ref{Strings, BIN(len of 16b)} -@item 191 @tab BF @tab @code{10111111} @tab @ref{Strings, BIN(len of 64b)} -@item 192 @tab C0 @tab @code{11LLLLLL} @tab @ref{Strings, STR(len=0)} +@item 188 @tab BC @tab @code{10111100} @tab 60 @tab @ref{Strings, BIN(len=60)} +@item 189 @tab BD @tab @code{10111101} @tab 1+~ @tab @ref{Strings, BIN(len of 8b)} +@item 190 @tab BE @tab @code{10111110} @tab 2+~ @tab @ref{Strings, BIN(len of 16b)} +@item 191 @tab BF @tab @code{10111111} @tab 8+~ @tab @ref{Strings, BIN(len of 64b)} +@item 192 @tab C0 @tab @code{11LLLLLL} @tab 0 @tab @ref{Strings, STR(len=0)} @item [...] -@item 252 @tab FC @tab @code{11111100} @tab @ref{Strings, STR(len=60)} -@item 253 @tab FD @tab @code{11111101} @tab @ref{Strings, STR(len of 8b)} -@item 254 @tab FE @tab @code{11111110} @tab @ref{Strings, STR(len of 16b)} -@item 255 @tab FF @tab @code{11111111} @tab @ref{Strings, STR(len of 64b)} +@item 252 @tab FC @tab @code{11111100} @tab 60 @tab @ref{Strings, STR(len=60)} +@item 253 @tab FD @tab @code{11111101} @tab 1+~ @tab @ref{Strings, STR(len of 8b)} +@item 254 @tab FE @tab @code{11111110} @tab 2+~ @tab @ref{Strings, STR(len of 16b)} +@item 255 @tab FF @tab @code{11111111} @tab 8+~ @tab @ref{Strings, STR(len of 64b)} @end multitable diff --git a/spec/encoding/table.texi b/spec/encoding/table.texi index 8257098..6365a74 100644 --- a/spec/encoding/table.texi +++ b/spec/encoding/table.texi @@ -1,264 +1,264 @@ @node Encoding table @section Full encoding table -@multitable {dec} {hex} {12345678} {float256} -@headitem dec @tab hex @tab bin @tab description +@multitable {dec} {hex} {12345678} {len} {float256} +@headitem dec @tab hex @tab bin @tab vlen @tab description -@item 000 @tab 00 @tab @code{00000000} @tab @ref{Containers, EOC} -@item 001 @tab 01 @tab @code{00000001} @tab @ref{Primitives, NIL} -@item 002 @tab 02 @tab @code{00000010} @tab @ref{Primitives, FALSE} -@item 003 @tab 03 @tab @code{00000011} @tab @ref{Primitives, TRUE} -@item 004 @tab 04 @tab @code{00000100} @tab @ref{UUID} -@item 005 @tab 05 @tab @code{00000101} @tab -@item 006 @tab 06 @tab @code{00000110} @tab -@item 007 @tab 07 @tab @code{00000111} @tab -@item 008 @tab 08 @tab @code{00001000} @tab @ref{Containers, LIST} -@item 009 @tab 09 @tab @code{00001001} @tab @ref{Containers, MAP} -@item 010 @tab 0A @tab @code{00001010} @tab -@item 011 @tab 0B @tab @code{00001011} @tab @ref{Blobs, BLOB} -@item 012 @tab 0C @tab @code{00001100} @tab -@item 013 @tab 0D @tab @code{00001101} @tab -@item 014 @tab 0E @tab @code{00001110} @tab -@item 015 @tab 0F @tab @code{00001111} @tab -@item 016 @tab 10 @tab @code{00010000} @tab @ref{Floats, FLOAT16} -@item 017 @tab 11 @tab @code{00010001} @tab @ref{Floats, FLOAT32} -@item 018 @tab 12 @tab @code{00010010} @tab @ref{Floats, FLOAT64} -@item 019 @tab 13 @tab @code{00010011} @tab @ref{Floats, FLOAT128} -@item 020 @tab 14 @tab @code{00010100} @tab @ref{Floats, FLOAT256} -@item 021 @tab 15 @tab @code{00010101} @tab -@item 022 @tab 16 @tab @code{00010110} @tab -@item 023 @tab 17 @tab @code{00010111} @tab -@item 024 @tab 18 @tab @code{00011000} @tab @ref{TAI64, TAI64} -@item 025 @tab 19 @tab @code{00011001} @tab @ref{TAI64, TAI64N} -@item 026 @tab 1A @tab @code{00011010} @tab @ref{TAI64, TAI64NA} -@item 027 @tab 1B @tab @code{00011011} @tab -@item 028 @tab 1C @tab @code{00011100} @tab -@item 029 @tab 1D @tab @code{00011101} @tab -@item 030 @tab 1E @tab @code{00011110} @tab -@item 031 @tab 1F @tab @code{00011111} @tab -@item 032 @tab 20 @tab @code{00100000} @tab @ref{Integers, +INT1} -@item 033 @tab 21 @tab @code{00100001} @tab @ref{Integers, +INT2} -@item 034 @tab 22 @tab @code{00100010} @tab @ref{Integers, +INT3} -@item 035 @tab 23 @tab @code{00100011} @tab @ref{Integers, +INT4} -@item 036 @tab 24 @tab @code{00100100} @tab @ref{Integers, +INT5} -@item 037 @tab 25 @tab @code{00100101} @tab @ref{Integers, +INT6} -@item 038 @tab 26 @tab @code{00100110} @tab @ref{Integers, +INT7} -@item 039 @tab 27 @tab @code{00100111} @tab @ref{Integers, +INT8} -@item 040 @tab 28 @tab @code{00101000} @tab @ref{Integers, +INT9} -@item 041 @tab 29 @tab @code{00101001} @tab @ref{Integers, +INT10} -@item 042 @tab 2A @tab @code{00101010} @tab @ref{Integers, +INT11} -@item 043 @tab 2B @tab @code{00101011} @tab @ref{Integers, +INT12} -@item 044 @tab 2C @tab @code{00101100} @tab @ref{Integers, +INT13} -@item 045 @tab 2D @tab @code{00101101} @tab @ref{Integers, +INT14} -@item 046 @tab 2E @tab @code{00101110} @tab @ref{Integers, +INT15} -@item 047 @tab 2F @tab @code{00101111} @tab @ref{Integers, +INT16} -@item 048 @tab 30 @tab @code{00110000} @tab @ref{Integers, -INT1} -@item 049 @tab 31 @tab @code{00110001} @tab @ref{Integers, -INT2} -@item 050 @tab 32 @tab @code{00110010} @tab @ref{Integers, -INT3} -@item 051 @tab 33 @tab @code{00110011} @tab @ref{Integers, -INT4} -@item 052 @tab 34 @tab @code{00110100} @tab @ref{Integers, -INT5} -@item 053 @tab 35 @tab @code{00110101} @tab @ref{Integers, -INT6} -@item 054 @tab 36 @tab @code{00110110} @tab @ref{Integers, -INT7} -@item 055 @tab 37 @tab @code{00110111} @tab @ref{Integers, -INT8} -@item 056 @tab 38 @tab @code{00111000} @tab @ref{Integers, -INT9} -@item 057 @tab 39 @tab @code{00111001} @tab @ref{Integers, -INT10} -@item 058 @tab 3A @tab @code{00111010} @tab @ref{Integers, -INT11} -@item 059 @tab 3B @tab @code{00111011} @tab @ref{Integers, -INT12} -@item 060 @tab 3C @tab @code{00111100} @tab @ref{Integers, -INT13} -@item 061 @tab 3D @tab @code{00111101} @tab @ref{Integers, -INT14} -@item 062 @tab 3E @tab @code{00111110} @tab @ref{Integers, -INT15} -@item 063 @tab 3F @tab @code{00111111} @tab @ref{Integers, -INT16} -@item 064 @tab 40 @tab @code{01000000} @tab @ref{Integers, INT=0} -@item 065 @tab 41 @tab @code{01000001} @tab @ref{Integers, INT=1} -@item 066 @tab 42 @tab @code{01000010} @tab @ref{Integers, INT=2} -@item 067 @tab 43 @tab @code{01000011} @tab @ref{Integers, INT=3} -@item 068 @tab 44 @tab @code{01000100} @tab @ref{Integers, INT=4} -@item 069 @tab 45 @tab @code{01000101} @tab @ref{Integers, INT=5} -@item 070 @tab 46 @tab @code{01000110} @tab @ref{Integers, INT=6} -@item 071 @tab 47 @tab @code{01000111} @tab @ref{Integers, INT=7} -@item 072 @tab 48 @tab @code{01001000} @tab @ref{Integers, INT=8} -@item 073 @tab 49 @tab @code{01001001} @tab @ref{Integers, INT=9} -@item 074 @tab 4A @tab @code{01001010} @tab @ref{Integers, INT=10} -@item 075 @tab 4B @tab @code{01001011} @tab @ref{Integers, INT=11} -@item 076 @tab 4C @tab @code{01001100} @tab @ref{Integers, INT=12} -@item 077 @tab 4D @tab @code{01001101} @tab @ref{Integers, INT=13} -@item 078 @tab 4E @tab @code{01001110} @tab @ref{Integers, INT=14} -@item 079 @tab 4F @tab @code{01001111} @tab @ref{Integers, INT=15} -@item 080 @tab 50 @tab @code{01010000} @tab @ref{Integers, INT=16} -@item 081 @tab 51 @tab @code{01010001} @tab @ref{Integers, INT=17} -@item 082 @tab 52 @tab @code{01010010} @tab @ref{Integers, INT=18} -@item 083 @tab 53 @tab @code{01010011} @tab @ref{Integers, INT=19} -@item 084 @tab 54 @tab @code{01010100} @tab @ref{Integers, INT=20} -@item 085 @tab 55 @tab @code{01010101} @tab @ref{Integers, INT=21} -@item 086 @tab 56 @tab @code{01010110} @tab @ref{Integers, INT=22} -@item 087 @tab 57 @tab @code{01010111} @tab @ref{Integers, INT=23} -@item 088 @tab 58 @tab @code{01011000} @tab @ref{Integers, INT=24} -@item 089 @tab 59 @tab @code{01011001} @tab @ref{Integers, INT=25} -@item 090 @tab 5A @tab @code{01011010} @tab @ref{Integers, INT=26} -@item 091 @tab 5B @tab @code{01011011} @tab @ref{Integers, INT=27} -@item 092 @tab 5C @tab @code{01011100} @tab @ref{Integers, INT=28} -@item 093 @tab 5D @tab @code{01011101} @tab @ref{Integers, INT=29} -@item 094 @tab 5E @tab @code{01011110} @tab @ref{Integers, INT=30} -@item 095 @tab 5F @tab @code{01011111} @tab @ref{Integers, INT=31} -@item 096 @tab 60 @tab @code{01100000} @tab @ref{Integers, INT=-1} -@item 097 @tab 61 @tab @code{01100001} @tab @ref{Integers, INT=-2} -@item 098 @tab 62 @tab @code{01100010} @tab @ref{Integers, INT=-3} -@item 099 @tab 63 @tab @code{01100011} @tab @ref{Integers, INT=-4} -@item 100 @tab 64 @tab @code{01100100} @tab @ref{Integers, INT=-5} -@item 101 @tab 65 @tab @code{01100101} @tab @ref{Integers, INT=-6} -@item 102 @tab 66 @tab @code{01100110} @tab @ref{Integers, INT=-7} -@item 103 @tab 67 @tab @code{01100111} @tab @ref{Integers, INT=-8} -@item 104 @tab 68 @tab @code{01101000} @tab @ref{Integers, INT=-9} -@item 105 @tab 69 @tab @code{01101001} @tab @ref{Integers, INT=-10} -@item 106 @tab 6A @tab @code{01101010} @tab @ref{Integers, INT=-11} -@item 107 @tab 6B @tab @code{01101011} @tab @ref{Integers, INT=-12} -@item 108 @tab 6C @tab @code{01101100} @tab @ref{Integers, INT=-13} -@item 109 @tab 6D @tab @code{01101101} @tab @ref{Integers, INT=-14} -@item 110 @tab 6E @tab @code{01101110} @tab @ref{Integers, INT=-15} -@item 111 @tab 6F @tab @code{01101111} @tab @ref{Integers, INT=-16} -@item 112 @tab 70 @tab @code{01110000} @tab @ref{Integers, INT=-17} -@item 113 @tab 71 @tab @code{01110001} @tab @ref{Integers, INT=-18} -@item 114 @tab 72 @tab @code{01110010} @tab @ref{Integers, INT=-19} -@item 115 @tab 73 @tab @code{01110011} @tab @ref{Integers, INT=-20} -@item 116 @tab 74 @tab @code{01110100} @tab @ref{Integers, INT=-21} -@item 117 @tab 75 @tab @code{01110101} @tab @ref{Integers, INT=-22} -@item 118 @tab 76 @tab @code{01110110} @tab @ref{Integers, INT=-23} -@item 119 @tab 77 @tab @code{01110111} @tab @ref{Integers, INT=-24} -@item 120 @tab 78 @tab @code{01111000} @tab @ref{Integers, INT=-25} -@item 121 @tab 79 @tab @code{01111001} @tab @ref{Integers, INT=-26} -@item 122 @tab 7A @tab @code{01111010} @tab @ref{Integers, INT=-27} -@item 123 @tab 7B @tab @code{01111011} @tab @ref{Integers, INT=-28} -@item 124 @tab 7C @tab @code{01111100} @tab @ref{Integers, INT=-29} -@item 125 @tab 7D @tab @code{01111101} @tab @ref{Integers, INT=-30} -@item 126 @tab 7E @tab @code{01111110} @tab @ref{Integers, INT=-31} -@item 127 @tab 7F @tab @code{01111111} @tab @ref{Integers, INT=-32} -@item 128 @tab 80 @tab @code{10000000} @tab @ref{Strings, BIN=0} -@item 129 @tab 81 @tab @code{10000001} @tab @ref{Strings, BIN=1} -@item 130 @tab 82 @tab @code{10000010} @tab @ref{Strings, BIN=2} -@item 131 @tab 83 @tab @code{10000011} @tab @ref{Strings, BIN=3} -@item 132 @tab 84 @tab @code{10000100} @tab @ref{Strings, BIN=4} -@item 133 @tab 85 @tab @code{10000101} @tab @ref{Strings, BIN=5} -@item 134 @tab 86 @tab @code{10000110} @tab @ref{Strings, BIN=6} -@item 135 @tab 87 @tab @code{10000111} @tab @ref{Strings, BIN=7} -@item 136 @tab 88 @tab @code{10001000} @tab @ref{Strings, BIN=8} -@item 137 @tab 89 @tab @code{10001001} @tab @ref{Strings, BIN=9} -@item 138 @tab 8A @tab @code{10001010} @tab @ref{Strings, BIN=10} -@item 139 @tab 8B @tab @code{10001011} @tab @ref{Strings, BIN=11} -@item 140 @tab 8C @tab @code{10001100} @tab @ref{Strings, BIN=12} -@item 141 @tab 8D @tab @code{10001101} @tab @ref{Strings, BIN=13} -@item 142 @tab 8E @tab @code{10001110} @tab @ref{Strings, BIN=14} -@item 143 @tab 8F @tab @code{10001111} @tab @ref{Strings, BIN=15} -@item 144 @tab 90 @tab @code{10010000} @tab @ref{Strings, BIN=16} -@item 145 @tab 91 @tab @code{10010001} @tab @ref{Strings, BIN=17} -@item 146 @tab 92 @tab @code{10010010} @tab @ref{Strings, BIN=18} -@item 147 @tab 93 @tab @code{10010011} @tab @ref{Strings, BIN=19} -@item 148 @tab 94 @tab @code{10010100} @tab @ref{Strings, BIN=20} -@item 149 @tab 95 @tab @code{10010101} @tab @ref{Strings, BIN=21} -@item 150 @tab 96 @tab @code{10010110} @tab @ref{Strings, BIN=22} -@item 151 @tab 97 @tab @code{10010111} @tab @ref{Strings, BIN=23} -@item 152 @tab 98 @tab @code{10011000} @tab @ref{Strings, BIN=24} -@item 153 @tab 99 @tab @code{10011001} @tab @ref{Strings, BIN=25} -@item 154 @tab 9A @tab @code{10011010} @tab @ref{Strings, BIN=26} -@item 155 @tab 9B @tab @code{10011011} @tab @ref{Strings, BIN=27} -@item 156 @tab 9C @tab @code{10011100} @tab @ref{Strings, BIN=28} -@item 157 @tab 9D @tab @code{10011101} @tab @ref{Strings, BIN=29} -@item 158 @tab 9E @tab @code{10011110} @tab @ref{Strings, BIN=30} -@item 159 @tab 9F @tab @code{10011111} @tab @ref{Strings, BIN=31} -@item 160 @tab A0 @tab @code{10100000} @tab @ref{Strings, BIN=32} -@item 161 @tab A1 @tab @code{10100001} @tab @ref{Strings, BIN=33} -@item 162 @tab A2 @tab @code{10100010} @tab @ref{Strings, BIN=34} -@item 163 @tab A3 @tab @code{10100011} @tab @ref{Strings, BIN=35} -@item 164 @tab A4 @tab @code{10100100} @tab @ref{Strings, BIN=36} -@item 165 @tab A5 @tab @code{10100101} @tab @ref{Strings, BIN=37} -@item 166 @tab A6 @tab @code{10100110} @tab @ref{Strings, BIN=38} -@item 167 @tab A7 @tab @code{10100111} @tab @ref{Strings, BIN=39} -@item 168 @tab A8 @tab @code{10101000} @tab @ref{Strings, BIN=40} -@item 169 @tab A9 @tab @code{10101001} @tab @ref{Strings, BIN=41} -@item 170 @tab AA @tab @code{10101010} @tab @ref{Strings, BIN=42} -@item 171 @tab AB @tab @code{10101011} @tab @ref{Strings, BIN=43} -@item 172 @tab AC @tab @code{10101100} @tab @ref{Strings, BIN=44} -@item 173 @tab AD @tab @code{10101101} @tab @ref{Strings, BIN=45} -@item 174 @tab AE @tab @code{10101110} @tab @ref{Strings, BIN=46} -@item 175 @tab AF @tab @code{10101111} @tab @ref{Strings, BIN=47} -@item 176 @tab B0 @tab @code{10110000} @tab @ref{Strings, BIN=48} -@item 177 @tab B1 @tab @code{10110001} @tab @ref{Strings, BIN=49} -@item 178 @tab B2 @tab @code{10110010} @tab @ref{Strings, BIN=50} -@item 179 @tab B3 @tab @code{10110011} @tab @ref{Strings, BIN=51} -@item 180 @tab B4 @tab @code{10110100} @tab @ref{Strings, BIN=52} -@item 181 @tab B5 @tab @code{10110101} @tab @ref{Strings, BIN=53} -@item 182 @tab B6 @tab @code{10110110} @tab @ref{Strings, BIN=54} -@item 183 @tab B7 @tab @code{10110111} @tab @ref{Strings, BIN=55} -@item 184 @tab B8 @tab @code{10111000} @tab @ref{Strings, BIN=56} -@item 185 @tab B9 @tab @code{10111001} @tab @ref{Strings, BIN=57} -@item 186 @tab BA @tab @code{10111010} @tab @ref{Strings, BIN=58} -@item 187 @tab BB @tab @code{10111011} @tab @ref{Strings, BIN=59} -@item 188 @tab BC @tab @code{10111100} @tab @ref{Strings, BIN=60} -@item 189 @tab BD @tab @code{10111101} @tab @ref{Strings, BIN 8b} -@item 190 @tab BE @tab @code{10111110} @tab @ref{Strings, BIN 16b} -@item 191 @tab BF @tab @code{10111111} @tab @ref{Strings, BIN 64b} -@item 192 @tab C0 @tab @code{11000000} @tab @ref{Strings, STR=0} -@item 193 @tab C1 @tab @code{11000001} @tab @ref{Strings, STR=1} -@item 194 @tab C2 @tab @code{11000010} @tab @ref{Strings, STR=2} -@item 195 @tab C3 @tab @code{11000011} @tab @ref{Strings, STR=3} -@item 196 @tab C4 @tab @code{11000100} @tab @ref{Strings, STR=4} -@item 197 @tab C5 @tab @code{11000101} @tab @ref{Strings, STR=5} -@item 198 @tab C6 @tab @code{11000110} @tab @ref{Strings, STR=6} -@item 199 @tab C7 @tab @code{11000111} @tab @ref{Strings, STR=7} -@item 200 @tab C8 @tab @code{11001000} @tab @ref{Strings, STR=8} -@item 201 @tab C9 @tab @code{11001001} @tab @ref{Strings, STR=9} -@item 202 @tab CA @tab @code{11001010} @tab @ref{Strings, STR=10} -@item 203 @tab CB @tab @code{11001011} @tab @ref{Strings, STR=11} -@item 204 @tab CC @tab @code{11001100} @tab @ref{Strings, STR=12} -@item 205 @tab CD @tab @code{11001101} @tab @ref{Strings, STR=13} -@item 206 @tab CE @tab @code{11001110} @tab @ref{Strings, STR=14} -@item 207 @tab CF @tab @code{11001111} @tab @ref{Strings, STR=15} -@item 208 @tab D0 @tab @code{11010000} @tab @ref{Strings, STR=16} -@item 209 @tab D1 @tab @code{11010001} @tab @ref{Strings, STR=17} -@item 210 @tab D2 @tab @code{11010010} @tab @ref{Strings, STR=18} -@item 211 @tab D3 @tab @code{11010011} @tab @ref{Strings, STR=19} -@item 212 @tab D4 @tab @code{11010100} @tab @ref{Strings, STR=20} -@item 213 @tab D5 @tab @code{11010101} @tab @ref{Strings, STR=21} -@item 214 @tab D6 @tab @code{11010110} @tab @ref{Strings, STR=22} -@item 215 @tab D7 @tab @code{11010111} @tab @ref{Strings, STR=23} -@item 216 @tab D8 @tab @code{11011000} @tab @ref{Strings, STR=24} -@item 217 @tab D9 @tab @code{11011001} @tab @ref{Strings, STR=25} -@item 218 @tab DA @tab @code{11011010} @tab @ref{Strings, STR=26} -@item 219 @tab DB @tab @code{11011011} @tab @ref{Strings, STR=27} -@item 220 @tab DC @tab @code{11011100} @tab @ref{Strings, STR=28} -@item 221 @tab DD @tab @code{11011101} @tab @ref{Strings, STR=29} -@item 222 @tab DE @tab @code{11011110} @tab @ref{Strings, STR=30} -@item 223 @tab DF @tab @code{11011111} @tab @ref{Strings, STR=31} -@item 224 @tab E0 @tab @code{11100000} @tab @ref{Strings, STR=32} -@item 225 @tab E1 @tab @code{11100001} @tab @ref{Strings, STR=33} -@item 226 @tab E2 @tab @code{11100010} @tab @ref{Strings, STR=34} -@item 227 @tab E3 @tab @code{11100011} @tab @ref{Strings, STR=35} -@item 228 @tab E4 @tab @code{11100100} @tab @ref{Strings, STR=36} -@item 229 @tab E5 @tab @code{11100101} @tab @ref{Strings, STR=37} -@item 230 @tab E6 @tab @code{11100110} @tab @ref{Strings, STR=38} -@item 231 @tab E7 @tab @code{11100111} @tab @ref{Strings, STR=39} -@item 232 @tab E8 @tab @code{11101000} @tab @ref{Strings, STR=40} -@item 233 @tab E9 @tab @code{11101001} @tab @ref{Strings, STR=41} -@item 234 @tab EA @tab @code{11101010} @tab @ref{Strings, STR=42} -@item 235 @tab EB @tab @code{11101011} @tab @ref{Strings, STR=43} -@item 236 @tab EC @tab @code{11101100} @tab @ref{Strings, STR=44} -@item 237 @tab ED @tab @code{11101101} @tab @ref{Strings, STR=45} -@item 238 @tab EE @tab @code{11101110} @tab @ref{Strings, STR=46} -@item 239 @tab EF @tab @code{11101111} @tab @ref{Strings, STR=47} -@item 240 @tab F0 @tab @code{11110000} @tab @ref{Strings, STR=48} -@item 241 @tab F1 @tab @code{11110001} @tab @ref{Strings, STR=49} -@item 242 @tab F2 @tab @code{11110010} @tab @ref{Strings, STR=50} -@item 243 @tab F3 @tab @code{11110011} @tab @ref{Strings, STR=51} -@item 244 @tab F4 @tab @code{11110100} @tab @ref{Strings, STR=52} -@item 245 @tab F5 @tab @code{11110101} @tab @ref{Strings, STR=53} -@item 246 @tab F6 @tab @code{11110110} @tab @ref{Strings, STR=54} -@item 247 @tab F7 @tab @code{11110111} @tab @ref{Strings, STR=55} -@item 248 @tab F8 @tab @code{11111000} @tab @ref{Strings, STR=56} -@item 249 @tab F9 @tab @code{11111001} @tab @ref{Strings, STR=57} -@item 250 @tab FA @tab @code{11111010} @tab @ref{Strings, STR=58} -@item 251 @tab FB @tab @code{11111011} @tab @ref{Strings, STR=59} -@item 252 @tab FC @tab @code{11111100} @tab @ref{Strings, STR=60} -@item 253 @tab FD @tab @code{11111101} @tab @ref{Strings, STR 8b} -@item 254 @tab FE @tab @code{11111110} @tab @ref{Strings, STR 16b} -@item 255 @tab FF @tab @code{11111111} @tab @ref{Strings, STR 64b} +@item 000 @tab 00 @tab @code{00000000} @tab 0 @tab @ref{Containers, EOC} +@item 001 @tab 01 @tab @code{00000001} @tab 0 @tab @ref{Primitives, NIL} +@item 002 @tab 02 @tab @code{00000010} @tab 0 @tab @ref{Primitives, FALSE} +@item 003 @tab 03 @tab @code{00000011} @tab 0 @tab @ref{Primitives, TRUE} +@item 004 @tab 04 @tab @code{00000100} @tab 16 @tab @ref{UUID} +@item 005 @tab 05 @tab @code{00000101} @tab 0 @tab +@item 006 @tab 06 @tab @code{00000110} @tab 0 @tab +@item 007 @tab 07 @tab @code{00000111} @tab 0 @tab +@item 008 @tab 08 @tab @code{00001000} @tab 0 @tab @ref{Containers, LIST} +@item 009 @tab 09 @tab @code{00001001} @tab 0 @tab @ref{Containers, MAP} +@item 010 @tab 0A @tab @code{00001010} @tab 0 @tab +@item 011 @tab 0B @tab @code{00001011} @tab 8 @tab @ref{Blobs, BLOB} +@item 012 @tab 0C @tab @code{00001100} @tab 0 @tab +@item 013 @tab 0D @tab @code{00001101} @tab 0 @tab +@item 014 @tab 0E @tab @code{00001110} @tab 0 @tab +@item 015 @tab 0F @tab @code{00001111} @tab 0 @tab +@item 016 @tab 10 @tab @code{00010000} @tab 2 @tab @ref{Floats, FLOAT16} +@item 017 @tab 11 @tab @code{00010001} @tab 4 @tab @ref{Floats, FLOAT32} +@item 018 @tab 12 @tab @code{00010010} @tab 8 @tab @ref{Floats, FLOAT64} +@item 019 @tab 13 @tab @code{00010011} @tab 16 @tab @ref{Floats, FLOAT128} +@item 020 @tab 14 @tab @code{00010100} @tab 32 @tab @ref{Floats, FLOAT256} +@item 021 @tab 15 @tab @code{00010101} @tab 0 @tab +@item 022 @tab 16 @tab @code{00010110} @tab 0 @tab +@item 023 @tab 17 @tab @code{00010111} @tab 0 @tab +@item 024 @tab 18 @tab @code{00011000} @tab 8 @tab @ref{TAI64, TAI64} +@item 025 @tab 19 @tab @code{00011001} @tab 12 @tab @ref{TAI64, TAI64N} +@item 026 @tab 1A @tab @code{00011010} @tab 16 @tab @ref{TAI64, TAI64NA} +@item 027 @tab 1B @tab @code{00011011} @tab 0 @tab +@item 028 @tab 1C @tab @code{00011100} @tab 0 @tab +@item 029 @tab 1D @tab @code{00011101} @tab 0 @tab +@item 030 @tab 1E @tab @code{00011110} @tab 0 @tab +@item 031 @tab 1F @tab @code{00011111} @tab 0 @tab +@item 032 @tab 20 @tab @code{00100000} @tab 1 @tab @ref{Integers, +INT(len=1)} +@item 033 @tab 21 @tab @code{00100001} @tab 2 @tab @ref{Integers, +INT(len=2)} +@item 034 @tab 22 @tab @code{00100010} @tab 3 @tab @ref{Integers, +INT(len=3)} +@item 035 @tab 23 @tab @code{00100011} @tab 4 @tab @ref{Integers, +INT(len=4)} +@item 036 @tab 24 @tab @code{00100100} @tab 5 @tab @ref{Integers, +INT(len=5)} +@item 037 @tab 25 @tab @code{00100101} @tab 6 @tab @ref{Integers, +INT(len=6)} +@item 038 @tab 26 @tab @code{00100110} @tab 7 @tab @ref{Integers, +INT(len=7)} +@item 039 @tab 27 @tab @code{00100111} @tab 8 @tab @ref{Integers, +INT(len=8)} +@item 040 @tab 28 @tab @code{00101000} @tab 9 @tab @ref{Integers, +INT(len=9)} +@item 041 @tab 29 @tab @code{00101001} @tab 10 @tab @ref{Integers, +INT(len=10)} +@item 042 @tab 2A @tab @code{00101010} @tab 11 @tab @ref{Integers, +INT(len=11)} +@item 043 @tab 2B @tab @code{00101011} @tab 12 @tab @ref{Integers, +INT(len=12)} +@item 044 @tab 2C @tab @code{00101100} @tab 13 @tab @ref{Integers, +INT(len=13)} +@item 045 @tab 2D @tab @code{00101101} @tab 14 @tab @ref{Integers, +INT(len=14)} +@item 046 @tab 2E @tab @code{00101110} @tab 15 @tab @ref{Integers, +INT(len=15)} +@item 047 @tab 2F @tab @code{00101111} @tab 16 @tab @ref{Integers, +INT(len=16)} +@item 048 @tab 30 @tab @code{00110000} @tab 1 @tab @ref{Integers, -INT(len=1)} +@item 049 @tab 31 @tab @code{00110001} @tab 2 @tab @ref{Integers, -INT(len=2)} +@item 050 @tab 32 @tab @code{00110010} @tab 3 @tab @ref{Integers, -INT(len=3)} +@item 051 @tab 33 @tab @code{00110011} @tab 4 @tab @ref{Integers, -INT(len=4)} +@item 052 @tab 34 @tab @code{00110100} @tab 5 @tab @ref{Integers, -INT(len=5)} +@item 053 @tab 35 @tab @code{00110101} @tab 6 @tab @ref{Integers, -INT(len=6)} +@item 054 @tab 36 @tab @code{00110110} @tab 7 @tab @ref{Integers, -INT(len=7)} +@item 055 @tab 37 @tab @code{00110111} @tab 8 @tab @ref{Integers, -INT(len=8)} +@item 056 @tab 38 @tab @code{00111000} @tab 9 @tab @ref{Integers, -INT(len=9)} +@item 057 @tab 39 @tab @code{00111001} @tab 10 @tab @ref{Integers, -INT(len=10)} +@item 058 @tab 3A @tab @code{00111010} @tab 11 @tab @ref{Integers, -INT(len=11)} +@item 059 @tab 3B @tab @code{00111011} @tab 12 @tab @ref{Integers, -INT(len=12)} +@item 060 @tab 3C @tab @code{00111100} @tab 13 @tab @ref{Integers, -INT(len=13)} +@item 061 @tab 3D @tab @code{00111101} @tab 14 @tab @ref{Integers, -INT(len=14)} +@item 062 @tab 3E @tab @code{00111110} @tab 15 @tab @ref{Integers, -INT(len=15)} +@item 063 @tab 3F @tab @code{00111111} @tab 16 @tab @ref{Integers, -INT(len=16)} +@item 064 @tab 40 @tab @code{01000000} @tab 0 @tab @ref{Integers, INT=0} +@item 065 @tab 41 @tab @code{01000001} @tab 0 @tab @ref{Integers, INT=1} +@item 066 @tab 42 @tab @code{01000010} @tab 0 @tab @ref{Integers, INT=2} +@item 067 @tab 43 @tab @code{01000011} @tab 0 @tab @ref{Integers, INT=3} +@item 068 @tab 44 @tab @code{01000100} @tab 0 @tab @ref{Integers, INT=4} +@item 069 @tab 45 @tab @code{01000101} @tab 0 @tab @ref{Integers, INT=5} +@item 070 @tab 46 @tab @code{01000110} @tab 0 @tab @ref{Integers, INT=6} +@item 071 @tab 47 @tab @code{01000111} @tab 0 @tab @ref{Integers, INT=7} +@item 072 @tab 48 @tab @code{01001000} @tab 0 @tab @ref{Integers, INT=8} +@item 073 @tab 49 @tab @code{01001001} @tab 0 @tab @ref{Integers, INT=9} +@item 074 @tab 4A @tab @code{01001010} @tab 0 @tab @ref{Integers, INT=10} +@item 075 @tab 4B @tab @code{01001011} @tab 0 @tab @ref{Integers, INT=11} +@item 076 @tab 4C @tab @code{01001100} @tab 0 @tab @ref{Integers, INT=12} +@item 077 @tab 4D @tab @code{01001101} @tab 0 @tab @ref{Integers, INT=13} +@item 078 @tab 4E @tab @code{01001110} @tab 0 @tab @ref{Integers, INT=14} +@item 079 @tab 4F @tab @code{01001111} @tab 0 @tab @ref{Integers, INT=15} +@item 080 @tab 50 @tab @code{01010000} @tab 0 @tab @ref{Integers, INT=16} +@item 081 @tab 51 @tab @code{01010001} @tab 0 @tab @ref{Integers, INT=17} +@item 082 @tab 52 @tab @code{01010010} @tab 0 @tab @ref{Integers, INT=18} +@item 083 @tab 53 @tab @code{01010011} @tab 0 @tab @ref{Integers, INT=19} +@item 084 @tab 54 @tab @code{01010100} @tab 0 @tab @ref{Integers, INT=20} +@item 085 @tab 55 @tab @code{01010101} @tab 0 @tab @ref{Integers, INT=21} +@item 086 @tab 56 @tab @code{01010110} @tab 0 @tab @ref{Integers, INT=22} +@item 087 @tab 57 @tab @code{01010111} @tab 0 @tab @ref{Integers, INT=23} +@item 088 @tab 58 @tab @code{01011000} @tab 0 @tab @ref{Integers, INT=24} +@item 089 @tab 59 @tab @code{01011001} @tab 0 @tab @ref{Integers, INT=25} +@item 090 @tab 5A @tab @code{01011010} @tab 0 @tab @ref{Integers, INT=26} +@item 091 @tab 5B @tab @code{01011011} @tab 0 @tab @ref{Integers, INT=27} +@item 092 @tab 5C @tab @code{01011100} @tab 0 @tab @ref{Integers, INT=28} +@item 093 @tab 5D @tab @code{01011101} @tab 0 @tab @ref{Integers, INT=29} +@item 094 @tab 5E @tab @code{01011110} @tab 0 @tab @ref{Integers, INT=30} +@item 095 @tab 5F @tab @code{01011111} @tab 0 @tab @ref{Integers, INT=31} +@item 096 @tab 60 @tab @code{01100000} @tab 0 @tab @ref{Integers, INT=-1} +@item 097 @tab 61 @tab @code{01100001} @tab 0 @tab @ref{Integers, INT=-2} +@item 098 @tab 62 @tab @code{01100010} @tab 0 @tab @ref{Integers, INT=-3} +@item 099 @tab 63 @tab @code{01100011} @tab 0 @tab @ref{Integers, INT=-4} +@item 100 @tab 64 @tab @code{01100100} @tab 0 @tab @ref{Integers, INT=-5} +@item 101 @tab 65 @tab @code{01100101} @tab 0 @tab @ref{Integers, INT=-6} +@item 102 @tab 66 @tab @code{01100110} @tab 0 @tab @ref{Integers, INT=-7} +@item 103 @tab 67 @tab @code{01100111} @tab 0 @tab @ref{Integers, INT=-8} +@item 104 @tab 68 @tab @code{01101000} @tab 0 @tab @ref{Integers, INT=-9} +@item 105 @tab 69 @tab @code{01101001} @tab 0 @tab @ref{Integers, INT=-10} +@item 106 @tab 6A @tab @code{01101010} @tab 0 @tab @ref{Integers, INT=-11} +@item 107 @tab 6B @tab @code{01101011} @tab 0 @tab @ref{Integers, INT=-12} +@item 108 @tab 6C @tab @code{01101100} @tab 0 @tab @ref{Integers, INT=-13} +@item 109 @tab 6D @tab @code{01101101} @tab 0 @tab @ref{Integers, INT=-14} +@item 110 @tab 6E @tab @code{01101110} @tab 0 @tab @ref{Integers, INT=-15} +@item 111 @tab 6F @tab @code{01101111} @tab 0 @tab @ref{Integers, INT=-16} +@item 112 @tab 70 @tab @code{01110000} @tab 0 @tab @ref{Integers, INT=-17} +@item 113 @tab 71 @tab @code{01110001} @tab 0 @tab @ref{Integers, INT=-18} +@item 114 @tab 72 @tab @code{01110010} @tab 0 @tab @ref{Integers, INT=-19} +@item 115 @tab 73 @tab @code{01110011} @tab 0 @tab @ref{Integers, INT=-20} +@item 116 @tab 74 @tab @code{01110100} @tab 0 @tab @ref{Integers, INT=-21} +@item 117 @tab 75 @tab @code{01110101} @tab 0 @tab @ref{Integers, INT=-22} +@item 118 @tab 76 @tab @code{01110110} @tab 0 @tab @ref{Integers, INT=-23} +@item 119 @tab 77 @tab @code{01110111} @tab 0 @tab @ref{Integers, INT=-24} +@item 120 @tab 78 @tab @code{01111000} @tab 0 @tab @ref{Integers, INT=-25} +@item 121 @tab 79 @tab @code{01111001} @tab 0 @tab @ref{Integers, INT=-26} +@item 122 @tab 7A @tab @code{01111010} @tab 0 @tab @ref{Integers, INT=-27} +@item 123 @tab 7B @tab @code{01111011} @tab 0 @tab @ref{Integers, INT=-28} +@item 124 @tab 7C @tab @code{01111100} @tab 0 @tab @ref{Integers, INT=-29} +@item 125 @tab 7D @tab @code{01111101} @tab 0 @tab @ref{Integers, INT=-30} +@item 126 @tab 7E @tab @code{01111110} @tab 0 @tab @ref{Integers, INT=-31} +@item 127 @tab 7F @tab @code{01111111} @tab 0 @tab @ref{Integers, INT=-32} +@item 128 @tab 80 @tab @code{10000000} @tab 0 @tab @ref{Strings, BIN(len=0)} +@item 129 @tab 81 @tab @code{10000001} @tab 1 @tab @ref{Strings, BIN(len=1)} +@item 130 @tab 82 @tab @code{10000010} @tab 2 @tab @ref{Strings, BIN(len=2)} +@item 131 @tab 83 @tab @code{10000011} @tab 3 @tab @ref{Strings, BIN(len=3)} +@item 132 @tab 84 @tab @code{10000100} @tab 4 @tab @ref{Strings, BIN(len=4)} +@item 133 @tab 85 @tab @code{10000101} @tab 5 @tab @ref{Strings, BIN(len=5)} +@item 134 @tab 86 @tab @code{10000110} @tab 6 @tab @ref{Strings, BIN(len=6)} +@item 135 @tab 87 @tab @code{10000111} @tab 7 @tab @ref{Strings, BIN(len=7)} +@item 136 @tab 88 @tab @code{10001000} @tab 8 @tab @ref{Strings, BIN(len=8)} +@item 137 @tab 89 @tab @code{10001001} @tab 9 @tab @ref{Strings, BIN(len=9)} +@item 138 @tab 8A @tab @code{10001010} @tab 10 @tab @ref{Strings, BIN(len=10)} +@item 139 @tab 8B @tab @code{10001011} @tab 11 @tab @ref{Strings, BIN(len=11)} +@item 140 @tab 8C @tab @code{10001100} @tab 12 @tab @ref{Strings, BIN(len=12)} +@item 141 @tab 8D @tab @code{10001101} @tab 13 @tab @ref{Strings, BIN(len=13)} +@item 142 @tab 8E @tab @code{10001110} @tab 14 @tab @ref{Strings, BIN(len=14)} +@item 143 @tab 8F @tab @code{10001111} @tab 15 @tab @ref{Strings, BIN(len=15)} +@item 144 @tab 90 @tab @code{10010000} @tab 16 @tab @ref{Strings, BIN(len=16)} +@item 145 @tab 91 @tab @code{10010001} @tab 17 @tab @ref{Strings, BIN(len=17)} +@item 146 @tab 92 @tab @code{10010010} @tab 18 @tab @ref{Strings, BIN(len=18)} +@item 147 @tab 93 @tab @code{10010011} @tab 19 @tab @ref{Strings, BIN(len=19)} +@item 148 @tab 94 @tab @code{10010100} @tab 20 @tab @ref{Strings, BIN(len=20)} +@item 149 @tab 95 @tab @code{10010101} @tab 21 @tab @ref{Strings, BIN(len=21)} +@item 150 @tab 96 @tab @code{10010110} @tab 22 @tab @ref{Strings, BIN(len=22)} +@item 151 @tab 97 @tab @code{10010111} @tab 23 @tab @ref{Strings, BIN(len=23)} +@item 152 @tab 98 @tab @code{10011000} @tab 24 @tab @ref{Strings, BIN(len=24)} +@item 153 @tab 99 @tab @code{10011001} @tab 25 @tab @ref{Strings, BIN(len=25)} +@item 154 @tab 9A @tab @code{10011010} @tab 26 @tab @ref{Strings, BIN(len=26)} +@item 155 @tab 9B @tab @code{10011011} @tab 27 @tab @ref{Strings, BIN(len=27)} +@item 156 @tab 9C @tab @code{10011100} @tab 28 @tab @ref{Strings, BIN(len=28)} +@item 157 @tab 9D @tab @code{10011101} @tab 29 @tab @ref{Strings, BIN(len=29)} +@item 158 @tab 9E @tab @code{10011110} @tab 30 @tab @ref{Strings, BIN(len=30)} +@item 159 @tab 9F @tab @code{10011111} @tab 31 @tab @ref{Strings, BIN(len=31)} +@item 160 @tab A0 @tab @code{10100000} @tab 32 @tab @ref{Strings, BIN(len=32)} +@item 161 @tab A1 @tab @code{10100001} @tab 33 @tab @ref{Strings, BIN(len=33)} +@item 162 @tab A2 @tab @code{10100010} @tab 34 @tab @ref{Strings, BIN(len=34)} +@item 163 @tab A3 @tab @code{10100011} @tab 35 @tab @ref{Strings, BIN(len=35)} +@item 164 @tab A4 @tab @code{10100100} @tab 36 @tab @ref{Strings, BIN(len=36)} +@item 165 @tab A5 @tab @code{10100101} @tab 37 @tab @ref{Strings, BIN(len=37)} +@item 166 @tab A6 @tab @code{10100110} @tab 38 @tab @ref{Strings, BIN(len=38)} +@item 167 @tab A7 @tab @code{10100111} @tab 39 @tab @ref{Strings, BIN(len=39)} +@item 168 @tab A8 @tab @code{10101000} @tab 40 @tab @ref{Strings, BIN(len=40)} +@item 169 @tab A9 @tab @code{10101001} @tab 41 @tab @ref{Strings, BIN(len=41)} +@item 170 @tab AA @tab @code{10101010} @tab 42 @tab @ref{Strings, BIN(len=42)} +@item 171 @tab AB @tab @code{10101011} @tab 43 @tab @ref{Strings, BIN(len=43)} +@item 172 @tab AC @tab @code{10101100} @tab 44 @tab @ref{Strings, BIN(len=44)} +@item 173 @tab AD @tab @code{10101101} @tab 45 @tab @ref{Strings, BIN(len=45)} +@item 174 @tab AE @tab @code{10101110} @tab 46 @tab @ref{Strings, BIN(len=46)} +@item 175 @tab AF @tab @code{10101111} @tab 47 @tab @ref{Strings, BIN(len=47)} +@item 176 @tab B0 @tab @code{10110000} @tab 48 @tab @ref{Strings, BIN(len=48)} +@item 177 @tab B1 @tab @code{10110001} @tab 49 @tab @ref{Strings, BIN(len=49)} +@item 178 @tab B2 @tab @code{10110010} @tab 50 @tab @ref{Strings, BIN(len=50)} +@item 179 @tab B3 @tab @code{10110011} @tab 51 @tab @ref{Strings, BIN(len=51)} +@item 180 @tab B4 @tab @code{10110100} @tab 52 @tab @ref{Strings, BIN(len=52)} +@item 181 @tab B5 @tab @code{10110101} @tab 53 @tab @ref{Strings, BIN(len=53)} +@item 182 @tab B6 @tab @code{10110110} @tab 54 @tab @ref{Strings, BIN(len=54)} +@item 183 @tab B7 @tab @code{10110111} @tab 55 @tab @ref{Strings, BIN(len=55)} +@item 184 @tab B8 @tab @code{10111000} @tab 56 @tab @ref{Strings, BIN(len=56)} +@item 185 @tab B9 @tab @code{10111001} @tab 57 @tab @ref{Strings, BIN(len=57)} +@item 186 @tab BA @tab @code{10111010} @tab 58 @tab @ref{Strings, BIN(len=58)} +@item 187 @tab BB @tab @code{10111011} @tab 59 @tab @ref{Strings, BIN(len=59)} +@item 188 @tab BC @tab @code{10111100} @tab 60 @tab @ref{Strings, BIN(len=60)} +@item 189 @tab BD @tab @code{10111101} @tab 1+~ @tab @ref{Strings, BIN(len of 8b)} +@item 190 @tab BE @tab @code{10111110} @tab 2+~ @tab @ref{Strings, BIN(len of 16b)} +@item 191 @tab BF @tab @code{10111111} @tab 8+~ @tab @ref{Strings, BIN(len of 64b)} +@item 192 @tab C0 @tab @code{11000000} @tab 0 @tab @ref{Strings, STR(len=0)} +@item 193 @tab C1 @tab @code{11000001} @tab 1 @tab @ref{Strings, STR(len=1)} +@item 194 @tab C2 @tab @code{11000010} @tab 2 @tab @ref{Strings, STR(len=2)} +@item 195 @tab C3 @tab @code{11000011} @tab 3 @tab @ref{Strings, STR(len=3)} +@item 196 @tab C4 @tab @code{11000100} @tab 4 @tab @ref{Strings, STR(len=4)} +@item 197 @tab C5 @tab @code{11000101} @tab 5 @tab @ref{Strings, STR(len=5)} +@item 198 @tab C6 @tab @code{11000110} @tab 6 @tab @ref{Strings, STR(len=6)} +@item 199 @tab C7 @tab @code{11000111} @tab 7 @tab @ref{Strings, STR(len=7)} +@item 200 @tab C8 @tab @code{11001000} @tab 8 @tab @ref{Strings, STR(len=8)} +@item 201 @tab C9 @tab @code{11001001} @tab 9 @tab @ref{Strings, STR(len=9)} +@item 202 @tab CA @tab @code{11001010} @tab 10 @tab @ref{Strings, STR(len=10)} +@item 203 @tab CB @tab @code{11001011} @tab 11 @tab @ref{Strings, STR(len=11)} +@item 204 @tab CC @tab @code{11001100} @tab 12 @tab @ref{Strings, STR(len=12)} +@item 205 @tab CD @tab @code{11001101} @tab 13 @tab @ref{Strings, STR(len=13)} +@item 206 @tab CE @tab @code{11001110} @tab 14 @tab @ref{Strings, STR(len=14)} +@item 207 @tab CF @tab @code{11001111} @tab 15 @tab @ref{Strings, STR(len=15)} +@item 208 @tab D0 @tab @code{11010000} @tab 16 @tab @ref{Strings, STR(len=16)} +@item 209 @tab D1 @tab @code{11010001} @tab 17 @tab @ref{Strings, STR(len=17)} +@item 210 @tab D2 @tab @code{11010010} @tab 18 @tab @ref{Strings, STR(len=18)} +@item 211 @tab D3 @tab @code{11010011} @tab 19 @tab @ref{Strings, STR(len=19)} +@item 212 @tab D4 @tab @code{11010100} @tab 20 @tab @ref{Strings, STR(len=20)} +@item 213 @tab D5 @tab @code{11010101} @tab 21 @tab @ref{Strings, STR(len=21)} +@item 214 @tab D6 @tab @code{11010110} @tab 22 @tab @ref{Strings, STR(len=22)} +@item 215 @tab D7 @tab @code{11010111} @tab 23 @tab @ref{Strings, STR(len=23)} +@item 216 @tab D8 @tab @code{11011000} @tab 24 @tab @ref{Strings, STR(len=24)} +@item 217 @tab D9 @tab @code{11011001} @tab 25 @tab @ref{Strings, STR(len=25)} +@item 218 @tab DA @tab @code{11011010} @tab 26 @tab @ref{Strings, STR(len=26)} +@item 219 @tab DB @tab @code{11011011} @tab 27 @tab @ref{Strings, STR(len=27)} +@item 220 @tab DC @tab @code{11011100} @tab 28 @tab @ref{Strings, STR(len=28)} +@item 221 @tab DD @tab @code{11011101} @tab 29 @tab @ref{Strings, STR(len=29)} +@item 222 @tab DE @tab @code{11011110} @tab 30 @tab @ref{Strings, STR(len=30)} +@item 223 @tab DF @tab @code{11011111} @tab 31 @tab @ref{Strings, STR(len=31)} +@item 224 @tab E0 @tab @code{11100000} @tab 32 @tab @ref{Strings, STR(len=32)} +@item 225 @tab E1 @tab @code{11100001} @tab 33 @tab @ref{Strings, STR(len=33)} +@item 226 @tab E2 @tab @code{11100010} @tab 34 @tab @ref{Strings, STR(len=34)} +@item 227 @tab E3 @tab @code{11100011} @tab 35 @tab @ref{Strings, STR(len=35)} +@item 228 @tab E4 @tab @code{11100100} @tab 36 @tab @ref{Strings, STR(len=36)} +@item 229 @tab E5 @tab @code{11100101} @tab 37 @tab @ref{Strings, STR(len=37)} +@item 230 @tab E6 @tab @code{11100110} @tab 38 @tab @ref{Strings, STR(len=38)} +@item 231 @tab E7 @tab @code{11100111} @tab 39 @tab @ref{Strings, STR(len=39)} +@item 232 @tab E8 @tab @code{11101000} @tab 40 @tab @ref{Strings, STR(len=40)} +@item 233 @tab E9 @tab @code{11101001} @tab 41 @tab @ref{Strings, STR(len=41)} +@item 234 @tab EA @tab @code{11101010} @tab 42 @tab @ref{Strings, STR(len=42)} +@item 235 @tab EB @tab @code{11101011} @tab 43 @tab @ref{Strings, STR(len=43)} +@item 236 @tab EC @tab @code{11101100} @tab 44 @tab @ref{Strings, STR(len=44)} +@item 237 @tab ED @tab @code{11101101} @tab 45 @tab @ref{Strings, STR(len=45)} +@item 238 @tab EE @tab @code{11101110} @tab 46 @tab @ref{Strings, STR(len=46)} +@item 239 @tab EF @tab @code{11101111} @tab 47 @tab @ref{Strings, STR(len=47)} +@item 240 @tab F0 @tab @code{11110000} @tab 48 @tab @ref{Strings, STR(len=48)} +@item 241 @tab F1 @tab @code{11110001} @tab 49 @tab @ref{Strings, STR(len=49)} +@item 242 @tab F2 @tab @code{11110010} @tab 50 @tab @ref{Strings, STR(len=50)} +@item 243 @tab F3 @tab @code{11110011} @tab 51 @tab @ref{Strings, STR(len=51)} +@item 244 @tab F4 @tab @code{11110100} @tab 52 @tab @ref{Strings, STR(len=52)} +@item 245 @tab F5 @tab @code{11110101} @tab 53 @tab @ref{Strings, STR(len=53)} +@item 246 @tab F6 @tab @code{11110110} @tab 54 @tab @ref{Strings, STR(len=54)} +@item 247 @tab F7 @tab @code{11110111} @tab 55 @tab @ref{Strings, STR(len=55)} +@item 248 @tab F8 @tab @code{11111000} @tab 56 @tab @ref{Strings, STR(len=56)} +@item 249 @tab F9 @tab @code{11111001} @tab 57 @tab @ref{Strings, STR(len=57)} +@item 250 @tab FA @tab @code{11111010} @tab 58 @tab @ref{Strings, STR(len=58)} +@item 251 @tab FB @tab @code{11111011} @tab 59 @tab @ref{Strings, STR(len=59)} +@item 252 @tab FC @tab @code{11111100} @tab 60 @tab @ref{Strings, STR(len=60)} +@item 253 @tab FD @tab @code{11111101} @tab 1+~ @tab @ref{Strings, STR(len of 8b)} +@item 254 @tab FE @tab @code{11111110} @tab 2+~ @tab @ref{Strings, STR(len of 16b)} +@item 255 @tab FF @tab @code{11111111} @tab 8+~ @tab @ref{Strings, STR(len of 64b)} @end multitable -- 2.48.1