Implement much smarter code generation for UCD tables.
authorChris Hanson <org/chris-hanson/cph>
Fri, 10 Feb 2017 08:03:24 +0000 (00:03 -0800)
committerChris Hanson <org/chris-hanson/cph>
Fri, 10 Feb 2017 08:03:24 +0000 (00:03 -0800)
New generator generates character sets for binary-valued properties.
For code-point valued properties, it uses fixnum hash tables.
It also uses fixnum hash tables for the numeric-type property.

The end result of this is a considerable reduction in code size.

14 files changed:
src/etc/ucd-converter.scm
src/etc/ucd-raw-props/names.scm
src/runtime/chrset.scm
src/runtime/make.scm
src/runtime/runtime.pkg
src/runtime/ucd-table-alpha.scm
src/runtime/ucd-table-gc.scm
src/runtime/ucd-table-glue.scm [new file with mode: 0644]
src/runtime/ucd-table-lower.scm
src/runtime/ucd-table-nt.scm
src/runtime/ucd-table-slc.scm
src/runtime/ucd-table-suc.scm
src/runtime/ucd-table-upper.scm
src/runtime/ucd-table-wspace.scm

index b3cfa28874e86212319692724b747050a36135b6..bfc7dbdee95e239bb6a252a066ef5b47c9a806ad 100644 (file)
@@ -41,14 +41,69 @@ USA.
 ;;;
 ;;; (load ".../ucd-converter")
 ;;; (generate-standard-property-tables)
+\f
+;;;; UCD property metadata
+
+(define (well-formed-metadata-spec? object)
+  (and (list? object)
+       (= 3 (length object))
+       (string? (car object))
+       (symbol? (cadr object))
+       (property-type? (caddr object))))
 
+(define (property-type? object)
+  (or (simple-type? object)
+      (unmapped-enum-type? object)
+      (mapped-enum-type? object)
+      (regex-type? object)
+      (or-type? object)))
+
+(define (simple-type? object)
+  (case object
+    ((boolean byte code-point code-point? code-point* code-point+
+             list-of-script rational-or-nan string)
+     #t)
+    (else #f)))
+
+(define (unmapped-enum-type? object)
+  (and (list? object)
+       (>= (length object) 2)
+       (eq? 'enum (car object))
+       (every string? (cdr object))))
+
+(define (mapped-enum-type? object)
+  (and (list? object)
+       (>= (length object) 2)
+       (eq? 'enum (car object))
+       (every enum-value-map? (cdr object))))
+
+(define (mapped-enum-type-translations enum-type)
+  (cdr enum-type))
+
+(define (enum-value-map? object)
+  (and (pair? object)
+       (string? (car object))
+       (or (boolean? (cdr object))
+          (symbol? (cdr object)))))
+
+(define (regex-type? object)
+  (and (list? object)
+       (= 2 (length object))
+       (eq? 'regex (car object))
+       (string? (cadr object))))
+
+(define (or-type? object)
+  (and (list? object)
+       (= 3 (length object))
+       (eq? 'or (car object))
+       (string? (cadr object))
+       (simple-type? (caddr object))))
+\f
 (define this-directory
   (directory-pathname (current-load-pathname)))
 
 (define mit-scheme-root-pathname
   (merge-pathnames "../../" this-directory))
-\f
-;;;; Raw UCD attribute tables
 
 (define raw-directory
   (pathname-as-directory (merge-pathnames "ucd-raw-props" this-directory)))
@@ -58,59 +113,42 @@ USA.
 
 (define (read-ucd-property-metadata)
   (let ((properties (read-file (raw-file-name "names"))))
-    (for-each (lambda (metadata)
-               (if (not (and (list? metadata)
-                             (= 3 (length metadata))
-                             (string? (car metadata))
-                             (symbol? (cadr metadata))
-                             (property-type? (caddr metadata))))
-                   (error "Ill-formed property metadata record:" metadata)))
-             properties)
-    properties))
-
-(define (property-type? object)
-  (or (simple-property-type? object)
-      (and (pair? object)
-          (symbol? (car object))
-          (list? (cdr object))
-          (case (car object)
-            ((enum)
-             (or (every string? (cdr object))
-                 (every (lambda (elt)
-                          (and (pair? elt)
-                               (string? (car elt))
-                               (or (boolean? (cdr elt))
-                                   (symbol? (cdr elt)))))
-                        (cdr object))))
-            ((regex)
-             (and (= 2 (length object))
-                  (string? (cadr object))))
-            ((or)
-             (and (= 3 (length object))
-                  (string? (cadr object))
-                  (simple-property-type? (caddr object))))
-            (else #f)))))
-
-(define (simple-property-type? object)
-  (case object
-    ((boolean byte code-point code-point* code-point+ exact-rational
-             list-of-script string)
-     #t)
-    (else #f)))
+    (map (lambda (metadata)
+          (if (not (well-formed-metadata-spec? metadata))
+              (error "Ill-formed property metadata record:" metadata))
+          (make-metadata (car metadata)
+                         (cadr metadata)
+                         (caddr metadata)))
+        properties)))
+
+(define-record-type <metadata>
+    (make-metadata name full-name type-spec)
+    metadata?
+  (name metadata-name)
+  (full-name metadata-full-name)
+  (type-spec metadata-type-spec))
 
 (define ucd-property-metadata
   (read-ucd-property-metadata))
 
-(define all-ucd-prop-names
-  (map car ucd-property-metadata))
+(define (prop-metadata prop-name)
+  (let ((metadata
+        (find (lambda (metadata)
+                (string=? prop-name (metadata-name metadata)))
+              ucd-property-metadata)))
+    (if (not metadata)
+       (error "Unknown property name:" prop-name))
+    metadata))
 \f
+;;;; Raw UCD attribute tables
+
 (define (write-standard-property-files document)
   (let ((ucd-version (ucd-description document)))
     (call-with-output-file (ucd-version-file-name)
       (lambda (port)
        (write-line ucd-version port)))
-    (for-each (lambda (prop-name)
-               (write-prop-file prop-name ucd-version document))
+    (for-each (lambda (metadata)
+               (write-prop-file (metadata-name metadata) ucd-version document))
              all-ucd-prop-names)))
 
 (define (write-prop-file prop-name ucd-version document)
@@ -340,71 +378,9 @@ USA.
 (define (rebase-cpr cpr base)
   (make-cpr (fix:- (cpr-start cpr) base)
            (fix:- (cpr-end cpr) base)))
-\f
-;;;; Code-point range prefix encoding
-
-(define (split-prop-alist-by-prefix alist)
-  (append-map (lambda (p)
-                (let ((value (cdr p)))
-                  (map (lambda (cpr)
-                         (cons cpr value))
-                       (split-cpr-by-prefix (car p)))))
-              alist))
-
-(define (split-cpr-by-prefix cpr)
-  (let loop ((low (cpr-start cpr)) (high (fix:- (cpr-end cpr) 1)))
-    (if (fix:<= low high)
-        (receive (ll lh) (low-bracket low high)
-          (receive (hl hh) (high-bracket low high)
-            (if (fix:< low hl)
-                (if (fix:< lh high)
-                    (append (loop low lh)
-                            (loop (fix:+ lh 1) (fix:- hl 1))
-                            (loop hl high))
-                    (append (loop low (fix:- hl 1))
-                            (loop hl high)))
-                (if (fix:< lh high)
-                    (append (loop low lh)
-                            (loop (fix:+ lh 1) high))
-                    (list (make-cpr low (fix:+ high 1)))))))
-        '())))
-
-(define (low-bracket low high)
-  (receive (p n) (compute-low-prefix low high)
-    (bracket p n)))
-
-(define (high-bracket low high)
-  (receive (p n) (compute-high-prefix low high)
-    (bracket p n)))
-
-(define (bracket p n)
-  (let ((low (fix:lsh p n)))
-    (values low
-            (fix:or low (fix:- (fix:lsh 1 n) 1)))))
-
-(define (compute-low-prefix low high)
-  (let loop
-      ((low low)
-       (high high)
-       (n 0))
-    (if (and (fix:< low high)
-             (fix:= 0 (fix:and 1 low)))
-        (loop (fix:lsh low -1)
-              (fix:lsh high -1)
-              (fix:+ n 1))
-        (values low n))))
-
-(define (compute-high-prefix low high)
-  (let loop
-      ((low low)
-       (high high)
-       (n 0))
-    (if (and (fix:< low high)
-             (fix:= 1 (fix:and 1 high)))
-        (loop (fix:lsh low -1)
-              (fix:lsh high -1)
-              (fix:+ n 1))
-        (values high n))))
+
+(define (expand-cpr cpr)
+  (iota (cpr-size cpr) (cpr-start cpr)))
 \f
 ;;;; Code generator
 
@@ -465,17 +441,100 @@ USA.
 (define output-comments? #f)
 \f
 (define (generate-property-table-code prop-name)
-  (let ((prop-alist (read-prop-file prop-name))
-       (maker (entries-maker))
+  (let ((metadata (prop-metadata prop-name)))
+    (let ((generator
+          (let ((type-spec (metadata-type-spec metadata)))
+            (cond ((string=? "nt" prop-name)
+                   code-generator:nt)
+                  ((mapped-enum-type? type-spec)
+                   code-generator:mapped-enum)
+                  ((eq? 'boolean type-spec)
+                   code-generator:boolean)
+                  ((eq? 'code-point type-spec)
+                   code-generator:code-point)
+                  (else
+                   (error "Unsupported property type:" type-spec))))))
+      (generator prop-name
+                metadata
+                (read-prop-file prop-name)
+                (symbol "ucd-" (string-downcase prop-name) "-value")))))
+
+(define (code-generator:boolean prop-name metadata prop-alist proc-name)
+  (let ((char-set-name (symbol "char-set:" (metadata-full-name metadata))))
+    `((define (,proc-name sv)
+       (scalar-value-in-char-set? sv ,char-set-name))
+      (define-deferred ,char-set-name
+       (char-set*
+        ',(filter-map (lambda (value-map)
+                        (and (equal? "Y" (cdr value-map))
+                             (car value-map)))
+                      prop-alist))))))
+
+(define (code-generator:code-point prop-name metadata prop-alist proc-name)
+  (code-generator:hash-table prop-name metadata prop-alist proc-name
+                            (lambda (value)
+                              (and (string? value)
+                                   (not (string=? "#" value))))
+                            converter:code-point
+                            (lambda (sv-name)
+                              sv-name)))
+
+(define (code-generator:nt prop-name metadata prop-alist proc-name)
+  (code-generator:hash-table prop-name metadata prop-alist proc-name
+                            (lambda (value)
+                              (and (string? value)
+                                   (not (string=? "None" value))))
+                            (converter:mapped-enum metadata)
+                            #f))
+
+(define (code-generator:hash-table prop-name metadata prop-alist proc-name
+                                  keep-value? value-converter default-value)
+  (let ((table-name (symbol "char-map:" (metadata-full-name metadata)))
+       (mapping
+        (append-map (lambda (p)
+                      (map (let ((cp* (value-converter (cdr p))))
+                             (lambda (cp)
+                               (cons cp cp*)))
+                           (expand-cpr (car p))))
+                    (filter (lambda (p)
+                              (keep-value? (cdr p)))
+                            prop-alist))))
+    (with-notification
+     (lambda (port)
+       (write-string "UCD property " port)
+       (write-string prop-name port)
+       (write-string ": table pairs = " port)
+       (write (length mapping) port)))
+    `((define (,proc-name sv)
+       (hash-table-ref/default ,table-name sv
+                               ,(and default-value (default-value 'sv))))
+      (define-deferred ,table-name
+       ;; TODO(cph): this table uses fixnums as keys. It doesn't need to rehash
+       ;; on GC, but for now this is expedient.
+       (let ((table (make-strong-eq-hash-table)))
+         (for-each (lambda (p)
+                     (hash-table-set! table (car p) (cdr p)))
+                   ',mapping)
+         table)))))
+\f
+(define (code-generator:mapped-enum prop-name metadata prop-alist proc-name)
+  (let ((maker (entries-maker))
         (entry-count 0)
         (unique-entry-count 0)
         (byte-count 0)
-       (convert-value (value-converter prop-name)))
+       (convert-value (converter:mapped-enum metadata)))
 
     (define (make-value-code value)
-      (lambda (offsets-name sv-name table-name)
-       offsets-name
-        (values #f #f `(,sv-name ,table-name ,(convert-value value)))))
+      (let ((value*
+            (let ((converted (convert-value value)))
+              (if (or (symbol? converted)
+                      (list? converted)
+                      (vector? converted))
+                  `',converted
+                  converted))))
+       (lambda (offsets-name sv-name table-name)
+         offsets-name
+         (values #f #f `(,sv-name ,table-name ,value*)))))
 
     (define (make-node-code n-bits offset indexes)
       (receive (bytes-per-entry offsets-expr coder)
@@ -539,7 +598,8 @@ USA.
                                (length table-entries))
       (generate-top-level (ustring-downcase prop-name)
                           root-entry
-                          table-entries))))
+                          table-entries
+                         proc-name))))
 \f
 (define (report-table-statistics prop-name entry-count unique-entry-count
                                  byte-count n-entries)
@@ -557,18 +617,14 @@ USA.
      (write n-entries port)
      (write-string " words" port))))
 
-(define (generate-top-level prop-name root-entry table-entries)
+(define (generate-top-level prop-name root-entry table-entries proc-name)
   (let ((table-name (symbol "ucd-" prop-name "-entries"))
         (entry-names
          (map (lambda (index)
                 (symbol "ucd-" prop-name "-entry-" index))
               (iota (length table-entries)))))
 
-    `(,@(generate-entry-definition (symbol "ucd-" prop-name "-value")
-                                   root-entry
-                                   'sv
-                                   table-name
-                                   '(sv))
+    `(,@(generate-entry-definition proc-name root-entry 'sv table-name '(sv))
 
       ,@(append-map (lambda (name entry)
                       (generate-entry-definition name entry
@@ -809,139 +865,53 @@ USA.
 \f
 ;;;; Value conversions
 
-(define (enum-converter name translations)
-  (lambda (value)
-    (if value
-       (let ((p
-              (find (lambda (p)
-                      (ustring=? value (car p)))
-                    translations)))
-         (if (not p)
-             (error (ustring-append "Illegal " name " value:") value))
-         (cdr p))
-       (default-object))))
-
-(define converter:category
-  (enum-converter "category"
-                 '(("Lu" . letter:uppercase)
-                   ("Ll" . letter:lowercase)
-                   ("Lt" . letter:titlecase)
-                   ("Lm" . letter:modifier)
-                   ("Lo" . letter:other)
-                   ("Mn" . mark:nonspacing)
-                   ("Mc" . mark:spacing-combining)
-                   ("Me" . mark:enclosing)
-                   ("Nd" . number:decimal-digit)
-                   ("Nl" . number:letter)
-                   ("No" . number:other)
-                   ("Pc" . punctuation:connector)
-                   ("Pd" . punctuation:dash)
-                   ("Ps" . punctuation:open)
-                   ("Pe" . punctuation:close)
-                   ("Pi" . punctuation:initial-quote)
-                   ("Pf" . punctuation:final-quote)
-                   ("Po" . punctuation:other)
-                   ("Sm" . symbol:math)
-                   ("Sc" . symbol:currency)
-                   ("Sk" . symbol:modifier)
-                   ("So" . symbol:other)
-                   ("Zs" . separator:space)
-                   ("Zl" . separator:line)
-                   ("Zp" . separator:paragraph)
-                   ("Cc" . other:control)
-                   ("Cf" . other:format)
-                   ("Cs" . other:surrogate)
-                   ("Co" . other:private-use)
-                   ("Cn" . other:not-assigned))))
-
-(define converter:boolean
-  (enum-converter "boolean"
-                 '(("N" . #f)
-                   ("Y" . #t))))
-
-(define converter:numeric-type
-  (enum-converter "numeric-type"
-                 '(("None" . #f)
-                   ("De" . decimal)
-                   ("Di" . digit)
-                   ("Nu" . numeric))))
-\f
-(define (converter:single-code-point value)
+(define (converter:mapped-enum metadata)
+  (let ((name (symbol->string (metadata-full-name metadata)))
+       (translations
+        (mapped-enum-type-translations (metadata-type-spec metadata))))
+    (lambda (value)
+      (if value
+         (let ((p
+                (find (lambda (p)
+                        (ustring=? value (car p)))
+                      translations)))
+           (if (not p)
+               (error (ustring-append "Illegal " name " value:") value))
+           (cdr p))
+         (default-object)))))
+
+(define (converter:code-point value)
   (cond ((not value) (default-object))
        ((ustring=? value "#") #f)
-       ((string->number value 16)
-        => (lambda (cp)
-             (if (not (unicode-code-point? cp))
-                 (error "Illegal code-point value:" value))
-             cp))
-       (else (error "Illegal code-point value:" value))))
-
-(define (converter:zero-or-more-code-points value)
-  (convert-code-points value #t))
+       (else (string->cp value))))
 
-(define (converter:one-or-more-code-points value)
-  (convert-code-points value #f))
-
-(define (convert-code-points value zero-ok?)
+(define (converter:code-point? value)
   (cond ((not value) (default-object))
-       ((ustring=? value "#") #f)
-       ((ustring=? value "")
-        (if (not zero-ok?)
-            (error "At least one code point required:"  value))
-        '())
-       (else
-        (map (lambda (part)
-               (let ((cp (string->number part 16 #t)))
-                 (if (not (unicode-code-point? cp))
-                     (error "Illegal code-points value:" value))
-                 cp))
-             (code-points-splitter value)))))
+       ((ustring=? value "") #f)
+       (else (string->cp value))))
+
+(define (code-points-converter zero-ok?)
+  (lambda (value)
+    (cond ((not value) (default-object))
+         ((ustring=? value "#") #f)
+         ((ustring=? value "")
+          (if (not zero-ok?)
+              (error "At least one code point required:"  value))
+          '())
+         (else
+          (map string->cp (code-points-splitter value))))))
+
+(define (string->cp string)
+  (let ((cp (string->number string 16 #t)))
+    (if (not (unicode-code-point? cp))
+       (error "Illegal code-point value:" string))
+    cp))
 
 (define code-points-splitter
   (string-splitter #\space #f))
-\f
-(define (value-converter prop-name)
-  (let ((p
-        (find (lambda (p)
-                (ustring=? prop-name (car p)))
-              value-converters)))
-    (if (not p)
-       (error "Unsupported property:" prop-name))
-    (maybe-quote (cdr p))))
-
-;;; Converted values must be constant expressions.
-(define (maybe-quote converter)
-  (lambda (value)
-    (let ((converted (converter value)))
-      (if (or (symbol? converted)
-             (list? converted)
-             (vector? converted))
-         `',converted
-         converted))))
-
-(define value-converters
-  (list (cons "Alpha" converter:boolean)
-       (cons "CI" converter:boolean)
-       (cons "CWCF" converter:boolean)
-       (cons "CWCM" converter:boolean)
-       (cons "CWKCF" converter:boolean)
-       (cons "CWL" converter:boolean)
-       (cons "CWT" converter:boolean)
-       (cons "CWU" converter:boolean)
-       (cons "Cased" converter:boolean)
-       (cons "Lower" converter:boolean)
-       (cons "NFKC_CF" converter:zero-or-more-code-points)
-       (cons "OLower" converter:boolean)
-       (cons "OUpper" converter:boolean)
-       (cons "Upper" converter:boolean)
-       (cons "WSpace" converter:boolean)
-       (cons "cf" converter:one-or-more-code-points)
-       (cons "gc" converter:category)
-       (cons "lc" converter:one-or-more-code-points)
-       (cons "nt" converter:numeric-type)
-       (cons "scf" converter:single-code-point)
-       (cons "slc" converter:single-code-point)
-       (cons "stc" converter:single-code-point)
-       (cons "suc" converter:single-code-point)
-       (cons "tc" converter:one-or-more-code-points)
-       (cons "uc" converter:one-or-more-code-points)))
\ No newline at end of file
+
+(define converter:code-point*
+  (code-points-converter #t))
+
+(define converter:code-point+
+  (code-points-converter #f))
\ No newline at end of file
index 103f3965f984f0add9dfb520f1a6e0a6455200f3..ab5efa525c572fc3472f7de71e0fa42f508ab4f5 100644 (file)
@@ -51,7 +51,7 @@ USA.
 ("Dep" deprecated boolean)
 ("Dia" diacritic boolean)
 ("Ext" extender boolean)
-("FC_NFKC" fc-nfkc-closure (or "#" code-point+))
+("FC_NFKC" fc-nfkc-closure code-point+)
 ("GCB" grapheme-cluster-break
  (enum "CN" "CR" "EB" "EBG" "EM" "EX" "GAZ" "L"  "LF"  "LV" "LVT"
        "PP" "RI" "SM" "T" "V" "XX" "ZWJ"))
@@ -141,7 +141,7 @@ USA.
 ("NChar" noncharactor-code-point boolean)
 ("NFC_QC" nfc-quick-check (enum "Y" "N" "M"))
 ("NFD_QC" nfd-quick-check (enum "Y" "N"))
-("NFKC_CF" nfkc-case-fold (or "#" code-point*))
+("NFKC_CF" nfkc-case-fold code-point*)
 ("NFKC_QC" nfkc-quick-check (enum "Y" "N" "M"))
 ("NFKD_QC" nfkd-quick-check (enum "Y" "N"))
 ("OAlpha" other-alphabetic boolean)
@@ -457,12 +457,12 @@ USA.
        "Yi_Radicals"
        "Yi_Syllables"
        "Yijing"))
-("bmg" mirror-image (or "" code-point))
-("bpb" bidi-paired-bracket (or "#" code-point))
+("bmg" mirror-image code-point?)
+("bpb" bidi-paired-bracket code-point)
 ("bpt" bidi-paired-bracket-type (enum "o" "c" "n"))
 ("ccc" combining-class byte)           ;<= 254
-("cf" case-folding (or "#" code-point+))
-("dm" decomposition-mapping (or "#" code-point*))
+("cf" case-folding code-point+)
+("dm" decomposition-mapping code-point*)
 ("dt" decomposition-type
  (enum "can"  "com" "enc" "fin"  "font" "fra" "init" "iso" "med"
        "nar"  "nb" "sml" "sqr"  "sub" "sup" "vert" "wide" "none"))
@@ -554,7 +554,7 @@ USA.
        "EM" "EX" "GL" "H2" "H3" "HL" "HY" "ID" "IN" "IS" "JL" "JT" "JV"
        "LF" "NL" "NS" "NU" "OP" "PO" "PR" "QU" "RI" "SA" "SG" "SP" "SY"
        "WJ" "XX" "ZW" "ZWJ"))
-("lc" lower-case (or "#" code-point+))
+("lc" lower-case code-point+)
 ("na" name string)
 ("na1" name string)
 ("nt" numeric-type
@@ -562,7 +562,7 @@ USA.
        ("De" . decimal)
        ("Di" . digit)
        ("Nu" . numeric)))
-("nv" numeric-value (or "NaN" exact-rational))
+("nv" numeric-value rational-or-nan)
 ("sc" script
  (enum "Adlm" "Aghb" "Ahom" "Arab" "Armi" "Armn" "Avst"
        "Bali" "Bamu" "Bass" "Batk" "Beng" "Bhks"
@@ -598,10 +598,10 @@ USA.
        "Xpeo" "Xsux"
        "Yiii"
        "Zinh" "Zyyy" "Zzzz"))
-("scf" simple-case-folding (or "#" code-point))
+("scf" simple-case-folding code-point)
 ("scx" script-extension list-of-script)
-("slc" simple-lower-case (or "#" code-point))
-("stc" simple-title-case (or "#" code-point))
-("suc" simple-upper-case (or "#" code-point))
-("tc" title-case (or "#" code-point+))
-("uc" upper-case (or "#" code-point+))
+("slc" simple-lower-case code-point)
+("stc" simple-title-case code-point)
+("suc" simple-upper-case code-point)
+("tc" title-case code-point+)
+("uc" upper-case code-point+)
index 747d685a826c041d7adc9fff66526cb2593b05e8..0d3897d04367da6851b464474cd6da8c9b541093 100644 (file)
@@ -550,53 +550,7 @@ USA.
 
       (loop 0 #f 0 #f #f 0))))
 \f
-;;;; Standard character sets
-
-(define-deferred char-set:alphabetic
-  (compute-char-set
-   (lambda (sv)
-     (eq? #t (ucd-alpha-value sv)))))
-
-(define-deferred char-set:numeric
-  (compute-char-set
-   (lambda (sv)
-     (eq? 'decimal (ucd-nt-value sv)))))
-
-(define-deferred char-set:whitespace
-  (compute-char-set
-   (lambda (sv)
-     (eq? #t (ucd-wspace-value sv)))))
-
-(define-deferred char-set:upper-case
-  (compute-char-set
-   (lambda (sv)
-     (eq? #t (ucd-upper-value sv)))))
-
-(define-deferred char-set:lower-case
-  (compute-char-set
-   (lambda (sv)
-     (eq? #t (ucd-lower-value sv)))))
-
-(define-deferred char-set:not-upper-case (char-set-invert char-set:upper-case))
-(define-deferred char-upper-case? (char-set-predicate char-set:upper-case))
-
-(define-deferred char-set:not-lower-case (char-set-invert char-set:lower-case))
-(define-deferred char-lower-case? (char-set-predicate char-set:lower-case))
-
-(define-deferred char-set:not-numeric (char-set-invert char-set:numeric))
-(define-deferred char-numeric? (char-set-predicate char-set:numeric))
-
-(define-deferred char-set:not-whitespace (char-set-invert char-set:whitespace))
-(define-deferred char-whitespace? (char-set-predicate char-set:whitespace))
-
-(define-deferred char-set:not-alphabetic (char-set-invert char-set:alphabetic))
-(define-deferred char-alphabetic? (char-set-predicate char-set:alphabetic))
-
-(define-deferred char-set:alphanumeric
-  (char-set-union char-set:alphabetic char-set:numeric))
-(define-deferred char-set:not-alphanumeric
-  (char-set-invert char-set:alphanumeric))
-(define-deferred char-alphanumeric? (char-set-predicate char-set:alphanumeric))
+;;;; Non-Unicode character sets
 
 (define-deferred char-set:graphic
   (char-set* '((#x20 . #x7F) (#xA0 . #x100))))
@@ -620,45 +574,7 @@ USA.
 
 (define-deferred char-set:wsp (char-set #\space #\tab))
 (define-deferred char-wsp? (char-set-predicate char-set:wsp))
-\f
-;;;; Scheme language:
-
-(define (symbol-constituent? sv)
-  (case sv
-    ;; #\" #\# #\' #\, #\; #\\ #\` #\|
-    ((#x22 #x23 #x27 #x2c #x3b #x5c #x60 #x7c) #f)
-    ((#x200C #x200D) #t)
-    (else
-     (case (unicode-code-point-general-category sv)
-       ((letter:uppercase
-        letter:lowercase
-        letter:titlecase
-        letter:modifier
-        letter:other
-        mark:nonspacing
-        number:letter
-        number:other
-        punctuation:connector
-        punctuation:dash
-        punctuation:other
-        symbol:math
-        symbol:currency
-        symbol:modifier
-        symbol:other
-        other:private-use)
-       #t)
-       ((mark:spacing-combining
-        mark:enclosing
-        number:decimal-digit)
-       'subsequent-only)
-       (else #f)))))
-
-(define-deferred char-set:symbol-constituent
-  (compute-char-set symbol-constituent?))
-
-(define-deferred char-set:symbol-initial
-  (compute-char-set (lambda (sv) (eq? #t (symbol-constituent? sv)))))
-\f
+
 ;;;; Backwards compatibility
 
 (define (char-set-member? char-set char)
index f9043085698de940d2bcd6d6ba3bd92f7cc3f3c7..21abcc8914228acecada3a1a751a0b35a6d6e3c3 100644 (file)
@@ -441,7 +441,6 @@ USA.
    (RUNTIME NUMBER)
    ((RUNTIME NUMBER) INITIALIZE-DRAGON4!)
    (RUNTIME MISCELLANEOUS-GLOBAL)
-   (RUNTIME UCD-TABLES)
    (RUNTIME CHARACTER)
    (RUNTIME BYTEVECTOR)
    (RUNTIME CHARACTER-SET)
@@ -451,6 +450,8 @@ USA.
    (RUNTIME LAMBDA-ABSTRACTION)
    (RUNTIME HASH-TABLE)
    (RUNTIME MEMOIZER)
+   (RUNTIME UCD-TABLES)
+   (RUNTIME UCD-TABLE-GLUE)
    (RUNTIME PREDICATE-METADATA)
    (RUNTIME PREDICATE-LATTICE)
    (RUNTIME PREDICATE-TAGGING)
index b35d6952957dcf840adb48149ad59049a7a57136..0a314dc94f2eee2abcd1d86c037baa238ddb7927 100644 (file)
@@ -1408,16 +1408,38 @@ USA.
         "ucd-table-upper"
         "ucd-table-wspace")
   (parent (runtime))
+  (export ()
+         (char-set:whitespace char-set:white-space)
+         char-set:alphabetic
+         char-set:lower-case
+         char-set:upper-case)
   (export (runtime character)
          ucd-gc-value
          ucd-slc-value
          ucd-suc-value)
-  (export (runtime character-set)
-         ucd-alpha-value
-         ucd-lower-value
-         ucd-nt-value
-         ucd-upper-value
-         ucd-wspace-value))
+  (export (runtime ucd-table-glue)
+         ucd-nt-value))
+
+(define-package (runtime ucd-table-glue)
+  (files "ucd-table-glue")
+  (parent (runtime))
+  (export ()
+         char-alphabetic?
+         char-alphanumeric?
+         char-lower-case?
+         char-numeric?
+         char-set:alphanumeric
+         char-set:not-alphabetic
+         char-set:not-alphanumeric
+         char-set:not-lower-case
+         char-set:not-numeric
+         char-set:not-upper-case
+         char-set:not-whitespace
+         char-set:numeric
+         char-set:symbol-constituent
+         char-set:symbol-initial
+         char-upper-case?
+         char-whitespace?))
 
 (define-package (runtime character-set)
   (files "chrset")
@@ -1434,13 +1456,9 @@ USA.
          ;; END deprecated bindings
          8-bit-char-set?
          ascii-range->char-set
-         char-alphabetic?
-         char-alphanumeric?
          char-ctl?
          char-graphic?
          char-in-set?
-         char-lower-case?
-         char-numeric?
          char-set
          char-set*
          char-set->code-points
@@ -1452,33 +1470,17 @@ USA.
          char-set-predicate
          char-set-union
          char-set-union*
-         char-set:alphabetic
-         char-set:alphanumeric
          char-set:ascii
          char-set:ctls
          char-set:graphic
-         char-set:lower-case
          char-set:newline
-         char-set:not-alphabetic
-         char-set:not-alphanumeric
          char-set:not-graphic
-         char-set:not-lower-case
-         char-set:not-numeric
          char-set:not-standard
-         char-set:not-upper-case
-         char-set:not-whitespace
-         char-set:numeric
          char-set:standard
-         char-set:upper-case
-         char-set:whitespace
          char-set:wsp
-         char-set:symbol-constituent
-         char-set:symbol-initial
          char-set=?
          char-set?
          char-standard?
-         char-upper-case?
-         char-whitespace?
          char-wsp?
          code-point-list?
          char-set*
index 26c63823a6e6bc1d5405dc86eb9eed7054105e5b..e1d7f6e3c153356f6eb42ddf09631c47e1374653 100644 (file)
@@ -26,906 +26,24 @@ USA.
 
 ;;;; UCD property: Alpha
 
-;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T00:05:05-08
+;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T23:45:15-08
 
 (declare (usual-integrations))
 \f
-
-(define-deferred ucd-alpha-value
-  (let ((offsets (bytevector 58 115 121 2 2 2 2 2 2 2 2 2 2 2 124 126 126)))
-    (named-lambda (ucd-alpha-value sv)
-      ((vector-ref ucd-alpha-entries (bytevector-u8-ref offsets (fix:and 31 (fix:lsh sv -16)))) sv ucd-alpha-entries))))
-
-(define (ucd-alpha-entry-0 sv table)
-  sv
-  table
-  #f)
-
-(define (ucd-alpha-entry-1 sv table)
-  sv
-  table
-  #t)
-
-(define (ucd-alpha-entry-2 sv table)
-  sv
-  table
-  #!default)
-
-
-(define-deferred ucd-alpha-entry-3
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-3 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-4
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-4 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-5
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 2 2 1 1 1 1 0 1 2 2 2 2 0 0 1 0 1 1 1 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-5 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-6
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-6 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-7
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 0 2 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 1 0 1 1 0 1 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 1 1 1 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-7 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-8
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 2 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 1)))
-    (named-lambda (ucd-alpha-entry-8 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-9
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-9 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-10
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-10 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-11
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 2 2 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 2 2 2 1 1 1 1 2 2 0 1 1 1 1 1 1 1 1 2 2 1 1 2 2 1 1 0 1 2 2 2 2 2 2 2 2 1 2 2 2 2 1 1 2 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-11 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-12
-  (let ((offsets (bytevector 2 1 1 1 2 1 1 1 1 1 1 2 2 2 2 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 2 1 1 2 1 1 2 2 0 2 1 1 1 1 1 2 2 2 2 1 1 2 2 1 1 0 2 2 2 1 2 2 2 2 2 2 2 1 1 1 1 2 1 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 1 1 1 2 1 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 2 2 0 1 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 0 2 2 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 1 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-12 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-13
-  (let ((offsets (bytevector 2 1 1 1 2 1 1 1 1 1 1 1 1 2 2 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 2 2 0 1 1 1 1 1 1 1 1 2 2 1 1 2 2 1 1 0 2 2 2 2 2 2 2 2 1 1 2 2 2 2 1 1 2 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 1 1 2 1 1 1 1 1 1 2 2 2 1 1 1 2 1 1 1 1 2 2 2 1 1 2 1 2 1 1 2 2 2 1 1 2 2 2 1 1 1 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 2 2 2 1 1 1 2 1 1 1 0 2 2 1 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-13 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-14
-  (let ((offsets (bytevector 1 1 1 1 2 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 0 2 2 2 2 2 2 2 1 1 2 1 1 1 2 2 2 2 2 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 1 1 1 1 2 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 2 2 0 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 0 2 2 2 2 2 2 2 1 1 2 2 2 2 2 2 2 1 2 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 2 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-14 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-15
-  (let ((offsets (bytevector 2 1 1 1 2 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 0 1 0 2 2 2 2 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 2 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 2 1 2 2 1 1 1 1 1 1 1 2 2 2 0 2 2 2 2 1 1 1 1 1 1 2 1 2 1 1 1 1 1 1 1 1 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 1 1 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-15 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-16
-  (let ((offsets (bytevector 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 0 1 1 1 1 1 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 2 1 2 2 1 1 2 1 2 2 1 2 2 2 2 2 2 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 2 1 2 1 2 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 2 2 1 1 1 1 1 2 1 2 0 0 0 0 0 1 2 2 0 0 0 0 0 0 0 0 0 0 2 2 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-16 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-17
-  (let ((offsets (bytevector 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-17 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-18
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 2 2 2 2 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-18 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-19
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 2 1 1 1 1 1 1 1 2 1 2 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 2 1 1 1 1 1 1 1 2 1 2 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-19 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-20
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 2 2)))
-    (named-lambda (ucd-alpha-entry-20 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-21
-  (let ((offsets (bytevector 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-21 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-22
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-22 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-23
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 0 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-23 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-24
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-24 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-25
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 1 1 1 0 0 0 2 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-25 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-26
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-26 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-27
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 2 2 2 2 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-27 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-28
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 1 1 1 1 0 1 1 2 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-28 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-29
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 2 2 2 2 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-29 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-30
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 2 1 2 1 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 2 1 1 1 1 1 1 1 0 0 0 1 1 1 1 2 2 1 1 1 1 1 1 2 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 2 2 1 1 1 2 1 1 1 1 1 1 1 0 0 2)))
-    (named-lambda (ucd-alpha-entry-30 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-31
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 1 2 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-31 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-32
-  (let ((offsets (bytevector 0 0 1 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-32 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-33
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-alpha-entry-33 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-34
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-34 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-35
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-35 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-36
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 1 1 2 2 2 2 2 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-36 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-37
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 2 2 2 2 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 1 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-37 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-38
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-38 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-39
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-39 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-40
-  (let ((offsets (bytevector 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 0 0 1 1 1 1 1 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-40 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-41
-  (let ((offsets (bytevector 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-41 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-42
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-alpha-entry-42 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-43
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-43 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-44
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-44 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-45
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0)))
-    (named-lambda (ucd-alpha-entry-45 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-46
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-46 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-47
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-47 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-48
-  (let ((offsets (bytevector 1 1 0 1 1 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 1 0 1 2 2)))
-    (named-lambda (ucd-alpha-entry-48 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-49
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 2 2 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 2)))
-    (named-lambda (ucd-alpha-entry-49 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-50
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-50 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-51
-  (let ((offsets (bytevector 2 1 1 1 1 1 1 2 2 1 1 1 1 1 1 2 2 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-51 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-52
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-52 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-53
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-53 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-54
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 2 1 2 1 1 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-54 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-55
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2)))
-    (named-lambda (ucd-alpha-entry-55 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-56
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 2 2 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0)))
-    (named-lambda (ucd-alpha-entry-56 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-57
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 2 2 1 1 1 1 1 1 2 2 1 1 1 1 1 1 2 2 1 1 1 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-alpha-entry-57 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-58
-  (let ((offsets (bytevector 3 1 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 19 20 21 1 22 23 24 25 26 27 28 29 1 30 31 32 0 33 34 0 0 0 0 0 0 35 36 37 38 39 40 41 42 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 43 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 44 1 1 1 1 45 1 46 47 48 49 50 51 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 52 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 53 54 1 55 56 57)))
-    (named-lambda (ucd-alpha-entry-58 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-59
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-59 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-60
-  (let ((offsets (bytevector 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-alpha-entry-60 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-61
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-61 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-62
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 1 1 0 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-62 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-63
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-63 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-64
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-64 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-65
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-65 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-66
-  (let ((offsets (bytevector 1 1 1 1 1 1 2 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 2 2 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 2 2 2 2 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-66 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-67
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 2 2 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-67 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-68
-  (let ((offsets (bytevector 1 1 1 1 2 1 1 2 2 2 2 2 1 1 1 1 1 1 1 1 2 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-68 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-69
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-69 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-70
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-70 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-71
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-71 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-72
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-72 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-73
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-73 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-74
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 0 0 0 0 0 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 2 1 2 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 0 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-74 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-75
-  (let ((offsets (bytevector 1 1 1 1 2 1 1 1 1 1 1 1 1 2 2 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 2 2 0 1 1 1 1 1 1 1 1 2 2 1 1 2 2 1 1 0 2 2 1 2 2 2 2 2 2 1 2 2 2 2 2 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-75 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-76
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-76 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-77
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-77 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-78
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 1 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-78 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-79
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-79 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-80
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 1)))
-    (named-lambda (ucd-alpha-entry-80 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-81
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-81 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-82
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 0 1 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-82 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-83
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-83 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-84
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-84 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-85
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-85 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-86
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-86 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-87
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-87 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-88
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-88 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-89
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-89 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-90
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-90 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-91
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-91 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-92
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-92 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-93
-  (let ((offsets (bytevector 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-93 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-94
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 2 2 0 0 1 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-94 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-95
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-95 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-96
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-96 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-97
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-97 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-98
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-98 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-99
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 2 1 2 2 1 1 2 2 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-99 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-100
-  (let ((offsets (bytevector 1 1 1 1 1 1 2 1 1 1 1 2 2 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 1 1 1 1 1 2 1 2 2 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-100 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-101
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-101 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-102
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-102 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-103
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-103 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-104
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 2 1 1 2 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-104 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-105
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-105 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-106
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-106 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-107
-  (let ((offsets (bytevector 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 1 2 2 1 2 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 1 2 1 2 2 2 2 2 2 1 2 2 2 2 1 2 1 2 1 2 1 1 1 2 1 1 2 1 2 2 1 2 1 2 1 2 1 2 1 2 1 1 2 1 2 2 1 1 1 1 2 1 1 1 1 1 1 1 2 1 1 1 1 2 1 1 1 1 2 1 2 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 1 1 1 2 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-107 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-108
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-108 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-109
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-alpha-entry-109 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-110
-  (let ((offsets (bytevector 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-110 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-111
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-111 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-112
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-112 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-113
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-113 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-114
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-114 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-115
-  (let ((offsets (bytevector 59 60 61 62 63 64 1 65 66 67 68 69 70 2 71 2 72 73 74 75 76 77 78 79 80 2 81 2 82 2 2 2 1 1 1 83 84 85 2 2 2 2 2 2 2 2 2 2 1 1 1 1 86 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 87 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 88 89 2 2 2 90 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 91 1 1 92 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 93 2 2 2 2 2 2 2 2 2 2 2 94 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 95 96 97 98 99 100 101 102 0 0 103 2 2 2 2 2 104 2 2 2 2 2 2 2 105 106 2 2 2 2 107 2 108 109 110 0 0 0 111 112 113 114 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-115 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-116
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-116 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-117
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-117 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-118
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-alpha-entry-118 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-119
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-119 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-120
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-120 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-121
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 116 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 117 118 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 119 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 120 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-121 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-122
-  (let ((offsets (bytevector 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-122 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-123
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-123 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-124
-  (let ((offsets (bytevector 122 123 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-alpha-entry-124 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-125
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-alpha-entry-125 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-alpha-entry-126
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 125)))
-    (named-lambda (ucd-alpha-entry-126 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-(define ucd-alpha-entries)
-
-(add-boot-init! (lambda () (set! ucd-alpha-entries (make-vector 127)) (initialize-ucd-alpha-entries-0) (initialize-ucd-alpha-entries-1)))
-
-(define (initialize-ucd-alpha-entries-0)
-  (vector-set! ucd-alpha-entries 0 ucd-alpha-entry-0)
-  (vector-set! ucd-alpha-entries 1 ucd-alpha-entry-1)
-  (vector-set! ucd-alpha-entries 2 ucd-alpha-entry-2)
-  (vector-set! ucd-alpha-entries 3 ucd-alpha-entry-3)
-  (vector-set! ucd-alpha-entries 4 ucd-alpha-entry-4)
-  (vector-set! ucd-alpha-entries 5 ucd-alpha-entry-5)
-  (vector-set! ucd-alpha-entries 6 ucd-alpha-entry-6)
-  (vector-set! ucd-alpha-entries 7 ucd-alpha-entry-7)
-  (vector-set! ucd-alpha-entries 8 ucd-alpha-entry-8)
-  (vector-set! ucd-alpha-entries 9 ucd-alpha-entry-9)
-  (vector-set! ucd-alpha-entries 10 ucd-alpha-entry-10)
-  (vector-set! ucd-alpha-entries 11 ucd-alpha-entry-11)
-  (vector-set! ucd-alpha-entries 12 ucd-alpha-entry-12)
-  (vector-set! ucd-alpha-entries 13 ucd-alpha-entry-13)
-  (vector-set! ucd-alpha-entries 14 ucd-alpha-entry-14)
-  (vector-set! ucd-alpha-entries 15 ucd-alpha-entry-15)
-  (vector-set! ucd-alpha-entries 16 ucd-alpha-entry-16)
-  (vector-set! ucd-alpha-entries 17 ucd-alpha-entry-17)
-  (vector-set! ucd-alpha-entries 18 ucd-alpha-entry-18)
-  (vector-set! ucd-alpha-entries 19 ucd-alpha-entry-19)
-  (vector-set! ucd-alpha-entries 20 ucd-alpha-entry-20)
-  (vector-set! ucd-alpha-entries 21 ucd-alpha-entry-21)
-  (vector-set! ucd-alpha-entries 22 ucd-alpha-entry-22)
-  (vector-set! ucd-alpha-entries 23 ucd-alpha-entry-23)
-  (vector-set! ucd-alpha-entries 24 ucd-alpha-entry-24)
-  (vector-set! ucd-alpha-entries 25 ucd-alpha-entry-25)
-  (vector-set! ucd-alpha-entries 26 ucd-alpha-entry-26)
-  (vector-set! ucd-alpha-entries 27 ucd-alpha-entry-27)
-  (vector-set! ucd-alpha-entries 28 ucd-alpha-entry-28)
-  (vector-set! ucd-alpha-entries 29 ucd-alpha-entry-29)
-  (vector-set! ucd-alpha-entries 30 ucd-alpha-entry-30)
-  (vector-set! ucd-alpha-entries 31 ucd-alpha-entry-31)
-  (vector-set! ucd-alpha-entries 32 ucd-alpha-entry-32)
-  (vector-set! ucd-alpha-entries 33 ucd-alpha-entry-33)
-  (vector-set! ucd-alpha-entries 34 ucd-alpha-entry-34)
-  (vector-set! ucd-alpha-entries 35 ucd-alpha-entry-35)
-  (vector-set! ucd-alpha-entries 36 ucd-alpha-entry-36)
-  (vector-set! ucd-alpha-entries 37 ucd-alpha-entry-37)
-  (vector-set! ucd-alpha-entries 38 ucd-alpha-entry-38)
-  (vector-set! ucd-alpha-entries 39 ucd-alpha-entry-39)
-  (vector-set! ucd-alpha-entries 40 ucd-alpha-entry-40)
-  (vector-set! ucd-alpha-entries 41 ucd-alpha-entry-41)
-  (vector-set! ucd-alpha-entries 42 ucd-alpha-entry-42)
-  (vector-set! ucd-alpha-entries 43 ucd-alpha-entry-43)
-  (vector-set! ucd-alpha-entries 44 ucd-alpha-entry-44)
-  (vector-set! ucd-alpha-entries 45 ucd-alpha-entry-45)
-  (vector-set! ucd-alpha-entries 46 ucd-alpha-entry-46)
-  (vector-set! ucd-alpha-entries 47 ucd-alpha-entry-47)
-  (vector-set! ucd-alpha-entries 48 ucd-alpha-entry-48)
-  (vector-set! ucd-alpha-entries 49 ucd-alpha-entry-49)
-  (vector-set! ucd-alpha-entries 50 ucd-alpha-entry-50)
-  (vector-set! ucd-alpha-entries 51 ucd-alpha-entry-51)
-  (vector-set! ucd-alpha-entries 52 ucd-alpha-entry-52)
-  (vector-set! ucd-alpha-entries 53 ucd-alpha-entry-53)
-  (vector-set! ucd-alpha-entries 54 ucd-alpha-entry-54)
-  (vector-set! ucd-alpha-entries 55 ucd-alpha-entry-55)
-  (vector-set! ucd-alpha-entries 56 ucd-alpha-entry-56)
-  (vector-set! ucd-alpha-entries 57 ucd-alpha-entry-57)
-  (vector-set! ucd-alpha-entries 58 ucd-alpha-entry-58)
-  (vector-set! ucd-alpha-entries 59 ucd-alpha-entry-59)
-  (vector-set! ucd-alpha-entries 60 ucd-alpha-entry-60)
-  (vector-set! ucd-alpha-entries 61 ucd-alpha-entry-61)
-  (vector-set! ucd-alpha-entries 62 ucd-alpha-entry-62)
-  (vector-set! ucd-alpha-entries 63 ucd-alpha-entry-63)
-  (vector-set! ucd-alpha-entries 64 ucd-alpha-entry-64)
-  (vector-set! ucd-alpha-entries 65 ucd-alpha-entry-65)
-  (vector-set! ucd-alpha-entries 66 ucd-alpha-entry-66)
-  (vector-set! ucd-alpha-entries 67 ucd-alpha-entry-67)
-  (vector-set! ucd-alpha-entries 68 ucd-alpha-entry-68)
-  (vector-set! ucd-alpha-entries 69 ucd-alpha-entry-69)
-  (vector-set! ucd-alpha-entries 70 ucd-alpha-entry-70)
-  (vector-set! ucd-alpha-entries 71 ucd-alpha-entry-71)
-  (vector-set! ucd-alpha-entries 72 ucd-alpha-entry-72)
-  (vector-set! ucd-alpha-entries 73 ucd-alpha-entry-73)
-  (vector-set! ucd-alpha-entries 74 ucd-alpha-entry-74)
-  (vector-set! ucd-alpha-entries 75 ucd-alpha-entry-75)
-  (vector-set! ucd-alpha-entries 76 ucd-alpha-entry-76)
-  (vector-set! ucd-alpha-entries 77 ucd-alpha-entry-77)
-  (vector-set! ucd-alpha-entries 78 ucd-alpha-entry-78)
-  (vector-set! ucd-alpha-entries 79 ucd-alpha-entry-79)
-  (vector-set! ucd-alpha-entries 80 ucd-alpha-entry-80)
-  (vector-set! ucd-alpha-entries 81 ucd-alpha-entry-81)
-  (vector-set! ucd-alpha-entries 82 ucd-alpha-entry-82)
-  (vector-set! ucd-alpha-entries 83 ucd-alpha-entry-83)
-  (vector-set! ucd-alpha-entries 84 ucd-alpha-entry-84)
-  (vector-set! ucd-alpha-entries 85 ucd-alpha-entry-85)
-  (vector-set! ucd-alpha-entries 86 ucd-alpha-entry-86)
-  (vector-set! ucd-alpha-entries 87 ucd-alpha-entry-87)
-  (vector-set! ucd-alpha-entries 88 ucd-alpha-entry-88)
-  (vector-set! ucd-alpha-entries 89 ucd-alpha-entry-89)
-  (vector-set! ucd-alpha-entries 90 ucd-alpha-entry-90)
-  (vector-set! ucd-alpha-entries 91 ucd-alpha-entry-91)
-  (vector-set! ucd-alpha-entries 92 ucd-alpha-entry-92)
-  (vector-set! ucd-alpha-entries 93 ucd-alpha-entry-93)
-  (vector-set! ucd-alpha-entries 94 ucd-alpha-entry-94)
-  (vector-set! ucd-alpha-entries 95 ucd-alpha-entry-95)
-  (vector-set! ucd-alpha-entries 96 ucd-alpha-entry-96)
-  (vector-set! ucd-alpha-entries 97 ucd-alpha-entry-97)
-  (vector-set! ucd-alpha-entries 98 ucd-alpha-entry-98)
-  (vector-set! ucd-alpha-entries 99 ucd-alpha-entry-99))
-
-(define (initialize-ucd-alpha-entries-1)
-  (vector-set! ucd-alpha-entries 100 ucd-alpha-entry-100)
-  (vector-set! ucd-alpha-entries 101 ucd-alpha-entry-101)
-  (vector-set! ucd-alpha-entries 102 ucd-alpha-entry-102)
-  (vector-set! ucd-alpha-entries 103 ucd-alpha-entry-103)
-  (vector-set! ucd-alpha-entries 104 ucd-alpha-entry-104)
-  (vector-set! ucd-alpha-entries 105 ucd-alpha-entry-105)
-  (vector-set! ucd-alpha-entries 106 ucd-alpha-entry-106)
-  (vector-set! ucd-alpha-entries 107 ucd-alpha-entry-107)
-  (vector-set! ucd-alpha-entries 108 ucd-alpha-entry-108)
-  (vector-set! ucd-alpha-entries 109 ucd-alpha-entry-109)
-  (vector-set! ucd-alpha-entries 110 ucd-alpha-entry-110)
-  (vector-set! ucd-alpha-entries 111 ucd-alpha-entry-111)
-  (vector-set! ucd-alpha-entries 112 ucd-alpha-entry-112)
-  (vector-set! ucd-alpha-entries 113 ucd-alpha-entry-113)
-  (vector-set! ucd-alpha-entries 114 ucd-alpha-entry-114)
-  (vector-set! ucd-alpha-entries 115 ucd-alpha-entry-115)
-  (vector-set! ucd-alpha-entries 116 ucd-alpha-entry-116)
-  (vector-set! ucd-alpha-entries 117 ucd-alpha-entry-117)
-  (vector-set! ucd-alpha-entries 118 ucd-alpha-entry-118)
-  (vector-set! ucd-alpha-entries 119 ucd-alpha-entry-119)
-  (vector-set! ucd-alpha-entries 120 ucd-alpha-entry-120)
-  (vector-set! ucd-alpha-entries 121 ucd-alpha-entry-121)
-  (vector-set! ucd-alpha-entries 122 ucd-alpha-entry-122)
-  (vector-set! ucd-alpha-entries 123 ucd-alpha-entry-123)
-  (vector-set! ucd-alpha-entries 124 ucd-alpha-entry-124)
-  (vector-set! ucd-alpha-entries 125 ucd-alpha-entry-125)
-  (vector-set! ucd-alpha-entries 126 ucd-alpha-entry-126))
+(define (ucd-alpha-value sv)
+  (scalar-value-in-char-set? sv char-set:alphabetic))
+
+(define-deferred char-set:alphabetic
+  (char-set*
+   '((65 . 91)         (97 . 123)      170             181               186               (192 . 215)     (216 . 247)     (248 . 706)      (710 . 722)       (736 . 741)       748               750               837               (880 . 885)       (886 . 888)     (890 . 894)       895               902               (904 . 907)     908               (910 . 930)       (931 . 1014)      (1015 . 1154)     (1162 . 1328)     (1329 . 1367)     1369              (1377 . 1416)     (1456 . 1470)     1471              (1473 . 1475)     (1476 . 1478)     1479              (1488 . 1515)     (1520 . 1523)     (1552 . 1563)     (1568 . 1624)     (1625 . 1632)     (1646 . 1748)     (1749 . 1757)     (1761 . 1769)     (1773 . 1776)     (1786 . 1789)     1791              (1808 . 1856)     (1869 . 1970)     (1994 . 2027)     (2036 . 2038)     2042              (2048 . 2072)     (2074 . 2093)     (2112 . 2137)     (2208 . 2229)     (2230 . 2238)   (2260 . 2272)     (2275 . 2282)
+     (2288 . 2364)     (2365 . 2381)   (2382 . 2385)   (2389 . 2404)     (2417 . 2436)     (2437 . 2445)   (2447 . 2449)   (2451 . 2473)    (2474 . 2481)     2482              (2486 . 2490)     (2493 . 2501)     (2503 . 2505)     (2507 . 2509)     2510            2519              (2524 . 2526)     (2527 . 2532)     (2544 . 2546)   (2561 . 2564)     (2565 . 2571)     (2575 . 2577)     (2579 . 2601)     (2602 . 2609)     (2610 . 2612)     (2613 . 2615)     (2616 . 2618)     (2622 . 2627)     (2631 . 2633)     (2635 . 2637)     2641              (2649 . 2653)     2654              (2672 . 2678)     (2689 . 2692)     (2693 . 2702)     (2703 . 2706)     (2707 . 2729)     (2730 . 2737)     (2738 . 2740)     (2741 . 2746)     (2749 . 2758)     (2759 . 2762)     (2763 . 2765)     2768              (2784 . 2788)     2809              (2817 . 2820)     (2821 . 2829)     (2831 . 2833)     (2835 . 2857)     (2858 . 2865)     (2866 . 2868)   (2869 . 2874)     (2877 . 2885)
+     (2887 . 2889)     (2891 . 2893)   (2902 . 2904)   (2908 . 2910)     (2911 . 2916)     2929            (2946 . 2948)   (2949 . 2955)    (2958 . 2961)     (2962 . 2966)     (2969 . 2971)     2972              (2974 . 2976)     (2979 . 2981)     (2984 . 2987)   (2990 . 3002)     (3006 . 3011)     (3014 . 3017)     (3018 . 3021)   3024              3031              (3072 . 3076)     (3077 . 3085)     (3086 . 3089)     (3090 . 3113)     (3114 . 3130)     (3133 . 3141)     (3142 . 3145)     (3146 . 3149)     (3157 . 3159)     (3160 . 3163)     (3168 . 3172)     (3200 . 3204)     (3205 . 3213)     (3214 . 3217)     (3218 . 3241)     (3242 . 3252)     (3253 . 3258)     (3261 . 3269)     (3270 . 3273)     (3274 . 3277)     (3285 . 3287)     3294              (3296 . 3300)     (3313 . 3315)     (3329 . 3332)     (3333 . 3341)     (3342 . 3345)     (3346 . 3387)     (3389 . 3397)     (3398 . 3401)     (3402 . 3405)     3406            (3412 . 3416)     (3423 . 3428)
+     (3450 . 3456)     (3458 . 3460)   (3461 . 3479)   (3482 . 3506)     (3507 . 3516)     3517            (3520 . 3527)   (3535 . 3541)    3542              (3544 . 3552)     (3570 . 3572)     (3585 . 3643)     (3648 . 3655)     3661              (3713 . 3715)   3716              (3719 . 3721)     3722              3725            (3732 . 3736)     (3737 . 3744)     (3745 . 3748)     3749              3751              (3754 . 3756)     (3757 . 3770)     (3771 . 3774)     (3776 . 3781)     3782              3789              (3804 . 3808)     3840              (3904 . 3912)     (3913 . 3949)     (3953 . 3970)     (3976 . 3992)     (3993 . 4029)     (4096 . 4151)     4152              (4155 . 4160)     (4176 . 4195)     (4197 . 4201)     (4206 . 4231)     4238              (4252 . 4254)     (4256 . 4294)     4295              4301              (4304 . 4347)     (4348 . 4681)     (4682 . 4686)     (4688 . 4695)     4696            (4698 . 4702)     (4704 . 4745)
+     (4746 . 4750)     (4752 . 4785)   (4786 . 4790)   (4792 . 4799)     4800              (4802 . 4806)   (4808 . 4823)   (4824 . 4881)    (4882 . 4886)     (4888 . 4955)     4959              (4992 . 5008)     (5024 . 5110)     (5112 . 5118)     (5121 . 5741)   (5743 . 5760)     (5761 . 5787)     (5792 . 5867)     (5870 . 5881)   (5888 . 5901)     (5902 . 5908)     (5920 . 5940)     (5952 . 5972)     (5984 . 5997)     (5998 . 6001)     (6002 . 6004)     (6016 . 6068)     (6070 . 6089)     6103              6108              (6176 . 6264)     (6272 . 6315)     (6320 . 6390)     (6400 . 6431)     (6432 . 6444)     (6448 . 6457)     (6480 . 6510)     (6512 . 6517)     (6528 . 6572)     (6576 . 6602)     (6656 . 6684)     (6688 . 6751)     (6753 . 6773)     6823              (6912 . 6964)     (6965 . 6980)     (6981 . 6988)     (7040 . 7082)     (7084 . 7088)     (7098 . 7142)     (7143 . 7154)     (7168 . 7222)     (7245 . 7248)   (7258 . 7294)     (7296 . 7305)
+     (7401 . 7405)     (7406 . 7412)   (7413 . 7415)   (7424 . 7616)     (7655 . 7669)     (7680 . 7958)   (7960 . 7966)   (7968 . 8006)    (8008 . 8014)     (8016 . 8024)     8025              8027              8029              (8031 . 8062)     (8064 . 8117)   (8118 . 8125)     8126              (8130 . 8133)     (8134 . 8141)   (8144 . 8148)     (8150 . 8156)     (8160 . 8173)     (8178 . 8181)     (8182 . 8189)     8305              8319              (8336 . 8349)     8450              8455              (8458 . 8468)     8469              (8473 . 8478)     8484              8486              8488              (8490 . 8494)     (8495 . 8506)     (8508 . 8512)     (8517 . 8522)     8526              (8544 . 8585)     (9398 . 9450)     (11264 . 11311)   (11312 . 11359)   (11360 . 11493)   (11499 . 11503)   (11506 . 11508)   (11520 . 11558)   11559             11565             (11568 . 11624)   11631             (11648 . 11671) (11680 . 11687)   (11688 . 11695)
+     (11696 . 11703)   (11704 . 11711) (11712 . 11719) (11720 . 11727)   (11728 . 11735)   (11736 . 11743) (11744 . 11776) 11823            (12293 . 12296)   (12321 . 12330)   (12337 . 12342)   (12344 . 12349)   (12353 . 12439)   (12445 . 12448)   (12449 . 12539) (12540 . 12544)   (12549 . 12590)   (12593 . 12687)   (12704 . 12731) (12784 . 12800)   (13312 . 19894)   (19968 . 40918)   (40960 . 42125)   (42192 . 42238)   (42240 . 42509)   (42512 . 42528)   (42538 . 42540)   (42560 . 42607)   (42612 . 42620)   (42623 . 42736)   (42775 . 42784)   (42786 . 42889)   (42891 . 42927)   (42928 . 42936)   (42999 . 43010)   (43011 . 43014)   (43015 . 43019)   (43020 . 43048)   (43072 . 43124)   (43136 . 43204)   43205             (43250 . 43256)   43259             43261             (43274 . 43307)   (43312 . 43347)   (43360 . 43389)   (43392 . 43443)   (43444 . 43456)   43471             (43488 . 43493)   (43494 . 43504)   (43514 . 43519) (43520 . 43575)   (43584 . 43598)
+     (43616 . 43639)   43642           (43646 . 43711) 43712             43714             (43739 . 43742) (43744 . 43760) (43762 . 43766)  (43777 . 43783)   (43785 . 43791)   (43793 . 43799)   (43808 . 43815)   (43816 . 43823)   (43824 . 43867)   (43868 . 43878) (43888 . 44011)   (44032 . 55204)   (55216 . 55239)   (55243 . 55292) (63744 . 64110)   (64112 . 64218)   (64256 . 64263)   (64275 . 64280)   (64285 . 64297)   (64298 . 64311)   (64312 . 64317)   64318             (64320 . 64322)   (64323 . 64325)   (64326 . 64434)   (64467 . 64830)   (64848 . 64912)   (64914 . 64968)   (65008 . 65020)   (65136 . 65141)   (65142 . 65277)   (65313 . 65339)   (65345 . 65371)   (65382 . 65471)   (65474 . 65480)   (65482 . 65488)   (65490 . 65496)   (65498 . 65501)   (65536 . 65548)   (65549 . 65575)   (65576 . 65595)   (65596 . 65598)   (65599 . 65614)   (65616 . 65630)   (65664 . 65787)   (65856 . 65909)   (66176 . 66205)   (66208 . 66257) (66304 . 66336)   (66352 . 66379)
+     (66384 . 66427)   (66432 . 66462) (66464 . 66500) (66504 . 66512)   (66513 . 66518)   (66560 . 66718) (66736 . 66772) (66776 . 66812)  (66816 . 66856)   (66864 . 66916)   (67072 . 67383)   (67392 . 67414)   (67424 . 67432)   (67584 . 67590)   67592           (67594 . 67638)   (67639 . 67641)   67644             (67647 . 67670) (67680 . 67703)   (67712 . 67743)   (67808 . 67827)   (67828 . 67830)   (67840 . 67862)   (67872 . 67898)   (67968 . 68024)   (68030 . 68032)   (68096 . 68100)   (68101 . 68103)   (68108 . 68116)   (68117 . 68120)   (68121 . 68148)   (68192 . 68221)   (68224 . 68253)   (68288 . 68296)   (68297 . 68325)   (68352 . 68406)   (68416 . 68438)   (68448 . 68467)   (68480 . 68498)   (68608 . 68681)   (68736 . 68787)   (68800 . 68851)   (69632 . 69702)   (69762 . 69817)   (69840 . 69865)   (69888 . 69939)   (69968 . 70003)   70006             (70016 . 70080)   (70081 . 70085)   70106             70108           (70144 . 70162)   (70163 . 70197)
+     70199             70206           (70272 . 70279) 70280             (70282 . 70286)   (70287 . 70302) (70303 . 70313) (70320 . 70377)  (70400 . 70404)   (70405 . 70413)   (70415 . 70417)   (70419 . 70441)   (70442 . 70449)   (70450 . 70452)   (70453 . 70458) (70461 . 70469)   (70471 . 70473)   (70475 . 70477)   70480           70487             (70493 . 70500)   (70656 . 70722)   (70723 . 70726)   (70727 . 70731)   (70784 . 70850)   (70852 . 70854)   70855             (71040 . 71094)   (71096 . 71103)   (71128 . 71134)   (71168 . 71231)   71232             71236             (71296 . 71350)   (71424 . 71450)   (71453 . 71467)   (71840 . 71904)   71935             (72384 . 72441)   (72704 . 72713)   (72714 . 72759)   (72760 . 72767)   72768             (72818 . 72848)   (72850 . 72872)   (72873 . 72887)   (73728 . 74650)   (74752 . 74863)   (74880 . 75076)   (77824 . 78895)   (82944 . 83527)   (92160 . 92729)   (92736 . 92767) (92880 . 92910)   (92928 . 92983)
+     (92992 . 92996)   (93027 . 93048) (93053 . 93072) (93952 . 94021)   (94032 . 94079)   (94099 . 94112) 94176           (94208 . 100333) (100352 . 101107) (110592 . 110594) (113664 . 113771) (113776 . 113789) (113792 . 113801) (113808 . 113818) 113822          (119808 . 119893) (119894 . 119965) (119966 . 119968) 119970          (119973 . 119975) (119977 . 119981) (119982 . 119994) 119995            (119997 . 120004) (120005 . 120070) (120071 . 120075) (120077 . 120085) (120086 . 120093) (120094 . 120122) (120123 . 120127) (120128 . 120133) 120134            (120138 . 120145) (120146 . 120486) (120488 . 120513) (120514 . 120539) (120540 . 120571) (120572 . 120597) (120598 . 120629) (120630 . 120655) (120656 . 120687) (120688 . 120713) (120714 . 120745) (120746 . 120771) (120772 . 120780) (122880 . 122887) (122888 . 122905) (122907 . 122914) (122915 . 122917) (122918 . 122923) (124928 . 125125) (125184 . 125252) 125255          (126464 . 126468) (126469 . 126496)
+     (126497 . 126499) 126500          126503          (126505 . 126515) (126516 . 126520) 126521          126523          126530           126535            126537            126539            (126541 . 126544) (126545 . 126547) 126548            126551          126553            126555            126557            126559          (126561 . 126563) 126564            (126567 . 126571) (126572 . 126579) (126580 . 126584) (126585 . 126589) 126590            (126592 . 126602) (126603 . 126620) (126625 . 126628) (126629 . 126634) (126635 . 126652) (127280 . 127306) (127312 . 127338) (127344 . 127370) (131072 . 173783) (173824 . 177973) (177984 . 178206) (178208 . 183970) (194560 . 195102))))
index e2b5db98bdc4e64488cc44a569edff3971886f60..94a700863053c96d65356b9c11e9e0dfd257c98b 100644 (file)
@@ -26,7 +26,7 @@ USA.
 
 ;;;; UCD property: gc
 
-;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T00:05:08-08
+;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T23:45:16-08
 
 (declare (usual-integrations))
 \f
diff --git a/src/runtime/ucd-table-glue.scm b/src/runtime/ucd-table-glue.scm
new file mode 100644 (file)
index 0000000..a9afa53
--- /dev/null
@@ -0,0 +1,112 @@
+#| -*-Scheme-*-
+
+Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
+    1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
+    2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
+    2017 Massachusetts Institute of Technology
+
+This file is part of MIT/GNU Scheme.
+
+MIT/GNU Scheme is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at
+your option) any later version.
+
+MIT/GNU Scheme is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with MIT/GNU Scheme; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
+USA.
+
+|#
+
+;;;; UCD table glue
+;;; package: (runtime ucd-table-glue)
+
+(declare (usual-integrations))
+\f
+(define-deferred char-set:numeric
+  (compute-char-set
+   (lambda (sv)
+     (eq? 'decimal (ucd-nt-value sv)))))
+
+(define-deferred char-set:alphanumeric
+  (char-set-union char-set:alphabetic char-set:numeric))
+
+(define-deferred char-alphabetic?
+  (char-set-predicate char-set:alphabetic))
+
+(define-deferred char-alphanumeric?
+  (char-set-predicate char-set:alphanumeric))
+
+(define-deferred char-lower-case?
+  (char-set-predicate char-set:lower-case))
+
+(define-deferred char-numeric?
+  (char-set-predicate char-set:numeric))
+
+(define-deferred char-upper-case?
+  (char-set-predicate char-set:upper-case))
+
+(define-deferred char-whitespace?
+  (char-set-predicate char-set:whitespace))
+
+(define-deferred char-set:not-alphabetic
+  (char-set-invert char-set:alphabetic))
+
+(define-deferred char-set:not-alphanumeric
+  (char-set-invert char-set:alphanumeric))
+
+(define-deferred char-set:not-lower-case
+  (char-set-invert char-set:lower-case))
+
+(define-deferred char-set:not-numeric
+  (char-set-invert char-set:numeric))
+
+(define-deferred char-set:not-upper-case
+  (char-set-invert char-set:upper-case))
+
+(define-deferred char-set:not-whitespace
+  (char-set-invert char-set:whitespace))
+\f
+;;;; Scheme language:
+
+(define (symbol-constituent? sv)
+  (case sv
+    ;; #\" #\# #\' #\, #\; #\\ #\` #\|
+    ((#x22 #x23 #x27 #x2c #x3b #x5c #x60 #x7c) #f)
+    ((#x200C #x200D) #t)
+    (else
+     (case (unicode-code-point-general-category sv)
+       ((letter:uppercase
+        letter:lowercase
+        letter:titlecase
+        letter:modifier
+        letter:other
+        mark:nonspacing
+        number:letter
+        number:other
+        punctuation:connector
+        punctuation:dash
+        punctuation:other
+        symbol:math
+        symbol:currency
+        symbol:modifier
+        symbol:other
+        other:private-use)
+       #t)
+       ((mark:spacing-combining
+        mark:enclosing
+        number:decimal-digit)
+       'subsequent-only)
+       (else #f)))))
+
+(define-deferred char-set:symbol-constituent
+  (compute-char-set symbol-constituent?))
+
+(define-deferred char-set:symbol-initial
+  (compute-char-set (lambda (sv) (eq? #t (symbol-constituent? sv)))))
\ No newline at end of file
index 10dc26b7f611a4320a0794ecea24d220c68932c5..ff1adb93d8914e0ef88121c643b3db4dcf9148ce 100644 (file)
@@ -26,913 +26,22 @@ USA.
 
 ;;;; UCD property: Lower
 
-;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T00:05:06-08
+;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T23:45:15-08
 
 (declare (usual-integrations))
 \f
-
-(define-deferred ucd-lower-value
-  (let ((offsets (bytevector 59 116 122 2 2 2 2 2 2 2 2 2 2 2 125 127 127)))
-    (named-lambda (ucd-lower-value sv)
-      ((vector-ref ucd-lower-entries (bytevector-u8-ref offsets (fix:and 31 (fix:lsh sv -16)))) sv ucd-lower-entries))))
-
-(define (ucd-lower-entry-0 sv table)
-  sv
-  table
-  #f)
-
-(define (ucd-lower-entry-1 sv table)
-  sv
-  table
-  #t)
-
-(define (ucd-lower-entry-2 sv table)
-  sv
-  table
-  #!default)
-
-
-(define-deferred ucd-lower-entry-3
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-lower-entry-3 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-4
-  (let ((offsets (bytevector 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0 1 1 1 0 0 1 0 1 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 1 1 1 0 0 1 0 0 1 0 1 0 1 0 0 1 0 1 1 0 1 0 0 1 0 0 0 1 0 1 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 1)))
-    (named-lambda (ucd-lower-entry-4 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-5
-  (let ((offsets (bytevector 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 0 0 1 0 0 1 1 0 1 0 0 0 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-5 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-6
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 2 2 1 1 1 1 0 0 2 2 2 2 0 0 0 0 0 0 0 2 0 2 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 0 1 0 0 1 0 0 1 1 0 0 0)))
-    (named-lambda (ucd-lower-entry-6 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-7
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1)))
-    (named-lambda (ucd-lower-entry-7 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-8
-  (let ((offsets (bytevector 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 0 2 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-8 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-9
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-9 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-10
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-10 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-11
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-11 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-12
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 2 2 2 2 2 2 2 2 0 2 2 2 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-12 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-13
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 2 2 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 2 0 0 2 2 0 2 0 0 0 0 0 2 2 2 2 0 0 2 2 0 0 0 2 2 2 0 2 2 2 2 2 2 2 0 0 0 0 2 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-13 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-14
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 2 2 2 2 2 2 2 2 0 0 2 2 2 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 2 0 0 0 0 0 0 2 2 2 0 0 0 2 0 0 0 0 2 2 2 0 0 2 0 2 0 0 2 2 2 0 0 2 2 2 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 2 2 2 0 0 0 2 0 0 0 0 2 2 0 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-14 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-15
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 2 2 2 2 2 2 2 0 0 2 0 0 0 2 2 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-15 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-16
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 0 0 2 2 2 0 2 2 2 2 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-16 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-17
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 0 2 2 0 0 2 0 2 2 0 2 2 2 2 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 2 0 2 0 2 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 2 0 0 0 0 0 2 0 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-17 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-18
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-18 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-19
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-19 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-20
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-20 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-21
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 1 1 1 1 1 1 2 2)))
-    (named-lambda (ucd-lower-entry-21 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-22
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-22 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-23
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-23 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-24
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-24 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-25
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-25 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-26
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-26 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-27
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-27 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-28
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-28 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-29
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-29 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-30
-  (let ((offsets (bytevector 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1)))
-    (named-lambda (ucd-lower-entry-30 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-31
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 2 2 0 0 0 0 0 0 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 2 2 0 0 0 0 0 0 2 2 1 1 1 1 1 1 1 1 2 0 2 0 2 0 2 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 2 1 1 0 0 0 0 0 0 1 0 0 0 1 1 1 2 1 1 0 0 0 0 0 0 0 0 1 1 1 1 2 2 1 1 0 0 0 0 2 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 2 2 1 1 1 2 1 1 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-lower-entry-31 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-32
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 1 2 2 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-32 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-33
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-33 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-34
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-lower-entry-34 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-35
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-35 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-36
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-36 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-37
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 1 0 0 0 1 1 0 1 0 1 0 1 0 0 0 0 1 0 1 1 0 1 1 1 1 1 1 1 1 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 2 2 2 2 2 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-37 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-38
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 2 2 2 2 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-38 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-39
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-39 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-40
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-40 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-41
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-41 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-42
-  (let ((offsets (bytevector 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-42 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-43
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-lower-entry-43 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-44
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-44 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-45
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-45 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-46
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-46 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-47
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-47 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-48
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 0 1 0 1 0 1 0 1 0 1 0 0 0 0 1 0 1 0 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 2 0 0 0 0 0 1 0 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 1 1 1 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-48 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-49
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-lower-entry-49 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-50
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-lower-entry-50 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-51
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-51 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-52
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-52 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-53
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-53 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-54
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-54 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-55
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 2 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-55 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-56
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-lower-entry-56 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-57
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0)))
-    (named-lambda (ucd-lower-entry-57 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-58
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-lower-entry-58 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-59
-  (let ((offsets (bytevector 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 0 20 21 0 0 22 23 24 25 26 27 28 29 30 31 32 33 0 34 35 0 0 0 0 0 0 36 37 38 39 40 41 42 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 0 0 0 0 46 0 47 48 49 50 51 52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54 55 0 56 57 58)))
-    (named-lambda (ucd-lower-entry-59 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-lower-entry-60
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-60 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-61
-  (let ((offsets (bytevector 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-lower-entry-61 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-62
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-62 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-63
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-63 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-64
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-64 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-65
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-65 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-66
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-66 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-67
-  (let ((offsets (bytevector 0 0 0 0 0 0 2 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-67 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-68
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-68 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-69
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-69 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-70
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-70 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-71
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-71 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-72
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-72 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-73
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-73 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-74
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-74 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-75
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-75 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-76
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 2 2 0 2 2 2 2 2 2 0 2 2 2 2 2 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-76 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-77
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-77 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-78
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-78 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-79
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-79 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-80
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-80 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-81
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0)))
-    (named-lambda (ucd-lower-entry-81 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-82
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-82 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-83
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-83 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-84
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-84 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-85
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-85 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-86
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-86 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-87
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-87 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-88
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-88 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-89
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-89 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-90
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-90 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-91
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-91 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-92
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-92 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-93
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-93 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-94
-  (let ((offsets (bytevector 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-94 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-95
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-95 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-96
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-96 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-97
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-97 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-98
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-98 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-99
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-99 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-100
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 0 0 2 2 0 2 2 0 0 2 2 0 0 0 0 2 0 0 0 0 0 0 0 0 1 1 1 1 2 1 2 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-lower-entry-100 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-101
-  (let ((offsets (bytevector 1 1 1 1 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 0 0 0 0 2 0 0 0 0 0 2 0 2 2 2 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-lower-entry-101 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-102
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1)))
-    (named-lambda (ucd-lower-entry-102 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-103
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 0 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-103 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-104
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-104 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-105
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-105 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-106
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-106 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-107
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-107 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-108
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 0 2 2 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 0 2 0 2 2 2 2 2 2 0 2 2 2 2 0 2 0 2 0 2 0 0 0 2 0 0 2 0 2 2 0 2 0 2 0 2 0 2 0 2 0 0 2 0 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 2 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-108 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-109
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-109 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-110
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-110 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-111
-  (let ((offsets (bytevector 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-111 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-112
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-112 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-113
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-113 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-114
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-114 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-115
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-115 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-116
-  (let ((offsets (bytevector 60 61 62 63 64 65 0 66 67 68 69 70 71 2 72 2 73 74 75 76 77 78 79 80 81 2 82 2 83 2 2 2 0 0 0 84 85 86 2 2 2 2 2 2 2 2 2 2 0 0 0 0 87 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 88 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 89 90 2 2 2 91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 92 0 0 93 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 94 2 2 2 2 2 2 2 2 2 2 2 95 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 96 97 98 99 100 101 102 103 0 0 104 2 2 2 2 2 105 2 2 2 2 2 2 2 106 107 2 2 2 2 108 2 109 110 111 0 0 0 112 113 114 115 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-116 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-lower-entry-117
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-117 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-118
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-118 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-119
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-lower-entry-119 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-120
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-120 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-121
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-121 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-122
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118 119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 121 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-122 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-lower-entry-123
-  (let ((offsets (bytevector 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-123 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-124
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-124 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-125
-  (let ((offsets (bytevector 123 124 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-lower-entry-125 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-lower-entry-126
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-lower-entry-126 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-lower-entry-127
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 126)))
-    (named-lambda (ucd-lower-entry-127 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-(define ucd-lower-entries)
-
-(add-boot-init! (lambda () (set! ucd-lower-entries (make-vector 128)) (initialize-ucd-lower-entries-0) (initialize-ucd-lower-entries-1)))
-
-(define (initialize-ucd-lower-entries-0)
-  (vector-set! ucd-lower-entries 0 ucd-lower-entry-0)
-  (vector-set! ucd-lower-entries 1 ucd-lower-entry-1)
-  (vector-set! ucd-lower-entries 2 ucd-lower-entry-2)
-  (vector-set! ucd-lower-entries 3 ucd-lower-entry-3)
-  (vector-set! ucd-lower-entries 4 ucd-lower-entry-4)
-  (vector-set! ucd-lower-entries 5 ucd-lower-entry-5)
-  (vector-set! ucd-lower-entries 6 ucd-lower-entry-6)
-  (vector-set! ucd-lower-entries 7 ucd-lower-entry-7)
-  (vector-set! ucd-lower-entries 8 ucd-lower-entry-8)
-  (vector-set! ucd-lower-entries 9 ucd-lower-entry-9)
-  (vector-set! ucd-lower-entries 10 ucd-lower-entry-10)
-  (vector-set! ucd-lower-entries 11 ucd-lower-entry-11)
-  (vector-set! ucd-lower-entries 12 ucd-lower-entry-12)
-  (vector-set! ucd-lower-entries 13 ucd-lower-entry-13)
-  (vector-set! ucd-lower-entries 14 ucd-lower-entry-14)
-  (vector-set! ucd-lower-entries 15 ucd-lower-entry-15)
-  (vector-set! ucd-lower-entries 16 ucd-lower-entry-16)
-  (vector-set! ucd-lower-entries 17 ucd-lower-entry-17)
-  (vector-set! ucd-lower-entries 18 ucd-lower-entry-18)
-  (vector-set! ucd-lower-entries 19 ucd-lower-entry-19)
-  (vector-set! ucd-lower-entries 20 ucd-lower-entry-20)
-  (vector-set! ucd-lower-entries 21 ucd-lower-entry-21)
-  (vector-set! ucd-lower-entries 22 ucd-lower-entry-22)
-  (vector-set! ucd-lower-entries 23 ucd-lower-entry-23)
-  (vector-set! ucd-lower-entries 24 ucd-lower-entry-24)
-  (vector-set! ucd-lower-entries 25 ucd-lower-entry-25)
-  (vector-set! ucd-lower-entries 26 ucd-lower-entry-26)
-  (vector-set! ucd-lower-entries 27 ucd-lower-entry-27)
-  (vector-set! ucd-lower-entries 28 ucd-lower-entry-28)
-  (vector-set! ucd-lower-entries 29 ucd-lower-entry-29)
-  (vector-set! ucd-lower-entries 30 ucd-lower-entry-30)
-  (vector-set! ucd-lower-entries 31 ucd-lower-entry-31)
-  (vector-set! ucd-lower-entries 32 ucd-lower-entry-32)
-  (vector-set! ucd-lower-entries 33 ucd-lower-entry-33)
-  (vector-set! ucd-lower-entries 34 ucd-lower-entry-34)
-  (vector-set! ucd-lower-entries 35 ucd-lower-entry-35)
-  (vector-set! ucd-lower-entries 36 ucd-lower-entry-36)
-  (vector-set! ucd-lower-entries 37 ucd-lower-entry-37)
-  (vector-set! ucd-lower-entries 38 ucd-lower-entry-38)
-  (vector-set! ucd-lower-entries 39 ucd-lower-entry-39)
-  (vector-set! ucd-lower-entries 40 ucd-lower-entry-40)
-  (vector-set! ucd-lower-entries 41 ucd-lower-entry-41)
-  (vector-set! ucd-lower-entries 42 ucd-lower-entry-42)
-  (vector-set! ucd-lower-entries 43 ucd-lower-entry-43)
-  (vector-set! ucd-lower-entries 44 ucd-lower-entry-44)
-  (vector-set! ucd-lower-entries 45 ucd-lower-entry-45)
-  (vector-set! ucd-lower-entries 46 ucd-lower-entry-46)
-  (vector-set! ucd-lower-entries 47 ucd-lower-entry-47)
-  (vector-set! ucd-lower-entries 48 ucd-lower-entry-48)
-  (vector-set! ucd-lower-entries 49 ucd-lower-entry-49)
-  (vector-set! ucd-lower-entries 50 ucd-lower-entry-50)
-  (vector-set! ucd-lower-entries 51 ucd-lower-entry-51)
-  (vector-set! ucd-lower-entries 52 ucd-lower-entry-52)
-  (vector-set! ucd-lower-entries 53 ucd-lower-entry-53)
-  (vector-set! ucd-lower-entries 54 ucd-lower-entry-54)
-  (vector-set! ucd-lower-entries 55 ucd-lower-entry-55)
-  (vector-set! ucd-lower-entries 56 ucd-lower-entry-56)
-  (vector-set! ucd-lower-entries 57 ucd-lower-entry-57)
-  (vector-set! ucd-lower-entries 58 ucd-lower-entry-58)
-  (vector-set! ucd-lower-entries 59 ucd-lower-entry-59)
-  (vector-set! ucd-lower-entries 60 ucd-lower-entry-60)
-  (vector-set! ucd-lower-entries 61 ucd-lower-entry-61)
-  (vector-set! ucd-lower-entries 62 ucd-lower-entry-62)
-  (vector-set! ucd-lower-entries 63 ucd-lower-entry-63)
-  (vector-set! ucd-lower-entries 64 ucd-lower-entry-64)
-  (vector-set! ucd-lower-entries 65 ucd-lower-entry-65)
-  (vector-set! ucd-lower-entries 66 ucd-lower-entry-66)
-  (vector-set! ucd-lower-entries 67 ucd-lower-entry-67)
-  (vector-set! ucd-lower-entries 68 ucd-lower-entry-68)
-  (vector-set! ucd-lower-entries 69 ucd-lower-entry-69)
-  (vector-set! ucd-lower-entries 70 ucd-lower-entry-70)
-  (vector-set! ucd-lower-entries 71 ucd-lower-entry-71)
-  (vector-set! ucd-lower-entries 72 ucd-lower-entry-72)
-  (vector-set! ucd-lower-entries 73 ucd-lower-entry-73)
-  (vector-set! ucd-lower-entries 74 ucd-lower-entry-74)
-  (vector-set! ucd-lower-entries 75 ucd-lower-entry-75)
-  (vector-set! ucd-lower-entries 76 ucd-lower-entry-76)
-  (vector-set! ucd-lower-entries 77 ucd-lower-entry-77)
-  (vector-set! ucd-lower-entries 78 ucd-lower-entry-78)
-  (vector-set! ucd-lower-entries 79 ucd-lower-entry-79)
-  (vector-set! ucd-lower-entries 80 ucd-lower-entry-80)
-  (vector-set! ucd-lower-entries 81 ucd-lower-entry-81)
-  (vector-set! ucd-lower-entries 82 ucd-lower-entry-82)
-  (vector-set! ucd-lower-entries 83 ucd-lower-entry-83)
-  (vector-set! ucd-lower-entries 84 ucd-lower-entry-84)
-  (vector-set! ucd-lower-entries 85 ucd-lower-entry-85)
-  (vector-set! ucd-lower-entries 86 ucd-lower-entry-86)
-  (vector-set! ucd-lower-entries 87 ucd-lower-entry-87)
-  (vector-set! ucd-lower-entries 88 ucd-lower-entry-88)
-  (vector-set! ucd-lower-entries 89 ucd-lower-entry-89)
-  (vector-set! ucd-lower-entries 90 ucd-lower-entry-90)
-  (vector-set! ucd-lower-entries 91 ucd-lower-entry-91)
-  (vector-set! ucd-lower-entries 92 ucd-lower-entry-92)
-  (vector-set! ucd-lower-entries 93 ucd-lower-entry-93)
-  (vector-set! ucd-lower-entries 94 ucd-lower-entry-94)
-  (vector-set! ucd-lower-entries 95 ucd-lower-entry-95)
-  (vector-set! ucd-lower-entries 96 ucd-lower-entry-96)
-  (vector-set! ucd-lower-entries 97 ucd-lower-entry-97)
-  (vector-set! ucd-lower-entries 98 ucd-lower-entry-98)
-  (vector-set! ucd-lower-entries 99 ucd-lower-entry-99))
-
-(define (initialize-ucd-lower-entries-1)
-  (vector-set! ucd-lower-entries 100 ucd-lower-entry-100)
-  (vector-set! ucd-lower-entries 101 ucd-lower-entry-101)
-  (vector-set! ucd-lower-entries 102 ucd-lower-entry-102)
-  (vector-set! ucd-lower-entries 103 ucd-lower-entry-103)
-  (vector-set! ucd-lower-entries 104 ucd-lower-entry-104)
-  (vector-set! ucd-lower-entries 105 ucd-lower-entry-105)
-  (vector-set! ucd-lower-entries 106 ucd-lower-entry-106)
-  (vector-set! ucd-lower-entries 107 ucd-lower-entry-107)
-  (vector-set! ucd-lower-entries 108 ucd-lower-entry-108)
-  (vector-set! ucd-lower-entries 109 ucd-lower-entry-109)
-  (vector-set! ucd-lower-entries 110 ucd-lower-entry-110)
-  (vector-set! ucd-lower-entries 111 ucd-lower-entry-111)
-  (vector-set! ucd-lower-entries 112 ucd-lower-entry-112)
-  (vector-set! ucd-lower-entries 113 ucd-lower-entry-113)
-  (vector-set! ucd-lower-entries 114 ucd-lower-entry-114)
-  (vector-set! ucd-lower-entries 115 ucd-lower-entry-115)
-  (vector-set! ucd-lower-entries 116 ucd-lower-entry-116)
-  (vector-set! ucd-lower-entries 117 ucd-lower-entry-117)
-  (vector-set! ucd-lower-entries 118 ucd-lower-entry-118)
-  (vector-set! ucd-lower-entries 119 ucd-lower-entry-119)
-  (vector-set! ucd-lower-entries 120 ucd-lower-entry-120)
-  (vector-set! ucd-lower-entries 121 ucd-lower-entry-121)
-  (vector-set! ucd-lower-entries 122 ucd-lower-entry-122)
-  (vector-set! ucd-lower-entries 123 ucd-lower-entry-123)
-  (vector-set! ucd-lower-entries 124 ucd-lower-entry-124)
-  (vector-set! ucd-lower-entries 125 ucd-lower-entry-125)
-  (vector-set! ucd-lower-entries 126 ucd-lower-entry-126)
-  (vector-set! ucd-lower-entries 127 ucd-lower-entry-127))
+(define (ucd-lower-value sv)
+  (scalar-value-in-char-set? sv char-set:lower-case))
+
+(define-deferred char-set:lower-case
+  (char-set*
+   '((97 . 123)        170               181               186               (223 . 247)   (248 . 256)       257               259               261               263               265               267               269               271               273               275               277               279               281               283               285               287               289               291               293               295               297           299               301           303             305   307             309             (311 . 313) 314           316   318             320             322           324   326   (328 . 330) 331   333             335   337   339   341   343   345   347   349   351   353   355   357   359             361             363             365             367             369             371             373             375             378             380             (382 . 385)
+     387               389               392               (396 . 398)       402           405               (409 . 412)       414               417               419               421               424               (426 . 428)       429               432               436               438               (441 . 443)       (445 . 448)       454               457               460               462               464               466               468               470           472               474           (476 . 478)     479   481             483             485         487           489   491             493             (495 . 497)   499   501   505         507   509             511   513   515   517   519   521   523   525   527   529   531   533   535             537             539             541             543             545             547             549             551             553             555             557
+     559               561               (563 . 570)       572               (575 . 577)   578               583               585               587               589               (591 . 660)       (661 . 697)       (704 . 706)       (736 . 741)       837               881               883               887               (890 . 894)       912               (940 . 975)       (976 . 978)       (981 . 984)       985               987               989               991           993               995           997             999   1001            1003            1005        (1007 . 1012) 1013  1016            (1019 . 1021)   (1072 . 1120) 1121  1123  1125        1127  1129            1131  1133  1135  1137  1139  1141  1143  1145  1147  1149  1151  1153  1163            1165            1167            1169            1171            1173            1175            1177            1179            1181            1183            1185
+     1187              1189              1191              1193              1195          1197              1199              1201              1203              1205              1207              1209              1211              1213              1215              1218              1220              1222              1224              1226              1228              (1230 . 1232)     1233              1235              1237              1239              1241          1243              1245          1247            1249  1251            1253            1255        1257          1259  1261            1263            1265          1267  1269  1271        1273  1275            1277  1279  1281  1283  1285  1287  1289  1291  1293  1295  1297  1299  1301            1303            1305            1307            1309            1311            1313            1315            1317            1319            1321            1323
+     1325              1327              (1377 . 1416)     (5112 . 5118)     (7296 . 7305) (7424 . 7616)     7681              7683              7685              7687              7689              7691              7693              7695              7697              7699              7701              7703              7705              7707              7709              7711              7713              7715              7717              7719              7721          7723              7725          7727            7729  7731            7733            7735        7737          7739  7741            7743            7745          7747  7749  7751        7753  7755            7757  7759  7761  7763  7765  7767  7769  7771  7773  7775  7777  7779  7781            7783            7785            7787            7789            7791            7793            7795            7797            7799            7801            7803
+     7805              7807              7809              7811              7813          7815              7817              7819              7821              7823              7825              7827              (7829 . 7838)     7839              7841              7843              7845              7847              7849              7851              7853              7855              7857              7859              7861              7863              7865          7867              7869          7871            7873  7875            7877            7879        7881          7883  7885            7887            7889          7891  7893  7895        7897  7899            7901  7903  7905  7907  7909  7911  7913  7915  7917  7919  7921  7923  7925            7927            7929            7931            7933            (7935 . 7944)   (7952 . 7958)   (7968 . 7976)   (7984 . 7992)   (8000 . 8006)   (8016 . 8024)   (8032 . 8040)
+     (8048 . 8062)     (8064 . 8072)     (8080 . 8088)     (8096 . 8104)     (8112 . 8117) (8118 . 8120)     8126              (8130 . 8133)     (8134 . 8136)     (8144 . 8148)     (8150 . 8152)     (8160 . 8168)     (8178 . 8181)     (8182 . 8184)     8305              8319              (8336 . 8349)     8458              (8462 . 8464)     8467              8495              8500              8505              (8508 . 8510)     (8518 . 8522)     8526              (8560 . 8576) 8580              (9424 . 9450) (11312 . 11359) 11361 (11365 . 11367) 11368           11370       11372         11377 (11379 . 11381) (11382 . 11390) 11393         11395 11397 11399       11401 11403           11405 11407 11409 11411 11413 11415 11417 11419 11421 11423 11425 11427 11429           11431           11433           11435           11437           11439           11441           11443           11445           11447           11449           11451
+     11453             11455             11457             11459             11461         11463             11465             11467             11469             11471             11473             11475             11477             11479             11481             11483             11485             11487             11489             (11491 . 11493)   11500             11502             11507             (11520 . 11558)   11559             11565             42561         42563             42565         42567           42569 42571           42573           42575       42577         42579 42581           42583           42585         42587 42589 42591       42593 42595           42597 42599 42601 42603 42605 42625 42627 42629 42631 42633 42635 42637 42639           42641           42643           42645           42647           42649           (42651 . 42654) 42787           42789           42791           42793           42795
+     42797             (42799 . 42802)   42803             42805             42807         42809             42811             42813             42815             42817             42819             42821             42823             42825             42827             42829             42831             42833             42835             42837             42839             42841             42843             42845             42847             42849             42851         42853             42855         42857           42859 42861           (42863 . 42873) 42874       42876         42879 42881           42883           42885         42887 42892 42894       42897 (42899 . 42902) 42903 42905 42907 42909 42911 42913 42915 42917 42919 42921 42933 42935 (43000 . 43003) (43824 . 43867) (43868 . 43878) (43888 . 43968) (64256 . 64263) (64275 . 64280) (65345 . 65371) (66600 . 66640) (66776 . 66812) (68800 . 68851) (71872 . 71904) (119834 . 119860)
+     (119886 . 119893) (119894 . 119912) (119938 . 119964) (119990 . 119994) 119995        (119997 . 120004) (120005 . 120016) (120042 . 120068) (120094 . 120120) (120146 . 120172) (120198 . 120224) (120250 . 120276) (120302 . 120328) (120354 . 120380) (120406 . 120432) (120458 . 120486) (120514 . 120539) (120540 . 120546) (120572 . 120597) (120598 . 120604) (120630 . 120655) (120656 . 120662) (120688 . 120713) (120714 . 120720) (120746 . 120771) (120772 . 120778) 120779        (125218 . 125252))))
index 0730d671d8b8bdbd8d9aa6d635dbf61c625f4dc7..632e3745d661baf2f3aa6316d2e5ae02178dbf2c 100644 (file)
@@ -26,1128 +26,47 @@ USA.
 
 ;;;; UCD property: nt
 
-;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T00:05:09-08
+;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T23:45:17-08
 
 (declare (usual-integrations))
 \f
-
-(define-deferred ucd-nt-value
-  (let ((offsets (bytevector 81 138 153 4 4 4 4 4 4 4 4 4 4 4 156 158 158)))
-    (named-lambda (ucd-nt-value sv)
-      ((vector-ref ucd-nt-entries (bytevector-u8-ref offsets (fix:and 31 (fix:lsh sv -16)))) sv ucd-nt-entries))))
-
-(define (ucd-nt-entry-0 sv table)
-  sv
-  table
-  #f)
-
-(define (ucd-nt-entry-1 sv table)
-  sv
-  table
-  'decimal)
-
-(define (ucd-nt-entry-2 sv table)
-  sv
-  table
-  'digit)
-
-(define (ucd-nt-entry-3 sv table)
-  sv
-  table
-  'numeric)
-
-(define (ucd-nt-entry-4 sv table)
-  sv
-  table
-  #!default)
-
-
-(define-deferred ucd-nt-entry-5
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 2 0 0 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-5 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-6
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-6 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-7
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 4 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-7 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-8
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-8 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-9
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-9 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-10
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-10 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-11
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 4 4 4 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 4 4 0 0 4 4 0 0 0 0 4 4 4 4 4 4 4 4 0 4 4 4 4 0 0 4 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 0 0 0 0 3 3 3 3 3 3 0 0 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-11 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-12
-  (let ((offsets (bytevector 4 0 0 0 4 0 0 0 0 0 0 4 4 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 4 0 0 4 0 0 4 4 0 4 0 0 0 0 0 4 4 4 4 0 0 4 4 0 0 0 4 4 4 0 4 4 4 4 4 4 4 0 0 0 0 4 0 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 0 0 0 4 0 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 4 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 4 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 0 0 4 4 4 4 4 4 4 0 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-12 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-13
-  (let ((offsets (bytevector 4 0 0 0 4 0 0 0 0 0 0 0 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 4 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 4 4 0 0 4 4 0 0 0 4 4 4 4 4 4 4 4 0 0 4 4 4 4 0 0 4 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 0 0 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 0 0 4 0 0 0 0 0 0 4 4 4 0 0 0 4 0 0 0 0 4 4 4 0 0 4 0 4 0 0 4 4 4 0 0 4 4 4 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 4 4 4 0 0 0 4 0 0 0 0 4 4 0 4 4 4 4 4 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 3 3 3 0 0 0 0 0 0 0 0 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-13 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-14
-  (let ((offsets (bytevector 0 0 0 0 4 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 4 4 4 4 4 4 4 0 0 4 0 0 0 4 4 4 4 4 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 0 0 0 0 0 4 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 4 4 4 4 4 4 4 0 0 4 4 4 4 4 4 4 0 4 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 4 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-14 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-15
-  (let ((offsets (bytevector 4 0 0 0 4 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 0 0 4 4 4 4 0 0 0 0 3 3 3 3 3 3 3 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 4 4 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 4 0 4 4 0 0 0 0 0 0 0 4 4 4 0 4 4 4 4 0 0 0 0 0 0 4 0 4 0 0 0 0 0 0 0 0 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 4 0 0 0 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-15 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-16
-  (let ((offsets (bytevector 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 4 0 4 4 0 0 4 0 4 4 0 4 4 4 4 4 4 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 4 0 4 0 4 4 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 4 4 0 0 0 0 0 4 0 4 0 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 4 4 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-16 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-17
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-17 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-18
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 4 4 4 4 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-18 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-19
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 4 0 0 0 0 0 0 0 4 0 4 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 4 0 0 0 0 0 0 0 4 0 4 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-19 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-20
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4)))
-    (named-lambda (ucd-nt-entry-20 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-21
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-21 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-22
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-22 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-23
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-23 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-24
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 4 4 4 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 2 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-24 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-25
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-25 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-26
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-26 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-27
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 4 4 4 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-27 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-28
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-28 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-29
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 4 0 4 0 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 4 0 0 0 0 0 0 0 0 0 4)))
-    (named-lambda (ucd-nt-entry-29 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-30
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 2 0 4 4 2 2 2 2 2 2 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-30 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-31
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 3 3 3 3 3 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-31 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-32
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4)))
-    (named-lambda (ucd-nt-entry-32 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-33
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 3 3 3 3 3 3 3 3 3 2 2 2 2 2 2 2 2 2 3 2)))
-    (named-lambda (ucd-nt-entry-33 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-34
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 3 2 2 2 2 2 2 2 2 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-34 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-35
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-35 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-36
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 0 3 0 0)))
-    (named-lambda (ucd-nt-entry-36 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-37
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 4 4 4 4 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-37 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-38
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-38 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-39
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-39 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-40
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-40 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-41
-  (let ((offsets (bytevector 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-41 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-42
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 0 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4)))
-    (named-lambda (ucd-nt-entry-42 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-43
-  (let ((offsets (bytevector 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-43 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-44
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-44 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-45
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-45 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-46
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-46 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-47
-  (let ((offsets (bytevector 3 0 0 3 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-47 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-48
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-48 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-49
-  (let ((offsets (bytevector 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-49 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-50
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 3 3 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-50 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-51
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-51 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-52
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 3 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-52 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-53
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3)))
-    (named-lambda (ucd-nt-entry-53 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-54
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-54 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-55
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0)))
-    (named-lambda (ucd-nt-entry-55 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-56
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-56 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-57
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-57 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-58
-  (let ((offsets (bytevector 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-58 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-59
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-59 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-60
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-60 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-61
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-61 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-62
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-62 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-63
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-63 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-64
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-64 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-65
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-65 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-66
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-66 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-67
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-67 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-68
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-68 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-69
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-69 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-70
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 3 3 3 3 3 3 0 0 0 0 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4)))
-    (named-lambda (ucd-nt-entry-70 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-71
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 1 1 1 1 1 1 1 1 1 1 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 4)))
-    (named-lambda (ucd-nt-entry-71 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-72
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-72 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-73
-  (let ((offsets (bytevector 4 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-73 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-74
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-74 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-75
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0)))
-    (named-lambda (ucd-nt-entry-75 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-76
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-76 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-77
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 4 0 4 0 0 4 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-77 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-78
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4)))
-    (named-lambda (ucd-nt-entry-78 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-79
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 4 4 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0)))
-    (named-lambda (ucd-nt-entry-79 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-80
-  (let ((offsets (bytevector 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4 0 0 0 4 4 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 4 4)))
-    (named-lambda (ucd-nt-entry-80 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-81
-  (let ((offsets (bytevector 5 0 0 6 0 7 8 9 10 11 12 13 14 15 16 17 18 0 19 20 0 0 21 22 23 24 25 26 27 28 0 29 30 31 0 32 33 0 0 34 0 0 0 35 36 37 38 39 40 41 42 0 43 0 0 0 44 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 47 48 0 49 0 50 0 0 51 0 52 0 0 0 0 0 53 54 0 0 55 56 0 0 0 57 0 0 0 0 0 0 0 58 0 0 0 59 0 0 60 0 0 0 0 0 0 0 0 0 61 0 0 0 62 0 0 0 0 0 0 0 63 64 0 0 0 0 0 0 0 0 65 0 0 0 0 0 0 0 0 66 0 0 0 0 67 0 68 69 70 71 72 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 76 77 0 78 79 80)))
-    (named-lambda (ucd-nt-entry-81 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-nt-entry-82
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-82 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-83
-  (let ((offsets (bytevector 0 0 0 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4)))
-    (named-lambda (ucd-nt-entry-83 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-84
-  (let ((offsets (bytevector 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-84 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-85
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 3 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-85 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-86
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-86 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-87
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-87 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-88
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-88 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-89
-  (let ((offsets (bytevector 0 0 0 0 0 0 4 4 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 4 4 4 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 4 4 4 4 4 3 3 3 3 3)))
-    (named-lambda (ucd-nt-entry-89 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-90
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 3 3 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3)))
-    (named-lambda (ucd-nt-entry-90 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-91
-  (let ((offsets (bytevector 0 0 0 0 4 0 0 4 4 4 4 4 0 0 0 0 0 0 0 0 4 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 4 4 4 4 0 2 2 2 2 3 3 3 3 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 3 3 3 3 3 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-91 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-92
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-92 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-93
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 3 3 3 3 3 3)))
-    (named-lambda (ucd-nt-entry-93 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-94
-  (let ((offsets (bytevector 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-94 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-95
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-95 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-96
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 1 1 1 1 1 1 1 1 1 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-96 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-97
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 4 0 4 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-97 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-98
-  (let ((offsets (bytevector 0 0 0 0 4 0 0 0 0 0 0 0 0 4 4 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 4 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 4 4 0 0 4 4 0 0 0 4 4 0 4 4 4 4 4 4 0 4 4 4 4 4 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-98 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-99
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 4 0 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-99 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-100
-  (let ((offsets (bytevector 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-100 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-101
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-101 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-102
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 1 1 1 1 1 1 1 1 1 1 3 3 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-102 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-103
-  (let ((offsets (bytevector 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 0)))
-    (named-lambda (ucd-nt-entry-103 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-104
-  (let ((offsets (bytevector 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-104 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-105
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-105 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-106
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-106 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-107
-  (let ((offsets (bytevector 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-107 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-108
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-108 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-109
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-109 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-110
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-110 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-111
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-111 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-112
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 3 3 3 3 3 3 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-112 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-113
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-113 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-114
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-114 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-115
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-115 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-116
-  (let ((offsets (bytevector 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-116 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-117
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-117 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-118
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-118 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-119
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-119 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-120
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-120 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-121
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-121 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-122
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 4 4 0 4 4 0 0 4 4 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 4 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-122 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-123
-  (let ((offsets (bytevector 0 0 0 0 0 0 4 0 0 0 0 4 4 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 0 0 0 0 0 4 0 4 4 4 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-123 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-124
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-124 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-125
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1)))
-    (named-lambda (ucd-nt-entry-125 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-126
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-126 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-127
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 4 0 0 4 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-127 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-128
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-128 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-129
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 1 1 1 1 1 1 1 1 1 1 4 4 4 4 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-129 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-130
-  (let ((offsets (bytevector 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 4 0 4 4 0 4 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 4 0 4 0 4 4 4 4 4 4 0 4 4 4 4 0 4 0 4 0 4 0 0 0 4 0 0 4 0 4 4 0 4 0 4 0 4 0 4 0 4 0 0 4 0 4 4 0 0 0 0 4 0 0 0 0 0 0 0 4 0 0 0 0 4 0 0 0 0 4 0 4 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 0 0 0 4 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-130 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-131
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-131 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-132
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 3 3 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-132 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-133
-  (let ((offsets (bytevector 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-133 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-134
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-134 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-135
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-135 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-136
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-136 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-137
-  (let ((offsets (bytevector 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-137 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-138
-  (let ((offsets (bytevector 82 83 84 85 86 87 0 88 89 90 91 92 93 4 94 4 95 96 97 98 99 100 101 102 103 4 104 4 105 4 4 4 0 0 0 106 107 108 4 4 4 4 4 4 4 4 4 4 0 0 0 0 109 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 110 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 111 112 4 4 4 113 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 114 0 0 115 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 116 4 4 4 4 4 4 4 4 4 4 4 117 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 118 119 120 121 122 123 124 125 0 0 126 4 4 4 4 4 127 4 4 4 4 4 4 4 128 129 4 4 4 4 130 4 131 132 133 0 0 0 134 135 136 137 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-138 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-nt-entry-139
-  (let ((offsets (bytevector 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-139 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-140
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-140 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-141
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-141 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-142
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0)))
-    (named-lambda (ucd-nt-entry-142 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-143
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-143 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-144
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-144 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-145
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-145 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-146
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-146 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-147
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-147 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-148
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-148 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-149
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-149 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-150
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-nt-entry-150 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-151
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-151 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-152
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-152 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-153
-  (let ((offsets (bytevector 139 140 0 0 0 0 0 0 0 141 142 143 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 144 0 0 0 0 0 145 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 146 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 147 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 148 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 149 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 144 0 152 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-153 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-nt-entry-154
-  (let ((offsets (bytevector 4 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-154 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-155
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-155 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-156
-  (let ((offsets (bytevector 154 155 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4)))
-    (named-lambda (ucd-nt-entry-156 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-nt-entry-157
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4)))
-    (named-lambda (ucd-nt-entry-157 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-nt-entry-158
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 157)))
-    (named-lambda (ucd-nt-entry-158 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-(define ucd-nt-entries)
-
-(add-boot-init! (lambda () (set! ucd-nt-entries (make-vector 159)) (initialize-ucd-nt-entries-0) (initialize-ucd-nt-entries-1)))
-
-(define (initialize-ucd-nt-entries-0)
-  (vector-set! ucd-nt-entries 0 ucd-nt-entry-0)
-  (vector-set! ucd-nt-entries 1 ucd-nt-entry-1)
-  (vector-set! ucd-nt-entries 2 ucd-nt-entry-2)
-  (vector-set! ucd-nt-entries 3 ucd-nt-entry-3)
-  (vector-set! ucd-nt-entries 4 ucd-nt-entry-4)
-  (vector-set! ucd-nt-entries 5 ucd-nt-entry-5)
-  (vector-set! ucd-nt-entries 6 ucd-nt-entry-6)
-  (vector-set! ucd-nt-entries 7 ucd-nt-entry-7)
-  (vector-set! ucd-nt-entries 8 ucd-nt-entry-8)
-  (vector-set! ucd-nt-entries 9 ucd-nt-entry-9)
-  (vector-set! ucd-nt-entries 10 ucd-nt-entry-10)
-  (vector-set! ucd-nt-entries 11 ucd-nt-entry-11)
-  (vector-set! ucd-nt-entries 12 ucd-nt-entry-12)
-  (vector-set! ucd-nt-entries 13 ucd-nt-entry-13)
-  (vector-set! ucd-nt-entries 14 ucd-nt-entry-14)
-  (vector-set! ucd-nt-entries 15 ucd-nt-entry-15)
-  (vector-set! ucd-nt-entries 16 ucd-nt-entry-16)
-  (vector-set! ucd-nt-entries 17 ucd-nt-entry-17)
-  (vector-set! ucd-nt-entries 18 ucd-nt-entry-18)
-  (vector-set! ucd-nt-entries 19 ucd-nt-entry-19)
-  (vector-set! ucd-nt-entries 20 ucd-nt-entry-20)
-  (vector-set! ucd-nt-entries 21 ucd-nt-entry-21)
-  (vector-set! ucd-nt-entries 22 ucd-nt-entry-22)
-  (vector-set! ucd-nt-entries 23 ucd-nt-entry-23)
-  (vector-set! ucd-nt-entries 24 ucd-nt-entry-24)
-  (vector-set! ucd-nt-entries 25 ucd-nt-entry-25)
-  (vector-set! ucd-nt-entries 26 ucd-nt-entry-26)
-  (vector-set! ucd-nt-entries 27 ucd-nt-entry-27)
-  (vector-set! ucd-nt-entries 28 ucd-nt-entry-28)
-  (vector-set! ucd-nt-entries 29 ucd-nt-entry-29)
-  (vector-set! ucd-nt-entries 30 ucd-nt-entry-30)
-  (vector-set! ucd-nt-entries 31 ucd-nt-entry-31)
-  (vector-set! ucd-nt-entries 32 ucd-nt-entry-32)
-  (vector-set! ucd-nt-entries 33 ucd-nt-entry-33)
-  (vector-set! ucd-nt-entries 34 ucd-nt-entry-34)
-  (vector-set! ucd-nt-entries 35 ucd-nt-entry-35)
-  (vector-set! ucd-nt-entries 36 ucd-nt-entry-36)
-  (vector-set! ucd-nt-entries 37 ucd-nt-entry-37)
-  (vector-set! ucd-nt-entries 38 ucd-nt-entry-38)
-  (vector-set! ucd-nt-entries 39 ucd-nt-entry-39)
-  (vector-set! ucd-nt-entries 40 ucd-nt-entry-40)
-  (vector-set! ucd-nt-entries 41 ucd-nt-entry-41)
-  (vector-set! ucd-nt-entries 42 ucd-nt-entry-42)
-  (vector-set! ucd-nt-entries 43 ucd-nt-entry-43)
-  (vector-set! ucd-nt-entries 44 ucd-nt-entry-44)
-  (vector-set! ucd-nt-entries 45 ucd-nt-entry-45)
-  (vector-set! ucd-nt-entries 46 ucd-nt-entry-46)
-  (vector-set! ucd-nt-entries 47 ucd-nt-entry-47)
-  (vector-set! ucd-nt-entries 48 ucd-nt-entry-48)
-  (vector-set! ucd-nt-entries 49 ucd-nt-entry-49)
-  (vector-set! ucd-nt-entries 50 ucd-nt-entry-50)
-  (vector-set! ucd-nt-entries 51 ucd-nt-entry-51)
-  (vector-set! ucd-nt-entries 52 ucd-nt-entry-52)
-  (vector-set! ucd-nt-entries 53 ucd-nt-entry-53)
-  (vector-set! ucd-nt-entries 54 ucd-nt-entry-54)
-  (vector-set! ucd-nt-entries 55 ucd-nt-entry-55)
-  (vector-set! ucd-nt-entries 56 ucd-nt-entry-56)
-  (vector-set! ucd-nt-entries 57 ucd-nt-entry-57)
-  (vector-set! ucd-nt-entries 58 ucd-nt-entry-58)
-  (vector-set! ucd-nt-entries 59 ucd-nt-entry-59)
-  (vector-set! ucd-nt-entries 60 ucd-nt-entry-60)
-  (vector-set! ucd-nt-entries 61 ucd-nt-entry-61)
-  (vector-set! ucd-nt-entries 62 ucd-nt-entry-62)
-  (vector-set! ucd-nt-entries 63 ucd-nt-entry-63)
-  (vector-set! ucd-nt-entries 64 ucd-nt-entry-64)
-  (vector-set! ucd-nt-entries 65 ucd-nt-entry-65)
-  (vector-set! ucd-nt-entries 66 ucd-nt-entry-66)
-  (vector-set! ucd-nt-entries 67 ucd-nt-entry-67)
-  (vector-set! ucd-nt-entries 68 ucd-nt-entry-68)
-  (vector-set! ucd-nt-entries 69 ucd-nt-entry-69)
-  (vector-set! ucd-nt-entries 70 ucd-nt-entry-70)
-  (vector-set! ucd-nt-entries 71 ucd-nt-entry-71)
-  (vector-set! ucd-nt-entries 72 ucd-nt-entry-72)
-  (vector-set! ucd-nt-entries 73 ucd-nt-entry-73)
-  (vector-set! ucd-nt-entries 74 ucd-nt-entry-74)
-  (vector-set! ucd-nt-entries 75 ucd-nt-entry-75)
-  (vector-set! ucd-nt-entries 76 ucd-nt-entry-76)
-  (vector-set! ucd-nt-entries 77 ucd-nt-entry-77)
-  (vector-set! ucd-nt-entries 78 ucd-nt-entry-78)
-  (vector-set! ucd-nt-entries 79 ucd-nt-entry-79)
-  (vector-set! ucd-nt-entries 80 ucd-nt-entry-80)
-  (vector-set! ucd-nt-entries 81 ucd-nt-entry-81)
-  (vector-set! ucd-nt-entries 82 ucd-nt-entry-82)
-  (vector-set! ucd-nt-entries 83 ucd-nt-entry-83)
-  (vector-set! ucd-nt-entries 84 ucd-nt-entry-84)
-  (vector-set! ucd-nt-entries 85 ucd-nt-entry-85)
-  (vector-set! ucd-nt-entries 86 ucd-nt-entry-86)
-  (vector-set! ucd-nt-entries 87 ucd-nt-entry-87)
-  (vector-set! ucd-nt-entries 88 ucd-nt-entry-88)
-  (vector-set! ucd-nt-entries 89 ucd-nt-entry-89)
-  (vector-set! ucd-nt-entries 90 ucd-nt-entry-90)
-  (vector-set! ucd-nt-entries 91 ucd-nt-entry-91)
-  (vector-set! ucd-nt-entries 92 ucd-nt-entry-92)
-  (vector-set! ucd-nt-entries 93 ucd-nt-entry-93)
-  (vector-set! ucd-nt-entries 94 ucd-nt-entry-94)
-  (vector-set! ucd-nt-entries 95 ucd-nt-entry-95)
-  (vector-set! ucd-nt-entries 96 ucd-nt-entry-96)
-  (vector-set! ucd-nt-entries 97 ucd-nt-entry-97)
-  (vector-set! ucd-nt-entries 98 ucd-nt-entry-98)
-  (vector-set! ucd-nt-entries 99 ucd-nt-entry-99))
-
-(define (initialize-ucd-nt-entries-1)
-  (vector-set! ucd-nt-entries 100 ucd-nt-entry-100)
-  (vector-set! ucd-nt-entries 101 ucd-nt-entry-101)
-  (vector-set! ucd-nt-entries 102 ucd-nt-entry-102)
-  (vector-set! ucd-nt-entries 103 ucd-nt-entry-103)
-  (vector-set! ucd-nt-entries 104 ucd-nt-entry-104)
-  (vector-set! ucd-nt-entries 105 ucd-nt-entry-105)
-  (vector-set! ucd-nt-entries 106 ucd-nt-entry-106)
-  (vector-set! ucd-nt-entries 107 ucd-nt-entry-107)
-  (vector-set! ucd-nt-entries 108 ucd-nt-entry-108)
-  (vector-set! ucd-nt-entries 109 ucd-nt-entry-109)
-  (vector-set! ucd-nt-entries 110 ucd-nt-entry-110)
-  (vector-set! ucd-nt-entries 111 ucd-nt-entry-111)
-  (vector-set! ucd-nt-entries 112 ucd-nt-entry-112)
-  (vector-set! ucd-nt-entries 113 ucd-nt-entry-113)
-  (vector-set! ucd-nt-entries 114 ucd-nt-entry-114)
-  (vector-set! ucd-nt-entries 115 ucd-nt-entry-115)
-  (vector-set! ucd-nt-entries 116 ucd-nt-entry-116)
-  (vector-set! ucd-nt-entries 117 ucd-nt-entry-117)
-  (vector-set! ucd-nt-entries 118 ucd-nt-entry-118)
-  (vector-set! ucd-nt-entries 119 ucd-nt-entry-119)
-  (vector-set! ucd-nt-entries 120 ucd-nt-entry-120)
-  (vector-set! ucd-nt-entries 121 ucd-nt-entry-121)
-  (vector-set! ucd-nt-entries 122 ucd-nt-entry-122)
-  (vector-set! ucd-nt-entries 123 ucd-nt-entry-123)
-  (vector-set! ucd-nt-entries 124 ucd-nt-entry-124)
-  (vector-set! ucd-nt-entries 125 ucd-nt-entry-125)
-  (vector-set! ucd-nt-entries 126 ucd-nt-entry-126)
-  (vector-set! ucd-nt-entries 127 ucd-nt-entry-127)
-  (vector-set! ucd-nt-entries 128 ucd-nt-entry-128)
-  (vector-set! ucd-nt-entries 129 ucd-nt-entry-129)
-  (vector-set! ucd-nt-entries 130 ucd-nt-entry-130)
-  (vector-set! ucd-nt-entries 131 ucd-nt-entry-131)
-  (vector-set! ucd-nt-entries 132 ucd-nt-entry-132)
-  (vector-set! ucd-nt-entries 133 ucd-nt-entry-133)
-  (vector-set! ucd-nt-entries 134 ucd-nt-entry-134)
-  (vector-set! ucd-nt-entries 135 ucd-nt-entry-135)
-  (vector-set! ucd-nt-entries 136 ucd-nt-entry-136)
-  (vector-set! ucd-nt-entries 137 ucd-nt-entry-137)
-  (vector-set! ucd-nt-entries 138 ucd-nt-entry-138)
-  (vector-set! ucd-nt-entries 139 ucd-nt-entry-139)
-  (vector-set! ucd-nt-entries 140 ucd-nt-entry-140)
-  (vector-set! ucd-nt-entries 141 ucd-nt-entry-141)
-  (vector-set! ucd-nt-entries 142 ucd-nt-entry-142)
-  (vector-set! ucd-nt-entries 143 ucd-nt-entry-143)
-  (vector-set! ucd-nt-entries 144 ucd-nt-entry-144)
-  (vector-set! ucd-nt-entries 145 ucd-nt-entry-145)
-  (vector-set! ucd-nt-entries 146 ucd-nt-entry-146)
-  (vector-set! ucd-nt-entries 147 ucd-nt-entry-147)
-  (vector-set! ucd-nt-entries 148 ucd-nt-entry-148)
-  (vector-set! ucd-nt-entries 149 ucd-nt-entry-149)
-  (vector-set! ucd-nt-entries 150 ucd-nt-entry-150)
-  (vector-set! ucd-nt-entries 151 ucd-nt-entry-151)
-  (vector-set! ucd-nt-entries 152 ucd-nt-entry-152)
-  (vector-set! ucd-nt-entries 153 ucd-nt-entry-153)
-  (vector-set! ucd-nt-entries 154 ucd-nt-entry-154)
-  (vector-set! ucd-nt-entries 155 ucd-nt-entry-155)
-  (vector-set! ucd-nt-entries 156 ucd-nt-entry-156)
-  (vector-set! ucd-nt-entries 157 ucd-nt-entry-157)
-  (vector-set! ucd-nt-entries 158 ucd-nt-entry-158))
+(define (ucd-nt-value sv)
+  (hash-table-ref/default char-map:numeric-type sv #f))
+
+(define-deferred char-map:numeric-type
+  (let ((table (make-strong-eq-hash-table)))
+    (for-each
+     (lambda (p)
+       (hash-table-set! table (car p) (cdr p)))
+     '((48 . decimal)     (49 . decimal)     (50 . decimal)     (51 . decimal)     (52 . decimal)     (53 . decimal)     (54 . decimal)     (55 . decimal)     (56 . decimal)     (57 . decimal)     (178 . digit)      (179 . digit)      (185 . digit)      (188 . numeric)    (189 . numeric)    (190 . numeric)    (1632 . decimal)   (1633 . decimal)   (1634 . decimal)   (1635 . decimal)   (1636 . decimal)   (1637 . decimal)   (1638 . decimal)   (1639 . decimal)   (1640 . decimal)   (1641 . decimal)   (1776 . decimal)   (1777 . decimal)   (1778 . decimal)   (1779 . decimal)   (1780 . decimal)   (1781 . decimal)   (1782 . decimal)   (1783 . decimal)   (1784 . decimal)   (1785 . decimal)   (1984 . decimal)   (1985 . decimal)   (1986 . decimal)   (1987 . decimal)   (1988 . decimal)   (1989 . decimal)   (1990 . decimal)   (1991 . decimal)   (1992 . decimal)   (1993 . decimal)   (2406 . decimal)   (2407 . decimal)   (2408 . decimal)   (2409 . decimal)   (2410 . decimal)
+       (2411 . decimal)   (2412 . decimal)   (2413 . decimal)   (2414 . decimal)   (2415 . decimal)   (2534 . decimal)   (2535 . decimal)   (2536 . decimal)   (2537 . decimal)   (2538 . decimal)   (2539 . decimal)   (2540 . decimal)   (2541 . decimal)   (2542 . decimal)   (2543 . decimal)   (2548 . numeric)   (2549 . numeric)   (2550 . numeric)   (2551 . numeric)   (2552 . numeric)   (2553 . numeric)   (2662 . decimal)   (2663 . decimal)   (2664 . decimal)   (2665 . decimal)   (2666 . decimal)   (2667 . decimal)   (2668 . decimal)   (2669 . decimal)   (2670 . decimal)   (2671 . decimal)   (2790 . decimal)   (2791 . decimal)   (2792 . decimal)   (2793 . decimal)   (2794 . decimal)   (2795 . decimal)   (2796 . decimal)   (2797 . decimal)   (2798 . decimal)   (2799 . decimal)   (2918 . decimal)   (2919 . decimal)   (2920 . decimal)   (2921 . decimal)   (2922 . decimal)   (2923 . decimal)   (2924 . decimal)   (2925 . decimal)   (2926 . decimal)   (2927 . decimal)
+       (2930 . numeric)   (2931 . numeric)   (2932 . numeric)   (2933 . numeric)   (2934 . numeric)   (2935 . numeric)   (3046 . decimal)   (3047 . decimal)   (3048 . decimal)   (3049 . decimal)   (3050 . decimal)   (3051 . decimal)   (3052 . decimal)   (3053 . decimal)   (3054 . decimal)   (3055 . decimal)   (3056 . numeric)   (3057 . numeric)   (3058 . numeric)   (3174 . decimal)   (3175 . decimal)   (3176 . decimal)   (3177 . decimal)   (3178 . decimal)   (3179 . decimal)   (3180 . decimal)   (3181 . decimal)   (3182 . decimal)   (3183 . decimal)   (3192 . numeric)   (3193 . numeric)   (3194 . numeric)   (3195 . numeric)   (3196 . numeric)   (3197 . numeric)   (3198 . numeric)   (3302 . decimal)   (3303 . decimal)   (3304 . decimal)   (3305 . decimal)   (3306 . decimal)   (3307 . decimal)   (3308 . decimal)   (3309 . decimal)   (3310 . decimal)   (3311 . decimal)   (3416 . numeric)   (3417 . numeric)   (3418 . numeric)   (3419 . numeric)   (3420 . numeric)
+       (3421 . numeric)   (3422 . numeric)   (3430 . decimal)   (3431 . decimal)   (3432 . decimal)   (3433 . decimal)   (3434 . decimal)   (3435 . decimal)   (3436 . decimal)   (3437 . decimal)   (3438 . decimal)   (3439 . decimal)   (3440 . numeric)   (3441 . numeric)   (3442 . numeric)   (3443 . numeric)   (3444 . numeric)   (3445 . numeric)   (3446 . numeric)   (3447 . numeric)   (3448 . numeric)   (3558 . decimal)   (3559 . decimal)   (3560 . decimal)   (3561 . decimal)   (3562 . decimal)   (3563 . decimal)   (3564 . decimal)   (3565 . decimal)   (3566 . decimal)   (3567 . decimal)   (3664 . decimal)   (3665 . decimal)   (3666 . decimal)   (3667 . decimal)   (3668 . decimal)   (3669 . decimal)   (3670 . decimal)   (3671 . decimal)   (3672 . decimal)   (3673 . decimal)   (3792 . decimal)   (3793 . decimal)   (3794 . decimal)   (3795 . decimal)   (3796 . decimal)   (3797 . decimal)   (3798 . decimal)   (3799 . decimal)   (3800 . decimal)   (3801 . decimal)
+       (3872 . decimal)   (3873 . decimal)   (3874 . decimal)   (3875 . decimal)   (3876 . decimal)   (3877 . decimal)   (3878 . decimal)   (3879 . decimal)   (3880 . decimal)   (3881 . decimal)   (3882 . numeric)   (3883 . numeric)   (3884 . numeric)   (3885 . numeric)   (3886 . numeric)   (3887 . numeric)   (3888 . numeric)   (3889 . numeric)   (3890 . numeric)   (3891 . numeric)   (4160 . decimal)   (4161 . decimal)   (4162 . decimal)   (4163 . decimal)   (4164 . decimal)   (4165 . decimal)   (4166 . decimal)   (4167 . decimal)   (4168 . decimal)   (4169 . decimal)   (4240 . decimal)   (4241 . decimal)   (4242 . decimal)   (4243 . decimal)   (4244 . decimal)   (4245 . decimal)   (4246 . decimal)   (4247 . decimal)   (4248 . decimal)   (4249 . decimal)   (4969 . digit)     (4970 . digit)     (4971 . digit)     (4972 . digit)     (4973 . digit)     (4974 . digit)     (4975 . digit)     (4976 . digit)     (4977 . digit)     (4978 . numeric)   (4979 . numeric)
+       (4980 . numeric)   (4981 . numeric)   (4982 . numeric)   (4983 . numeric)   (4984 . numeric)   (4985 . numeric)   (4986 . numeric)   (4987 . numeric)   (4988 . numeric)   (5870 . numeric)   (5871 . numeric)   (5872 . numeric)   (6112 . decimal)   (6113 . decimal)   (6114 . decimal)   (6115 . decimal)   (6116 . decimal)   (6117 . decimal)   (6118 . decimal)   (6119 . decimal)   (6120 . decimal)   (6121 . decimal)   (6128 . numeric)   (6129 . numeric)   (6130 . numeric)   (6131 . numeric)   (6132 . numeric)   (6133 . numeric)   (6134 . numeric)   (6135 . numeric)   (6136 . numeric)   (6137 . numeric)   (6160 . decimal)   (6161 . decimal)   (6162 . decimal)   (6163 . decimal)   (6164 . decimal)   (6165 . decimal)   (6166 . decimal)   (6167 . decimal)   (6168 . decimal)   (6169 . decimal)   (6470 . decimal)   (6471 . decimal)   (6472 . decimal)   (6473 . decimal)   (6474 . decimal)   (6475 . decimal)   (6476 . decimal)   (6477 . decimal)   (6478 . decimal)
+       (6479 . decimal)   (6608 . decimal)   (6609 . decimal)   (6610 . decimal)   (6611 . decimal)   (6612 . decimal)   (6613 . decimal)   (6614 . decimal)   (6615 . decimal)   (6616 . decimal)   (6617 . decimal)   (6618 . digit)     (6784 . decimal)   (6785 . decimal)   (6786 . decimal)   (6787 . decimal)   (6788 . decimal)   (6789 . decimal)   (6790 . decimal)   (6791 . decimal)   (6792 . decimal)   (6793 . decimal)   (6800 . decimal)   (6801 . decimal)   (6802 . decimal)   (6803 . decimal)   (6804 . decimal)   (6805 . decimal)   (6806 . decimal)   (6807 . decimal)   (6808 . decimal)   (6809 . decimal)   (6992 . decimal)   (6993 . decimal)   (6994 . decimal)   (6995 . decimal)   (6996 . decimal)   (6997 . decimal)   (6998 . decimal)   (6999 . decimal)   (7000 . decimal)   (7001 . decimal)   (7088 . decimal)   (7089 . decimal)   (7090 . decimal)   (7091 . decimal)   (7092 . decimal)   (7093 . decimal)   (7094 . decimal)   (7095 . decimal)   (7096 . decimal)
+       (7097 . decimal)   (7232 . decimal)   (7233 . decimal)   (7234 . decimal)   (7235 . decimal)   (7236 . decimal)   (7237 . decimal)   (7238 . decimal)   (7239 . decimal)   (7240 . decimal)   (7241 . decimal)   (7248 . decimal)   (7249 . decimal)   (7250 . decimal)   (7251 . decimal)   (7252 . decimal)   (7253 . decimal)   (7254 . decimal)   (7255 . decimal)   (7256 . decimal)   (7257 . decimal)   (8304 . digit)     (8308 . digit)     (8309 . digit)     (8310 . digit)     (8311 . digit)     (8312 . digit)     (8313 . digit)     (8320 . digit)     (8321 . digit)     (8322 . digit)     (8323 . digit)     (8324 . digit)     (8325 . digit)     (8326 . digit)     (8327 . digit)     (8328 . digit)     (8329 . digit)     (8528 . numeric)   (8529 . numeric)   (8530 . numeric)   (8531 . numeric)   (8532 . numeric)   (8533 . numeric)   (8534 . numeric)   (8535 . numeric)   (8536 . numeric)   (8537 . numeric)   (8538 . numeric)   (8539 . numeric)   (8540 . numeric)
+       (8541 . numeric)   (8542 . numeric)   (8543 . numeric)   (8544 . numeric)   (8545 . numeric)   (8546 . numeric)   (8547 . numeric)   (8548 . numeric)   (8549 . numeric)   (8550 . numeric)   (8551 . numeric)   (8552 . numeric)   (8553 . numeric)   (8554 . numeric)   (8555 . numeric)   (8556 . numeric)   (8557 . numeric)   (8558 . numeric)   (8559 . numeric)   (8560 . numeric)   (8561 . numeric)   (8562 . numeric)   (8563 . numeric)   (8564 . numeric)   (8565 . numeric)   (8566 . numeric)   (8567 . numeric)   (8568 . numeric)   (8569 . numeric)   (8570 . numeric)   (8571 . numeric)   (8572 . numeric)   (8573 . numeric)   (8574 . numeric)   (8575 . numeric)   (8576 . numeric)   (8577 . numeric)   (8578 . numeric)   (8581 . numeric)   (8582 . numeric)   (8583 . numeric)   (8584 . numeric)   (8585 . numeric)   (9312 . digit)     (9313 . digit)     (9314 . digit)     (9315 . digit)     (9316 . digit)     (9317 . digit)     (9318 . digit)     (9319 . digit)
+       (9320 . digit)     (9321 . numeric)   (9322 . numeric)   (9323 . numeric)   (9324 . numeric)   (9325 . numeric)   (9326 . numeric)   (9327 . numeric)   (9328 . numeric)   (9329 . numeric)   (9330 . numeric)   (9331 . numeric)   (9332 . digit)     (9333 . digit)     (9334 . digit)     (9335 . digit)     (9336 . digit)     (9337 . digit)     (9338 . digit)     (9339 . digit)     (9340 . digit)     (9341 . numeric)   (9342 . numeric)   (9343 . numeric)   (9344 . numeric)   (9345 . numeric)   (9346 . numeric)   (9347 . numeric)   (9348 . numeric)   (9349 . numeric)   (9350 . numeric)   (9351 . numeric)   (9352 . digit)     (9353 . digit)     (9354 . digit)     (9355 . digit)     (9356 . digit)     (9357 . digit)     (9358 . digit)     (9359 . digit)     (9360 . digit)     (9361 . numeric)   (9362 . numeric)   (9363 . numeric)   (9364 . numeric)   (9365 . numeric)   (9366 . numeric)   (9367 . numeric)   (9368 . numeric)   (9369 . numeric)   (9370 . numeric)
+       (9371 . numeric)   (9450 . digit)     (9451 . numeric)   (9452 . numeric)   (9453 . numeric)   (9454 . numeric)   (9455 . numeric)   (9456 . numeric)   (9457 . numeric)   (9458 . numeric)   (9459 . numeric)   (9460 . numeric)   (9461 . digit)     (9462 . digit)     (9463 . digit)     (9464 . digit)     (9465 . digit)     (9466 . digit)     (9467 . digit)     (9468 . digit)     (9469 . digit)     (9470 . numeric)   (9471 . digit)     (10102 . digit)    (10103 . digit)    (10104 . digit)    (10105 . digit)    (10106 . digit)    (10107 . digit)    (10108 . digit)    (10109 . digit)    (10110 . digit)    (10111 . numeric)  (10112 . digit)    (10113 . digit)    (10114 . digit)    (10115 . digit)    (10116 . digit)    (10117 . digit)    (10118 . digit)    (10119 . digit)    (10120 . digit)    (10121 . numeric)  (10122 . digit)    (10123 . digit)    (10124 . digit)    (10125 . digit)    (10126 . digit)    (10127 . digit)    (10128 . digit)    (10129 . digit)
+       (10130 . digit)    (10131 . numeric)  (11517 . numeric)  (12295 . numeric)  (12321 . numeric)  (12322 . numeric)  (12323 . numeric)  (12324 . numeric)  (12325 . numeric)  (12326 . numeric)  (12327 . numeric)  (12328 . numeric)  (12329 . numeric)  (12344 . numeric)  (12345 . numeric)  (12346 . numeric)  (12690 . numeric)  (12691 . numeric)  (12692 . numeric)  (12693 . numeric)  (12832 . numeric)  (12833 . numeric)  (12834 . numeric)  (12835 . numeric)  (12836 . numeric)  (12837 . numeric)  (12838 . numeric)  (12839 . numeric)  (12840 . numeric)  (12841 . numeric)  (12872 . numeric)  (12873 . numeric)  (12874 . numeric)  (12875 . numeric)  (12876 . numeric)  (12877 . numeric)  (12878 . numeric)  (12879 . numeric)  (12881 . numeric)  (12882 . numeric)  (12883 . numeric)  (12884 . numeric)  (12885 . numeric)  (12886 . numeric)  (12887 . numeric)  (12888 . numeric)  (12889 . numeric)  (12890 . numeric)  (12891 . numeric)  (12892 . numeric)  (12893 . numeric)
+       (12894 . numeric)  (12895 . numeric)  (12928 . numeric)  (12929 . numeric)  (12930 . numeric)  (12931 . numeric)  (12932 . numeric)  (12933 . numeric)  (12934 . numeric)  (12935 . numeric)  (12936 . numeric)  (12937 . numeric)  (12977 . numeric)  (12978 . numeric)  (12979 . numeric)  (12980 . numeric)  (12981 . numeric)  (12982 . numeric)  (12983 . numeric)  (12984 . numeric)  (12985 . numeric)  (12986 . numeric)  (12987 . numeric)  (12988 . numeric)  (12989 . numeric)  (12990 . numeric)  (12991 . numeric)  (13317 . numeric)  (13443 . numeric)  (14378 . numeric)  (15181 . numeric)  (19968 . numeric)  (19971 . numeric)  (19975 . numeric)  (19977 . numeric)  (20061 . numeric)  (20108 . numeric)  (20116 . numeric)  (20118 . numeric)  (20159 . numeric)  (20160 . numeric)  (20191 . numeric)  (20200 . numeric)  (20237 . numeric)  (20336 . numeric)  (20740 . numeric)  (20806 . numeric)  (20841 . numeric)  (20843 . numeric)  (20845 . numeric)  (21313 . numeric)
+       (21315 . numeric)  (21316 . numeric)  (21317 . numeric)  (21324 . numeric)  (21441 . numeric)  (21442 . numeric)  (21443 . numeric)  (21444 . numeric)  (22235 . numeric)  (22769 . numeric)  (22777 . numeric)  (24186 . numeric)  (24318 . numeric)  (24319 . numeric)  (24332 . numeric)  (24333 . numeric)  (24334 . numeric)  (24336 . numeric)  (25342 . numeric)  (25420 . numeric)  (26578 . numeric)  (28422 . numeric)  (29590 . numeric)  (30334 . numeric)  (32902 . numeric)  (33836 . numeric)  (36014 . numeric)  (36019 . numeric)  (36144 . numeric)  (38433 . numeric)  (38470 . numeric)  (38476 . numeric)  (38520 . numeric)  (38646 . numeric)  (42528 . decimal)  (42529 . decimal)  (42530 . decimal)  (42531 . decimal)  (42532 . decimal)  (42533 . decimal)  (42534 . decimal)  (42535 . decimal)  (42536 . decimal)  (42537 . decimal)  (42726 . numeric)  (42727 . numeric)  (42728 . numeric)  (42729 . numeric)  (42730 . numeric)  (42731 . numeric)  (42732 . numeric)
+       (42733 . numeric)  (42734 . numeric)  (42735 . numeric)  (43056 . numeric)  (43057 . numeric)  (43058 . numeric)  (43059 . numeric)  (43060 . numeric)  (43061 . numeric)  (43216 . decimal)  (43217 . decimal)  (43218 . decimal)  (43219 . decimal)  (43220 . decimal)  (43221 . decimal)  (43222 . decimal)  (43223 . decimal)  (43224 . decimal)  (43225 . decimal)  (43264 . decimal)  (43265 . decimal)  (43266 . decimal)  (43267 . decimal)  (43268 . decimal)  (43269 . decimal)  (43270 . decimal)  (43271 . decimal)  (43272 . decimal)  (43273 . decimal)  (43472 . decimal)  (43473 . decimal)  (43474 . decimal)  (43475 . decimal)  (43476 . decimal)  (43477 . decimal)  (43478 . decimal)  (43479 . decimal)  (43480 . decimal)  (43481 . decimal)  (43504 . decimal)  (43505 . decimal)  (43506 . decimal)  (43507 . decimal)  (43508 . decimal)  (43509 . decimal)  (43510 . decimal)  (43511 . decimal)  (43512 . decimal)  (43513 . decimal)  (43600 . decimal)  (43601 . decimal)
+       (43602 . decimal)  (43603 . decimal)  (43604 . decimal)  (43605 . decimal)  (43606 . decimal)  (43607 . decimal)  (43608 . decimal)  (43609 . decimal)  (44016 . decimal)  (44017 . decimal)  (44018 . decimal)  (44019 . decimal)  (44020 . decimal)  (44021 . decimal)  (44022 . decimal)  (44023 . decimal)  (44024 . decimal)  (44025 . decimal)  (63851 . numeric)  (63859 . numeric)  (63864 . numeric)  (63922 . numeric)  (63953 . numeric)  (63955 . numeric)  (63997 . numeric)  (65296 . decimal)  (65297 . decimal)  (65298 . decimal)  (65299 . decimal)  (65300 . decimal)  (65301 . decimal)  (65302 . decimal)  (65303 . decimal)  (65304 . decimal)  (65305 . decimal)  (65799 . numeric)  (65800 . numeric)  (65801 . numeric)  (65802 . numeric)  (65803 . numeric)  (65804 . numeric)  (65805 . numeric)  (65806 . numeric)  (65807 . numeric)  (65808 . numeric)  (65809 . numeric)  (65810 . numeric)  (65811 . numeric)  (65812 . numeric)  (65813 . numeric)  (65814 . numeric)
+       (65815 . numeric)  (65816 . numeric)  (65817 . numeric)  (65818 . numeric)  (65819 . numeric)  (65820 . numeric)  (65821 . numeric)  (65822 . numeric)  (65823 . numeric)  (65824 . numeric)  (65825 . numeric)  (65826 . numeric)  (65827 . numeric)  (65828 . numeric)  (65829 . numeric)  (65830 . numeric)  (65831 . numeric)  (65832 . numeric)  (65833 . numeric)  (65834 . numeric)  (65835 . numeric)  (65836 . numeric)  (65837 . numeric)  (65838 . numeric)  (65839 . numeric)  (65840 . numeric)  (65841 . numeric)  (65842 . numeric)  (65843 . numeric)  (65856 . numeric)  (65857 . numeric)  (65858 . numeric)  (65859 . numeric)  (65860 . numeric)  (65861 . numeric)  (65862 . numeric)  (65863 . numeric)  (65864 . numeric)  (65865 . numeric)  (65866 . numeric)  (65867 . numeric)  (65868 . numeric)  (65869 . numeric)  (65870 . numeric)  (65871 . numeric)  (65872 . numeric)  (65873 . numeric)  (65874 . numeric)  (65875 . numeric)  (65876 . numeric)  (65877 . numeric)
+       (65878 . numeric)  (65879 . numeric)  (65880 . numeric)  (65881 . numeric)  (65882 . numeric)  (65883 . numeric)  (65884 . numeric)  (65885 . numeric)  (65886 . numeric)  (65887 . numeric)  (65888 . numeric)  (65889 . numeric)  (65890 . numeric)  (65891 . numeric)  (65892 . numeric)  (65893 . numeric)  (65894 . numeric)  (65895 . numeric)  (65896 . numeric)  (65897 . numeric)  (65898 . numeric)  (65899 . numeric)  (65900 . numeric)  (65901 . numeric)  (65902 . numeric)  (65903 . numeric)  (65904 . numeric)  (65905 . numeric)  (65906 . numeric)  (65907 . numeric)  (65908 . numeric)  (65909 . numeric)  (65910 . numeric)  (65911 . numeric)  (65912 . numeric)  (65930 . numeric)  (65931 . numeric)  (66273 . numeric)  (66274 . numeric)  (66275 . numeric)  (66276 . numeric)  (66277 . numeric)  (66278 . numeric)  (66279 . numeric)  (66280 . numeric)  (66281 . numeric)  (66282 . numeric)  (66283 . numeric)  (66284 . numeric)  (66285 . numeric)  (66286 . numeric)
+       (66287 . numeric)  (66288 . numeric)  (66289 . numeric)  (66290 . numeric)  (66291 . numeric)  (66292 . numeric)  (66293 . numeric)  (66294 . numeric)  (66295 . numeric)  (66296 . numeric)  (66297 . numeric)  (66298 . numeric)  (66299 . numeric)  (66336 . numeric)  (66337 . numeric)  (66338 . numeric)  (66339 . numeric)  (66369 . numeric)  (66378 . numeric)  (66513 . numeric)  (66514 . numeric)  (66515 . numeric)  (66516 . numeric)  (66517 . numeric)  (66720 . decimal)  (66721 . decimal)  (66722 . decimal)  (66723 . decimal)  (66724 . decimal)  (66725 . decimal)  (66726 . decimal)  (66727 . decimal)  (66728 . decimal)  (66729 . decimal)  (67672 . numeric)  (67673 . numeric)  (67674 . numeric)  (67675 . numeric)  (67676 . numeric)  (67677 . numeric)  (67678 . numeric)  (67679 . numeric)  (67705 . numeric)  (67706 . numeric)  (67707 . numeric)  (67708 . numeric)  (67709 . numeric)  (67710 . numeric)  (67711 . numeric)  (67751 . numeric)  (67752 . numeric)
+       (67753 . numeric)  (67754 . numeric)  (67755 . numeric)  (67756 . numeric)  (67757 . numeric)  (67758 . numeric)  (67759 . numeric)  (67835 . numeric)  (67836 . numeric)  (67837 . numeric)  (67838 . numeric)  (67839 . numeric)  (67862 . numeric)  (67863 . numeric)  (67864 . numeric)  (67865 . numeric)  (67866 . numeric)  (67867 . numeric)  (68028 . numeric)  (68029 . numeric)  (68032 . numeric)  (68033 . numeric)  (68034 . numeric)  (68035 . numeric)  (68036 . numeric)  (68037 . numeric)  (68038 . numeric)  (68039 . numeric)  (68040 . numeric)  (68041 . numeric)  (68042 . numeric)  (68043 . numeric)  (68044 . numeric)  (68045 . numeric)  (68046 . numeric)  (68047 . numeric)  (68050 . numeric)  (68051 . numeric)  (68052 . numeric)  (68053 . numeric)  (68054 . numeric)  (68055 . numeric)  (68056 . numeric)  (68057 . numeric)  (68058 . numeric)  (68059 . numeric)  (68060 . numeric)  (68061 . numeric)  (68062 . numeric)  (68063 . numeric)  (68064 . numeric)
+       (68065 . numeric)  (68066 . numeric)  (68067 . numeric)  (68068 . numeric)  (68069 . numeric)  (68070 . numeric)  (68071 . numeric)  (68072 . numeric)  (68073 . numeric)  (68074 . numeric)  (68075 . numeric)  (68076 . numeric)  (68077 . numeric)  (68078 . numeric)  (68079 . numeric)  (68080 . numeric)  (68081 . numeric)  (68082 . numeric)  (68083 . numeric)  (68084 . numeric)  (68085 . numeric)  (68086 . numeric)  (68087 . numeric)  (68088 . numeric)  (68089 . numeric)  (68090 . numeric)  (68091 . numeric)  (68092 . numeric)  (68093 . numeric)  (68094 . numeric)  (68095 . numeric)  (68160 . digit)    (68161 . digit)    (68162 . digit)    (68163 . digit)    (68164 . numeric)  (68165 . numeric)  (68166 . numeric)  (68167 . numeric)  (68221 . numeric)  (68222 . numeric)  (68253 . numeric)  (68254 . numeric)  (68255 . numeric)  (68331 . numeric)  (68332 . numeric)  (68333 . numeric)  (68334 . numeric)  (68335 . numeric)  (68440 . numeric)  (68441 . numeric)
+       (68442 . numeric)  (68443 . numeric)  (68444 . numeric)  (68445 . numeric)  (68446 . numeric)  (68447 . numeric)  (68472 . numeric)  (68473 . numeric)  (68474 . numeric)  (68475 . numeric)  (68476 . numeric)  (68477 . numeric)  (68478 . numeric)  (68479 . numeric)  (68521 . numeric)  (68522 . numeric)  (68523 . numeric)  (68524 . numeric)  (68525 . numeric)  (68526 . numeric)  (68527 . numeric)  (68858 . numeric)  (68859 . numeric)  (68860 . numeric)  (68861 . numeric)  (68862 . numeric)  (68863 . numeric)  (69216 . digit)    (69217 . digit)    (69218 . digit)    (69219 . digit)    (69220 . digit)    (69221 . digit)    (69222 . digit)    (69223 . digit)    (69224 . digit)    (69225 . numeric)  (69226 . numeric)  (69227 . numeric)  (69228 . numeric)  (69229 . numeric)  (69230 . numeric)  (69231 . numeric)  (69232 . numeric)  (69233 . numeric)  (69234 . numeric)  (69235 . numeric)  (69236 . numeric)  (69237 . numeric)  (69238 . numeric)  (69239 . numeric)
+       (69240 . numeric)  (69241 . numeric)  (69242 . numeric)  (69243 . numeric)  (69244 . numeric)  (69245 . numeric)  (69246 . numeric)  (69714 . digit)    (69715 . digit)    (69716 . digit)    (69717 . digit)    (69718 . digit)    (69719 . digit)    (69720 . digit)    (69721 . digit)    (69722 . digit)    (69723 . numeric)  (69724 . numeric)  (69725 . numeric)  (69726 . numeric)  (69727 . numeric)  (69728 . numeric)  (69729 . numeric)  (69730 . numeric)  (69731 . numeric)  (69732 . numeric)  (69733 . numeric)  (69734 . decimal)  (69735 . decimal)  (69736 . decimal)  (69737 . decimal)  (69738 . decimal)  (69739 . decimal)  (69740 . decimal)  (69741 . decimal)  (69742 . decimal)  (69743 . decimal)  (69872 . decimal)  (69873 . decimal)  (69874 . decimal)  (69875 . decimal)  (69876 . decimal)  (69877 . decimal)  (69878 . decimal)  (69879 . decimal)  (69880 . decimal)  (69881 . decimal)  (69942 . decimal)  (69943 . decimal)  (69944 . decimal)  (69945 . decimal)
+       (69946 . decimal)  (69947 . decimal)  (69948 . decimal)  (69949 . decimal)  (69950 . decimal)  (69951 . decimal)  (70096 . decimal)  (70097 . decimal)  (70098 . decimal)  (70099 . decimal)  (70100 . decimal)  (70101 . decimal)  (70102 . decimal)  (70103 . decimal)  (70104 . decimal)  (70105 . decimal)  (70113 . numeric)  (70114 . numeric)  (70115 . numeric)  (70116 . numeric)  (70117 . numeric)  (70118 . numeric)  (70119 . numeric)  (70120 . numeric)  (70121 . numeric)  (70122 . numeric)  (70123 . numeric)  (70124 . numeric)  (70125 . numeric)  (70126 . numeric)  (70127 . numeric)  (70128 . numeric)  (70129 . numeric)  (70130 . numeric)  (70131 . numeric)  (70132 . numeric)  (70384 . decimal)  (70385 . decimal)  (70386 . decimal)  (70387 . decimal)  (70388 . decimal)  (70389 . decimal)  (70390 . decimal)  (70391 . decimal)  (70392 . decimal)  (70393 . decimal)  (70736 . decimal)  (70737 . decimal)  (70738 . decimal)  (70739 . decimal)  (70740 . decimal)
+       (70741 . decimal)  (70742 . decimal)  (70743 . decimal)  (70744 . decimal)  (70745 . decimal)  (70864 . decimal)  (70865 . decimal)  (70866 . decimal)  (70867 . decimal)  (70868 . decimal)  (70869 . decimal)  (70870 . decimal)  (70871 . decimal)  (70872 . decimal)  (70873 . decimal)  (71248 . decimal)  (71249 . decimal)  (71250 . decimal)  (71251 . decimal)  (71252 . decimal)  (71253 . decimal)  (71254 . decimal)  (71255 . decimal)  (71256 . decimal)  (71257 . decimal)  (71360 . decimal)  (71361 . decimal)  (71362 . decimal)  (71363 . decimal)  (71364 . decimal)  (71365 . decimal)  (71366 . decimal)  (71367 . decimal)  (71368 . decimal)  (71369 . decimal)  (71472 . decimal)  (71473 . decimal)  (71474 . decimal)  (71475 . decimal)  (71476 . decimal)  (71477 . decimal)  (71478 . decimal)  (71479 . decimal)  (71480 . decimal)  (71481 . decimal)  (71482 . numeric)  (71483 . numeric)  (71904 . decimal)  (71905 . decimal)  (71906 . decimal)  (71907 . decimal)
+       (71908 . decimal)  (71909 . decimal)  (71910 . decimal)  (71911 . decimal)  (71912 . decimal)  (71913 . decimal)  (71914 . numeric)  (71915 . numeric)  (71916 . numeric)  (71917 . numeric)  (71918 . numeric)  (71919 . numeric)  (71920 . numeric)  (71921 . numeric)  (71922 . numeric)  (72784 . decimal)  (72785 . decimal)  (72786 . decimal)  (72787 . decimal)  (72788 . decimal)  (72789 . decimal)  (72790 . decimal)  (72791 . decimal)  (72792 . decimal)  (72793 . decimal)  (72794 . numeric)  (72795 . numeric)  (72796 . numeric)  (72797 . numeric)  (72798 . numeric)  (72799 . numeric)  (72800 . numeric)  (72801 . numeric)  (72802 . numeric)  (72803 . numeric)  (72804 . numeric)  (72805 . numeric)  (72806 . numeric)  (72807 . numeric)  (72808 . numeric)  (72809 . numeric)  (72810 . numeric)  (72811 . numeric)  (72812 . numeric)  (74752 . numeric)  (74753 . numeric)  (74754 . numeric)  (74755 . numeric)  (74756 . numeric)  (74757 . numeric)  (74758 . numeric)
+       (74759 . numeric)  (74760 . numeric)  (74761 . numeric)  (74762 . numeric)  (74763 . numeric)  (74764 . numeric)  (74765 . numeric)  (74766 . numeric)  (74767 . numeric)  (74768 . numeric)  (74769 . numeric)  (74770 . numeric)  (74771 . numeric)  (74772 . numeric)  (74773 . numeric)  (74774 . numeric)  (74775 . numeric)  (74776 . numeric)  (74777 . numeric)  (74778 . numeric)  (74779 . numeric)  (74780 . numeric)  (74781 . numeric)  (74782 . numeric)  (74783 . numeric)  (74784 . numeric)  (74785 . numeric)  (74786 . numeric)  (74787 . numeric)  (74788 . numeric)  (74789 . numeric)  (74790 . numeric)  (74791 . numeric)  (74792 . numeric)  (74793 . numeric)  (74794 . numeric)  (74795 . numeric)  (74796 . numeric)  (74797 . numeric)  (74798 . numeric)  (74799 . numeric)  (74800 . numeric)  (74801 . numeric)  (74802 . numeric)  (74803 . numeric)  (74804 . numeric)  (74805 . numeric)  (74806 . numeric)  (74807 . numeric)  (74808 . numeric)  (74809 . numeric)
+       (74810 . numeric)  (74811 . numeric)  (74812 . numeric)  (74813 . numeric)  (74814 . numeric)  (74815 . numeric)  (74816 . numeric)  (74817 . numeric)  (74818 . numeric)  (74819 . numeric)  (74820 . numeric)  (74821 . numeric)  (74822 . numeric)  (74823 . numeric)  (74824 . numeric)  (74825 . numeric)  (74826 . numeric)  (74827 . numeric)  (74828 . numeric)  (74829 . numeric)  (74830 . numeric)  (74831 . numeric)  (74832 . numeric)  (74833 . numeric)  (74834 . numeric)  (74835 . numeric)  (74836 . numeric)  (74837 . numeric)  (74838 . numeric)  (74839 . numeric)  (74840 . numeric)  (74841 . numeric)  (74842 . numeric)  (74843 . numeric)  (74844 . numeric)  (74845 . numeric)  (74846 . numeric)  (74847 . numeric)  (74848 . numeric)  (74849 . numeric)  (74850 . numeric)  (74851 . numeric)  (74852 . numeric)  (74853 . numeric)  (74854 . numeric)  (74855 . numeric)  (74856 . numeric)  (74857 . numeric)  (74858 . numeric)  (74859 . numeric)  (74860 . numeric)
+       (74861 . numeric)  (74862 . numeric)  (92768 . decimal)  (92769 . decimal)  (92770 . decimal)  (92771 . decimal)  (92772 . decimal)  (92773 . decimal)  (92774 . decimal)  (92775 . decimal)  (92776 . decimal)  (92777 . decimal)  (93008 . decimal)  (93009 . decimal)  (93010 . decimal)  (93011 . decimal)  (93012 . decimal)  (93013 . decimal)  (93014 . decimal)  (93015 . decimal)  (93016 . decimal)  (93017 . decimal)  (93019 . numeric)  (93020 . numeric)  (93021 . numeric)  (93022 . numeric)  (93023 . numeric)  (93024 . numeric)  (93025 . numeric)  (119648 . numeric) (119649 . numeric) (119650 . numeric) (119651 . numeric) (119652 . numeric) (119653 . numeric) (119654 . numeric) (119655 . numeric) (119656 . numeric) (119657 . numeric) (119658 . numeric) (119659 . numeric) (119660 . numeric) (119661 . numeric) (119662 . numeric) (119663 . numeric) (119664 . numeric) (119665 . numeric) (120782 . decimal) (120783 . decimal) (120784 . decimal) (120785 . decimal)
+       (120786 . decimal) (120787 . decimal) (120788 . decimal) (120789 . decimal) (120790 . decimal) (120791 . decimal) (120792 . decimal) (120793 . decimal) (120794 . decimal) (120795 . decimal) (120796 . decimal) (120797 . decimal) (120798 . decimal) (120799 . decimal) (120800 . decimal) (120801 . decimal) (120802 . decimal) (120803 . decimal) (120804 . decimal) (120805 . decimal) (120806 . decimal) (120807 . decimal) (120808 . decimal) (120809 . decimal) (120810 . decimal) (120811 . decimal) (120812 . decimal) (120813 . decimal) (120814 . decimal) (120815 . decimal) (120816 . decimal) (120817 . decimal) (120818 . decimal) (120819 . decimal) (120820 . decimal) (120821 . decimal) (120822 . decimal) (120823 . decimal) (120824 . decimal) (120825 . decimal) (120826 . decimal) (120827 . decimal) (120828 . decimal) (120829 . decimal) (120830 . decimal) (120831 . decimal) (125127 . numeric) (125128 . numeric) (125129 . numeric) (125130 . numeric) (125131 . numeric)
+       (125132 . numeric) (125133 . numeric) (125134 . numeric) (125135 . numeric) (125264 . decimal) (125265 . decimal) (125266 . decimal) (125267 . decimal) (125268 . decimal) (125269 . decimal) (125270 . decimal) (125271 . decimal) (125272 . decimal) (125273 . decimal) (127232 . digit)   (127233 . digit)   (127234 . digit)   (127235 . digit)   (127236 . digit)   (127237 . digit)   (127238 . digit)   (127239 . digit)   (127240 . digit)   (127241 . digit)   (127242 . digit)   (127243 . numeric) (127244 . numeric) (131073 . numeric) (131172 . numeric) (131298 . numeric) (131361 . numeric) (133418 . numeric) (133507 . numeric) (133516 . numeric) (133532 . numeric) (133866 . numeric) (133885 . numeric) (133913 . numeric) (140176 . numeric) (141720 . numeric) (146203 . numeric) (156269 . numeric) (194704 . numeric)))
+    table))
index d18972f9b26f727458249effec97d5be4e11e3bf..fe8a0a1ab1b7ad515d30703bdab6693b0c7d9be9 100644 (file)
@@ -26,20223 +26,39 @@ USA.
 
 ;;;; UCD property: slc
 
-;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T00:05:10-08
+;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T23:45:17-08
 
 (declare (usual-integrations))
 \f
-
-(define-deferred ucd-slc-value
-  (let ((offsets (bytevector 73 5 130 5 136 5 225 0 225 0 225 0 225 0 225 0 225 0 225 0 225 0 225 0 225 0 225 0 139 5 141 5 141 5)))
-    (named-lambda (ucd-slc-value sv)
-      ((vector-ref ucd-slc-entries (bytevector-u16le-ref offsets (fix:and 62 (fix:lsh sv -15)))) sv ucd-slc-entries))))
-
-(define (ucd-slc-entry-0 sv table)
-  sv
-  table
-  #f)
-
-(define (ucd-slc-entry-1 sv table)
-  sv
-  table
-  97)
-
-(define (ucd-slc-entry-2 sv table)
-  sv
-  table
-  98)
-
-(define (ucd-slc-entry-3 sv table)
-  sv
-  table
-  99)
-
-(define (ucd-slc-entry-4 sv table)
-  sv
-  table
-  100)
-
-(define (ucd-slc-entry-5 sv table)
-  sv
-  table
-  101)
-
-(define (ucd-slc-entry-6 sv table)
-  sv
-  table
-  102)
-
-(define (ucd-slc-entry-7 sv table)
-  sv
-  table
-  103)
-
-(define (ucd-slc-entry-8 sv table)
-  sv
-  table
-  104)
-
-(define (ucd-slc-entry-9 sv table)
-  sv
-  table
-  105)
-
-(define (ucd-slc-entry-10 sv table)
-  sv
-  table
-  106)
-
-(define (ucd-slc-entry-11 sv table)
-  sv
-  table
-  107)
-
-(define (ucd-slc-entry-12 sv table)
-  sv
-  table
-  108)
-
-(define (ucd-slc-entry-13 sv table)
-  sv
-  table
-  109)
-
-(define (ucd-slc-entry-14 sv table)
-  sv
-  table
-  110)
-
-(define (ucd-slc-entry-15 sv table)
-  sv
-  table
-  111)
-
-(define (ucd-slc-entry-16 sv table)
-  sv
-  table
-  112)
-
-(define (ucd-slc-entry-17 sv table)
-  sv
-  table
-  113)
-
-(define (ucd-slc-entry-18 sv table)
-  sv
-  table
-  114)
-
-(define (ucd-slc-entry-19 sv table)
-  sv
-  table
-  115)
-
-(define (ucd-slc-entry-20 sv table)
-  sv
-  table
-  116)
-
-(define (ucd-slc-entry-21 sv table)
-  sv
-  table
-  117)
-
-(define (ucd-slc-entry-22 sv table)
-  sv
-  table
-  118)
-
-(define (ucd-slc-entry-23 sv table)
-  sv
-  table
-  119)
-
-(define (ucd-slc-entry-24 sv table)
-  sv
-  table
-  120)
-
-(define (ucd-slc-entry-25 sv table)
-  sv
-  table
-  121)
-
-(define (ucd-slc-entry-26 sv table)
-  sv
-  table
-  122)
-
-(define (ucd-slc-entry-27 sv table)
-  sv
-  table
-  224)
-
-(define (ucd-slc-entry-28 sv table)
-  sv
-  table
-  225)
-
-(define (ucd-slc-entry-29 sv table)
-  sv
-  table
-  226)
-
-(define (ucd-slc-entry-30 sv table)
-  sv
-  table
-  227)
-
-(define (ucd-slc-entry-31 sv table)
-  sv
-  table
-  228)
-
-(define (ucd-slc-entry-32 sv table)
-  sv
-  table
-  229)
-
-(define (ucd-slc-entry-33 sv table)
-  sv
-  table
-  230)
-
-(define (ucd-slc-entry-34 sv table)
-  sv
-  table
-  231)
-
-(define (ucd-slc-entry-35 sv table)
-  sv
-  table
-  232)
-
-(define (ucd-slc-entry-36 sv table)
-  sv
-  table
-  233)
-
-(define (ucd-slc-entry-37 sv table)
-  sv
-  table
-  234)
-
-(define (ucd-slc-entry-38 sv table)
-  sv
-  table
-  235)
-
-(define (ucd-slc-entry-39 sv table)
-  sv
-  table
-  236)
-
-(define (ucd-slc-entry-40 sv table)
-  sv
-  table
-  237)
-
-(define (ucd-slc-entry-41 sv table)
-  sv
-  table
-  238)
-
-(define (ucd-slc-entry-42 sv table)
-  sv
-  table
-  239)
-
-(define (ucd-slc-entry-43 sv table)
-  sv
-  table
-  240)
-
-(define (ucd-slc-entry-44 sv table)
-  sv
-  table
-  241)
-
-(define (ucd-slc-entry-45 sv table)
-  sv
-  table
-  242)
-
-(define (ucd-slc-entry-46 sv table)
-  sv
-  table
-  243)
-
-(define (ucd-slc-entry-47 sv table)
-  sv
-  table
-  244)
-
-(define (ucd-slc-entry-48 sv table)
-  sv
-  table
-  245)
-
-(define (ucd-slc-entry-49 sv table)
-  sv
-  table
-  246)
-
-(define (ucd-slc-entry-50 sv table)
-  sv
-  table
-  248)
-
-(define (ucd-slc-entry-51 sv table)
-  sv
-  table
-  249)
-
-(define (ucd-slc-entry-52 sv table)
-  sv
-  table
-  250)
-
-(define (ucd-slc-entry-53 sv table)
-  sv
-  table
-  251)
-
-(define (ucd-slc-entry-54 sv table)
-  sv
-  table
-  252)
-
-(define (ucd-slc-entry-55 sv table)
-  sv
-  table
-  253)
-
-(define (ucd-slc-entry-56 sv table)
-  sv
-  table
-  254)
-
-(define (ucd-slc-entry-57 sv table)
-  sv
-  table
-  257)
-
-(define (ucd-slc-entry-58 sv table)
-  sv
-  table
-  259)
-
-(define (ucd-slc-entry-59 sv table)
-  sv
-  table
-  261)
-
-(define (ucd-slc-entry-60 sv table)
-  sv
-  table
-  263)
-
-(define (ucd-slc-entry-61 sv table)
-  sv
-  table
-  265)
-
-(define (ucd-slc-entry-62 sv table)
-  sv
-  table
-  267)
-
-(define (ucd-slc-entry-63 sv table)
-  sv
-  table
-  269)
-
-(define (ucd-slc-entry-64 sv table)
-  sv
-  table
-  271)
-
-(define (ucd-slc-entry-65 sv table)
-  sv
-  table
-  273)
-
-(define (ucd-slc-entry-66 sv table)
-  sv
-  table
-  275)
-
-(define (ucd-slc-entry-67 sv table)
-  sv
-  table
-  277)
-
-(define (ucd-slc-entry-68 sv table)
-  sv
-  table
-  279)
-
-(define (ucd-slc-entry-69 sv table)
-  sv
-  table
-  281)
-
-(define (ucd-slc-entry-70 sv table)
-  sv
-  table
-  283)
-
-(define (ucd-slc-entry-71 sv table)
-  sv
-  table
-  285)
-
-(define (ucd-slc-entry-72 sv table)
-  sv
-  table
-  287)
-
-(define (ucd-slc-entry-73 sv table)
-  sv
-  table
-  289)
-
-(define (ucd-slc-entry-74 sv table)
-  sv
-  table
-  291)
-
-(define (ucd-slc-entry-75 sv table)
-  sv
-  table
-  293)
-
-(define (ucd-slc-entry-76 sv table)
-  sv
-  table
-  295)
-
-(define (ucd-slc-entry-77 sv table)
-  sv
-  table
-  297)
-
-(define (ucd-slc-entry-78 sv table)
-  sv
-  table
-  299)
-
-(define (ucd-slc-entry-79 sv table)
-  sv
-  table
-  301)
-
-(define (ucd-slc-entry-80 sv table)
-  sv
-  table
-  303)
-
-(define (ucd-slc-entry-81 sv table)
-  sv
-  table
-  307)
-
-(define (ucd-slc-entry-82 sv table)
-  sv
-  table
-  309)
-
-(define (ucd-slc-entry-83 sv table)
-  sv
-  table
-  311)
-
-(define (ucd-slc-entry-84 sv table)
-  sv
-  table
-  314)
-
-(define (ucd-slc-entry-85 sv table)
-  sv
-  table
-  316)
-
-(define (ucd-slc-entry-86 sv table)
-  sv
-  table
-  318)
-
-(define (ucd-slc-entry-87 sv table)
-  sv
-  table
-  320)
-
-(define (ucd-slc-entry-88 sv table)
-  sv
-  table
-  322)
-
-(define (ucd-slc-entry-89 sv table)
-  sv
-  table
-  324)
-
-(define (ucd-slc-entry-90 sv table)
-  sv
-  table
-  326)
-
-(define (ucd-slc-entry-91 sv table)
-  sv
-  table
-  328)
-
-(define (ucd-slc-entry-92 sv table)
-  sv
-  table
-  331)
-
-(define (ucd-slc-entry-93 sv table)
-  sv
-  table
-  333)
-
-(define (ucd-slc-entry-94 sv table)
-  sv
-  table
-  335)
-
-(define (ucd-slc-entry-95 sv table)
-  sv
-  table
-  337)
-
-(define (ucd-slc-entry-96 sv table)
-  sv
-  table
-  339)
-
-(define (ucd-slc-entry-97 sv table)
-  sv
-  table
-  341)
-
-(define (ucd-slc-entry-98 sv table)
-  sv
-  table
-  343)
-
-(define (ucd-slc-entry-99 sv table)
-  sv
-  table
-  345)
-
-(define (ucd-slc-entry-100 sv table)
-  sv
-  table
-  347)
-
-(define (ucd-slc-entry-101 sv table)
-  sv
-  table
-  349)
-
-(define (ucd-slc-entry-102 sv table)
-  sv
-  table
-  351)
-
-(define (ucd-slc-entry-103 sv table)
-  sv
-  table
-  353)
-
-(define (ucd-slc-entry-104 sv table)
-  sv
-  table
-  355)
-
-(define (ucd-slc-entry-105 sv table)
-  sv
-  table
-  357)
-
-(define (ucd-slc-entry-106 sv table)
-  sv
-  table
-  359)
-
-(define (ucd-slc-entry-107 sv table)
-  sv
-  table
-  361)
-
-(define (ucd-slc-entry-108 sv table)
-  sv
-  table
-  363)
-
-(define (ucd-slc-entry-109 sv table)
-  sv
-  table
-  365)
-
-(define (ucd-slc-entry-110 sv table)
-  sv
-  table
-  367)
-
-(define (ucd-slc-entry-111 sv table)
-  sv
-  table
-  369)
-
-(define (ucd-slc-entry-112 sv table)
-  sv
-  table
-  371)
-
-(define (ucd-slc-entry-113 sv table)
-  sv
-  table
-  373)
-
-(define (ucd-slc-entry-114 sv table)
-  sv
-  table
-  375)
-
-(define (ucd-slc-entry-115 sv table)
-  sv
-  table
-  255)
-
-(define (ucd-slc-entry-116 sv table)
-  sv
-  table
-  378)
-
-(define (ucd-slc-entry-117 sv table)
-  sv
-  table
-  380)
-
-(define (ucd-slc-entry-118 sv table)
-  sv
-  table
-  382)
-
-(define (ucd-slc-entry-119 sv table)
-  sv
-  table
-  595)
-
-(define (ucd-slc-entry-120 sv table)
-  sv
-  table
-  387)
-
-(define (ucd-slc-entry-121 sv table)
-  sv
-  table
-  389)
-
-(define (ucd-slc-entry-122 sv table)
-  sv
-  table
-  596)
-
-(define (ucd-slc-entry-123 sv table)
-  sv
-  table
-  392)
-
-(define (ucd-slc-entry-124 sv table)
-  sv
-  table
-  598)
-
-(define (ucd-slc-entry-125 sv table)
-  sv
-  table
-  599)
-
-(define (ucd-slc-entry-126 sv table)
-  sv
-  table
-  396)
-
-(define (ucd-slc-entry-127 sv table)
-  sv
-  table
-  477)
-
-(define (ucd-slc-entry-128 sv table)
-  sv
-  table
-  601)
-
-(define (ucd-slc-entry-129 sv table)
-  sv
-  table
-  603)
-
-(define (ucd-slc-entry-130 sv table)
-  sv
-  table
-  402)
-
-(define (ucd-slc-entry-131 sv table)
-  sv
-  table
-  608)
-
-(define (ucd-slc-entry-132 sv table)
-  sv
-  table
-  611)
-
-(define (ucd-slc-entry-133 sv table)
-  sv
-  table
-  617)
-
-(define (ucd-slc-entry-134 sv table)
-  sv
-  table
-  616)
-
-(define (ucd-slc-entry-135 sv table)
-  sv
-  table
-  409)
-
-(define (ucd-slc-entry-136 sv table)
-  sv
-  table
-  623)
-
-(define (ucd-slc-entry-137 sv table)
-  sv
-  table
-  626)
-
-(define (ucd-slc-entry-138 sv table)
-  sv
-  table
-  629)
-
-(define (ucd-slc-entry-139 sv table)
-  sv
-  table
-  417)
-
-(define (ucd-slc-entry-140 sv table)
-  sv
-  table
-  419)
-
-(define (ucd-slc-entry-141 sv table)
-  sv
-  table
-  421)
-
-(define (ucd-slc-entry-142 sv table)
-  sv
-  table
-  640)
-
-(define (ucd-slc-entry-143 sv table)
-  sv
-  table
-  424)
-
-(define (ucd-slc-entry-144 sv table)
-  sv
-  table
-  643)
-
-(define (ucd-slc-entry-145 sv table)
-  sv
-  table
-  429)
-
-(define (ucd-slc-entry-146 sv table)
-  sv
-  table
-  648)
-
-(define (ucd-slc-entry-147 sv table)
-  sv
-  table
-  432)
-
-(define (ucd-slc-entry-148 sv table)
-  sv
-  table
-  650)
-
-(define (ucd-slc-entry-149 sv table)
-  sv
-  table
-  651)
-
-(define (ucd-slc-entry-150 sv table)
-  sv
-  table
-  436)
-
-(define (ucd-slc-entry-151 sv table)
-  sv
-  table
-  438)
-
-(define (ucd-slc-entry-152 sv table)
-  sv
-  table
-  658)
-
-(define (ucd-slc-entry-153 sv table)
-  sv
-  table
-  441)
-
-(define (ucd-slc-entry-154 sv table)
-  sv
-  table
-  445)
-
-(define (ucd-slc-entry-155 sv table)
-  sv
-  table
-  454)
-
-(define (ucd-slc-entry-156 sv table)
-  sv
-  table
-  457)
-
-(define (ucd-slc-entry-157 sv table)
-  sv
-  table
-  460)
-
-(define (ucd-slc-entry-158 sv table)
-  sv
-  table
-  462)
-
-(define (ucd-slc-entry-159 sv table)
-  sv
-  table
-  464)
-
-(define (ucd-slc-entry-160 sv table)
-  sv
-  table
-  466)
-
-(define (ucd-slc-entry-161 sv table)
-  sv
-  table
-  468)
-
-(define (ucd-slc-entry-162 sv table)
-  sv
-  table
-  470)
-
-(define (ucd-slc-entry-163 sv table)
-  sv
-  table
-  472)
-
-(define (ucd-slc-entry-164 sv table)
-  sv
-  table
-  474)
-
-(define (ucd-slc-entry-165 sv table)
-  sv
-  table
-  476)
-
-(define (ucd-slc-entry-166 sv table)
-  sv
-  table
-  479)
-
-(define (ucd-slc-entry-167 sv table)
-  sv
-  table
-  481)
-
-(define (ucd-slc-entry-168 sv table)
-  sv
-  table
-  483)
-
-(define (ucd-slc-entry-169 sv table)
-  sv
-  table
-  485)
-
-(define (ucd-slc-entry-170 sv table)
-  sv
-  table
-  487)
-
-(define (ucd-slc-entry-171 sv table)
-  sv
-  table
-  489)
-
-(define (ucd-slc-entry-172 sv table)
-  sv
-  table
-  491)
-
-(define (ucd-slc-entry-173 sv table)
-  sv
-  table
-  493)
-
-(define (ucd-slc-entry-174 sv table)
-  sv
-  table
-  495)
-
-(define (ucd-slc-entry-175 sv table)
-  sv
-  table
-  499)
-
-(define (ucd-slc-entry-176 sv table)
-  sv
-  table
-  501)
-
-(define (ucd-slc-entry-177 sv table)
-  sv
-  table
-  405)
-
-(define (ucd-slc-entry-178 sv table)
-  sv
-  table
-  447)
-
-(define (ucd-slc-entry-179 sv table)
-  sv
-  table
-  505)
-
-(define (ucd-slc-entry-180 sv table)
-  sv
-  table
-  507)
-
-(define (ucd-slc-entry-181 sv table)
-  sv
-  table
-  509)
-
-(define (ucd-slc-entry-182 sv table)
-  sv
-  table
-  511)
-
-(define (ucd-slc-entry-183 sv table)
-  sv
-  table
-  513)
-
-(define (ucd-slc-entry-184 sv table)
-  sv
-  table
-  515)
-
-(define (ucd-slc-entry-185 sv table)
-  sv
-  table
-  517)
-
-(define (ucd-slc-entry-186 sv table)
-  sv
-  table
-  519)
-
-(define (ucd-slc-entry-187 sv table)
-  sv
-  table
-  521)
-
-(define (ucd-slc-entry-188 sv table)
-  sv
-  table
-  523)
-
-(define (ucd-slc-entry-189 sv table)
-  sv
-  table
-  525)
-
-(define (ucd-slc-entry-190 sv table)
-  sv
-  table
-  527)
-
-(define (ucd-slc-entry-191 sv table)
-  sv
-  table
-  529)
-
-(define (ucd-slc-entry-192 sv table)
-  sv
-  table
-  531)
-
-(define (ucd-slc-entry-193 sv table)
-  sv
-  table
-  533)
-
-(define (ucd-slc-entry-194 sv table)
-  sv
-  table
-  535)
-
-(define (ucd-slc-entry-195 sv table)
-  sv
-  table
-  537)
-
-(define (ucd-slc-entry-196 sv table)
-  sv
-  table
-  539)
-
-(define (ucd-slc-entry-197 sv table)
-  sv
-  table
-  541)
-
-(define (ucd-slc-entry-198 sv table)
-  sv
-  table
-  543)
-
-(define (ucd-slc-entry-199 sv table)
-  sv
-  table
-  414)
-
-(define (ucd-slc-entry-200 sv table)
-  sv
-  table
-  547)
-
-(define (ucd-slc-entry-201 sv table)
-  sv
-  table
-  549)
-
-(define (ucd-slc-entry-202 sv table)
-  sv
-  table
-  551)
-
-(define (ucd-slc-entry-203 sv table)
-  sv
-  table
-  553)
-
-(define (ucd-slc-entry-204 sv table)
-  sv
-  table
-  555)
-
-(define (ucd-slc-entry-205 sv table)
-  sv
-  table
-  557)
-
-(define (ucd-slc-entry-206 sv table)
-  sv
-  table
-  559)
-
-(define (ucd-slc-entry-207 sv table)
-  sv
-  table
-  561)
-
-(define (ucd-slc-entry-208 sv table)
-  sv
-  table
-  563)
-
-(define (ucd-slc-entry-209 sv table)
-  sv
-  table
-  11365)
-
-(define (ucd-slc-entry-210 sv table)
-  sv
-  table
-  572)
-
-(define (ucd-slc-entry-211 sv table)
-  sv
-  table
-  410)
-
-(define (ucd-slc-entry-212 sv table)
-  sv
-  table
-  11366)
-
-(define (ucd-slc-entry-213 sv table)
-  sv
-  table
-  578)
-
-(define (ucd-slc-entry-214 sv table)
-  sv
-  table
-  384)
-
-(define (ucd-slc-entry-215 sv table)
-  sv
-  table
-  649)
-
-(define (ucd-slc-entry-216 sv table)
-  sv
-  table
-  652)
-
-(define (ucd-slc-entry-217 sv table)
-  sv
-  table
-  583)
-
-(define (ucd-slc-entry-218 sv table)
-  sv
-  table
-  585)
-
-(define (ucd-slc-entry-219 sv table)
-  sv
-  table
-  587)
-
-(define (ucd-slc-entry-220 sv table)
-  sv
-  table
-  589)
-
-(define (ucd-slc-entry-221 sv table)
-  sv
-  table
-  591)
-
-(define (ucd-slc-entry-222 sv table)
-  sv
-  table
-  881)
-
-(define (ucd-slc-entry-223 sv table)
-  sv
-  table
-  883)
-
-(define (ucd-slc-entry-224 sv table)
-  sv
-  table
-  887)
-
-(define (ucd-slc-entry-225 sv table)
-  sv
-  table
-  #!default)
-
-(define (ucd-slc-entry-226 sv table)
-  sv
-  table
-  1011)
-
-(define (ucd-slc-entry-227 sv table)
-  sv
-  table
-  940)
-
-(define (ucd-slc-entry-228 sv table)
-  sv
-  table
-  941)
-
-(define (ucd-slc-entry-229 sv table)
-  sv
-  table
-  942)
-
-(define (ucd-slc-entry-230 sv table)
-  sv
-  table
-  943)
-
-(define (ucd-slc-entry-231 sv table)
-  sv
-  table
-  972)
-
-(define (ucd-slc-entry-232 sv table)
-  sv
-  table
-  973)
-
-(define (ucd-slc-entry-233 sv table)
-  sv
-  table
-  974)
-
-(define (ucd-slc-entry-234 sv table)
-  sv
-  table
-  945)
-
-(define (ucd-slc-entry-235 sv table)
-  sv
-  table
-  946)
-
-(define (ucd-slc-entry-236 sv table)
-  sv
-  table
-  947)
-
-(define (ucd-slc-entry-237 sv table)
-  sv
-  table
-  948)
-
-(define (ucd-slc-entry-238 sv table)
-  sv
-  table
-  949)
-
-(define (ucd-slc-entry-239 sv table)
-  sv
-  table
-  950)
-
-(define (ucd-slc-entry-240 sv table)
-  sv
-  table
-  951)
-
-(define (ucd-slc-entry-241 sv table)
-  sv
-  table
-  952)
-
-(define (ucd-slc-entry-242 sv table)
-  sv
-  table
-  953)
-
-(define (ucd-slc-entry-243 sv table)
-  sv
-  table
-  954)
-
-(define (ucd-slc-entry-244 sv table)
-  sv
-  table
-  955)
-
-(define (ucd-slc-entry-245 sv table)
-  sv
-  table
-  956)
-
-(define (ucd-slc-entry-246 sv table)
-  sv
-  table
-  957)
-
-(define (ucd-slc-entry-247 sv table)
-  sv
-  table
-  958)
-
-(define (ucd-slc-entry-248 sv table)
-  sv
-  table
-  959)
-
-(define (ucd-slc-entry-249 sv table)
-  sv
-  table
-  960)
-
-(define (ucd-slc-entry-250 sv table)
-  sv
-  table
-  961)
-
-(define (ucd-slc-entry-251 sv table)
-  sv
-  table
-  963)
-
-(define (ucd-slc-entry-252 sv table)
-  sv
-  table
-  964)
-
-(define (ucd-slc-entry-253 sv table)
-  sv
-  table
-  965)
-
-(define (ucd-slc-entry-254 sv table)
-  sv
-  table
-  966)
-
-(define (ucd-slc-entry-255 sv table)
-  sv
-  table
-  967)
-
-(define (ucd-slc-entry-256 sv table)
-  sv
-  table
-  968)
-
-(define (ucd-slc-entry-257 sv table)
-  sv
-  table
-  969)
-
-(define (ucd-slc-entry-258 sv table)
-  sv
-  table
-  970)
-
-(define (ucd-slc-entry-259 sv table)
-  sv
-  table
-  971)
-
-(define (ucd-slc-entry-260 sv table)
-  sv
-  table
-  983)
-
-(define (ucd-slc-entry-261 sv table)
-  sv
-  table
-  985)
-
-(define (ucd-slc-entry-262 sv table)
-  sv
-  table
-  987)
-
-(define (ucd-slc-entry-263 sv table)
-  sv
-  table
-  989)
-
-(define (ucd-slc-entry-264 sv table)
-  sv
-  table
-  991)
-
-(define (ucd-slc-entry-265 sv table)
-  sv
-  table
-  993)
-
-(define (ucd-slc-entry-266 sv table)
-  sv
-  table
-  995)
-
-(define (ucd-slc-entry-267 sv table)
-  sv
-  table
-  997)
-
-(define (ucd-slc-entry-268 sv table)
-  sv
-  table
-  999)
-
-(define (ucd-slc-entry-269 sv table)
-  sv
-  table
-  1001)
-
-(define (ucd-slc-entry-270 sv table)
-  sv
-  table
-  1003)
-
-(define (ucd-slc-entry-271 sv table)
-  sv
-  table
-  1005)
-
-(define (ucd-slc-entry-272 sv table)
-  sv
-  table
-  1007)
-
-(define (ucd-slc-entry-273 sv table)
-  sv
-  table
-  1016)
-
-(define (ucd-slc-entry-274 sv table)
-  sv
-  table
-  1010)
-
-(define (ucd-slc-entry-275 sv table)
-  sv
-  table
-  1019)
-
-(define (ucd-slc-entry-276 sv table)
-  sv
-  table
-  891)
-
-(define (ucd-slc-entry-277 sv table)
-  sv
-  table
-  892)
-
-(define (ucd-slc-entry-278 sv table)
-  sv
-  table
-  893)
-
-(define (ucd-slc-entry-279 sv table)
-  sv
-  table
-  1104)
-
-(define (ucd-slc-entry-280 sv table)
-  sv
-  table
-  1105)
-
-(define (ucd-slc-entry-281 sv table)
-  sv
-  table
-  1106)
-
-(define (ucd-slc-entry-282 sv table)
-  sv
-  table
-  1107)
-
-(define (ucd-slc-entry-283 sv table)
-  sv
-  table
-  1108)
-
-(define (ucd-slc-entry-284 sv table)
-  sv
-  table
-  1109)
-
-(define (ucd-slc-entry-285 sv table)
-  sv
-  table
-  1110)
-
-(define (ucd-slc-entry-286 sv table)
-  sv
-  table
-  1111)
-
-(define (ucd-slc-entry-287 sv table)
-  sv
-  table
-  1112)
-
-(define (ucd-slc-entry-288 sv table)
-  sv
-  table
-  1113)
-
-(define (ucd-slc-entry-289 sv table)
-  sv
-  table
-  1114)
-
-(define (ucd-slc-entry-290 sv table)
-  sv
-  table
-  1115)
-
-(define (ucd-slc-entry-291 sv table)
-  sv
-  table
-  1116)
-
-(define (ucd-slc-entry-292 sv table)
-  sv
-  table
-  1117)
-
-(define (ucd-slc-entry-293 sv table)
-  sv
-  table
-  1118)
-
-(define (ucd-slc-entry-294 sv table)
-  sv
-  table
-  1119)
-
-(define (ucd-slc-entry-295 sv table)
-  sv
-  table
-  1072)
-
-(define (ucd-slc-entry-296 sv table)
-  sv
-  table
-  1073)
-
-(define (ucd-slc-entry-297 sv table)
-  sv
-  table
-  1074)
-
-(define (ucd-slc-entry-298 sv table)
-  sv
-  table
-  1075)
-
-(define (ucd-slc-entry-299 sv table)
-  sv
-  table
-  1076)
-
-(define (ucd-slc-entry-300 sv table)
-  sv
-  table
-  1077)
-
-(define (ucd-slc-entry-301 sv table)
-  sv
-  table
-  1078)
-
-(define (ucd-slc-entry-302 sv table)
-  sv
-  table
-  1079)
-
-(define (ucd-slc-entry-303 sv table)
-  sv
-  table
-  1080)
-
-(define (ucd-slc-entry-304 sv table)
-  sv
-  table
-  1081)
-
-(define (ucd-slc-entry-305 sv table)
-  sv
-  table
-  1082)
-
-(define (ucd-slc-entry-306 sv table)
-  sv
-  table
-  1083)
-
-(define (ucd-slc-entry-307 sv table)
-  sv
-  table
-  1084)
-
-(define (ucd-slc-entry-308 sv table)
-  sv
-  table
-  1085)
-
-(define (ucd-slc-entry-309 sv table)
-  sv
-  table
-  1086)
-
-(define (ucd-slc-entry-310 sv table)
-  sv
-  table
-  1087)
-
-(define (ucd-slc-entry-311 sv table)
-  sv
-  table
-  1088)
-
-(define (ucd-slc-entry-312 sv table)
-  sv
-  table
-  1089)
-
-(define (ucd-slc-entry-313 sv table)
-  sv
-  table
-  1090)
-
-(define (ucd-slc-entry-314 sv table)
-  sv
-  table
-  1091)
-
-(define (ucd-slc-entry-315 sv table)
-  sv
-  table
-  1092)
-
-(define (ucd-slc-entry-316 sv table)
-  sv
-  table
-  1093)
-
-(define (ucd-slc-entry-317 sv table)
-  sv
-  table
-  1094)
-
-(define (ucd-slc-entry-318 sv table)
-  sv
-  table
-  1095)
-
-(define (ucd-slc-entry-319 sv table)
-  sv
-  table
-  1096)
-
-(define (ucd-slc-entry-320 sv table)
-  sv
-  table
-  1097)
-
-(define (ucd-slc-entry-321 sv table)
-  sv
-  table
-  1098)
-
-(define (ucd-slc-entry-322 sv table)
-  sv
-  table
-  1099)
-
-(define (ucd-slc-entry-323 sv table)
-  sv
-  table
-  1100)
-
-(define (ucd-slc-entry-324 sv table)
-  sv
-  table
-  1101)
-
-(define (ucd-slc-entry-325 sv table)
-  sv
-  table
-  1102)
-
-(define (ucd-slc-entry-326 sv table)
-  sv
-  table
-  1103)
-
-(define (ucd-slc-entry-327 sv table)
-  sv
-  table
-  1121)
-
-(define (ucd-slc-entry-328 sv table)
-  sv
-  table
-  1123)
-
-(define (ucd-slc-entry-329 sv table)
-  sv
-  table
-  1125)
-
-(define (ucd-slc-entry-330 sv table)
-  sv
-  table
-  1127)
-
-(define (ucd-slc-entry-331 sv table)
-  sv
-  table
-  1129)
-
-(define (ucd-slc-entry-332 sv table)
-  sv
-  table
-  1131)
-
-(define (ucd-slc-entry-333 sv table)
-  sv
-  table
-  1133)
-
-(define (ucd-slc-entry-334 sv table)
-  sv
-  table
-  1135)
-
-(define (ucd-slc-entry-335 sv table)
-  sv
-  table
-  1137)
-
-(define (ucd-slc-entry-336 sv table)
-  sv
-  table
-  1139)
-
-(define (ucd-slc-entry-337 sv table)
-  sv
-  table
-  1141)
-
-(define (ucd-slc-entry-338 sv table)
-  sv
-  table
-  1143)
-
-(define (ucd-slc-entry-339 sv table)
-  sv
-  table
-  1145)
-
-(define (ucd-slc-entry-340 sv table)
-  sv
-  table
-  1147)
-
-(define (ucd-slc-entry-341 sv table)
-  sv
-  table
-  1149)
-
-(define (ucd-slc-entry-342 sv table)
-  sv
-  table
-  1151)
-
-(define (ucd-slc-entry-343 sv table)
-  sv
-  table
-  1153)
-
-(define (ucd-slc-entry-344 sv table)
-  sv
-  table
-  1163)
-
-(define (ucd-slc-entry-345 sv table)
-  sv
-  table
-  1165)
-
-(define (ucd-slc-entry-346 sv table)
-  sv
-  table
-  1167)
-
-(define (ucd-slc-entry-347 sv table)
-  sv
-  table
-  1169)
-
-(define (ucd-slc-entry-348 sv table)
-  sv
-  table
-  1171)
-
-(define (ucd-slc-entry-349 sv table)
-  sv
-  table
-  1173)
-
-(define (ucd-slc-entry-350 sv table)
-  sv
-  table
-  1175)
-
-(define (ucd-slc-entry-351 sv table)
-  sv
-  table
-  1177)
-
-(define (ucd-slc-entry-352 sv table)
-  sv
-  table
-  1179)
-
-(define (ucd-slc-entry-353 sv table)
-  sv
-  table
-  1181)
-
-(define (ucd-slc-entry-354 sv table)
-  sv
-  table
-  1183)
-
-(define (ucd-slc-entry-355 sv table)
-  sv
-  table
-  1185)
-
-(define (ucd-slc-entry-356 sv table)
-  sv
-  table
-  1187)
-
-(define (ucd-slc-entry-357 sv table)
-  sv
-  table
-  1189)
-
-(define (ucd-slc-entry-358 sv table)
-  sv
-  table
-  1191)
-
-(define (ucd-slc-entry-359 sv table)
-  sv
-  table
-  1193)
-
-(define (ucd-slc-entry-360 sv table)
-  sv
-  table
-  1195)
-
-(define (ucd-slc-entry-361 sv table)
-  sv
-  table
-  1197)
-
-(define (ucd-slc-entry-362 sv table)
-  sv
-  table
-  1199)
-
-(define (ucd-slc-entry-363 sv table)
-  sv
-  table
-  1201)
-
-(define (ucd-slc-entry-364 sv table)
-  sv
-  table
-  1203)
-
-(define (ucd-slc-entry-365 sv table)
-  sv
-  table
-  1205)
-
-(define (ucd-slc-entry-366 sv table)
-  sv
-  table
-  1207)
-
-(define (ucd-slc-entry-367 sv table)
-  sv
-  table
-  1209)
-
-(define (ucd-slc-entry-368 sv table)
-  sv
-  table
-  1211)
-
-(define (ucd-slc-entry-369 sv table)
-  sv
-  table
-  1213)
-
-(define (ucd-slc-entry-370 sv table)
-  sv
-  table
-  1215)
-
-(define (ucd-slc-entry-371 sv table)
-  sv
-  table
-  1231)
-
-(define (ucd-slc-entry-372 sv table)
-  sv
-  table
-  1218)
-
-(define (ucd-slc-entry-373 sv table)
-  sv
-  table
-  1220)
-
-(define (ucd-slc-entry-374 sv table)
-  sv
-  table
-  1222)
-
-(define (ucd-slc-entry-375 sv table)
-  sv
-  table
-  1224)
-
-(define (ucd-slc-entry-376 sv table)
-  sv
-  table
-  1226)
-
-(define (ucd-slc-entry-377 sv table)
-  sv
-  table
-  1228)
-
-(define (ucd-slc-entry-378 sv table)
-  sv
-  table
-  1230)
-
-(define (ucd-slc-entry-379 sv table)
-  sv
-  table
-  1233)
-
-(define (ucd-slc-entry-380 sv table)
-  sv
-  table
-  1235)
-
-(define (ucd-slc-entry-381 sv table)
-  sv
-  table
-  1237)
-
-(define (ucd-slc-entry-382 sv table)
-  sv
-  table
-  1239)
-
-(define (ucd-slc-entry-383 sv table)
-  sv
-  table
-  1241)
-
-(define (ucd-slc-entry-384 sv table)
-  sv
-  table
-  1243)
-
-(define (ucd-slc-entry-385 sv table)
-  sv
-  table
-  1245)
-
-(define (ucd-slc-entry-386 sv table)
-  sv
-  table
-  1247)
-
-(define (ucd-slc-entry-387 sv table)
-  sv
-  table
-  1249)
-
-(define (ucd-slc-entry-388 sv table)
-  sv
-  table
-  1251)
-
-(define (ucd-slc-entry-389 sv table)
-  sv
-  table
-  1253)
-
-(define (ucd-slc-entry-390 sv table)
-  sv
-  table
-  1255)
-
-(define (ucd-slc-entry-391 sv table)
-  sv
-  table
-  1257)
-
-(define (ucd-slc-entry-392 sv table)
-  sv
-  table
-  1259)
-
-(define (ucd-slc-entry-393 sv table)
-  sv
-  table
-  1261)
-
-(define (ucd-slc-entry-394 sv table)
-  sv
-  table
-  1263)
-
-(define (ucd-slc-entry-395 sv table)
-  sv
-  table
-  1265)
-
-(define (ucd-slc-entry-396 sv table)
-  sv
-  table
-  1267)
-
-(define (ucd-slc-entry-397 sv table)
-  sv
-  table
-  1269)
-
-(define (ucd-slc-entry-398 sv table)
-  sv
-  table
-  1271)
-
-(define (ucd-slc-entry-399 sv table)
-  sv
-  table
-  1273)
-
-(define (ucd-slc-entry-400 sv table)
-  sv
-  table
-  1275)
-
-(define (ucd-slc-entry-401 sv table)
-  sv
-  table
-  1277)
-
-(define (ucd-slc-entry-402 sv table)
-  sv
-  table
-  1279)
-
-(define (ucd-slc-entry-403 sv table)
-  sv
-  table
-  1281)
-
-(define (ucd-slc-entry-404 sv table)
-  sv
-  table
-  1283)
-
-(define (ucd-slc-entry-405 sv table)
-  sv
-  table
-  1285)
-
-(define (ucd-slc-entry-406 sv table)
-  sv
-  table
-  1287)
-
-(define (ucd-slc-entry-407 sv table)
-  sv
-  table
-  1289)
-
-(define (ucd-slc-entry-408 sv table)
-  sv
-  table
-  1291)
-
-(define (ucd-slc-entry-409 sv table)
-  sv
-  table
-  1293)
-
-(define (ucd-slc-entry-410 sv table)
-  sv
-  table
-  1295)
-
-(define (ucd-slc-entry-411 sv table)
-  sv
-  table
-  1297)
-
-(define (ucd-slc-entry-412 sv table)
-  sv
-  table
-  1299)
-
-(define (ucd-slc-entry-413 sv table)
-  sv
-  table
-  1301)
-
-(define (ucd-slc-entry-414 sv table)
-  sv
-  table
-  1303)
-
-(define (ucd-slc-entry-415 sv table)
-  sv
-  table
-  1305)
-
-(define (ucd-slc-entry-416 sv table)
-  sv
-  table
-  1307)
-
-(define (ucd-slc-entry-417 sv table)
-  sv
-  table
-  1309)
-
-(define (ucd-slc-entry-418 sv table)
-  sv
-  table
-  1311)
-
-(define (ucd-slc-entry-419 sv table)
-  sv
-  table
-  1313)
-
-(define (ucd-slc-entry-420 sv table)
-  sv
-  table
-  1315)
-
-(define (ucd-slc-entry-421 sv table)
-  sv
-  table
-  1317)
-
-(define (ucd-slc-entry-422 sv table)
-  sv
-  table
-  1319)
-
-(define (ucd-slc-entry-423 sv table)
-  sv
-  table
-  1321)
-
-(define (ucd-slc-entry-424 sv table)
-  sv
-  table
-  1323)
-
-(define (ucd-slc-entry-425 sv table)
-  sv
-  table
-  1325)
-
-(define (ucd-slc-entry-426 sv table)
-  sv
-  table
-  1327)
-
-(define (ucd-slc-entry-427 sv table)
-  sv
-  table
-  1377)
-
-(define (ucd-slc-entry-428 sv table)
-  sv
-  table
-  1378)
-
-(define (ucd-slc-entry-429 sv table)
-  sv
-  table
-  1379)
-
-(define (ucd-slc-entry-430 sv table)
-  sv
-  table
-  1380)
-
-(define (ucd-slc-entry-431 sv table)
-  sv
-  table
-  1381)
-
-(define (ucd-slc-entry-432 sv table)
-  sv
-  table
-  1382)
-
-(define (ucd-slc-entry-433 sv table)
-  sv
-  table
-  1383)
-
-(define (ucd-slc-entry-434 sv table)
-  sv
-  table
-  1384)
-
-(define (ucd-slc-entry-435 sv table)
-  sv
-  table
-  1385)
-
-(define (ucd-slc-entry-436 sv table)
-  sv
-  table
-  1386)
-
-(define (ucd-slc-entry-437 sv table)
-  sv
-  table
-  1387)
-
-(define (ucd-slc-entry-438 sv table)
-  sv
-  table
-  1388)
-
-(define (ucd-slc-entry-439 sv table)
-  sv
-  table
-  1389)
-
-(define (ucd-slc-entry-440 sv table)
-  sv
-  table
-  1390)
-
-(define (ucd-slc-entry-441 sv table)
-  sv
-  table
-  1391)
-
-(define (ucd-slc-entry-442 sv table)
-  sv
-  table
-  1392)
-
-(define (ucd-slc-entry-443 sv table)
-  sv
-  table
-  1393)
-
-(define (ucd-slc-entry-444 sv table)
-  sv
-  table
-  1394)
-
-(define (ucd-slc-entry-445 sv table)
-  sv
-  table
-  1395)
-
-(define (ucd-slc-entry-446 sv table)
-  sv
-  table
-  1396)
-
-(define (ucd-slc-entry-447 sv table)
-  sv
-  table
-  1397)
-
-(define (ucd-slc-entry-448 sv table)
-  sv
-  table
-  1398)
-
-(define (ucd-slc-entry-449 sv table)
-  sv
-  table
-  1399)
-
-(define (ucd-slc-entry-450 sv table)
-  sv
-  table
-  1400)
-
-(define (ucd-slc-entry-451 sv table)
-  sv
-  table
-  1401)
-
-(define (ucd-slc-entry-452 sv table)
-  sv
-  table
-  1402)
-
-(define (ucd-slc-entry-453 sv table)
-  sv
-  table
-  1403)
-
-(define (ucd-slc-entry-454 sv table)
-  sv
-  table
-  1404)
-
-(define (ucd-slc-entry-455 sv table)
-  sv
-  table
-  1405)
-
-(define (ucd-slc-entry-456 sv table)
-  sv
-  table
-  1406)
-
-(define (ucd-slc-entry-457 sv table)
-  sv
-  table
-  1407)
-
-(define (ucd-slc-entry-458 sv table)
-  sv
-  table
-  1408)
-
-(define (ucd-slc-entry-459 sv table)
-  sv
-  table
-  1409)
-
-(define (ucd-slc-entry-460 sv table)
-  sv
-  table
-  1410)
-
-(define (ucd-slc-entry-461 sv table)
-  sv
-  table
-  1411)
-
-(define (ucd-slc-entry-462 sv table)
-  sv
-  table
-  1412)
-
-(define (ucd-slc-entry-463 sv table)
-  sv
-  table
-  1413)
-
-(define (ucd-slc-entry-464 sv table)
-  sv
-  table
-  1414)
-
-(define (ucd-slc-entry-465 sv table)
-  sv
-  table
-  11520)
-
-(define (ucd-slc-entry-466 sv table)
-  sv
-  table
-  11521)
-
-(define (ucd-slc-entry-467 sv table)
-  sv
-  table
-  11522)
-
-(define (ucd-slc-entry-468 sv table)
-  sv
-  table
-  11523)
-
-(define (ucd-slc-entry-469 sv table)
-  sv
-  table
-  11524)
-
-(define (ucd-slc-entry-470 sv table)
-  sv
-  table
-  11525)
-
-(define (ucd-slc-entry-471 sv table)
-  sv
-  table
-  11526)
-
-(define (ucd-slc-entry-472 sv table)
-  sv
-  table
-  11527)
-
-(define (ucd-slc-entry-473 sv table)
-  sv
-  table
-  11528)
-
-(define (ucd-slc-entry-474 sv table)
-  sv
-  table
-  11529)
-
-(define (ucd-slc-entry-475 sv table)
-  sv
-  table
-  11530)
-
-(define (ucd-slc-entry-476 sv table)
-  sv
-  table
-  11531)
-
-(define (ucd-slc-entry-477 sv table)
-  sv
-  table
-  11532)
-
-(define (ucd-slc-entry-478 sv table)
-  sv
-  table
-  11533)
-
-(define (ucd-slc-entry-479 sv table)
-  sv
-  table
-  11534)
-
-(define (ucd-slc-entry-480 sv table)
-  sv
-  table
-  11535)
-
-(define (ucd-slc-entry-481 sv table)
-  sv
-  table
-  11536)
-
-(define (ucd-slc-entry-482 sv table)
-  sv
-  table
-  11537)
-
-(define (ucd-slc-entry-483 sv table)
-  sv
-  table
-  11538)
-
-(define (ucd-slc-entry-484 sv table)
-  sv
-  table
-  11539)
-
-(define (ucd-slc-entry-485 sv table)
-  sv
-  table
-  11540)
-
-(define (ucd-slc-entry-486 sv table)
-  sv
-  table
-  11541)
-
-(define (ucd-slc-entry-487 sv table)
-  sv
-  table
-  11542)
-
-(define (ucd-slc-entry-488 sv table)
-  sv
-  table
-  11543)
-
-(define (ucd-slc-entry-489 sv table)
-  sv
-  table
-  11544)
-
-(define (ucd-slc-entry-490 sv table)
-  sv
-  table
-  11545)
-
-(define (ucd-slc-entry-491 sv table)
-  sv
-  table
-  11546)
-
-(define (ucd-slc-entry-492 sv table)
-  sv
-  table
-  11547)
-
-(define (ucd-slc-entry-493 sv table)
-  sv
-  table
-  11548)
-
-(define (ucd-slc-entry-494 sv table)
-  sv
-  table
-  11549)
-
-(define (ucd-slc-entry-495 sv table)
-  sv
-  table
-  11550)
-
-(define (ucd-slc-entry-496 sv table)
-  sv
-  table
-  11551)
-
-(define (ucd-slc-entry-497 sv table)
-  sv
-  table
-  11552)
-
-(define (ucd-slc-entry-498 sv table)
-  sv
-  table
-  11553)
-
-(define (ucd-slc-entry-499 sv table)
-  sv
-  table
-  11554)
-
-(define (ucd-slc-entry-500 sv table)
-  sv
-  table
-  11555)
-
-(define (ucd-slc-entry-501 sv table)
-  sv
-  table
-  11556)
-
-(define (ucd-slc-entry-502 sv table)
-  sv
-  table
-  11557)
-
-(define (ucd-slc-entry-503 sv table)
-  sv
-  table
-  11559)
-
-(define (ucd-slc-entry-504 sv table)
-  sv
-  table
-  11565)
-
-(define (ucd-slc-entry-505 sv table)
-  sv
-  table
-  43888)
-
-(define (ucd-slc-entry-506 sv table)
-  sv
-  table
-  43889)
-
-(define (ucd-slc-entry-507 sv table)
-  sv
-  table
-  43890)
-
-(define (ucd-slc-entry-508 sv table)
-  sv
-  table
-  43891)
-
-(define (ucd-slc-entry-509 sv table)
-  sv
-  table
-  43892)
-
-(define (ucd-slc-entry-510 sv table)
-  sv
-  table
-  43893)
-
-(define (ucd-slc-entry-511 sv table)
-  sv
-  table
-  43894)
-
-(define (ucd-slc-entry-512 sv table)
-  sv
-  table
-  43895)
-
-(define (ucd-slc-entry-513 sv table)
-  sv
-  table
-  43896)
-
-(define (ucd-slc-entry-514 sv table)
-  sv
-  table
-  43897)
-
-(define (ucd-slc-entry-515 sv table)
-  sv
-  table
-  43898)
-
-(define (ucd-slc-entry-516 sv table)
-  sv
-  table
-  43899)
-
-(define (ucd-slc-entry-517 sv table)
-  sv
-  table
-  43900)
-
-(define (ucd-slc-entry-518 sv table)
-  sv
-  table
-  43901)
-
-(define (ucd-slc-entry-519 sv table)
-  sv
-  table
-  43902)
-
-(define (ucd-slc-entry-520 sv table)
-  sv
-  table
-  43903)
-
-(define (ucd-slc-entry-521 sv table)
-  sv
-  table
-  43904)
-
-(define (ucd-slc-entry-522 sv table)
-  sv
-  table
-  43905)
-
-(define (ucd-slc-entry-523 sv table)
-  sv
-  table
-  43906)
-
-(define (ucd-slc-entry-524 sv table)
-  sv
-  table
-  43907)
-
-(define (ucd-slc-entry-525 sv table)
-  sv
-  table
-  43908)
-
-(define (ucd-slc-entry-526 sv table)
-  sv
-  table
-  43909)
-
-(define (ucd-slc-entry-527 sv table)
-  sv
-  table
-  43910)
-
-(define (ucd-slc-entry-528 sv table)
-  sv
-  table
-  43911)
-
-(define (ucd-slc-entry-529 sv table)
-  sv
-  table
-  43912)
-
-(define (ucd-slc-entry-530 sv table)
-  sv
-  table
-  43913)
-
-(define (ucd-slc-entry-531 sv table)
-  sv
-  table
-  43914)
-
-(define (ucd-slc-entry-532 sv table)
-  sv
-  table
-  43915)
-
-(define (ucd-slc-entry-533 sv table)
-  sv
-  table
-  43916)
-
-(define (ucd-slc-entry-534 sv table)
-  sv
-  table
-  43917)
-
-(define (ucd-slc-entry-535 sv table)
-  sv
-  table
-  43918)
-
-(define (ucd-slc-entry-536 sv table)
-  sv
-  table
-  43919)
-
-(define (ucd-slc-entry-537 sv table)
-  sv
-  table
-  43920)
-
-(define (ucd-slc-entry-538 sv table)
-  sv
-  table
-  43921)
-
-(define (ucd-slc-entry-539 sv table)
-  sv
-  table
-  43922)
-
-(define (ucd-slc-entry-540 sv table)
-  sv
-  table
-  43923)
-
-(define (ucd-slc-entry-541 sv table)
-  sv
-  table
-  43924)
-
-(define (ucd-slc-entry-542 sv table)
-  sv
-  table
-  43925)
-
-(define (ucd-slc-entry-543 sv table)
-  sv
-  table
-  43926)
-
-(define (ucd-slc-entry-544 sv table)
-  sv
-  table
-  43927)
-
-(define (ucd-slc-entry-545 sv table)
-  sv
-  table
-  43928)
-
-(define (ucd-slc-entry-546 sv table)
-  sv
-  table
-  43929)
-
-(define (ucd-slc-entry-547 sv table)
-  sv
-  table
-  43930)
-
-(define (ucd-slc-entry-548 sv table)
-  sv
-  table
-  43931)
-
-(define (ucd-slc-entry-549 sv table)
-  sv
-  table
-  43932)
-
-(define (ucd-slc-entry-550 sv table)
-  sv
-  table
-  43933)
-
-(define (ucd-slc-entry-551 sv table)
-  sv
-  table
-  43934)
-
-(define (ucd-slc-entry-552 sv table)
-  sv
-  table
-  43935)
-
-(define (ucd-slc-entry-553 sv table)
-  sv
-  table
-  43936)
-
-(define (ucd-slc-entry-554 sv table)
-  sv
-  table
-  43937)
-
-(define (ucd-slc-entry-555 sv table)
-  sv
-  table
-  43938)
-
-(define (ucd-slc-entry-556 sv table)
-  sv
-  table
-  43939)
-
-(define (ucd-slc-entry-557 sv table)
-  sv
-  table
-  43940)
-
-(define (ucd-slc-entry-558 sv table)
-  sv
-  table
-  43941)
-
-(define (ucd-slc-entry-559 sv table)
-  sv
-  table
-  43942)
-
-(define (ucd-slc-entry-560 sv table)
-  sv
-  table
-  43943)
-
-(define (ucd-slc-entry-561 sv table)
-  sv
-  table
-  43944)
-
-(define (ucd-slc-entry-562 sv table)
-  sv
-  table
-  43945)
-
-(define (ucd-slc-entry-563 sv table)
-  sv
-  table
-  43946)
-
-(define (ucd-slc-entry-564 sv table)
-  sv
-  table
-  43947)
-
-(define (ucd-slc-entry-565 sv table)
-  sv
-  table
-  43948)
-
-(define (ucd-slc-entry-566 sv table)
-  sv
-  table
-  43949)
-
-(define (ucd-slc-entry-567 sv table)
-  sv
-  table
-  43950)
-
-(define (ucd-slc-entry-568 sv table)
-  sv
-  table
-  43951)
-
-(define (ucd-slc-entry-569 sv table)
-  sv
-  table
-  43952)
-
-(define (ucd-slc-entry-570 sv table)
-  sv
-  table
-  43953)
-
-(define (ucd-slc-entry-571 sv table)
-  sv
-  table
-  43954)
-
-(define (ucd-slc-entry-572 sv table)
-  sv
-  table
-  43955)
-
-(define (ucd-slc-entry-573 sv table)
-  sv
-  table
-  43956)
-
-(define (ucd-slc-entry-574 sv table)
-  sv
-  table
-  43957)
-
-(define (ucd-slc-entry-575 sv table)
-  sv
-  table
-  43958)
-
-(define (ucd-slc-entry-576 sv table)
-  sv
-  table
-  43959)
-
-(define (ucd-slc-entry-577 sv table)
-  sv
-  table
-  43960)
-
-(define (ucd-slc-entry-578 sv table)
-  sv
-  table
-  43961)
-
-(define (ucd-slc-entry-579 sv table)
-  sv
-  table
-  43962)
-
-(define (ucd-slc-entry-580 sv table)
-  sv
-  table
-  43963)
-
-(define (ucd-slc-entry-581 sv table)
-  sv
-  table
-  43964)
-
-(define (ucd-slc-entry-582 sv table)
-  sv
-  table
-  43965)
-
-(define (ucd-slc-entry-583 sv table)
-  sv
-  table
-  43966)
-
-(define (ucd-slc-entry-584 sv table)
-  sv
-  table
-  43967)
-
-(define (ucd-slc-entry-585 sv table)
-  sv
-  table
-  5112)
-
-(define (ucd-slc-entry-586 sv table)
-  sv
-  table
-  5113)
-
-(define (ucd-slc-entry-587 sv table)
-  sv
-  table
-  5114)
-
-(define (ucd-slc-entry-588 sv table)
-  sv
-  table
-  5115)
-
-(define (ucd-slc-entry-589 sv table)
-  sv
-  table
-  5116)
-
-(define (ucd-slc-entry-590 sv table)
-  sv
-  table
-  5117)
-
-(define (ucd-slc-entry-591 sv table)
-  sv
-  table
-  7681)
-
-(define (ucd-slc-entry-592 sv table)
-  sv
-  table
-  7683)
-
-(define (ucd-slc-entry-593 sv table)
-  sv
-  table
-  7685)
-
-(define (ucd-slc-entry-594 sv table)
-  sv
-  table
-  7687)
-
-(define (ucd-slc-entry-595 sv table)
-  sv
-  table
-  7689)
-
-(define (ucd-slc-entry-596 sv table)
-  sv
-  table
-  7691)
-
-(define (ucd-slc-entry-597 sv table)
-  sv
-  table
-  7693)
-
-(define (ucd-slc-entry-598 sv table)
-  sv
-  table
-  7695)
-
-(define (ucd-slc-entry-599 sv table)
-  sv
-  table
-  7697)
-
-(define (ucd-slc-entry-600 sv table)
-  sv
-  table
-  7699)
-
-(define (ucd-slc-entry-601 sv table)
-  sv
-  table
-  7701)
-
-(define (ucd-slc-entry-602 sv table)
-  sv
-  table
-  7703)
-
-(define (ucd-slc-entry-603 sv table)
-  sv
-  table
-  7705)
-
-(define (ucd-slc-entry-604 sv table)
-  sv
-  table
-  7707)
-
-(define (ucd-slc-entry-605 sv table)
-  sv
-  table
-  7709)
-
-(define (ucd-slc-entry-606 sv table)
-  sv
-  table
-  7711)
-
-(define (ucd-slc-entry-607 sv table)
-  sv
-  table
-  7713)
-
-(define (ucd-slc-entry-608 sv table)
-  sv
-  table
-  7715)
-
-(define (ucd-slc-entry-609 sv table)
-  sv
-  table
-  7717)
-
-(define (ucd-slc-entry-610 sv table)
-  sv
-  table
-  7719)
-
-(define (ucd-slc-entry-611 sv table)
-  sv
-  table
-  7721)
-
-(define (ucd-slc-entry-612 sv table)
-  sv
-  table
-  7723)
-
-(define (ucd-slc-entry-613 sv table)
-  sv
-  table
-  7725)
-
-(define (ucd-slc-entry-614 sv table)
-  sv
-  table
-  7727)
-
-(define (ucd-slc-entry-615 sv table)
-  sv
-  table
-  7729)
-
-(define (ucd-slc-entry-616 sv table)
-  sv
-  table
-  7731)
-
-(define (ucd-slc-entry-617 sv table)
-  sv
-  table
-  7733)
-
-(define (ucd-slc-entry-618 sv table)
-  sv
-  table
-  7735)
-
-(define (ucd-slc-entry-619 sv table)
-  sv
-  table
-  7737)
-
-(define (ucd-slc-entry-620 sv table)
-  sv
-  table
-  7739)
-
-(define (ucd-slc-entry-621 sv table)
-  sv
-  table
-  7741)
-
-(define (ucd-slc-entry-622 sv table)
-  sv
-  table
-  7743)
-
-(define (ucd-slc-entry-623 sv table)
-  sv
-  table
-  7745)
-
-(define (ucd-slc-entry-624 sv table)
-  sv
-  table
-  7747)
-
-(define (ucd-slc-entry-625 sv table)
-  sv
-  table
-  7749)
-
-(define (ucd-slc-entry-626 sv table)
-  sv
-  table
-  7751)
-
-(define (ucd-slc-entry-627 sv table)
-  sv
-  table
-  7753)
-
-(define (ucd-slc-entry-628 sv table)
-  sv
-  table
-  7755)
-
-(define (ucd-slc-entry-629 sv table)
-  sv
-  table
-  7757)
-
-(define (ucd-slc-entry-630 sv table)
-  sv
-  table
-  7759)
-
-(define (ucd-slc-entry-631 sv table)
-  sv
-  table
-  7761)
-
-(define (ucd-slc-entry-632 sv table)
-  sv
-  table
-  7763)
-
-(define (ucd-slc-entry-633 sv table)
-  sv
-  table
-  7765)
-
-(define (ucd-slc-entry-634 sv table)
-  sv
-  table
-  7767)
-
-(define (ucd-slc-entry-635 sv table)
-  sv
-  table
-  7769)
-
-(define (ucd-slc-entry-636 sv table)
-  sv
-  table
-  7771)
-
-(define (ucd-slc-entry-637 sv table)
-  sv
-  table
-  7773)
-
-(define (ucd-slc-entry-638 sv table)
-  sv
-  table
-  7775)
-
-(define (ucd-slc-entry-639 sv table)
-  sv
-  table
-  7777)
-
-(define (ucd-slc-entry-640 sv table)
-  sv
-  table
-  7779)
-
-(define (ucd-slc-entry-641 sv table)
-  sv
-  table
-  7781)
-
-(define (ucd-slc-entry-642 sv table)
-  sv
-  table
-  7783)
-
-(define (ucd-slc-entry-643 sv table)
-  sv
-  table
-  7785)
-
-(define (ucd-slc-entry-644 sv table)
-  sv
-  table
-  7787)
-
-(define (ucd-slc-entry-645 sv table)
-  sv
-  table
-  7789)
-
-(define (ucd-slc-entry-646 sv table)
-  sv
-  table
-  7791)
-
-(define (ucd-slc-entry-647 sv table)
-  sv
-  table
-  7793)
-
-(define (ucd-slc-entry-648 sv table)
-  sv
-  table
-  7795)
-
-(define (ucd-slc-entry-649 sv table)
-  sv
-  table
-  7797)
-
-(define (ucd-slc-entry-650 sv table)
-  sv
-  table
-  7799)
-
-(define (ucd-slc-entry-651 sv table)
-  sv
-  table
-  7801)
-
-(define (ucd-slc-entry-652 sv table)
-  sv
-  table
-  7803)
-
-(define (ucd-slc-entry-653 sv table)
-  sv
-  table
-  7805)
-
-(define (ucd-slc-entry-654 sv table)
-  sv
-  table
-  7807)
-
-(define (ucd-slc-entry-655 sv table)
-  sv
-  table
-  7809)
-
-(define (ucd-slc-entry-656 sv table)
-  sv
-  table
-  7811)
-
-(define (ucd-slc-entry-657 sv table)
-  sv
-  table
-  7813)
-
-(define (ucd-slc-entry-658 sv table)
-  sv
-  table
-  7815)
-
-(define (ucd-slc-entry-659 sv table)
-  sv
-  table
-  7817)
-
-(define (ucd-slc-entry-660 sv table)
-  sv
-  table
-  7819)
-
-(define (ucd-slc-entry-661 sv table)
-  sv
-  table
-  7821)
-
-(define (ucd-slc-entry-662 sv table)
-  sv
-  table
-  7823)
-
-(define (ucd-slc-entry-663 sv table)
-  sv
-  table
-  7825)
-
-(define (ucd-slc-entry-664 sv table)
-  sv
-  table
-  7827)
-
-(define (ucd-slc-entry-665 sv table)
-  sv
-  table
-  7829)
-
-(define (ucd-slc-entry-666 sv table)
-  sv
-  table
-  223)
-
-(define (ucd-slc-entry-667 sv table)
-  sv
-  table
-  7841)
-
-(define (ucd-slc-entry-668 sv table)
-  sv
-  table
-  7843)
-
-(define (ucd-slc-entry-669 sv table)
-  sv
-  table
-  7845)
-
-(define (ucd-slc-entry-670 sv table)
-  sv
-  table
-  7847)
-
-(define (ucd-slc-entry-671 sv table)
-  sv
-  table
-  7849)
-
-(define (ucd-slc-entry-672 sv table)
-  sv
-  table
-  7851)
-
-(define (ucd-slc-entry-673 sv table)
-  sv
-  table
-  7853)
-
-(define (ucd-slc-entry-674 sv table)
-  sv
-  table
-  7855)
-
-(define (ucd-slc-entry-675 sv table)
-  sv
-  table
-  7857)
-
-(define (ucd-slc-entry-676 sv table)
-  sv
-  table
-  7859)
-
-(define (ucd-slc-entry-677 sv table)
-  sv
-  table
-  7861)
-
-(define (ucd-slc-entry-678 sv table)
-  sv
-  table
-  7863)
-
-(define (ucd-slc-entry-679 sv table)
-  sv
-  table
-  7865)
-
-(define (ucd-slc-entry-680 sv table)
-  sv
-  table
-  7867)
-
-(define (ucd-slc-entry-681 sv table)
-  sv
-  table
-  7869)
-
-(define (ucd-slc-entry-682 sv table)
-  sv
-  table
-  7871)
-
-(define (ucd-slc-entry-683 sv table)
-  sv
-  table
-  7873)
-
-(define (ucd-slc-entry-684 sv table)
-  sv
-  table
-  7875)
-
-(define (ucd-slc-entry-685 sv table)
-  sv
-  table
-  7877)
-
-(define (ucd-slc-entry-686 sv table)
-  sv
-  table
-  7879)
-
-(define (ucd-slc-entry-687 sv table)
-  sv
-  table
-  7881)
-
-(define (ucd-slc-entry-688 sv table)
-  sv
-  table
-  7883)
-
-(define (ucd-slc-entry-689 sv table)
-  sv
-  table
-  7885)
-
-(define (ucd-slc-entry-690 sv table)
-  sv
-  table
-  7887)
-
-(define (ucd-slc-entry-691 sv table)
-  sv
-  table
-  7889)
-
-(define (ucd-slc-entry-692 sv table)
-  sv
-  table
-  7891)
-
-(define (ucd-slc-entry-693 sv table)
-  sv
-  table
-  7893)
-
-(define (ucd-slc-entry-694 sv table)
-  sv
-  table
-  7895)
-
-(define (ucd-slc-entry-695 sv table)
-  sv
-  table
-  7897)
-
-(define (ucd-slc-entry-696 sv table)
-  sv
-  table
-  7899)
-
-(define (ucd-slc-entry-697 sv table)
-  sv
-  table
-  7901)
-
-(define (ucd-slc-entry-698 sv table)
-  sv
-  table
-  7903)
-
-(define (ucd-slc-entry-699 sv table)
-  sv
-  table
-  7905)
-
-(define (ucd-slc-entry-700 sv table)
-  sv
-  table
-  7907)
-
-(define (ucd-slc-entry-701 sv table)
-  sv
-  table
-  7909)
-
-(define (ucd-slc-entry-702 sv table)
-  sv
-  table
-  7911)
-
-(define (ucd-slc-entry-703 sv table)
-  sv
-  table
-  7913)
-
-(define (ucd-slc-entry-704 sv table)
-  sv
-  table
-  7915)
-
-(define (ucd-slc-entry-705 sv table)
-  sv
-  table
-  7917)
-
-(define (ucd-slc-entry-706 sv table)
-  sv
-  table
-  7919)
-
-(define (ucd-slc-entry-707 sv table)
-  sv
-  table
-  7921)
-
-(define (ucd-slc-entry-708 sv table)
-  sv
-  table
-  7923)
-
-(define (ucd-slc-entry-709 sv table)
-  sv
-  table
-  7925)
-
-(define (ucd-slc-entry-710 sv table)
-  sv
-  table
-  7927)
-
-(define (ucd-slc-entry-711 sv table)
-  sv
-  table
-  7929)
-
-(define (ucd-slc-entry-712 sv table)
-  sv
-  table
-  7931)
-
-(define (ucd-slc-entry-713 sv table)
-  sv
-  table
-  7933)
-
-(define (ucd-slc-entry-714 sv table)
-  sv
-  table
-  7935)
-
-(define (ucd-slc-entry-715 sv table)
-  sv
-  table
-  7936)
-
-(define (ucd-slc-entry-716 sv table)
-  sv
-  table
-  7937)
-
-(define (ucd-slc-entry-717 sv table)
-  sv
-  table
-  7938)
-
-(define (ucd-slc-entry-718 sv table)
-  sv
-  table
-  7939)
-
-(define (ucd-slc-entry-719 sv table)
-  sv
-  table
-  7940)
-
-(define (ucd-slc-entry-720 sv table)
-  sv
-  table
-  7941)
-
-(define (ucd-slc-entry-721 sv table)
-  sv
-  table
-  7942)
-
-(define (ucd-slc-entry-722 sv table)
-  sv
-  table
-  7943)
-
-(define (ucd-slc-entry-723 sv table)
-  sv
-  table
-  7952)
-
-(define (ucd-slc-entry-724 sv table)
-  sv
-  table
-  7953)
-
-(define (ucd-slc-entry-725 sv table)
-  sv
-  table
-  7954)
-
-(define (ucd-slc-entry-726 sv table)
-  sv
-  table
-  7955)
-
-(define (ucd-slc-entry-727 sv table)
-  sv
-  table
-  7956)
-
-(define (ucd-slc-entry-728 sv table)
-  sv
-  table
-  7957)
-
-(define (ucd-slc-entry-729 sv table)
-  sv
-  table
-  7968)
-
-(define (ucd-slc-entry-730 sv table)
-  sv
-  table
-  7969)
-
-(define (ucd-slc-entry-731 sv table)
-  sv
-  table
-  7970)
-
-(define (ucd-slc-entry-732 sv table)
-  sv
-  table
-  7971)
-
-(define (ucd-slc-entry-733 sv table)
-  sv
-  table
-  7972)
-
-(define (ucd-slc-entry-734 sv table)
-  sv
-  table
-  7973)
-
-(define (ucd-slc-entry-735 sv table)
-  sv
-  table
-  7974)
-
-(define (ucd-slc-entry-736 sv table)
-  sv
-  table
-  7975)
-
-(define (ucd-slc-entry-737 sv table)
-  sv
-  table
-  7984)
-
-(define (ucd-slc-entry-738 sv table)
-  sv
-  table
-  7985)
-
-(define (ucd-slc-entry-739 sv table)
-  sv
-  table
-  7986)
-
-(define (ucd-slc-entry-740 sv table)
-  sv
-  table
-  7987)
-
-(define (ucd-slc-entry-741 sv table)
-  sv
-  table
-  7988)
-
-(define (ucd-slc-entry-742 sv table)
-  sv
-  table
-  7989)
-
-(define (ucd-slc-entry-743 sv table)
-  sv
-  table
-  7990)
-
-(define (ucd-slc-entry-744 sv table)
-  sv
-  table
-  7991)
-
-(define (ucd-slc-entry-745 sv table)
-  sv
-  table
-  8000)
-
-(define (ucd-slc-entry-746 sv table)
-  sv
-  table
-  8001)
-
-(define (ucd-slc-entry-747 sv table)
-  sv
-  table
-  8002)
-
-(define (ucd-slc-entry-748 sv table)
-  sv
-  table
-  8003)
-
-(define (ucd-slc-entry-749 sv table)
-  sv
-  table
-  8004)
-
-(define (ucd-slc-entry-750 sv table)
-  sv
-  table
-  8005)
-
-(define (ucd-slc-entry-751 sv table)
-  sv
-  table
-  8017)
-
-(define (ucd-slc-entry-752 sv table)
-  sv
-  table
-  8019)
-
-(define (ucd-slc-entry-753 sv table)
-  sv
-  table
-  8021)
-
-(define (ucd-slc-entry-754 sv table)
-  sv
-  table
-  8023)
-
-(define (ucd-slc-entry-755 sv table)
-  sv
-  table
-  8032)
-
-(define (ucd-slc-entry-756 sv table)
-  sv
-  table
-  8033)
-
-(define (ucd-slc-entry-757 sv table)
-  sv
-  table
-  8034)
-
-(define (ucd-slc-entry-758 sv table)
-  sv
-  table
-  8035)
-
-(define (ucd-slc-entry-759 sv table)
-  sv
-  table
-  8036)
-
-(define (ucd-slc-entry-760 sv table)
-  sv
-  table
-  8037)
-
-(define (ucd-slc-entry-761 sv table)
-  sv
-  table
-  8038)
-
-(define (ucd-slc-entry-762 sv table)
-  sv
-  table
-  8039)
-
-(define (ucd-slc-entry-763 sv table)
-  sv
-  table
-  8064)
-
-(define (ucd-slc-entry-764 sv table)
-  sv
-  table
-  8065)
-
-(define (ucd-slc-entry-765 sv table)
-  sv
-  table
-  8066)
-
-(define (ucd-slc-entry-766 sv table)
-  sv
-  table
-  8067)
-
-(define (ucd-slc-entry-767 sv table)
-  sv
-  table
-  8068)
-
-(define (ucd-slc-entry-768 sv table)
-  sv
-  table
-  8069)
-
-(define (ucd-slc-entry-769 sv table)
-  sv
-  table
-  8070)
-
-(define (ucd-slc-entry-770 sv table)
-  sv
-  table
-  8071)
-
-(define (ucd-slc-entry-771 sv table)
-  sv
-  table
-  8080)
-
-(define (ucd-slc-entry-772 sv table)
-  sv
-  table
-  8081)
-
-(define (ucd-slc-entry-773 sv table)
-  sv
-  table
-  8082)
-
-(define (ucd-slc-entry-774 sv table)
-  sv
-  table
-  8083)
-
-(define (ucd-slc-entry-775 sv table)
-  sv
-  table
-  8084)
-
-(define (ucd-slc-entry-776 sv table)
-  sv
-  table
-  8085)
-
-(define (ucd-slc-entry-777 sv table)
-  sv
-  table
-  8086)
-
-(define (ucd-slc-entry-778 sv table)
-  sv
-  table
-  8087)
-
-(define (ucd-slc-entry-779 sv table)
-  sv
-  table
-  8096)
-
-(define (ucd-slc-entry-780 sv table)
-  sv
-  table
-  8097)
-
-(define (ucd-slc-entry-781 sv table)
-  sv
-  table
-  8098)
-
-(define (ucd-slc-entry-782 sv table)
-  sv
-  table
-  8099)
-
-(define (ucd-slc-entry-783 sv table)
-  sv
-  table
-  8100)
-
-(define (ucd-slc-entry-784 sv table)
-  sv
-  table
-  8101)
-
-(define (ucd-slc-entry-785 sv table)
-  sv
-  table
-  8102)
-
-(define (ucd-slc-entry-786 sv table)
-  sv
-  table
-  8103)
-
-(define (ucd-slc-entry-787 sv table)
-  sv
-  table
-  8112)
-
-(define (ucd-slc-entry-788 sv table)
-  sv
-  table
-  8113)
-
-(define (ucd-slc-entry-789 sv table)
-  sv
-  table
-  8048)
-
-(define (ucd-slc-entry-790 sv table)
-  sv
-  table
-  8049)
-
-(define (ucd-slc-entry-791 sv table)
-  sv
-  table
-  8115)
-
-(define (ucd-slc-entry-792 sv table)
-  sv
-  table
-  8050)
-
-(define (ucd-slc-entry-793 sv table)
-  sv
-  table
-  8051)
-
-(define (ucd-slc-entry-794 sv table)
-  sv
-  table
-  8052)
-
-(define (ucd-slc-entry-795 sv table)
-  sv
-  table
-  8053)
-
-(define (ucd-slc-entry-796 sv table)
-  sv
-  table
-  8131)
-
-(define (ucd-slc-entry-797 sv table)
-  sv
-  table
-  8144)
-
-(define (ucd-slc-entry-798 sv table)
-  sv
-  table
-  8145)
-
-(define (ucd-slc-entry-799 sv table)
-  sv
-  table
-  8054)
-
-(define (ucd-slc-entry-800 sv table)
-  sv
-  table
-  8055)
-
-(define (ucd-slc-entry-801 sv table)
-  sv
-  table
-  8160)
-
-(define (ucd-slc-entry-802 sv table)
-  sv
-  table
-  8161)
-
-(define (ucd-slc-entry-803 sv table)
-  sv
-  table
-  8058)
-
-(define (ucd-slc-entry-804 sv table)
-  sv
-  table
-  8059)
-
-(define (ucd-slc-entry-805 sv table)
-  sv
-  table
-  8165)
-
-(define (ucd-slc-entry-806 sv table)
-  sv
-  table
-  8056)
-
-(define (ucd-slc-entry-807 sv table)
-  sv
-  table
-  8057)
-
-(define (ucd-slc-entry-808 sv table)
-  sv
-  table
-  8060)
-
-(define (ucd-slc-entry-809 sv table)
-  sv
-  table
-  8061)
-
-(define (ucd-slc-entry-810 sv table)
-  sv
-  table
-  8179)
-
-(define (ucd-slc-entry-811 sv table)
-  sv
-  table
-  8526)
-
-(define (ucd-slc-entry-812 sv table)
-  sv
-  table
-  8560)
-
-(define (ucd-slc-entry-813 sv table)
-  sv
-  table
-  8561)
-
-(define (ucd-slc-entry-814 sv table)
-  sv
-  table
-  8562)
-
-(define (ucd-slc-entry-815 sv table)
-  sv
-  table
-  8563)
-
-(define (ucd-slc-entry-816 sv table)
-  sv
-  table
-  8564)
-
-(define (ucd-slc-entry-817 sv table)
-  sv
-  table
-  8565)
-
-(define (ucd-slc-entry-818 sv table)
-  sv
-  table
-  8566)
-
-(define (ucd-slc-entry-819 sv table)
-  sv
-  table
-  8567)
-
-(define (ucd-slc-entry-820 sv table)
-  sv
-  table
-  8568)
-
-(define (ucd-slc-entry-821 sv table)
-  sv
-  table
-  8569)
-
-(define (ucd-slc-entry-822 sv table)
-  sv
-  table
-  8570)
-
-(define (ucd-slc-entry-823 sv table)
-  sv
-  table
-  8571)
-
-(define (ucd-slc-entry-824 sv table)
-  sv
-  table
-  8572)
-
-(define (ucd-slc-entry-825 sv table)
-  sv
-  table
-  8573)
-
-(define (ucd-slc-entry-826 sv table)
-  sv
-  table
-  8574)
-
-(define (ucd-slc-entry-827 sv table)
-  sv
-  table
-  8575)
-
-(define (ucd-slc-entry-828 sv table)
-  sv
-  table
-  8580)
-
-(define (ucd-slc-entry-829 sv table)
-  sv
-  table
-  9424)
-
-(define (ucd-slc-entry-830 sv table)
-  sv
-  table
-  9425)
-
-(define (ucd-slc-entry-831 sv table)
-  sv
-  table
-  9426)
-
-(define (ucd-slc-entry-832 sv table)
-  sv
-  table
-  9427)
-
-(define (ucd-slc-entry-833 sv table)
-  sv
-  table
-  9428)
-
-(define (ucd-slc-entry-834 sv table)
-  sv
-  table
-  9429)
-
-(define (ucd-slc-entry-835 sv table)
-  sv
-  table
-  9430)
-
-(define (ucd-slc-entry-836 sv table)
-  sv
-  table
-  9431)
-
-(define (ucd-slc-entry-837 sv table)
-  sv
-  table
-  9432)
-
-(define (ucd-slc-entry-838 sv table)
-  sv
-  table
-  9433)
-
-(define (ucd-slc-entry-839 sv table)
-  sv
-  table
-  9434)
-
-(define (ucd-slc-entry-840 sv table)
-  sv
-  table
-  9435)
-
-(define (ucd-slc-entry-841 sv table)
-  sv
-  table
-  9436)
-
-(define (ucd-slc-entry-842 sv table)
-  sv
-  table
-  9437)
-
-(define (ucd-slc-entry-843 sv table)
-  sv
-  table
-  9438)
-
-(define (ucd-slc-entry-844 sv table)
-  sv
-  table
-  9439)
-
-(define (ucd-slc-entry-845 sv table)
-  sv
-  table
-  9440)
-
-(define (ucd-slc-entry-846 sv table)
-  sv
-  table
-  9441)
-
-(define (ucd-slc-entry-847 sv table)
-  sv
-  table
-  9442)
-
-(define (ucd-slc-entry-848 sv table)
-  sv
-  table
-  9443)
-
-(define (ucd-slc-entry-849 sv table)
-  sv
-  table
-  9444)
-
-(define (ucd-slc-entry-850 sv table)
-  sv
-  table
-  9445)
-
-(define (ucd-slc-entry-851 sv table)
-  sv
-  table
-  9446)
-
-(define (ucd-slc-entry-852 sv table)
-  sv
-  table
-  9447)
-
-(define (ucd-slc-entry-853 sv table)
-  sv
-  table
-  9448)
-
-(define (ucd-slc-entry-854 sv table)
-  sv
-  table
-  9449)
-
-(define (ucd-slc-entry-855 sv table)
-  sv
-  table
-  11312)
-
-(define (ucd-slc-entry-856 sv table)
-  sv
-  table
-  11313)
-
-(define (ucd-slc-entry-857 sv table)
-  sv
-  table
-  11314)
-
-(define (ucd-slc-entry-858 sv table)
-  sv
-  table
-  11315)
-
-(define (ucd-slc-entry-859 sv table)
-  sv
-  table
-  11316)
-
-(define (ucd-slc-entry-860 sv table)
-  sv
-  table
-  11317)
-
-(define (ucd-slc-entry-861 sv table)
-  sv
-  table
-  11318)
-
-(define (ucd-slc-entry-862 sv table)
-  sv
-  table
-  11319)
-
-(define (ucd-slc-entry-863 sv table)
-  sv
-  table
-  11320)
-
-(define (ucd-slc-entry-864 sv table)
-  sv
-  table
-  11321)
-
-(define (ucd-slc-entry-865 sv table)
-  sv
-  table
-  11322)
-
-(define (ucd-slc-entry-866 sv table)
-  sv
-  table
-  11323)
-
-(define (ucd-slc-entry-867 sv table)
-  sv
-  table
-  11324)
-
-(define (ucd-slc-entry-868 sv table)
-  sv
-  table
-  11325)
-
-(define (ucd-slc-entry-869 sv table)
-  sv
-  table
-  11326)
-
-(define (ucd-slc-entry-870 sv table)
-  sv
-  table
-  11327)
-
-(define (ucd-slc-entry-871 sv table)
-  sv
-  table
-  11328)
-
-(define (ucd-slc-entry-872 sv table)
-  sv
-  table
-  11329)
-
-(define (ucd-slc-entry-873 sv table)
-  sv
-  table
-  11330)
-
-(define (ucd-slc-entry-874 sv table)
-  sv
-  table
-  11331)
-
-(define (ucd-slc-entry-875 sv table)
-  sv
-  table
-  11332)
-
-(define (ucd-slc-entry-876 sv table)
-  sv
-  table
-  11333)
-
-(define (ucd-slc-entry-877 sv table)
-  sv
-  table
-  11334)
-
-(define (ucd-slc-entry-878 sv table)
-  sv
-  table
-  11335)
-
-(define (ucd-slc-entry-879 sv table)
-  sv
-  table
-  11336)
-
-(define (ucd-slc-entry-880 sv table)
-  sv
-  table
-  11337)
-
-(define (ucd-slc-entry-881 sv table)
-  sv
-  table
-  11338)
-
-(define (ucd-slc-entry-882 sv table)
-  sv
-  table
-  11339)
-
-(define (ucd-slc-entry-883 sv table)
-  sv
-  table
-  11340)
-
-(define (ucd-slc-entry-884 sv table)
-  sv
-  table
-  11341)
-
-(define (ucd-slc-entry-885 sv table)
-  sv
-  table
-  11342)
-
-(define (ucd-slc-entry-886 sv table)
-  sv
-  table
-  11343)
-
-(define (ucd-slc-entry-887 sv table)
-  sv
-  table
-  11344)
-
-(define (ucd-slc-entry-888 sv table)
-  sv
-  table
-  11345)
-
-(define (ucd-slc-entry-889 sv table)
-  sv
-  table
-  11346)
-
-(define (ucd-slc-entry-890 sv table)
-  sv
-  table
-  11347)
-
-(define (ucd-slc-entry-891 sv table)
-  sv
-  table
-  11348)
-
-(define (ucd-slc-entry-892 sv table)
-  sv
-  table
-  11349)
-
-(define (ucd-slc-entry-893 sv table)
-  sv
-  table
-  11350)
-
-(define (ucd-slc-entry-894 sv table)
-  sv
-  table
-  11351)
-
-(define (ucd-slc-entry-895 sv table)
-  sv
-  table
-  11352)
-
-(define (ucd-slc-entry-896 sv table)
-  sv
-  table
-  11353)
-
-(define (ucd-slc-entry-897 sv table)
-  sv
-  table
-  11354)
-
-(define (ucd-slc-entry-898 sv table)
-  sv
-  table
-  11355)
-
-(define (ucd-slc-entry-899 sv table)
-  sv
-  table
-  11356)
-
-(define (ucd-slc-entry-900 sv table)
-  sv
-  table
-  11357)
-
-(define (ucd-slc-entry-901 sv table)
-  sv
-  table
-  11358)
-
-(define (ucd-slc-entry-902 sv table)
-  sv
-  table
-  11361)
-
-(define (ucd-slc-entry-903 sv table)
-  sv
-  table
-  619)
-
-(define (ucd-slc-entry-904 sv table)
-  sv
-  table
-  7549)
-
-(define (ucd-slc-entry-905 sv table)
-  sv
-  table
-  637)
-
-(define (ucd-slc-entry-906 sv table)
-  sv
-  table
-  11368)
-
-(define (ucd-slc-entry-907 sv table)
-  sv
-  table
-  11370)
-
-(define (ucd-slc-entry-908 sv table)
-  sv
-  table
-  11372)
-
-(define (ucd-slc-entry-909 sv table)
-  sv
-  table
-  593)
-
-(define (ucd-slc-entry-910 sv table)
-  sv
-  table
-  625)
-
-(define (ucd-slc-entry-911 sv table)
-  sv
-  table
-  592)
-
-(define (ucd-slc-entry-912 sv table)
-  sv
-  table
-  594)
-
-(define (ucd-slc-entry-913 sv table)
-  sv
-  table
-  11379)
-
-(define (ucd-slc-entry-914 sv table)
-  sv
-  table
-  11382)
-
-(define (ucd-slc-entry-915 sv table)
-  sv
-  table
-  575)
-
-(define (ucd-slc-entry-916 sv table)
-  sv
-  table
-  576)
-
-(define (ucd-slc-entry-917 sv table)
-  sv
-  table
-  11393)
-
-(define (ucd-slc-entry-918 sv table)
-  sv
-  table
-  11395)
-
-(define (ucd-slc-entry-919 sv table)
-  sv
-  table
-  11397)
-
-(define (ucd-slc-entry-920 sv table)
-  sv
-  table
-  11399)
-
-(define (ucd-slc-entry-921 sv table)
-  sv
-  table
-  11401)
-
-(define (ucd-slc-entry-922 sv table)
-  sv
-  table
-  11403)
-
-(define (ucd-slc-entry-923 sv table)
-  sv
-  table
-  11405)
-
-(define (ucd-slc-entry-924 sv table)
-  sv
-  table
-  11407)
-
-(define (ucd-slc-entry-925 sv table)
-  sv
-  table
-  11409)
-
-(define (ucd-slc-entry-926 sv table)
-  sv
-  table
-  11411)
-
-(define (ucd-slc-entry-927 sv table)
-  sv
-  table
-  11413)
-
-(define (ucd-slc-entry-928 sv table)
-  sv
-  table
-  11415)
-
-(define (ucd-slc-entry-929 sv table)
-  sv
-  table
-  11417)
-
-(define (ucd-slc-entry-930 sv table)
-  sv
-  table
-  11419)
-
-(define (ucd-slc-entry-931 sv table)
-  sv
-  table
-  11421)
-
-(define (ucd-slc-entry-932 sv table)
-  sv
-  table
-  11423)
-
-(define (ucd-slc-entry-933 sv table)
-  sv
-  table
-  11425)
-
-(define (ucd-slc-entry-934 sv table)
-  sv
-  table
-  11427)
-
-(define (ucd-slc-entry-935 sv table)
-  sv
-  table
-  11429)
-
-(define (ucd-slc-entry-936 sv table)
-  sv
-  table
-  11431)
-
-(define (ucd-slc-entry-937 sv table)
-  sv
-  table
-  11433)
-
-(define (ucd-slc-entry-938 sv table)
-  sv
-  table
-  11435)
-
-(define (ucd-slc-entry-939 sv table)
-  sv
-  table
-  11437)
-
-(define (ucd-slc-entry-940 sv table)
-  sv
-  table
-  11439)
-
-(define (ucd-slc-entry-941 sv table)
-  sv
-  table
-  11441)
-
-(define (ucd-slc-entry-942 sv table)
-  sv
-  table
-  11443)
-
-(define (ucd-slc-entry-943 sv table)
-  sv
-  table
-  11445)
-
-(define (ucd-slc-entry-944 sv table)
-  sv
-  table
-  11447)
-
-(define (ucd-slc-entry-945 sv table)
-  sv
-  table
-  11449)
-
-(define (ucd-slc-entry-946 sv table)
-  sv
-  table
-  11451)
-
-(define (ucd-slc-entry-947 sv table)
-  sv
-  table
-  11453)
-
-(define (ucd-slc-entry-948 sv table)
-  sv
-  table
-  11455)
-
-(define (ucd-slc-entry-949 sv table)
-  sv
-  table
-  11457)
-
-(define (ucd-slc-entry-950 sv table)
-  sv
-  table
-  11459)
-
-(define (ucd-slc-entry-951 sv table)
-  sv
-  table
-  11461)
-
-(define (ucd-slc-entry-952 sv table)
-  sv
-  table
-  11463)
-
-(define (ucd-slc-entry-953 sv table)
-  sv
-  table
-  11465)
-
-(define (ucd-slc-entry-954 sv table)
-  sv
-  table
-  11467)
-
-(define (ucd-slc-entry-955 sv table)
-  sv
-  table
-  11469)
-
-(define (ucd-slc-entry-956 sv table)
-  sv
-  table
-  11471)
-
-(define (ucd-slc-entry-957 sv table)
-  sv
-  table
-  11473)
-
-(define (ucd-slc-entry-958 sv table)
-  sv
-  table
-  11475)
-
-(define (ucd-slc-entry-959 sv table)
-  sv
-  table
-  11477)
-
-(define (ucd-slc-entry-960 sv table)
-  sv
-  table
-  11479)
-
-(define (ucd-slc-entry-961 sv table)
-  sv
-  table
-  11481)
-
-(define (ucd-slc-entry-962 sv table)
-  sv
-  table
-  11483)
-
-(define (ucd-slc-entry-963 sv table)
-  sv
-  table
-  11485)
-
-(define (ucd-slc-entry-964 sv table)
-  sv
-  table
-  11487)
-
-(define (ucd-slc-entry-965 sv table)
-  sv
-  table
-  11489)
-
-(define (ucd-slc-entry-966 sv table)
-  sv
-  table
-  11491)
-
-(define (ucd-slc-entry-967 sv table)
-  sv
-  table
-  11500)
-
-(define (ucd-slc-entry-968 sv table)
-  sv
-  table
-  11502)
-
-(define (ucd-slc-entry-969 sv table)
-  sv
-  table
-  11507)
-
-(define (ucd-slc-entry-970 sv table)
-  sv
-  table
-  42561)
-
-(define (ucd-slc-entry-971 sv table)
-  sv
-  table
-  42563)
-
-(define (ucd-slc-entry-972 sv table)
-  sv
-  table
-  42565)
-
-(define (ucd-slc-entry-973 sv table)
-  sv
-  table
-  42567)
-
-(define (ucd-slc-entry-974 sv table)
-  sv
-  table
-  42569)
-
-(define (ucd-slc-entry-975 sv table)
-  sv
-  table
-  42571)
-
-(define (ucd-slc-entry-976 sv table)
-  sv
-  table
-  42573)
-
-(define (ucd-slc-entry-977 sv table)
-  sv
-  table
-  42575)
-
-(define (ucd-slc-entry-978 sv table)
-  sv
-  table
-  42577)
-
-(define (ucd-slc-entry-979 sv table)
-  sv
-  table
-  42579)
-
-(define (ucd-slc-entry-980 sv table)
-  sv
-  table
-  42581)
-
-(define (ucd-slc-entry-981 sv table)
-  sv
-  table
-  42583)
-
-(define (ucd-slc-entry-982 sv table)
-  sv
-  table
-  42585)
-
-(define (ucd-slc-entry-983 sv table)
-  sv
-  table
-  42587)
-
-(define (ucd-slc-entry-984 sv table)
-  sv
-  table
-  42589)
-
-(define (ucd-slc-entry-985 sv table)
-  sv
-  table
-  42591)
-
-(define (ucd-slc-entry-986 sv table)
-  sv
-  table
-  42593)
-
-(define (ucd-slc-entry-987 sv table)
-  sv
-  table
-  42595)
-
-(define (ucd-slc-entry-988 sv table)
-  sv
-  table
-  42597)
-
-(define (ucd-slc-entry-989 sv table)
-  sv
-  table
-  42599)
-
-(define (ucd-slc-entry-990 sv table)
-  sv
-  table
-  42601)
-
-(define (ucd-slc-entry-991 sv table)
-  sv
-  table
-  42603)
-
-(define (ucd-slc-entry-992 sv table)
-  sv
-  table
-  42605)
-
-(define (ucd-slc-entry-993 sv table)
-  sv
-  table
-  42625)
-
-(define (ucd-slc-entry-994 sv table)
-  sv
-  table
-  42627)
-
-(define (ucd-slc-entry-995 sv table)
-  sv
-  table
-  42629)
-
-(define (ucd-slc-entry-996 sv table)
-  sv
-  table
-  42631)
-
-(define (ucd-slc-entry-997 sv table)
-  sv
-  table
-  42633)
-
-(define (ucd-slc-entry-998 sv table)
-  sv
-  table
-  42635)
-
-(define (ucd-slc-entry-999 sv table)
-  sv
-  table
-  42637)
-
-(define (ucd-slc-entry-1000 sv table)
-  sv
-  table
-  42639)
-
-(define (ucd-slc-entry-1001 sv table)
-  sv
-  table
-  42641)
-
-(define (ucd-slc-entry-1002 sv table)
-  sv
-  table
-  42643)
-
-(define (ucd-slc-entry-1003 sv table)
-  sv
-  table
-  42645)
-
-(define (ucd-slc-entry-1004 sv table)
-  sv
-  table
-  42647)
-
-(define (ucd-slc-entry-1005 sv table)
-  sv
-  table
-  42649)
-
-(define (ucd-slc-entry-1006 sv table)
-  sv
-  table
-  42651)
-
-(define (ucd-slc-entry-1007 sv table)
-  sv
-  table
-  42787)
-
-(define (ucd-slc-entry-1008 sv table)
-  sv
-  table
-  42789)
-
-(define (ucd-slc-entry-1009 sv table)
-  sv
-  table
-  42791)
-
-(define (ucd-slc-entry-1010 sv table)
-  sv
-  table
-  42793)
-
-(define (ucd-slc-entry-1011 sv table)
-  sv
-  table
-  42795)
-
-(define (ucd-slc-entry-1012 sv table)
-  sv
-  table
-  42797)
-
-(define (ucd-slc-entry-1013 sv table)
-  sv
-  table
-  42799)
-
-(define (ucd-slc-entry-1014 sv table)
-  sv
-  table
-  42803)
-
-(define (ucd-slc-entry-1015 sv table)
-  sv
-  table
-  42805)
-
-(define (ucd-slc-entry-1016 sv table)
-  sv
-  table
-  42807)
-
-(define (ucd-slc-entry-1017 sv table)
-  sv
-  table
-  42809)
-
-(define (ucd-slc-entry-1018 sv table)
-  sv
-  table
-  42811)
-
-(define (ucd-slc-entry-1019 sv table)
-  sv
-  table
-  42813)
-
-(define (ucd-slc-entry-1020 sv table)
-  sv
-  table
-  42815)
-
-(define (ucd-slc-entry-1021 sv table)
-  sv
-  table
-  42817)
-
-(define (ucd-slc-entry-1022 sv table)
-  sv
-  table
-  42819)
-
-(define (ucd-slc-entry-1023 sv table)
-  sv
-  table
-  42821)
-
-(define (ucd-slc-entry-1024 sv table)
-  sv
-  table
-  42823)
-
-(define (ucd-slc-entry-1025 sv table)
-  sv
-  table
-  42825)
-
-(define (ucd-slc-entry-1026 sv table)
-  sv
-  table
-  42827)
-
-(define (ucd-slc-entry-1027 sv table)
-  sv
-  table
-  42829)
-
-(define (ucd-slc-entry-1028 sv table)
-  sv
-  table
-  42831)
-
-(define (ucd-slc-entry-1029 sv table)
-  sv
-  table
-  42833)
-
-(define (ucd-slc-entry-1030 sv table)
-  sv
-  table
-  42835)
-
-(define (ucd-slc-entry-1031 sv table)
-  sv
-  table
-  42837)
-
-(define (ucd-slc-entry-1032 sv table)
-  sv
-  table
-  42839)
-
-(define (ucd-slc-entry-1033 sv table)
-  sv
-  table
-  42841)
-
-(define (ucd-slc-entry-1034 sv table)
-  sv
-  table
-  42843)
-
-(define (ucd-slc-entry-1035 sv table)
-  sv
-  table
-  42845)
-
-(define (ucd-slc-entry-1036 sv table)
-  sv
-  table
-  42847)
-
-(define (ucd-slc-entry-1037 sv table)
-  sv
-  table
-  42849)
-
-(define (ucd-slc-entry-1038 sv table)
-  sv
-  table
-  42851)
-
-(define (ucd-slc-entry-1039 sv table)
-  sv
-  table
-  42853)
-
-(define (ucd-slc-entry-1040 sv table)
-  sv
-  table
-  42855)
-
-(define (ucd-slc-entry-1041 sv table)
-  sv
-  table
-  42857)
-
-(define (ucd-slc-entry-1042 sv table)
-  sv
-  table
-  42859)
-
-(define (ucd-slc-entry-1043 sv table)
-  sv
-  table
-  42861)
-
-(define (ucd-slc-entry-1044 sv table)
-  sv
-  table
-  42863)
-
-(define (ucd-slc-entry-1045 sv table)
-  sv
-  table
-  42874)
-
-(define (ucd-slc-entry-1046 sv table)
-  sv
-  table
-  42876)
-
-(define (ucd-slc-entry-1047 sv table)
-  sv
-  table
-  7545)
-
-(define (ucd-slc-entry-1048 sv table)
-  sv
-  table
-  42879)
-
-(define (ucd-slc-entry-1049 sv table)
-  sv
-  table
-  42881)
-
-(define (ucd-slc-entry-1050 sv table)
-  sv
-  table
-  42883)
-
-(define (ucd-slc-entry-1051 sv table)
-  sv
-  table
-  42885)
-
-(define (ucd-slc-entry-1052 sv table)
-  sv
-  table
-  42887)
-
-(define (ucd-slc-entry-1053 sv table)
-  sv
-  table
-  42892)
-
-(define (ucd-slc-entry-1054 sv table)
-  sv
-  table
-  613)
-
-(define (ucd-slc-entry-1055 sv table)
-  sv
-  table
-  42897)
-
-(define (ucd-slc-entry-1056 sv table)
-  sv
-  table
-  42899)
-
-(define (ucd-slc-entry-1057 sv table)
-  sv
-  table
-  42903)
-
-(define (ucd-slc-entry-1058 sv table)
-  sv
-  table
-  42905)
-
-(define (ucd-slc-entry-1059 sv table)
-  sv
-  table
-  42907)
-
-(define (ucd-slc-entry-1060 sv table)
-  sv
-  table
-  42909)
-
-(define (ucd-slc-entry-1061 sv table)
-  sv
-  table
-  42911)
-
-(define (ucd-slc-entry-1062 sv table)
-  sv
-  table
-  42913)
-
-(define (ucd-slc-entry-1063 sv table)
-  sv
-  table
-  42915)
-
-(define (ucd-slc-entry-1064 sv table)
-  sv
-  table
-  42917)
-
-(define (ucd-slc-entry-1065 sv table)
-  sv
-  table
-  42919)
-
-(define (ucd-slc-entry-1066 sv table)
-  sv
-  table
-  42921)
-
-(define (ucd-slc-entry-1067 sv table)
-  sv
-  table
-  614)
-
-(define (ucd-slc-entry-1068 sv table)
-  sv
-  table
-  604)
-
-(define (ucd-slc-entry-1069 sv table)
-  sv
-  table
-  609)
-
-(define (ucd-slc-entry-1070 sv table)
-  sv
-  table
-  620)
-
-(define (ucd-slc-entry-1071 sv table)
-  sv
-  table
-  618)
-
-(define (ucd-slc-entry-1072 sv table)
-  sv
-  table
-  670)
-
-(define (ucd-slc-entry-1073 sv table)
-  sv
-  table
-  647)
-
-(define (ucd-slc-entry-1074 sv table)
-  sv
-  table
-  669)
-
-(define (ucd-slc-entry-1075 sv table)
-  sv
-  table
-  43859)
-
-(define (ucd-slc-entry-1076 sv table)
-  sv
-  table
-  42933)
-
-(define (ucd-slc-entry-1077 sv table)
-  sv
-  table
-  42935)
-
-(define (ucd-slc-entry-1078 sv table)
-  sv
-  table
-  65345)
-
-(define (ucd-slc-entry-1079 sv table)
-  sv
-  table
-  65346)
-
-(define (ucd-slc-entry-1080 sv table)
-  sv
-  table
-  65347)
-
-(define (ucd-slc-entry-1081 sv table)
-  sv
-  table
-  65348)
-
-(define (ucd-slc-entry-1082 sv table)
-  sv
-  table
-  65349)
-
-(define (ucd-slc-entry-1083 sv table)
-  sv
-  table
-  65350)
-
-(define (ucd-slc-entry-1084 sv table)
-  sv
-  table
-  65351)
-
-(define (ucd-slc-entry-1085 sv table)
-  sv
-  table
-  65352)
-
-(define (ucd-slc-entry-1086 sv table)
-  sv
-  table
-  65353)
-
-(define (ucd-slc-entry-1087 sv table)
-  sv
-  table
-  65354)
-
-(define (ucd-slc-entry-1088 sv table)
-  sv
-  table
-  65355)
-
-(define (ucd-slc-entry-1089 sv table)
-  sv
-  table
-  65356)
-
-(define (ucd-slc-entry-1090 sv table)
-  sv
-  table
-  65357)
-
-(define (ucd-slc-entry-1091 sv table)
-  sv
-  table
-  65358)
-
-(define (ucd-slc-entry-1092 sv table)
-  sv
-  table
-  65359)
-
-(define (ucd-slc-entry-1093 sv table)
-  sv
-  table
-  65360)
-
-(define (ucd-slc-entry-1094 sv table)
-  sv
-  table
-  65361)
-
-(define (ucd-slc-entry-1095 sv table)
-  sv
-  table
-  65362)
-
-(define (ucd-slc-entry-1096 sv table)
-  sv
-  table
-  65363)
-
-(define (ucd-slc-entry-1097 sv table)
-  sv
-  table
-  65364)
-
-(define (ucd-slc-entry-1098 sv table)
-  sv
-  table
-  65365)
-
-(define (ucd-slc-entry-1099 sv table)
-  sv
-  table
-  65366)
-
-(define (ucd-slc-entry-1100 sv table)
-  sv
-  table
-  65367)
-
-(define (ucd-slc-entry-1101 sv table)
-  sv
-  table
-  65368)
-
-(define (ucd-slc-entry-1102 sv table)
-  sv
-  table
-  65369)
-
-(define (ucd-slc-entry-1103 sv table)
-  sv
-  table
-  65370)
-
-(define (ucd-slc-entry-1104 sv table)
-  sv
-  table
-  66600)
-
-(define (ucd-slc-entry-1105 sv table)
-  sv
-  table
-  66601)
-
-(define (ucd-slc-entry-1106 sv table)
-  sv
-  table
-  66602)
-
-(define (ucd-slc-entry-1107 sv table)
-  sv
-  table
-  66603)
-
-(define (ucd-slc-entry-1108 sv table)
-  sv
-  table
-  66604)
-
-(define (ucd-slc-entry-1109 sv table)
-  sv
-  table
-  66605)
-
-(define (ucd-slc-entry-1110 sv table)
-  sv
-  table
-  66606)
-
-(define (ucd-slc-entry-1111 sv table)
-  sv
-  table
-  66607)
-
-(define (ucd-slc-entry-1112 sv table)
-  sv
-  table
-  66608)
-
-(define (ucd-slc-entry-1113 sv table)
-  sv
-  table
-  66609)
-
-(define (ucd-slc-entry-1114 sv table)
-  sv
-  table
-  66610)
-
-(define (ucd-slc-entry-1115 sv table)
-  sv
-  table
-  66611)
-
-(define (ucd-slc-entry-1116 sv table)
-  sv
-  table
-  66612)
-
-(define (ucd-slc-entry-1117 sv table)
-  sv
-  table
-  66613)
-
-(define (ucd-slc-entry-1118 sv table)
-  sv
-  table
-  66614)
-
-(define (ucd-slc-entry-1119 sv table)
-  sv
-  table
-  66615)
-
-(define (ucd-slc-entry-1120 sv table)
-  sv
-  table
-  66616)
-
-(define (ucd-slc-entry-1121 sv table)
-  sv
-  table
-  66617)
-
-(define (ucd-slc-entry-1122 sv table)
-  sv
-  table
-  66618)
-
-(define (ucd-slc-entry-1123 sv table)
-  sv
-  table
-  66619)
-
-(define (ucd-slc-entry-1124 sv table)
-  sv
-  table
-  66620)
-
-(define (ucd-slc-entry-1125 sv table)
-  sv
-  table
-  66621)
-
-(define (ucd-slc-entry-1126 sv table)
-  sv
-  table
-  66622)
-
-(define (ucd-slc-entry-1127 sv table)
-  sv
-  table
-  66623)
-
-(define (ucd-slc-entry-1128 sv table)
-  sv
-  table
-  66624)
-
-(define (ucd-slc-entry-1129 sv table)
-  sv
-  table
-  66625)
-
-(define (ucd-slc-entry-1130 sv table)
-  sv
-  table
-  66626)
-
-(define (ucd-slc-entry-1131 sv table)
-  sv
-  table
-  66627)
-
-(define (ucd-slc-entry-1132 sv table)
-  sv
-  table
-  66628)
-
-(define (ucd-slc-entry-1133 sv table)
-  sv
-  table
-  66629)
-
-(define (ucd-slc-entry-1134 sv table)
-  sv
-  table
-  66630)
-
-(define (ucd-slc-entry-1135 sv table)
-  sv
-  table
-  66631)
-
-(define (ucd-slc-entry-1136 sv table)
-  sv
-  table
-  66632)
-
-(define (ucd-slc-entry-1137 sv table)
-  sv
-  table
-  66633)
-
-(define (ucd-slc-entry-1138 sv table)
-  sv
-  table
-  66634)
-
-(define (ucd-slc-entry-1139 sv table)
-  sv
-  table
-  66635)
-
-(define (ucd-slc-entry-1140 sv table)
-  sv
-  table
-  66636)
-
-(define (ucd-slc-entry-1141 sv table)
-  sv
-  table
-  66637)
-
-(define (ucd-slc-entry-1142 sv table)
-  sv
-  table
-  66638)
-
-(define (ucd-slc-entry-1143 sv table)
-  sv
-  table
-  66639)
-
-(define (ucd-slc-entry-1144 sv table)
-  sv
-  table
-  66776)
-
-(define (ucd-slc-entry-1145 sv table)
-  sv
-  table
-  66777)
-
-(define (ucd-slc-entry-1146 sv table)
-  sv
-  table
-  66778)
-
-(define (ucd-slc-entry-1147 sv table)
-  sv
-  table
-  66779)
-
-(define (ucd-slc-entry-1148 sv table)
-  sv
-  table
-  66780)
-
-(define (ucd-slc-entry-1149 sv table)
-  sv
-  table
-  66781)
-
-(define (ucd-slc-entry-1150 sv table)
-  sv
-  table
-  66782)
-
-(define (ucd-slc-entry-1151 sv table)
-  sv
-  table
-  66783)
-
-(define (ucd-slc-entry-1152 sv table)
-  sv
-  table
-  66784)
-
-(define (ucd-slc-entry-1153 sv table)
-  sv
-  table
-  66785)
-
-(define (ucd-slc-entry-1154 sv table)
-  sv
-  table
-  66786)
-
-(define (ucd-slc-entry-1155 sv table)
-  sv
-  table
-  66787)
-
-(define (ucd-slc-entry-1156 sv table)
-  sv
-  table
-  66788)
-
-(define (ucd-slc-entry-1157 sv table)
-  sv
-  table
-  66789)
-
-(define (ucd-slc-entry-1158 sv table)
-  sv
-  table
-  66790)
-
-(define (ucd-slc-entry-1159 sv table)
-  sv
-  table
-  66791)
-
-(define (ucd-slc-entry-1160 sv table)
-  sv
-  table
-  66792)
-
-(define (ucd-slc-entry-1161 sv table)
-  sv
-  table
-  66793)
-
-(define (ucd-slc-entry-1162 sv table)
-  sv
-  table
-  66794)
-
-(define (ucd-slc-entry-1163 sv table)
-  sv
-  table
-  66795)
-
-(define (ucd-slc-entry-1164 sv table)
-  sv
-  table
-  66796)
-
-(define (ucd-slc-entry-1165 sv table)
-  sv
-  table
-  66797)
-
-(define (ucd-slc-entry-1166 sv table)
-  sv
-  table
-  66798)
-
-(define (ucd-slc-entry-1167 sv table)
-  sv
-  table
-  66799)
-
-(define (ucd-slc-entry-1168 sv table)
-  sv
-  table
-  66800)
-
-(define (ucd-slc-entry-1169 sv table)
-  sv
-  table
-  66801)
-
-(define (ucd-slc-entry-1170 sv table)
-  sv
-  table
-  66802)
-
-(define (ucd-slc-entry-1171 sv table)
-  sv
-  table
-  66803)
-
-(define (ucd-slc-entry-1172 sv table)
-  sv
-  table
-  66804)
-
-(define (ucd-slc-entry-1173 sv table)
-  sv
-  table
-  66805)
-
-(define (ucd-slc-entry-1174 sv table)
-  sv
-  table
-  66806)
-
-(define (ucd-slc-entry-1175 sv table)
-  sv
-  table
-  66807)
-
-(define (ucd-slc-entry-1176 sv table)
-  sv
-  table
-  66808)
-
-(define (ucd-slc-entry-1177 sv table)
-  sv
-  table
-  66809)
-
-(define (ucd-slc-entry-1178 sv table)
-  sv
-  table
-  66810)
-
-(define (ucd-slc-entry-1179 sv table)
-  sv
-  table
-  66811)
-
-(define (ucd-slc-entry-1180 sv table)
-  sv
-  table
-  68800)
-
-(define (ucd-slc-entry-1181 sv table)
-  sv
-  table
-  68801)
-
-(define (ucd-slc-entry-1182 sv table)
-  sv
-  table
-  68802)
-
-(define (ucd-slc-entry-1183 sv table)
-  sv
-  table
-  68803)
-
-(define (ucd-slc-entry-1184 sv table)
-  sv
-  table
-  68804)
-
-(define (ucd-slc-entry-1185 sv table)
-  sv
-  table
-  68805)
-
-(define (ucd-slc-entry-1186 sv table)
-  sv
-  table
-  68806)
-
-(define (ucd-slc-entry-1187 sv table)
-  sv
-  table
-  68807)
-
-(define (ucd-slc-entry-1188 sv table)
-  sv
-  table
-  68808)
-
-(define (ucd-slc-entry-1189 sv table)
-  sv
-  table
-  68809)
-
-(define (ucd-slc-entry-1190 sv table)
-  sv
-  table
-  68810)
-
-(define (ucd-slc-entry-1191 sv table)
-  sv
-  table
-  68811)
-
-(define (ucd-slc-entry-1192 sv table)
-  sv
-  table
-  68812)
-
-(define (ucd-slc-entry-1193 sv table)
-  sv
-  table
-  68813)
-
-(define (ucd-slc-entry-1194 sv table)
-  sv
-  table
-  68814)
-
-(define (ucd-slc-entry-1195 sv table)
-  sv
-  table
-  68815)
-
-(define (ucd-slc-entry-1196 sv table)
-  sv
-  table
-  68816)
-
-(define (ucd-slc-entry-1197 sv table)
-  sv
-  table
-  68817)
-
-(define (ucd-slc-entry-1198 sv table)
-  sv
-  table
-  68818)
-
-(define (ucd-slc-entry-1199 sv table)
-  sv
-  table
-  68819)
-
-(define (ucd-slc-entry-1200 sv table)
-  sv
-  table
-  68820)
-
-(define (ucd-slc-entry-1201 sv table)
-  sv
-  table
-  68821)
-
-(define (ucd-slc-entry-1202 sv table)
-  sv
-  table
-  68822)
-
-(define (ucd-slc-entry-1203 sv table)
-  sv
-  table
-  68823)
-
-(define (ucd-slc-entry-1204 sv table)
-  sv
-  table
-  68824)
-
-(define (ucd-slc-entry-1205 sv table)
-  sv
-  table
-  68825)
-
-(define (ucd-slc-entry-1206 sv table)
-  sv
-  table
-  68826)
-
-(define (ucd-slc-entry-1207 sv table)
-  sv
-  table
-  68827)
-
-(define (ucd-slc-entry-1208 sv table)
-  sv
-  table
-  68828)
-
-(define (ucd-slc-entry-1209 sv table)
-  sv
-  table
-  68829)
-
-(define (ucd-slc-entry-1210 sv table)
-  sv
-  table
-  68830)
-
-(define (ucd-slc-entry-1211 sv table)
-  sv
-  table
-  68831)
-
-(define (ucd-slc-entry-1212 sv table)
-  sv
-  table
-  68832)
-
-(define (ucd-slc-entry-1213 sv table)
-  sv
-  table
-  68833)
-
-(define (ucd-slc-entry-1214 sv table)
-  sv
-  table
-  68834)
-
-(define (ucd-slc-entry-1215 sv table)
-  sv
-  table
-  68835)
-
-(define (ucd-slc-entry-1216 sv table)
-  sv
-  table
-  68836)
-
-(define (ucd-slc-entry-1217 sv table)
-  sv
-  table
-  68837)
-
-(define (ucd-slc-entry-1218 sv table)
-  sv
-  table
-  68838)
-
-(define (ucd-slc-entry-1219 sv table)
-  sv
-  table
-  68839)
-
-(define (ucd-slc-entry-1220 sv table)
-  sv
-  table
-  68840)
-
-(define (ucd-slc-entry-1221 sv table)
-  sv
-  table
-  68841)
-
-(define (ucd-slc-entry-1222 sv table)
-  sv
-  table
-  68842)
-
-(define (ucd-slc-entry-1223 sv table)
-  sv
-  table
-  68843)
-
-(define (ucd-slc-entry-1224 sv table)
-  sv
-  table
-  68844)
-
-(define (ucd-slc-entry-1225 sv table)
-  sv
-  table
-  68845)
-
-(define (ucd-slc-entry-1226 sv table)
-  sv
-  table
-  68846)
-
-(define (ucd-slc-entry-1227 sv table)
-  sv
-  table
-  68847)
-
-(define (ucd-slc-entry-1228 sv table)
-  sv
-  table
-  68848)
-
-(define (ucd-slc-entry-1229 sv table)
-  sv
-  table
-  68849)
-
-(define (ucd-slc-entry-1230 sv table)
-  sv
-  table
-  68850)
-
-(define (ucd-slc-entry-1231 sv table)
-  sv
-  table
-  71872)
-
-(define (ucd-slc-entry-1232 sv table)
-  sv
-  table
-  71873)
-
-(define (ucd-slc-entry-1233 sv table)
-  sv
-  table
-  71874)
-
-(define (ucd-slc-entry-1234 sv table)
-  sv
-  table
-  71875)
-
-(define (ucd-slc-entry-1235 sv table)
-  sv
-  table
-  71876)
-
-(define (ucd-slc-entry-1236 sv table)
-  sv
-  table
-  71877)
-
-(define (ucd-slc-entry-1237 sv table)
-  sv
-  table
-  71878)
-
-(define (ucd-slc-entry-1238 sv table)
-  sv
-  table
-  71879)
-
-(define (ucd-slc-entry-1239 sv table)
-  sv
-  table
-  71880)
-
-(define (ucd-slc-entry-1240 sv table)
-  sv
-  table
-  71881)
-
-(define (ucd-slc-entry-1241 sv table)
-  sv
-  table
-  71882)
-
-(define (ucd-slc-entry-1242 sv table)
-  sv
-  table
-  71883)
-
-(define (ucd-slc-entry-1243 sv table)
-  sv
-  table
-  71884)
-
-(define (ucd-slc-entry-1244 sv table)
-  sv
-  table
-  71885)
-
-(define (ucd-slc-entry-1245 sv table)
-  sv
-  table
-  71886)
-
-(define (ucd-slc-entry-1246 sv table)
-  sv
-  table
-  71887)
-
-(define (ucd-slc-entry-1247 sv table)
-  sv
-  table
-  71888)
-
-(define (ucd-slc-entry-1248 sv table)
-  sv
-  table
-  71889)
-
-(define (ucd-slc-entry-1249 sv table)
-  sv
-  table
-  71890)
-
-(define (ucd-slc-entry-1250 sv table)
-  sv
-  table
-  71891)
-
-(define (ucd-slc-entry-1251 sv table)
-  sv
-  table
-  71892)
-
-(define (ucd-slc-entry-1252 sv table)
-  sv
-  table
-  71893)
-
-(define (ucd-slc-entry-1253 sv table)
-  sv
-  table
-  71894)
-
-(define (ucd-slc-entry-1254 sv table)
-  sv
-  table
-  71895)
-
-(define (ucd-slc-entry-1255 sv table)
-  sv
-  table
-  71896)
-
-(define (ucd-slc-entry-1256 sv table)
-  sv
-  table
-  71897)
-
-(define (ucd-slc-entry-1257 sv table)
-  sv
-  table
-  71898)
-
-(define (ucd-slc-entry-1258 sv table)
-  sv
-  table
-  71899)
-
-(define (ucd-slc-entry-1259 sv table)
-  sv
-  table
-  71900)
-
-(define (ucd-slc-entry-1260 sv table)
-  sv
-  table
-  71901)
-
-(define (ucd-slc-entry-1261 sv table)
-  sv
-  table
-  71902)
-
-(define (ucd-slc-entry-1262 sv table)
-  sv
-  table
-  71903)
-
-(define (ucd-slc-entry-1263 sv table)
-  sv
-  table
-  125218)
-
-(define (ucd-slc-entry-1264 sv table)
-  sv
-  table
-  125219)
-
-(define (ucd-slc-entry-1265 sv table)
-  sv
-  table
-  125220)
-
-(define (ucd-slc-entry-1266 sv table)
-  sv
-  table
-  125221)
-
-(define (ucd-slc-entry-1267 sv table)
-  sv
-  table
-  125222)
-
-(define (ucd-slc-entry-1268 sv table)
-  sv
-  table
-  125223)
-
-(define (ucd-slc-entry-1269 sv table)
-  sv
-  table
-  125224)
-
-(define (ucd-slc-entry-1270 sv table)
-  sv
-  table
-  125225)
-
-(define (ucd-slc-entry-1271 sv table)
-  sv
-  table
-  125226)
-
-(define (ucd-slc-entry-1272 sv table)
-  sv
-  table
-  125227)
-
-(define (ucd-slc-entry-1273 sv table)
-  sv
-  table
-  125228)
-
-(define (ucd-slc-entry-1274 sv table)
-  sv
-  table
-  125229)
-
-(define (ucd-slc-entry-1275 sv table)
-  sv
-  table
-  125230)
-
-(define (ucd-slc-entry-1276 sv table)
-  sv
-  table
-  125231)
-
-(define (ucd-slc-entry-1277 sv table)
-  sv
-  table
-  125232)
-
-(define (ucd-slc-entry-1278 sv table)
-  sv
-  table
-  125233)
-
-(define (ucd-slc-entry-1279 sv table)
-  sv
-  table
-  125234)
-
-(define (ucd-slc-entry-1280 sv table)
-  sv
-  table
-  125235)
-
-(define (ucd-slc-entry-1281 sv table)
-  sv
-  table
-  125236)
-
-(define (ucd-slc-entry-1282 sv table)
-  sv
-  table
-  125237)
-
-(define (ucd-slc-entry-1283 sv table)
-  sv
-  table
-  125238)
-
-(define (ucd-slc-entry-1284 sv table)
-  sv
-  table
-  125239)
-
-(define (ucd-slc-entry-1285 sv table)
-  sv
-  table
-  125240)
-
-(define (ucd-slc-entry-1286 sv table)
-  sv
-  table
-  125241)
-
-(define (ucd-slc-entry-1287 sv table)
-  sv
-  table
-  125242)
-
-(define (ucd-slc-entry-1288 sv table)
-  sv
-  table
-  125243)
-
-(define (ucd-slc-entry-1289 sv table)
-  sv
-  table
-  125244)
-
-(define (ucd-slc-entry-1290 sv table)
-  sv
-  table
-  125245)
-
-(define (ucd-slc-entry-1291 sv table)
-  sv
-  table
-  125246)
-
-(define (ucd-slc-entry-1292 sv table)
-  sv
-  table
-  125247)
-
-(define (ucd-slc-entry-1293 sv table)
-  sv
-  table
-  125248)
-
-(define (ucd-slc-entry-1294 sv table)
-  sv
-  table
-  125249)
-
-(define (ucd-slc-entry-1295 sv table)
-  sv
-  table
-  125250)
-
-(define (ucd-slc-entry-1296 sv table)
-  sv
-  table
-  125251)
-
-
-(define-deferred ucd-slc-entry-1297
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 0 50 51 52 53 54 55 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1297 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1298
-  (let ((offsets (bytevector 57 0 58 0 59 0 60 0 61 0 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 79 0 80 0 9 0 81 0 82 0 83 0 0 84 0 85 0 86 0 87 0 88 0 89 0 90 0 91 0 0 92 0 93 0 94 0 95 0 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 111 0 112 0 113 0 114 0 115 116 0 117 0 118 0 0 0 119 120 0 121 0 122 123 0 124 125 126 0 0 127 128 129 130 0 131 132 0 133 134 135 0 0 0 136 137 0 138 139 0 140 0 141 0 142 143 0 144 0 0 145 0 146 147 0 148 149 150 0 151 0 152 153 0 0 0 154 0 0 0 0 0 0 0 155 155 0 156 156 0 157 157 0 158 0 159 0 160 0 161 0 162 0 163 0 164 0 165 0 0 166 0 167 0 168 0 169 0 170 0 171 0 172 0 173 0 174 0 0 175 175 0 176 0 177 178 179 0 180 0 181 0 182 0)))
-    (named-lambda (ucd-slc-entry-1298 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1299
-  (let ((offsets (bytevector 183 0 184 0 185 0 186 0 187 0 188 0 189 0 190 0 191 0 192 0 193 0 194 0 195 0 196 0 197 0 198 0 199 0 200 0 201 0 202 0 203 0 204 0 205 0 206 0 207 0 208 0 0 0 0 0 0 0 209 210 0 211 212 0 0 213 0 214 215 216 217 0 218 0 219 0 220 0 221 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1299 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1300
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     222
-                     0
-                     0
-                     0
-                     223
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     224
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     226
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     227
-                     0
-                     0
-                     0
-                     228
-                     0
-                     229
-                     0
-                     230
-                     0
-                     225
-                     0
-                     231
-                     0
-                     225
-                     0
-                     232
-                     0
-                     233
-                     0
-                     0
-                     0
-                     234
-                     0
-                     235
-                     0
-                     236
-                     0
-                     237
-                     0
-                     238
-                     0
-                     239
-                     0
-                     240
-                     0
-                     241
-                     0
-                     242
-                     0
-                     243
-                     0
-                     244
-                     0
-                     245
-                     0
-                     246
-                     0
-                     247
-                     0
-                     248
-                     0
-                     249
-                     0
-                     250
-                     0
-                     225
-                     0
-                     251
-                     0
-                     252
-                     0
-                     253
-                     0
-                     254
-                     0
-                     255
-                     0
-                     0
-                     1
-                     1
-                     1
-                     2
-                     1
-                     3
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     4
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     5
-                     1
-                     0
-                     0
-                     6
-                     1
-                     0
-                     0
-                     7
-                     1
-                     0
-                     0
-                     8
-                     1
-                     0
-                     0
-                     9
-                     1
-                     0
-                     0
-                     10
-                     1
-                     0
-                     0
-                     11
-                     1
-                     0
-                     0
-                     12
-                     1
-                     0
-                     0
-                     13
-                     1
-                     0
-                     0
-                     14
-                     1
-                     0
-                     0
-                     15
-                     1
-                     0
-                     0
-                     16
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     241
-                     0
-                     0
-                     0
-                     0
-                     0
-                     17
-                     1
-                     0
-                     0
-                     18
-                     1
-                     19
-                     1
-                     0
-                     0
-                     0
-                     0
-                     20
-                     1
-                     21
-                     1
-                     22
-                     1)))
-    (named-lambda (ucd-slc-entry-1300 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1301
-  (let ((offsets
-         (bytevector 23
-                     1
-                     24
-                     1
-                     25
-                     1
-                     26
-                     1
-                     27
-                     1
-                     28
-                     1
-                     29
-                     1
-                     30
-                     1
-                     31
-                     1
-                     32
-                     1
-                     33
-                     1
-                     34
-                     1
-                     35
-                     1
-                     36
-                     1
-                     37
-                     1
-                     38
-                     1
-                     39
-                     1
-                     40
-                     1
-                     41
-                     1
-                     42
-                     1
-                     43
-                     1
-                     44
-                     1
-                     45
-                     1
-                     46
-                     1
-                     47
-                     1
-                     48
-                     1
-                     49
-                     1
-                     50
-                     1
-                     51
-                     1
-                     52
-                     1
-                     53
-                     1
-                     54
-                     1
-                     55
-                     1
-                     56
-                     1
-                     57
-                     1
-                     58
-                     1
-                     59
-                     1
-                     60
-                     1
-                     61
-                     1
-                     62
-                     1
-                     63
-                     1
-                     64
-                     1
-                     65
-                     1
-                     66
-                     1
-                     67
-                     1
-                     68
-                     1
-                     69
-                     1
-                     70
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     71
-                     1
-                     0
-                     0
-                     72
-                     1
-                     0
-                     0
-                     73
-                     1
-                     0
-                     0
-                     74
-                     1
-                     0
-                     0
-                     75
-                     1
-                     0
-                     0
-                     76
-                     1
-                     0
-                     0
-                     77
-                     1
-                     0
-                     0
-                     78
-                     1
-                     0
-                     0
-                     79
-                     1
-                     0
-                     0
-                     80
-                     1
-                     0
-                     0
-                     81
-                     1
-                     0
-                     0
-                     82
-                     1
-                     0
-                     0
-                     83
-                     1
-                     0
-                     0
-                     84
-                     1
-                     0
-                     0
-                     85
-                     1
-                     0
-                     0
-                     86
-                     1
-                     0
-                     0
-                     87
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     88
-                     1
-                     0
-                     0
-                     89
-                     1
-                     0
-                     0
-                     90
-                     1
-                     0
-                     0
-                     91
-                     1
-                     0
-                     0
-                     92
-                     1
-                     0
-                     0
-                     93
-                     1
-                     0
-                     0
-                     94
-                     1
-                     0
-                     0
-                     95
-                     1
-                     0
-                     0
-                     96
-                     1
-                     0
-                     0
-                     97
-                     1
-                     0
-                     0
-                     98
-                     1
-                     0
-                     0
-                     99
-                     1
-                     0
-                     0
-                     100
-                     1
-                     0
-                     0
-                     101
-                     1
-                     0
-                     0
-                     102
-                     1
-                     0
-                     0
-                     103
-                     1
-                     0
-                     0
-                     104
-                     1
-                     0
-                     0
-                     105
-                     1
-                     0
-                     0
-                     106
-                     1
-                     0
-                     0
-                     107
-                     1
-                     0
-                     0
-                     108
-                     1
-                     0
-                     0
-                     109
-                     1
-                     0
-                     0
-                     110
-                     1
-                     0
-                     0
-                     111
-                     1
-                     0
-                     0
-                     112
-                     1
-                     0
-                     0
-                     113
-                     1
-                     0
-                     0
-                     114
-                     1
-                     0
-                     0
-                     115
-                     1
-                     116
-                     1
-                     0
-                     0
-                     117
-                     1
-                     0
-                     0
-                     118
-                     1
-                     0
-                     0
-                     119
-                     1
-                     0
-                     0
-                     120
-                     1
-                     0
-                     0
-                     121
-                     1
-                     0
-                     0
-                     122
-                     1
-                     0
-                     0
-                     0
-                     0
-                     123
-                     1
-                     0
-                     0
-                     124
-                     1
-                     0
-                     0
-                     125
-                     1
-                     0
-                     0
-                     126
-                     1
-                     0
-                     0
-                     127
-                     1
-                     0
-                     0
-                     128
-                     1
-                     0
-                     0
-                     129
-                     1
-                     0
-                     0
-                     130
-                     1
-                     0
-                     0
-                     131
-                     1
-                     0
-                     0
-                     132
-                     1
-                     0
-                     0
-                     133
-                     1
-                     0
-                     0
-                     134
-                     1
-                     0
-                     0
-                     135
-                     1
-                     0
-                     0
-                     136
-                     1
-                     0
-                     0
-                     137
-                     1
-                     0
-                     0
-                     138
-                     1
-                     0
-                     0
-                     139
-                     1
-                     0
-                     0
-                     140
-                     1
-                     0
-                     0
-                     141
-                     1
-                     0
-                     0
-                     142
-                     1
-                     0
-                     0
-                     143
-                     1
-                     0
-                     0
-                     144
-                     1
-                     0
-                     0
-                     145
-                     1
-                     0
-                     0
-                     146
-                     1
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1301 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1302
-  (let ((offsets
-         (bytevector 147
-                     1
-                     0
-                     0
-                     148
-                     1
-                     0
-                     0
-                     149
-                     1
-                     0
-                     0
-                     150
-                     1
-                     0
-                     0
-                     151
-                     1
-                     0
-                     0
-                     152
-                     1
-                     0
-                     0
-                     153
-                     1
-                     0
-                     0
-                     154
-                     1
-                     0
-                     0
-                     155
-                     1
-                     0
-                     0
-                     156
-                     1
-                     0
-                     0
-                     157
-                     1
-                     0
-                     0
-                     158
-                     1
-                     0
-                     0
-                     159
-                     1
-                     0
-                     0
-                     160
-                     1
-                     0
-                     0
-                     161
-                     1
-                     0
-                     0
-                     162
-                     1
-                     0
-                     0
-                     163
-                     1
-                     0
-                     0
-                     164
-                     1
-                     0
-                     0
-                     165
-                     1
-                     0
-                     0
-                     166
-                     1
-                     0
-                     0
-                     167
-                     1
-                     0
-                     0
-                     168
-                     1
-                     0
-                     0
-                     169
-                     1
-                     0
-                     0
-                     170
-                     1
-                     0
-                     0
-                     225
-                     0
-                     171
-                     1
-                     172
-                     1
-                     173
-                     1
-                     174
-                     1
-                     175
-                     1
-                     176
-                     1
-                     177
-                     1
-                     178
-                     1
-                     179
-                     1
-                     180
-                     1
-                     181
-                     1
-                     182
-                     1
-                     183
-                     1
-                     184
-                     1
-                     185
-                     1
-                     186
-                     1
-                     187
-                     1
-                     188
-                     1
-                     189
-                     1
-                     190
-                     1
-                     191
-                     1
-                     192
-                     1
-                     193
-                     1
-                     194
-                     1
-                     195
-                     1
-                     196
-                     1
-                     197
-                     1
-                     198
-                     1
-                     199
-                     1
-                     200
-                     1
-                     201
-                     1
-                     202
-                     1
-                     203
-                     1
-                     204
-                     1
-                     205
-                     1
-                     206
-                     1
-                     207
-                     1
-                     208
-                     1
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1302 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1303
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1303 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1304
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1304 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1305
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1305 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1306
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 225 225 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 225 225 225 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 225 225 0 0 225 225 0 0 0 0 225 225 225 225 225 225 225 225 0 225 225 225 225 0 0 225 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1306 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1307
-  (let ((offsets (bytevector 225 0 0 0 225 0 0 0 0 0 0 225 225 225 225 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 225 0 0 225 0 0 225 225 0 225 0 0 0 0 0 225 225 225 225 0 0 225 225 0 0 0 225 225 225 0 225 225 225 225 225 225 225 0 0 0 0 225 0 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 0 0 225 0 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 225 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 225 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 0 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1307 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1308
-  (let ((offsets (bytevector 225 0 0 0 225 0 0 0 0 0 0 0 0 225 225 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 225 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 225 225 0 0 225 225 0 0 0 225 225 225 225 225 225 225 225 0 0 225 225 225 225 0 0 225 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 0 0 225 0 0 0 0 0 0 225 225 225 0 0 0 225 0 0 0 0 225 225 225 0 0 225 0 225 0 0 225 225 225 0 0 225 225 225 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 225 225 225 0 0 0 225 0 0 0 0 225 225 0 225 225 225 225 225 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1308 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1309
-  (let ((offsets (bytevector 0 0 0 0 225 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 0 225 225 225 225 225 225 225 0 0 225 0 0 0 225 225 225 225 225 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 0 225 225 225 225 225 225 225 0 0 225 225 225 225 225 225 225 0 225 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 225 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1309 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1310
-  (let ((offsets (bytevector 225 0 0 0 225 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 225 0 225 225 0 0 0 0 0 0 0 225 225 225 0 225 225 225 225 0 0 0 0 0 0 225 0 225 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1310 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1311
-  (let ((offsets (bytevector 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 225 0 225 225 0 0 225 0 225 225 0 225 225 225 225 225 225 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 225 0 225 0 225 225 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 225 225 0 0 0 0 0 225 0 225 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1311 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1312
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1312 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1313
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     209
-                     1
-                     210
-                     1
-                     211
-                     1
-                     212
-                     1
-                     213
-                     1
-                     214
-                     1
-                     215
-                     1
-                     216
-                     1
-                     217
-                     1
-                     218
-                     1
-                     219
-                     1
-                     220
-                     1
-                     221
-                     1
-                     222
-                     1
-                     223
-                     1
-                     224
-                     1
-                     225
-                     1
-                     226
-                     1
-                     227
-                     1
-                     228
-                     1
-                     229
-                     1
-                     230
-                     1
-                     231
-                     1
-                     232
-                     1
-                     233
-                     1
-                     234
-                     1
-                     235
-                     1
-                     236
-                     1
-                     237
-                     1
-                     238
-                     1
-                     239
-                     1
-                     240
-                     1
-                     241
-                     1
-                     242
-                     1
-                     243
-                     1
-                     244
-                     1
-                     245
-                     1
-                     246
-                     1
-                     225
-                     0
-                     247
-                     1
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     248
-                     1
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1313 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1314
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 225 225 0 0 0 0 0 0 0 225 0 225 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 225 225 0 0 0 0 0 0 0 225 0 225 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1314 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1315
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     249
-                     1
-                     250
-                     1
-                     251
-                     1
-                     252
-                     1
-                     253
-                     1
-                     254
-                     1
-                     255
-                     1
-                     0
-                     2
-                     1
-                     2
-                     2
-                     2
-                     3
-                     2
-                     4
-                     2
-                     5
-                     2
-                     6
-                     2
-                     7
-                     2
-                     8
-                     2
-                     9
-                     2
-                     10
-                     2
-                     11
-                     2
-                     12
-                     2
-                     13
-                     2
-                     14
-                     2
-                     15
-                     2
-                     16
-                     2
-                     17
-                     2
-                     18
-                     2
-                     19
-                     2
-                     20
-                     2
-                     21
-                     2
-                     22
-                     2
-                     23
-                     2
-                     24
-                     2
-                     25
-                     2
-                     26
-                     2
-                     27
-                     2
-                     28
-                     2
-                     29
-                     2
-                     30
-                     2
-                     31
-                     2
-                     32
-                     2
-                     33
-                     2
-                     34
-                     2
-                     35
-                     2
-                     36
-                     2
-                     37
-                     2
-                     38
-                     2
-                     39
-                     2
-                     40
-                     2
-                     41
-                     2
-                     42
-                     2
-                     43
-                     2
-                     44
-                     2
-                     45
-                     2
-                     46
-                     2
-                     47
-                     2
-                     48
-                     2
-                     49
-                     2
-                     50
-                     2
-                     51
-                     2
-                     52
-                     2
-                     53
-                     2
-                     54
-                     2
-                     55
-                     2
-                     56
-                     2
-                     57
-                     2
-                     58
-                     2
-                     59
-                     2
-                     60
-                     2
-                     61
-                     2
-                     62
-                     2
-                     63
-                     2
-                     64
-                     2
-                     65
-                     2
-                     66
-                     2
-                     67
-                     2
-                     68
-                     2
-                     69
-                     2
-                     70
-                     2
-                     71
-                     2
-                     72
-                     2
-                     73
-                     2
-                     74
-                     2
-                     75
-                     2
-                     76
-                     2
-                     77
-                     2
-                     78
-                     2
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1315 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1316
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1316 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1317
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1317 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1318
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1318 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1319
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1319 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1320
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1320 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1321
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1321 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1322
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1322 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1323
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1323 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1324
-  (let ((offsets
-         (bytevector 79
-                     2
-                     0
-                     0
-                     80
-                     2
-                     0
-                     0
-                     81
-                     2
-                     0
-                     0
-                     82
-                     2
-                     0
-                     0
-                     83
-                     2
-                     0
-                     0
-                     84
-                     2
-                     0
-                     0
-                     85
-                     2
-                     0
-                     0
-                     86
-                     2
-                     0
-                     0
-                     87
-                     2
-                     0
-                     0
-                     88
-                     2
-                     0
-                     0
-                     89
-                     2
-                     0
-                     0
-                     90
-                     2
-                     0
-                     0
-                     91
-                     2
-                     0
-                     0
-                     92
-                     2
-                     0
-                     0
-                     93
-                     2
-                     0
-                     0
-                     94
-                     2
-                     0
-                     0
-                     95
-                     2
-                     0
-                     0
-                     96
-                     2
-                     0
-                     0
-                     97
-                     2
-                     0
-                     0
-                     98
-                     2
-                     0
-                     0
-                     99
-                     2
-                     0
-                     0
-                     100
-                     2
-                     0
-                     0
-                     101
-                     2
-                     0
-                     0
-                     102
-                     2
-                     0
-                     0
-                     103
-                     2
-                     0
-                     0
-                     104
-                     2
-                     0
-                     0
-                     105
-                     2
-                     0
-                     0
-                     106
-                     2
-                     0
-                     0
-                     107
-                     2
-                     0
-                     0
-                     108
-                     2
-                     0
-                     0
-                     109
-                     2
-                     0
-                     0
-                     110
-                     2
-                     0
-                     0
-                     111
-                     2
-                     0
-                     0
-                     112
-                     2
-                     0
-                     0
-                     113
-                     2
-                     0
-                     0
-                     114
-                     2
-                     0
-                     0
-                     115
-                     2
-                     0
-                     0
-                     116
-                     2
-                     0
-                     0
-                     117
-                     2
-                     0
-                     0
-                     118
-                     2
-                     0
-                     0
-                     119
-                     2
-                     0
-                     0
-                     120
-                     2
-                     0
-                     0
-                     121
-                     2
-                     0
-                     0
-                     122
-                     2
-                     0
-                     0
-                     123
-                     2
-                     0
-                     0
-                     124
-                     2
-                     0
-                     0
-                     125
-                     2
-                     0
-                     0
-                     126
-                     2
-                     0
-                     0
-                     127
-                     2
-                     0
-                     0
-                     128
-                     2
-                     0
-                     0
-                     129
-                     2
-                     0
-                     0
-                     130
-                     2
-                     0
-                     0
-                     131
-                     2
-                     0
-                     0
-                     132
-                     2
-                     0
-                     0
-                     133
-                     2
-                     0
-                     0
-                     134
-                     2
-                     0
-                     0
-                     135
-                     2
-                     0
-                     0
-                     136
-                     2
-                     0
-                     0
-                     137
-                     2
-                     0
-                     0
-                     138
-                     2
-                     0
-                     0
-                     139
-                     2
-                     0
-                     0
-                     140
-                     2
-                     0
-                     0
-                     141
-                     2
-                     0
-                     0
-                     142
-                     2
-                     0
-                     0
-                     143
-                     2
-                     0
-                     0
-                     144
-                     2
-                     0
-                     0
-                     145
-                     2
-                     0
-                     0
-                     146
-                     2
-                     0
-                     0
-                     147
-                     2
-                     0
-                     0
-                     148
-                     2
-                     0
-                     0
-                     149
-                     2
-                     0
-                     0
-                     150
-                     2
-                     0
-                     0
-                     151
-                     2
-                     0
-                     0
-                     152
-                     2
-                     0
-                     0
-                     153
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     154
-                     2
-                     0
-                     0
-                     155
-                     2
-                     0
-                     0
-                     156
-                     2
-                     0
-                     0
-                     157
-                     2
-                     0
-                     0
-                     158
-                     2
-                     0
-                     0
-                     159
-                     2
-                     0
-                     0
-                     160
-                     2
-                     0
-                     0
-                     161
-                     2
-                     0
-                     0
-                     162
-                     2
-                     0
-                     0
-                     163
-                     2
-                     0
-                     0
-                     164
-                     2
-                     0
-                     0
-                     165
-                     2
-                     0
-                     0
-                     166
-                     2
-                     0
-                     0
-                     167
-                     2
-                     0
-                     0
-                     168
-                     2
-                     0
-                     0
-                     169
-                     2
-                     0
-                     0
-                     170
-                     2
-                     0
-                     0
-                     171
-                     2
-                     0
-                     0
-                     172
-                     2
-                     0
-                     0
-                     173
-                     2
-                     0
-                     0
-                     174
-                     2
-                     0
-                     0
-                     175
-                     2
-                     0
-                     0
-                     176
-                     2
-                     0
-                     0
-                     177
-                     2
-                     0
-                     0
-                     178
-                     2
-                     0
-                     0
-                     179
-                     2
-                     0
-                     0
-                     180
-                     2
-                     0
-                     0
-                     181
-                     2
-                     0
-                     0
-                     182
-                     2
-                     0
-                     0
-                     183
-                     2
-                     0
-                     0
-                     184
-                     2
-                     0
-                     0
-                     185
-                     2
-                     0
-                     0
-                     186
-                     2
-                     0
-                     0
-                     187
-                     2
-                     0
-                     0
-                     188
-                     2
-                     0
-                     0
-                     189
-                     2
-                     0
-                     0
-                     190
-                     2
-                     0
-                     0
-                     191
-                     2
-                     0
-                     0
-                     192
-                     2
-                     0
-                     0
-                     193
-                     2
-                     0
-                     0
-                     194
-                     2
-                     0
-                     0
-                     195
-                     2
-                     0
-                     0
-                     196
-                     2
-                     0
-                     0
-                     197
-                     2
-                     0
-                     0
-                     198
-                     2
-                     0
-                     0
-                     199
-                     2
-                     0
-                     0
-                     200
-                     2
-                     0
-                     0
-                     201
-                     2
-                     0
-                     0
-                     202
-                     2
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1324 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1325
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     203
-                     2
-                     204
-                     2
-                     205
-                     2
-                     206
-                     2
-                     207
-                     2
-                     208
-                     2
-                     209
-                     2
-                     210
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     211
-                     2
-                     212
-                     2
-                     213
-                     2
-                     214
-                     2
-                     215
-                     2
-                     216
-                     2
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     217
-                     2
-                     218
-                     2
-                     219
-                     2
-                     220
-                     2
-                     221
-                     2
-                     222
-                     2
-                     223
-                     2
-                     224
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     2
-                     226
-                     2
-                     227
-                     2
-                     228
-                     2
-                     229
-                     2
-                     230
-                     2
-                     231
-                     2
-                     232
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     233
-                     2
-                     234
-                     2
-                     235
-                     2
-                     236
-                     2
-                     237
-                     2
-                     238
-                     2
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     239
-                     2
-                     225
-                     0
-                     240
-                     2
-                     225
-                     0
-                     241
-                     2
-                     225
-                     0
-                     242
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     243
-                     2
-                     244
-                     2
-                     245
-                     2
-                     246
-                     2
-                     247
-                     2
-                     248
-                     2
-                     249
-                     2
-                     250
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     251
-                     2
-                     252
-                     2
-                     253
-                     2
-                     254
-                     2
-                     255
-                     2
-                     0
-                     3
-                     1
-                     3
-                     2
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     3
-                     3
-                     4
-                     3
-                     5
-                     3
-                     6
-                     3
-                     7
-                     3
-                     8
-                     3
-                     9
-                     3
-                     10
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     11
-                     3
-                     12
-                     3
-                     13
-                     3
-                     14
-                     3
-                     15
-                     3
-                     16
-                     3
-                     17
-                     3
-                     18
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     19
-                     3
-                     20
-                     3
-                     21
-                     3
-                     22
-                     3
-                     23
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     24
-                     3
-                     25
-                     3
-                     26
-                     3
-                     27
-                     3
-                     28
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     29
-                     3
-                     30
-                     3
-                     31
-                     3
-                     32
-                     3
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     33
-                     3
-                     34
-                     3
-                     35
-                     3
-                     36
-                     3
-                     37
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     38
-                     3
-                     39
-                     3
-                     40
-                     3
-                     41
-                     3
-                     42
-                     3
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1325 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1326
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1326 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1327
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     1
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     11
-                     0
-                     32
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     43
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     44
-                     3
-                     45
-                     3
-                     46
-                     3
-                     47
-                     3
-                     48
-                     3
-                     49
-                     3
-                     50
-                     3
-                     51
-                     3
-                     52
-                     3
-                     53
-                     3
-                     54
-                     3
-                     55
-                     3
-                     56
-                     3
-                     57
-                     3
-                     58
-                     3
-                     59
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     60
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1327 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1328
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225)))
-    (named-lambda (ucd-slc-entry-1328 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1329
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     61
-                     3
-                     62
-                     3
-                     63
-                     3
-                     64
-                     3
-                     65
-                     3
-                     66
-                     3
-                     67
-                     3
-                     68
-                     3
-                     69
-                     3
-                     70
-                     3
-                     71
-                     3
-                     72
-                     3
-                     73
-                     3
-                     74
-                     3
-                     75
-                     3
-                     76
-                     3
-                     77
-                     3
-                     78
-                     3
-                     79
-                     3
-                     80
-                     3
-                     81
-                     3
-                     82
-                     3
-                     83
-                     3
-                     84
-                     3
-                     85
-                     3
-                     86
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1329 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1330
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1330 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1331
-  (let ((offsets
-         (bytevector 87
-                     3
-                     88
-                     3
-                     89
-                     3
-                     90
-                     3
-                     91
-                     3
-                     92
-                     3
-                     93
-                     3
-                     94
-                     3
-                     95
-                     3
-                     96
-                     3
-                     97
-                     3
-                     98
-                     3
-                     99
-                     3
-                     100
-                     3
-                     101
-                     3
-                     102
-                     3
-                     103
-                     3
-                     104
-                     3
-                     105
-                     3
-                     106
-                     3
-                     107
-                     3
-                     108
-                     3
-                     109
-                     3
-                     110
-                     3
-                     111
-                     3
-                     112
-                     3
-                     113
-                     3
-                     114
-                     3
-                     115
-                     3
-                     116
-                     3
-                     117
-                     3
-                     118
-                     3
-                     119
-                     3
-                     120
-                     3
-                     121
-                     3
-                     122
-                     3
-                     123
-                     3
-                     124
-                     3
-                     125
-                     3
-                     126
-                     3
-                     127
-                     3
-                     128
-                     3
-                     129
-                     3
-                     130
-                     3
-                     131
-                     3
-                     132
-                     3
-                     133
-                     3
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     134
-                     3
-                     0
-                     0
-                     135
-                     3
-                     136
-                     3
-                     137
-                     3
-                     0
-                     0
-                     0
-                     0
-                     138
-                     3
-                     0
-                     0
-                     139
-                     3
-                     0
-                     0
-                     140
-                     3
-                     0
-                     0
-                     141
-                     3
-                     142
-                     3
-                     143
-                     3
-                     144
-                     3
-                     0
-                     0
-                     145
-                     3
-                     0
-                     0
-                     0
-                     0
-                     146
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     147
-                     3
-                     148
-                     3
-                     149
-                     3
-                     0
-                     0
-                     150
-                     3
-                     0
-                     0
-                     151
-                     3
-                     0
-                     0
-                     152
-                     3
-                     0
-                     0
-                     153
-                     3
-                     0
-                     0
-                     154
-                     3
-                     0
-                     0
-                     155
-                     3
-                     0
-                     0
-                     156
-                     3
-                     0
-                     0
-                     157
-                     3
-                     0
-                     0
-                     158
-                     3
-                     0
-                     0
-                     159
-                     3
-                     0
-                     0
-                     160
-                     3
-                     0
-                     0
-                     161
-                     3
-                     0
-                     0
-                     162
-                     3
-                     0
-                     0
-                     163
-                     3
-                     0
-                     0
-                     164
-                     3
-                     0
-                     0
-                     165
-                     3
-                     0
-                     0
-                     166
-                     3
-                     0
-                     0
-                     167
-                     3
-                     0
-                     0
-                     168
-                     3
-                     0
-                     0
-                     169
-                     3
-                     0
-                     0
-                     170
-                     3
-                     0
-                     0
-                     171
-                     3
-                     0
-                     0
-                     172
-                     3
-                     0
-                     0
-                     173
-                     3
-                     0
-                     0
-                     174
-                     3
-                     0
-                     0
-                     175
-                     3
-                     0
-                     0
-                     176
-                     3
-                     0
-                     0
-                     177
-                     3
-                     0
-                     0
-                     178
-                     3
-                     0
-                     0
-                     179
-                     3
-                     0
-                     0
-                     180
-                     3
-                     0
-                     0
-                     181
-                     3
-                     0
-                     0
-                     182
-                     3
-                     0
-                     0
-                     183
-                     3
-                     0
-                     0
-                     184
-                     3
-                     0
-                     0
-                     185
-                     3
-                     0
-                     0
-                     186
-                     3
-                     0
-                     0
-                     187
-                     3
-                     0
-                     0
-                     188
-                     3
-                     0
-                     0
-                     189
-                     3
-                     0
-                     0
-                     190
-                     3
-                     0
-                     0
-                     191
-                     3
-                     0
-                     0
-                     192
-                     3
-                     0
-                     0
-                     193
-                     3
-                     0
-                     0
-                     194
-                     3
-                     0
-                     0
-                     195
-                     3
-                     0
-                     0
-                     196
-                     3
-                     0
-                     0
-                     197
-                     3
-                     0
-                     0
-                     198
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     199
-                     3
-                     0
-                     0
-                     200
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     201
-                     3
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1331 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1332
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 225 225 225 225 225 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1332 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1333
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1333 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1334
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1334 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1335
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1335 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1336
-  (let ((offsets (bytevector 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1336 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1337
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225)))
-    (named-lambda (ucd-slc-entry-1337 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1338
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1338 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1339
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1339 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1340
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1340 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1341
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     202
-                     3
-                     0
-                     0
-                     203
-                     3
-                     0
-                     0
-                     204
-                     3
-                     0
-                     0
-                     205
-                     3
-                     0
-                     0
-                     206
-                     3
-                     0
-                     0
-                     207
-                     3
-                     0
-                     0
-                     208
-                     3
-                     0
-                     0
-                     209
-                     3
-                     0
-                     0
-                     210
-                     3
-                     0
-                     0
-                     211
-                     3
-                     0
-                     0
-                     212
-                     3
-                     0
-                     0
-                     213
-                     3
-                     0
-                     0
-                     214
-                     3
-                     0
-                     0
-                     215
-                     3
-                     0
-                     0
-                     216
-                     3
-                     0
-                     0
-                     217
-                     3
-                     0
-                     0
-                     218
-                     3
-                     0
-                     0
-                     219
-                     3
-                     0
-                     0
-                     220
-                     3
-                     0
-                     0
-                     221
-                     3
-                     0
-                     0
-                     222
-                     3
-                     0
-                     0
-                     223
-                     3
-                     0
-                     0
-                     224
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     3
-                     0
-                     0
-                     226
-                     3
-                     0
-                     0
-                     227
-                     3
-                     0
-                     0
-                     228
-                     3
-                     0
-                     0
-                     229
-                     3
-                     0
-                     0
-                     230
-                     3
-                     0
-                     0
-                     231
-                     3
-                     0
-                     0
-                     232
-                     3
-                     0
-                     0
-                     233
-                     3
-                     0
-                     0
-                     234
-                     3
-                     0
-                     0
-                     235
-                     3
-                     0
-                     0
-                     236
-                     3
-                     0
-                     0
-                     237
-                     3
-                     0
-                     0
-                     238
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1341 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1342
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     239
-                     3
-                     0
-                     0
-                     240
-                     3
-                     0
-                     0
-                     241
-                     3
-                     0
-                     0
-                     242
-                     3
-                     0
-                     0
-                     243
-                     3
-                     0
-                     0
-                     244
-                     3
-                     0
-                     0
-                     245
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     246
-                     3
-                     0
-                     0
-                     247
-                     3
-                     0
-                     0
-                     248
-                     3
-                     0
-                     0
-                     249
-                     3
-                     0
-                     0
-                     250
-                     3
-                     0
-                     0
-                     251
-                     3
-                     0
-                     0
-                     252
-                     3
-                     0
-                     0
-                     253
-                     3
-                     0
-                     0
-                     254
-                     3
-                     0
-                     0
-                     255
-                     3
-                     0
-                     0
-                     0
-                     4
-                     0
-                     0
-                     1
-                     4
-                     0
-                     0
-                     2
-                     4
-                     0
-                     0
-                     3
-                     4
-                     0
-                     0
-                     4
-                     4
-                     0
-                     0
-                     5
-                     4
-                     0
-                     0
-                     6
-                     4
-                     0
-                     0
-                     7
-                     4
-                     0
-                     0
-                     8
-                     4
-                     0
-                     0
-                     9
-                     4
-                     0
-                     0
-                     10
-                     4
-                     0
-                     0
-                     11
-                     4
-                     0
-                     0
-                     12
-                     4
-                     0
-                     0
-                     13
-                     4
-                     0
-                     0
-                     14
-                     4
-                     0
-                     0
-                     15
-                     4
-                     0
-                     0
-                     16
-                     4
-                     0
-                     0
-                     17
-                     4
-                     0
-                     0
-                     18
-                     4
-                     0
-                     0
-                     19
-                     4
-                     0
-                     0
-                     20
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     21
-                     4
-                     0
-                     0
-                     22
-                     4
-                     0
-                     0
-                     23
-                     4
-                     24
-                     4
-                     0
-                     0
-                     25
-                     4
-                     0
-                     0
-                     26
-                     4
-                     0
-                     0
-                     27
-                     4
-                     0
-                     0
-                     28
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     29
-                     4
-                     0
-                     0
-                     30
-                     4
-                     0
-                     0
-                     0
-                     0
-                     31
-                     4
-                     0
-                     0
-                     32
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     33
-                     4
-                     0
-                     0
-                     34
-                     4
-                     0
-                     0
-                     35
-                     4
-                     0
-                     0
-                     36
-                     4
-                     0
-                     0
-                     37
-                     4
-                     0
-                     0
-                     38
-                     4
-                     0
-                     0
-                     39
-                     4
-                     0
-                     0
-                     40
-                     4
-                     0
-                     0
-                     41
-                     4
-                     0
-                     0
-                     42
-                     4
-                     0
-                     0
-                     43
-                     4
-                     44
-                     4
-                     45
-                     4
-                     46
-                     4
-                     47
-                     4
-                     225
-                     0
-                     48
-                     4
-                     49
-                     4
-                     50
-                     4
-                     51
-                     4
-                     52
-                     4
-                     0
-                     0
-                     53
-                     4
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1342 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1343
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225)))
-    (named-lambda (ucd-slc-entry-1343 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1344
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225)))
-    (named-lambda (ucd-slc-entry-1344 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1345
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1345 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1346
-  (let ((offsets (bytevector 225 0 0 0 0 0 0 225 225 0 0 0 0 0 0 225 225 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1346 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1347
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1347 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1348
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1348 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1349
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 225 0 225 0 0 225 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1349 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1350
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225)))
-    (named-lambda (ucd-slc-entry-1350 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1351
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 225 225 225 225 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0)))
-    (named-lambda (ucd-slc-entry-1351 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1352
-  (let ((offsets
-         (bytevector 225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     54
-                     4
-                     55
-                     4
-                     56
-                     4
-                     57
-                     4
-                     58
-                     4
-                     59
-                     4
-                     60
-                     4
-                     61
-                     4
-                     62
-                     4
-                     63
-                     4
-                     64
-                     4
-                     65
-                     4
-                     66
-                     4
-                     67
-                     4
-                     68
-                     4
-                     69
-                     4
-                     70
-                     4
-                     71
-                     4
-                     72
-                     4
-                     73
-                     4
-                     74
-                     4
-                     75
-                     4
-                     76
-                     4
-                     77
-                     4
-                     78
-                     4
-                     79
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1352 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1353
-  (let ((offsets
-         (bytevector 17
-                     5
-                     18
-                     5
-                     19
-                     5
-                     20
-                     5
-                     21
-                     5
-                     22
-                     5
-                     23
-                     5
-                     24
-                     5
-                     25
-                     5
-                     26
-                     5
-                     27
-                     5
-                     28
-                     5
-                     29
-                     5
-                     30
-                     5
-                     31
-                     5
-                     32
-                     5
-                     33
-                     5
-                     0
-                     0
-                     34
-                     5
-                     35
-                     5
-                     0
-                     0
-                     0
-                     0
-                     36
-                     5
-                     37
-                     5
-                     38
-                     5
-                     39
-                     5
-                     40
-                     5
-                     41
-                     5
-                     42
-                     5
-                     43
-                     5
-                     44
-                     5
-                     45
-                     5
-                     46
-                     5
-                     47
-                     5
-                     0
-                     0
-                     48
-                     5
-                     49
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     50
-                     5
-                     51
-                     5
-                     52
-                     5
-                     53
-                     5
-                     54
-                     5
-                     55
-                     5
-                     56
-                     5
-                     57
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     58
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     59
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     60
-                     5
-                     0
-                     0
-                     61
-                     5
-                     62
-                     5
-                     63
-                     5
-                     64
-                     5
-                     65
-                     5
-                     66
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     67
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     68
-                     5
-                     69
-                     5
-                     0
-                     0
-                     70
-                     5
-                     71
-                     5
-                     72
-                     5)))
-    (named-lambda (ucd-slc-entry-1353 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1354
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1354 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1355
-  (let ((offsets (bytevector 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225)))
-    (named-lambda (ucd-slc-entry-1355 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1356
-  (let ((offsets (bytevector 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1356 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1357
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1357 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1358
-  (let ((offsets
-         (bytevector 80
-                     4
-                     81
-                     4
-                     82
-                     4
-                     83
-                     4
-                     84
-                     4
-                     85
-                     4
-                     86
-                     4
-                     87
-                     4
-                     88
-                     4
-                     89
-                     4
-                     90
-                     4
-                     91
-                     4
-                     92
-                     4
-                     93
-                     4
-                     94
-                     4
-                     95
-                     4
-                     96
-                     4
-                     97
-                     4
-                     98
-                     4
-                     99
-                     4
-                     100
-                     4
-                     101
-                     4
-                     102
-                     4
-                     103
-                     4
-                     104
-                     4
-                     105
-                     4
-                     106
-                     4
-                     107
-                     4
-                     108
-                     4
-                     109
-                     4
-                     110
-                     4
-                     111
-                     4
-                     112
-                     4
-                     113
-                     4
-                     114
-                     4
-                     115
-                     4
-                     116
-                     4
-                     117
-                     4
-                     118
-                     4
-                     119
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     120
-                     4
-                     121
-                     4
-                     122
-                     4
-                     123
-                     4
-                     124
-                     4
-                     125
-                     4
-                     126
-                     4
-                     127
-                     4
-                     128
-                     4
-                     129
-                     4
-                     130
-                     4
-                     131
-                     4
-                     132
-                     4
-                     133
-                     4
-                     134
-                     4
-                     135
-                     4
-                     136
-                     4
-                     137
-                     4
-                     138
-                     4
-                     139
-                     4
-                     140
-                     4
-                     141
-                     4
-                     142
-                     4
-                     143
-                     4
-                     144
-                     4
-                     145
-                     4
-                     146
-                     4
-                     147
-                     4
-                     148
-                     4
-                     149
-                     4
-                     150
-                     4
-                     151
-                     4
-                     152
-                     4
-                     153
-                     4
-                     154
-                     4
-                     155
-                     4
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1358 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1359
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1359 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1360
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1360 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1361
-  (let ((offsets (bytevector 0 0 0 0 0 0 225 225 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 225 225 225 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 225 225 225 225 225 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1361 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1362
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1362 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1363
-  (let ((offsets (bytevector 0 0 0 0 225 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 225 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1363 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1364
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1364 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1365
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     156
-                     4
-                     157
-                     4
-                     158
-                     4
-                     159
-                     4
-                     160
-                     4
-                     161
-                     4
-                     162
-                     4
-                     163
-                     4
-                     164
-                     4
-                     165
-                     4
-                     166
-                     4
-                     167
-                     4
-                     168
-                     4
-                     169
-                     4
-                     170
-                     4
-                     171
-                     4
-                     172
-                     4
-                     173
-                     4
-                     174
-                     4
-                     175
-                     4
-                     176
-                     4
-                     177
-                     4
-                     178
-                     4
-                     179
-                     4
-                     180
-                     4
-                     181
-                     4
-                     182
-                     4
-                     183
-                     4
-                     184
-                     4
-                     185
-                     4
-                     186
-                     4
-                     187
-                     4
-                     188
-                     4
-                     189
-                     4
-                     190
-                     4
-                     191
-                     4
-                     192
-                     4
-                     193
-                     4
-                     194
-                     4
-                     195
-                     4
-                     196
-                     4
-                     197
-                     4
-                     198
-                     4
-                     199
-                     4
-                     200
-                     4
-                     201
-                     4
-                     202
-                     4
-                     203
-                     4
-                     204
-                     4
-                     205
-                     4
-                     206
-                     4
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1365 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1366
-  (let ((offsets (bytevector 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1366 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1367
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1367 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1368
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1368 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1369
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 225 0 225 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1369 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1370
-  (let ((offsets (bytevector 0 0 0 0 225 0 0 0 0 0 0 0 0 225 225 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 225 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 225 225 0 0 225 225 0 0 0 225 225 0 225 225 225 225 225 225 0 225 225 225 225 225 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1370 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1371
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1371 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1372
-  (let ((offsets (bytevector 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1372 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1373
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1373 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1374
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1374 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1375
-  (let ((offsets
-         (bytevector 225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     207
-                     4
-                     208
-                     4
-                     209
-                     4
-                     210
-                     4
-                     211
-                     4
-                     212
-                     4
-                     213
-                     4
-                     214
-                     4
-                     215
-                     4
-                     216
-                     4
-                     217
-                     4
-                     218
-                     4
-                     219
-                     4
-                     220
-                     4
-                     221
-                     4
-                     222
-                     4
-                     223
-                     4
-                     224
-                     4
-                     225
-                     4
-                     226
-                     4
-                     227
-                     4
-                     228
-                     4
-                     229
-                     4
-                     230
-                     4
-                     231
-                     4
-                     232
-                     4
-                     233
-                     4
-                     234
-                     4
-                     235
-                     4
-                     236
-                     4
-                     237
-                     4
-                     238
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-slc-entry-1375 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1376
-  (let ((offsets (bytevector 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1376 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1377
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1377 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1378
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1378 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1379
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1379 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1380
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1380 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1381
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1381 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1382
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1382 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1383
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1383 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1384
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1384 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1385
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1385 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1386
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1386 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1387
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1387 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1388
-  (let ((offsets
-         (bytevector 0
-                     0
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225
-                     225)))
-    (named-lambda (ucd-slc-entry-1388 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1389
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1389 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1390
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1390 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1391
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1391 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1392
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1392 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1393
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1393 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1394
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 225 225 0 225 225 0 0 225 225 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 225 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1394 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1395
-  (let ((offsets (bytevector 0 0 0 0 0 0 225 0 0 0 0 225 225 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 225 0 0 0 0 0 225 0 225 225 225 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1395 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1396
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1396 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1397
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1397 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1398
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1398 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1399
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 225 0 0 225 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1399 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1400
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1400 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1401
-  (let ((offsets
-         (bytevector 239
-                     4
-                     240
-                     4
-                     241
-                     4
-                     242
-                     4
-                     243
-                     4
-                     244
-                     4
-                     245
-                     4
-                     246
-                     4
-                     247
-                     4
-                     248
-                     4
-                     249
-                     4
-                     250
-                     4
-                     251
-                     4
-                     252
-                     4
-                     253
-                     4
-                     254
-                     4
-                     255
-                     4
-                     0
-                     5
-                     1
-                     5
-                     2
-                     5
-                     3
-                     5
-                     4
-                     5
-                     5
-                     5
-                     6
-                     5
-                     7
-                     5
-                     8
-                     5
-                     9
-                     5
-                     10
-                     5
-                     11
-                     5
-                     12
-                     5
-                     13
-                     5
-                     14
-                     5
-                     15
-                     5
-                     16
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1401 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1402
-  (let ((offsets (bytevector 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 225 0 225 225 0 225 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 225 0 225 0 225 225 225 225 225 225 0 225 225 225 225 0 225 0 225 0 225 0 0 0 225 0 0 225 0 225 225 0 225 0 225 0 225 0 225 0 225 0 0 225 0 225 225 0 0 0 0 225 0 0 0 0 0 0 0 225 0 0 0 0 225 0 0 0 0 225 0 225 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 0 0 0 225 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1402 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1403
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1403 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1404
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1404 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1405
-  (let ((offsets (bytevector 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1405 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1406
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1406 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1407
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1407 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1408
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1408 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1409
-  (let ((offsets (bytevector 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1409 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1410
-  (let ((offsets
-         (bytevector 74
-                     5
-                     75
-                     5
-                     76
-                     5
-                     77
-                     5
-                     78
-                     5
-                     79
-                     5
-                     0
-                     0
-                     80
-                     5
-                     81
-                     5
-                     82
-                     5
-                     83
-                     5
-                     84
-                     5
-                     85
-                     5
-                     225
-                     0
-                     86
-                     5
-                     225
-                     0
-                     87
-                     5
-                     88
-                     5
-                     89
-                     5
-                     90
-                     5
-                     91
-                     5
-                     92
-                     5
-                     93
-                     5
-                     94
-                     5
-                     95
-                     5
-                     225
-                     0
-                     96
-                     5
-                     225
-                     0
-                     97
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     98
-                     5
-                     99
-                     5
-                     100
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     101
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     102
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     103
-                     5
-                     104
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     105
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     106
-                     5
-                     0
-                     0
-                     0
-                     0
-                     107
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     108
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     109
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     110
-                     5
-                     111
-                     5
-                     112
-                     5
-                     113
-                     5
-                     114
-                     5
-                     115
-                     5
-                     116
-                     5
-                     117
-                     5
-                     0
-                     0
-                     0
-                     0
-                     118
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     119
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     120
-                     5
-                     121
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     122
-                     5
-                     225
-                     0
-                     123
-                     5
-                     124
-                     5
-                     125
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     126
-                     5
-                     127
-                     5
-                     128
-                     5
-                     129
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1410 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1411
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1411 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1412
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1412 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1413
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-slc-entry-1413 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1414
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1414 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1415
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1415 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1416
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     131
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     132
-                     5
-                     133
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     134
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     0
-                     0
-                     0
-                     0
-                     135
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1416 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1417
-  (let ((offsets (bytevector 225 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1417 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1418
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225 225)))
-    (named-lambda (ucd-slc-entry-1418 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1419
-  (let ((offsets
-         (bytevector 137
-                     5
-                     138
-                     5
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0
-                     225
-                     0)))
-    (named-lambda (ucd-slc-entry-1419 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1420
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225 225)))
-    (named-lambda (ucd-slc-entry-1420 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-slc-entry-1421
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     140
-                     5)))
-    (named-lambda (ucd-slc-entry-1421 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-(define ucd-slc-entries)
-
-(add-boot-init! (lambda () (set! ucd-slc-entries (make-vector 1422)) (initialize-ucd-slc-entries-0) (initialize-ucd-slc-entries-1) (initialize-ucd-slc-entries-2) (initialize-ucd-slc-entries-3) (initialize-ucd-slc-entries-4) (initialize-ucd-slc-entries-5) (initialize-ucd-slc-entries-6) (initialize-ucd-slc-entries-7) (initialize-ucd-slc-entries-8) (initialize-ucd-slc-entries-9) (initialize-ucd-slc-entries-10) (initialize-ucd-slc-entries-11) (initialize-ucd-slc-entries-12) (initialize-ucd-slc-entries-13) (initialize-ucd-slc-entries-14)))
-
-(define (initialize-ucd-slc-entries-0)
-  (vector-set! ucd-slc-entries 0 ucd-slc-entry-0)
-  (vector-set! ucd-slc-entries 1 ucd-slc-entry-1)
-  (vector-set! ucd-slc-entries 2 ucd-slc-entry-2)
-  (vector-set! ucd-slc-entries 3 ucd-slc-entry-3)
-  (vector-set! ucd-slc-entries 4 ucd-slc-entry-4)
-  (vector-set! ucd-slc-entries 5 ucd-slc-entry-5)
-  (vector-set! ucd-slc-entries 6 ucd-slc-entry-6)
-  (vector-set! ucd-slc-entries 7 ucd-slc-entry-7)
-  (vector-set! ucd-slc-entries 8 ucd-slc-entry-8)
-  (vector-set! ucd-slc-entries 9 ucd-slc-entry-9)
-  (vector-set! ucd-slc-entries 10 ucd-slc-entry-10)
-  (vector-set! ucd-slc-entries 11 ucd-slc-entry-11)
-  (vector-set! ucd-slc-entries 12 ucd-slc-entry-12)
-  (vector-set! ucd-slc-entries 13 ucd-slc-entry-13)
-  (vector-set! ucd-slc-entries 14 ucd-slc-entry-14)
-  (vector-set! ucd-slc-entries 15 ucd-slc-entry-15)
-  (vector-set! ucd-slc-entries 16 ucd-slc-entry-16)
-  (vector-set! ucd-slc-entries 17 ucd-slc-entry-17)
-  (vector-set! ucd-slc-entries 18 ucd-slc-entry-18)
-  (vector-set! ucd-slc-entries 19 ucd-slc-entry-19)
-  (vector-set! ucd-slc-entries 20 ucd-slc-entry-20)
-  (vector-set! ucd-slc-entries 21 ucd-slc-entry-21)
-  (vector-set! ucd-slc-entries 22 ucd-slc-entry-22)
-  (vector-set! ucd-slc-entries 23 ucd-slc-entry-23)
-  (vector-set! ucd-slc-entries 24 ucd-slc-entry-24)
-  (vector-set! ucd-slc-entries 25 ucd-slc-entry-25)
-  (vector-set! ucd-slc-entries 26 ucd-slc-entry-26)
-  (vector-set! ucd-slc-entries 27 ucd-slc-entry-27)
-  (vector-set! ucd-slc-entries 28 ucd-slc-entry-28)
-  (vector-set! ucd-slc-entries 29 ucd-slc-entry-29)
-  (vector-set! ucd-slc-entries 30 ucd-slc-entry-30)
-  (vector-set! ucd-slc-entries 31 ucd-slc-entry-31)
-  (vector-set! ucd-slc-entries 32 ucd-slc-entry-32)
-  (vector-set! ucd-slc-entries 33 ucd-slc-entry-33)
-  (vector-set! ucd-slc-entries 34 ucd-slc-entry-34)
-  (vector-set! ucd-slc-entries 35 ucd-slc-entry-35)
-  (vector-set! ucd-slc-entries 36 ucd-slc-entry-36)
-  (vector-set! ucd-slc-entries 37 ucd-slc-entry-37)
-  (vector-set! ucd-slc-entries 38 ucd-slc-entry-38)
-  (vector-set! ucd-slc-entries 39 ucd-slc-entry-39)
-  (vector-set! ucd-slc-entries 40 ucd-slc-entry-40)
-  (vector-set! ucd-slc-entries 41 ucd-slc-entry-41)
-  (vector-set! ucd-slc-entries 42 ucd-slc-entry-42)
-  (vector-set! ucd-slc-entries 43 ucd-slc-entry-43)
-  (vector-set! ucd-slc-entries 44 ucd-slc-entry-44)
-  (vector-set! ucd-slc-entries 45 ucd-slc-entry-45)
-  (vector-set! ucd-slc-entries 46 ucd-slc-entry-46)
-  (vector-set! ucd-slc-entries 47 ucd-slc-entry-47)
-  (vector-set! ucd-slc-entries 48 ucd-slc-entry-48)
-  (vector-set! ucd-slc-entries 49 ucd-slc-entry-49)
-  (vector-set! ucd-slc-entries 50 ucd-slc-entry-50)
-  (vector-set! ucd-slc-entries 51 ucd-slc-entry-51)
-  (vector-set! ucd-slc-entries 52 ucd-slc-entry-52)
-  (vector-set! ucd-slc-entries 53 ucd-slc-entry-53)
-  (vector-set! ucd-slc-entries 54 ucd-slc-entry-54)
-  (vector-set! ucd-slc-entries 55 ucd-slc-entry-55)
-  (vector-set! ucd-slc-entries 56 ucd-slc-entry-56)
-  (vector-set! ucd-slc-entries 57 ucd-slc-entry-57)
-  (vector-set! ucd-slc-entries 58 ucd-slc-entry-58)
-  (vector-set! ucd-slc-entries 59 ucd-slc-entry-59)
-  (vector-set! ucd-slc-entries 60 ucd-slc-entry-60)
-  (vector-set! ucd-slc-entries 61 ucd-slc-entry-61)
-  (vector-set! ucd-slc-entries 62 ucd-slc-entry-62)
-  (vector-set! ucd-slc-entries 63 ucd-slc-entry-63)
-  (vector-set! ucd-slc-entries 64 ucd-slc-entry-64)
-  (vector-set! ucd-slc-entries 65 ucd-slc-entry-65)
-  (vector-set! ucd-slc-entries 66 ucd-slc-entry-66)
-  (vector-set! ucd-slc-entries 67 ucd-slc-entry-67)
-  (vector-set! ucd-slc-entries 68 ucd-slc-entry-68)
-  (vector-set! ucd-slc-entries 69 ucd-slc-entry-69)
-  (vector-set! ucd-slc-entries 70 ucd-slc-entry-70)
-  (vector-set! ucd-slc-entries 71 ucd-slc-entry-71)
-  (vector-set! ucd-slc-entries 72 ucd-slc-entry-72)
-  (vector-set! ucd-slc-entries 73 ucd-slc-entry-73)
-  (vector-set! ucd-slc-entries 74 ucd-slc-entry-74)
-  (vector-set! ucd-slc-entries 75 ucd-slc-entry-75)
-  (vector-set! ucd-slc-entries 76 ucd-slc-entry-76)
-  (vector-set! ucd-slc-entries 77 ucd-slc-entry-77)
-  (vector-set! ucd-slc-entries 78 ucd-slc-entry-78)
-  (vector-set! ucd-slc-entries 79 ucd-slc-entry-79)
-  (vector-set! ucd-slc-entries 80 ucd-slc-entry-80)
-  (vector-set! ucd-slc-entries 81 ucd-slc-entry-81)
-  (vector-set! ucd-slc-entries 82 ucd-slc-entry-82)
-  (vector-set! ucd-slc-entries 83 ucd-slc-entry-83)
-  (vector-set! ucd-slc-entries 84 ucd-slc-entry-84)
-  (vector-set! ucd-slc-entries 85 ucd-slc-entry-85)
-  (vector-set! ucd-slc-entries 86 ucd-slc-entry-86)
-  (vector-set! ucd-slc-entries 87 ucd-slc-entry-87)
-  (vector-set! ucd-slc-entries 88 ucd-slc-entry-88)
-  (vector-set! ucd-slc-entries 89 ucd-slc-entry-89)
-  (vector-set! ucd-slc-entries 90 ucd-slc-entry-90)
-  (vector-set! ucd-slc-entries 91 ucd-slc-entry-91)
-  (vector-set! ucd-slc-entries 92 ucd-slc-entry-92)
-  (vector-set! ucd-slc-entries 93 ucd-slc-entry-93)
-  (vector-set! ucd-slc-entries 94 ucd-slc-entry-94)
-  (vector-set! ucd-slc-entries 95 ucd-slc-entry-95)
-  (vector-set! ucd-slc-entries 96 ucd-slc-entry-96)
-  (vector-set! ucd-slc-entries 97 ucd-slc-entry-97)
-  (vector-set! ucd-slc-entries 98 ucd-slc-entry-98)
-  (vector-set! ucd-slc-entries 99 ucd-slc-entry-99))
-
-(define (initialize-ucd-slc-entries-1)
-  (vector-set! ucd-slc-entries 100 ucd-slc-entry-100)
-  (vector-set! ucd-slc-entries 101 ucd-slc-entry-101)
-  (vector-set! ucd-slc-entries 102 ucd-slc-entry-102)
-  (vector-set! ucd-slc-entries 103 ucd-slc-entry-103)
-  (vector-set! ucd-slc-entries 104 ucd-slc-entry-104)
-  (vector-set! ucd-slc-entries 105 ucd-slc-entry-105)
-  (vector-set! ucd-slc-entries 106 ucd-slc-entry-106)
-  (vector-set! ucd-slc-entries 107 ucd-slc-entry-107)
-  (vector-set! ucd-slc-entries 108 ucd-slc-entry-108)
-  (vector-set! ucd-slc-entries 109 ucd-slc-entry-109)
-  (vector-set! ucd-slc-entries 110 ucd-slc-entry-110)
-  (vector-set! ucd-slc-entries 111 ucd-slc-entry-111)
-  (vector-set! ucd-slc-entries 112 ucd-slc-entry-112)
-  (vector-set! ucd-slc-entries 113 ucd-slc-entry-113)
-  (vector-set! ucd-slc-entries 114 ucd-slc-entry-114)
-  (vector-set! ucd-slc-entries 115 ucd-slc-entry-115)
-  (vector-set! ucd-slc-entries 116 ucd-slc-entry-116)
-  (vector-set! ucd-slc-entries 117 ucd-slc-entry-117)
-  (vector-set! ucd-slc-entries 118 ucd-slc-entry-118)
-  (vector-set! ucd-slc-entries 119 ucd-slc-entry-119)
-  (vector-set! ucd-slc-entries 120 ucd-slc-entry-120)
-  (vector-set! ucd-slc-entries 121 ucd-slc-entry-121)
-  (vector-set! ucd-slc-entries 122 ucd-slc-entry-122)
-  (vector-set! ucd-slc-entries 123 ucd-slc-entry-123)
-  (vector-set! ucd-slc-entries 124 ucd-slc-entry-124)
-  (vector-set! ucd-slc-entries 125 ucd-slc-entry-125)
-  (vector-set! ucd-slc-entries 126 ucd-slc-entry-126)
-  (vector-set! ucd-slc-entries 127 ucd-slc-entry-127)
-  (vector-set! ucd-slc-entries 128 ucd-slc-entry-128)
-  (vector-set! ucd-slc-entries 129 ucd-slc-entry-129)
-  (vector-set! ucd-slc-entries 130 ucd-slc-entry-130)
-  (vector-set! ucd-slc-entries 131 ucd-slc-entry-131)
-  (vector-set! ucd-slc-entries 132 ucd-slc-entry-132)
-  (vector-set! ucd-slc-entries 133 ucd-slc-entry-133)
-  (vector-set! ucd-slc-entries 134 ucd-slc-entry-134)
-  (vector-set! ucd-slc-entries 135 ucd-slc-entry-135)
-  (vector-set! ucd-slc-entries 136 ucd-slc-entry-136)
-  (vector-set! ucd-slc-entries 137 ucd-slc-entry-137)
-  (vector-set! ucd-slc-entries 138 ucd-slc-entry-138)
-  (vector-set! ucd-slc-entries 139 ucd-slc-entry-139)
-  (vector-set! ucd-slc-entries 140 ucd-slc-entry-140)
-  (vector-set! ucd-slc-entries 141 ucd-slc-entry-141)
-  (vector-set! ucd-slc-entries 142 ucd-slc-entry-142)
-  (vector-set! ucd-slc-entries 143 ucd-slc-entry-143)
-  (vector-set! ucd-slc-entries 144 ucd-slc-entry-144)
-  (vector-set! ucd-slc-entries 145 ucd-slc-entry-145)
-  (vector-set! ucd-slc-entries 146 ucd-slc-entry-146)
-  (vector-set! ucd-slc-entries 147 ucd-slc-entry-147)
-  (vector-set! ucd-slc-entries 148 ucd-slc-entry-148)
-  (vector-set! ucd-slc-entries 149 ucd-slc-entry-149)
-  (vector-set! ucd-slc-entries 150 ucd-slc-entry-150)
-  (vector-set! ucd-slc-entries 151 ucd-slc-entry-151)
-  (vector-set! ucd-slc-entries 152 ucd-slc-entry-152)
-  (vector-set! ucd-slc-entries 153 ucd-slc-entry-153)
-  (vector-set! ucd-slc-entries 154 ucd-slc-entry-154)
-  (vector-set! ucd-slc-entries 155 ucd-slc-entry-155)
-  (vector-set! ucd-slc-entries 156 ucd-slc-entry-156)
-  (vector-set! ucd-slc-entries 157 ucd-slc-entry-157)
-  (vector-set! ucd-slc-entries 158 ucd-slc-entry-158)
-  (vector-set! ucd-slc-entries 159 ucd-slc-entry-159)
-  (vector-set! ucd-slc-entries 160 ucd-slc-entry-160)
-  (vector-set! ucd-slc-entries 161 ucd-slc-entry-161)
-  (vector-set! ucd-slc-entries 162 ucd-slc-entry-162)
-  (vector-set! ucd-slc-entries 163 ucd-slc-entry-163)
-  (vector-set! ucd-slc-entries 164 ucd-slc-entry-164)
-  (vector-set! ucd-slc-entries 165 ucd-slc-entry-165)
-  (vector-set! ucd-slc-entries 166 ucd-slc-entry-166)
-  (vector-set! ucd-slc-entries 167 ucd-slc-entry-167)
-  (vector-set! ucd-slc-entries 168 ucd-slc-entry-168)
-  (vector-set! ucd-slc-entries 169 ucd-slc-entry-169)
-  (vector-set! ucd-slc-entries 170 ucd-slc-entry-170)
-  (vector-set! ucd-slc-entries 171 ucd-slc-entry-171)
-  (vector-set! ucd-slc-entries 172 ucd-slc-entry-172)
-  (vector-set! ucd-slc-entries 173 ucd-slc-entry-173)
-  (vector-set! ucd-slc-entries 174 ucd-slc-entry-174)
-  (vector-set! ucd-slc-entries 175 ucd-slc-entry-175)
-  (vector-set! ucd-slc-entries 176 ucd-slc-entry-176)
-  (vector-set! ucd-slc-entries 177 ucd-slc-entry-177)
-  (vector-set! ucd-slc-entries 178 ucd-slc-entry-178)
-  (vector-set! ucd-slc-entries 179 ucd-slc-entry-179)
-  (vector-set! ucd-slc-entries 180 ucd-slc-entry-180)
-  (vector-set! ucd-slc-entries 181 ucd-slc-entry-181)
-  (vector-set! ucd-slc-entries 182 ucd-slc-entry-182)
-  (vector-set! ucd-slc-entries 183 ucd-slc-entry-183)
-  (vector-set! ucd-slc-entries 184 ucd-slc-entry-184)
-  (vector-set! ucd-slc-entries 185 ucd-slc-entry-185)
-  (vector-set! ucd-slc-entries 186 ucd-slc-entry-186)
-  (vector-set! ucd-slc-entries 187 ucd-slc-entry-187)
-  (vector-set! ucd-slc-entries 188 ucd-slc-entry-188)
-  (vector-set! ucd-slc-entries 189 ucd-slc-entry-189)
-  (vector-set! ucd-slc-entries 190 ucd-slc-entry-190)
-  (vector-set! ucd-slc-entries 191 ucd-slc-entry-191)
-  (vector-set! ucd-slc-entries 192 ucd-slc-entry-192)
-  (vector-set! ucd-slc-entries 193 ucd-slc-entry-193)
-  (vector-set! ucd-slc-entries 194 ucd-slc-entry-194)
-  (vector-set! ucd-slc-entries 195 ucd-slc-entry-195)
-  (vector-set! ucd-slc-entries 196 ucd-slc-entry-196)
-  (vector-set! ucd-slc-entries 197 ucd-slc-entry-197)
-  (vector-set! ucd-slc-entries 198 ucd-slc-entry-198)
-  (vector-set! ucd-slc-entries 199 ucd-slc-entry-199))
-
-(define (initialize-ucd-slc-entries-2)
-  (vector-set! ucd-slc-entries 200 ucd-slc-entry-200)
-  (vector-set! ucd-slc-entries 201 ucd-slc-entry-201)
-  (vector-set! ucd-slc-entries 202 ucd-slc-entry-202)
-  (vector-set! ucd-slc-entries 203 ucd-slc-entry-203)
-  (vector-set! ucd-slc-entries 204 ucd-slc-entry-204)
-  (vector-set! ucd-slc-entries 205 ucd-slc-entry-205)
-  (vector-set! ucd-slc-entries 206 ucd-slc-entry-206)
-  (vector-set! ucd-slc-entries 207 ucd-slc-entry-207)
-  (vector-set! ucd-slc-entries 208 ucd-slc-entry-208)
-  (vector-set! ucd-slc-entries 209 ucd-slc-entry-209)
-  (vector-set! ucd-slc-entries 210 ucd-slc-entry-210)
-  (vector-set! ucd-slc-entries 211 ucd-slc-entry-211)
-  (vector-set! ucd-slc-entries 212 ucd-slc-entry-212)
-  (vector-set! ucd-slc-entries 213 ucd-slc-entry-213)
-  (vector-set! ucd-slc-entries 214 ucd-slc-entry-214)
-  (vector-set! ucd-slc-entries 215 ucd-slc-entry-215)
-  (vector-set! ucd-slc-entries 216 ucd-slc-entry-216)
-  (vector-set! ucd-slc-entries 217 ucd-slc-entry-217)
-  (vector-set! ucd-slc-entries 218 ucd-slc-entry-218)
-  (vector-set! ucd-slc-entries 219 ucd-slc-entry-219)
-  (vector-set! ucd-slc-entries 220 ucd-slc-entry-220)
-  (vector-set! ucd-slc-entries 221 ucd-slc-entry-221)
-  (vector-set! ucd-slc-entries 222 ucd-slc-entry-222)
-  (vector-set! ucd-slc-entries 223 ucd-slc-entry-223)
-  (vector-set! ucd-slc-entries 224 ucd-slc-entry-224)
-  (vector-set! ucd-slc-entries 225 ucd-slc-entry-225)
-  (vector-set! ucd-slc-entries 226 ucd-slc-entry-226)
-  (vector-set! ucd-slc-entries 227 ucd-slc-entry-227)
-  (vector-set! ucd-slc-entries 228 ucd-slc-entry-228)
-  (vector-set! ucd-slc-entries 229 ucd-slc-entry-229)
-  (vector-set! ucd-slc-entries 230 ucd-slc-entry-230)
-  (vector-set! ucd-slc-entries 231 ucd-slc-entry-231)
-  (vector-set! ucd-slc-entries 232 ucd-slc-entry-232)
-  (vector-set! ucd-slc-entries 233 ucd-slc-entry-233)
-  (vector-set! ucd-slc-entries 234 ucd-slc-entry-234)
-  (vector-set! ucd-slc-entries 235 ucd-slc-entry-235)
-  (vector-set! ucd-slc-entries 236 ucd-slc-entry-236)
-  (vector-set! ucd-slc-entries 237 ucd-slc-entry-237)
-  (vector-set! ucd-slc-entries 238 ucd-slc-entry-238)
-  (vector-set! ucd-slc-entries 239 ucd-slc-entry-239)
-  (vector-set! ucd-slc-entries 240 ucd-slc-entry-240)
-  (vector-set! ucd-slc-entries 241 ucd-slc-entry-241)
-  (vector-set! ucd-slc-entries 242 ucd-slc-entry-242)
-  (vector-set! ucd-slc-entries 243 ucd-slc-entry-243)
-  (vector-set! ucd-slc-entries 244 ucd-slc-entry-244)
-  (vector-set! ucd-slc-entries 245 ucd-slc-entry-245)
-  (vector-set! ucd-slc-entries 246 ucd-slc-entry-246)
-  (vector-set! ucd-slc-entries 247 ucd-slc-entry-247)
-  (vector-set! ucd-slc-entries 248 ucd-slc-entry-248)
-  (vector-set! ucd-slc-entries 249 ucd-slc-entry-249)
-  (vector-set! ucd-slc-entries 250 ucd-slc-entry-250)
-  (vector-set! ucd-slc-entries 251 ucd-slc-entry-251)
-  (vector-set! ucd-slc-entries 252 ucd-slc-entry-252)
-  (vector-set! ucd-slc-entries 253 ucd-slc-entry-253)
-  (vector-set! ucd-slc-entries 254 ucd-slc-entry-254)
-  (vector-set! ucd-slc-entries 255 ucd-slc-entry-255)
-  (vector-set! ucd-slc-entries 256 ucd-slc-entry-256)
-  (vector-set! ucd-slc-entries 257 ucd-slc-entry-257)
-  (vector-set! ucd-slc-entries 258 ucd-slc-entry-258)
-  (vector-set! ucd-slc-entries 259 ucd-slc-entry-259)
-  (vector-set! ucd-slc-entries 260 ucd-slc-entry-260)
-  (vector-set! ucd-slc-entries 261 ucd-slc-entry-261)
-  (vector-set! ucd-slc-entries 262 ucd-slc-entry-262)
-  (vector-set! ucd-slc-entries 263 ucd-slc-entry-263)
-  (vector-set! ucd-slc-entries 264 ucd-slc-entry-264)
-  (vector-set! ucd-slc-entries 265 ucd-slc-entry-265)
-  (vector-set! ucd-slc-entries 266 ucd-slc-entry-266)
-  (vector-set! ucd-slc-entries 267 ucd-slc-entry-267)
-  (vector-set! ucd-slc-entries 268 ucd-slc-entry-268)
-  (vector-set! ucd-slc-entries 269 ucd-slc-entry-269)
-  (vector-set! ucd-slc-entries 270 ucd-slc-entry-270)
-  (vector-set! ucd-slc-entries 271 ucd-slc-entry-271)
-  (vector-set! ucd-slc-entries 272 ucd-slc-entry-272)
-  (vector-set! ucd-slc-entries 273 ucd-slc-entry-273)
-  (vector-set! ucd-slc-entries 274 ucd-slc-entry-274)
-  (vector-set! ucd-slc-entries 275 ucd-slc-entry-275)
-  (vector-set! ucd-slc-entries 276 ucd-slc-entry-276)
-  (vector-set! ucd-slc-entries 277 ucd-slc-entry-277)
-  (vector-set! ucd-slc-entries 278 ucd-slc-entry-278)
-  (vector-set! ucd-slc-entries 279 ucd-slc-entry-279)
-  (vector-set! ucd-slc-entries 280 ucd-slc-entry-280)
-  (vector-set! ucd-slc-entries 281 ucd-slc-entry-281)
-  (vector-set! ucd-slc-entries 282 ucd-slc-entry-282)
-  (vector-set! ucd-slc-entries 283 ucd-slc-entry-283)
-  (vector-set! ucd-slc-entries 284 ucd-slc-entry-284)
-  (vector-set! ucd-slc-entries 285 ucd-slc-entry-285)
-  (vector-set! ucd-slc-entries 286 ucd-slc-entry-286)
-  (vector-set! ucd-slc-entries 287 ucd-slc-entry-287)
-  (vector-set! ucd-slc-entries 288 ucd-slc-entry-288)
-  (vector-set! ucd-slc-entries 289 ucd-slc-entry-289)
-  (vector-set! ucd-slc-entries 290 ucd-slc-entry-290)
-  (vector-set! ucd-slc-entries 291 ucd-slc-entry-291)
-  (vector-set! ucd-slc-entries 292 ucd-slc-entry-292)
-  (vector-set! ucd-slc-entries 293 ucd-slc-entry-293)
-  (vector-set! ucd-slc-entries 294 ucd-slc-entry-294)
-  (vector-set! ucd-slc-entries 295 ucd-slc-entry-295)
-  (vector-set! ucd-slc-entries 296 ucd-slc-entry-296)
-  (vector-set! ucd-slc-entries 297 ucd-slc-entry-297)
-  (vector-set! ucd-slc-entries 298 ucd-slc-entry-298)
-  (vector-set! ucd-slc-entries 299 ucd-slc-entry-299))
-
-(define (initialize-ucd-slc-entries-3)
-  (vector-set! ucd-slc-entries 300 ucd-slc-entry-300)
-  (vector-set! ucd-slc-entries 301 ucd-slc-entry-301)
-  (vector-set! ucd-slc-entries 302 ucd-slc-entry-302)
-  (vector-set! ucd-slc-entries 303 ucd-slc-entry-303)
-  (vector-set! ucd-slc-entries 304 ucd-slc-entry-304)
-  (vector-set! ucd-slc-entries 305 ucd-slc-entry-305)
-  (vector-set! ucd-slc-entries 306 ucd-slc-entry-306)
-  (vector-set! ucd-slc-entries 307 ucd-slc-entry-307)
-  (vector-set! ucd-slc-entries 308 ucd-slc-entry-308)
-  (vector-set! ucd-slc-entries 309 ucd-slc-entry-309)
-  (vector-set! ucd-slc-entries 310 ucd-slc-entry-310)
-  (vector-set! ucd-slc-entries 311 ucd-slc-entry-311)
-  (vector-set! ucd-slc-entries 312 ucd-slc-entry-312)
-  (vector-set! ucd-slc-entries 313 ucd-slc-entry-313)
-  (vector-set! ucd-slc-entries 314 ucd-slc-entry-314)
-  (vector-set! ucd-slc-entries 315 ucd-slc-entry-315)
-  (vector-set! ucd-slc-entries 316 ucd-slc-entry-316)
-  (vector-set! ucd-slc-entries 317 ucd-slc-entry-317)
-  (vector-set! ucd-slc-entries 318 ucd-slc-entry-318)
-  (vector-set! ucd-slc-entries 319 ucd-slc-entry-319)
-  (vector-set! ucd-slc-entries 320 ucd-slc-entry-320)
-  (vector-set! ucd-slc-entries 321 ucd-slc-entry-321)
-  (vector-set! ucd-slc-entries 322 ucd-slc-entry-322)
-  (vector-set! ucd-slc-entries 323 ucd-slc-entry-323)
-  (vector-set! ucd-slc-entries 324 ucd-slc-entry-324)
-  (vector-set! ucd-slc-entries 325 ucd-slc-entry-325)
-  (vector-set! ucd-slc-entries 326 ucd-slc-entry-326)
-  (vector-set! ucd-slc-entries 327 ucd-slc-entry-327)
-  (vector-set! ucd-slc-entries 328 ucd-slc-entry-328)
-  (vector-set! ucd-slc-entries 329 ucd-slc-entry-329)
-  (vector-set! ucd-slc-entries 330 ucd-slc-entry-330)
-  (vector-set! ucd-slc-entries 331 ucd-slc-entry-331)
-  (vector-set! ucd-slc-entries 332 ucd-slc-entry-332)
-  (vector-set! ucd-slc-entries 333 ucd-slc-entry-333)
-  (vector-set! ucd-slc-entries 334 ucd-slc-entry-334)
-  (vector-set! ucd-slc-entries 335 ucd-slc-entry-335)
-  (vector-set! ucd-slc-entries 336 ucd-slc-entry-336)
-  (vector-set! ucd-slc-entries 337 ucd-slc-entry-337)
-  (vector-set! ucd-slc-entries 338 ucd-slc-entry-338)
-  (vector-set! ucd-slc-entries 339 ucd-slc-entry-339)
-  (vector-set! ucd-slc-entries 340 ucd-slc-entry-340)
-  (vector-set! ucd-slc-entries 341 ucd-slc-entry-341)
-  (vector-set! ucd-slc-entries 342 ucd-slc-entry-342)
-  (vector-set! ucd-slc-entries 343 ucd-slc-entry-343)
-  (vector-set! ucd-slc-entries 344 ucd-slc-entry-344)
-  (vector-set! ucd-slc-entries 345 ucd-slc-entry-345)
-  (vector-set! ucd-slc-entries 346 ucd-slc-entry-346)
-  (vector-set! ucd-slc-entries 347 ucd-slc-entry-347)
-  (vector-set! ucd-slc-entries 348 ucd-slc-entry-348)
-  (vector-set! ucd-slc-entries 349 ucd-slc-entry-349)
-  (vector-set! ucd-slc-entries 350 ucd-slc-entry-350)
-  (vector-set! ucd-slc-entries 351 ucd-slc-entry-351)
-  (vector-set! ucd-slc-entries 352 ucd-slc-entry-352)
-  (vector-set! ucd-slc-entries 353 ucd-slc-entry-353)
-  (vector-set! ucd-slc-entries 354 ucd-slc-entry-354)
-  (vector-set! ucd-slc-entries 355 ucd-slc-entry-355)
-  (vector-set! ucd-slc-entries 356 ucd-slc-entry-356)
-  (vector-set! ucd-slc-entries 357 ucd-slc-entry-357)
-  (vector-set! ucd-slc-entries 358 ucd-slc-entry-358)
-  (vector-set! ucd-slc-entries 359 ucd-slc-entry-359)
-  (vector-set! ucd-slc-entries 360 ucd-slc-entry-360)
-  (vector-set! ucd-slc-entries 361 ucd-slc-entry-361)
-  (vector-set! ucd-slc-entries 362 ucd-slc-entry-362)
-  (vector-set! ucd-slc-entries 363 ucd-slc-entry-363)
-  (vector-set! ucd-slc-entries 364 ucd-slc-entry-364)
-  (vector-set! ucd-slc-entries 365 ucd-slc-entry-365)
-  (vector-set! ucd-slc-entries 366 ucd-slc-entry-366)
-  (vector-set! ucd-slc-entries 367 ucd-slc-entry-367)
-  (vector-set! ucd-slc-entries 368 ucd-slc-entry-368)
-  (vector-set! ucd-slc-entries 369 ucd-slc-entry-369)
-  (vector-set! ucd-slc-entries 370 ucd-slc-entry-370)
-  (vector-set! ucd-slc-entries 371 ucd-slc-entry-371)
-  (vector-set! ucd-slc-entries 372 ucd-slc-entry-372)
-  (vector-set! ucd-slc-entries 373 ucd-slc-entry-373)
-  (vector-set! ucd-slc-entries 374 ucd-slc-entry-374)
-  (vector-set! ucd-slc-entries 375 ucd-slc-entry-375)
-  (vector-set! ucd-slc-entries 376 ucd-slc-entry-376)
-  (vector-set! ucd-slc-entries 377 ucd-slc-entry-377)
-  (vector-set! ucd-slc-entries 378 ucd-slc-entry-378)
-  (vector-set! ucd-slc-entries 379 ucd-slc-entry-379)
-  (vector-set! ucd-slc-entries 380 ucd-slc-entry-380)
-  (vector-set! ucd-slc-entries 381 ucd-slc-entry-381)
-  (vector-set! ucd-slc-entries 382 ucd-slc-entry-382)
-  (vector-set! ucd-slc-entries 383 ucd-slc-entry-383)
-  (vector-set! ucd-slc-entries 384 ucd-slc-entry-384)
-  (vector-set! ucd-slc-entries 385 ucd-slc-entry-385)
-  (vector-set! ucd-slc-entries 386 ucd-slc-entry-386)
-  (vector-set! ucd-slc-entries 387 ucd-slc-entry-387)
-  (vector-set! ucd-slc-entries 388 ucd-slc-entry-388)
-  (vector-set! ucd-slc-entries 389 ucd-slc-entry-389)
-  (vector-set! ucd-slc-entries 390 ucd-slc-entry-390)
-  (vector-set! ucd-slc-entries 391 ucd-slc-entry-391)
-  (vector-set! ucd-slc-entries 392 ucd-slc-entry-392)
-  (vector-set! ucd-slc-entries 393 ucd-slc-entry-393)
-  (vector-set! ucd-slc-entries 394 ucd-slc-entry-394)
-  (vector-set! ucd-slc-entries 395 ucd-slc-entry-395)
-  (vector-set! ucd-slc-entries 396 ucd-slc-entry-396)
-  (vector-set! ucd-slc-entries 397 ucd-slc-entry-397)
-  (vector-set! ucd-slc-entries 398 ucd-slc-entry-398)
-  (vector-set! ucd-slc-entries 399 ucd-slc-entry-399))
-
-(define (initialize-ucd-slc-entries-4)
-  (vector-set! ucd-slc-entries 400 ucd-slc-entry-400)
-  (vector-set! ucd-slc-entries 401 ucd-slc-entry-401)
-  (vector-set! ucd-slc-entries 402 ucd-slc-entry-402)
-  (vector-set! ucd-slc-entries 403 ucd-slc-entry-403)
-  (vector-set! ucd-slc-entries 404 ucd-slc-entry-404)
-  (vector-set! ucd-slc-entries 405 ucd-slc-entry-405)
-  (vector-set! ucd-slc-entries 406 ucd-slc-entry-406)
-  (vector-set! ucd-slc-entries 407 ucd-slc-entry-407)
-  (vector-set! ucd-slc-entries 408 ucd-slc-entry-408)
-  (vector-set! ucd-slc-entries 409 ucd-slc-entry-409)
-  (vector-set! ucd-slc-entries 410 ucd-slc-entry-410)
-  (vector-set! ucd-slc-entries 411 ucd-slc-entry-411)
-  (vector-set! ucd-slc-entries 412 ucd-slc-entry-412)
-  (vector-set! ucd-slc-entries 413 ucd-slc-entry-413)
-  (vector-set! ucd-slc-entries 414 ucd-slc-entry-414)
-  (vector-set! ucd-slc-entries 415 ucd-slc-entry-415)
-  (vector-set! ucd-slc-entries 416 ucd-slc-entry-416)
-  (vector-set! ucd-slc-entries 417 ucd-slc-entry-417)
-  (vector-set! ucd-slc-entries 418 ucd-slc-entry-418)
-  (vector-set! ucd-slc-entries 419 ucd-slc-entry-419)
-  (vector-set! ucd-slc-entries 420 ucd-slc-entry-420)
-  (vector-set! ucd-slc-entries 421 ucd-slc-entry-421)
-  (vector-set! ucd-slc-entries 422 ucd-slc-entry-422)
-  (vector-set! ucd-slc-entries 423 ucd-slc-entry-423)
-  (vector-set! ucd-slc-entries 424 ucd-slc-entry-424)
-  (vector-set! ucd-slc-entries 425 ucd-slc-entry-425)
-  (vector-set! ucd-slc-entries 426 ucd-slc-entry-426)
-  (vector-set! ucd-slc-entries 427 ucd-slc-entry-427)
-  (vector-set! ucd-slc-entries 428 ucd-slc-entry-428)
-  (vector-set! ucd-slc-entries 429 ucd-slc-entry-429)
-  (vector-set! ucd-slc-entries 430 ucd-slc-entry-430)
-  (vector-set! ucd-slc-entries 431 ucd-slc-entry-431)
-  (vector-set! ucd-slc-entries 432 ucd-slc-entry-432)
-  (vector-set! ucd-slc-entries 433 ucd-slc-entry-433)
-  (vector-set! ucd-slc-entries 434 ucd-slc-entry-434)
-  (vector-set! ucd-slc-entries 435 ucd-slc-entry-435)
-  (vector-set! ucd-slc-entries 436 ucd-slc-entry-436)
-  (vector-set! ucd-slc-entries 437 ucd-slc-entry-437)
-  (vector-set! ucd-slc-entries 438 ucd-slc-entry-438)
-  (vector-set! ucd-slc-entries 439 ucd-slc-entry-439)
-  (vector-set! ucd-slc-entries 440 ucd-slc-entry-440)
-  (vector-set! ucd-slc-entries 441 ucd-slc-entry-441)
-  (vector-set! ucd-slc-entries 442 ucd-slc-entry-442)
-  (vector-set! ucd-slc-entries 443 ucd-slc-entry-443)
-  (vector-set! ucd-slc-entries 444 ucd-slc-entry-444)
-  (vector-set! ucd-slc-entries 445 ucd-slc-entry-445)
-  (vector-set! ucd-slc-entries 446 ucd-slc-entry-446)
-  (vector-set! ucd-slc-entries 447 ucd-slc-entry-447)
-  (vector-set! ucd-slc-entries 448 ucd-slc-entry-448)
-  (vector-set! ucd-slc-entries 449 ucd-slc-entry-449)
-  (vector-set! ucd-slc-entries 450 ucd-slc-entry-450)
-  (vector-set! ucd-slc-entries 451 ucd-slc-entry-451)
-  (vector-set! ucd-slc-entries 452 ucd-slc-entry-452)
-  (vector-set! ucd-slc-entries 453 ucd-slc-entry-453)
-  (vector-set! ucd-slc-entries 454 ucd-slc-entry-454)
-  (vector-set! ucd-slc-entries 455 ucd-slc-entry-455)
-  (vector-set! ucd-slc-entries 456 ucd-slc-entry-456)
-  (vector-set! ucd-slc-entries 457 ucd-slc-entry-457)
-  (vector-set! ucd-slc-entries 458 ucd-slc-entry-458)
-  (vector-set! ucd-slc-entries 459 ucd-slc-entry-459)
-  (vector-set! ucd-slc-entries 460 ucd-slc-entry-460)
-  (vector-set! ucd-slc-entries 461 ucd-slc-entry-461)
-  (vector-set! ucd-slc-entries 462 ucd-slc-entry-462)
-  (vector-set! ucd-slc-entries 463 ucd-slc-entry-463)
-  (vector-set! ucd-slc-entries 464 ucd-slc-entry-464)
-  (vector-set! ucd-slc-entries 465 ucd-slc-entry-465)
-  (vector-set! ucd-slc-entries 466 ucd-slc-entry-466)
-  (vector-set! ucd-slc-entries 467 ucd-slc-entry-467)
-  (vector-set! ucd-slc-entries 468 ucd-slc-entry-468)
-  (vector-set! ucd-slc-entries 469 ucd-slc-entry-469)
-  (vector-set! ucd-slc-entries 470 ucd-slc-entry-470)
-  (vector-set! ucd-slc-entries 471 ucd-slc-entry-471)
-  (vector-set! ucd-slc-entries 472 ucd-slc-entry-472)
-  (vector-set! ucd-slc-entries 473 ucd-slc-entry-473)
-  (vector-set! ucd-slc-entries 474 ucd-slc-entry-474)
-  (vector-set! ucd-slc-entries 475 ucd-slc-entry-475)
-  (vector-set! ucd-slc-entries 476 ucd-slc-entry-476)
-  (vector-set! ucd-slc-entries 477 ucd-slc-entry-477)
-  (vector-set! ucd-slc-entries 478 ucd-slc-entry-478)
-  (vector-set! ucd-slc-entries 479 ucd-slc-entry-479)
-  (vector-set! ucd-slc-entries 480 ucd-slc-entry-480)
-  (vector-set! ucd-slc-entries 481 ucd-slc-entry-481)
-  (vector-set! ucd-slc-entries 482 ucd-slc-entry-482)
-  (vector-set! ucd-slc-entries 483 ucd-slc-entry-483)
-  (vector-set! ucd-slc-entries 484 ucd-slc-entry-484)
-  (vector-set! ucd-slc-entries 485 ucd-slc-entry-485)
-  (vector-set! ucd-slc-entries 486 ucd-slc-entry-486)
-  (vector-set! ucd-slc-entries 487 ucd-slc-entry-487)
-  (vector-set! ucd-slc-entries 488 ucd-slc-entry-488)
-  (vector-set! ucd-slc-entries 489 ucd-slc-entry-489)
-  (vector-set! ucd-slc-entries 490 ucd-slc-entry-490)
-  (vector-set! ucd-slc-entries 491 ucd-slc-entry-491)
-  (vector-set! ucd-slc-entries 492 ucd-slc-entry-492)
-  (vector-set! ucd-slc-entries 493 ucd-slc-entry-493)
-  (vector-set! ucd-slc-entries 494 ucd-slc-entry-494)
-  (vector-set! ucd-slc-entries 495 ucd-slc-entry-495)
-  (vector-set! ucd-slc-entries 496 ucd-slc-entry-496)
-  (vector-set! ucd-slc-entries 497 ucd-slc-entry-497)
-  (vector-set! ucd-slc-entries 498 ucd-slc-entry-498)
-  (vector-set! ucd-slc-entries 499 ucd-slc-entry-499))
-
-(define (initialize-ucd-slc-entries-5)
-  (vector-set! ucd-slc-entries 500 ucd-slc-entry-500)
-  (vector-set! ucd-slc-entries 501 ucd-slc-entry-501)
-  (vector-set! ucd-slc-entries 502 ucd-slc-entry-502)
-  (vector-set! ucd-slc-entries 503 ucd-slc-entry-503)
-  (vector-set! ucd-slc-entries 504 ucd-slc-entry-504)
-  (vector-set! ucd-slc-entries 505 ucd-slc-entry-505)
-  (vector-set! ucd-slc-entries 506 ucd-slc-entry-506)
-  (vector-set! ucd-slc-entries 507 ucd-slc-entry-507)
-  (vector-set! ucd-slc-entries 508 ucd-slc-entry-508)
-  (vector-set! ucd-slc-entries 509 ucd-slc-entry-509)
-  (vector-set! ucd-slc-entries 510 ucd-slc-entry-510)
-  (vector-set! ucd-slc-entries 511 ucd-slc-entry-511)
-  (vector-set! ucd-slc-entries 512 ucd-slc-entry-512)
-  (vector-set! ucd-slc-entries 513 ucd-slc-entry-513)
-  (vector-set! ucd-slc-entries 514 ucd-slc-entry-514)
-  (vector-set! ucd-slc-entries 515 ucd-slc-entry-515)
-  (vector-set! ucd-slc-entries 516 ucd-slc-entry-516)
-  (vector-set! ucd-slc-entries 517 ucd-slc-entry-517)
-  (vector-set! ucd-slc-entries 518 ucd-slc-entry-518)
-  (vector-set! ucd-slc-entries 519 ucd-slc-entry-519)
-  (vector-set! ucd-slc-entries 520 ucd-slc-entry-520)
-  (vector-set! ucd-slc-entries 521 ucd-slc-entry-521)
-  (vector-set! ucd-slc-entries 522 ucd-slc-entry-522)
-  (vector-set! ucd-slc-entries 523 ucd-slc-entry-523)
-  (vector-set! ucd-slc-entries 524 ucd-slc-entry-524)
-  (vector-set! ucd-slc-entries 525 ucd-slc-entry-525)
-  (vector-set! ucd-slc-entries 526 ucd-slc-entry-526)
-  (vector-set! ucd-slc-entries 527 ucd-slc-entry-527)
-  (vector-set! ucd-slc-entries 528 ucd-slc-entry-528)
-  (vector-set! ucd-slc-entries 529 ucd-slc-entry-529)
-  (vector-set! ucd-slc-entries 530 ucd-slc-entry-530)
-  (vector-set! ucd-slc-entries 531 ucd-slc-entry-531)
-  (vector-set! ucd-slc-entries 532 ucd-slc-entry-532)
-  (vector-set! ucd-slc-entries 533 ucd-slc-entry-533)
-  (vector-set! ucd-slc-entries 534 ucd-slc-entry-534)
-  (vector-set! ucd-slc-entries 535 ucd-slc-entry-535)
-  (vector-set! ucd-slc-entries 536 ucd-slc-entry-536)
-  (vector-set! ucd-slc-entries 537 ucd-slc-entry-537)
-  (vector-set! ucd-slc-entries 538 ucd-slc-entry-538)
-  (vector-set! ucd-slc-entries 539 ucd-slc-entry-539)
-  (vector-set! ucd-slc-entries 540 ucd-slc-entry-540)
-  (vector-set! ucd-slc-entries 541 ucd-slc-entry-541)
-  (vector-set! ucd-slc-entries 542 ucd-slc-entry-542)
-  (vector-set! ucd-slc-entries 543 ucd-slc-entry-543)
-  (vector-set! ucd-slc-entries 544 ucd-slc-entry-544)
-  (vector-set! ucd-slc-entries 545 ucd-slc-entry-545)
-  (vector-set! ucd-slc-entries 546 ucd-slc-entry-546)
-  (vector-set! ucd-slc-entries 547 ucd-slc-entry-547)
-  (vector-set! ucd-slc-entries 548 ucd-slc-entry-548)
-  (vector-set! ucd-slc-entries 549 ucd-slc-entry-549)
-  (vector-set! ucd-slc-entries 550 ucd-slc-entry-550)
-  (vector-set! ucd-slc-entries 551 ucd-slc-entry-551)
-  (vector-set! ucd-slc-entries 552 ucd-slc-entry-552)
-  (vector-set! ucd-slc-entries 553 ucd-slc-entry-553)
-  (vector-set! ucd-slc-entries 554 ucd-slc-entry-554)
-  (vector-set! ucd-slc-entries 555 ucd-slc-entry-555)
-  (vector-set! ucd-slc-entries 556 ucd-slc-entry-556)
-  (vector-set! ucd-slc-entries 557 ucd-slc-entry-557)
-  (vector-set! ucd-slc-entries 558 ucd-slc-entry-558)
-  (vector-set! ucd-slc-entries 559 ucd-slc-entry-559)
-  (vector-set! ucd-slc-entries 560 ucd-slc-entry-560)
-  (vector-set! ucd-slc-entries 561 ucd-slc-entry-561)
-  (vector-set! ucd-slc-entries 562 ucd-slc-entry-562)
-  (vector-set! ucd-slc-entries 563 ucd-slc-entry-563)
-  (vector-set! ucd-slc-entries 564 ucd-slc-entry-564)
-  (vector-set! ucd-slc-entries 565 ucd-slc-entry-565)
-  (vector-set! ucd-slc-entries 566 ucd-slc-entry-566)
-  (vector-set! ucd-slc-entries 567 ucd-slc-entry-567)
-  (vector-set! ucd-slc-entries 568 ucd-slc-entry-568)
-  (vector-set! ucd-slc-entries 569 ucd-slc-entry-569)
-  (vector-set! ucd-slc-entries 570 ucd-slc-entry-570)
-  (vector-set! ucd-slc-entries 571 ucd-slc-entry-571)
-  (vector-set! ucd-slc-entries 572 ucd-slc-entry-572)
-  (vector-set! ucd-slc-entries 573 ucd-slc-entry-573)
-  (vector-set! ucd-slc-entries 574 ucd-slc-entry-574)
-  (vector-set! ucd-slc-entries 575 ucd-slc-entry-575)
-  (vector-set! ucd-slc-entries 576 ucd-slc-entry-576)
-  (vector-set! ucd-slc-entries 577 ucd-slc-entry-577)
-  (vector-set! ucd-slc-entries 578 ucd-slc-entry-578)
-  (vector-set! ucd-slc-entries 579 ucd-slc-entry-579)
-  (vector-set! ucd-slc-entries 580 ucd-slc-entry-580)
-  (vector-set! ucd-slc-entries 581 ucd-slc-entry-581)
-  (vector-set! ucd-slc-entries 582 ucd-slc-entry-582)
-  (vector-set! ucd-slc-entries 583 ucd-slc-entry-583)
-  (vector-set! ucd-slc-entries 584 ucd-slc-entry-584)
-  (vector-set! ucd-slc-entries 585 ucd-slc-entry-585)
-  (vector-set! ucd-slc-entries 586 ucd-slc-entry-586)
-  (vector-set! ucd-slc-entries 587 ucd-slc-entry-587)
-  (vector-set! ucd-slc-entries 588 ucd-slc-entry-588)
-  (vector-set! ucd-slc-entries 589 ucd-slc-entry-589)
-  (vector-set! ucd-slc-entries 590 ucd-slc-entry-590)
-  (vector-set! ucd-slc-entries 591 ucd-slc-entry-591)
-  (vector-set! ucd-slc-entries 592 ucd-slc-entry-592)
-  (vector-set! ucd-slc-entries 593 ucd-slc-entry-593)
-  (vector-set! ucd-slc-entries 594 ucd-slc-entry-594)
-  (vector-set! ucd-slc-entries 595 ucd-slc-entry-595)
-  (vector-set! ucd-slc-entries 596 ucd-slc-entry-596)
-  (vector-set! ucd-slc-entries 597 ucd-slc-entry-597)
-  (vector-set! ucd-slc-entries 598 ucd-slc-entry-598)
-  (vector-set! ucd-slc-entries 599 ucd-slc-entry-599))
-
-(define (initialize-ucd-slc-entries-6)
-  (vector-set! ucd-slc-entries 600 ucd-slc-entry-600)
-  (vector-set! ucd-slc-entries 601 ucd-slc-entry-601)
-  (vector-set! ucd-slc-entries 602 ucd-slc-entry-602)
-  (vector-set! ucd-slc-entries 603 ucd-slc-entry-603)
-  (vector-set! ucd-slc-entries 604 ucd-slc-entry-604)
-  (vector-set! ucd-slc-entries 605 ucd-slc-entry-605)
-  (vector-set! ucd-slc-entries 606 ucd-slc-entry-606)
-  (vector-set! ucd-slc-entries 607 ucd-slc-entry-607)
-  (vector-set! ucd-slc-entries 608 ucd-slc-entry-608)
-  (vector-set! ucd-slc-entries 609 ucd-slc-entry-609)
-  (vector-set! ucd-slc-entries 610 ucd-slc-entry-610)
-  (vector-set! ucd-slc-entries 611 ucd-slc-entry-611)
-  (vector-set! ucd-slc-entries 612 ucd-slc-entry-612)
-  (vector-set! ucd-slc-entries 613 ucd-slc-entry-613)
-  (vector-set! ucd-slc-entries 614 ucd-slc-entry-614)
-  (vector-set! ucd-slc-entries 615 ucd-slc-entry-615)
-  (vector-set! ucd-slc-entries 616 ucd-slc-entry-616)
-  (vector-set! ucd-slc-entries 617 ucd-slc-entry-617)
-  (vector-set! ucd-slc-entries 618 ucd-slc-entry-618)
-  (vector-set! ucd-slc-entries 619 ucd-slc-entry-619)
-  (vector-set! ucd-slc-entries 620 ucd-slc-entry-620)
-  (vector-set! ucd-slc-entries 621 ucd-slc-entry-621)
-  (vector-set! ucd-slc-entries 622 ucd-slc-entry-622)
-  (vector-set! ucd-slc-entries 623 ucd-slc-entry-623)
-  (vector-set! ucd-slc-entries 624 ucd-slc-entry-624)
-  (vector-set! ucd-slc-entries 625 ucd-slc-entry-625)
-  (vector-set! ucd-slc-entries 626 ucd-slc-entry-626)
-  (vector-set! ucd-slc-entries 627 ucd-slc-entry-627)
-  (vector-set! ucd-slc-entries 628 ucd-slc-entry-628)
-  (vector-set! ucd-slc-entries 629 ucd-slc-entry-629)
-  (vector-set! ucd-slc-entries 630 ucd-slc-entry-630)
-  (vector-set! ucd-slc-entries 631 ucd-slc-entry-631)
-  (vector-set! ucd-slc-entries 632 ucd-slc-entry-632)
-  (vector-set! ucd-slc-entries 633 ucd-slc-entry-633)
-  (vector-set! ucd-slc-entries 634 ucd-slc-entry-634)
-  (vector-set! ucd-slc-entries 635 ucd-slc-entry-635)
-  (vector-set! ucd-slc-entries 636 ucd-slc-entry-636)
-  (vector-set! ucd-slc-entries 637 ucd-slc-entry-637)
-  (vector-set! ucd-slc-entries 638 ucd-slc-entry-638)
-  (vector-set! ucd-slc-entries 639 ucd-slc-entry-639)
-  (vector-set! ucd-slc-entries 640 ucd-slc-entry-640)
-  (vector-set! ucd-slc-entries 641 ucd-slc-entry-641)
-  (vector-set! ucd-slc-entries 642 ucd-slc-entry-642)
-  (vector-set! ucd-slc-entries 643 ucd-slc-entry-643)
-  (vector-set! ucd-slc-entries 644 ucd-slc-entry-644)
-  (vector-set! ucd-slc-entries 645 ucd-slc-entry-645)
-  (vector-set! ucd-slc-entries 646 ucd-slc-entry-646)
-  (vector-set! ucd-slc-entries 647 ucd-slc-entry-647)
-  (vector-set! ucd-slc-entries 648 ucd-slc-entry-648)
-  (vector-set! ucd-slc-entries 649 ucd-slc-entry-649)
-  (vector-set! ucd-slc-entries 650 ucd-slc-entry-650)
-  (vector-set! ucd-slc-entries 651 ucd-slc-entry-651)
-  (vector-set! ucd-slc-entries 652 ucd-slc-entry-652)
-  (vector-set! ucd-slc-entries 653 ucd-slc-entry-653)
-  (vector-set! ucd-slc-entries 654 ucd-slc-entry-654)
-  (vector-set! ucd-slc-entries 655 ucd-slc-entry-655)
-  (vector-set! ucd-slc-entries 656 ucd-slc-entry-656)
-  (vector-set! ucd-slc-entries 657 ucd-slc-entry-657)
-  (vector-set! ucd-slc-entries 658 ucd-slc-entry-658)
-  (vector-set! ucd-slc-entries 659 ucd-slc-entry-659)
-  (vector-set! ucd-slc-entries 660 ucd-slc-entry-660)
-  (vector-set! ucd-slc-entries 661 ucd-slc-entry-661)
-  (vector-set! ucd-slc-entries 662 ucd-slc-entry-662)
-  (vector-set! ucd-slc-entries 663 ucd-slc-entry-663)
-  (vector-set! ucd-slc-entries 664 ucd-slc-entry-664)
-  (vector-set! ucd-slc-entries 665 ucd-slc-entry-665)
-  (vector-set! ucd-slc-entries 666 ucd-slc-entry-666)
-  (vector-set! ucd-slc-entries 667 ucd-slc-entry-667)
-  (vector-set! ucd-slc-entries 668 ucd-slc-entry-668)
-  (vector-set! ucd-slc-entries 669 ucd-slc-entry-669)
-  (vector-set! ucd-slc-entries 670 ucd-slc-entry-670)
-  (vector-set! ucd-slc-entries 671 ucd-slc-entry-671)
-  (vector-set! ucd-slc-entries 672 ucd-slc-entry-672)
-  (vector-set! ucd-slc-entries 673 ucd-slc-entry-673)
-  (vector-set! ucd-slc-entries 674 ucd-slc-entry-674)
-  (vector-set! ucd-slc-entries 675 ucd-slc-entry-675)
-  (vector-set! ucd-slc-entries 676 ucd-slc-entry-676)
-  (vector-set! ucd-slc-entries 677 ucd-slc-entry-677)
-  (vector-set! ucd-slc-entries 678 ucd-slc-entry-678)
-  (vector-set! ucd-slc-entries 679 ucd-slc-entry-679)
-  (vector-set! ucd-slc-entries 680 ucd-slc-entry-680)
-  (vector-set! ucd-slc-entries 681 ucd-slc-entry-681)
-  (vector-set! ucd-slc-entries 682 ucd-slc-entry-682)
-  (vector-set! ucd-slc-entries 683 ucd-slc-entry-683)
-  (vector-set! ucd-slc-entries 684 ucd-slc-entry-684)
-  (vector-set! ucd-slc-entries 685 ucd-slc-entry-685)
-  (vector-set! ucd-slc-entries 686 ucd-slc-entry-686)
-  (vector-set! ucd-slc-entries 687 ucd-slc-entry-687)
-  (vector-set! ucd-slc-entries 688 ucd-slc-entry-688)
-  (vector-set! ucd-slc-entries 689 ucd-slc-entry-689)
-  (vector-set! ucd-slc-entries 690 ucd-slc-entry-690)
-  (vector-set! ucd-slc-entries 691 ucd-slc-entry-691)
-  (vector-set! ucd-slc-entries 692 ucd-slc-entry-692)
-  (vector-set! ucd-slc-entries 693 ucd-slc-entry-693)
-  (vector-set! ucd-slc-entries 694 ucd-slc-entry-694)
-  (vector-set! ucd-slc-entries 695 ucd-slc-entry-695)
-  (vector-set! ucd-slc-entries 696 ucd-slc-entry-696)
-  (vector-set! ucd-slc-entries 697 ucd-slc-entry-697)
-  (vector-set! ucd-slc-entries 698 ucd-slc-entry-698)
-  (vector-set! ucd-slc-entries 699 ucd-slc-entry-699))
-
-(define (initialize-ucd-slc-entries-7)
-  (vector-set! ucd-slc-entries 700 ucd-slc-entry-700)
-  (vector-set! ucd-slc-entries 701 ucd-slc-entry-701)
-  (vector-set! ucd-slc-entries 702 ucd-slc-entry-702)
-  (vector-set! ucd-slc-entries 703 ucd-slc-entry-703)
-  (vector-set! ucd-slc-entries 704 ucd-slc-entry-704)
-  (vector-set! ucd-slc-entries 705 ucd-slc-entry-705)
-  (vector-set! ucd-slc-entries 706 ucd-slc-entry-706)
-  (vector-set! ucd-slc-entries 707 ucd-slc-entry-707)
-  (vector-set! ucd-slc-entries 708 ucd-slc-entry-708)
-  (vector-set! ucd-slc-entries 709 ucd-slc-entry-709)
-  (vector-set! ucd-slc-entries 710 ucd-slc-entry-710)
-  (vector-set! ucd-slc-entries 711 ucd-slc-entry-711)
-  (vector-set! ucd-slc-entries 712 ucd-slc-entry-712)
-  (vector-set! ucd-slc-entries 713 ucd-slc-entry-713)
-  (vector-set! ucd-slc-entries 714 ucd-slc-entry-714)
-  (vector-set! ucd-slc-entries 715 ucd-slc-entry-715)
-  (vector-set! ucd-slc-entries 716 ucd-slc-entry-716)
-  (vector-set! ucd-slc-entries 717 ucd-slc-entry-717)
-  (vector-set! ucd-slc-entries 718 ucd-slc-entry-718)
-  (vector-set! ucd-slc-entries 719 ucd-slc-entry-719)
-  (vector-set! ucd-slc-entries 720 ucd-slc-entry-720)
-  (vector-set! ucd-slc-entries 721 ucd-slc-entry-721)
-  (vector-set! ucd-slc-entries 722 ucd-slc-entry-722)
-  (vector-set! ucd-slc-entries 723 ucd-slc-entry-723)
-  (vector-set! ucd-slc-entries 724 ucd-slc-entry-724)
-  (vector-set! ucd-slc-entries 725 ucd-slc-entry-725)
-  (vector-set! ucd-slc-entries 726 ucd-slc-entry-726)
-  (vector-set! ucd-slc-entries 727 ucd-slc-entry-727)
-  (vector-set! ucd-slc-entries 728 ucd-slc-entry-728)
-  (vector-set! ucd-slc-entries 729 ucd-slc-entry-729)
-  (vector-set! ucd-slc-entries 730 ucd-slc-entry-730)
-  (vector-set! ucd-slc-entries 731 ucd-slc-entry-731)
-  (vector-set! ucd-slc-entries 732 ucd-slc-entry-732)
-  (vector-set! ucd-slc-entries 733 ucd-slc-entry-733)
-  (vector-set! ucd-slc-entries 734 ucd-slc-entry-734)
-  (vector-set! ucd-slc-entries 735 ucd-slc-entry-735)
-  (vector-set! ucd-slc-entries 736 ucd-slc-entry-736)
-  (vector-set! ucd-slc-entries 737 ucd-slc-entry-737)
-  (vector-set! ucd-slc-entries 738 ucd-slc-entry-738)
-  (vector-set! ucd-slc-entries 739 ucd-slc-entry-739)
-  (vector-set! ucd-slc-entries 740 ucd-slc-entry-740)
-  (vector-set! ucd-slc-entries 741 ucd-slc-entry-741)
-  (vector-set! ucd-slc-entries 742 ucd-slc-entry-742)
-  (vector-set! ucd-slc-entries 743 ucd-slc-entry-743)
-  (vector-set! ucd-slc-entries 744 ucd-slc-entry-744)
-  (vector-set! ucd-slc-entries 745 ucd-slc-entry-745)
-  (vector-set! ucd-slc-entries 746 ucd-slc-entry-746)
-  (vector-set! ucd-slc-entries 747 ucd-slc-entry-747)
-  (vector-set! ucd-slc-entries 748 ucd-slc-entry-748)
-  (vector-set! ucd-slc-entries 749 ucd-slc-entry-749)
-  (vector-set! ucd-slc-entries 750 ucd-slc-entry-750)
-  (vector-set! ucd-slc-entries 751 ucd-slc-entry-751)
-  (vector-set! ucd-slc-entries 752 ucd-slc-entry-752)
-  (vector-set! ucd-slc-entries 753 ucd-slc-entry-753)
-  (vector-set! ucd-slc-entries 754 ucd-slc-entry-754)
-  (vector-set! ucd-slc-entries 755 ucd-slc-entry-755)
-  (vector-set! ucd-slc-entries 756 ucd-slc-entry-756)
-  (vector-set! ucd-slc-entries 757 ucd-slc-entry-757)
-  (vector-set! ucd-slc-entries 758 ucd-slc-entry-758)
-  (vector-set! ucd-slc-entries 759 ucd-slc-entry-759)
-  (vector-set! ucd-slc-entries 760 ucd-slc-entry-760)
-  (vector-set! ucd-slc-entries 761 ucd-slc-entry-761)
-  (vector-set! ucd-slc-entries 762 ucd-slc-entry-762)
-  (vector-set! ucd-slc-entries 763 ucd-slc-entry-763)
-  (vector-set! ucd-slc-entries 764 ucd-slc-entry-764)
-  (vector-set! ucd-slc-entries 765 ucd-slc-entry-765)
-  (vector-set! ucd-slc-entries 766 ucd-slc-entry-766)
-  (vector-set! ucd-slc-entries 767 ucd-slc-entry-767)
-  (vector-set! ucd-slc-entries 768 ucd-slc-entry-768)
-  (vector-set! ucd-slc-entries 769 ucd-slc-entry-769)
-  (vector-set! ucd-slc-entries 770 ucd-slc-entry-770)
-  (vector-set! ucd-slc-entries 771 ucd-slc-entry-771)
-  (vector-set! ucd-slc-entries 772 ucd-slc-entry-772)
-  (vector-set! ucd-slc-entries 773 ucd-slc-entry-773)
-  (vector-set! ucd-slc-entries 774 ucd-slc-entry-774)
-  (vector-set! ucd-slc-entries 775 ucd-slc-entry-775)
-  (vector-set! ucd-slc-entries 776 ucd-slc-entry-776)
-  (vector-set! ucd-slc-entries 777 ucd-slc-entry-777)
-  (vector-set! ucd-slc-entries 778 ucd-slc-entry-778)
-  (vector-set! ucd-slc-entries 779 ucd-slc-entry-779)
-  (vector-set! ucd-slc-entries 780 ucd-slc-entry-780)
-  (vector-set! ucd-slc-entries 781 ucd-slc-entry-781)
-  (vector-set! ucd-slc-entries 782 ucd-slc-entry-782)
-  (vector-set! ucd-slc-entries 783 ucd-slc-entry-783)
-  (vector-set! ucd-slc-entries 784 ucd-slc-entry-784)
-  (vector-set! ucd-slc-entries 785 ucd-slc-entry-785)
-  (vector-set! ucd-slc-entries 786 ucd-slc-entry-786)
-  (vector-set! ucd-slc-entries 787 ucd-slc-entry-787)
-  (vector-set! ucd-slc-entries 788 ucd-slc-entry-788)
-  (vector-set! ucd-slc-entries 789 ucd-slc-entry-789)
-  (vector-set! ucd-slc-entries 790 ucd-slc-entry-790)
-  (vector-set! ucd-slc-entries 791 ucd-slc-entry-791)
-  (vector-set! ucd-slc-entries 792 ucd-slc-entry-792)
-  (vector-set! ucd-slc-entries 793 ucd-slc-entry-793)
-  (vector-set! ucd-slc-entries 794 ucd-slc-entry-794)
-  (vector-set! ucd-slc-entries 795 ucd-slc-entry-795)
-  (vector-set! ucd-slc-entries 796 ucd-slc-entry-796)
-  (vector-set! ucd-slc-entries 797 ucd-slc-entry-797)
-  (vector-set! ucd-slc-entries 798 ucd-slc-entry-798)
-  (vector-set! ucd-slc-entries 799 ucd-slc-entry-799))
-
-(define (initialize-ucd-slc-entries-8)
-  (vector-set! ucd-slc-entries 800 ucd-slc-entry-800)
-  (vector-set! ucd-slc-entries 801 ucd-slc-entry-801)
-  (vector-set! ucd-slc-entries 802 ucd-slc-entry-802)
-  (vector-set! ucd-slc-entries 803 ucd-slc-entry-803)
-  (vector-set! ucd-slc-entries 804 ucd-slc-entry-804)
-  (vector-set! ucd-slc-entries 805 ucd-slc-entry-805)
-  (vector-set! ucd-slc-entries 806 ucd-slc-entry-806)
-  (vector-set! ucd-slc-entries 807 ucd-slc-entry-807)
-  (vector-set! ucd-slc-entries 808 ucd-slc-entry-808)
-  (vector-set! ucd-slc-entries 809 ucd-slc-entry-809)
-  (vector-set! ucd-slc-entries 810 ucd-slc-entry-810)
-  (vector-set! ucd-slc-entries 811 ucd-slc-entry-811)
-  (vector-set! ucd-slc-entries 812 ucd-slc-entry-812)
-  (vector-set! ucd-slc-entries 813 ucd-slc-entry-813)
-  (vector-set! ucd-slc-entries 814 ucd-slc-entry-814)
-  (vector-set! ucd-slc-entries 815 ucd-slc-entry-815)
-  (vector-set! ucd-slc-entries 816 ucd-slc-entry-816)
-  (vector-set! ucd-slc-entries 817 ucd-slc-entry-817)
-  (vector-set! ucd-slc-entries 818 ucd-slc-entry-818)
-  (vector-set! ucd-slc-entries 819 ucd-slc-entry-819)
-  (vector-set! ucd-slc-entries 820 ucd-slc-entry-820)
-  (vector-set! ucd-slc-entries 821 ucd-slc-entry-821)
-  (vector-set! ucd-slc-entries 822 ucd-slc-entry-822)
-  (vector-set! ucd-slc-entries 823 ucd-slc-entry-823)
-  (vector-set! ucd-slc-entries 824 ucd-slc-entry-824)
-  (vector-set! ucd-slc-entries 825 ucd-slc-entry-825)
-  (vector-set! ucd-slc-entries 826 ucd-slc-entry-826)
-  (vector-set! ucd-slc-entries 827 ucd-slc-entry-827)
-  (vector-set! ucd-slc-entries 828 ucd-slc-entry-828)
-  (vector-set! ucd-slc-entries 829 ucd-slc-entry-829)
-  (vector-set! ucd-slc-entries 830 ucd-slc-entry-830)
-  (vector-set! ucd-slc-entries 831 ucd-slc-entry-831)
-  (vector-set! ucd-slc-entries 832 ucd-slc-entry-832)
-  (vector-set! ucd-slc-entries 833 ucd-slc-entry-833)
-  (vector-set! ucd-slc-entries 834 ucd-slc-entry-834)
-  (vector-set! ucd-slc-entries 835 ucd-slc-entry-835)
-  (vector-set! ucd-slc-entries 836 ucd-slc-entry-836)
-  (vector-set! ucd-slc-entries 837 ucd-slc-entry-837)
-  (vector-set! ucd-slc-entries 838 ucd-slc-entry-838)
-  (vector-set! ucd-slc-entries 839 ucd-slc-entry-839)
-  (vector-set! ucd-slc-entries 840 ucd-slc-entry-840)
-  (vector-set! ucd-slc-entries 841 ucd-slc-entry-841)
-  (vector-set! ucd-slc-entries 842 ucd-slc-entry-842)
-  (vector-set! ucd-slc-entries 843 ucd-slc-entry-843)
-  (vector-set! ucd-slc-entries 844 ucd-slc-entry-844)
-  (vector-set! ucd-slc-entries 845 ucd-slc-entry-845)
-  (vector-set! ucd-slc-entries 846 ucd-slc-entry-846)
-  (vector-set! ucd-slc-entries 847 ucd-slc-entry-847)
-  (vector-set! ucd-slc-entries 848 ucd-slc-entry-848)
-  (vector-set! ucd-slc-entries 849 ucd-slc-entry-849)
-  (vector-set! ucd-slc-entries 850 ucd-slc-entry-850)
-  (vector-set! ucd-slc-entries 851 ucd-slc-entry-851)
-  (vector-set! ucd-slc-entries 852 ucd-slc-entry-852)
-  (vector-set! ucd-slc-entries 853 ucd-slc-entry-853)
-  (vector-set! ucd-slc-entries 854 ucd-slc-entry-854)
-  (vector-set! ucd-slc-entries 855 ucd-slc-entry-855)
-  (vector-set! ucd-slc-entries 856 ucd-slc-entry-856)
-  (vector-set! ucd-slc-entries 857 ucd-slc-entry-857)
-  (vector-set! ucd-slc-entries 858 ucd-slc-entry-858)
-  (vector-set! ucd-slc-entries 859 ucd-slc-entry-859)
-  (vector-set! ucd-slc-entries 860 ucd-slc-entry-860)
-  (vector-set! ucd-slc-entries 861 ucd-slc-entry-861)
-  (vector-set! ucd-slc-entries 862 ucd-slc-entry-862)
-  (vector-set! ucd-slc-entries 863 ucd-slc-entry-863)
-  (vector-set! ucd-slc-entries 864 ucd-slc-entry-864)
-  (vector-set! ucd-slc-entries 865 ucd-slc-entry-865)
-  (vector-set! ucd-slc-entries 866 ucd-slc-entry-866)
-  (vector-set! ucd-slc-entries 867 ucd-slc-entry-867)
-  (vector-set! ucd-slc-entries 868 ucd-slc-entry-868)
-  (vector-set! ucd-slc-entries 869 ucd-slc-entry-869)
-  (vector-set! ucd-slc-entries 870 ucd-slc-entry-870)
-  (vector-set! ucd-slc-entries 871 ucd-slc-entry-871)
-  (vector-set! ucd-slc-entries 872 ucd-slc-entry-872)
-  (vector-set! ucd-slc-entries 873 ucd-slc-entry-873)
-  (vector-set! ucd-slc-entries 874 ucd-slc-entry-874)
-  (vector-set! ucd-slc-entries 875 ucd-slc-entry-875)
-  (vector-set! ucd-slc-entries 876 ucd-slc-entry-876)
-  (vector-set! ucd-slc-entries 877 ucd-slc-entry-877)
-  (vector-set! ucd-slc-entries 878 ucd-slc-entry-878)
-  (vector-set! ucd-slc-entries 879 ucd-slc-entry-879)
-  (vector-set! ucd-slc-entries 880 ucd-slc-entry-880)
-  (vector-set! ucd-slc-entries 881 ucd-slc-entry-881)
-  (vector-set! ucd-slc-entries 882 ucd-slc-entry-882)
-  (vector-set! ucd-slc-entries 883 ucd-slc-entry-883)
-  (vector-set! ucd-slc-entries 884 ucd-slc-entry-884)
-  (vector-set! ucd-slc-entries 885 ucd-slc-entry-885)
-  (vector-set! ucd-slc-entries 886 ucd-slc-entry-886)
-  (vector-set! ucd-slc-entries 887 ucd-slc-entry-887)
-  (vector-set! ucd-slc-entries 888 ucd-slc-entry-888)
-  (vector-set! ucd-slc-entries 889 ucd-slc-entry-889)
-  (vector-set! ucd-slc-entries 890 ucd-slc-entry-890)
-  (vector-set! ucd-slc-entries 891 ucd-slc-entry-891)
-  (vector-set! ucd-slc-entries 892 ucd-slc-entry-892)
-  (vector-set! ucd-slc-entries 893 ucd-slc-entry-893)
-  (vector-set! ucd-slc-entries 894 ucd-slc-entry-894)
-  (vector-set! ucd-slc-entries 895 ucd-slc-entry-895)
-  (vector-set! ucd-slc-entries 896 ucd-slc-entry-896)
-  (vector-set! ucd-slc-entries 897 ucd-slc-entry-897)
-  (vector-set! ucd-slc-entries 898 ucd-slc-entry-898)
-  (vector-set! ucd-slc-entries 899 ucd-slc-entry-899))
-
-(define (initialize-ucd-slc-entries-9)
-  (vector-set! ucd-slc-entries 900 ucd-slc-entry-900)
-  (vector-set! ucd-slc-entries 901 ucd-slc-entry-901)
-  (vector-set! ucd-slc-entries 902 ucd-slc-entry-902)
-  (vector-set! ucd-slc-entries 903 ucd-slc-entry-903)
-  (vector-set! ucd-slc-entries 904 ucd-slc-entry-904)
-  (vector-set! ucd-slc-entries 905 ucd-slc-entry-905)
-  (vector-set! ucd-slc-entries 906 ucd-slc-entry-906)
-  (vector-set! ucd-slc-entries 907 ucd-slc-entry-907)
-  (vector-set! ucd-slc-entries 908 ucd-slc-entry-908)
-  (vector-set! ucd-slc-entries 909 ucd-slc-entry-909)
-  (vector-set! ucd-slc-entries 910 ucd-slc-entry-910)
-  (vector-set! ucd-slc-entries 911 ucd-slc-entry-911)
-  (vector-set! ucd-slc-entries 912 ucd-slc-entry-912)
-  (vector-set! ucd-slc-entries 913 ucd-slc-entry-913)
-  (vector-set! ucd-slc-entries 914 ucd-slc-entry-914)
-  (vector-set! ucd-slc-entries 915 ucd-slc-entry-915)
-  (vector-set! ucd-slc-entries 916 ucd-slc-entry-916)
-  (vector-set! ucd-slc-entries 917 ucd-slc-entry-917)
-  (vector-set! ucd-slc-entries 918 ucd-slc-entry-918)
-  (vector-set! ucd-slc-entries 919 ucd-slc-entry-919)
-  (vector-set! ucd-slc-entries 920 ucd-slc-entry-920)
-  (vector-set! ucd-slc-entries 921 ucd-slc-entry-921)
-  (vector-set! ucd-slc-entries 922 ucd-slc-entry-922)
-  (vector-set! ucd-slc-entries 923 ucd-slc-entry-923)
-  (vector-set! ucd-slc-entries 924 ucd-slc-entry-924)
-  (vector-set! ucd-slc-entries 925 ucd-slc-entry-925)
-  (vector-set! ucd-slc-entries 926 ucd-slc-entry-926)
-  (vector-set! ucd-slc-entries 927 ucd-slc-entry-927)
-  (vector-set! ucd-slc-entries 928 ucd-slc-entry-928)
-  (vector-set! ucd-slc-entries 929 ucd-slc-entry-929)
-  (vector-set! ucd-slc-entries 930 ucd-slc-entry-930)
-  (vector-set! ucd-slc-entries 931 ucd-slc-entry-931)
-  (vector-set! ucd-slc-entries 932 ucd-slc-entry-932)
-  (vector-set! ucd-slc-entries 933 ucd-slc-entry-933)
-  (vector-set! ucd-slc-entries 934 ucd-slc-entry-934)
-  (vector-set! ucd-slc-entries 935 ucd-slc-entry-935)
-  (vector-set! ucd-slc-entries 936 ucd-slc-entry-936)
-  (vector-set! ucd-slc-entries 937 ucd-slc-entry-937)
-  (vector-set! ucd-slc-entries 938 ucd-slc-entry-938)
-  (vector-set! ucd-slc-entries 939 ucd-slc-entry-939)
-  (vector-set! ucd-slc-entries 940 ucd-slc-entry-940)
-  (vector-set! ucd-slc-entries 941 ucd-slc-entry-941)
-  (vector-set! ucd-slc-entries 942 ucd-slc-entry-942)
-  (vector-set! ucd-slc-entries 943 ucd-slc-entry-943)
-  (vector-set! ucd-slc-entries 944 ucd-slc-entry-944)
-  (vector-set! ucd-slc-entries 945 ucd-slc-entry-945)
-  (vector-set! ucd-slc-entries 946 ucd-slc-entry-946)
-  (vector-set! ucd-slc-entries 947 ucd-slc-entry-947)
-  (vector-set! ucd-slc-entries 948 ucd-slc-entry-948)
-  (vector-set! ucd-slc-entries 949 ucd-slc-entry-949)
-  (vector-set! ucd-slc-entries 950 ucd-slc-entry-950)
-  (vector-set! ucd-slc-entries 951 ucd-slc-entry-951)
-  (vector-set! ucd-slc-entries 952 ucd-slc-entry-952)
-  (vector-set! ucd-slc-entries 953 ucd-slc-entry-953)
-  (vector-set! ucd-slc-entries 954 ucd-slc-entry-954)
-  (vector-set! ucd-slc-entries 955 ucd-slc-entry-955)
-  (vector-set! ucd-slc-entries 956 ucd-slc-entry-956)
-  (vector-set! ucd-slc-entries 957 ucd-slc-entry-957)
-  (vector-set! ucd-slc-entries 958 ucd-slc-entry-958)
-  (vector-set! ucd-slc-entries 959 ucd-slc-entry-959)
-  (vector-set! ucd-slc-entries 960 ucd-slc-entry-960)
-  (vector-set! ucd-slc-entries 961 ucd-slc-entry-961)
-  (vector-set! ucd-slc-entries 962 ucd-slc-entry-962)
-  (vector-set! ucd-slc-entries 963 ucd-slc-entry-963)
-  (vector-set! ucd-slc-entries 964 ucd-slc-entry-964)
-  (vector-set! ucd-slc-entries 965 ucd-slc-entry-965)
-  (vector-set! ucd-slc-entries 966 ucd-slc-entry-966)
-  (vector-set! ucd-slc-entries 967 ucd-slc-entry-967)
-  (vector-set! ucd-slc-entries 968 ucd-slc-entry-968)
-  (vector-set! ucd-slc-entries 969 ucd-slc-entry-969)
-  (vector-set! ucd-slc-entries 970 ucd-slc-entry-970)
-  (vector-set! ucd-slc-entries 971 ucd-slc-entry-971)
-  (vector-set! ucd-slc-entries 972 ucd-slc-entry-972)
-  (vector-set! ucd-slc-entries 973 ucd-slc-entry-973)
-  (vector-set! ucd-slc-entries 974 ucd-slc-entry-974)
-  (vector-set! ucd-slc-entries 975 ucd-slc-entry-975)
-  (vector-set! ucd-slc-entries 976 ucd-slc-entry-976)
-  (vector-set! ucd-slc-entries 977 ucd-slc-entry-977)
-  (vector-set! ucd-slc-entries 978 ucd-slc-entry-978)
-  (vector-set! ucd-slc-entries 979 ucd-slc-entry-979)
-  (vector-set! ucd-slc-entries 980 ucd-slc-entry-980)
-  (vector-set! ucd-slc-entries 981 ucd-slc-entry-981)
-  (vector-set! ucd-slc-entries 982 ucd-slc-entry-982)
-  (vector-set! ucd-slc-entries 983 ucd-slc-entry-983)
-  (vector-set! ucd-slc-entries 984 ucd-slc-entry-984)
-  (vector-set! ucd-slc-entries 985 ucd-slc-entry-985)
-  (vector-set! ucd-slc-entries 986 ucd-slc-entry-986)
-  (vector-set! ucd-slc-entries 987 ucd-slc-entry-987)
-  (vector-set! ucd-slc-entries 988 ucd-slc-entry-988)
-  (vector-set! ucd-slc-entries 989 ucd-slc-entry-989)
-  (vector-set! ucd-slc-entries 990 ucd-slc-entry-990)
-  (vector-set! ucd-slc-entries 991 ucd-slc-entry-991)
-  (vector-set! ucd-slc-entries 992 ucd-slc-entry-992)
-  (vector-set! ucd-slc-entries 993 ucd-slc-entry-993)
-  (vector-set! ucd-slc-entries 994 ucd-slc-entry-994)
-  (vector-set! ucd-slc-entries 995 ucd-slc-entry-995)
-  (vector-set! ucd-slc-entries 996 ucd-slc-entry-996)
-  (vector-set! ucd-slc-entries 997 ucd-slc-entry-997)
-  (vector-set! ucd-slc-entries 998 ucd-slc-entry-998)
-  (vector-set! ucd-slc-entries 999 ucd-slc-entry-999))
-
-(define (initialize-ucd-slc-entries-10)
-  (vector-set! ucd-slc-entries 1000 ucd-slc-entry-1000)
-  (vector-set! ucd-slc-entries 1001 ucd-slc-entry-1001)
-  (vector-set! ucd-slc-entries 1002 ucd-slc-entry-1002)
-  (vector-set! ucd-slc-entries 1003 ucd-slc-entry-1003)
-  (vector-set! ucd-slc-entries 1004 ucd-slc-entry-1004)
-  (vector-set! ucd-slc-entries 1005 ucd-slc-entry-1005)
-  (vector-set! ucd-slc-entries 1006 ucd-slc-entry-1006)
-  (vector-set! ucd-slc-entries 1007 ucd-slc-entry-1007)
-  (vector-set! ucd-slc-entries 1008 ucd-slc-entry-1008)
-  (vector-set! ucd-slc-entries 1009 ucd-slc-entry-1009)
-  (vector-set! ucd-slc-entries 1010 ucd-slc-entry-1010)
-  (vector-set! ucd-slc-entries 1011 ucd-slc-entry-1011)
-  (vector-set! ucd-slc-entries 1012 ucd-slc-entry-1012)
-  (vector-set! ucd-slc-entries 1013 ucd-slc-entry-1013)
-  (vector-set! ucd-slc-entries 1014 ucd-slc-entry-1014)
-  (vector-set! ucd-slc-entries 1015 ucd-slc-entry-1015)
-  (vector-set! ucd-slc-entries 1016 ucd-slc-entry-1016)
-  (vector-set! ucd-slc-entries 1017 ucd-slc-entry-1017)
-  (vector-set! ucd-slc-entries 1018 ucd-slc-entry-1018)
-  (vector-set! ucd-slc-entries 1019 ucd-slc-entry-1019)
-  (vector-set! ucd-slc-entries 1020 ucd-slc-entry-1020)
-  (vector-set! ucd-slc-entries 1021 ucd-slc-entry-1021)
-  (vector-set! ucd-slc-entries 1022 ucd-slc-entry-1022)
-  (vector-set! ucd-slc-entries 1023 ucd-slc-entry-1023)
-  (vector-set! ucd-slc-entries 1024 ucd-slc-entry-1024)
-  (vector-set! ucd-slc-entries 1025 ucd-slc-entry-1025)
-  (vector-set! ucd-slc-entries 1026 ucd-slc-entry-1026)
-  (vector-set! ucd-slc-entries 1027 ucd-slc-entry-1027)
-  (vector-set! ucd-slc-entries 1028 ucd-slc-entry-1028)
-  (vector-set! ucd-slc-entries 1029 ucd-slc-entry-1029)
-  (vector-set! ucd-slc-entries 1030 ucd-slc-entry-1030)
-  (vector-set! ucd-slc-entries 1031 ucd-slc-entry-1031)
-  (vector-set! ucd-slc-entries 1032 ucd-slc-entry-1032)
-  (vector-set! ucd-slc-entries 1033 ucd-slc-entry-1033)
-  (vector-set! ucd-slc-entries 1034 ucd-slc-entry-1034)
-  (vector-set! ucd-slc-entries 1035 ucd-slc-entry-1035)
-  (vector-set! ucd-slc-entries 1036 ucd-slc-entry-1036)
-  (vector-set! ucd-slc-entries 1037 ucd-slc-entry-1037)
-  (vector-set! ucd-slc-entries 1038 ucd-slc-entry-1038)
-  (vector-set! ucd-slc-entries 1039 ucd-slc-entry-1039)
-  (vector-set! ucd-slc-entries 1040 ucd-slc-entry-1040)
-  (vector-set! ucd-slc-entries 1041 ucd-slc-entry-1041)
-  (vector-set! ucd-slc-entries 1042 ucd-slc-entry-1042)
-  (vector-set! ucd-slc-entries 1043 ucd-slc-entry-1043)
-  (vector-set! ucd-slc-entries 1044 ucd-slc-entry-1044)
-  (vector-set! ucd-slc-entries 1045 ucd-slc-entry-1045)
-  (vector-set! ucd-slc-entries 1046 ucd-slc-entry-1046)
-  (vector-set! ucd-slc-entries 1047 ucd-slc-entry-1047)
-  (vector-set! ucd-slc-entries 1048 ucd-slc-entry-1048)
-  (vector-set! ucd-slc-entries 1049 ucd-slc-entry-1049)
-  (vector-set! ucd-slc-entries 1050 ucd-slc-entry-1050)
-  (vector-set! ucd-slc-entries 1051 ucd-slc-entry-1051)
-  (vector-set! ucd-slc-entries 1052 ucd-slc-entry-1052)
-  (vector-set! ucd-slc-entries 1053 ucd-slc-entry-1053)
-  (vector-set! ucd-slc-entries 1054 ucd-slc-entry-1054)
-  (vector-set! ucd-slc-entries 1055 ucd-slc-entry-1055)
-  (vector-set! ucd-slc-entries 1056 ucd-slc-entry-1056)
-  (vector-set! ucd-slc-entries 1057 ucd-slc-entry-1057)
-  (vector-set! ucd-slc-entries 1058 ucd-slc-entry-1058)
-  (vector-set! ucd-slc-entries 1059 ucd-slc-entry-1059)
-  (vector-set! ucd-slc-entries 1060 ucd-slc-entry-1060)
-  (vector-set! ucd-slc-entries 1061 ucd-slc-entry-1061)
-  (vector-set! ucd-slc-entries 1062 ucd-slc-entry-1062)
-  (vector-set! ucd-slc-entries 1063 ucd-slc-entry-1063)
-  (vector-set! ucd-slc-entries 1064 ucd-slc-entry-1064)
-  (vector-set! ucd-slc-entries 1065 ucd-slc-entry-1065)
-  (vector-set! ucd-slc-entries 1066 ucd-slc-entry-1066)
-  (vector-set! ucd-slc-entries 1067 ucd-slc-entry-1067)
-  (vector-set! ucd-slc-entries 1068 ucd-slc-entry-1068)
-  (vector-set! ucd-slc-entries 1069 ucd-slc-entry-1069)
-  (vector-set! ucd-slc-entries 1070 ucd-slc-entry-1070)
-  (vector-set! ucd-slc-entries 1071 ucd-slc-entry-1071)
-  (vector-set! ucd-slc-entries 1072 ucd-slc-entry-1072)
-  (vector-set! ucd-slc-entries 1073 ucd-slc-entry-1073)
-  (vector-set! ucd-slc-entries 1074 ucd-slc-entry-1074)
-  (vector-set! ucd-slc-entries 1075 ucd-slc-entry-1075)
-  (vector-set! ucd-slc-entries 1076 ucd-slc-entry-1076)
-  (vector-set! ucd-slc-entries 1077 ucd-slc-entry-1077)
-  (vector-set! ucd-slc-entries 1078 ucd-slc-entry-1078)
-  (vector-set! ucd-slc-entries 1079 ucd-slc-entry-1079)
-  (vector-set! ucd-slc-entries 1080 ucd-slc-entry-1080)
-  (vector-set! ucd-slc-entries 1081 ucd-slc-entry-1081)
-  (vector-set! ucd-slc-entries 1082 ucd-slc-entry-1082)
-  (vector-set! ucd-slc-entries 1083 ucd-slc-entry-1083)
-  (vector-set! ucd-slc-entries 1084 ucd-slc-entry-1084)
-  (vector-set! ucd-slc-entries 1085 ucd-slc-entry-1085)
-  (vector-set! ucd-slc-entries 1086 ucd-slc-entry-1086)
-  (vector-set! ucd-slc-entries 1087 ucd-slc-entry-1087)
-  (vector-set! ucd-slc-entries 1088 ucd-slc-entry-1088)
-  (vector-set! ucd-slc-entries 1089 ucd-slc-entry-1089)
-  (vector-set! ucd-slc-entries 1090 ucd-slc-entry-1090)
-  (vector-set! ucd-slc-entries 1091 ucd-slc-entry-1091)
-  (vector-set! ucd-slc-entries 1092 ucd-slc-entry-1092)
-  (vector-set! ucd-slc-entries 1093 ucd-slc-entry-1093)
-  (vector-set! ucd-slc-entries 1094 ucd-slc-entry-1094)
-  (vector-set! ucd-slc-entries 1095 ucd-slc-entry-1095)
-  (vector-set! ucd-slc-entries 1096 ucd-slc-entry-1096)
-  (vector-set! ucd-slc-entries 1097 ucd-slc-entry-1097)
-  (vector-set! ucd-slc-entries 1098 ucd-slc-entry-1098)
-  (vector-set! ucd-slc-entries 1099 ucd-slc-entry-1099))
-
-(define (initialize-ucd-slc-entries-11)
-  (vector-set! ucd-slc-entries 1100 ucd-slc-entry-1100)
-  (vector-set! ucd-slc-entries 1101 ucd-slc-entry-1101)
-  (vector-set! ucd-slc-entries 1102 ucd-slc-entry-1102)
-  (vector-set! ucd-slc-entries 1103 ucd-slc-entry-1103)
-  (vector-set! ucd-slc-entries 1104 ucd-slc-entry-1104)
-  (vector-set! ucd-slc-entries 1105 ucd-slc-entry-1105)
-  (vector-set! ucd-slc-entries 1106 ucd-slc-entry-1106)
-  (vector-set! ucd-slc-entries 1107 ucd-slc-entry-1107)
-  (vector-set! ucd-slc-entries 1108 ucd-slc-entry-1108)
-  (vector-set! ucd-slc-entries 1109 ucd-slc-entry-1109)
-  (vector-set! ucd-slc-entries 1110 ucd-slc-entry-1110)
-  (vector-set! ucd-slc-entries 1111 ucd-slc-entry-1111)
-  (vector-set! ucd-slc-entries 1112 ucd-slc-entry-1112)
-  (vector-set! ucd-slc-entries 1113 ucd-slc-entry-1113)
-  (vector-set! ucd-slc-entries 1114 ucd-slc-entry-1114)
-  (vector-set! ucd-slc-entries 1115 ucd-slc-entry-1115)
-  (vector-set! ucd-slc-entries 1116 ucd-slc-entry-1116)
-  (vector-set! ucd-slc-entries 1117 ucd-slc-entry-1117)
-  (vector-set! ucd-slc-entries 1118 ucd-slc-entry-1118)
-  (vector-set! ucd-slc-entries 1119 ucd-slc-entry-1119)
-  (vector-set! ucd-slc-entries 1120 ucd-slc-entry-1120)
-  (vector-set! ucd-slc-entries 1121 ucd-slc-entry-1121)
-  (vector-set! ucd-slc-entries 1122 ucd-slc-entry-1122)
-  (vector-set! ucd-slc-entries 1123 ucd-slc-entry-1123)
-  (vector-set! ucd-slc-entries 1124 ucd-slc-entry-1124)
-  (vector-set! ucd-slc-entries 1125 ucd-slc-entry-1125)
-  (vector-set! ucd-slc-entries 1126 ucd-slc-entry-1126)
-  (vector-set! ucd-slc-entries 1127 ucd-slc-entry-1127)
-  (vector-set! ucd-slc-entries 1128 ucd-slc-entry-1128)
-  (vector-set! ucd-slc-entries 1129 ucd-slc-entry-1129)
-  (vector-set! ucd-slc-entries 1130 ucd-slc-entry-1130)
-  (vector-set! ucd-slc-entries 1131 ucd-slc-entry-1131)
-  (vector-set! ucd-slc-entries 1132 ucd-slc-entry-1132)
-  (vector-set! ucd-slc-entries 1133 ucd-slc-entry-1133)
-  (vector-set! ucd-slc-entries 1134 ucd-slc-entry-1134)
-  (vector-set! ucd-slc-entries 1135 ucd-slc-entry-1135)
-  (vector-set! ucd-slc-entries 1136 ucd-slc-entry-1136)
-  (vector-set! ucd-slc-entries 1137 ucd-slc-entry-1137)
-  (vector-set! ucd-slc-entries 1138 ucd-slc-entry-1138)
-  (vector-set! ucd-slc-entries 1139 ucd-slc-entry-1139)
-  (vector-set! ucd-slc-entries 1140 ucd-slc-entry-1140)
-  (vector-set! ucd-slc-entries 1141 ucd-slc-entry-1141)
-  (vector-set! ucd-slc-entries 1142 ucd-slc-entry-1142)
-  (vector-set! ucd-slc-entries 1143 ucd-slc-entry-1143)
-  (vector-set! ucd-slc-entries 1144 ucd-slc-entry-1144)
-  (vector-set! ucd-slc-entries 1145 ucd-slc-entry-1145)
-  (vector-set! ucd-slc-entries 1146 ucd-slc-entry-1146)
-  (vector-set! ucd-slc-entries 1147 ucd-slc-entry-1147)
-  (vector-set! ucd-slc-entries 1148 ucd-slc-entry-1148)
-  (vector-set! ucd-slc-entries 1149 ucd-slc-entry-1149)
-  (vector-set! ucd-slc-entries 1150 ucd-slc-entry-1150)
-  (vector-set! ucd-slc-entries 1151 ucd-slc-entry-1151)
-  (vector-set! ucd-slc-entries 1152 ucd-slc-entry-1152)
-  (vector-set! ucd-slc-entries 1153 ucd-slc-entry-1153)
-  (vector-set! ucd-slc-entries 1154 ucd-slc-entry-1154)
-  (vector-set! ucd-slc-entries 1155 ucd-slc-entry-1155)
-  (vector-set! ucd-slc-entries 1156 ucd-slc-entry-1156)
-  (vector-set! ucd-slc-entries 1157 ucd-slc-entry-1157)
-  (vector-set! ucd-slc-entries 1158 ucd-slc-entry-1158)
-  (vector-set! ucd-slc-entries 1159 ucd-slc-entry-1159)
-  (vector-set! ucd-slc-entries 1160 ucd-slc-entry-1160)
-  (vector-set! ucd-slc-entries 1161 ucd-slc-entry-1161)
-  (vector-set! ucd-slc-entries 1162 ucd-slc-entry-1162)
-  (vector-set! ucd-slc-entries 1163 ucd-slc-entry-1163)
-  (vector-set! ucd-slc-entries 1164 ucd-slc-entry-1164)
-  (vector-set! ucd-slc-entries 1165 ucd-slc-entry-1165)
-  (vector-set! ucd-slc-entries 1166 ucd-slc-entry-1166)
-  (vector-set! ucd-slc-entries 1167 ucd-slc-entry-1167)
-  (vector-set! ucd-slc-entries 1168 ucd-slc-entry-1168)
-  (vector-set! ucd-slc-entries 1169 ucd-slc-entry-1169)
-  (vector-set! ucd-slc-entries 1170 ucd-slc-entry-1170)
-  (vector-set! ucd-slc-entries 1171 ucd-slc-entry-1171)
-  (vector-set! ucd-slc-entries 1172 ucd-slc-entry-1172)
-  (vector-set! ucd-slc-entries 1173 ucd-slc-entry-1173)
-  (vector-set! ucd-slc-entries 1174 ucd-slc-entry-1174)
-  (vector-set! ucd-slc-entries 1175 ucd-slc-entry-1175)
-  (vector-set! ucd-slc-entries 1176 ucd-slc-entry-1176)
-  (vector-set! ucd-slc-entries 1177 ucd-slc-entry-1177)
-  (vector-set! ucd-slc-entries 1178 ucd-slc-entry-1178)
-  (vector-set! ucd-slc-entries 1179 ucd-slc-entry-1179)
-  (vector-set! ucd-slc-entries 1180 ucd-slc-entry-1180)
-  (vector-set! ucd-slc-entries 1181 ucd-slc-entry-1181)
-  (vector-set! ucd-slc-entries 1182 ucd-slc-entry-1182)
-  (vector-set! ucd-slc-entries 1183 ucd-slc-entry-1183)
-  (vector-set! ucd-slc-entries 1184 ucd-slc-entry-1184)
-  (vector-set! ucd-slc-entries 1185 ucd-slc-entry-1185)
-  (vector-set! ucd-slc-entries 1186 ucd-slc-entry-1186)
-  (vector-set! ucd-slc-entries 1187 ucd-slc-entry-1187)
-  (vector-set! ucd-slc-entries 1188 ucd-slc-entry-1188)
-  (vector-set! ucd-slc-entries 1189 ucd-slc-entry-1189)
-  (vector-set! ucd-slc-entries 1190 ucd-slc-entry-1190)
-  (vector-set! ucd-slc-entries 1191 ucd-slc-entry-1191)
-  (vector-set! ucd-slc-entries 1192 ucd-slc-entry-1192)
-  (vector-set! ucd-slc-entries 1193 ucd-slc-entry-1193)
-  (vector-set! ucd-slc-entries 1194 ucd-slc-entry-1194)
-  (vector-set! ucd-slc-entries 1195 ucd-slc-entry-1195)
-  (vector-set! ucd-slc-entries 1196 ucd-slc-entry-1196)
-  (vector-set! ucd-slc-entries 1197 ucd-slc-entry-1197)
-  (vector-set! ucd-slc-entries 1198 ucd-slc-entry-1198)
-  (vector-set! ucd-slc-entries 1199 ucd-slc-entry-1199))
-
-(define (initialize-ucd-slc-entries-12)
-  (vector-set! ucd-slc-entries 1200 ucd-slc-entry-1200)
-  (vector-set! ucd-slc-entries 1201 ucd-slc-entry-1201)
-  (vector-set! ucd-slc-entries 1202 ucd-slc-entry-1202)
-  (vector-set! ucd-slc-entries 1203 ucd-slc-entry-1203)
-  (vector-set! ucd-slc-entries 1204 ucd-slc-entry-1204)
-  (vector-set! ucd-slc-entries 1205 ucd-slc-entry-1205)
-  (vector-set! ucd-slc-entries 1206 ucd-slc-entry-1206)
-  (vector-set! ucd-slc-entries 1207 ucd-slc-entry-1207)
-  (vector-set! ucd-slc-entries 1208 ucd-slc-entry-1208)
-  (vector-set! ucd-slc-entries 1209 ucd-slc-entry-1209)
-  (vector-set! ucd-slc-entries 1210 ucd-slc-entry-1210)
-  (vector-set! ucd-slc-entries 1211 ucd-slc-entry-1211)
-  (vector-set! ucd-slc-entries 1212 ucd-slc-entry-1212)
-  (vector-set! ucd-slc-entries 1213 ucd-slc-entry-1213)
-  (vector-set! ucd-slc-entries 1214 ucd-slc-entry-1214)
-  (vector-set! ucd-slc-entries 1215 ucd-slc-entry-1215)
-  (vector-set! ucd-slc-entries 1216 ucd-slc-entry-1216)
-  (vector-set! ucd-slc-entries 1217 ucd-slc-entry-1217)
-  (vector-set! ucd-slc-entries 1218 ucd-slc-entry-1218)
-  (vector-set! ucd-slc-entries 1219 ucd-slc-entry-1219)
-  (vector-set! ucd-slc-entries 1220 ucd-slc-entry-1220)
-  (vector-set! ucd-slc-entries 1221 ucd-slc-entry-1221)
-  (vector-set! ucd-slc-entries 1222 ucd-slc-entry-1222)
-  (vector-set! ucd-slc-entries 1223 ucd-slc-entry-1223)
-  (vector-set! ucd-slc-entries 1224 ucd-slc-entry-1224)
-  (vector-set! ucd-slc-entries 1225 ucd-slc-entry-1225)
-  (vector-set! ucd-slc-entries 1226 ucd-slc-entry-1226)
-  (vector-set! ucd-slc-entries 1227 ucd-slc-entry-1227)
-  (vector-set! ucd-slc-entries 1228 ucd-slc-entry-1228)
-  (vector-set! ucd-slc-entries 1229 ucd-slc-entry-1229)
-  (vector-set! ucd-slc-entries 1230 ucd-slc-entry-1230)
-  (vector-set! ucd-slc-entries 1231 ucd-slc-entry-1231)
-  (vector-set! ucd-slc-entries 1232 ucd-slc-entry-1232)
-  (vector-set! ucd-slc-entries 1233 ucd-slc-entry-1233)
-  (vector-set! ucd-slc-entries 1234 ucd-slc-entry-1234)
-  (vector-set! ucd-slc-entries 1235 ucd-slc-entry-1235)
-  (vector-set! ucd-slc-entries 1236 ucd-slc-entry-1236)
-  (vector-set! ucd-slc-entries 1237 ucd-slc-entry-1237)
-  (vector-set! ucd-slc-entries 1238 ucd-slc-entry-1238)
-  (vector-set! ucd-slc-entries 1239 ucd-slc-entry-1239)
-  (vector-set! ucd-slc-entries 1240 ucd-slc-entry-1240)
-  (vector-set! ucd-slc-entries 1241 ucd-slc-entry-1241)
-  (vector-set! ucd-slc-entries 1242 ucd-slc-entry-1242)
-  (vector-set! ucd-slc-entries 1243 ucd-slc-entry-1243)
-  (vector-set! ucd-slc-entries 1244 ucd-slc-entry-1244)
-  (vector-set! ucd-slc-entries 1245 ucd-slc-entry-1245)
-  (vector-set! ucd-slc-entries 1246 ucd-slc-entry-1246)
-  (vector-set! ucd-slc-entries 1247 ucd-slc-entry-1247)
-  (vector-set! ucd-slc-entries 1248 ucd-slc-entry-1248)
-  (vector-set! ucd-slc-entries 1249 ucd-slc-entry-1249)
-  (vector-set! ucd-slc-entries 1250 ucd-slc-entry-1250)
-  (vector-set! ucd-slc-entries 1251 ucd-slc-entry-1251)
-  (vector-set! ucd-slc-entries 1252 ucd-slc-entry-1252)
-  (vector-set! ucd-slc-entries 1253 ucd-slc-entry-1253)
-  (vector-set! ucd-slc-entries 1254 ucd-slc-entry-1254)
-  (vector-set! ucd-slc-entries 1255 ucd-slc-entry-1255)
-  (vector-set! ucd-slc-entries 1256 ucd-slc-entry-1256)
-  (vector-set! ucd-slc-entries 1257 ucd-slc-entry-1257)
-  (vector-set! ucd-slc-entries 1258 ucd-slc-entry-1258)
-  (vector-set! ucd-slc-entries 1259 ucd-slc-entry-1259)
-  (vector-set! ucd-slc-entries 1260 ucd-slc-entry-1260)
-  (vector-set! ucd-slc-entries 1261 ucd-slc-entry-1261)
-  (vector-set! ucd-slc-entries 1262 ucd-slc-entry-1262)
-  (vector-set! ucd-slc-entries 1263 ucd-slc-entry-1263)
-  (vector-set! ucd-slc-entries 1264 ucd-slc-entry-1264)
-  (vector-set! ucd-slc-entries 1265 ucd-slc-entry-1265)
-  (vector-set! ucd-slc-entries 1266 ucd-slc-entry-1266)
-  (vector-set! ucd-slc-entries 1267 ucd-slc-entry-1267)
-  (vector-set! ucd-slc-entries 1268 ucd-slc-entry-1268)
-  (vector-set! ucd-slc-entries 1269 ucd-slc-entry-1269)
-  (vector-set! ucd-slc-entries 1270 ucd-slc-entry-1270)
-  (vector-set! ucd-slc-entries 1271 ucd-slc-entry-1271)
-  (vector-set! ucd-slc-entries 1272 ucd-slc-entry-1272)
-  (vector-set! ucd-slc-entries 1273 ucd-slc-entry-1273)
-  (vector-set! ucd-slc-entries 1274 ucd-slc-entry-1274)
-  (vector-set! ucd-slc-entries 1275 ucd-slc-entry-1275)
-  (vector-set! ucd-slc-entries 1276 ucd-slc-entry-1276)
-  (vector-set! ucd-slc-entries 1277 ucd-slc-entry-1277)
-  (vector-set! ucd-slc-entries 1278 ucd-slc-entry-1278)
-  (vector-set! ucd-slc-entries 1279 ucd-slc-entry-1279)
-  (vector-set! ucd-slc-entries 1280 ucd-slc-entry-1280)
-  (vector-set! ucd-slc-entries 1281 ucd-slc-entry-1281)
-  (vector-set! ucd-slc-entries 1282 ucd-slc-entry-1282)
-  (vector-set! ucd-slc-entries 1283 ucd-slc-entry-1283)
-  (vector-set! ucd-slc-entries 1284 ucd-slc-entry-1284)
-  (vector-set! ucd-slc-entries 1285 ucd-slc-entry-1285)
-  (vector-set! ucd-slc-entries 1286 ucd-slc-entry-1286)
-  (vector-set! ucd-slc-entries 1287 ucd-slc-entry-1287)
-  (vector-set! ucd-slc-entries 1288 ucd-slc-entry-1288)
-  (vector-set! ucd-slc-entries 1289 ucd-slc-entry-1289)
-  (vector-set! ucd-slc-entries 1290 ucd-slc-entry-1290)
-  (vector-set! ucd-slc-entries 1291 ucd-slc-entry-1291)
-  (vector-set! ucd-slc-entries 1292 ucd-slc-entry-1292)
-  (vector-set! ucd-slc-entries 1293 ucd-slc-entry-1293)
-  (vector-set! ucd-slc-entries 1294 ucd-slc-entry-1294)
-  (vector-set! ucd-slc-entries 1295 ucd-slc-entry-1295)
-  (vector-set! ucd-slc-entries 1296 ucd-slc-entry-1296)
-  (vector-set! ucd-slc-entries 1297 ucd-slc-entry-1297)
-  (vector-set! ucd-slc-entries 1298 ucd-slc-entry-1298)
-  (vector-set! ucd-slc-entries 1299 ucd-slc-entry-1299))
-
-(define (initialize-ucd-slc-entries-13)
-  (vector-set! ucd-slc-entries 1300 ucd-slc-entry-1300)
-  (vector-set! ucd-slc-entries 1301 ucd-slc-entry-1301)
-  (vector-set! ucd-slc-entries 1302 ucd-slc-entry-1302)
-  (vector-set! ucd-slc-entries 1303 ucd-slc-entry-1303)
-  (vector-set! ucd-slc-entries 1304 ucd-slc-entry-1304)
-  (vector-set! ucd-slc-entries 1305 ucd-slc-entry-1305)
-  (vector-set! ucd-slc-entries 1306 ucd-slc-entry-1306)
-  (vector-set! ucd-slc-entries 1307 ucd-slc-entry-1307)
-  (vector-set! ucd-slc-entries 1308 ucd-slc-entry-1308)
-  (vector-set! ucd-slc-entries 1309 ucd-slc-entry-1309)
-  (vector-set! ucd-slc-entries 1310 ucd-slc-entry-1310)
-  (vector-set! ucd-slc-entries 1311 ucd-slc-entry-1311)
-  (vector-set! ucd-slc-entries 1312 ucd-slc-entry-1312)
-  (vector-set! ucd-slc-entries 1313 ucd-slc-entry-1313)
-  (vector-set! ucd-slc-entries 1314 ucd-slc-entry-1314)
-  (vector-set! ucd-slc-entries 1315 ucd-slc-entry-1315)
-  (vector-set! ucd-slc-entries 1316 ucd-slc-entry-1316)
-  (vector-set! ucd-slc-entries 1317 ucd-slc-entry-1317)
-  (vector-set! ucd-slc-entries 1318 ucd-slc-entry-1318)
-  (vector-set! ucd-slc-entries 1319 ucd-slc-entry-1319)
-  (vector-set! ucd-slc-entries 1320 ucd-slc-entry-1320)
-  (vector-set! ucd-slc-entries 1321 ucd-slc-entry-1321)
-  (vector-set! ucd-slc-entries 1322 ucd-slc-entry-1322)
-  (vector-set! ucd-slc-entries 1323 ucd-slc-entry-1323)
-  (vector-set! ucd-slc-entries 1324 ucd-slc-entry-1324)
-  (vector-set! ucd-slc-entries 1325 ucd-slc-entry-1325)
-  (vector-set! ucd-slc-entries 1326 ucd-slc-entry-1326)
-  (vector-set! ucd-slc-entries 1327 ucd-slc-entry-1327)
-  (vector-set! ucd-slc-entries 1328 ucd-slc-entry-1328)
-  (vector-set! ucd-slc-entries 1329 ucd-slc-entry-1329)
-  (vector-set! ucd-slc-entries 1330 ucd-slc-entry-1330)
-  (vector-set! ucd-slc-entries 1331 ucd-slc-entry-1331)
-  (vector-set! ucd-slc-entries 1332 ucd-slc-entry-1332)
-  (vector-set! ucd-slc-entries 1333 ucd-slc-entry-1333)
-  (vector-set! ucd-slc-entries 1334 ucd-slc-entry-1334)
-  (vector-set! ucd-slc-entries 1335 ucd-slc-entry-1335)
-  (vector-set! ucd-slc-entries 1336 ucd-slc-entry-1336)
-  (vector-set! ucd-slc-entries 1337 ucd-slc-entry-1337)
-  (vector-set! ucd-slc-entries 1338 ucd-slc-entry-1338)
-  (vector-set! ucd-slc-entries 1339 ucd-slc-entry-1339)
-  (vector-set! ucd-slc-entries 1340 ucd-slc-entry-1340)
-  (vector-set! ucd-slc-entries 1341 ucd-slc-entry-1341)
-  (vector-set! ucd-slc-entries 1342 ucd-slc-entry-1342)
-  (vector-set! ucd-slc-entries 1343 ucd-slc-entry-1343)
-  (vector-set! ucd-slc-entries 1344 ucd-slc-entry-1344)
-  (vector-set! ucd-slc-entries 1345 ucd-slc-entry-1345)
-  (vector-set! ucd-slc-entries 1346 ucd-slc-entry-1346)
-  (vector-set! ucd-slc-entries 1347 ucd-slc-entry-1347)
-  (vector-set! ucd-slc-entries 1348 ucd-slc-entry-1348)
-  (vector-set! ucd-slc-entries 1349 ucd-slc-entry-1349)
-  (vector-set! ucd-slc-entries 1350 ucd-slc-entry-1350)
-  (vector-set! ucd-slc-entries 1351 ucd-slc-entry-1351)
-  (vector-set! ucd-slc-entries 1352 ucd-slc-entry-1352)
-  (vector-set! ucd-slc-entries 1353 ucd-slc-entry-1353)
-  (vector-set! ucd-slc-entries 1354 ucd-slc-entry-1354)
-  (vector-set! ucd-slc-entries 1355 ucd-slc-entry-1355)
-  (vector-set! ucd-slc-entries 1356 ucd-slc-entry-1356)
-  (vector-set! ucd-slc-entries 1357 ucd-slc-entry-1357)
-  (vector-set! ucd-slc-entries 1358 ucd-slc-entry-1358)
-  (vector-set! ucd-slc-entries 1359 ucd-slc-entry-1359)
-  (vector-set! ucd-slc-entries 1360 ucd-slc-entry-1360)
-  (vector-set! ucd-slc-entries 1361 ucd-slc-entry-1361)
-  (vector-set! ucd-slc-entries 1362 ucd-slc-entry-1362)
-  (vector-set! ucd-slc-entries 1363 ucd-slc-entry-1363)
-  (vector-set! ucd-slc-entries 1364 ucd-slc-entry-1364)
-  (vector-set! ucd-slc-entries 1365 ucd-slc-entry-1365)
-  (vector-set! ucd-slc-entries 1366 ucd-slc-entry-1366)
-  (vector-set! ucd-slc-entries 1367 ucd-slc-entry-1367)
-  (vector-set! ucd-slc-entries 1368 ucd-slc-entry-1368)
-  (vector-set! ucd-slc-entries 1369 ucd-slc-entry-1369)
-  (vector-set! ucd-slc-entries 1370 ucd-slc-entry-1370)
-  (vector-set! ucd-slc-entries 1371 ucd-slc-entry-1371)
-  (vector-set! ucd-slc-entries 1372 ucd-slc-entry-1372)
-  (vector-set! ucd-slc-entries 1373 ucd-slc-entry-1373)
-  (vector-set! ucd-slc-entries 1374 ucd-slc-entry-1374)
-  (vector-set! ucd-slc-entries 1375 ucd-slc-entry-1375)
-  (vector-set! ucd-slc-entries 1376 ucd-slc-entry-1376)
-  (vector-set! ucd-slc-entries 1377 ucd-slc-entry-1377)
-  (vector-set! ucd-slc-entries 1378 ucd-slc-entry-1378)
-  (vector-set! ucd-slc-entries 1379 ucd-slc-entry-1379)
-  (vector-set! ucd-slc-entries 1380 ucd-slc-entry-1380)
-  (vector-set! ucd-slc-entries 1381 ucd-slc-entry-1381)
-  (vector-set! ucd-slc-entries 1382 ucd-slc-entry-1382)
-  (vector-set! ucd-slc-entries 1383 ucd-slc-entry-1383)
-  (vector-set! ucd-slc-entries 1384 ucd-slc-entry-1384)
-  (vector-set! ucd-slc-entries 1385 ucd-slc-entry-1385)
-  (vector-set! ucd-slc-entries 1386 ucd-slc-entry-1386)
-  (vector-set! ucd-slc-entries 1387 ucd-slc-entry-1387)
-  (vector-set! ucd-slc-entries 1388 ucd-slc-entry-1388)
-  (vector-set! ucd-slc-entries 1389 ucd-slc-entry-1389)
-  (vector-set! ucd-slc-entries 1390 ucd-slc-entry-1390)
-  (vector-set! ucd-slc-entries 1391 ucd-slc-entry-1391)
-  (vector-set! ucd-slc-entries 1392 ucd-slc-entry-1392)
-  (vector-set! ucd-slc-entries 1393 ucd-slc-entry-1393)
-  (vector-set! ucd-slc-entries 1394 ucd-slc-entry-1394)
-  (vector-set! ucd-slc-entries 1395 ucd-slc-entry-1395)
-  (vector-set! ucd-slc-entries 1396 ucd-slc-entry-1396)
-  (vector-set! ucd-slc-entries 1397 ucd-slc-entry-1397)
-  (vector-set! ucd-slc-entries 1398 ucd-slc-entry-1398)
-  (vector-set! ucd-slc-entries 1399 ucd-slc-entry-1399))
-
-(define (initialize-ucd-slc-entries-14)
-  (vector-set! ucd-slc-entries 1400 ucd-slc-entry-1400)
-  (vector-set! ucd-slc-entries 1401 ucd-slc-entry-1401)
-  (vector-set! ucd-slc-entries 1402 ucd-slc-entry-1402)
-  (vector-set! ucd-slc-entries 1403 ucd-slc-entry-1403)
-  (vector-set! ucd-slc-entries 1404 ucd-slc-entry-1404)
-  (vector-set! ucd-slc-entries 1405 ucd-slc-entry-1405)
-  (vector-set! ucd-slc-entries 1406 ucd-slc-entry-1406)
-  (vector-set! ucd-slc-entries 1407 ucd-slc-entry-1407)
-  (vector-set! ucd-slc-entries 1408 ucd-slc-entry-1408)
-  (vector-set! ucd-slc-entries 1409 ucd-slc-entry-1409)
-  (vector-set! ucd-slc-entries 1410 ucd-slc-entry-1410)
-  (vector-set! ucd-slc-entries 1411 ucd-slc-entry-1411)
-  (vector-set! ucd-slc-entries 1412 ucd-slc-entry-1412)
-  (vector-set! ucd-slc-entries 1413 ucd-slc-entry-1413)
-  (vector-set! ucd-slc-entries 1414 ucd-slc-entry-1414)
-  (vector-set! ucd-slc-entries 1415 ucd-slc-entry-1415)
-  (vector-set! ucd-slc-entries 1416 ucd-slc-entry-1416)
-  (vector-set! ucd-slc-entries 1417 ucd-slc-entry-1417)
-  (vector-set! ucd-slc-entries 1418 ucd-slc-entry-1418)
-  (vector-set! ucd-slc-entries 1419 ucd-slc-entry-1419)
-  (vector-set! ucd-slc-entries 1420 ucd-slc-entry-1420)
-  (vector-set! ucd-slc-entries 1421 ucd-slc-entry-1421))
+(define (ucd-slc-value sv)
+  (hash-table-ref/default char-map:simple-lower-case sv sv))
+
+(define-deferred char-map:simple-lower-case
+  (let ((table (make-strong-eq-hash-table)))
+    (for-each
+     (lambda (p)
+       (hash-table-set! table (car p) (cdr p)))
+     '((65 . 97)       (66 . 98)       (67 . 99)       (68 . 100)      (69 . 101)      (70 . 102)      (71 . 103)      (72 . 104)      (73 . 105)      (74 . 106)      (75 . 107)      (76 . 108)      (77 . 109)      (78 . 110)      (79 . 111)      (80 . 112)      (81 . 113)        (82 . 114)        (83 . 115)        (84 . 116)        (85 . 117)        (86 . 118)        (87 . 119)        (88 . 120)        (89 . 121)        (90 . 122)        (192 . 224)       (193 . 225)       (194 . 226)       (195 . 227)       (196 . 228)       (197 . 229)       (198 . 230)       (199 . 231)       (200 . 232)       (201 . 233)       (202 . 234)       (203 . 235)       (204 . 236)       (205 . 237)       (206 . 238)       (207 . 239)       (208 . 240)       (209 . 241)       (210 . 242)       (211 . 243)       (212 . 244)       (213 . 245)       (214 . 246)       (216 . 248)       (217 . 249)     (218 . 250)     (219 . 251)     (220 . 252)     (221 . 253)     (222 . 254)     (256 . 257)
+       (258 . 259)     (260 . 261)     (262 . 263)     (264 . 265)     (266 . 267)     (268 . 269)     (270 . 271)     (272 . 273)     (274 . 275)     (276 . 277)     (278 . 279)     (280 . 281)     (282 . 283)     (284 . 285)     (286 . 287)     (288 . 289)     (290 . 291)       (292 . 293)       (294 . 295)       (296 . 297)       (298 . 299)       (300 . 301)       (302 . 303)       (304 . 105)       (306 . 307)       (308 . 309)       (310 . 311)       (313 . 314)       (315 . 316)       (317 . 318)       (319 . 320)       (321 . 322)       (323 . 324)       (325 . 326)       (327 . 328)       (330 . 331)       (332 . 333)       (334 . 335)       (336 . 337)       (338 . 339)       (340 . 341)       (342 . 343)       (344 . 345)       (346 . 347)       (348 . 349)       (350 . 351)       (352 . 353)       (354 . 355)       (356 . 357)       (358 . 359)       (360 . 361)     (362 . 363)     (364 . 365)     (366 . 367)     (368 . 369)     (370 . 371)     (372 . 373)
+       (374 . 375)     (376 . 255)     (377 . 378)     (379 . 380)     (381 . 382)     (385 . 595)     (386 . 387)     (388 . 389)     (390 . 596)     (391 . 392)     (393 . 598)     (394 . 599)     (395 . 396)     (398 . 477)     (399 . 601)     (400 . 603)     (401 . 402)       (403 . 608)       (404 . 611)       (406 . 617)       (407 . 616)       (408 . 409)       (412 . 623)       (413 . 626)       (415 . 629)       (416 . 417)       (418 . 419)       (420 . 421)       (422 . 640)       (423 . 424)       (425 . 643)       (428 . 429)       (430 . 648)       (431 . 432)       (433 . 650)       (434 . 651)       (435 . 436)       (437 . 438)       (439 . 658)       (440 . 441)       (444 . 445)       (452 . 454)       (453 . 454)       (455 . 457)       (456 . 457)       (458 . 460)       (459 . 460)       (461 . 462)       (463 . 464)       (465 . 466)       (467 . 468)     (469 . 470)     (471 . 472)     (473 . 474)     (475 . 476)     (478 . 479)     (480 . 481)
+       (482 . 483)     (484 . 485)     (486 . 487)     (488 . 489)     (490 . 491)     (492 . 493)     (494 . 495)     (497 . 499)     (498 . 499)     (500 . 501)     (502 . 405)     (503 . 447)     (504 . 505)     (506 . 507)     (508 . 509)     (510 . 511)     (512 . 513)       (514 . 515)       (516 . 517)       (518 . 519)       (520 . 521)       (522 . 523)       (524 . 525)       (526 . 527)       (528 . 529)       (530 . 531)       (532 . 533)       (534 . 535)       (536 . 537)       (538 . 539)       (540 . 541)       (542 . 543)       (544 . 414)       (546 . 547)       (548 . 549)       (550 . 551)       (552 . 553)       (554 . 555)       (556 . 557)       (558 . 559)       (560 . 561)       (562 . 563)       (570 . 11365)     (571 . 572)       (573 . 410)       (574 . 11366)     (577 . 578)       (579 . 384)       (580 . 649)       (581 . 652)       (582 . 583)     (584 . 585)     (586 . 587)     (588 . 589)     (590 . 591)     (880 . 881)     (882 . 883)
+       (886 . 887)     (895 . 1011)    (902 . 940)     (904 . 941)     (905 . 942)     (906 . 943)     (908 . 972)     (910 . 973)     (911 . 974)     (913 . 945)     (914 . 946)     (915 . 947)     (916 . 948)     (917 . 949)     (918 . 950)     (919 . 951)     (920 . 952)       (921 . 953)       (922 . 954)       (923 . 955)       (924 . 956)       (925 . 957)       (926 . 958)       (927 . 959)       (928 . 960)       (929 . 961)       (931 . 963)       (932 . 964)       (933 . 965)       (934 . 966)       (935 . 967)       (936 . 968)       (937 . 969)       (938 . 970)       (939 . 971)       (975 . 983)       (984 . 985)       (986 . 987)       (988 . 989)       (990 . 991)       (992 . 993)       (994 . 995)       (996 . 997)       (998 . 999)       (1000 . 1001)     (1002 . 1003)     (1004 . 1005)     (1006 . 1007)     (1012 . 952)      (1015 . 1016)     (1017 . 1010)   (1018 . 1019)   (1021 . 891)    (1022 . 892)    (1023 . 893)    (1024 . 1104)   (1025 . 1105)
+       (1026 . 1106)   (1027 . 1107)   (1028 . 1108)   (1029 . 1109)   (1030 . 1110)   (1031 . 1111)   (1032 . 1112)   (1033 . 1113)   (1034 . 1114)   (1035 . 1115)   (1036 . 1116)   (1037 . 1117)   (1038 . 1118)   (1039 . 1119)   (1040 . 1072)   (1041 . 1073)   (1042 . 1074)     (1043 . 1075)     (1044 . 1076)     (1045 . 1077)     (1046 . 1078)     (1047 . 1079)     (1048 . 1080)     (1049 . 1081)     (1050 . 1082)     (1051 . 1083)     (1052 . 1084)     (1053 . 1085)     (1054 . 1086)     (1055 . 1087)     (1056 . 1088)     (1057 . 1089)     (1058 . 1090)     (1059 . 1091)     (1060 . 1092)     (1061 . 1093)     (1062 . 1094)     (1063 . 1095)     (1064 . 1096)     (1065 . 1097)     (1066 . 1098)     (1067 . 1099)     (1068 . 1100)     (1069 . 1101)     (1070 . 1102)     (1071 . 1103)     (1120 . 1121)     (1122 . 1123)     (1124 . 1125)     (1126 . 1127)     (1128 . 1129)   (1130 . 1131)   (1132 . 1133)   (1134 . 1135)   (1136 . 1137)   (1138 . 1139)   (1140 . 1141)
+       (1142 . 1143)   (1144 . 1145)   (1146 . 1147)   (1148 . 1149)   (1150 . 1151)   (1152 . 1153)   (1162 . 1163)   (1164 . 1165)   (1166 . 1167)   (1168 . 1169)   (1170 . 1171)   (1172 . 1173)   (1174 . 1175)   (1176 . 1177)   (1178 . 1179)   (1180 . 1181)   (1182 . 1183)     (1184 . 1185)     (1186 . 1187)     (1188 . 1189)     (1190 . 1191)     (1192 . 1193)     (1194 . 1195)     (1196 . 1197)     (1198 . 1199)     (1200 . 1201)     (1202 . 1203)     (1204 . 1205)     (1206 . 1207)     (1208 . 1209)     (1210 . 1211)     (1212 . 1213)     (1214 . 1215)     (1216 . 1231)     (1217 . 1218)     (1219 . 1220)     (1221 . 1222)     (1223 . 1224)     (1225 . 1226)     (1227 . 1228)     (1229 . 1230)     (1232 . 1233)     (1234 . 1235)     (1236 . 1237)     (1238 . 1239)     (1240 . 1241)     (1242 . 1243)     (1244 . 1245)     (1246 . 1247)     (1248 . 1249)     (1250 . 1251)   (1252 . 1253)   (1254 . 1255)   (1256 . 1257)   (1258 . 1259)   (1260 . 1261)   (1262 . 1263)
+       (1264 . 1265)   (1266 . 1267)   (1268 . 1269)   (1270 . 1271)   (1272 . 1273)   (1274 . 1275)   (1276 . 1277)   (1278 . 1279)   (1280 . 1281)   (1282 . 1283)   (1284 . 1285)   (1286 . 1287)   (1288 . 1289)   (1290 . 1291)   (1292 . 1293)   (1294 . 1295)   (1296 . 1297)     (1298 . 1299)     (1300 . 1301)     (1302 . 1303)     (1304 . 1305)     (1306 . 1307)     (1308 . 1309)     (1310 . 1311)     (1312 . 1313)     (1314 . 1315)     (1316 . 1317)     (1318 . 1319)     (1320 . 1321)     (1322 . 1323)     (1324 . 1325)     (1326 . 1327)     (1329 . 1377)     (1330 . 1378)     (1331 . 1379)     (1332 . 1380)     (1333 . 1381)     (1334 . 1382)     (1335 . 1383)     (1336 . 1384)     (1337 . 1385)     (1338 . 1386)     (1339 . 1387)     (1340 . 1388)     (1341 . 1389)     (1342 . 1390)     (1343 . 1391)     (1344 . 1392)     (1345 . 1393)     (1346 . 1394)     (1347 . 1395)   (1348 . 1396)   (1349 . 1397)   (1350 . 1398)   (1351 . 1399)   (1352 . 1400)   (1353 . 1401)
+       (1354 . 1402)   (1355 . 1403)   (1356 . 1404)   (1357 . 1405)   (1358 . 1406)   (1359 . 1407)   (1360 . 1408)   (1361 . 1409)   (1362 . 1410)   (1363 . 1411)   (1364 . 1412)   (1365 . 1413)   (1366 . 1414)   (4256 . 11520)  (4257 . 11521)  (4258 . 11522)  (4259 . 11523)    (4260 . 11524)    (4261 . 11525)    (4262 . 11526)    (4263 . 11527)    (4264 . 11528)    (4265 . 11529)    (4266 . 11530)    (4267 . 11531)    (4268 . 11532)    (4269 . 11533)    (4270 . 11534)    (4271 . 11535)    (4272 . 11536)    (4273 . 11537)    (4274 . 11538)    (4275 . 11539)    (4276 . 11540)    (4277 . 11541)    (4278 . 11542)    (4279 . 11543)    (4280 . 11544)    (4281 . 11545)    (4282 . 11546)    (4283 . 11547)    (4284 . 11548)    (4285 . 11549)    (4286 . 11550)    (4287 . 11551)    (4288 . 11552)    (4289 . 11553)    (4290 . 11554)    (4291 . 11555)    (4292 . 11556)    (4293 . 11557)  (4295 . 11559)  (4301 . 11565)  (5024 . 43888)  (5025 . 43889)  (5026 . 43890)  (5027 . 43891)
+       (5028 . 43892)  (5029 . 43893)  (5030 . 43894)  (5031 . 43895)  (5032 . 43896)  (5033 . 43897)  (5034 . 43898)  (5035 . 43899)  (5036 . 43900)  (5037 . 43901)  (5038 . 43902)  (5039 . 43903)  (5040 . 43904)  (5041 . 43905)  (5042 . 43906)  (5043 . 43907)  (5044 . 43908)    (5045 . 43909)    (5046 . 43910)    (5047 . 43911)    (5048 . 43912)    (5049 . 43913)    (5050 . 43914)    (5051 . 43915)    (5052 . 43916)    (5053 . 43917)    (5054 . 43918)    (5055 . 43919)    (5056 . 43920)    (5057 . 43921)    (5058 . 43922)    (5059 . 43923)    (5060 . 43924)    (5061 . 43925)    (5062 . 43926)    (5063 . 43927)    (5064 . 43928)    (5065 . 43929)    (5066 . 43930)    (5067 . 43931)    (5068 . 43932)    (5069 . 43933)    (5070 . 43934)    (5071 . 43935)    (5072 . 43936)    (5073 . 43937)    (5074 . 43938)    (5075 . 43939)    (5076 . 43940)    (5077 . 43941)    (5078 . 43942)  (5079 . 43943)  (5080 . 43944)  (5081 . 43945)  (5082 . 43946)  (5083 . 43947)  (5084 . 43948)
+       (5085 . 43949)  (5086 . 43950)  (5087 . 43951)  (5088 . 43952)  (5089 . 43953)  (5090 . 43954)  (5091 . 43955)  (5092 . 43956)  (5093 . 43957)  (5094 . 43958)  (5095 . 43959)  (5096 . 43960)  (5097 . 43961)  (5098 . 43962)  (5099 . 43963)  (5100 . 43964)  (5101 . 43965)    (5102 . 43966)    (5103 . 43967)    (5104 . 5112)     (5105 . 5113)     (5106 . 5114)     (5107 . 5115)     (5108 . 5116)     (5109 . 5117)     (7680 . 7681)     (7682 . 7683)     (7684 . 7685)     (7686 . 7687)     (7688 . 7689)     (7690 . 7691)     (7692 . 7693)     (7694 . 7695)     (7696 . 7697)     (7698 . 7699)     (7700 . 7701)     (7702 . 7703)     (7704 . 7705)     (7706 . 7707)     (7708 . 7709)     (7710 . 7711)     (7712 . 7713)     (7714 . 7715)     (7716 . 7717)     (7718 . 7719)     (7720 . 7721)     (7722 . 7723)     (7724 . 7725)     (7726 . 7727)     (7728 . 7729)     (7730 . 7731)   (7732 . 7733)   (7734 . 7735)   (7736 . 7737)   (7738 . 7739)   (7740 . 7741)   (7742 . 7743)
+       (7744 . 7745)   (7746 . 7747)   (7748 . 7749)   (7750 . 7751)   (7752 . 7753)   (7754 . 7755)   (7756 . 7757)   (7758 . 7759)   (7760 . 7761)   (7762 . 7763)   (7764 . 7765)   (7766 . 7767)   (7768 . 7769)   (7770 . 7771)   (7772 . 7773)   (7774 . 7775)   (7776 . 7777)     (7778 . 7779)     (7780 . 7781)     (7782 . 7783)     (7784 . 7785)     (7786 . 7787)     (7788 . 7789)     (7790 . 7791)     (7792 . 7793)     (7794 . 7795)     (7796 . 7797)     (7798 . 7799)     (7800 . 7801)     (7802 . 7803)     (7804 . 7805)     (7806 . 7807)     (7808 . 7809)     (7810 . 7811)     (7812 . 7813)     (7814 . 7815)     (7816 . 7817)     (7818 . 7819)     (7820 . 7821)     (7822 . 7823)     (7824 . 7825)     (7826 . 7827)     (7828 . 7829)     (7838 . 223)      (7840 . 7841)     (7842 . 7843)     (7844 . 7845)     (7846 . 7847)     (7848 . 7849)     (7850 . 7851)     (7852 . 7853)   (7854 . 7855)   (7856 . 7857)   (7858 . 7859)   (7860 . 7861)   (7862 . 7863)   (7864 . 7865)
+       (7866 . 7867)   (7868 . 7869)   (7870 . 7871)   (7872 . 7873)   (7874 . 7875)   (7876 . 7877)   (7878 . 7879)   (7880 . 7881)   (7882 . 7883)   (7884 . 7885)   (7886 . 7887)   (7888 . 7889)   (7890 . 7891)   (7892 . 7893)   (7894 . 7895)   (7896 . 7897)   (7898 . 7899)     (7900 . 7901)     (7902 . 7903)     (7904 . 7905)     (7906 . 7907)     (7908 . 7909)     (7910 . 7911)     (7912 . 7913)     (7914 . 7915)     (7916 . 7917)     (7918 . 7919)     (7920 . 7921)     (7922 . 7923)     (7924 . 7925)     (7926 . 7927)     (7928 . 7929)     (7930 . 7931)     (7932 . 7933)     (7934 . 7935)     (7944 . 7936)     (7945 . 7937)     (7946 . 7938)     (7947 . 7939)     (7948 . 7940)     (7949 . 7941)     (7950 . 7942)     (7951 . 7943)     (7960 . 7952)     (7961 . 7953)     (7962 . 7954)     (7963 . 7955)     (7964 . 7956)     (7965 . 7957)     (7976 . 7968)     (7977 . 7969)   (7978 . 7970)   (7979 . 7971)   (7980 . 7972)   (7981 . 7973)   (7982 . 7974)   (7983 . 7975)
+       (7992 . 7984)   (7993 . 7985)   (7994 . 7986)   (7995 . 7987)   (7996 . 7988)   (7997 . 7989)   (7998 . 7990)   (7999 . 7991)   (8008 . 8000)   (8009 . 8001)   (8010 . 8002)   (8011 . 8003)   (8012 . 8004)   (8013 . 8005)   (8025 . 8017)   (8027 . 8019)   (8029 . 8021)     (8031 . 8023)     (8040 . 8032)     (8041 . 8033)     (8042 . 8034)     (8043 . 8035)     (8044 . 8036)     (8045 . 8037)     (8046 . 8038)     (8047 . 8039)     (8072 . 8064)     (8073 . 8065)     (8074 . 8066)     (8075 . 8067)     (8076 . 8068)     (8077 . 8069)     (8078 . 8070)     (8079 . 8071)     (8088 . 8080)     (8089 . 8081)     (8090 . 8082)     (8091 . 8083)     (8092 . 8084)     (8093 . 8085)     (8094 . 8086)     (8095 . 8087)     (8104 . 8096)     (8105 . 8097)     (8106 . 8098)     (8107 . 8099)     (8108 . 8100)     (8109 . 8101)     (8110 . 8102)     (8111 . 8103)     (8120 . 8112)   (8121 . 8113)   (8122 . 8048)   (8123 . 8049)   (8124 . 8115)   (8136 . 8050)   (8137 . 8051)
+       (8138 . 8052)   (8139 . 8053)   (8140 . 8131)   (8152 . 8144)   (8153 . 8145)   (8154 . 8054)   (8155 . 8055)   (8168 . 8160)   (8169 . 8161)   (8170 . 8058)   (8171 . 8059)   (8172 . 8165)   (8184 . 8056)   (8185 . 8057)   (8186 . 8060)   (8187 . 8061)   (8188 . 8179)     (8486 . 969)      (8490 . 107)      (8491 . 229)      (8498 . 8526)     (8544 . 8560)     (8545 . 8561)     (8546 . 8562)     (8547 . 8563)     (8548 . 8564)     (8549 . 8565)     (8550 . 8566)     (8551 . 8567)     (8552 . 8568)     (8553 . 8569)     (8554 . 8570)     (8555 . 8571)     (8556 . 8572)     (8557 . 8573)     (8558 . 8574)     (8559 . 8575)     (8579 . 8580)     (9398 . 9424)     (9399 . 9425)     (9400 . 9426)     (9401 . 9427)     (9402 . 9428)     (9403 . 9429)     (9404 . 9430)     (9405 . 9431)     (9406 . 9432)     (9407 . 9433)     (9408 . 9434)     (9409 . 9435)     (9410 . 9436)   (9411 . 9437)   (9412 . 9438)   (9413 . 9439)   (9414 . 9440)   (9415 . 9441)   (9416 . 9442)
+       (9417 . 9443)   (9418 . 9444)   (9419 . 9445)   (9420 . 9446)   (9421 . 9447)   (9422 . 9448)   (9423 . 9449)   (11264 . 11312) (11265 . 11313) (11266 . 11314) (11267 . 11315) (11268 . 11316) (11269 . 11317) (11270 . 11318) (11271 . 11319) (11272 . 11320) (11273 . 11321)   (11274 . 11322)   (11275 . 11323)   (11276 . 11324)   (11277 . 11325)   (11278 . 11326)   (11279 . 11327)   (11280 . 11328)   (11281 . 11329)   (11282 . 11330)   (11283 . 11331)   (11284 . 11332)   (11285 . 11333)   (11286 . 11334)   (11287 . 11335)   (11288 . 11336)   (11289 . 11337)   (11290 . 11338)   (11291 . 11339)   (11292 . 11340)   (11293 . 11341)   (11294 . 11342)   (11295 . 11343)   (11296 . 11344)   (11297 . 11345)   (11298 . 11346)   (11299 . 11347)   (11300 . 11348)   (11301 . 11349)   (11302 . 11350)   (11303 . 11351)   (11304 . 11352)   (11305 . 11353)   (11306 . 11354)   (11307 . 11355) (11308 . 11356) (11309 . 11357) (11310 . 11358) (11360 . 11361) (11362 . 619)   (11363 . 7549)
+       (11364 . 637)   (11367 . 11368) (11369 . 11370) (11371 . 11372) (11373 . 593)   (11374 . 625)   (11375 . 592)   (11376 . 594)   (11378 . 11379) (11381 . 11382) (11390 . 575)   (11391 . 576)   (11392 . 11393) (11394 . 11395) (11396 . 11397) (11398 . 11399) (11400 . 11401)   (11402 . 11403)   (11404 . 11405)   (11406 . 11407)   (11408 . 11409)   (11410 . 11411)   (11412 . 11413)   (11414 . 11415)   (11416 . 11417)   (11418 . 11419)   (11420 . 11421)   (11422 . 11423)   (11424 . 11425)   (11426 . 11427)   (11428 . 11429)   (11430 . 11431)   (11432 . 11433)   (11434 . 11435)   (11436 . 11437)   (11438 . 11439)   (11440 . 11441)   (11442 . 11443)   (11444 . 11445)   (11446 . 11447)   (11448 . 11449)   (11450 . 11451)   (11452 . 11453)   (11454 . 11455)   (11456 . 11457)   (11458 . 11459)   (11460 . 11461)   (11462 . 11463)   (11464 . 11465)   (11466 . 11467)   (11468 . 11469) (11470 . 11471) (11472 . 11473) (11474 . 11475) (11476 . 11477) (11478 . 11479) (11480 . 11481)
+       (11482 . 11483) (11484 . 11485) (11486 . 11487) (11488 . 11489) (11490 . 11491) (11499 . 11500) (11501 . 11502) (11506 . 11507) (42560 . 42561) (42562 . 42563) (42564 . 42565) (42566 . 42567) (42568 . 42569) (42570 . 42571) (42572 . 42573) (42574 . 42575) (42576 . 42577)   (42578 . 42579)   (42580 . 42581)   (42582 . 42583)   (42584 . 42585)   (42586 . 42587)   (42588 . 42589)   (42590 . 42591)   (42592 . 42593)   (42594 . 42595)   (42596 . 42597)   (42598 . 42599)   (42600 . 42601)   (42602 . 42603)   (42604 . 42605)   (42624 . 42625)   (42626 . 42627)   (42628 . 42629)   (42630 . 42631)   (42632 . 42633)   (42634 . 42635)   (42636 . 42637)   (42638 . 42639)   (42640 . 42641)   (42642 . 42643)   (42644 . 42645)   (42646 . 42647)   (42648 . 42649)   (42650 . 42651)   (42786 . 42787)   (42788 . 42789)   (42790 . 42791)   (42792 . 42793)   (42794 . 42795)   (42796 . 42797) (42798 . 42799) (42802 . 42803) (42804 . 42805) (42806 . 42807) (42808 . 42809) (42810 . 42811)
+       (42812 . 42813) (42814 . 42815) (42816 . 42817) (42818 . 42819) (42820 . 42821) (42822 . 42823) (42824 . 42825) (42826 . 42827) (42828 . 42829) (42830 . 42831) (42832 . 42833) (42834 . 42835) (42836 . 42837) (42838 . 42839) (42840 . 42841) (42842 . 42843) (42844 . 42845)   (42846 . 42847)   (42848 . 42849)   (42850 . 42851)   (42852 . 42853)   (42854 . 42855)   (42856 . 42857)   (42858 . 42859)   (42860 . 42861)   (42862 . 42863)   (42873 . 42874)   (42875 . 42876)   (42877 . 7545)    (42878 . 42879)   (42880 . 42881)   (42882 . 42883)   (42884 . 42885)   (42886 . 42887)   (42891 . 42892)   (42893 . 613)     (42896 . 42897)   (42898 . 42899)   (42902 . 42903)   (42904 . 42905)   (42906 . 42907)   (42908 . 42909)   (42910 . 42911)   (42912 . 42913)   (42914 . 42915)   (42916 . 42917)   (42918 . 42919)   (42920 . 42921)   (42922 . 614)     (42923 . 604)     (42924 . 609)   (42925 . 620)   (42926 . 618)   (42928 . 670)   (42929 . 647)   (42930 . 669)   (42931 . 43859)
+       (42932 . 42933) (42934 . 42935) (65313 . 65345) (65314 . 65346) (65315 . 65347) (65316 . 65348) (65317 . 65349) (65318 . 65350) (65319 . 65351) (65320 . 65352) (65321 . 65353) (65322 . 65354) (65323 . 65355) (65324 . 65356) (65325 . 65357) (65326 . 65358) (65327 . 65359)   (65328 . 65360)   (65329 . 65361)   (65330 . 65362)   (65331 . 65363)   (65332 . 65364)   (65333 . 65365)   (65334 . 65366)   (65335 . 65367)   (65336 . 65368)   (65337 . 65369)   (65338 . 65370)   (66560 . 66600)   (66561 . 66601)   (66562 . 66602)   (66563 . 66603)   (66564 . 66604)   (66565 . 66605)   (66566 . 66606)   (66567 . 66607)   (66568 . 66608)   (66569 . 66609)   (66570 . 66610)   (66571 . 66611)   (66572 . 66612)   (66573 . 66613)   (66574 . 66614)   (66575 . 66615)   (66576 . 66616)   (66577 . 66617)   (66578 . 66618)   (66579 . 66619)   (66580 . 66620)   (66581 . 66621)   (66582 . 66622) (66583 . 66623) (66584 . 66624) (66585 . 66625) (66586 . 66626) (66587 . 66627) (66588 . 66628)
+       (66589 . 66629) (66590 . 66630) (66591 . 66631) (66592 . 66632) (66593 . 66633) (66594 . 66634) (66595 . 66635) (66596 . 66636) (66597 . 66637) (66598 . 66638) (66599 . 66639) (66736 . 66776) (66737 . 66777) (66738 . 66778) (66739 . 66779) (66740 . 66780) (66741 . 66781)   (66742 . 66782)   (66743 . 66783)   (66744 . 66784)   (66745 . 66785)   (66746 . 66786)   (66747 . 66787)   (66748 . 66788)   (66749 . 66789)   (66750 . 66790)   (66751 . 66791)   (66752 . 66792)   (66753 . 66793)   (66754 . 66794)   (66755 . 66795)   (66756 . 66796)   (66757 . 66797)   (66758 . 66798)   (66759 . 66799)   (66760 . 66800)   (66761 . 66801)   (66762 . 66802)   (66763 . 66803)   (66764 . 66804)   (66765 . 66805)   (66766 . 66806)   (66767 . 66807)   (66768 . 66808)   (66769 . 66809)   (66770 . 66810)   (66771 . 66811)   (68736 . 68800)   (68737 . 68801)   (68738 . 68802)   (68739 . 68803) (68740 . 68804) (68741 . 68805) (68742 . 68806) (68743 . 68807) (68744 . 68808) (68745 . 68809)
+       (68746 . 68810) (68747 . 68811) (68748 . 68812) (68749 . 68813) (68750 . 68814) (68751 . 68815) (68752 . 68816) (68753 . 68817) (68754 . 68818) (68755 . 68819) (68756 . 68820) (68757 . 68821) (68758 . 68822) (68759 . 68823) (68760 . 68824) (68761 . 68825) (68762 . 68826)   (68763 . 68827)   (68764 . 68828)   (68765 . 68829)   (68766 . 68830)   (68767 . 68831)   (68768 . 68832)   (68769 . 68833)   (68770 . 68834)   (68771 . 68835)   (68772 . 68836)   (68773 . 68837)   (68774 . 68838)   (68775 . 68839)   (68776 . 68840)   (68777 . 68841)   (68778 . 68842)   (68779 . 68843)   (68780 . 68844)   (68781 . 68845)   (68782 . 68846)   (68783 . 68847)   (68784 . 68848)   (68785 . 68849)   (68786 . 68850)   (71840 . 71872)   (71841 . 71873)   (71842 . 71874)   (71843 . 71875)   (71844 . 71876)   (71845 . 71877)   (71846 . 71878)   (71847 . 71879)   (71848 . 71880)   (71849 . 71881) (71850 . 71882) (71851 . 71883) (71852 . 71884) (71853 . 71885) (71854 . 71886) (71855 . 71887)
+       (71856 . 71888) (71857 . 71889) (71858 . 71890) (71859 . 71891) (71860 . 71892) (71861 . 71893) (71862 . 71894) (71863 . 71895) (71864 . 71896) (71865 . 71897) (71866 . 71898) (71867 . 71899) (71868 . 71900) (71869 . 71901) (71870 . 71902) (71871 . 71903) (125184 . 125218) (125185 . 125219) (125186 . 125220) (125187 . 125221) (125188 . 125222) (125189 . 125223) (125190 . 125224) (125191 . 125225) (125192 . 125226) (125193 . 125227) (125194 . 125228) (125195 . 125229) (125196 . 125230) (125197 . 125231) (125198 . 125232) (125199 . 125233) (125200 . 125234) (125201 . 125235) (125202 . 125236) (125203 . 125237) (125204 . 125238) (125205 . 125239) (125206 . 125240) (125207 . 125241) (125208 . 125242) (125209 . 125243) (125210 . 125244) (125211 . 125245) (125212 . 125246) (125213 . 125247) (125214 . 125248) (125215 . 125249) (125216 . 125250) (125217 . 125251)))
+    table))
index 3b24743ed36b6e471e823d9a946282d91c0d722d..23e7f5addad970d14613709b34f24f3845534048 100644 (file)
@@ -26,21753 +26,40 @@ USA.
 
 ;;;; UCD property: suc
 
-;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T00:05:11-08
+;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T23:45:17-08
 
 (declare (usual-integrations))
 \f
-
-(define-deferred ucd-suc-value
-  (let ((offsets (bytevector 72 5 129 5 135 5 242 0 242 0 242 0 242 0 242 0 242 0 242 0 242 0 242 0 242 0 242 0 138 5 140 5 140 5)))
-    (named-lambda (ucd-suc-value sv)
-      ((vector-ref ucd-suc-entries (bytevector-u16le-ref offsets (fix:and 62 (fix:lsh sv -15)))) sv ucd-suc-entries))))
-
-(define (ucd-suc-entry-0 sv table)
-  sv
-  table
-  #f)
-
-(define (ucd-suc-entry-1 sv table)
-  sv
-  table
-  65)
-
-(define (ucd-suc-entry-2 sv table)
-  sv
-  table
-  66)
-
-(define (ucd-suc-entry-3 sv table)
-  sv
-  table
-  67)
-
-(define (ucd-suc-entry-4 sv table)
-  sv
-  table
-  68)
-
-(define (ucd-suc-entry-5 sv table)
-  sv
-  table
-  69)
-
-(define (ucd-suc-entry-6 sv table)
-  sv
-  table
-  70)
-
-(define (ucd-suc-entry-7 sv table)
-  sv
-  table
-  71)
-
-(define (ucd-suc-entry-8 sv table)
-  sv
-  table
-  72)
-
-(define (ucd-suc-entry-9 sv table)
-  sv
-  table
-  73)
-
-(define (ucd-suc-entry-10 sv table)
-  sv
-  table
-  74)
-
-(define (ucd-suc-entry-11 sv table)
-  sv
-  table
-  75)
-
-(define (ucd-suc-entry-12 sv table)
-  sv
-  table
-  76)
-
-(define (ucd-suc-entry-13 sv table)
-  sv
-  table
-  77)
-
-(define (ucd-suc-entry-14 sv table)
-  sv
-  table
-  78)
-
-(define (ucd-suc-entry-15 sv table)
-  sv
-  table
-  79)
-
-(define (ucd-suc-entry-16 sv table)
-  sv
-  table
-  80)
-
-(define (ucd-suc-entry-17 sv table)
-  sv
-  table
-  81)
-
-(define (ucd-suc-entry-18 sv table)
-  sv
-  table
-  82)
-
-(define (ucd-suc-entry-19 sv table)
-  sv
-  table
-  83)
-
-(define (ucd-suc-entry-20 sv table)
-  sv
-  table
-  84)
-
-(define (ucd-suc-entry-21 sv table)
-  sv
-  table
-  85)
-
-(define (ucd-suc-entry-22 sv table)
-  sv
-  table
-  86)
-
-(define (ucd-suc-entry-23 sv table)
-  sv
-  table
-  87)
-
-(define (ucd-suc-entry-24 sv table)
-  sv
-  table
-  88)
-
-(define (ucd-suc-entry-25 sv table)
-  sv
-  table
-  89)
-
-(define (ucd-suc-entry-26 sv table)
-  sv
-  table
-  90)
-
-(define (ucd-suc-entry-27 sv table)
-  sv
-  table
-  924)
-
-(define (ucd-suc-entry-28 sv table)
-  sv
-  table
-  192)
-
-(define (ucd-suc-entry-29 sv table)
-  sv
-  table
-  193)
-
-(define (ucd-suc-entry-30 sv table)
-  sv
-  table
-  194)
-
-(define (ucd-suc-entry-31 sv table)
-  sv
-  table
-  195)
-
-(define (ucd-suc-entry-32 sv table)
-  sv
-  table
-  196)
-
-(define (ucd-suc-entry-33 sv table)
-  sv
-  table
-  197)
-
-(define (ucd-suc-entry-34 sv table)
-  sv
-  table
-  198)
-
-(define (ucd-suc-entry-35 sv table)
-  sv
-  table
-  199)
-
-(define (ucd-suc-entry-36 sv table)
-  sv
-  table
-  200)
-
-(define (ucd-suc-entry-37 sv table)
-  sv
-  table
-  201)
-
-(define (ucd-suc-entry-38 sv table)
-  sv
-  table
-  202)
-
-(define (ucd-suc-entry-39 sv table)
-  sv
-  table
-  203)
-
-(define (ucd-suc-entry-40 sv table)
-  sv
-  table
-  204)
-
-(define (ucd-suc-entry-41 sv table)
-  sv
-  table
-  205)
-
-(define (ucd-suc-entry-42 sv table)
-  sv
-  table
-  206)
-
-(define (ucd-suc-entry-43 sv table)
-  sv
-  table
-  207)
-
-(define (ucd-suc-entry-44 sv table)
-  sv
-  table
-  208)
-
-(define (ucd-suc-entry-45 sv table)
-  sv
-  table
-  209)
-
-(define (ucd-suc-entry-46 sv table)
-  sv
-  table
-  210)
-
-(define (ucd-suc-entry-47 sv table)
-  sv
-  table
-  211)
-
-(define (ucd-suc-entry-48 sv table)
-  sv
-  table
-  212)
-
-(define (ucd-suc-entry-49 sv table)
-  sv
-  table
-  213)
-
-(define (ucd-suc-entry-50 sv table)
-  sv
-  table
-  214)
-
-(define (ucd-suc-entry-51 sv table)
-  sv
-  table
-  216)
-
-(define (ucd-suc-entry-52 sv table)
-  sv
-  table
-  217)
-
-(define (ucd-suc-entry-53 sv table)
-  sv
-  table
-  218)
-
-(define (ucd-suc-entry-54 sv table)
-  sv
-  table
-  219)
-
-(define (ucd-suc-entry-55 sv table)
-  sv
-  table
-  220)
-
-(define (ucd-suc-entry-56 sv table)
-  sv
-  table
-  221)
-
-(define (ucd-suc-entry-57 sv table)
-  sv
-  table
-  222)
-
-(define (ucd-suc-entry-58 sv table)
-  sv
-  table
-  376)
-
-(define (ucd-suc-entry-59 sv table)
-  sv
-  table
-  256)
-
-(define (ucd-suc-entry-60 sv table)
-  sv
-  table
-  258)
-
-(define (ucd-suc-entry-61 sv table)
-  sv
-  table
-  260)
-
-(define (ucd-suc-entry-62 sv table)
-  sv
-  table
-  262)
-
-(define (ucd-suc-entry-63 sv table)
-  sv
-  table
-  264)
-
-(define (ucd-suc-entry-64 sv table)
-  sv
-  table
-  266)
-
-(define (ucd-suc-entry-65 sv table)
-  sv
-  table
-  268)
-
-(define (ucd-suc-entry-66 sv table)
-  sv
-  table
-  270)
-
-(define (ucd-suc-entry-67 sv table)
-  sv
-  table
-  272)
-
-(define (ucd-suc-entry-68 sv table)
-  sv
-  table
-  274)
-
-(define (ucd-suc-entry-69 sv table)
-  sv
-  table
-  276)
-
-(define (ucd-suc-entry-70 sv table)
-  sv
-  table
-  278)
-
-(define (ucd-suc-entry-71 sv table)
-  sv
-  table
-  280)
-
-(define (ucd-suc-entry-72 sv table)
-  sv
-  table
-  282)
-
-(define (ucd-suc-entry-73 sv table)
-  sv
-  table
-  284)
-
-(define (ucd-suc-entry-74 sv table)
-  sv
-  table
-  286)
-
-(define (ucd-suc-entry-75 sv table)
-  sv
-  table
-  288)
-
-(define (ucd-suc-entry-76 sv table)
-  sv
-  table
-  290)
-
-(define (ucd-suc-entry-77 sv table)
-  sv
-  table
-  292)
-
-(define (ucd-suc-entry-78 sv table)
-  sv
-  table
-  294)
-
-(define (ucd-suc-entry-79 sv table)
-  sv
-  table
-  296)
-
-(define (ucd-suc-entry-80 sv table)
-  sv
-  table
-  298)
-
-(define (ucd-suc-entry-81 sv table)
-  sv
-  table
-  300)
-
-(define (ucd-suc-entry-82 sv table)
-  sv
-  table
-  302)
-
-(define (ucd-suc-entry-83 sv table)
-  sv
-  table
-  306)
-
-(define (ucd-suc-entry-84 sv table)
-  sv
-  table
-  308)
-
-(define (ucd-suc-entry-85 sv table)
-  sv
-  table
-  310)
-
-(define (ucd-suc-entry-86 sv table)
-  sv
-  table
-  313)
-
-(define (ucd-suc-entry-87 sv table)
-  sv
-  table
-  315)
-
-(define (ucd-suc-entry-88 sv table)
-  sv
-  table
-  317)
-
-(define (ucd-suc-entry-89 sv table)
-  sv
-  table
-  319)
-
-(define (ucd-suc-entry-90 sv table)
-  sv
-  table
-  321)
-
-(define (ucd-suc-entry-91 sv table)
-  sv
-  table
-  323)
-
-(define (ucd-suc-entry-92 sv table)
-  sv
-  table
-  325)
-
-(define (ucd-suc-entry-93 sv table)
-  sv
-  table
-  327)
-
-(define (ucd-suc-entry-94 sv table)
-  sv
-  table
-  330)
-
-(define (ucd-suc-entry-95 sv table)
-  sv
-  table
-  332)
-
-(define (ucd-suc-entry-96 sv table)
-  sv
-  table
-  334)
-
-(define (ucd-suc-entry-97 sv table)
-  sv
-  table
-  336)
-
-(define (ucd-suc-entry-98 sv table)
-  sv
-  table
-  338)
-
-(define (ucd-suc-entry-99 sv table)
-  sv
-  table
-  340)
-
-(define (ucd-suc-entry-100 sv table)
-  sv
-  table
-  342)
-
-(define (ucd-suc-entry-101 sv table)
-  sv
-  table
-  344)
-
-(define (ucd-suc-entry-102 sv table)
-  sv
-  table
-  346)
-
-(define (ucd-suc-entry-103 sv table)
-  sv
-  table
-  348)
-
-(define (ucd-suc-entry-104 sv table)
-  sv
-  table
-  350)
-
-(define (ucd-suc-entry-105 sv table)
-  sv
-  table
-  352)
-
-(define (ucd-suc-entry-106 sv table)
-  sv
-  table
-  354)
-
-(define (ucd-suc-entry-107 sv table)
-  sv
-  table
-  356)
-
-(define (ucd-suc-entry-108 sv table)
-  sv
-  table
-  358)
-
-(define (ucd-suc-entry-109 sv table)
-  sv
-  table
-  360)
-
-(define (ucd-suc-entry-110 sv table)
-  sv
-  table
-  362)
-
-(define (ucd-suc-entry-111 sv table)
-  sv
-  table
-  364)
-
-(define (ucd-suc-entry-112 sv table)
-  sv
-  table
-  366)
-
-(define (ucd-suc-entry-113 sv table)
-  sv
-  table
-  368)
-
-(define (ucd-suc-entry-114 sv table)
-  sv
-  table
-  370)
-
-(define (ucd-suc-entry-115 sv table)
-  sv
-  table
-  372)
-
-(define (ucd-suc-entry-116 sv table)
-  sv
-  table
-  374)
-
-(define (ucd-suc-entry-117 sv table)
-  sv
-  table
-  377)
-
-(define (ucd-suc-entry-118 sv table)
-  sv
-  table
-  379)
-
-(define (ucd-suc-entry-119 sv table)
-  sv
-  table
-  381)
-
-(define (ucd-suc-entry-120 sv table)
-  sv
-  table
-  579)
-
-(define (ucd-suc-entry-121 sv table)
-  sv
-  table
-  386)
-
-(define (ucd-suc-entry-122 sv table)
-  sv
-  table
-  388)
-
-(define (ucd-suc-entry-123 sv table)
-  sv
-  table
-  391)
-
-(define (ucd-suc-entry-124 sv table)
-  sv
-  table
-  395)
-
-(define (ucd-suc-entry-125 sv table)
-  sv
-  table
-  401)
-
-(define (ucd-suc-entry-126 sv table)
-  sv
-  table
-  502)
-
-(define (ucd-suc-entry-127 sv table)
-  sv
-  table
-  408)
-
-(define (ucd-suc-entry-128 sv table)
-  sv
-  table
-  573)
-
-(define (ucd-suc-entry-129 sv table)
-  sv
-  table
-  544)
-
-(define (ucd-suc-entry-130 sv table)
-  sv
-  table
-  416)
-
-(define (ucd-suc-entry-131 sv table)
-  sv
-  table
-  418)
-
-(define (ucd-suc-entry-132 sv table)
-  sv
-  table
-  420)
-
-(define (ucd-suc-entry-133 sv table)
-  sv
-  table
-  423)
-
-(define (ucd-suc-entry-134 sv table)
-  sv
-  table
-  428)
-
-(define (ucd-suc-entry-135 sv table)
-  sv
-  table
-  431)
-
-(define (ucd-suc-entry-136 sv table)
-  sv
-  table
-  435)
-
-(define (ucd-suc-entry-137 sv table)
-  sv
-  table
-  437)
-
-(define (ucd-suc-entry-138 sv table)
-  sv
-  table
-  440)
-
-(define (ucd-suc-entry-139 sv table)
-  sv
-  table
-  444)
-
-(define (ucd-suc-entry-140 sv table)
-  sv
-  table
-  503)
-
-(define (ucd-suc-entry-141 sv table)
-  sv
-  table
-  452)
-
-(define (ucd-suc-entry-142 sv table)
-  sv
-  table
-  455)
-
-(define (ucd-suc-entry-143 sv table)
-  sv
-  table
-  458)
-
-(define (ucd-suc-entry-144 sv table)
-  sv
-  table
-  461)
-
-(define (ucd-suc-entry-145 sv table)
-  sv
-  table
-  463)
-
-(define (ucd-suc-entry-146 sv table)
-  sv
-  table
-  465)
-
-(define (ucd-suc-entry-147 sv table)
-  sv
-  table
-  467)
-
-(define (ucd-suc-entry-148 sv table)
-  sv
-  table
-  469)
-
-(define (ucd-suc-entry-149 sv table)
-  sv
-  table
-  471)
-
-(define (ucd-suc-entry-150 sv table)
-  sv
-  table
-  473)
-
-(define (ucd-suc-entry-151 sv table)
-  sv
-  table
-  475)
-
-(define (ucd-suc-entry-152 sv table)
-  sv
-  table
-  398)
-
-(define (ucd-suc-entry-153 sv table)
-  sv
-  table
-  478)
-
-(define (ucd-suc-entry-154 sv table)
-  sv
-  table
-  480)
-
-(define (ucd-suc-entry-155 sv table)
-  sv
-  table
-  482)
-
-(define (ucd-suc-entry-156 sv table)
-  sv
-  table
-  484)
-
-(define (ucd-suc-entry-157 sv table)
-  sv
-  table
-  486)
-
-(define (ucd-suc-entry-158 sv table)
-  sv
-  table
-  488)
-
-(define (ucd-suc-entry-159 sv table)
-  sv
-  table
-  490)
-
-(define (ucd-suc-entry-160 sv table)
-  sv
-  table
-  492)
-
-(define (ucd-suc-entry-161 sv table)
-  sv
-  table
-  494)
-
-(define (ucd-suc-entry-162 sv table)
-  sv
-  table
-  497)
-
-(define (ucd-suc-entry-163 sv table)
-  sv
-  table
-  500)
-
-(define (ucd-suc-entry-164 sv table)
-  sv
-  table
-  504)
-
-(define (ucd-suc-entry-165 sv table)
-  sv
-  table
-  506)
-
-(define (ucd-suc-entry-166 sv table)
-  sv
-  table
-  508)
-
-(define (ucd-suc-entry-167 sv table)
-  sv
-  table
-  510)
-
-(define (ucd-suc-entry-168 sv table)
-  sv
-  table
-  512)
-
-(define (ucd-suc-entry-169 sv table)
-  sv
-  table
-  514)
-
-(define (ucd-suc-entry-170 sv table)
-  sv
-  table
-  516)
-
-(define (ucd-suc-entry-171 sv table)
-  sv
-  table
-  518)
-
-(define (ucd-suc-entry-172 sv table)
-  sv
-  table
-  520)
-
-(define (ucd-suc-entry-173 sv table)
-  sv
-  table
-  522)
-
-(define (ucd-suc-entry-174 sv table)
-  sv
-  table
-  524)
-
-(define (ucd-suc-entry-175 sv table)
-  sv
-  table
-  526)
-
-(define (ucd-suc-entry-176 sv table)
-  sv
-  table
-  528)
-
-(define (ucd-suc-entry-177 sv table)
-  sv
-  table
-  530)
-
-(define (ucd-suc-entry-178 sv table)
-  sv
-  table
-  532)
-
-(define (ucd-suc-entry-179 sv table)
-  sv
-  table
-  534)
-
-(define (ucd-suc-entry-180 sv table)
-  sv
-  table
-  536)
-
-(define (ucd-suc-entry-181 sv table)
-  sv
-  table
-  538)
-
-(define (ucd-suc-entry-182 sv table)
-  sv
-  table
-  540)
-
-(define (ucd-suc-entry-183 sv table)
-  sv
-  table
-  542)
-
-(define (ucd-suc-entry-184 sv table)
-  sv
-  table
-  546)
-
-(define (ucd-suc-entry-185 sv table)
-  sv
-  table
-  548)
-
-(define (ucd-suc-entry-186 sv table)
-  sv
-  table
-  550)
-
-(define (ucd-suc-entry-187 sv table)
-  sv
-  table
-  552)
-
-(define (ucd-suc-entry-188 sv table)
-  sv
-  table
-  554)
-
-(define (ucd-suc-entry-189 sv table)
-  sv
-  table
-  556)
-
-(define (ucd-suc-entry-190 sv table)
-  sv
-  table
-  558)
-
-(define (ucd-suc-entry-191 sv table)
-  sv
-  table
-  560)
-
-(define (ucd-suc-entry-192 sv table)
-  sv
-  table
-  562)
-
-(define (ucd-suc-entry-193 sv table)
-  sv
-  table
-  571)
-
-(define (ucd-suc-entry-194 sv table)
-  sv
-  table
-  11390)
-
-(define (ucd-suc-entry-195 sv table)
-  sv
-  table
-  11391)
-
-(define (ucd-suc-entry-196 sv table)
-  sv
-  table
-  577)
-
-(define (ucd-suc-entry-197 sv table)
-  sv
-  table
-  582)
-
-(define (ucd-suc-entry-198 sv table)
-  sv
-  table
-  584)
-
-(define (ucd-suc-entry-199 sv table)
-  sv
-  table
-  586)
-
-(define (ucd-suc-entry-200 sv table)
-  sv
-  table
-  588)
-
-(define (ucd-suc-entry-201 sv table)
-  sv
-  table
-  590)
-
-(define (ucd-suc-entry-202 sv table)
-  sv
-  table
-  11375)
-
-(define (ucd-suc-entry-203 sv table)
-  sv
-  table
-  11373)
-
-(define (ucd-suc-entry-204 sv table)
-  sv
-  table
-  11376)
-
-(define (ucd-suc-entry-205 sv table)
-  sv
-  table
-  385)
-
-(define (ucd-suc-entry-206 sv table)
-  sv
-  table
-  390)
-
-(define (ucd-suc-entry-207 sv table)
-  sv
-  table
-  393)
-
-(define (ucd-suc-entry-208 sv table)
-  sv
-  table
-  394)
-
-(define (ucd-suc-entry-209 sv table)
-  sv
-  table
-  399)
-
-(define (ucd-suc-entry-210 sv table)
-  sv
-  table
-  400)
-
-(define (ucd-suc-entry-211 sv table)
-  sv
-  table
-  42923)
-
-(define (ucd-suc-entry-212 sv table)
-  sv
-  table
-  403)
-
-(define (ucd-suc-entry-213 sv table)
-  sv
-  table
-  42924)
-
-(define (ucd-suc-entry-214 sv table)
-  sv
-  table
-  404)
-
-(define (ucd-suc-entry-215 sv table)
-  sv
-  table
-  42893)
-
-(define (ucd-suc-entry-216 sv table)
-  sv
-  table
-  42922)
-
-(define (ucd-suc-entry-217 sv table)
-  sv
-  table
-  407)
-
-(define (ucd-suc-entry-218 sv table)
-  sv
-  table
-  406)
-
-(define (ucd-suc-entry-219 sv table)
-  sv
-  table
-  42926)
-
-(define (ucd-suc-entry-220 sv table)
-  sv
-  table
-  11362)
-
-(define (ucd-suc-entry-221 sv table)
-  sv
-  table
-  42925)
-
-(define (ucd-suc-entry-222 sv table)
-  sv
-  table
-  412)
-
-(define (ucd-suc-entry-223 sv table)
-  sv
-  table
-  11374)
-
-(define (ucd-suc-entry-224 sv table)
-  sv
-  table
-  413)
-
-(define (ucd-suc-entry-225 sv table)
-  sv
-  table
-  415)
-
-(define (ucd-suc-entry-226 sv table)
-  sv
-  table
-  11364)
-
-(define (ucd-suc-entry-227 sv table)
-  sv
-  table
-  422)
-
-(define (ucd-suc-entry-228 sv table)
-  sv
-  table
-  425)
-
-(define (ucd-suc-entry-229 sv table)
-  sv
-  table
-  42929)
-
-(define (ucd-suc-entry-230 sv table)
-  sv
-  table
-  430)
-
-(define (ucd-suc-entry-231 sv table)
-  sv
-  table
-  580)
-
-(define (ucd-suc-entry-232 sv table)
-  sv
-  table
-  433)
-
-(define (ucd-suc-entry-233 sv table)
-  sv
-  table
-  434)
-
-(define (ucd-suc-entry-234 sv table)
-  sv
-  table
-  581)
-
-(define (ucd-suc-entry-235 sv table)
-  sv
-  table
-  439)
-
-(define (ucd-suc-entry-236 sv table)
-  sv
-  table
-  42930)
-
-(define (ucd-suc-entry-237 sv table)
-  sv
-  table
-  42928)
-
-(define (ucd-suc-entry-238 sv table)
-  sv
-  table
-  921)
-
-(define (ucd-suc-entry-239 sv table)
-  sv
-  table
-  880)
-
-(define (ucd-suc-entry-240 sv table)
-  sv
-  table
-  882)
-
-(define (ucd-suc-entry-241 sv table)
-  sv
-  table
-  886)
-
-(define (ucd-suc-entry-242 sv table)
-  sv
-  table
-  #!default)
-
-(define (ucd-suc-entry-243 sv table)
-  sv
-  table
-  1021)
-
-(define (ucd-suc-entry-244 sv table)
-  sv
-  table
-  1022)
-
-(define (ucd-suc-entry-245 sv table)
-  sv
-  table
-  1023)
-
-(define (ucd-suc-entry-246 sv table)
-  sv
-  table
-  902)
-
-(define (ucd-suc-entry-247 sv table)
-  sv
-  table
-  904)
-
-(define (ucd-suc-entry-248 sv table)
-  sv
-  table
-  905)
-
-(define (ucd-suc-entry-249 sv table)
-  sv
-  table
-  906)
-
-(define (ucd-suc-entry-250 sv table)
-  sv
-  table
-  913)
-
-(define (ucd-suc-entry-251 sv table)
-  sv
-  table
-  914)
-
-(define (ucd-suc-entry-252 sv table)
-  sv
-  table
-  915)
-
-(define (ucd-suc-entry-253 sv table)
-  sv
-  table
-  916)
-
-(define (ucd-suc-entry-254 sv table)
-  sv
-  table
-  917)
-
-(define (ucd-suc-entry-255 sv table)
-  sv
-  table
-  918)
-
-(define (ucd-suc-entry-256 sv table)
-  sv
-  table
-  919)
-
-(define (ucd-suc-entry-257 sv table)
-  sv
-  table
-  920)
-
-(define (ucd-suc-entry-258 sv table)
-  sv
-  table
-  922)
-
-(define (ucd-suc-entry-259 sv table)
-  sv
-  table
-  923)
-
-(define (ucd-suc-entry-260 sv table)
-  sv
-  table
-  925)
-
-(define (ucd-suc-entry-261 sv table)
-  sv
-  table
-  926)
-
-(define (ucd-suc-entry-262 sv table)
-  sv
-  table
-  927)
-
-(define (ucd-suc-entry-263 sv table)
-  sv
-  table
-  928)
-
-(define (ucd-suc-entry-264 sv table)
-  sv
-  table
-  929)
-
-(define (ucd-suc-entry-265 sv table)
-  sv
-  table
-  931)
-
-(define (ucd-suc-entry-266 sv table)
-  sv
-  table
-  932)
-
-(define (ucd-suc-entry-267 sv table)
-  sv
-  table
-  933)
-
-(define (ucd-suc-entry-268 sv table)
-  sv
-  table
-  934)
-
-(define (ucd-suc-entry-269 sv table)
-  sv
-  table
-  935)
-
-(define (ucd-suc-entry-270 sv table)
-  sv
-  table
-  936)
-
-(define (ucd-suc-entry-271 sv table)
-  sv
-  table
-  937)
-
-(define (ucd-suc-entry-272 sv table)
-  sv
-  table
-  938)
-
-(define (ucd-suc-entry-273 sv table)
-  sv
-  table
-  939)
-
-(define (ucd-suc-entry-274 sv table)
-  sv
-  table
-  908)
-
-(define (ucd-suc-entry-275 sv table)
-  sv
-  table
-  910)
-
-(define (ucd-suc-entry-276 sv table)
-  sv
-  table
-  911)
-
-(define (ucd-suc-entry-277 sv table)
-  sv
-  table
-  975)
-
-(define (ucd-suc-entry-278 sv table)
-  sv
-  table
-  984)
-
-(define (ucd-suc-entry-279 sv table)
-  sv
-  table
-  986)
-
-(define (ucd-suc-entry-280 sv table)
-  sv
-  table
-  988)
-
-(define (ucd-suc-entry-281 sv table)
-  sv
-  table
-  990)
-
-(define (ucd-suc-entry-282 sv table)
-  sv
-  table
-  992)
-
-(define (ucd-suc-entry-283 sv table)
-  sv
-  table
-  994)
-
-(define (ucd-suc-entry-284 sv table)
-  sv
-  table
-  996)
-
-(define (ucd-suc-entry-285 sv table)
-  sv
-  table
-  998)
-
-(define (ucd-suc-entry-286 sv table)
-  sv
-  table
-  1000)
-
-(define (ucd-suc-entry-287 sv table)
-  sv
-  table
-  1002)
-
-(define (ucd-suc-entry-288 sv table)
-  sv
-  table
-  1004)
-
-(define (ucd-suc-entry-289 sv table)
-  sv
-  table
-  1006)
-
-(define (ucd-suc-entry-290 sv table)
-  sv
-  table
-  1017)
-
-(define (ucd-suc-entry-291 sv table)
-  sv
-  table
-  895)
-
-(define (ucd-suc-entry-292 sv table)
-  sv
-  table
-  1015)
-
-(define (ucd-suc-entry-293 sv table)
-  sv
-  table
-  1018)
-
-(define (ucd-suc-entry-294 sv table)
-  sv
-  table
-  1040)
-
-(define (ucd-suc-entry-295 sv table)
-  sv
-  table
-  1041)
-
-(define (ucd-suc-entry-296 sv table)
-  sv
-  table
-  1042)
-
-(define (ucd-suc-entry-297 sv table)
-  sv
-  table
-  1043)
-
-(define (ucd-suc-entry-298 sv table)
-  sv
-  table
-  1044)
-
-(define (ucd-suc-entry-299 sv table)
-  sv
-  table
-  1045)
-
-(define (ucd-suc-entry-300 sv table)
-  sv
-  table
-  1046)
-
-(define (ucd-suc-entry-301 sv table)
-  sv
-  table
-  1047)
-
-(define (ucd-suc-entry-302 sv table)
-  sv
-  table
-  1048)
-
-(define (ucd-suc-entry-303 sv table)
-  sv
-  table
-  1049)
-
-(define (ucd-suc-entry-304 sv table)
-  sv
-  table
-  1050)
-
-(define (ucd-suc-entry-305 sv table)
-  sv
-  table
-  1051)
-
-(define (ucd-suc-entry-306 sv table)
-  sv
-  table
-  1052)
-
-(define (ucd-suc-entry-307 sv table)
-  sv
-  table
-  1053)
-
-(define (ucd-suc-entry-308 sv table)
-  sv
-  table
-  1054)
-
-(define (ucd-suc-entry-309 sv table)
-  sv
-  table
-  1055)
-
-(define (ucd-suc-entry-310 sv table)
-  sv
-  table
-  1056)
-
-(define (ucd-suc-entry-311 sv table)
-  sv
-  table
-  1057)
-
-(define (ucd-suc-entry-312 sv table)
-  sv
-  table
-  1058)
-
-(define (ucd-suc-entry-313 sv table)
-  sv
-  table
-  1059)
-
-(define (ucd-suc-entry-314 sv table)
-  sv
-  table
-  1060)
-
-(define (ucd-suc-entry-315 sv table)
-  sv
-  table
-  1061)
-
-(define (ucd-suc-entry-316 sv table)
-  sv
-  table
-  1062)
-
-(define (ucd-suc-entry-317 sv table)
-  sv
-  table
-  1063)
-
-(define (ucd-suc-entry-318 sv table)
-  sv
-  table
-  1064)
-
-(define (ucd-suc-entry-319 sv table)
-  sv
-  table
-  1065)
-
-(define (ucd-suc-entry-320 sv table)
-  sv
-  table
-  1066)
-
-(define (ucd-suc-entry-321 sv table)
-  sv
-  table
-  1067)
-
-(define (ucd-suc-entry-322 sv table)
-  sv
-  table
-  1068)
-
-(define (ucd-suc-entry-323 sv table)
-  sv
-  table
-  1069)
-
-(define (ucd-suc-entry-324 sv table)
-  sv
-  table
-  1070)
-
-(define (ucd-suc-entry-325 sv table)
-  sv
-  table
-  1071)
-
-(define (ucd-suc-entry-326 sv table)
-  sv
-  table
-  1024)
-
-(define (ucd-suc-entry-327 sv table)
-  sv
-  table
-  1025)
-
-(define (ucd-suc-entry-328 sv table)
-  sv
-  table
-  1026)
-
-(define (ucd-suc-entry-329 sv table)
-  sv
-  table
-  1027)
-
-(define (ucd-suc-entry-330 sv table)
-  sv
-  table
-  1028)
-
-(define (ucd-suc-entry-331 sv table)
-  sv
-  table
-  1029)
-
-(define (ucd-suc-entry-332 sv table)
-  sv
-  table
-  1030)
-
-(define (ucd-suc-entry-333 sv table)
-  sv
-  table
-  1031)
-
-(define (ucd-suc-entry-334 sv table)
-  sv
-  table
-  1032)
-
-(define (ucd-suc-entry-335 sv table)
-  sv
-  table
-  1033)
-
-(define (ucd-suc-entry-336 sv table)
-  sv
-  table
-  1034)
-
-(define (ucd-suc-entry-337 sv table)
-  sv
-  table
-  1035)
-
-(define (ucd-suc-entry-338 sv table)
-  sv
-  table
-  1036)
-
-(define (ucd-suc-entry-339 sv table)
-  sv
-  table
-  1037)
-
-(define (ucd-suc-entry-340 sv table)
-  sv
-  table
-  1038)
-
-(define (ucd-suc-entry-341 sv table)
-  sv
-  table
-  1039)
-
-(define (ucd-suc-entry-342 sv table)
-  sv
-  table
-  1120)
-
-(define (ucd-suc-entry-343 sv table)
-  sv
-  table
-  1122)
-
-(define (ucd-suc-entry-344 sv table)
-  sv
-  table
-  1124)
-
-(define (ucd-suc-entry-345 sv table)
-  sv
-  table
-  1126)
-
-(define (ucd-suc-entry-346 sv table)
-  sv
-  table
-  1128)
-
-(define (ucd-suc-entry-347 sv table)
-  sv
-  table
-  1130)
-
-(define (ucd-suc-entry-348 sv table)
-  sv
-  table
-  1132)
-
-(define (ucd-suc-entry-349 sv table)
-  sv
-  table
-  1134)
-
-(define (ucd-suc-entry-350 sv table)
-  sv
-  table
-  1136)
-
-(define (ucd-suc-entry-351 sv table)
-  sv
-  table
-  1138)
-
-(define (ucd-suc-entry-352 sv table)
-  sv
-  table
-  1140)
-
-(define (ucd-suc-entry-353 sv table)
-  sv
-  table
-  1142)
-
-(define (ucd-suc-entry-354 sv table)
-  sv
-  table
-  1144)
-
-(define (ucd-suc-entry-355 sv table)
-  sv
-  table
-  1146)
-
-(define (ucd-suc-entry-356 sv table)
-  sv
-  table
-  1148)
-
-(define (ucd-suc-entry-357 sv table)
-  sv
-  table
-  1150)
-
-(define (ucd-suc-entry-358 sv table)
-  sv
-  table
-  1152)
-
-(define (ucd-suc-entry-359 sv table)
-  sv
-  table
-  1162)
-
-(define (ucd-suc-entry-360 sv table)
-  sv
-  table
-  1164)
-
-(define (ucd-suc-entry-361 sv table)
-  sv
-  table
-  1166)
-
-(define (ucd-suc-entry-362 sv table)
-  sv
-  table
-  1168)
-
-(define (ucd-suc-entry-363 sv table)
-  sv
-  table
-  1170)
-
-(define (ucd-suc-entry-364 sv table)
-  sv
-  table
-  1172)
-
-(define (ucd-suc-entry-365 sv table)
-  sv
-  table
-  1174)
-
-(define (ucd-suc-entry-366 sv table)
-  sv
-  table
-  1176)
-
-(define (ucd-suc-entry-367 sv table)
-  sv
-  table
-  1178)
-
-(define (ucd-suc-entry-368 sv table)
-  sv
-  table
-  1180)
-
-(define (ucd-suc-entry-369 sv table)
-  sv
-  table
-  1182)
-
-(define (ucd-suc-entry-370 sv table)
-  sv
-  table
-  1184)
-
-(define (ucd-suc-entry-371 sv table)
-  sv
-  table
-  1186)
-
-(define (ucd-suc-entry-372 sv table)
-  sv
-  table
-  1188)
-
-(define (ucd-suc-entry-373 sv table)
-  sv
-  table
-  1190)
-
-(define (ucd-suc-entry-374 sv table)
-  sv
-  table
-  1192)
-
-(define (ucd-suc-entry-375 sv table)
-  sv
-  table
-  1194)
-
-(define (ucd-suc-entry-376 sv table)
-  sv
-  table
-  1196)
-
-(define (ucd-suc-entry-377 sv table)
-  sv
-  table
-  1198)
-
-(define (ucd-suc-entry-378 sv table)
-  sv
-  table
-  1200)
-
-(define (ucd-suc-entry-379 sv table)
-  sv
-  table
-  1202)
-
-(define (ucd-suc-entry-380 sv table)
-  sv
-  table
-  1204)
-
-(define (ucd-suc-entry-381 sv table)
-  sv
-  table
-  1206)
-
-(define (ucd-suc-entry-382 sv table)
-  sv
-  table
-  1208)
-
-(define (ucd-suc-entry-383 sv table)
-  sv
-  table
-  1210)
-
-(define (ucd-suc-entry-384 sv table)
-  sv
-  table
-  1212)
-
-(define (ucd-suc-entry-385 sv table)
-  sv
-  table
-  1214)
-
-(define (ucd-suc-entry-386 sv table)
-  sv
-  table
-  1217)
-
-(define (ucd-suc-entry-387 sv table)
-  sv
-  table
-  1219)
-
-(define (ucd-suc-entry-388 sv table)
-  sv
-  table
-  1221)
-
-(define (ucd-suc-entry-389 sv table)
-  sv
-  table
-  1223)
-
-(define (ucd-suc-entry-390 sv table)
-  sv
-  table
-  1225)
-
-(define (ucd-suc-entry-391 sv table)
-  sv
-  table
-  1227)
-
-(define (ucd-suc-entry-392 sv table)
-  sv
-  table
-  1229)
-
-(define (ucd-suc-entry-393 sv table)
-  sv
-  table
-  1216)
-
-(define (ucd-suc-entry-394 sv table)
-  sv
-  table
-  1232)
-
-(define (ucd-suc-entry-395 sv table)
-  sv
-  table
-  1234)
-
-(define (ucd-suc-entry-396 sv table)
-  sv
-  table
-  1236)
-
-(define (ucd-suc-entry-397 sv table)
-  sv
-  table
-  1238)
-
-(define (ucd-suc-entry-398 sv table)
-  sv
-  table
-  1240)
-
-(define (ucd-suc-entry-399 sv table)
-  sv
-  table
-  1242)
-
-(define (ucd-suc-entry-400 sv table)
-  sv
-  table
-  1244)
-
-(define (ucd-suc-entry-401 sv table)
-  sv
-  table
-  1246)
-
-(define (ucd-suc-entry-402 sv table)
-  sv
-  table
-  1248)
-
-(define (ucd-suc-entry-403 sv table)
-  sv
-  table
-  1250)
-
-(define (ucd-suc-entry-404 sv table)
-  sv
-  table
-  1252)
-
-(define (ucd-suc-entry-405 sv table)
-  sv
-  table
-  1254)
-
-(define (ucd-suc-entry-406 sv table)
-  sv
-  table
-  1256)
-
-(define (ucd-suc-entry-407 sv table)
-  sv
-  table
-  1258)
-
-(define (ucd-suc-entry-408 sv table)
-  sv
-  table
-  1260)
-
-(define (ucd-suc-entry-409 sv table)
-  sv
-  table
-  1262)
-
-(define (ucd-suc-entry-410 sv table)
-  sv
-  table
-  1264)
-
-(define (ucd-suc-entry-411 sv table)
-  sv
-  table
-  1266)
-
-(define (ucd-suc-entry-412 sv table)
-  sv
-  table
-  1268)
-
-(define (ucd-suc-entry-413 sv table)
-  sv
-  table
-  1270)
-
-(define (ucd-suc-entry-414 sv table)
-  sv
-  table
-  1272)
-
-(define (ucd-suc-entry-415 sv table)
-  sv
-  table
-  1274)
-
-(define (ucd-suc-entry-416 sv table)
-  sv
-  table
-  1276)
-
-(define (ucd-suc-entry-417 sv table)
-  sv
-  table
-  1278)
-
-(define (ucd-suc-entry-418 sv table)
-  sv
-  table
-  1280)
-
-(define (ucd-suc-entry-419 sv table)
-  sv
-  table
-  1282)
-
-(define (ucd-suc-entry-420 sv table)
-  sv
-  table
-  1284)
-
-(define (ucd-suc-entry-421 sv table)
-  sv
-  table
-  1286)
-
-(define (ucd-suc-entry-422 sv table)
-  sv
-  table
-  1288)
-
-(define (ucd-suc-entry-423 sv table)
-  sv
-  table
-  1290)
-
-(define (ucd-suc-entry-424 sv table)
-  sv
-  table
-  1292)
-
-(define (ucd-suc-entry-425 sv table)
-  sv
-  table
-  1294)
-
-(define (ucd-suc-entry-426 sv table)
-  sv
-  table
-  1296)
-
-(define (ucd-suc-entry-427 sv table)
-  sv
-  table
-  1298)
-
-(define (ucd-suc-entry-428 sv table)
-  sv
-  table
-  1300)
-
-(define (ucd-suc-entry-429 sv table)
-  sv
-  table
-  1302)
-
-(define (ucd-suc-entry-430 sv table)
-  sv
-  table
-  1304)
-
-(define (ucd-suc-entry-431 sv table)
-  sv
-  table
-  1306)
-
-(define (ucd-suc-entry-432 sv table)
-  sv
-  table
-  1308)
-
-(define (ucd-suc-entry-433 sv table)
-  sv
-  table
-  1310)
-
-(define (ucd-suc-entry-434 sv table)
-  sv
-  table
-  1312)
-
-(define (ucd-suc-entry-435 sv table)
-  sv
-  table
-  1314)
-
-(define (ucd-suc-entry-436 sv table)
-  sv
-  table
-  1316)
-
-(define (ucd-suc-entry-437 sv table)
-  sv
-  table
-  1318)
-
-(define (ucd-suc-entry-438 sv table)
-  sv
-  table
-  1320)
-
-(define (ucd-suc-entry-439 sv table)
-  sv
-  table
-  1322)
-
-(define (ucd-suc-entry-440 sv table)
-  sv
-  table
-  1324)
-
-(define (ucd-suc-entry-441 sv table)
-  sv
-  table
-  1326)
-
-(define (ucd-suc-entry-442 sv table)
-  sv
-  table
-  1329)
-
-(define (ucd-suc-entry-443 sv table)
-  sv
-  table
-  1330)
-
-(define (ucd-suc-entry-444 sv table)
-  sv
-  table
-  1331)
-
-(define (ucd-suc-entry-445 sv table)
-  sv
-  table
-  1332)
-
-(define (ucd-suc-entry-446 sv table)
-  sv
-  table
-  1333)
-
-(define (ucd-suc-entry-447 sv table)
-  sv
-  table
-  1334)
-
-(define (ucd-suc-entry-448 sv table)
-  sv
-  table
-  1335)
-
-(define (ucd-suc-entry-449 sv table)
-  sv
-  table
-  1336)
-
-(define (ucd-suc-entry-450 sv table)
-  sv
-  table
-  1337)
-
-(define (ucd-suc-entry-451 sv table)
-  sv
-  table
-  1338)
-
-(define (ucd-suc-entry-452 sv table)
-  sv
-  table
-  1339)
-
-(define (ucd-suc-entry-453 sv table)
-  sv
-  table
-  1340)
-
-(define (ucd-suc-entry-454 sv table)
-  sv
-  table
-  1341)
-
-(define (ucd-suc-entry-455 sv table)
-  sv
-  table
-  1342)
-
-(define (ucd-suc-entry-456 sv table)
-  sv
-  table
-  1343)
-
-(define (ucd-suc-entry-457 sv table)
-  sv
-  table
-  1344)
-
-(define (ucd-suc-entry-458 sv table)
-  sv
-  table
-  1345)
-
-(define (ucd-suc-entry-459 sv table)
-  sv
-  table
-  1346)
-
-(define (ucd-suc-entry-460 sv table)
-  sv
-  table
-  1347)
-
-(define (ucd-suc-entry-461 sv table)
-  sv
-  table
-  1348)
-
-(define (ucd-suc-entry-462 sv table)
-  sv
-  table
-  1349)
-
-(define (ucd-suc-entry-463 sv table)
-  sv
-  table
-  1350)
-
-(define (ucd-suc-entry-464 sv table)
-  sv
-  table
-  1351)
-
-(define (ucd-suc-entry-465 sv table)
-  sv
-  table
-  1352)
-
-(define (ucd-suc-entry-466 sv table)
-  sv
-  table
-  1353)
-
-(define (ucd-suc-entry-467 sv table)
-  sv
-  table
-  1354)
-
-(define (ucd-suc-entry-468 sv table)
-  sv
-  table
-  1355)
-
-(define (ucd-suc-entry-469 sv table)
-  sv
-  table
-  1356)
-
-(define (ucd-suc-entry-470 sv table)
-  sv
-  table
-  1357)
-
-(define (ucd-suc-entry-471 sv table)
-  sv
-  table
-  1358)
-
-(define (ucd-suc-entry-472 sv table)
-  sv
-  table
-  1359)
-
-(define (ucd-suc-entry-473 sv table)
-  sv
-  table
-  1360)
-
-(define (ucd-suc-entry-474 sv table)
-  sv
-  table
-  1361)
-
-(define (ucd-suc-entry-475 sv table)
-  sv
-  table
-  1362)
-
-(define (ucd-suc-entry-476 sv table)
-  sv
-  table
-  1363)
-
-(define (ucd-suc-entry-477 sv table)
-  sv
-  table
-  1364)
-
-(define (ucd-suc-entry-478 sv table)
-  sv
-  table
-  1365)
-
-(define (ucd-suc-entry-479 sv table)
-  sv
-  table
-  1366)
-
-(define (ucd-suc-entry-480 sv table)
-  sv
-  table
-  5104)
-
-(define (ucd-suc-entry-481 sv table)
-  sv
-  table
-  5105)
-
-(define (ucd-suc-entry-482 sv table)
-  sv
-  table
-  5106)
-
-(define (ucd-suc-entry-483 sv table)
-  sv
-  table
-  5107)
-
-(define (ucd-suc-entry-484 sv table)
-  sv
-  table
-  5108)
-
-(define (ucd-suc-entry-485 sv table)
-  sv
-  table
-  5109)
-
-(define (ucd-suc-entry-486 sv table)
-  sv
-  table
-  42570)
-
-(define (ucd-suc-entry-487 sv table)
-  sv
-  table
-  42877)
-
-(define (ucd-suc-entry-488 sv table)
-  sv
-  table
-  11363)
-
-(define (ucd-suc-entry-489 sv table)
-  sv
-  table
-  7680)
-
-(define (ucd-suc-entry-490 sv table)
-  sv
-  table
-  7682)
-
-(define (ucd-suc-entry-491 sv table)
-  sv
-  table
-  7684)
-
-(define (ucd-suc-entry-492 sv table)
-  sv
-  table
-  7686)
-
-(define (ucd-suc-entry-493 sv table)
-  sv
-  table
-  7688)
-
-(define (ucd-suc-entry-494 sv table)
-  sv
-  table
-  7690)
-
-(define (ucd-suc-entry-495 sv table)
-  sv
-  table
-  7692)
-
-(define (ucd-suc-entry-496 sv table)
-  sv
-  table
-  7694)
-
-(define (ucd-suc-entry-497 sv table)
-  sv
-  table
-  7696)
-
-(define (ucd-suc-entry-498 sv table)
-  sv
-  table
-  7698)
-
-(define (ucd-suc-entry-499 sv table)
-  sv
-  table
-  7700)
-
-(define (ucd-suc-entry-500 sv table)
-  sv
-  table
-  7702)
-
-(define (ucd-suc-entry-501 sv table)
-  sv
-  table
-  7704)
-
-(define (ucd-suc-entry-502 sv table)
-  sv
-  table
-  7706)
-
-(define (ucd-suc-entry-503 sv table)
-  sv
-  table
-  7708)
-
-(define (ucd-suc-entry-504 sv table)
-  sv
-  table
-  7710)
-
-(define (ucd-suc-entry-505 sv table)
-  sv
-  table
-  7712)
-
-(define (ucd-suc-entry-506 sv table)
-  sv
-  table
-  7714)
-
-(define (ucd-suc-entry-507 sv table)
-  sv
-  table
-  7716)
-
-(define (ucd-suc-entry-508 sv table)
-  sv
-  table
-  7718)
-
-(define (ucd-suc-entry-509 sv table)
-  sv
-  table
-  7720)
-
-(define (ucd-suc-entry-510 sv table)
-  sv
-  table
-  7722)
-
-(define (ucd-suc-entry-511 sv table)
-  sv
-  table
-  7724)
-
-(define (ucd-suc-entry-512 sv table)
-  sv
-  table
-  7726)
-
-(define (ucd-suc-entry-513 sv table)
-  sv
-  table
-  7728)
-
-(define (ucd-suc-entry-514 sv table)
-  sv
-  table
-  7730)
-
-(define (ucd-suc-entry-515 sv table)
-  sv
-  table
-  7732)
-
-(define (ucd-suc-entry-516 sv table)
-  sv
-  table
-  7734)
-
-(define (ucd-suc-entry-517 sv table)
-  sv
-  table
-  7736)
-
-(define (ucd-suc-entry-518 sv table)
-  sv
-  table
-  7738)
-
-(define (ucd-suc-entry-519 sv table)
-  sv
-  table
-  7740)
-
-(define (ucd-suc-entry-520 sv table)
-  sv
-  table
-  7742)
-
-(define (ucd-suc-entry-521 sv table)
-  sv
-  table
-  7744)
-
-(define (ucd-suc-entry-522 sv table)
-  sv
-  table
-  7746)
-
-(define (ucd-suc-entry-523 sv table)
-  sv
-  table
-  7748)
-
-(define (ucd-suc-entry-524 sv table)
-  sv
-  table
-  7750)
-
-(define (ucd-suc-entry-525 sv table)
-  sv
-  table
-  7752)
-
-(define (ucd-suc-entry-526 sv table)
-  sv
-  table
-  7754)
-
-(define (ucd-suc-entry-527 sv table)
-  sv
-  table
-  7756)
-
-(define (ucd-suc-entry-528 sv table)
-  sv
-  table
-  7758)
-
-(define (ucd-suc-entry-529 sv table)
-  sv
-  table
-  7760)
-
-(define (ucd-suc-entry-530 sv table)
-  sv
-  table
-  7762)
-
-(define (ucd-suc-entry-531 sv table)
-  sv
-  table
-  7764)
-
-(define (ucd-suc-entry-532 sv table)
-  sv
-  table
-  7766)
-
-(define (ucd-suc-entry-533 sv table)
-  sv
-  table
-  7768)
-
-(define (ucd-suc-entry-534 sv table)
-  sv
-  table
-  7770)
-
-(define (ucd-suc-entry-535 sv table)
-  sv
-  table
-  7772)
-
-(define (ucd-suc-entry-536 sv table)
-  sv
-  table
-  7774)
-
-(define (ucd-suc-entry-537 sv table)
-  sv
-  table
-  7776)
-
-(define (ucd-suc-entry-538 sv table)
-  sv
-  table
-  7778)
-
-(define (ucd-suc-entry-539 sv table)
-  sv
-  table
-  7780)
-
-(define (ucd-suc-entry-540 sv table)
-  sv
-  table
-  7782)
-
-(define (ucd-suc-entry-541 sv table)
-  sv
-  table
-  7784)
-
-(define (ucd-suc-entry-542 sv table)
-  sv
-  table
-  7786)
-
-(define (ucd-suc-entry-543 sv table)
-  sv
-  table
-  7788)
-
-(define (ucd-suc-entry-544 sv table)
-  sv
-  table
-  7790)
-
-(define (ucd-suc-entry-545 sv table)
-  sv
-  table
-  7792)
-
-(define (ucd-suc-entry-546 sv table)
-  sv
-  table
-  7794)
-
-(define (ucd-suc-entry-547 sv table)
-  sv
-  table
-  7796)
-
-(define (ucd-suc-entry-548 sv table)
-  sv
-  table
-  7798)
-
-(define (ucd-suc-entry-549 sv table)
-  sv
-  table
-  7800)
-
-(define (ucd-suc-entry-550 sv table)
-  sv
-  table
-  7802)
-
-(define (ucd-suc-entry-551 sv table)
-  sv
-  table
-  7804)
-
-(define (ucd-suc-entry-552 sv table)
-  sv
-  table
-  7806)
-
-(define (ucd-suc-entry-553 sv table)
-  sv
-  table
-  7808)
-
-(define (ucd-suc-entry-554 sv table)
-  sv
-  table
-  7810)
-
-(define (ucd-suc-entry-555 sv table)
-  sv
-  table
-  7812)
-
-(define (ucd-suc-entry-556 sv table)
-  sv
-  table
-  7814)
-
-(define (ucd-suc-entry-557 sv table)
-  sv
-  table
-  7816)
-
-(define (ucd-suc-entry-558 sv table)
-  sv
-  table
-  7818)
-
-(define (ucd-suc-entry-559 sv table)
-  sv
-  table
-  7820)
-
-(define (ucd-suc-entry-560 sv table)
-  sv
-  table
-  7822)
-
-(define (ucd-suc-entry-561 sv table)
-  sv
-  table
-  7824)
-
-(define (ucd-suc-entry-562 sv table)
-  sv
-  table
-  7826)
-
-(define (ucd-suc-entry-563 sv table)
-  sv
-  table
-  7828)
-
-(define (ucd-suc-entry-564 sv table)
-  sv
-  table
-  7840)
-
-(define (ucd-suc-entry-565 sv table)
-  sv
-  table
-  7842)
-
-(define (ucd-suc-entry-566 sv table)
-  sv
-  table
-  7844)
-
-(define (ucd-suc-entry-567 sv table)
-  sv
-  table
-  7846)
-
-(define (ucd-suc-entry-568 sv table)
-  sv
-  table
-  7848)
-
-(define (ucd-suc-entry-569 sv table)
-  sv
-  table
-  7850)
-
-(define (ucd-suc-entry-570 sv table)
-  sv
-  table
-  7852)
-
-(define (ucd-suc-entry-571 sv table)
-  sv
-  table
-  7854)
-
-(define (ucd-suc-entry-572 sv table)
-  sv
-  table
-  7856)
-
-(define (ucd-suc-entry-573 sv table)
-  sv
-  table
-  7858)
-
-(define (ucd-suc-entry-574 sv table)
-  sv
-  table
-  7860)
-
-(define (ucd-suc-entry-575 sv table)
-  sv
-  table
-  7862)
-
-(define (ucd-suc-entry-576 sv table)
-  sv
-  table
-  7864)
-
-(define (ucd-suc-entry-577 sv table)
-  sv
-  table
-  7866)
-
-(define (ucd-suc-entry-578 sv table)
-  sv
-  table
-  7868)
-
-(define (ucd-suc-entry-579 sv table)
-  sv
-  table
-  7870)
-
-(define (ucd-suc-entry-580 sv table)
-  sv
-  table
-  7872)
-
-(define (ucd-suc-entry-581 sv table)
-  sv
-  table
-  7874)
-
-(define (ucd-suc-entry-582 sv table)
-  sv
-  table
-  7876)
-
-(define (ucd-suc-entry-583 sv table)
-  sv
-  table
-  7878)
-
-(define (ucd-suc-entry-584 sv table)
-  sv
-  table
-  7880)
-
-(define (ucd-suc-entry-585 sv table)
-  sv
-  table
-  7882)
-
-(define (ucd-suc-entry-586 sv table)
-  sv
-  table
-  7884)
-
-(define (ucd-suc-entry-587 sv table)
-  sv
-  table
-  7886)
-
-(define (ucd-suc-entry-588 sv table)
-  sv
-  table
-  7888)
-
-(define (ucd-suc-entry-589 sv table)
-  sv
-  table
-  7890)
-
-(define (ucd-suc-entry-590 sv table)
-  sv
-  table
-  7892)
-
-(define (ucd-suc-entry-591 sv table)
-  sv
-  table
-  7894)
-
-(define (ucd-suc-entry-592 sv table)
-  sv
-  table
-  7896)
-
-(define (ucd-suc-entry-593 sv table)
-  sv
-  table
-  7898)
-
-(define (ucd-suc-entry-594 sv table)
-  sv
-  table
-  7900)
-
-(define (ucd-suc-entry-595 sv table)
-  sv
-  table
-  7902)
-
-(define (ucd-suc-entry-596 sv table)
-  sv
-  table
-  7904)
-
-(define (ucd-suc-entry-597 sv table)
-  sv
-  table
-  7906)
-
-(define (ucd-suc-entry-598 sv table)
-  sv
-  table
-  7908)
-
-(define (ucd-suc-entry-599 sv table)
-  sv
-  table
-  7910)
-
-(define (ucd-suc-entry-600 sv table)
-  sv
-  table
-  7912)
-
-(define (ucd-suc-entry-601 sv table)
-  sv
-  table
-  7914)
-
-(define (ucd-suc-entry-602 sv table)
-  sv
-  table
-  7916)
-
-(define (ucd-suc-entry-603 sv table)
-  sv
-  table
-  7918)
-
-(define (ucd-suc-entry-604 sv table)
-  sv
-  table
-  7920)
-
-(define (ucd-suc-entry-605 sv table)
-  sv
-  table
-  7922)
-
-(define (ucd-suc-entry-606 sv table)
-  sv
-  table
-  7924)
-
-(define (ucd-suc-entry-607 sv table)
-  sv
-  table
-  7926)
-
-(define (ucd-suc-entry-608 sv table)
-  sv
-  table
-  7928)
-
-(define (ucd-suc-entry-609 sv table)
-  sv
-  table
-  7930)
-
-(define (ucd-suc-entry-610 sv table)
-  sv
-  table
-  7932)
-
-(define (ucd-suc-entry-611 sv table)
-  sv
-  table
-  7934)
-
-(define (ucd-suc-entry-612 sv table)
-  sv
-  table
-  7944)
-
-(define (ucd-suc-entry-613 sv table)
-  sv
-  table
-  7945)
-
-(define (ucd-suc-entry-614 sv table)
-  sv
-  table
-  7946)
-
-(define (ucd-suc-entry-615 sv table)
-  sv
-  table
-  7947)
-
-(define (ucd-suc-entry-616 sv table)
-  sv
-  table
-  7948)
-
-(define (ucd-suc-entry-617 sv table)
-  sv
-  table
-  7949)
-
-(define (ucd-suc-entry-618 sv table)
-  sv
-  table
-  7950)
-
-(define (ucd-suc-entry-619 sv table)
-  sv
-  table
-  7951)
-
-(define (ucd-suc-entry-620 sv table)
-  sv
-  table
-  7960)
-
-(define (ucd-suc-entry-621 sv table)
-  sv
-  table
-  7961)
-
-(define (ucd-suc-entry-622 sv table)
-  sv
-  table
-  7962)
-
-(define (ucd-suc-entry-623 sv table)
-  sv
-  table
-  7963)
-
-(define (ucd-suc-entry-624 sv table)
-  sv
-  table
-  7964)
-
-(define (ucd-suc-entry-625 sv table)
-  sv
-  table
-  7965)
-
-(define (ucd-suc-entry-626 sv table)
-  sv
-  table
-  7976)
-
-(define (ucd-suc-entry-627 sv table)
-  sv
-  table
-  7977)
-
-(define (ucd-suc-entry-628 sv table)
-  sv
-  table
-  7978)
-
-(define (ucd-suc-entry-629 sv table)
-  sv
-  table
-  7979)
-
-(define (ucd-suc-entry-630 sv table)
-  sv
-  table
-  7980)
-
-(define (ucd-suc-entry-631 sv table)
-  sv
-  table
-  7981)
-
-(define (ucd-suc-entry-632 sv table)
-  sv
-  table
-  7982)
-
-(define (ucd-suc-entry-633 sv table)
-  sv
-  table
-  7983)
-
-(define (ucd-suc-entry-634 sv table)
-  sv
-  table
-  7992)
-
-(define (ucd-suc-entry-635 sv table)
-  sv
-  table
-  7993)
-
-(define (ucd-suc-entry-636 sv table)
-  sv
-  table
-  7994)
-
-(define (ucd-suc-entry-637 sv table)
-  sv
-  table
-  7995)
-
-(define (ucd-suc-entry-638 sv table)
-  sv
-  table
-  7996)
-
-(define (ucd-suc-entry-639 sv table)
-  sv
-  table
-  7997)
-
-(define (ucd-suc-entry-640 sv table)
-  sv
-  table
-  7998)
-
-(define (ucd-suc-entry-641 sv table)
-  sv
-  table
-  7999)
-
-(define (ucd-suc-entry-642 sv table)
-  sv
-  table
-  8008)
-
-(define (ucd-suc-entry-643 sv table)
-  sv
-  table
-  8009)
-
-(define (ucd-suc-entry-644 sv table)
-  sv
-  table
-  8010)
-
-(define (ucd-suc-entry-645 sv table)
-  sv
-  table
-  8011)
-
-(define (ucd-suc-entry-646 sv table)
-  sv
-  table
-  8012)
-
-(define (ucd-suc-entry-647 sv table)
-  sv
-  table
-  8013)
-
-(define (ucd-suc-entry-648 sv table)
-  sv
-  table
-  8025)
-
-(define (ucd-suc-entry-649 sv table)
-  sv
-  table
-  8027)
-
-(define (ucd-suc-entry-650 sv table)
-  sv
-  table
-  8029)
-
-(define (ucd-suc-entry-651 sv table)
-  sv
-  table
-  8031)
-
-(define (ucd-suc-entry-652 sv table)
-  sv
-  table
-  8040)
-
-(define (ucd-suc-entry-653 sv table)
-  sv
-  table
-  8041)
-
-(define (ucd-suc-entry-654 sv table)
-  sv
-  table
-  8042)
-
-(define (ucd-suc-entry-655 sv table)
-  sv
-  table
-  8043)
-
-(define (ucd-suc-entry-656 sv table)
-  sv
-  table
-  8044)
-
-(define (ucd-suc-entry-657 sv table)
-  sv
-  table
-  8045)
-
-(define (ucd-suc-entry-658 sv table)
-  sv
-  table
-  8046)
-
-(define (ucd-suc-entry-659 sv table)
-  sv
-  table
-  8047)
-
-(define (ucd-suc-entry-660 sv table)
-  sv
-  table
-  8122)
-
-(define (ucd-suc-entry-661 sv table)
-  sv
-  table
-  8123)
-
-(define (ucd-suc-entry-662 sv table)
-  sv
-  table
-  8136)
-
-(define (ucd-suc-entry-663 sv table)
-  sv
-  table
-  8137)
-
-(define (ucd-suc-entry-664 sv table)
-  sv
-  table
-  8138)
-
-(define (ucd-suc-entry-665 sv table)
-  sv
-  table
-  8139)
-
-(define (ucd-suc-entry-666 sv table)
-  sv
-  table
-  8154)
-
-(define (ucd-suc-entry-667 sv table)
-  sv
-  table
-  8155)
-
-(define (ucd-suc-entry-668 sv table)
-  sv
-  table
-  8184)
-
-(define (ucd-suc-entry-669 sv table)
-  sv
-  table
-  8185)
-
-(define (ucd-suc-entry-670 sv table)
-  sv
-  table
-  8170)
-
-(define (ucd-suc-entry-671 sv table)
-  sv
-  table
-  8171)
-
-(define (ucd-suc-entry-672 sv table)
-  sv
-  table
-  8186)
-
-(define (ucd-suc-entry-673 sv table)
-  sv
-  table
-  8187)
-
-(define (ucd-suc-entry-674 sv table)
-  sv
-  table
-  8072)
-
-(define (ucd-suc-entry-675 sv table)
-  sv
-  table
-  8073)
-
-(define (ucd-suc-entry-676 sv table)
-  sv
-  table
-  8074)
-
-(define (ucd-suc-entry-677 sv table)
-  sv
-  table
-  8075)
-
-(define (ucd-suc-entry-678 sv table)
-  sv
-  table
-  8076)
-
-(define (ucd-suc-entry-679 sv table)
-  sv
-  table
-  8077)
-
-(define (ucd-suc-entry-680 sv table)
-  sv
-  table
-  8078)
-
-(define (ucd-suc-entry-681 sv table)
-  sv
-  table
-  8079)
-
-(define (ucd-suc-entry-682 sv table)
-  sv
-  table
-  8088)
-
-(define (ucd-suc-entry-683 sv table)
-  sv
-  table
-  8089)
-
-(define (ucd-suc-entry-684 sv table)
-  sv
-  table
-  8090)
-
-(define (ucd-suc-entry-685 sv table)
-  sv
-  table
-  8091)
-
-(define (ucd-suc-entry-686 sv table)
-  sv
-  table
-  8092)
-
-(define (ucd-suc-entry-687 sv table)
-  sv
-  table
-  8093)
-
-(define (ucd-suc-entry-688 sv table)
-  sv
-  table
-  8094)
-
-(define (ucd-suc-entry-689 sv table)
-  sv
-  table
-  8095)
-
-(define (ucd-suc-entry-690 sv table)
-  sv
-  table
-  8104)
-
-(define (ucd-suc-entry-691 sv table)
-  sv
-  table
-  8105)
-
-(define (ucd-suc-entry-692 sv table)
-  sv
-  table
-  8106)
-
-(define (ucd-suc-entry-693 sv table)
-  sv
-  table
-  8107)
-
-(define (ucd-suc-entry-694 sv table)
-  sv
-  table
-  8108)
-
-(define (ucd-suc-entry-695 sv table)
-  sv
-  table
-  8109)
-
-(define (ucd-suc-entry-696 sv table)
-  sv
-  table
-  8110)
-
-(define (ucd-suc-entry-697 sv table)
-  sv
-  table
-  8111)
-
-(define (ucd-suc-entry-698 sv table)
-  sv
-  table
-  8120)
-
-(define (ucd-suc-entry-699 sv table)
-  sv
-  table
-  8121)
-
-(define (ucd-suc-entry-700 sv table)
-  sv
-  table
-  8124)
-
-(define (ucd-suc-entry-701 sv table)
-  sv
-  table
-  8140)
-
-(define (ucd-suc-entry-702 sv table)
-  sv
-  table
-  8152)
-
-(define (ucd-suc-entry-703 sv table)
-  sv
-  table
-  8153)
-
-(define (ucd-suc-entry-704 sv table)
-  sv
-  table
-  8168)
-
-(define (ucd-suc-entry-705 sv table)
-  sv
-  table
-  8169)
-
-(define (ucd-suc-entry-706 sv table)
-  sv
-  table
-  8172)
-
-(define (ucd-suc-entry-707 sv table)
-  sv
-  table
-  8188)
-
-(define (ucd-suc-entry-708 sv table)
-  sv
-  table
-  8498)
-
-(define (ucd-suc-entry-709 sv table)
-  sv
-  table
-  8544)
-
-(define (ucd-suc-entry-710 sv table)
-  sv
-  table
-  8545)
-
-(define (ucd-suc-entry-711 sv table)
-  sv
-  table
-  8546)
-
-(define (ucd-suc-entry-712 sv table)
-  sv
-  table
-  8547)
-
-(define (ucd-suc-entry-713 sv table)
-  sv
-  table
-  8548)
-
-(define (ucd-suc-entry-714 sv table)
-  sv
-  table
-  8549)
-
-(define (ucd-suc-entry-715 sv table)
-  sv
-  table
-  8550)
-
-(define (ucd-suc-entry-716 sv table)
-  sv
-  table
-  8551)
-
-(define (ucd-suc-entry-717 sv table)
-  sv
-  table
-  8552)
-
-(define (ucd-suc-entry-718 sv table)
-  sv
-  table
-  8553)
-
-(define (ucd-suc-entry-719 sv table)
-  sv
-  table
-  8554)
-
-(define (ucd-suc-entry-720 sv table)
-  sv
-  table
-  8555)
-
-(define (ucd-suc-entry-721 sv table)
-  sv
-  table
-  8556)
-
-(define (ucd-suc-entry-722 sv table)
-  sv
-  table
-  8557)
-
-(define (ucd-suc-entry-723 sv table)
-  sv
-  table
-  8558)
-
-(define (ucd-suc-entry-724 sv table)
-  sv
-  table
-  8559)
-
-(define (ucd-suc-entry-725 sv table)
-  sv
-  table
-  8579)
-
-(define (ucd-suc-entry-726 sv table)
-  sv
-  table
-  9398)
-
-(define (ucd-suc-entry-727 sv table)
-  sv
-  table
-  9399)
-
-(define (ucd-suc-entry-728 sv table)
-  sv
-  table
-  9400)
-
-(define (ucd-suc-entry-729 sv table)
-  sv
-  table
-  9401)
-
-(define (ucd-suc-entry-730 sv table)
-  sv
-  table
-  9402)
-
-(define (ucd-suc-entry-731 sv table)
-  sv
-  table
-  9403)
-
-(define (ucd-suc-entry-732 sv table)
-  sv
-  table
-  9404)
-
-(define (ucd-suc-entry-733 sv table)
-  sv
-  table
-  9405)
-
-(define (ucd-suc-entry-734 sv table)
-  sv
-  table
-  9406)
-
-(define (ucd-suc-entry-735 sv table)
-  sv
-  table
-  9407)
-
-(define (ucd-suc-entry-736 sv table)
-  sv
-  table
-  9408)
-
-(define (ucd-suc-entry-737 sv table)
-  sv
-  table
-  9409)
-
-(define (ucd-suc-entry-738 sv table)
-  sv
-  table
-  9410)
-
-(define (ucd-suc-entry-739 sv table)
-  sv
-  table
-  9411)
-
-(define (ucd-suc-entry-740 sv table)
-  sv
-  table
-  9412)
-
-(define (ucd-suc-entry-741 sv table)
-  sv
-  table
-  9413)
-
-(define (ucd-suc-entry-742 sv table)
-  sv
-  table
-  9414)
-
-(define (ucd-suc-entry-743 sv table)
-  sv
-  table
-  9415)
-
-(define (ucd-suc-entry-744 sv table)
-  sv
-  table
-  9416)
-
-(define (ucd-suc-entry-745 sv table)
-  sv
-  table
-  9417)
-
-(define (ucd-suc-entry-746 sv table)
-  sv
-  table
-  9418)
-
-(define (ucd-suc-entry-747 sv table)
-  sv
-  table
-  9419)
-
-(define (ucd-suc-entry-748 sv table)
-  sv
-  table
-  9420)
-
-(define (ucd-suc-entry-749 sv table)
-  sv
-  table
-  9421)
-
-(define (ucd-suc-entry-750 sv table)
-  sv
-  table
-  9422)
-
-(define (ucd-suc-entry-751 sv table)
-  sv
-  table
-  9423)
-
-(define (ucd-suc-entry-752 sv table)
-  sv
-  table
-  11264)
-
-(define (ucd-suc-entry-753 sv table)
-  sv
-  table
-  11265)
-
-(define (ucd-suc-entry-754 sv table)
-  sv
-  table
-  11266)
-
-(define (ucd-suc-entry-755 sv table)
-  sv
-  table
-  11267)
-
-(define (ucd-suc-entry-756 sv table)
-  sv
-  table
-  11268)
-
-(define (ucd-suc-entry-757 sv table)
-  sv
-  table
-  11269)
-
-(define (ucd-suc-entry-758 sv table)
-  sv
-  table
-  11270)
-
-(define (ucd-suc-entry-759 sv table)
-  sv
-  table
-  11271)
-
-(define (ucd-suc-entry-760 sv table)
-  sv
-  table
-  11272)
-
-(define (ucd-suc-entry-761 sv table)
-  sv
-  table
-  11273)
-
-(define (ucd-suc-entry-762 sv table)
-  sv
-  table
-  11274)
-
-(define (ucd-suc-entry-763 sv table)
-  sv
-  table
-  11275)
-
-(define (ucd-suc-entry-764 sv table)
-  sv
-  table
-  11276)
-
-(define (ucd-suc-entry-765 sv table)
-  sv
-  table
-  11277)
-
-(define (ucd-suc-entry-766 sv table)
-  sv
-  table
-  11278)
-
-(define (ucd-suc-entry-767 sv table)
-  sv
-  table
-  11279)
-
-(define (ucd-suc-entry-768 sv table)
-  sv
-  table
-  11280)
-
-(define (ucd-suc-entry-769 sv table)
-  sv
-  table
-  11281)
-
-(define (ucd-suc-entry-770 sv table)
-  sv
-  table
-  11282)
-
-(define (ucd-suc-entry-771 sv table)
-  sv
-  table
-  11283)
-
-(define (ucd-suc-entry-772 sv table)
-  sv
-  table
-  11284)
-
-(define (ucd-suc-entry-773 sv table)
-  sv
-  table
-  11285)
-
-(define (ucd-suc-entry-774 sv table)
-  sv
-  table
-  11286)
-
-(define (ucd-suc-entry-775 sv table)
-  sv
-  table
-  11287)
-
-(define (ucd-suc-entry-776 sv table)
-  sv
-  table
-  11288)
-
-(define (ucd-suc-entry-777 sv table)
-  sv
-  table
-  11289)
-
-(define (ucd-suc-entry-778 sv table)
-  sv
-  table
-  11290)
-
-(define (ucd-suc-entry-779 sv table)
-  sv
-  table
-  11291)
-
-(define (ucd-suc-entry-780 sv table)
-  sv
-  table
-  11292)
-
-(define (ucd-suc-entry-781 sv table)
-  sv
-  table
-  11293)
-
-(define (ucd-suc-entry-782 sv table)
-  sv
-  table
-  11294)
-
-(define (ucd-suc-entry-783 sv table)
-  sv
-  table
-  11295)
-
-(define (ucd-suc-entry-784 sv table)
-  sv
-  table
-  11296)
-
-(define (ucd-suc-entry-785 sv table)
-  sv
-  table
-  11297)
-
-(define (ucd-suc-entry-786 sv table)
-  sv
-  table
-  11298)
-
-(define (ucd-suc-entry-787 sv table)
-  sv
-  table
-  11299)
-
-(define (ucd-suc-entry-788 sv table)
-  sv
-  table
-  11300)
-
-(define (ucd-suc-entry-789 sv table)
-  sv
-  table
-  11301)
-
-(define (ucd-suc-entry-790 sv table)
-  sv
-  table
-  11302)
-
-(define (ucd-suc-entry-791 sv table)
-  sv
-  table
-  11303)
-
-(define (ucd-suc-entry-792 sv table)
-  sv
-  table
-  11304)
-
-(define (ucd-suc-entry-793 sv table)
-  sv
-  table
-  11305)
-
-(define (ucd-suc-entry-794 sv table)
-  sv
-  table
-  11306)
-
-(define (ucd-suc-entry-795 sv table)
-  sv
-  table
-  11307)
-
-(define (ucd-suc-entry-796 sv table)
-  sv
-  table
-  11308)
-
-(define (ucd-suc-entry-797 sv table)
-  sv
-  table
-  11309)
-
-(define (ucd-suc-entry-798 sv table)
-  sv
-  table
-  11310)
-
-(define (ucd-suc-entry-799 sv table)
-  sv
-  table
-  11360)
-
-(define (ucd-suc-entry-800 sv table)
-  sv
-  table
-  570)
-
-(define (ucd-suc-entry-801 sv table)
-  sv
-  table
-  574)
-
-(define (ucd-suc-entry-802 sv table)
-  sv
-  table
-  11367)
-
-(define (ucd-suc-entry-803 sv table)
-  sv
-  table
-  11369)
-
-(define (ucd-suc-entry-804 sv table)
-  sv
-  table
-  11371)
-
-(define (ucd-suc-entry-805 sv table)
-  sv
-  table
-  11378)
-
-(define (ucd-suc-entry-806 sv table)
-  sv
-  table
-  11381)
-
-(define (ucd-suc-entry-807 sv table)
-  sv
-  table
-  11392)
-
-(define (ucd-suc-entry-808 sv table)
-  sv
-  table
-  11394)
-
-(define (ucd-suc-entry-809 sv table)
-  sv
-  table
-  11396)
-
-(define (ucd-suc-entry-810 sv table)
-  sv
-  table
-  11398)
-
-(define (ucd-suc-entry-811 sv table)
-  sv
-  table
-  11400)
-
-(define (ucd-suc-entry-812 sv table)
-  sv
-  table
-  11402)
-
-(define (ucd-suc-entry-813 sv table)
-  sv
-  table
-  11404)
-
-(define (ucd-suc-entry-814 sv table)
-  sv
-  table
-  11406)
-
-(define (ucd-suc-entry-815 sv table)
-  sv
-  table
-  11408)
-
-(define (ucd-suc-entry-816 sv table)
-  sv
-  table
-  11410)
-
-(define (ucd-suc-entry-817 sv table)
-  sv
-  table
-  11412)
-
-(define (ucd-suc-entry-818 sv table)
-  sv
-  table
-  11414)
-
-(define (ucd-suc-entry-819 sv table)
-  sv
-  table
-  11416)
-
-(define (ucd-suc-entry-820 sv table)
-  sv
-  table
-  11418)
-
-(define (ucd-suc-entry-821 sv table)
-  sv
-  table
-  11420)
-
-(define (ucd-suc-entry-822 sv table)
-  sv
-  table
-  11422)
-
-(define (ucd-suc-entry-823 sv table)
-  sv
-  table
-  11424)
-
-(define (ucd-suc-entry-824 sv table)
-  sv
-  table
-  11426)
-
-(define (ucd-suc-entry-825 sv table)
-  sv
-  table
-  11428)
-
-(define (ucd-suc-entry-826 sv table)
-  sv
-  table
-  11430)
-
-(define (ucd-suc-entry-827 sv table)
-  sv
-  table
-  11432)
-
-(define (ucd-suc-entry-828 sv table)
-  sv
-  table
-  11434)
-
-(define (ucd-suc-entry-829 sv table)
-  sv
-  table
-  11436)
-
-(define (ucd-suc-entry-830 sv table)
-  sv
-  table
-  11438)
-
-(define (ucd-suc-entry-831 sv table)
-  sv
-  table
-  11440)
-
-(define (ucd-suc-entry-832 sv table)
-  sv
-  table
-  11442)
-
-(define (ucd-suc-entry-833 sv table)
-  sv
-  table
-  11444)
-
-(define (ucd-suc-entry-834 sv table)
-  sv
-  table
-  11446)
-
-(define (ucd-suc-entry-835 sv table)
-  sv
-  table
-  11448)
-
-(define (ucd-suc-entry-836 sv table)
-  sv
-  table
-  11450)
-
-(define (ucd-suc-entry-837 sv table)
-  sv
-  table
-  11452)
-
-(define (ucd-suc-entry-838 sv table)
-  sv
-  table
-  11454)
-
-(define (ucd-suc-entry-839 sv table)
-  sv
-  table
-  11456)
-
-(define (ucd-suc-entry-840 sv table)
-  sv
-  table
-  11458)
-
-(define (ucd-suc-entry-841 sv table)
-  sv
-  table
-  11460)
-
-(define (ucd-suc-entry-842 sv table)
-  sv
-  table
-  11462)
-
-(define (ucd-suc-entry-843 sv table)
-  sv
-  table
-  11464)
-
-(define (ucd-suc-entry-844 sv table)
-  sv
-  table
-  11466)
-
-(define (ucd-suc-entry-845 sv table)
-  sv
-  table
-  11468)
-
-(define (ucd-suc-entry-846 sv table)
-  sv
-  table
-  11470)
-
-(define (ucd-suc-entry-847 sv table)
-  sv
-  table
-  11472)
-
-(define (ucd-suc-entry-848 sv table)
-  sv
-  table
-  11474)
-
-(define (ucd-suc-entry-849 sv table)
-  sv
-  table
-  11476)
-
-(define (ucd-suc-entry-850 sv table)
-  sv
-  table
-  11478)
-
-(define (ucd-suc-entry-851 sv table)
-  sv
-  table
-  11480)
-
-(define (ucd-suc-entry-852 sv table)
-  sv
-  table
-  11482)
-
-(define (ucd-suc-entry-853 sv table)
-  sv
-  table
-  11484)
-
-(define (ucd-suc-entry-854 sv table)
-  sv
-  table
-  11486)
-
-(define (ucd-suc-entry-855 sv table)
-  sv
-  table
-  11488)
-
-(define (ucd-suc-entry-856 sv table)
-  sv
-  table
-  11490)
-
-(define (ucd-suc-entry-857 sv table)
-  sv
-  table
-  11499)
-
-(define (ucd-suc-entry-858 sv table)
-  sv
-  table
-  11501)
-
-(define (ucd-suc-entry-859 sv table)
-  sv
-  table
-  11506)
-
-(define (ucd-suc-entry-860 sv table)
-  sv
-  table
-  4256)
-
-(define (ucd-suc-entry-861 sv table)
-  sv
-  table
-  4257)
-
-(define (ucd-suc-entry-862 sv table)
-  sv
-  table
-  4258)
-
-(define (ucd-suc-entry-863 sv table)
-  sv
-  table
-  4259)
-
-(define (ucd-suc-entry-864 sv table)
-  sv
-  table
-  4260)
-
-(define (ucd-suc-entry-865 sv table)
-  sv
-  table
-  4261)
-
-(define (ucd-suc-entry-866 sv table)
-  sv
-  table
-  4262)
-
-(define (ucd-suc-entry-867 sv table)
-  sv
-  table
-  4263)
-
-(define (ucd-suc-entry-868 sv table)
-  sv
-  table
-  4264)
-
-(define (ucd-suc-entry-869 sv table)
-  sv
-  table
-  4265)
-
-(define (ucd-suc-entry-870 sv table)
-  sv
-  table
-  4266)
-
-(define (ucd-suc-entry-871 sv table)
-  sv
-  table
-  4267)
-
-(define (ucd-suc-entry-872 sv table)
-  sv
-  table
-  4268)
-
-(define (ucd-suc-entry-873 sv table)
-  sv
-  table
-  4269)
-
-(define (ucd-suc-entry-874 sv table)
-  sv
-  table
-  4270)
-
-(define (ucd-suc-entry-875 sv table)
-  sv
-  table
-  4271)
-
-(define (ucd-suc-entry-876 sv table)
-  sv
-  table
-  4272)
-
-(define (ucd-suc-entry-877 sv table)
-  sv
-  table
-  4273)
-
-(define (ucd-suc-entry-878 sv table)
-  sv
-  table
-  4274)
-
-(define (ucd-suc-entry-879 sv table)
-  sv
-  table
-  4275)
-
-(define (ucd-suc-entry-880 sv table)
-  sv
-  table
-  4276)
-
-(define (ucd-suc-entry-881 sv table)
-  sv
-  table
-  4277)
-
-(define (ucd-suc-entry-882 sv table)
-  sv
-  table
-  4278)
-
-(define (ucd-suc-entry-883 sv table)
-  sv
-  table
-  4279)
-
-(define (ucd-suc-entry-884 sv table)
-  sv
-  table
-  4280)
-
-(define (ucd-suc-entry-885 sv table)
-  sv
-  table
-  4281)
-
-(define (ucd-suc-entry-886 sv table)
-  sv
-  table
-  4282)
-
-(define (ucd-suc-entry-887 sv table)
-  sv
-  table
-  4283)
-
-(define (ucd-suc-entry-888 sv table)
-  sv
-  table
-  4284)
-
-(define (ucd-suc-entry-889 sv table)
-  sv
-  table
-  4285)
-
-(define (ucd-suc-entry-890 sv table)
-  sv
-  table
-  4286)
-
-(define (ucd-suc-entry-891 sv table)
-  sv
-  table
-  4287)
-
-(define (ucd-suc-entry-892 sv table)
-  sv
-  table
-  4288)
-
-(define (ucd-suc-entry-893 sv table)
-  sv
-  table
-  4289)
-
-(define (ucd-suc-entry-894 sv table)
-  sv
-  table
-  4290)
-
-(define (ucd-suc-entry-895 sv table)
-  sv
-  table
-  4291)
-
-(define (ucd-suc-entry-896 sv table)
-  sv
-  table
-  4292)
-
-(define (ucd-suc-entry-897 sv table)
-  sv
-  table
-  4293)
-
-(define (ucd-suc-entry-898 sv table)
-  sv
-  table
-  4295)
-
-(define (ucd-suc-entry-899 sv table)
-  sv
-  table
-  4301)
-
-(define (ucd-suc-entry-900 sv table)
-  sv
-  table
-  42560)
-
-(define (ucd-suc-entry-901 sv table)
-  sv
-  table
-  42562)
-
-(define (ucd-suc-entry-902 sv table)
-  sv
-  table
-  42564)
-
-(define (ucd-suc-entry-903 sv table)
-  sv
-  table
-  42566)
-
-(define (ucd-suc-entry-904 sv table)
-  sv
-  table
-  42568)
-
-(define (ucd-suc-entry-905 sv table)
-  sv
-  table
-  42572)
-
-(define (ucd-suc-entry-906 sv table)
-  sv
-  table
-  42574)
-
-(define (ucd-suc-entry-907 sv table)
-  sv
-  table
-  42576)
-
-(define (ucd-suc-entry-908 sv table)
-  sv
-  table
-  42578)
-
-(define (ucd-suc-entry-909 sv table)
-  sv
-  table
-  42580)
-
-(define (ucd-suc-entry-910 sv table)
-  sv
-  table
-  42582)
-
-(define (ucd-suc-entry-911 sv table)
-  sv
-  table
-  42584)
-
-(define (ucd-suc-entry-912 sv table)
-  sv
-  table
-  42586)
-
-(define (ucd-suc-entry-913 sv table)
-  sv
-  table
-  42588)
-
-(define (ucd-suc-entry-914 sv table)
-  sv
-  table
-  42590)
-
-(define (ucd-suc-entry-915 sv table)
-  sv
-  table
-  42592)
-
-(define (ucd-suc-entry-916 sv table)
-  sv
-  table
-  42594)
-
-(define (ucd-suc-entry-917 sv table)
-  sv
-  table
-  42596)
-
-(define (ucd-suc-entry-918 sv table)
-  sv
-  table
-  42598)
-
-(define (ucd-suc-entry-919 sv table)
-  sv
-  table
-  42600)
-
-(define (ucd-suc-entry-920 sv table)
-  sv
-  table
-  42602)
-
-(define (ucd-suc-entry-921 sv table)
-  sv
-  table
-  42604)
-
-(define (ucd-suc-entry-922 sv table)
-  sv
-  table
-  42624)
-
-(define (ucd-suc-entry-923 sv table)
-  sv
-  table
-  42626)
-
-(define (ucd-suc-entry-924 sv table)
-  sv
-  table
-  42628)
-
-(define (ucd-suc-entry-925 sv table)
-  sv
-  table
-  42630)
-
-(define (ucd-suc-entry-926 sv table)
-  sv
-  table
-  42632)
-
-(define (ucd-suc-entry-927 sv table)
-  sv
-  table
-  42634)
-
-(define (ucd-suc-entry-928 sv table)
-  sv
-  table
-  42636)
-
-(define (ucd-suc-entry-929 sv table)
-  sv
-  table
-  42638)
-
-(define (ucd-suc-entry-930 sv table)
-  sv
-  table
-  42640)
-
-(define (ucd-suc-entry-931 sv table)
-  sv
-  table
-  42642)
-
-(define (ucd-suc-entry-932 sv table)
-  sv
-  table
-  42644)
-
-(define (ucd-suc-entry-933 sv table)
-  sv
-  table
-  42646)
-
-(define (ucd-suc-entry-934 sv table)
-  sv
-  table
-  42648)
-
-(define (ucd-suc-entry-935 sv table)
-  sv
-  table
-  42650)
-
-(define (ucd-suc-entry-936 sv table)
-  sv
-  table
-  42786)
-
-(define (ucd-suc-entry-937 sv table)
-  sv
-  table
-  42788)
-
-(define (ucd-suc-entry-938 sv table)
-  sv
-  table
-  42790)
-
-(define (ucd-suc-entry-939 sv table)
-  sv
-  table
-  42792)
-
-(define (ucd-suc-entry-940 sv table)
-  sv
-  table
-  42794)
-
-(define (ucd-suc-entry-941 sv table)
-  sv
-  table
-  42796)
-
-(define (ucd-suc-entry-942 sv table)
-  sv
-  table
-  42798)
-
-(define (ucd-suc-entry-943 sv table)
-  sv
-  table
-  42802)
-
-(define (ucd-suc-entry-944 sv table)
-  sv
-  table
-  42804)
-
-(define (ucd-suc-entry-945 sv table)
-  sv
-  table
-  42806)
-
-(define (ucd-suc-entry-946 sv table)
-  sv
-  table
-  42808)
-
-(define (ucd-suc-entry-947 sv table)
-  sv
-  table
-  42810)
-
-(define (ucd-suc-entry-948 sv table)
-  sv
-  table
-  42812)
-
-(define (ucd-suc-entry-949 sv table)
-  sv
-  table
-  42814)
-
-(define (ucd-suc-entry-950 sv table)
-  sv
-  table
-  42816)
-
-(define (ucd-suc-entry-951 sv table)
-  sv
-  table
-  42818)
-
-(define (ucd-suc-entry-952 sv table)
-  sv
-  table
-  42820)
-
-(define (ucd-suc-entry-953 sv table)
-  sv
-  table
-  42822)
-
-(define (ucd-suc-entry-954 sv table)
-  sv
-  table
-  42824)
-
-(define (ucd-suc-entry-955 sv table)
-  sv
-  table
-  42826)
-
-(define (ucd-suc-entry-956 sv table)
-  sv
-  table
-  42828)
-
-(define (ucd-suc-entry-957 sv table)
-  sv
-  table
-  42830)
-
-(define (ucd-suc-entry-958 sv table)
-  sv
-  table
-  42832)
-
-(define (ucd-suc-entry-959 sv table)
-  sv
-  table
-  42834)
-
-(define (ucd-suc-entry-960 sv table)
-  sv
-  table
-  42836)
-
-(define (ucd-suc-entry-961 sv table)
-  sv
-  table
-  42838)
-
-(define (ucd-suc-entry-962 sv table)
-  sv
-  table
-  42840)
-
-(define (ucd-suc-entry-963 sv table)
-  sv
-  table
-  42842)
-
-(define (ucd-suc-entry-964 sv table)
-  sv
-  table
-  42844)
-
-(define (ucd-suc-entry-965 sv table)
-  sv
-  table
-  42846)
-
-(define (ucd-suc-entry-966 sv table)
-  sv
-  table
-  42848)
-
-(define (ucd-suc-entry-967 sv table)
-  sv
-  table
-  42850)
-
-(define (ucd-suc-entry-968 sv table)
-  sv
-  table
-  42852)
-
-(define (ucd-suc-entry-969 sv table)
-  sv
-  table
-  42854)
-
-(define (ucd-suc-entry-970 sv table)
-  sv
-  table
-  42856)
-
-(define (ucd-suc-entry-971 sv table)
-  sv
-  table
-  42858)
-
-(define (ucd-suc-entry-972 sv table)
-  sv
-  table
-  42860)
-
-(define (ucd-suc-entry-973 sv table)
-  sv
-  table
-  42862)
-
-(define (ucd-suc-entry-974 sv table)
-  sv
-  table
-  42873)
-
-(define (ucd-suc-entry-975 sv table)
-  sv
-  table
-  42875)
-
-(define (ucd-suc-entry-976 sv table)
-  sv
-  table
-  42878)
-
-(define (ucd-suc-entry-977 sv table)
-  sv
-  table
-  42880)
-
-(define (ucd-suc-entry-978 sv table)
-  sv
-  table
-  42882)
-
-(define (ucd-suc-entry-979 sv table)
-  sv
-  table
-  42884)
-
-(define (ucd-suc-entry-980 sv table)
-  sv
-  table
-  42886)
-
-(define (ucd-suc-entry-981 sv table)
-  sv
-  table
-  42891)
-
-(define (ucd-suc-entry-982 sv table)
-  sv
-  table
-  42896)
-
-(define (ucd-suc-entry-983 sv table)
-  sv
-  table
-  42898)
-
-(define (ucd-suc-entry-984 sv table)
-  sv
-  table
-  42902)
-
-(define (ucd-suc-entry-985 sv table)
-  sv
-  table
-  42904)
-
-(define (ucd-suc-entry-986 sv table)
-  sv
-  table
-  42906)
-
-(define (ucd-suc-entry-987 sv table)
-  sv
-  table
-  42908)
-
-(define (ucd-suc-entry-988 sv table)
-  sv
-  table
-  42910)
-
-(define (ucd-suc-entry-989 sv table)
-  sv
-  table
-  42912)
-
-(define (ucd-suc-entry-990 sv table)
-  sv
-  table
-  42914)
-
-(define (ucd-suc-entry-991 sv table)
-  sv
-  table
-  42916)
-
-(define (ucd-suc-entry-992 sv table)
-  sv
-  table
-  42918)
-
-(define (ucd-suc-entry-993 sv table)
-  sv
-  table
-  42920)
-
-(define (ucd-suc-entry-994 sv table)
-  sv
-  table
-  42932)
-
-(define (ucd-suc-entry-995 sv table)
-  sv
-  table
-  42934)
-
-(define (ucd-suc-entry-996 sv table)
-  sv
-  table
-  42931)
-
-(define (ucd-suc-entry-997 sv table)
-  sv
-  table
-  5024)
-
-(define (ucd-suc-entry-998 sv table)
-  sv
-  table
-  5025)
-
-(define (ucd-suc-entry-999 sv table)
-  sv
-  table
-  5026)
-
-(define (ucd-suc-entry-1000 sv table)
-  sv
-  table
-  5027)
-
-(define (ucd-suc-entry-1001 sv table)
-  sv
-  table
-  5028)
-
-(define (ucd-suc-entry-1002 sv table)
-  sv
-  table
-  5029)
-
-(define (ucd-suc-entry-1003 sv table)
-  sv
-  table
-  5030)
-
-(define (ucd-suc-entry-1004 sv table)
-  sv
-  table
-  5031)
-
-(define (ucd-suc-entry-1005 sv table)
-  sv
-  table
-  5032)
-
-(define (ucd-suc-entry-1006 sv table)
-  sv
-  table
-  5033)
-
-(define (ucd-suc-entry-1007 sv table)
-  sv
-  table
-  5034)
-
-(define (ucd-suc-entry-1008 sv table)
-  sv
-  table
-  5035)
-
-(define (ucd-suc-entry-1009 sv table)
-  sv
-  table
-  5036)
-
-(define (ucd-suc-entry-1010 sv table)
-  sv
-  table
-  5037)
-
-(define (ucd-suc-entry-1011 sv table)
-  sv
-  table
-  5038)
-
-(define (ucd-suc-entry-1012 sv table)
-  sv
-  table
-  5039)
-
-(define (ucd-suc-entry-1013 sv table)
-  sv
-  table
-  5040)
-
-(define (ucd-suc-entry-1014 sv table)
-  sv
-  table
-  5041)
-
-(define (ucd-suc-entry-1015 sv table)
-  sv
-  table
-  5042)
-
-(define (ucd-suc-entry-1016 sv table)
-  sv
-  table
-  5043)
-
-(define (ucd-suc-entry-1017 sv table)
-  sv
-  table
-  5044)
-
-(define (ucd-suc-entry-1018 sv table)
-  sv
-  table
-  5045)
-
-(define (ucd-suc-entry-1019 sv table)
-  sv
-  table
-  5046)
-
-(define (ucd-suc-entry-1020 sv table)
-  sv
-  table
-  5047)
-
-(define (ucd-suc-entry-1021 sv table)
-  sv
-  table
-  5048)
-
-(define (ucd-suc-entry-1022 sv table)
-  sv
-  table
-  5049)
-
-(define (ucd-suc-entry-1023 sv table)
-  sv
-  table
-  5050)
-
-(define (ucd-suc-entry-1024 sv table)
-  sv
-  table
-  5051)
-
-(define (ucd-suc-entry-1025 sv table)
-  sv
-  table
-  5052)
-
-(define (ucd-suc-entry-1026 sv table)
-  sv
-  table
-  5053)
-
-(define (ucd-suc-entry-1027 sv table)
-  sv
-  table
-  5054)
-
-(define (ucd-suc-entry-1028 sv table)
-  sv
-  table
-  5055)
-
-(define (ucd-suc-entry-1029 sv table)
-  sv
-  table
-  5056)
-
-(define (ucd-suc-entry-1030 sv table)
-  sv
-  table
-  5057)
-
-(define (ucd-suc-entry-1031 sv table)
-  sv
-  table
-  5058)
-
-(define (ucd-suc-entry-1032 sv table)
-  sv
-  table
-  5059)
-
-(define (ucd-suc-entry-1033 sv table)
-  sv
-  table
-  5060)
-
-(define (ucd-suc-entry-1034 sv table)
-  sv
-  table
-  5061)
-
-(define (ucd-suc-entry-1035 sv table)
-  sv
-  table
-  5062)
-
-(define (ucd-suc-entry-1036 sv table)
-  sv
-  table
-  5063)
-
-(define (ucd-suc-entry-1037 sv table)
-  sv
-  table
-  5064)
-
-(define (ucd-suc-entry-1038 sv table)
-  sv
-  table
-  5065)
-
-(define (ucd-suc-entry-1039 sv table)
-  sv
-  table
-  5066)
-
-(define (ucd-suc-entry-1040 sv table)
-  sv
-  table
-  5067)
-
-(define (ucd-suc-entry-1041 sv table)
-  sv
-  table
-  5068)
-
-(define (ucd-suc-entry-1042 sv table)
-  sv
-  table
-  5069)
-
-(define (ucd-suc-entry-1043 sv table)
-  sv
-  table
-  5070)
-
-(define (ucd-suc-entry-1044 sv table)
-  sv
-  table
-  5071)
-
-(define (ucd-suc-entry-1045 sv table)
-  sv
-  table
-  5072)
-
-(define (ucd-suc-entry-1046 sv table)
-  sv
-  table
-  5073)
-
-(define (ucd-suc-entry-1047 sv table)
-  sv
-  table
-  5074)
-
-(define (ucd-suc-entry-1048 sv table)
-  sv
-  table
-  5075)
-
-(define (ucd-suc-entry-1049 sv table)
-  sv
-  table
-  5076)
-
-(define (ucd-suc-entry-1050 sv table)
-  sv
-  table
-  5077)
-
-(define (ucd-suc-entry-1051 sv table)
-  sv
-  table
-  5078)
-
-(define (ucd-suc-entry-1052 sv table)
-  sv
-  table
-  5079)
-
-(define (ucd-suc-entry-1053 sv table)
-  sv
-  table
-  5080)
-
-(define (ucd-suc-entry-1054 sv table)
-  sv
-  table
-  5081)
-
-(define (ucd-suc-entry-1055 sv table)
-  sv
-  table
-  5082)
-
-(define (ucd-suc-entry-1056 sv table)
-  sv
-  table
-  5083)
-
-(define (ucd-suc-entry-1057 sv table)
-  sv
-  table
-  5084)
-
-(define (ucd-suc-entry-1058 sv table)
-  sv
-  table
-  5085)
-
-(define (ucd-suc-entry-1059 sv table)
-  sv
-  table
-  5086)
-
-(define (ucd-suc-entry-1060 sv table)
-  sv
-  table
-  5087)
-
-(define (ucd-suc-entry-1061 sv table)
-  sv
-  table
-  5088)
-
-(define (ucd-suc-entry-1062 sv table)
-  sv
-  table
-  5089)
-
-(define (ucd-suc-entry-1063 sv table)
-  sv
-  table
-  5090)
-
-(define (ucd-suc-entry-1064 sv table)
-  sv
-  table
-  5091)
-
-(define (ucd-suc-entry-1065 sv table)
-  sv
-  table
-  5092)
-
-(define (ucd-suc-entry-1066 sv table)
-  sv
-  table
-  5093)
-
-(define (ucd-suc-entry-1067 sv table)
-  sv
-  table
-  5094)
-
-(define (ucd-suc-entry-1068 sv table)
-  sv
-  table
-  5095)
-
-(define (ucd-suc-entry-1069 sv table)
-  sv
-  table
-  5096)
-
-(define (ucd-suc-entry-1070 sv table)
-  sv
-  table
-  5097)
-
-(define (ucd-suc-entry-1071 sv table)
-  sv
-  table
-  5098)
-
-(define (ucd-suc-entry-1072 sv table)
-  sv
-  table
-  5099)
-
-(define (ucd-suc-entry-1073 sv table)
-  sv
-  table
-  5100)
-
-(define (ucd-suc-entry-1074 sv table)
-  sv
-  table
-  5101)
-
-(define (ucd-suc-entry-1075 sv table)
-  sv
-  table
-  5102)
-
-(define (ucd-suc-entry-1076 sv table)
-  sv
-  table
-  5103)
-
-(define (ucd-suc-entry-1077 sv table)
-  sv
-  table
-  65313)
-
-(define (ucd-suc-entry-1078 sv table)
-  sv
-  table
-  65314)
-
-(define (ucd-suc-entry-1079 sv table)
-  sv
-  table
-  65315)
-
-(define (ucd-suc-entry-1080 sv table)
-  sv
-  table
-  65316)
-
-(define (ucd-suc-entry-1081 sv table)
-  sv
-  table
-  65317)
-
-(define (ucd-suc-entry-1082 sv table)
-  sv
-  table
-  65318)
-
-(define (ucd-suc-entry-1083 sv table)
-  sv
-  table
-  65319)
-
-(define (ucd-suc-entry-1084 sv table)
-  sv
-  table
-  65320)
-
-(define (ucd-suc-entry-1085 sv table)
-  sv
-  table
-  65321)
-
-(define (ucd-suc-entry-1086 sv table)
-  sv
-  table
-  65322)
-
-(define (ucd-suc-entry-1087 sv table)
-  sv
-  table
-  65323)
-
-(define (ucd-suc-entry-1088 sv table)
-  sv
-  table
-  65324)
-
-(define (ucd-suc-entry-1089 sv table)
-  sv
-  table
-  65325)
-
-(define (ucd-suc-entry-1090 sv table)
-  sv
-  table
-  65326)
-
-(define (ucd-suc-entry-1091 sv table)
-  sv
-  table
-  65327)
-
-(define (ucd-suc-entry-1092 sv table)
-  sv
-  table
-  65328)
-
-(define (ucd-suc-entry-1093 sv table)
-  sv
-  table
-  65329)
-
-(define (ucd-suc-entry-1094 sv table)
-  sv
-  table
-  65330)
-
-(define (ucd-suc-entry-1095 sv table)
-  sv
-  table
-  65331)
-
-(define (ucd-suc-entry-1096 sv table)
-  sv
-  table
-  65332)
-
-(define (ucd-suc-entry-1097 sv table)
-  sv
-  table
-  65333)
-
-(define (ucd-suc-entry-1098 sv table)
-  sv
-  table
-  65334)
-
-(define (ucd-suc-entry-1099 sv table)
-  sv
-  table
-  65335)
-
-(define (ucd-suc-entry-1100 sv table)
-  sv
-  table
-  65336)
-
-(define (ucd-suc-entry-1101 sv table)
-  sv
-  table
-  65337)
-
-(define (ucd-suc-entry-1102 sv table)
-  sv
-  table
-  65338)
-
-(define (ucd-suc-entry-1103 sv table)
-  sv
-  table
-  66560)
-
-(define (ucd-suc-entry-1104 sv table)
-  sv
-  table
-  66561)
-
-(define (ucd-suc-entry-1105 sv table)
-  sv
-  table
-  66562)
-
-(define (ucd-suc-entry-1106 sv table)
-  sv
-  table
-  66563)
-
-(define (ucd-suc-entry-1107 sv table)
-  sv
-  table
-  66564)
-
-(define (ucd-suc-entry-1108 sv table)
-  sv
-  table
-  66565)
-
-(define (ucd-suc-entry-1109 sv table)
-  sv
-  table
-  66566)
-
-(define (ucd-suc-entry-1110 sv table)
-  sv
-  table
-  66567)
-
-(define (ucd-suc-entry-1111 sv table)
-  sv
-  table
-  66568)
-
-(define (ucd-suc-entry-1112 sv table)
-  sv
-  table
-  66569)
-
-(define (ucd-suc-entry-1113 sv table)
-  sv
-  table
-  66570)
-
-(define (ucd-suc-entry-1114 sv table)
-  sv
-  table
-  66571)
-
-(define (ucd-suc-entry-1115 sv table)
-  sv
-  table
-  66572)
-
-(define (ucd-suc-entry-1116 sv table)
-  sv
-  table
-  66573)
-
-(define (ucd-suc-entry-1117 sv table)
-  sv
-  table
-  66574)
-
-(define (ucd-suc-entry-1118 sv table)
-  sv
-  table
-  66575)
-
-(define (ucd-suc-entry-1119 sv table)
-  sv
-  table
-  66576)
-
-(define (ucd-suc-entry-1120 sv table)
-  sv
-  table
-  66577)
-
-(define (ucd-suc-entry-1121 sv table)
-  sv
-  table
-  66578)
-
-(define (ucd-suc-entry-1122 sv table)
-  sv
-  table
-  66579)
-
-(define (ucd-suc-entry-1123 sv table)
-  sv
-  table
-  66580)
-
-(define (ucd-suc-entry-1124 sv table)
-  sv
-  table
-  66581)
-
-(define (ucd-suc-entry-1125 sv table)
-  sv
-  table
-  66582)
-
-(define (ucd-suc-entry-1126 sv table)
-  sv
-  table
-  66583)
-
-(define (ucd-suc-entry-1127 sv table)
-  sv
-  table
-  66584)
-
-(define (ucd-suc-entry-1128 sv table)
-  sv
-  table
-  66585)
-
-(define (ucd-suc-entry-1129 sv table)
-  sv
-  table
-  66586)
-
-(define (ucd-suc-entry-1130 sv table)
-  sv
-  table
-  66587)
-
-(define (ucd-suc-entry-1131 sv table)
-  sv
-  table
-  66588)
-
-(define (ucd-suc-entry-1132 sv table)
-  sv
-  table
-  66589)
-
-(define (ucd-suc-entry-1133 sv table)
-  sv
-  table
-  66590)
-
-(define (ucd-suc-entry-1134 sv table)
-  sv
-  table
-  66591)
-
-(define (ucd-suc-entry-1135 sv table)
-  sv
-  table
-  66592)
-
-(define (ucd-suc-entry-1136 sv table)
-  sv
-  table
-  66593)
-
-(define (ucd-suc-entry-1137 sv table)
-  sv
-  table
-  66594)
-
-(define (ucd-suc-entry-1138 sv table)
-  sv
-  table
-  66595)
-
-(define (ucd-suc-entry-1139 sv table)
-  sv
-  table
-  66596)
-
-(define (ucd-suc-entry-1140 sv table)
-  sv
-  table
-  66597)
-
-(define (ucd-suc-entry-1141 sv table)
-  sv
-  table
-  66598)
-
-(define (ucd-suc-entry-1142 sv table)
-  sv
-  table
-  66599)
-
-(define (ucd-suc-entry-1143 sv table)
-  sv
-  table
-  66736)
-
-(define (ucd-suc-entry-1144 sv table)
-  sv
-  table
-  66737)
-
-(define (ucd-suc-entry-1145 sv table)
-  sv
-  table
-  66738)
-
-(define (ucd-suc-entry-1146 sv table)
-  sv
-  table
-  66739)
-
-(define (ucd-suc-entry-1147 sv table)
-  sv
-  table
-  66740)
-
-(define (ucd-suc-entry-1148 sv table)
-  sv
-  table
-  66741)
-
-(define (ucd-suc-entry-1149 sv table)
-  sv
-  table
-  66742)
-
-(define (ucd-suc-entry-1150 sv table)
-  sv
-  table
-  66743)
-
-(define (ucd-suc-entry-1151 sv table)
-  sv
-  table
-  66744)
-
-(define (ucd-suc-entry-1152 sv table)
-  sv
-  table
-  66745)
-
-(define (ucd-suc-entry-1153 sv table)
-  sv
-  table
-  66746)
-
-(define (ucd-suc-entry-1154 sv table)
-  sv
-  table
-  66747)
-
-(define (ucd-suc-entry-1155 sv table)
-  sv
-  table
-  66748)
-
-(define (ucd-suc-entry-1156 sv table)
-  sv
-  table
-  66749)
-
-(define (ucd-suc-entry-1157 sv table)
-  sv
-  table
-  66750)
-
-(define (ucd-suc-entry-1158 sv table)
-  sv
-  table
-  66751)
-
-(define (ucd-suc-entry-1159 sv table)
-  sv
-  table
-  66752)
-
-(define (ucd-suc-entry-1160 sv table)
-  sv
-  table
-  66753)
-
-(define (ucd-suc-entry-1161 sv table)
-  sv
-  table
-  66754)
-
-(define (ucd-suc-entry-1162 sv table)
-  sv
-  table
-  66755)
-
-(define (ucd-suc-entry-1163 sv table)
-  sv
-  table
-  66756)
-
-(define (ucd-suc-entry-1164 sv table)
-  sv
-  table
-  66757)
-
-(define (ucd-suc-entry-1165 sv table)
-  sv
-  table
-  66758)
-
-(define (ucd-suc-entry-1166 sv table)
-  sv
-  table
-  66759)
-
-(define (ucd-suc-entry-1167 sv table)
-  sv
-  table
-  66760)
-
-(define (ucd-suc-entry-1168 sv table)
-  sv
-  table
-  66761)
-
-(define (ucd-suc-entry-1169 sv table)
-  sv
-  table
-  66762)
-
-(define (ucd-suc-entry-1170 sv table)
-  sv
-  table
-  66763)
-
-(define (ucd-suc-entry-1171 sv table)
-  sv
-  table
-  66764)
-
-(define (ucd-suc-entry-1172 sv table)
-  sv
-  table
-  66765)
-
-(define (ucd-suc-entry-1173 sv table)
-  sv
-  table
-  66766)
-
-(define (ucd-suc-entry-1174 sv table)
-  sv
-  table
-  66767)
-
-(define (ucd-suc-entry-1175 sv table)
-  sv
-  table
-  66768)
-
-(define (ucd-suc-entry-1176 sv table)
-  sv
-  table
-  66769)
-
-(define (ucd-suc-entry-1177 sv table)
-  sv
-  table
-  66770)
-
-(define (ucd-suc-entry-1178 sv table)
-  sv
-  table
-  66771)
-
-(define (ucd-suc-entry-1179 sv table)
-  sv
-  table
-  68736)
-
-(define (ucd-suc-entry-1180 sv table)
-  sv
-  table
-  68737)
-
-(define (ucd-suc-entry-1181 sv table)
-  sv
-  table
-  68738)
-
-(define (ucd-suc-entry-1182 sv table)
-  sv
-  table
-  68739)
-
-(define (ucd-suc-entry-1183 sv table)
-  sv
-  table
-  68740)
-
-(define (ucd-suc-entry-1184 sv table)
-  sv
-  table
-  68741)
-
-(define (ucd-suc-entry-1185 sv table)
-  sv
-  table
-  68742)
-
-(define (ucd-suc-entry-1186 sv table)
-  sv
-  table
-  68743)
-
-(define (ucd-suc-entry-1187 sv table)
-  sv
-  table
-  68744)
-
-(define (ucd-suc-entry-1188 sv table)
-  sv
-  table
-  68745)
-
-(define (ucd-suc-entry-1189 sv table)
-  sv
-  table
-  68746)
-
-(define (ucd-suc-entry-1190 sv table)
-  sv
-  table
-  68747)
-
-(define (ucd-suc-entry-1191 sv table)
-  sv
-  table
-  68748)
-
-(define (ucd-suc-entry-1192 sv table)
-  sv
-  table
-  68749)
-
-(define (ucd-suc-entry-1193 sv table)
-  sv
-  table
-  68750)
-
-(define (ucd-suc-entry-1194 sv table)
-  sv
-  table
-  68751)
-
-(define (ucd-suc-entry-1195 sv table)
-  sv
-  table
-  68752)
-
-(define (ucd-suc-entry-1196 sv table)
-  sv
-  table
-  68753)
-
-(define (ucd-suc-entry-1197 sv table)
-  sv
-  table
-  68754)
-
-(define (ucd-suc-entry-1198 sv table)
-  sv
-  table
-  68755)
-
-(define (ucd-suc-entry-1199 sv table)
-  sv
-  table
-  68756)
-
-(define (ucd-suc-entry-1200 sv table)
-  sv
-  table
-  68757)
-
-(define (ucd-suc-entry-1201 sv table)
-  sv
-  table
-  68758)
-
-(define (ucd-suc-entry-1202 sv table)
-  sv
-  table
-  68759)
-
-(define (ucd-suc-entry-1203 sv table)
-  sv
-  table
-  68760)
-
-(define (ucd-suc-entry-1204 sv table)
-  sv
-  table
-  68761)
-
-(define (ucd-suc-entry-1205 sv table)
-  sv
-  table
-  68762)
-
-(define (ucd-suc-entry-1206 sv table)
-  sv
-  table
-  68763)
-
-(define (ucd-suc-entry-1207 sv table)
-  sv
-  table
-  68764)
-
-(define (ucd-suc-entry-1208 sv table)
-  sv
-  table
-  68765)
-
-(define (ucd-suc-entry-1209 sv table)
-  sv
-  table
-  68766)
-
-(define (ucd-suc-entry-1210 sv table)
-  sv
-  table
-  68767)
-
-(define (ucd-suc-entry-1211 sv table)
-  sv
-  table
-  68768)
-
-(define (ucd-suc-entry-1212 sv table)
-  sv
-  table
-  68769)
-
-(define (ucd-suc-entry-1213 sv table)
-  sv
-  table
-  68770)
-
-(define (ucd-suc-entry-1214 sv table)
-  sv
-  table
-  68771)
-
-(define (ucd-suc-entry-1215 sv table)
-  sv
-  table
-  68772)
-
-(define (ucd-suc-entry-1216 sv table)
-  sv
-  table
-  68773)
-
-(define (ucd-suc-entry-1217 sv table)
-  sv
-  table
-  68774)
-
-(define (ucd-suc-entry-1218 sv table)
-  sv
-  table
-  68775)
-
-(define (ucd-suc-entry-1219 sv table)
-  sv
-  table
-  68776)
-
-(define (ucd-suc-entry-1220 sv table)
-  sv
-  table
-  68777)
-
-(define (ucd-suc-entry-1221 sv table)
-  sv
-  table
-  68778)
-
-(define (ucd-suc-entry-1222 sv table)
-  sv
-  table
-  68779)
-
-(define (ucd-suc-entry-1223 sv table)
-  sv
-  table
-  68780)
-
-(define (ucd-suc-entry-1224 sv table)
-  sv
-  table
-  68781)
-
-(define (ucd-suc-entry-1225 sv table)
-  sv
-  table
-  68782)
-
-(define (ucd-suc-entry-1226 sv table)
-  sv
-  table
-  68783)
-
-(define (ucd-suc-entry-1227 sv table)
-  sv
-  table
-  68784)
-
-(define (ucd-suc-entry-1228 sv table)
-  sv
-  table
-  68785)
-
-(define (ucd-suc-entry-1229 sv table)
-  sv
-  table
-  68786)
-
-(define (ucd-suc-entry-1230 sv table)
-  sv
-  table
-  71840)
-
-(define (ucd-suc-entry-1231 sv table)
-  sv
-  table
-  71841)
-
-(define (ucd-suc-entry-1232 sv table)
-  sv
-  table
-  71842)
-
-(define (ucd-suc-entry-1233 sv table)
-  sv
-  table
-  71843)
-
-(define (ucd-suc-entry-1234 sv table)
-  sv
-  table
-  71844)
-
-(define (ucd-suc-entry-1235 sv table)
-  sv
-  table
-  71845)
-
-(define (ucd-suc-entry-1236 sv table)
-  sv
-  table
-  71846)
-
-(define (ucd-suc-entry-1237 sv table)
-  sv
-  table
-  71847)
-
-(define (ucd-suc-entry-1238 sv table)
-  sv
-  table
-  71848)
-
-(define (ucd-suc-entry-1239 sv table)
-  sv
-  table
-  71849)
-
-(define (ucd-suc-entry-1240 sv table)
-  sv
-  table
-  71850)
-
-(define (ucd-suc-entry-1241 sv table)
-  sv
-  table
-  71851)
-
-(define (ucd-suc-entry-1242 sv table)
-  sv
-  table
-  71852)
-
-(define (ucd-suc-entry-1243 sv table)
-  sv
-  table
-  71853)
-
-(define (ucd-suc-entry-1244 sv table)
-  sv
-  table
-  71854)
-
-(define (ucd-suc-entry-1245 sv table)
-  sv
-  table
-  71855)
-
-(define (ucd-suc-entry-1246 sv table)
-  sv
-  table
-  71856)
-
-(define (ucd-suc-entry-1247 sv table)
-  sv
-  table
-  71857)
-
-(define (ucd-suc-entry-1248 sv table)
-  sv
-  table
-  71858)
-
-(define (ucd-suc-entry-1249 sv table)
-  sv
-  table
-  71859)
-
-(define (ucd-suc-entry-1250 sv table)
-  sv
-  table
-  71860)
-
-(define (ucd-suc-entry-1251 sv table)
-  sv
-  table
-  71861)
-
-(define (ucd-suc-entry-1252 sv table)
-  sv
-  table
-  71862)
-
-(define (ucd-suc-entry-1253 sv table)
-  sv
-  table
-  71863)
-
-(define (ucd-suc-entry-1254 sv table)
-  sv
-  table
-  71864)
-
-(define (ucd-suc-entry-1255 sv table)
-  sv
-  table
-  71865)
-
-(define (ucd-suc-entry-1256 sv table)
-  sv
-  table
-  71866)
-
-(define (ucd-suc-entry-1257 sv table)
-  sv
-  table
-  71867)
-
-(define (ucd-suc-entry-1258 sv table)
-  sv
-  table
-  71868)
-
-(define (ucd-suc-entry-1259 sv table)
-  sv
-  table
-  71869)
-
-(define (ucd-suc-entry-1260 sv table)
-  sv
-  table
-  71870)
-
-(define (ucd-suc-entry-1261 sv table)
-  sv
-  table
-  71871)
-
-(define (ucd-suc-entry-1262 sv table)
-  sv
-  table
-  125184)
-
-(define (ucd-suc-entry-1263 sv table)
-  sv
-  table
-  125185)
-
-(define (ucd-suc-entry-1264 sv table)
-  sv
-  table
-  125186)
-
-(define (ucd-suc-entry-1265 sv table)
-  sv
-  table
-  125187)
-
-(define (ucd-suc-entry-1266 sv table)
-  sv
-  table
-  125188)
-
-(define (ucd-suc-entry-1267 sv table)
-  sv
-  table
-  125189)
-
-(define (ucd-suc-entry-1268 sv table)
-  sv
-  table
-  125190)
-
-(define (ucd-suc-entry-1269 sv table)
-  sv
-  table
-  125191)
-
-(define (ucd-suc-entry-1270 sv table)
-  sv
-  table
-  125192)
-
-(define (ucd-suc-entry-1271 sv table)
-  sv
-  table
-  125193)
-
-(define (ucd-suc-entry-1272 sv table)
-  sv
-  table
-  125194)
-
-(define (ucd-suc-entry-1273 sv table)
-  sv
-  table
-  125195)
-
-(define (ucd-suc-entry-1274 sv table)
-  sv
-  table
-  125196)
-
-(define (ucd-suc-entry-1275 sv table)
-  sv
-  table
-  125197)
-
-(define (ucd-suc-entry-1276 sv table)
-  sv
-  table
-  125198)
-
-(define (ucd-suc-entry-1277 sv table)
-  sv
-  table
-  125199)
-
-(define (ucd-suc-entry-1278 sv table)
-  sv
-  table
-  125200)
-
-(define (ucd-suc-entry-1279 sv table)
-  sv
-  table
-  125201)
-
-(define (ucd-suc-entry-1280 sv table)
-  sv
-  table
-  125202)
-
-(define (ucd-suc-entry-1281 sv table)
-  sv
-  table
-  125203)
-
-(define (ucd-suc-entry-1282 sv table)
-  sv
-  table
-  125204)
-
-(define (ucd-suc-entry-1283 sv table)
-  sv
-  table
-  125205)
-
-(define (ucd-suc-entry-1284 sv table)
-  sv
-  table
-  125206)
-
-(define (ucd-suc-entry-1285 sv table)
-  sv
-  table
-  125207)
-
-(define (ucd-suc-entry-1286 sv table)
-  sv
-  table
-  125208)
-
-(define (ucd-suc-entry-1287 sv table)
-  sv
-  table
-  125209)
-
-(define (ucd-suc-entry-1288 sv table)
-  sv
-  table
-  125210)
-
-(define (ucd-suc-entry-1289 sv table)
-  sv
-  table
-  125211)
-
-(define (ucd-suc-entry-1290 sv table)
-  sv
-  table
-  125212)
-
-(define (ucd-suc-entry-1291 sv table)
-  sv
-  table
-  125213)
-
-(define (ucd-suc-entry-1292 sv table)
-  sv
-  table
-  125214)
-
-(define (ucd-suc-entry-1293 sv table)
-  sv
-  table
-  125215)
-
-(define (ucd-suc-entry-1294 sv table)
-  sv
-  table
-  125216)
-
-(define (ucd-suc-entry-1295 sv table)
-  sv
-  table
-  125217)
-
-
-(define-deferred ucd-suc-entry-1296
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 0 51 52 53 54 55 56 57 58)))
-    (named-lambda (ucd-suc-entry-1296 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1297
-  (let ((offsets (bytevector 0 59 0 60 0 61 0 62 0 63 0 64 0 65 0 66 0 67 0 68 0 69 0 70 0 71 0 72 0 73 0 74 0 75 0 76 0 77 0 78 0 79 0 80 0 81 0 82 0 9 0 83 0 84 0 85 0 0 86 0 87 0 88 0 89 0 90 0 91 0 92 0 93 0 0 94 0 95 0 96 0 97 0 98 0 99 0 100 0 101 0 102 0 103 0 104 0 105 0 106 0 107 0 108 0 109 0 110 0 111 0 112 0 113 0 114 0 115 0 116 0 0 117 0 118 0 119 19 120 0 0 121 0 122 0 0 123 0 0 0 124 0 0 0 0 0 125 0 0 126 0 0 0 127 128 0 0 0 129 0 0 130 0 131 0 132 0 0 133 0 0 0 0 134 0 0 135 0 0 0 136 0 137 0 0 138 0 0 0 139 0 140 0 0 0 0 0 141 141 0 142 142 0 143 143 0 144 0 145 0 146 0 147 0 148 0 149 0 150 0 151 152 0 153 0 154 0 155 0 156 0 157 0 158 0 159 0 160 0 161 0 0 162 162 0 163 0 0 0 164 0 165 0 166 0 167)))
-    (named-lambda (ucd-suc-entry-1297 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1298
-  (let ((offsets (bytevector 0 168 0 169 0 170 0 171 0 172 0 173 0 174 0 175 0 176 0 177 0 178 0 179 0 180 0 181 0 182 0 183 0 0 0 184 0 185 0 186 0 187 0 188 0 189 0 190 0 191 0 192 0 0 0 0 0 0 0 0 193 0 0 194 195 0 196 0 0 0 0 197 0 198 0 199 0 200 0 201 202 203 204 205 206 0 207 208 0 209 0 210 211 0 0 0 212 213 0 214 0 215 216 0 217 218 219 220 221 0 0 222 0 223 224 0 0 225 0 0 0 0 0 0 0 226 0 0 227 0 0 228 0 0 0 229 230 231 232 233 234 0 0 0 0 0 235 0 0 0 0 0 0 0 0 0 0 236 237 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1298 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1299
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     238
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     239
-                     0
-                     0
-                     0
-                     240
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     241
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     243
-                     0
-                     244
-                     0
-                     245
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     246
-                     0
-                     247
-                     0
-                     248
-                     0
-                     249
-                     0
-                     0
-                     0
-                     250
-                     0
-                     251
-                     0
-                     252
-                     0
-                     253
-                     0
-                     254
-                     0
-                     255
-                     0
-                     0
-                     1
-                     1
-                     1
-                     238
-                     0
-                     2
-                     1
-                     3
-                     1
-                     27
-                     0
-                     4
-                     1
-                     5
-                     1
-                     6
-                     1
-                     7
-                     1
-                     8
-                     1
-                     9
-                     1
-                     9
-                     1
-                     10
-                     1
-                     11
-                     1
-                     12
-                     1
-                     13
-                     1
-                     14
-                     1
-                     15
-                     1
-                     16
-                     1
-                     17
-                     1
-                     18
-                     1
-                     19
-                     1
-                     20
-                     1
-                     0
-                     0
-                     251
-                     0
-                     1
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     12
-                     1
-                     7
-                     1
-                     21
-                     1
-                     0
-                     0
-                     22
-                     1
-                     0
-                     0
-                     23
-                     1
-                     0
-                     0
-                     24
-                     1
-                     0
-                     0
-                     25
-                     1
-                     0
-                     0
-                     26
-                     1
-                     0
-                     0
-                     27
-                     1
-                     0
-                     0
-                     28
-                     1
-                     0
-                     0
-                     29
-                     1
-                     0
-                     0
-                     30
-                     1
-                     0
-                     0
-                     31
-                     1
-                     0
-                     0
-                     32
-                     1
-                     0
-                     0
-                     33
-                     1
-                     2
-                     1
-                     8
-                     1
-                     34
-                     1
-                     35
-                     1
-                     0
-                     0
-                     254
-                     0
-                     0
-                     0
-                     0
-                     0
-                     36
-                     1
-                     0
-                     0
-                     0
-                     0
-                     37
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1299 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1300
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     38
-                     1
-                     39
-                     1
-                     40
-                     1
-                     41
-                     1
-                     42
-                     1
-                     43
-                     1
-                     44
-                     1
-                     45
-                     1
-                     46
-                     1
-                     47
-                     1
-                     48
-                     1
-                     49
-                     1
-                     50
-                     1
-                     51
-                     1
-                     52
-                     1
-                     53
-                     1
-                     54
-                     1
-                     55
-                     1
-                     56
-                     1
-                     57
-                     1
-                     58
-                     1
-                     59
-                     1
-                     60
-                     1
-                     61
-                     1
-                     62
-                     1
-                     63
-                     1
-                     64
-                     1
-                     65
-                     1
-                     66
-                     1
-                     67
-                     1
-                     68
-                     1
-                     69
-                     1
-                     70
-                     1
-                     71
-                     1
-                     72
-                     1
-                     73
-                     1
-                     74
-                     1
-                     75
-                     1
-                     76
-                     1
-                     77
-                     1
-                     78
-                     1
-                     79
-                     1
-                     80
-                     1
-                     81
-                     1
-                     82
-                     1
-                     83
-                     1
-                     84
-                     1
-                     85
-                     1
-                     0
-                     0
-                     86
-                     1
-                     0
-                     0
-                     87
-                     1
-                     0
-                     0
-                     88
-                     1
-                     0
-                     0
-                     89
-                     1
-                     0
-                     0
-                     90
-                     1
-                     0
-                     0
-                     91
-                     1
-                     0
-                     0
-                     92
-                     1
-                     0
-                     0
-                     93
-                     1
-                     0
-                     0
-                     94
-                     1
-                     0
-                     0
-                     95
-                     1
-                     0
-                     0
-                     96
-                     1
-                     0
-                     0
-                     97
-                     1
-                     0
-                     0
-                     98
-                     1
-                     0
-                     0
-                     99
-                     1
-                     0
-                     0
-                     100
-                     1
-                     0
-                     0
-                     101
-                     1
-                     0
-                     0
-                     102
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     103
-                     1
-                     0
-                     0
-                     104
-                     1
-                     0
-                     0
-                     105
-                     1
-                     0
-                     0
-                     106
-                     1
-                     0
-                     0
-                     107
-                     1
-                     0
-                     0
-                     108
-                     1
-                     0
-                     0
-                     109
-                     1
-                     0
-                     0
-                     110
-                     1
-                     0
-                     0
-                     111
-                     1
-                     0
-                     0
-                     112
-                     1
-                     0
-                     0
-                     113
-                     1
-                     0
-                     0
-                     114
-                     1
-                     0
-                     0
-                     115
-                     1
-                     0
-                     0
-                     116
-                     1
-                     0
-                     0
-                     117
-                     1
-                     0
-                     0
-                     118
-                     1
-                     0
-                     0
-                     119
-                     1
-                     0
-                     0
-                     120
-                     1
-                     0
-                     0
-                     121
-                     1
-                     0
-                     0
-                     122
-                     1
-                     0
-                     0
-                     123
-                     1
-                     0
-                     0
-                     124
-                     1
-                     0
-                     0
-                     125
-                     1
-                     0
-                     0
-                     126
-                     1
-                     0
-                     0
-                     127
-                     1
-                     0
-                     0
-                     128
-                     1
-                     0
-                     0
-                     129
-                     1
-                     0
-                     0
-                     0
-                     0
-                     130
-                     1
-                     0
-                     0
-                     131
-                     1
-                     0
-                     0
-                     132
-                     1
-                     0
-                     0
-                     133
-                     1
-                     0
-                     0
-                     134
-                     1
-                     0
-                     0
-                     135
-                     1
-                     0
-                     0
-                     136
-                     1
-                     137
-                     1
-                     0
-                     0
-                     138
-                     1
-                     0
-                     0
-                     139
-                     1
-                     0
-                     0
-                     140
-                     1
-                     0
-                     0
-                     141
-                     1
-                     0
-                     0
-                     142
-                     1
-                     0
-                     0
-                     143
-                     1
-                     0
-                     0
-                     144
-                     1
-                     0
-                     0
-                     145
-                     1
-                     0
-                     0
-                     146
-                     1
-                     0
-                     0
-                     147
-                     1
-                     0
-                     0
-                     148
-                     1
-                     0
-                     0
-                     149
-                     1
-                     0
-                     0
-                     150
-                     1
-                     0
-                     0
-                     151
-                     1
-                     0
-                     0
-                     152
-                     1
-                     0
-                     0
-                     153
-                     1
-                     0
-                     0
-                     154
-                     1
-                     0
-                     0
-                     155
-                     1
-                     0
-                     0
-                     156
-                     1
-                     0
-                     0
-                     157
-                     1
-                     0
-                     0
-                     158
-                     1
-                     0
-                     0
-                     159
-                     1
-                     0
-                     0
-                     160
-                     1
-                     0
-                     0
-                     161
-                     1)))
-    (named-lambda (ucd-suc-entry-1300 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1301
-  (let ((offsets
-         (bytevector 0
-                     0
-                     162
-                     1
-                     0
-                     0
-                     163
-                     1
-                     0
-                     0
-                     164
-                     1
-                     0
-                     0
-                     165
-                     1
-                     0
-                     0
-                     166
-                     1
-                     0
-                     0
-                     167
-                     1
-                     0
-                     0
-                     168
-                     1
-                     0
-                     0
-                     169
-                     1
-                     0
-                     0
-                     170
-                     1
-                     0
-                     0
-                     171
-                     1
-                     0
-                     0
-                     172
-                     1
-                     0
-                     0
-                     173
-                     1
-                     0
-                     0
-                     174
-                     1
-                     0
-                     0
-                     175
-                     1
-                     0
-                     0
-                     176
-                     1
-                     0
-                     0
-                     177
-                     1
-                     0
-                     0
-                     178
-                     1
-                     0
-                     0
-                     179
-                     1
-                     0
-                     0
-                     180
-                     1
-                     0
-                     0
-                     181
-                     1
-                     0
-                     0
-                     182
-                     1
-                     0
-                     0
-                     183
-                     1
-                     0
-                     0
-                     184
-                     1
-                     0
-                     0
-                     185
-                     1
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     186
-                     1
-                     187
-                     1
-                     188
-                     1
-                     189
-                     1
-                     190
-                     1
-                     191
-                     1
-                     192
-                     1
-                     193
-                     1
-                     194
-                     1
-                     195
-                     1
-                     196
-                     1
-                     197
-                     1
-                     198
-                     1
-                     199
-                     1
-                     200
-                     1
-                     201
-                     1
-                     202
-                     1
-                     203
-                     1
-                     204
-                     1
-                     205
-                     1
-                     206
-                     1
-                     207
-                     1
-                     208
-                     1
-                     209
-                     1
-                     210
-                     1
-                     211
-                     1
-                     212
-                     1
-                     213
-                     1
-                     214
-                     1
-                     215
-                     1
-                     216
-                     1
-                     217
-                     1
-                     218
-                     1
-                     219
-                     1
-                     220
-                     1
-                     221
-                     1
-                     222
-                     1
-                     223
-                     1
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1301 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1302
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1302 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1303
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1303 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1304
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1304 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1305
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 242 242 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 242 0 242 242 242 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 242 242 0 0 242 242 0 0 0 0 242 242 242 242 242 242 242 242 0 242 242 242 242 0 0 242 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1305 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1306
-  (let ((offsets (bytevector 242 0 0 0 242 0 0 0 0 0 0 242 242 242 242 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 242 0 0 242 0 0 242 0 0 242 242 0 242 0 0 0 0 0 242 242 242 242 0 0 242 242 0 0 0 242 242 242 0 242 242 242 242 242 242 242 0 0 0 0 242 0 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 0 0 242 0 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 242 0 0 242 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 242 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 0 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1306 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1307
-  (let ((offsets (bytevector 242 0 0 0 242 0 0 0 0 0 0 0 0 242 242 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 242 0 0 242 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 242 242 0 0 242 242 0 0 0 242 242 242 242 242 242 242 242 0 0 242 242 242 242 0 0 242 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 0 0 242 0 0 0 0 0 0 242 242 242 0 0 0 242 0 0 0 0 242 242 242 0 0 242 0 242 0 0 242 242 242 0 0 242 242 242 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 242 242 242 0 0 0 242 0 0 0 0 242 242 0 242 242 242 242 242 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1307 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1308
-  (let ((offsets (bytevector 0 0 0 0 242 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 0 242 242 242 242 242 242 242 0 0 242 0 0 0 242 242 242 242 242 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 0 242 242 242 242 242 242 242 0 0 242 242 242 242 242 242 242 0 242 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 242 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1308 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1309
-  (let ((offsets (bytevector 242 0 0 0 242 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 242 0 242 242 0 0 0 0 0 0 0 242 242 242 0 242 242 242 242 0 0 0 0 0 0 242 0 242 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1309 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1310
-  (let ((offsets (bytevector 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 242 0 242 242 0 0 242 0 242 242 0 242 242 242 242 242 242 0 0 0 0 242 0 0 0 0 0 0 0 242 0 0 0 242 0 242 0 242 242 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 242 242 0 0 0 0 0 242 0 242 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1310 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1311
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1311 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1312
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 242 242 242 242 242 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1312 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1313
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 242 242 0 0 0 0 0 0 0 242 0 242 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 242 242 0 0 0 0 0 0 0 242 0 242 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1313 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1314
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     224
-                     1
-                     225
-                     1
-                     226
-                     1
-                     227
-                     1
-                     228
-                     1
-                     229
-                     1
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1314 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1315
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1315 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1316
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1316 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1317
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1317 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1318
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1318 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1319
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1319 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1320
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1320 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1321
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     40
-                     1
-                     42
-                     1
-                     52
-                     1
-                     55
-                     1
-                     56
-                     1
-                     56
-                     1
-                     64
-                     1
-                     87
-                     1
-                     230
-                     1
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1321 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1322
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     231
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     232
-                     1
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1322 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1323
-  (let ((offsets
-         (bytevector 0
-                     0
-                     233
-                     1
-                     0
-                     0
-                     234
-                     1
-                     0
-                     0
-                     235
-                     1
-                     0
-                     0
-                     236
-                     1
-                     0
-                     0
-                     237
-                     1
-                     0
-                     0
-                     238
-                     1
-                     0
-                     0
-                     239
-                     1
-                     0
-                     0
-                     240
-                     1
-                     0
-                     0
-                     241
-                     1
-                     0
-                     0
-                     242
-                     1
-                     0
-                     0
-                     243
-                     1
-                     0
-                     0
-                     244
-                     1
-                     0
-                     0
-                     245
-                     1
-                     0
-                     0
-                     246
-                     1
-                     0
-                     0
-                     247
-                     1
-                     0
-                     0
-                     248
-                     1
-                     0
-                     0
-                     249
-                     1
-                     0
-                     0
-                     250
-                     1
-                     0
-                     0
-                     251
-                     1
-                     0
-                     0
-                     252
-                     1
-                     0
-                     0
-                     253
-                     1
-                     0
-                     0
-                     254
-                     1
-                     0
-                     0
-                     255
-                     1
-                     0
-                     0
-                     0
-                     2
-                     0
-                     0
-                     1
-                     2
-                     0
-                     0
-                     2
-                     2
-                     0
-                     0
-                     3
-                     2
-                     0
-                     0
-                     4
-                     2
-                     0
-                     0
-                     5
-                     2
-                     0
-                     0
-                     6
-                     2
-                     0
-                     0
-                     7
-                     2
-                     0
-                     0
-                     8
-                     2
-                     0
-                     0
-                     9
-                     2
-                     0
-                     0
-                     10
-                     2
-                     0
-                     0
-                     11
-                     2
-                     0
-                     0
-                     12
-                     2
-                     0
-                     0
-                     13
-                     2
-                     0
-                     0
-                     14
-                     2
-                     0
-                     0
-                     15
-                     2
-                     0
-                     0
-                     16
-                     2
-                     0
-                     0
-                     17
-                     2
-                     0
-                     0
-                     18
-                     2
-                     0
-                     0
-                     19
-                     2
-                     0
-                     0
-                     20
-                     2
-                     0
-                     0
-                     21
-                     2
-                     0
-                     0
-                     22
-                     2
-                     0
-                     0
-                     23
-                     2
-                     0
-                     0
-                     24
-                     2
-                     0
-                     0
-                     25
-                     2
-                     0
-                     0
-                     26
-                     2
-                     0
-                     0
-                     27
-                     2
-                     0
-                     0
-                     28
-                     2
-                     0
-                     0
-                     29
-                     2
-                     0
-                     0
-                     30
-                     2
-                     0
-                     0
-                     31
-                     2
-                     0
-                     0
-                     32
-                     2
-                     0
-                     0
-                     33
-                     2
-                     0
-                     0
-                     34
-                     2
-                     0
-                     0
-                     35
-                     2
-                     0
-                     0
-                     36
-                     2
-                     0
-                     0
-                     37
-                     2
-                     0
-                     0
-                     38
-                     2
-                     0
-                     0
-                     39
-                     2
-                     0
-                     0
-                     40
-                     2
-                     0
-                     0
-                     41
-                     2
-                     0
-                     0
-                     42
-                     2
-                     0
-                     0
-                     43
-                     2
-                     0
-                     0
-                     44
-                     2
-                     0
-                     0
-                     45
-                     2
-                     0
-                     0
-                     46
-                     2
-                     0
-                     0
-                     47
-                     2
-                     0
-                     0
-                     48
-                     2
-                     0
-                     0
-                     49
-                     2
-                     0
-                     0
-                     50
-                     2
-                     0
-                     0
-                     51
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     25
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     52
-                     2
-                     0
-                     0
-                     53
-                     2
-                     0
-                     0
-                     54
-                     2
-                     0
-                     0
-                     55
-                     2
-                     0
-                     0
-                     56
-                     2
-                     0
-                     0
-                     57
-                     2
-                     0
-                     0
-                     58
-                     2
-                     0
-                     0
-                     59
-                     2
-                     0
-                     0
-                     60
-                     2
-                     0
-                     0
-                     61
-                     2
-                     0
-                     0
-                     62
-                     2
-                     0
-                     0
-                     63
-                     2
-                     0
-                     0
-                     64
-                     2
-                     0
-                     0
-                     65
-                     2
-                     0
-                     0
-                     66
-                     2
-                     0
-                     0
-                     67
-                     2
-                     0
-                     0
-                     68
-                     2
-                     0
-                     0
-                     69
-                     2
-                     0
-                     0
-                     70
-                     2
-                     0
-                     0
-                     71
-                     2
-                     0
-                     0
-                     72
-                     2
-                     0
-                     0
-                     73
-                     2
-                     0
-                     0
-                     74
-                     2
-                     0
-                     0
-                     75
-                     2
-                     0
-                     0
-                     76
-                     2
-                     0
-                     0
-                     77
-                     2
-                     0
-                     0
-                     78
-                     2
-                     0
-                     0
-                     79
-                     2
-                     0
-                     0
-                     80
-                     2
-                     0
-                     0
-                     81
-                     2
-                     0
-                     0
-                     82
-                     2
-                     0
-                     0
-                     83
-                     2
-                     0
-                     0
-                     84
-                     2
-                     0
-                     0
-                     85
-                     2
-                     0
-                     0
-                     86
-                     2
-                     0
-                     0
-                     87
-                     2
-                     0
-                     0
-                     88
-                     2
-                     0
-                     0
-                     89
-                     2
-                     0
-                     0
-                     90
-                     2
-                     0
-                     0
-                     91
-                     2
-                     0
-                     0
-                     92
-                     2
-                     0
-                     0
-                     93
-                     2
-                     0
-                     0
-                     94
-                     2
-                     0
-                     0
-                     95
-                     2
-                     0
-                     0
-                     96
-                     2
-                     0
-                     0
-                     97
-                     2
-                     0
-                     0
-                     98
-                     2
-                     0
-                     0
-                     99
-                     2)))
-    (named-lambda (ucd-suc-entry-1323 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1324
-  (let ((offsets
-         (bytevector 100
-                     2
-                     101
-                     2
-                     102
-                     2
-                     103
-                     2
-                     104
-                     2
-                     105
-                     2
-                     106
-                     2
-                     107
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     108
-                     2
-                     109
-                     2
-                     110
-                     2
-                     111
-                     2
-                     112
-                     2
-                     113
-                     2
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     114
-                     2
-                     115
-                     2
-                     116
-                     2
-                     117
-                     2
-                     118
-                     2
-                     119
-                     2
-                     120
-                     2
-                     121
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     122
-                     2
-                     123
-                     2
-                     124
-                     2
-                     125
-                     2
-                     126
-                     2
-                     127
-                     2
-                     128
-                     2
-                     129
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     130
-                     2
-                     131
-                     2
-                     132
-                     2
-                     133
-                     2
-                     134
-                     2
-                     135
-                     2
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     136
-                     2
-                     0
-                     0
-                     137
-                     2
-                     0
-                     0
-                     138
-                     2
-                     0
-                     0
-                     139
-                     2
-                     242
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     140
-                     2
-                     141
-                     2
-                     142
-                     2
-                     143
-                     2
-                     144
-                     2
-                     145
-                     2
-                     146
-                     2
-                     147
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     148
-                     2
-                     149
-                     2
-                     150
-                     2
-                     151
-                     2
-                     152
-                     2
-                     153
-                     2
-                     154
-                     2
-                     155
-                     2
-                     156
-                     2
-                     157
-                     2
-                     158
-                     2
-                     159
-                     2
-                     160
-                     2
-                     161
-                     2
-                     242
-                     0
-                     242
-                     0
-                     162
-                     2
-                     163
-                     2
-                     164
-                     2
-                     165
-                     2
-                     166
-                     2
-                     167
-                     2
-                     168
-                     2
-                     169
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     170
-                     2
-                     171
-                     2
-                     172
-                     2
-                     173
-                     2
-                     174
-                     2
-                     175
-                     2
-                     176
-                     2
-                     177
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     178
-                     2
-                     179
-                     2
-                     180
-                     2
-                     181
-                     2
-                     182
-                     2
-                     183
-                     2
-                     184
-                     2
-                     185
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     186
-                     2
-                     187
-                     2
-                     0
-                     0
-                     188
-                     2
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     238
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     189
-                     2
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     190
-                     2
-                     191
-                     2
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     192
-                     2
-                     193
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     194
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     195
-                     2
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1324 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1325
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1325 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1326
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     196
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     197
-                     2
-                     198
-                     2
-                     199
-                     2
-                     200
-                     2
-                     201
-                     2
-                     202
-                     2
-                     203
-                     2
-                     204
-                     2
-                     205
-                     2
-                     206
-                     2
-                     207
-                     2
-                     208
-                     2
-                     209
-                     2
-                     210
-                     2
-                     211
-                     2
-                     212
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     213
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1326 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1327
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242)))
-    (named-lambda (ucd-suc-entry-1327 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1328
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     214
-                     2
-                     215
-                     2
-                     216
-                     2
-                     217
-                     2
-                     218
-                     2
-                     219
-                     2
-                     220
-                     2
-                     221
-                     2
-                     222
-                     2
-                     223
-                     2
-                     224
-                     2
-                     225
-                     2
-                     226
-                     2
-                     227
-                     2
-                     228
-                     2
-                     229
-                     2
-                     230
-                     2
-                     231
-                     2
-                     232
-                     2
-                     233
-                     2
-                     234
-                     2
-                     235
-                     2
-                     236
-                     2
-                     237
-                     2
-                     238
-                     2
-                     239
-                     2
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1328 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1329
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1329 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1330
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     240
-                     2
-                     241
-                     2
-                     242
-                     2
-                     243
-                     2
-                     244
-                     2
-                     245
-                     2
-                     246
-                     2
-                     247
-                     2
-                     248
-                     2
-                     249
-                     2
-                     250
-                     2
-                     251
-                     2
-                     252
-                     2
-                     253
-                     2
-                     254
-                     2
-                     255
-                     2
-                     0
-                     3
-                     1
-                     3
-                     2
-                     3
-                     3
-                     3
-                     4
-                     3
-                     5
-                     3
-                     6
-                     3
-                     7
-                     3
-                     8
-                     3
-                     9
-                     3
-                     10
-                     3
-                     11
-                     3
-                     12
-                     3
-                     13
-                     3
-                     14
-                     3
-                     15
-                     3
-                     16
-                     3
-                     17
-                     3
-                     18
-                     3
-                     19
-                     3
-                     20
-                     3
-                     21
-                     3
-                     22
-                     3
-                     23
-                     3
-                     24
-                     3
-                     25
-                     3
-                     26
-                     3
-                     27
-                     3
-                     28
-                     3
-                     29
-                     3
-                     30
-                     3
-                     242
-                     0
-                     0
-                     0
-                     31
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     32
-                     3
-                     33
-                     3
-                     0
-                     0
-                     34
-                     3
-                     0
-                     0
-                     35
-                     3
-                     0
-                     0
-                     36
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     37
-                     3
-                     0
-                     0
-                     0
-                     0
-                     38
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     39
-                     3
-                     0
-                     0
-                     40
-                     3
-                     0
-                     0
-                     41
-                     3
-                     0
-                     0
-                     42
-                     3
-                     0
-                     0
-                     43
-                     3
-                     0
-                     0
-                     44
-                     3
-                     0
-                     0
-                     45
-                     3
-                     0
-                     0
-                     46
-                     3
-                     0
-                     0
-                     47
-                     3
-                     0
-                     0
-                     48
-                     3
-                     0
-                     0
-                     49
-                     3
-                     0
-                     0
-                     50
-                     3
-                     0
-                     0
-                     51
-                     3
-                     0
-                     0
-                     52
-                     3
-                     0
-                     0
-                     53
-                     3
-                     0
-                     0
-                     54
-                     3
-                     0
-                     0
-                     55
-                     3
-                     0
-                     0
-                     56
-                     3
-                     0
-                     0
-                     57
-                     3
-                     0
-                     0
-                     58
-                     3
-                     0
-                     0
-                     59
-                     3
-                     0
-                     0
-                     60
-                     3
-                     0
-                     0
-                     61
-                     3
-                     0
-                     0
-                     62
-                     3
-                     0
-                     0
-                     63
-                     3
-                     0
-                     0
-                     64
-                     3
-                     0
-                     0
-                     65
-                     3
-                     0
-                     0
-                     66
-                     3
-                     0
-                     0
-                     67
-                     3
-                     0
-                     0
-                     68
-                     3
-                     0
-                     0
-                     69
-                     3
-                     0
-                     0
-                     70
-                     3
-                     0
-                     0
-                     71
-                     3
-                     0
-                     0
-                     72
-                     3
-                     0
-                     0
-                     73
-                     3
-                     0
-                     0
-                     74
-                     3
-                     0
-                     0
-                     75
-                     3
-                     0
-                     0
-                     76
-                     3
-                     0
-                     0
-                     77
-                     3
-                     0
-                     0
-                     78
-                     3
-                     0
-                     0
-                     79
-                     3
-                     0
-                     0
-                     80
-                     3
-                     0
-                     0
-                     81
-                     3
-                     0
-                     0
-                     82
-                     3
-                     0
-                     0
-                     83
-                     3
-                     0
-                     0
-                     84
-                     3
-                     0
-                     0
-                     85
-                     3
-                     0
-                     0
-                     86
-                     3
-                     0
-                     0
-                     87
-                     3
-                     0
-                     0
-                     88
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     89
-                     3
-                     0
-                     0
-                     90
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     91
-                     3
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1330 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1331
-  (let ((offsets
-         (bytevector 92
-                     3
-                     93
-                     3
-                     94
-                     3
-                     95
-                     3
-                     96
-                     3
-                     97
-                     3
-                     98
-                     3
-                     99
-                     3
-                     100
-                     3
-                     101
-                     3
-                     102
-                     3
-                     103
-                     3
-                     104
-                     3
-                     105
-                     3
-                     106
-                     3
-                     107
-                     3
-                     108
-                     3
-                     109
-                     3
-                     110
-                     3
-                     111
-                     3
-                     112
-                     3
-                     113
-                     3
-                     114
-                     3
-                     115
-                     3
-                     116
-                     3
-                     117
-                     3
-                     118
-                     3
-                     119
-                     3
-                     120
-                     3
-                     121
-                     3
-                     122
-                     3
-                     123
-                     3
-                     124
-                     3
-                     125
-                     3
-                     126
-                     3
-                     127
-                     3
-                     128
-                     3
-                     129
-                     3
-                     242
-                     0
-                     130
-                     3
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     131
-                     3
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1331 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1332
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1332 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1333
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1333 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1334
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1334 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1335
-  (let ((offsets (bytevector 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1335 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1336
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242)))
-    (named-lambda (ucd-suc-entry-1336 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1337
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1337 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1338
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1338 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1339
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1339 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1340
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     132
-                     3
-                     0
-                     0
-                     133
-                     3
-                     0
-                     0
-                     134
-                     3
-                     0
-                     0
-                     135
-                     3
-                     0
-                     0
-                     136
-                     3
-                     0
-                     0
-                     230
-                     1
-                     0
-                     0
-                     137
-                     3
-                     0
-                     0
-                     138
-                     3
-                     0
-                     0
-                     139
-                     3
-                     0
-                     0
-                     140
-                     3
-                     0
-                     0
-                     141
-                     3
-                     0
-                     0
-                     142
-                     3
-                     0
-                     0
-                     143
-                     3
-                     0
-                     0
-                     144
-                     3
-                     0
-                     0
-                     145
-                     3
-                     0
-                     0
-                     146
-                     3
-                     0
-                     0
-                     147
-                     3
-                     0
-                     0
-                     148
-                     3
-                     0
-                     0
-                     149
-                     3
-                     0
-                     0
-                     150
-                     3
-                     0
-                     0
-                     151
-                     3
-                     0
-                     0
-                     152
-                     3
-                     0
-                     0
-                     153
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     154
-                     3
-                     0
-                     0
-                     155
-                     3
-                     0
-                     0
-                     156
-                     3
-                     0
-                     0
-                     157
-                     3
-                     0
-                     0
-                     158
-                     3
-                     0
-                     0
-                     159
-                     3
-                     0
-                     0
-                     160
-                     3
-                     0
-                     0
-                     161
-                     3
-                     0
-                     0
-                     162
-                     3
-                     0
-                     0
-                     163
-                     3
-                     0
-                     0
-                     164
-                     3
-                     0
-                     0
-                     165
-                     3
-                     0
-                     0
-                     166
-                     3
-                     0
-                     0
-                     167
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1340 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1341
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     168
-                     3
-                     0
-                     0
-                     169
-                     3
-                     0
-                     0
-                     170
-                     3
-                     0
-                     0
-                     171
-                     3
-                     0
-                     0
-                     172
-                     3
-                     0
-                     0
-                     173
-                     3
-                     0
-                     0
-                     174
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     175
-                     3
-                     0
-                     0
-                     176
-                     3
-                     0
-                     0
-                     177
-                     3
-                     0
-                     0
-                     178
-                     3
-                     0
-                     0
-                     179
-                     3
-                     0
-                     0
-                     180
-                     3
-                     0
-                     0
-                     181
-                     3
-                     0
-                     0
-                     182
-                     3
-                     0
-                     0
-                     183
-                     3
-                     0
-                     0
-                     184
-                     3
-                     0
-                     0
-                     185
-                     3
-                     0
-                     0
-                     186
-                     3
-                     0
-                     0
-                     187
-                     3
-                     0
-                     0
-                     188
-                     3
-                     0
-                     0
-                     189
-                     3
-                     0
-                     0
-                     190
-                     3
-                     0
-                     0
-                     191
-                     3
-                     0
-                     0
-                     192
-                     3
-                     0
-                     0
-                     193
-                     3
-                     0
-                     0
-                     194
-                     3
-                     0
-                     0
-                     195
-                     3
-                     0
-                     0
-                     196
-                     3
-                     0
-                     0
-                     197
-                     3
-                     0
-                     0
-                     198
-                     3
-                     0
-                     0
-                     199
-                     3
-                     0
-                     0
-                     200
-                     3
-                     0
-                     0
-                     201
-                     3
-                     0
-                     0
-                     202
-                     3
-                     0
-                     0
-                     203
-                     3
-                     0
-                     0
-                     204
-                     3
-                     0
-                     0
-                     205
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     206
-                     3
-                     0
-                     0
-                     207
-                     3
-                     0
-                     0
-                     0
-                     0
-                     208
-                     3
-                     0
-                     0
-                     209
-                     3
-                     0
-                     0
-                     210
-                     3
-                     0
-                     0
-                     211
-                     3
-                     0
-                     0
-                     212
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     213
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     214
-                     3
-                     0
-                     0
-                     215
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     216
-                     3
-                     0
-                     0
-                     217
-                     3
-                     0
-                     0
-                     218
-                     3
-                     0
-                     0
-                     219
-                     3
-                     0
-                     0
-                     220
-                     3
-                     0
-                     0
-                     221
-                     3
-                     0
-                     0
-                     222
-                     3
-                     0
-                     0
-                     223
-                     3
-                     0
-                     0
-                     224
-                     3
-                     0
-                     0
-                     225
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     226
-                     3
-                     0
-                     0
-                     227
-                     3
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1341 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1342
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242)))
-    (named-lambda (ucd-suc-entry-1342 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1343
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242)))
-    (named-lambda (ucd-suc-entry-1343 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1344
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1344 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1345
-  (let ((offsets
-         (bytevector 242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     228
-                     3
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     229
-                     3
-                     230
-                     3
-                     231
-                     3
-                     232
-                     3
-                     233
-                     3
-                     234
-                     3
-                     235
-                     3
-                     236
-                     3
-                     237
-                     3
-                     238
-                     3
-                     239
-                     3
-                     240
-                     3
-                     241
-                     3
-                     242
-                     3
-                     243
-                     3
-                     244
-                     3
-                     245
-                     3
-                     246
-                     3
-                     247
-                     3
-                     248
-                     3
-                     249
-                     3
-                     250
-                     3
-                     251
-                     3
-                     252
-                     3
-                     253
-                     3
-                     254
-                     3
-                     255
-                     3
-                     0
-                     4
-                     1
-                     4
-                     2
-                     4
-                     3
-                     4
-                     4
-                     4
-                     5
-                     4
-                     6
-                     4
-                     7
-                     4
-                     8
-                     4
-                     9
-                     4
-                     10
-                     4
-                     11
-                     4
-                     12
-                     4
-                     13
-                     4
-                     14
-                     4
-                     15
-                     4
-                     16
-                     4
-                     17
-                     4
-                     18
-                     4
-                     19
-                     4
-                     20
-                     4
-                     21
-                     4
-                     22
-                     4
-                     23
-                     4
-                     24
-                     4
-                     25
-                     4
-                     26
-                     4
-                     27
-                     4
-                     28
-                     4
-                     29
-                     4
-                     30
-                     4
-                     31
-                     4
-                     32
-                     4
-                     33
-                     4
-                     34
-                     4
-                     35
-                     4
-                     36
-                     4
-                     37
-                     4
-                     38
-                     4
-                     39
-                     4
-                     40
-                     4
-                     41
-                     4
-                     42
-                     4
-                     43
-                     4
-                     44
-                     4
-                     45
-                     4
-                     46
-                     4
-                     47
-                     4
-                     48
-                     4
-                     49
-                     4
-                     50
-                     4
-                     51
-                     4
-                     52
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1345 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1346
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1346 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1347
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1347 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1348
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 242 0 242 0 0 242 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1348 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1349
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242)))
-    (named-lambda (ucd-suc-entry-1349 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1350
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 242 242 242 242 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0)))
-    (named-lambda (ucd-suc-entry-1350 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1351
-  (let ((offsets
-         (bytevector 242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     53
-                     4
-                     54
-                     4
-                     55
-                     4
-                     56
-                     4
-                     57
-                     4
-                     58
-                     4
-                     59
-                     4
-                     60
-                     4
-                     61
-                     4
-                     62
-                     4
-                     63
-                     4
-                     64
-                     4
-                     65
-                     4
-                     66
-                     4
-                     67
-                     4
-                     68
-                     4
-                     69
-                     4
-                     70
-                     4
-                     71
-                     4
-                     72
-                     4
-                     73
-                     4
-                     74
-                     4
-                     75
-                     4
-                     76
-                     4
-                     77
-                     4
-                     78
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1351 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1352
-  (let ((offsets
-         (bytevector 16
-                     5
-                     17
-                     5
-                     18
-                     5
-                     19
-                     5
-                     20
-                     5
-                     21
-                     5
-                     22
-                     5
-                     23
-                     5
-                     24
-                     5
-                     25
-                     5
-                     26
-                     5
-                     27
-                     5
-                     28
-                     5
-                     29
-                     5
-                     30
-                     5
-                     31
-                     5
-                     32
-                     5
-                     0
-                     0
-                     33
-                     5
-                     34
-                     5
-                     0
-                     0
-                     0
-                     0
-                     35
-                     5
-                     36
-                     5
-                     37
-                     5
-                     38
-                     5
-                     39
-                     5
-                     40
-                     5
-                     41
-                     5
-                     42
-                     5
-                     43
-                     5
-                     44
-                     5
-                     45
-                     5
-                     46
-                     5
-                     0
-                     0
-                     47
-                     5
-                     48
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     49
-                     5
-                     50
-                     5
-                     51
-                     5
-                     52
-                     5
-                     53
-                     5
-                     54
-                     5
-                     55
-                     5
-                     56
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     57
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     58
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     59
-                     5
-                     0
-                     0
-                     60
-                     5
-                     61
-                     5
-                     62
-                     5
-                     63
-                     5
-                     64
-                     5
-                     65
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     66
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     67
-                     5
-                     68
-                     5
-                     0
-                     0
-                     69
-                     5
-                     70
-                     5
-                     71
-                     5)))
-    (named-lambda (ucd-suc-entry-1352 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1353
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1353 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1354
-  (let ((offsets (bytevector 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242)))
-    (named-lambda (ucd-suc-entry-1354 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1355
-  (let ((offsets (bytevector 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1355 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1356
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1356 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1357
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     79
-                     4
-                     80
-                     4
-                     81
-                     4
-                     82
-                     4
-                     83
-                     4
-                     84
-                     4
-                     85
-                     4
-                     86
-                     4
-                     87
-                     4
-                     88
-                     4
-                     89
-                     4
-                     90
-                     4
-                     91
-                     4
-                     92
-                     4
-                     93
-                     4
-                     94
-                     4
-                     95
-                     4
-                     96
-                     4
-                     97
-                     4
-                     98
-                     4
-                     99
-                     4
-                     100
-                     4
-                     101
-                     4
-                     102
-                     4
-                     103
-                     4
-                     104
-                     4
-                     105
-                     4
-                     106
-                     4
-                     107
-                     4
-                     108
-                     4
-                     109
-                     4
-                     110
-                     4
-                     111
-                     4
-                     112
-                     4
-                     113
-                     4
-                     114
-                     4
-                     115
-                     4
-                     116
-                     4
-                     117
-                     4
-                     118
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     119
-                     4
-                     120
-                     4
-                     121
-                     4
-                     122
-                     4
-                     123
-                     4
-                     124
-                     4
-                     125
-                     4
-                     126
-                     4
-                     127
-                     4
-                     128
-                     4
-                     129
-                     4
-                     130
-                     4
-                     131
-                     4
-                     132
-                     4
-                     133
-                     4
-                     134
-                     4
-                     135
-                     4
-                     136
-                     4
-                     137
-                     4
-                     138
-                     4
-                     139
-                     4
-                     140
-                     4
-                     141
-                     4
-                     142
-                     4
-                     143
-                     4
-                     144
-                     4
-                     145
-                     4
-                     146
-                     4
-                     147
-                     4
-                     148
-                     4
-                     149
-                     4
-                     150
-                     4
-                     151
-                     4
-                     152
-                     4
-                     153
-                     4
-                     154
-                     4
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1357 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1358
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1358 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1359
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1359 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1360
-  (let ((offsets (bytevector 0 0 0 0 0 0 242 242 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 242 242 242 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 242 242 242 242 242 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1360 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1361
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1361 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1362
-  (let ((offsets (bytevector 0 0 0 0 242 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 242 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1362 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1363
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1363 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1364
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     155
-                     4
-                     156
-                     4
-                     157
-                     4
-                     158
-                     4
-                     159
-                     4
-                     160
-                     4
-                     161
-                     4
-                     162
-                     4
-                     163
-                     4
-                     164
-                     4
-                     165
-                     4
-                     166
-                     4
-                     167
-                     4
-                     168
-                     4
-                     169
-                     4
-                     170
-                     4
-                     171
-                     4
-                     172
-                     4
-                     173
-                     4
-                     174
-                     4
-                     175
-                     4
-                     176
-                     4
-                     177
-                     4
-                     178
-                     4
-                     179
-                     4
-                     180
-                     4
-                     181
-                     4
-                     182
-                     4
-                     183
-                     4
-                     184
-                     4
-                     185
-                     4
-                     186
-                     4
-                     187
-                     4
-                     188
-                     4
-                     189
-                     4
-                     190
-                     4
-                     191
-                     4
-                     192
-                     4
-                     193
-                     4
-                     194
-                     4
-                     195
-                     4
-                     196
-                     4
-                     197
-                     4
-                     198
-                     4
-                     199
-                     4
-                     200
-                     4
-                     201
-                     4
-                     202
-                     4
-                     203
-                     4
-                     204
-                     4
-                     205
-                     4
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1364 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1365
-  (let ((offsets (bytevector 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1365 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1366
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1366 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1367
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1367 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1368
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 242 0 242 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1368 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1369
-  (let ((offsets (bytevector 0 0 0 0 242 0 0 0 0 0 0 0 0 242 242 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 242 0 0 242 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 242 242 0 0 242 242 0 0 0 242 242 0 242 242 242 242 242 242 0 242 242 242 242 242 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1369 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1370
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1370 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1371
-  (let ((offsets (bytevector 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1371 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1372
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1372 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1373
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1373 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1374
-  (let ((offsets
-         (bytevector 242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     206
-                     4
-                     207
-                     4
-                     208
-                     4
-                     209
-                     4
-                     210
-                     4
-                     211
-                     4
-                     212
-                     4
-                     213
-                     4
-                     214
-                     4
-                     215
-                     4
-                     216
-                     4
-                     217
-                     4
-                     218
-                     4
-                     219
-                     4
-                     220
-                     4
-                     221
-                     4
-                     222
-                     4
-                     223
-                     4
-                     224
-                     4
-                     225
-                     4
-                     226
-                     4
-                     227
-                     4
-                     228
-                     4
-                     229
-                     4
-                     230
-                     4
-                     231
-                     4
-                     232
-                     4
-                     233
-                     4
-                     234
-                     4
-                     235
-                     4
-                     236
-                     4
-                     237
-                     4
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0)))
-    (named-lambda (ucd-suc-entry-1374 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1375
-  (let ((offsets (bytevector 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1375 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1376
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1376 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1377
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1377 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1378
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1378 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1379
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1379 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1380
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1380 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1381
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1381 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1382
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1382 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1383
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1383 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1384
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1384 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1385
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1385 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1386
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1386 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1387
-  (let ((offsets
-         (bytevector 0
-                     0
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242
-                     242)))
-    (named-lambda (ucd-suc-entry-1387 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1388
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1388 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1389
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1389 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1390
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1390 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1391
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1391 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1392
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1392 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1393
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 242 242 0 242 242 0 0 242 242 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 242 0 242 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1393 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1394
-  (let ((offsets (bytevector 0 0 0 0 0 0 242 0 0 0 0 242 242 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 242 0 0 0 0 0 242 0 242 242 242 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1394 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1395
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1395 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1396
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1396 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1397
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1397 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1398
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 242 0 0 242 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1398 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1399
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1399 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1400
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     238
-                     4
-                     239
-                     4
-                     240
-                     4
-                     241
-                     4
-                     242
-                     4
-                     243
-                     4
-                     244
-                     4
-                     245
-                     4
-                     246
-                     4
-                     247
-                     4
-                     248
-                     4
-                     249
-                     4
-                     250
-                     4
-                     251
-                     4
-                     252
-                     4
-                     253
-                     4
-                     254
-                     4
-                     255
-                     4
-                     0
-                     5
-                     1
-                     5
-                     2
-                     5
-                     3
-                     5
-                     4
-                     5
-                     5
-                     5
-                     6
-                     5
-                     7
-                     5
-                     8
-                     5
-                     9
-                     5
-                     10
-                     5
-                     11
-                     5
-                     12
-                     5
-                     13
-                     5
-                     14
-                     5
-                     15
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1400 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv 1)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1401
-  (let ((offsets (bytevector 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 242 0 242 242 0 242 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 242 0 242 0 242 242 242 242 242 242 0 242 242 242 242 0 242 0 242 0 242 0 0 0 242 0 0 242 0 242 242 0 242 0 242 0 242 0 242 0 242 0 0 242 0 242 242 0 0 0 0 242 0 0 0 0 0 0 0 242 0 0 0 0 242 0 0 0 0 242 0 242 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 0 0 0 242 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1401 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1402
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1402 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1403
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1403 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1404
-  (let ((offsets (bytevector 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1404 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1405
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1405 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1406
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1406 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1407
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1407 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1408
-  (let ((offsets (bytevector 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 242 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1408 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1409
-  (let ((offsets
-         (bytevector 73
-                     5
-                     74
-                     5
-                     75
-                     5
-                     76
-                     5
-                     77
-                     5
-                     78
-                     5
-                     0
-                     0
-                     79
-                     5
-                     80
-                     5
-                     81
-                     5
-                     82
-                     5
-                     83
-                     5
-                     84
-                     5
-                     242
-                     0
-                     85
-                     5
-                     242
-                     0
-                     86
-                     5
-                     87
-                     5
-                     88
-                     5
-                     89
-                     5
-                     90
-                     5
-                     91
-                     5
-                     92
-                     5
-                     93
-                     5
-                     94
-                     5
-                     242
-                     0
-                     95
-                     5
-                     242
-                     0
-                     96
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     97
-                     5
-                     98
-                     5
-                     99
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     100
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     101
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     102
-                     5
-                     103
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     104
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     105
-                     5
-                     0
-                     0
-                     0
-                     0
-                     106
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     107
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     108
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     109
-                     5
-                     110
-                     5
-                     111
-                     5
-                     112
-                     5
-                     113
-                     5
-                     114
-                     5
-                     115
-                     5
-                     116
-                     5
-                     0
-                     0
-                     0
-                     0
-                     117
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     118
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     119
-                     5
-                     120
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     121
-                     5
-                     242
-                     0
-                     122
-                     5
-                     123
-                     5
-                     124
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     125
-                     5
-                     126
-                     5
-                     127
-                     5
-                     128
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1409 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1410
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1410 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1411
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1411 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1412
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-suc-entry-1412 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1413
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1413 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1414
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1414 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1415
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     130
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     131
-                     5
-                     132
-                     5
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     133
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     0
-                     0
-                     0
-                     0
-                     134
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1415 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1416
-  (let ((offsets (bytevector 242 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1416 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1417
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242 242)))
-    (named-lambda (ucd-suc-entry-1417 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1418
-  (let ((offsets
-         (bytevector 136
-                     5
-                     137
-                     5
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0
-                     242
-                     0)))
-    (named-lambda (ucd-suc-entry-1418 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1419
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 242 242)))
-    (named-lambda (ucd-suc-entry-1419 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-suc-entry-1420
-  (let ((offsets
-         (bytevector 0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     0
-                     139
-                     5)))
-    (named-lambda (ucd-suc-entry-1420 sv table)
-      ((vector-ref table (bytevector-u16le-ref offsets (fix:and 510 (fix:lsh sv -7)))) sv table))))
-
-(define ucd-suc-entries)
-
-(add-boot-init! (lambda () (set! ucd-suc-entries (make-vector 1421)) (initialize-ucd-suc-entries-0) (initialize-ucd-suc-entries-1) (initialize-ucd-suc-entries-2) (initialize-ucd-suc-entries-3) (initialize-ucd-suc-entries-4) (initialize-ucd-suc-entries-5) (initialize-ucd-suc-entries-6) (initialize-ucd-suc-entries-7) (initialize-ucd-suc-entries-8) (initialize-ucd-suc-entries-9) (initialize-ucd-suc-entries-10) (initialize-ucd-suc-entries-11) (initialize-ucd-suc-entries-12) (initialize-ucd-suc-entries-13) (initialize-ucd-suc-entries-14)))
-
-(define (initialize-ucd-suc-entries-0)
-  (vector-set! ucd-suc-entries 0 ucd-suc-entry-0)
-  (vector-set! ucd-suc-entries 1 ucd-suc-entry-1)
-  (vector-set! ucd-suc-entries 2 ucd-suc-entry-2)
-  (vector-set! ucd-suc-entries 3 ucd-suc-entry-3)
-  (vector-set! ucd-suc-entries 4 ucd-suc-entry-4)
-  (vector-set! ucd-suc-entries 5 ucd-suc-entry-5)
-  (vector-set! ucd-suc-entries 6 ucd-suc-entry-6)
-  (vector-set! ucd-suc-entries 7 ucd-suc-entry-7)
-  (vector-set! ucd-suc-entries 8 ucd-suc-entry-8)
-  (vector-set! ucd-suc-entries 9 ucd-suc-entry-9)
-  (vector-set! ucd-suc-entries 10 ucd-suc-entry-10)
-  (vector-set! ucd-suc-entries 11 ucd-suc-entry-11)
-  (vector-set! ucd-suc-entries 12 ucd-suc-entry-12)
-  (vector-set! ucd-suc-entries 13 ucd-suc-entry-13)
-  (vector-set! ucd-suc-entries 14 ucd-suc-entry-14)
-  (vector-set! ucd-suc-entries 15 ucd-suc-entry-15)
-  (vector-set! ucd-suc-entries 16 ucd-suc-entry-16)
-  (vector-set! ucd-suc-entries 17 ucd-suc-entry-17)
-  (vector-set! ucd-suc-entries 18 ucd-suc-entry-18)
-  (vector-set! ucd-suc-entries 19 ucd-suc-entry-19)
-  (vector-set! ucd-suc-entries 20 ucd-suc-entry-20)
-  (vector-set! ucd-suc-entries 21 ucd-suc-entry-21)
-  (vector-set! ucd-suc-entries 22 ucd-suc-entry-22)
-  (vector-set! ucd-suc-entries 23 ucd-suc-entry-23)
-  (vector-set! ucd-suc-entries 24 ucd-suc-entry-24)
-  (vector-set! ucd-suc-entries 25 ucd-suc-entry-25)
-  (vector-set! ucd-suc-entries 26 ucd-suc-entry-26)
-  (vector-set! ucd-suc-entries 27 ucd-suc-entry-27)
-  (vector-set! ucd-suc-entries 28 ucd-suc-entry-28)
-  (vector-set! ucd-suc-entries 29 ucd-suc-entry-29)
-  (vector-set! ucd-suc-entries 30 ucd-suc-entry-30)
-  (vector-set! ucd-suc-entries 31 ucd-suc-entry-31)
-  (vector-set! ucd-suc-entries 32 ucd-suc-entry-32)
-  (vector-set! ucd-suc-entries 33 ucd-suc-entry-33)
-  (vector-set! ucd-suc-entries 34 ucd-suc-entry-34)
-  (vector-set! ucd-suc-entries 35 ucd-suc-entry-35)
-  (vector-set! ucd-suc-entries 36 ucd-suc-entry-36)
-  (vector-set! ucd-suc-entries 37 ucd-suc-entry-37)
-  (vector-set! ucd-suc-entries 38 ucd-suc-entry-38)
-  (vector-set! ucd-suc-entries 39 ucd-suc-entry-39)
-  (vector-set! ucd-suc-entries 40 ucd-suc-entry-40)
-  (vector-set! ucd-suc-entries 41 ucd-suc-entry-41)
-  (vector-set! ucd-suc-entries 42 ucd-suc-entry-42)
-  (vector-set! ucd-suc-entries 43 ucd-suc-entry-43)
-  (vector-set! ucd-suc-entries 44 ucd-suc-entry-44)
-  (vector-set! ucd-suc-entries 45 ucd-suc-entry-45)
-  (vector-set! ucd-suc-entries 46 ucd-suc-entry-46)
-  (vector-set! ucd-suc-entries 47 ucd-suc-entry-47)
-  (vector-set! ucd-suc-entries 48 ucd-suc-entry-48)
-  (vector-set! ucd-suc-entries 49 ucd-suc-entry-49)
-  (vector-set! ucd-suc-entries 50 ucd-suc-entry-50)
-  (vector-set! ucd-suc-entries 51 ucd-suc-entry-51)
-  (vector-set! ucd-suc-entries 52 ucd-suc-entry-52)
-  (vector-set! ucd-suc-entries 53 ucd-suc-entry-53)
-  (vector-set! ucd-suc-entries 54 ucd-suc-entry-54)
-  (vector-set! ucd-suc-entries 55 ucd-suc-entry-55)
-  (vector-set! ucd-suc-entries 56 ucd-suc-entry-56)
-  (vector-set! ucd-suc-entries 57 ucd-suc-entry-57)
-  (vector-set! ucd-suc-entries 58 ucd-suc-entry-58)
-  (vector-set! ucd-suc-entries 59 ucd-suc-entry-59)
-  (vector-set! ucd-suc-entries 60 ucd-suc-entry-60)
-  (vector-set! ucd-suc-entries 61 ucd-suc-entry-61)
-  (vector-set! ucd-suc-entries 62 ucd-suc-entry-62)
-  (vector-set! ucd-suc-entries 63 ucd-suc-entry-63)
-  (vector-set! ucd-suc-entries 64 ucd-suc-entry-64)
-  (vector-set! ucd-suc-entries 65 ucd-suc-entry-65)
-  (vector-set! ucd-suc-entries 66 ucd-suc-entry-66)
-  (vector-set! ucd-suc-entries 67 ucd-suc-entry-67)
-  (vector-set! ucd-suc-entries 68 ucd-suc-entry-68)
-  (vector-set! ucd-suc-entries 69 ucd-suc-entry-69)
-  (vector-set! ucd-suc-entries 70 ucd-suc-entry-70)
-  (vector-set! ucd-suc-entries 71 ucd-suc-entry-71)
-  (vector-set! ucd-suc-entries 72 ucd-suc-entry-72)
-  (vector-set! ucd-suc-entries 73 ucd-suc-entry-73)
-  (vector-set! ucd-suc-entries 74 ucd-suc-entry-74)
-  (vector-set! ucd-suc-entries 75 ucd-suc-entry-75)
-  (vector-set! ucd-suc-entries 76 ucd-suc-entry-76)
-  (vector-set! ucd-suc-entries 77 ucd-suc-entry-77)
-  (vector-set! ucd-suc-entries 78 ucd-suc-entry-78)
-  (vector-set! ucd-suc-entries 79 ucd-suc-entry-79)
-  (vector-set! ucd-suc-entries 80 ucd-suc-entry-80)
-  (vector-set! ucd-suc-entries 81 ucd-suc-entry-81)
-  (vector-set! ucd-suc-entries 82 ucd-suc-entry-82)
-  (vector-set! ucd-suc-entries 83 ucd-suc-entry-83)
-  (vector-set! ucd-suc-entries 84 ucd-suc-entry-84)
-  (vector-set! ucd-suc-entries 85 ucd-suc-entry-85)
-  (vector-set! ucd-suc-entries 86 ucd-suc-entry-86)
-  (vector-set! ucd-suc-entries 87 ucd-suc-entry-87)
-  (vector-set! ucd-suc-entries 88 ucd-suc-entry-88)
-  (vector-set! ucd-suc-entries 89 ucd-suc-entry-89)
-  (vector-set! ucd-suc-entries 90 ucd-suc-entry-90)
-  (vector-set! ucd-suc-entries 91 ucd-suc-entry-91)
-  (vector-set! ucd-suc-entries 92 ucd-suc-entry-92)
-  (vector-set! ucd-suc-entries 93 ucd-suc-entry-93)
-  (vector-set! ucd-suc-entries 94 ucd-suc-entry-94)
-  (vector-set! ucd-suc-entries 95 ucd-suc-entry-95)
-  (vector-set! ucd-suc-entries 96 ucd-suc-entry-96)
-  (vector-set! ucd-suc-entries 97 ucd-suc-entry-97)
-  (vector-set! ucd-suc-entries 98 ucd-suc-entry-98)
-  (vector-set! ucd-suc-entries 99 ucd-suc-entry-99))
-
-(define (initialize-ucd-suc-entries-1)
-  (vector-set! ucd-suc-entries 100 ucd-suc-entry-100)
-  (vector-set! ucd-suc-entries 101 ucd-suc-entry-101)
-  (vector-set! ucd-suc-entries 102 ucd-suc-entry-102)
-  (vector-set! ucd-suc-entries 103 ucd-suc-entry-103)
-  (vector-set! ucd-suc-entries 104 ucd-suc-entry-104)
-  (vector-set! ucd-suc-entries 105 ucd-suc-entry-105)
-  (vector-set! ucd-suc-entries 106 ucd-suc-entry-106)
-  (vector-set! ucd-suc-entries 107 ucd-suc-entry-107)
-  (vector-set! ucd-suc-entries 108 ucd-suc-entry-108)
-  (vector-set! ucd-suc-entries 109 ucd-suc-entry-109)
-  (vector-set! ucd-suc-entries 110 ucd-suc-entry-110)
-  (vector-set! ucd-suc-entries 111 ucd-suc-entry-111)
-  (vector-set! ucd-suc-entries 112 ucd-suc-entry-112)
-  (vector-set! ucd-suc-entries 113 ucd-suc-entry-113)
-  (vector-set! ucd-suc-entries 114 ucd-suc-entry-114)
-  (vector-set! ucd-suc-entries 115 ucd-suc-entry-115)
-  (vector-set! ucd-suc-entries 116 ucd-suc-entry-116)
-  (vector-set! ucd-suc-entries 117 ucd-suc-entry-117)
-  (vector-set! ucd-suc-entries 118 ucd-suc-entry-118)
-  (vector-set! ucd-suc-entries 119 ucd-suc-entry-119)
-  (vector-set! ucd-suc-entries 120 ucd-suc-entry-120)
-  (vector-set! ucd-suc-entries 121 ucd-suc-entry-121)
-  (vector-set! ucd-suc-entries 122 ucd-suc-entry-122)
-  (vector-set! ucd-suc-entries 123 ucd-suc-entry-123)
-  (vector-set! ucd-suc-entries 124 ucd-suc-entry-124)
-  (vector-set! ucd-suc-entries 125 ucd-suc-entry-125)
-  (vector-set! ucd-suc-entries 126 ucd-suc-entry-126)
-  (vector-set! ucd-suc-entries 127 ucd-suc-entry-127)
-  (vector-set! ucd-suc-entries 128 ucd-suc-entry-128)
-  (vector-set! ucd-suc-entries 129 ucd-suc-entry-129)
-  (vector-set! ucd-suc-entries 130 ucd-suc-entry-130)
-  (vector-set! ucd-suc-entries 131 ucd-suc-entry-131)
-  (vector-set! ucd-suc-entries 132 ucd-suc-entry-132)
-  (vector-set! ucd-suc-entries 133 ucd-suc-entry-133)
-  (vector-set! ucd-suc-entries 134 ucd-suc-entry-134)
-  (vector-set! ucd-suc-entries 135 ucd-suc-entry-135)
-  (vector-set! ucd-suc-entries 136 ucd-suc-entry-136)
-  (vector-set! ucd-suc-entries 137 ucd-suc-entry-137)
-  (vector-set! ucd-suc-entries 138 ucd-suc-entry-138)
-  (vector-set! ucd-suc-entries 139 ucd-suc-entry-139)
-  (vector-set! ucd-suc-entries 140 ucd-suc-entry-140)
-  (vector-set! ucd-suc-entries 141 ucd-suc-entry-141)
-  (vector-set! ucd-suc-entries 142 ucd-suc-entry-142)
-  (vector-set! ucd-suc-entries 143 ucd-suc-entry-143)
-  (vector-set! ucd-suc-entries 144 ucd-suc-entry-144)
-  (vector-set! ucd-suc-entries 145 ucd-suc-entry-145)
-  (vector-set! ucd-suc-entries 146 ucd-suc-entry-146)
-  (vector-set! ucd-suc-entries 147 ucd-suc-entry-147)
-  (vector-set! ucd-suc-entries 148 ucd-suc-entry-148)
-  (vector-set! ucd-suc-entries 149 ucd-suc-entry-149)
-  (vector-set! ucd-suc-entries 150 ucd-suc-entry-150)
-  (vector-set! ucd-suc-entries 151 ucd-suc-entry-151)
-  (vector-set! ucd-suc-entries 152 ucd-suc-entry-152)
-  (vector-set! ucd-suc-entries 153 ucd-suc-entry-153)
-  (vector-set! ucd-suc-entries 154 ucd-suc-entry-154)
-  (vector-set! ucd-suc-entries 155 ucd-suc-entry-155)
-  (vector-set! ucd-suc-entries 156 ucd-suc-entry-156)
-  (vector-set! ucd-suc-entries 157 ucd-suc-entry-157)
-  (vector-set! ucd-suc-entries 158 ucd-suc-entry-158)
-  (vector-set! ucd-suc-entries 159 ucd-suc-entry-159)
-  (vector-set! ucd-suc-entries 160 ucd-suc-entry-160)
-  (vector-set! ucd-suc-entries 161 ucd-suc-entry-161)
-  (vector-set! ucd-suc-entries 162 ucd-suc-entry-162)
-  (vector-set! ucd-suc-entries 163 ucd-suc-entry-163)
-  (vector-set! ucd-suc-entries 164 ucd-suc-entry-164)
-  (vector-set! ucd-suc-entries 165 ucd-suc-entry-165)
-  (vector-set! ucd-suc-entries 166 ucd-suc-entry-166)
-  (vector-set! ucd-suc-entries 167 ucd-suc-entry-167)
-  (vector-set! ucd-suc-entries 168 ucd-suc-entry-168)
-  (vector-set! ucd-suc-entries 169 ucd-suc-entry-169)
-  (vector-set! ucd-suc-entries 170 ucd-suc-entry-170)
-  (vector-set! ucd-suc-entries 171 ucd-suc-entry-171)
-  (vector-set! ucd-suc-entries 172 ucd-suc-entry-172)
-  (vector-set! ucd-suc-entries 173 ucd-suc-entry-173)
-  (vector-set! ucd-suc-entries 174 ucd-suc-entry-174)
-  (vector-set! ucd-suc-entries 175 ucd-suc-entry-175)
-  (vector-set! ucd-suc-entries 176 ucd-suc-entry-176)
-  (vector-set! ucd-suc-entries 177 ucd-suc-entry-177)
-  (vector-set! ucd-suc-entries 178 ucd-suc-entry-178)
-  (vector-set! ucd-suc-entries 179 ucd-suc-entry-179)
-  (vector-set! ucd-suc-entries 180 ucd-suc-entry-180)
-  (vector-set! ucd-suc-entries 181 ucd-suc-entry-181)
-  (vector-set! ucd-suc-entries 182 ucd-suc-entry-182)
-  (vector-set! ucd-suc-entries 183 ucd-suc-entry-183)
-  (vector-set! ucd-suc-entries 184 ucd-suc-entry-184)
-  (vector-set! ucd-suc-entries 185 ucd-suc-entry-185)
-  (vector-set! ucd-suc-entries 186 ucd-suc-entry-186)
-  (vector-set! ucd-suc-entries 187 ucd-suc-entry-187)
-  (vector-set! ucd-suc-entries 188 ucd-suc-entry-188)
-  (vector-set! ucd-suc-entries 189 ucd-suc-entry-189)
-  (vector-set! ucd-suc-entries 190 ucd-suc-entry-190)
-  (vector-set! ucd-suc-entries 191 ucd-suc-entry-191)
-  (vector-set! ucd-suc-entries 192 ucd-suc-entry-192)
-  (vector-set! ucd-suc-entries 193 ucd-suc-entry-193)
-  (vector-set! ucd-suc-entries 194 ucd-suc-entry-194)
-  (vector-set! ucd-suc-entries 195 ucd-suc-entry-195)
-  (vector-set! ucd-suc-entries 196 ucd-suc-entry-196)
-  (vector-set! ucd-suc-entries 197 ucd-suc-entry-197)
-  (vector-set! ucd-suc-entries 198 ucd-suc-entry-198)
-  (vector-set! ucd-suc-entries 199 ucd-suc-entry-199))
-
-(define (initialize-ucd-suc-entries-2)
-  (vector-set! ucd-suc-entries 200 ucd-suc-entry-200)
-  (vector-set! ucd-suc-entries 201 ucd-suc-entry-201)
-  (vector-set! ucd-suc-entries 202 ucd-suc-entry-202)
-  (vector-set! ucd-suc-entries 203 ucd-suc-entry-203)
-  (vector-set! ucd-suc-entries 204 ucd-suc-entry-204)
-  (vector-set! ucd-suc-entries 205 ucd-suc-entry-205)
-  (vector-set! ucd-suc-entries 206 ucd-suc-entry-206)
-  (vector-set! ucd-suc-entries 207 ucd-suc-entry-207)
-  (vector-set! ucd-suc-entries 208 ucd-suc-entry-208)
-  (vector-set! ucd-suc-entries 209 ucd-suc-entry-209)
-  (vector-set! ucd-suc-entries 210 ucd-suc-entry-210)
-  (vector-set! ucd-suc-entries 211 ucd-suc-entry-211)
-  (vector-set! ucd-suc-entries 212 ucd-suc-entry-212)
-  (vector-set! ucd-suc-entries 213 ucd-suc-entry-213)
-  (vector-set! ucd-suc-entries 214 ucd-suc-entry-214)
-  (vector-set! ucd-suc-entries 215 ucd-suc-entry-215)
-  (vector-set! ucd-suc-entries 216 ucd-suc-entry-216)
-  (vector-set! ucd-suc-entries 217 ucd-suc-entry-217)
-  (vector-set! ucd-suc-entries 218 ucd-suc-entry-218)
-  (vector-set! ucd-suc-entries 219 ucd-suc-entry-219)
-  (vector-set! ucd-suc-entries 220 ucd-suc-entry-220)
-  (vector-set! ucd-suc-entries 221 ucd-suc-entry-221)
-  (vector-set! ucd-suc-entries 222 ucd-suc-entry-222)
-  (vector-set! ucd-suc-entries 223 ucd-suc-entry-223)
-  (vector-set! ucd-suc-entries 224 ucd-suc-entry-224)
-  (vector-set! ucd-suc-entries 225 ucd-suc-entry-225)
-  (vector-set! ucd-suc-entries 226 ucd-suc-entry-226)
-  (vector-set! ucd-suc-entries 227 ucd-suc-entry-227)
-  (vector-set! ucd-suc-entries 228 ucd-suc-entry-228)
-  (vector-set! ucd-suc-entries 229 ucd-suc-entry-229)
-  (vector-set! ucd-suc-entries 230 ucd-suc-entry-230)
-  (vector-set! ucd-suc-entries 231 ucd-suc-entry-231)
-  (vector-set! ucd-suc-entries 232 ucd-suc-entry-232)
-  (vector-set! ucd-suc-entries 233 ucd-suc-entry-233)
-  (vector-set! ucd-suc-entries 234 ucd-suc-entry-234)
-  (vector-set! ucd-suc-entries 235 ucd-suc-entry-235)
-  (vector-set! ucd-suc-entries 236 ucd-suc-entry-236)
-  (vector-set! ucd-suc-entries 237 ucd-suc-entry-237)
-  (vector-set! ucd-suc-entries 238 ucd-suc-entry-238)
-  (vector-set! ucd-suc-entries 239 ucd-suc-entry-239)
-  (vector-set! ucd-suc-entries 240 ucd-suc-entry-240)
-  (vector-set! ucd-suc-entries 241 ucd-suc-entry-241)
-  (vector-set! ucd-suc-entries 242 ucd-suc-entry-242)
-  (vector-set! ucd-suc-entries 243 ucd-suc-entry-243)
-  (vector-set! ucd-suc-entries 244 ucd-suc-entry-244)
-  (vector-set! ucd-suc-entries 245 ucd-suc-entry-245)
-  (vector-set! ucd-suc-entries 246 ucd-suc-entry-246)
-  (vector-set! ucd-suc-entries 247 ucd-suc-entry-247)
-  (vector-set! ucd-suc-entries 248 ucd-suc-entry-248)
-  (vector-set! ucd-suc-entries 249 ucd-suc-entry-249)
-  (vector-set! ucd-suc-entries 250 ucd-suc-entry-250)
-  (vector-set! ucd-suc-entries 251 ucd-suc-entry-251)
-  (vector-set! ucd-suc-entries 252 ucd-suc-entry-252)
-  (vector-set! ucd-suc-entries 253 ucd-suc-entry-253)
-  (vector-set! ucd-suc-entries 254 ucd-suc-entry-254)
-  (vector-set! ucd-suc-entries 255 ucd-suc-entry-255)
-  (vector-set! ucd-suc-entries 256 ucd-suc-entry-256)
-  (vector-set! ucd-suc-entries 257 ucd-suc-entry-257)
-  (vector-set! ucd-suc-entries 258 ucd-suc-entry-258)
-  (vector-set! ucd-suc-entries 259 ucd-suc-entry-259)
-  (vector-set! ucd-suc-entries 260 ucd-suc-entry-260)
-  (vector-set! ucd-suc-entries 261 ucd-suc-entry-261)
-  (vector-set! ucd-suc-entries 262 ucd-suc-entry-262)
-  (vector-set! ucd-suc-entries 263 ucd-suc-entry-263)
-  (vector-set! ucd-suc-entries 264 ucd-suc-entry-264)
-  (vector-set! ucd-suc-entries 265 ucd-suc-entry-265)
-  (vector-set! ucd-suc-entries 266 ucd-suc-entry-266)
-  (vector-set! ucd-suc-entries 267 ucd-suc-entry-267)
-  (vector-set! ucd-suc-entries 268 ucd-suc-entry-268)
-  (vector-set! ucd-suc-entries 269 ucd-suc-entry-269)
-  (vector-set! ucd-suc-entries 270 ucd-suc-entry-270)
-  (vector-set! ucd-suc-entries 271 ucd-suc-entry-271)
-  (vector-set! ucd-suc-entries 272 ucd-suc-entry-272)
-  (vector-set! ucd-suc-entries 273 ucd-suc-entry-273)
-  (vector-set! ucd-suc-entries 274 ucd-suc-entry-274)
-  (vector-set! ucd-suc-entries 275 ucd-suc-entry-275)
-  (vector-set! ucd-suc-entries 276 ucd-suc-entry-276)
-  (vector-set! ucd-suc-entries 277 ucd-suc-entry-277)
-  (vector-set! ucd-suc-entries 278 ucd-suc-entry-278)
-  (vector-set! ucd-suc-entries 279 ucd-suc-entry-279)
-  (vector-set! ucd-suc-entries 280 ucd-suc-entry-280)
-  (vector-set! ucd-suc-entries 281 ucd-suc-entry-281)
-  (vector-set! ucd-suc-entries 282 ucd-suc-entry-282)
-  (vector-set! ucd-suc-entries 283 ucd-suc-entry-283)
-  (vector-set! ucd-suc-entries 284 ucd-suc-entry-284)
-  (vector-set! ucd-suc-entries 285 ucd-suc-entry-285)
-  (vector-set! ucd-suc-entries 286 ucd-suc-entry-286)
-  (vector-set! ucd-suc-entries 287 ucd-suc-entry-287)
-  (vector-set! ucd-suc-entries 288 ucd-suc-entry-288)
-  (vector-set! ucd-suc-entries 289 ucd-suc-entry-289)
-  (vector-set! ucd-suc-entries 290 ucd-suc-entry-290)
-  (vector-set! ucd-suc-entries 291 ucd-suc-entry-291)
-  (vector-set! ucd-suc-entries 292 ucd-suc-entry-292)
-  (vector-set! ucd-suc-entries 293 ucd-suc-entry-293)
-  (vector-set! ucd-suc-entries 294 ucd-suc-entry-294)
-  (vector-set! ucd-suc-entries 295 ucd-suc-entry-295)
-  (vector-set! ucd-suc-entries 296 ucd-suc-entry-296)
-  (vector-set! ucd-suc-entries 297 ucd-suc-entry-297)
-  (vector-set! ucd-suc-entries 298 ucd-suc-entry-298)
-  (vector-set! ucd-suc-entries 299 ucd-suc-entry-299))
-
-(define (initialize-ucd-suc-entries-3)
-  (vector-set! ucd-suc-entries 300 ucd-suc-entry-300)
-  (vector-set! ucd-suc-entries 301 ucd-suc-entry-301)
-  (vector-set! ucd-suc-entries 302 ucd-suc-entry-302)
-  (vector-set! ucd-suc-entries 303 ucd-suc-entry-303)
-  (vector-set! ucd-suc-entries 304 ucd-suc-entry-304)
-  (vector-set! ucd-suc-entries 305 ucd-suc-entry-305)
-  (vector-set! ucd-suc-entries 306 ucd-suc-entry-306)
-  (vector-set! ucd-suc-entries 307 ucd-suc-entry-307)
-  (vector-set! ucd-suc-entries 308 ucd-suc-entry-308)
-  (vector-set! ucd-suc-entries 309 ucd-suc-entry-309)
-  (vector-set! ucd-suc-entries 310 ucd-suc-entry-310)
-  (vector-set! ucd-suc-entries 311 ucd-suc-entry-311)
-  (vector-set! ucd-suc-entries 312 ucd-suc-entry-312)
-  (vector-set! ucd-suc-entries 313 ucd-suc-entry-313)
-  (vector-set! ucd-suc-entries 314 ucd-suc-entry-314)
-  (vector-set! ucd-suc-entries 315 ucd-suc-entry-315)
-  (vector-set! ucd-suc-entries 316 ucd-suc-entry-316)
-  (vector-set! ucd-suc-entries 317 ucd-suc-entry-317)
-  (vector-set! ucd-suc-entries 318 ucd-suc-entry-318)
-  (vector-set! ucd-suc-entries 319 ucd-suc-entry-319)
-  (vector-set! ucd-suc-entries 320 ucd-suc-entry-320)
-  (vector-set! ucd-suc-entries 321 ucd-suc-entry-321)
-  (vector-set! ucd-suc-entries 322 ucd-suc-entry-322)
-  (vector-set! ucd-suc-entries 323 ucd-suc-entry-323)
-  (vector-set! ucd-suc-entries 324 ucd-suc-entry-324)
-  (vector-set! ucd-suc-entries 325 ucd-suc-entry-325)
-  (vector-set! ucd-suc-entries 326 ucd-suc-entry-326)
-  (vector-set! ucd-suc-entries 327 ucd-suc-entry-327)
-  (vector-set! ucd-suc-entries 328 ucd-suc-entry-328)
-  (vector-set! ucd-suc-entries 329 ucd-suc-entry-329)
-  (vector-set! ucd-suc-entries 330 ucd-suc-entry-330)
-  (vector-set! ucd-suc-entries 331 ucd-suc-entry-331)
-  (vector-set! ucd-suc-entries 332 ucd-suc-entry-332)
-  (vector-set! ucd-suc-entries 333 ucd-suc-entry-333)
-  (vector-set! ucd-suc-entries 334 ucd-suc-entry-334)
-  (vector-set! ucd-suc-entries 335 ucd-suc-entry-335)
-  (vector-set! ucd-suc-entries 336 ucd-suc-entry-336)
-  (vector-set! ucd-suc-entries 337 ucd-suc-entry-337)
-  (vector-set! ucd-suc-entries 338 ucd-suc-entry-338)
-  (vector-set! ucd-suc-entries 339 ucd-suc-entry-339)
-  (vector-set! ucd-suc-entries 340 ucd-suc-entry-340)
-  (vector-set! ucd-suc-entries 341 ucd-suc-entry-341)
-  (vector-set! ucd-suc-entries 342 ucd-suc-entry-342)
-  (vector-set! ucd-suc-entries 343 ucd-suc-entry-343)
-  (vector-set! ucd-suc-entries 344 ucd-suc-entry-344)
-  (vector-set! ucd-suc-entries 345 ucd-suc-entry-345)
-  (vector-set! ucd-suc-entries 346 ucd-suc-entry-346)
-  (vector-set! ucd-suc-entries 347 ucd-suc-entry-347)
-  (vector-set! ucd-suc-entries 348 ucd-suc-entry-348)
-  (vector-set! ucd-suc-entries 349 ucd-suc-entry-349)
-  (vector-set! ucd-suc-entries 350 ucd-suc-entry-350)
-  (vector-set! ucd-suc-entries 351 ucd-suc-entry-351)
-  (vector-set! ucd-suc-entries 352 ucd-suc-entry-352)
-  (vector-set! ucd-suc-entries 353 ucd-suc-entry-353)
-  (vector-set! ucd-suc-entries 354 ucd-suc-entry-354)
-  (vector-set! ucd-suc-entries 355 ucd-suc-entry-355)
-  (vector-set! ucd-suc-entries 356 ucd-suc-entry-356)
-  (vector-set! ucd-suc-entries 357 ucd-suc-entry-357)
-  (vector-set! ucd-suc-entries 358 ucd-suc-entry-358)
-  (vector-set! ucd-suc-entries 359 ucd-suc-entry-359)
-  (vector-set! ucd-suc-entries 360 ucd-suc-entry-360)
-  (vector-set! ucd-suc-entries 361 ucd-suc-entry-361)
-  (vector-set! ucd-suc-entries 362 ucd-suc-entry-362)
-  (vector-set! ucd-suc-entries 363 ucd-suc-entry-363)
-  (vector-set! ucd-suc-entries 364 ucd-suc-entry-364)
-  (vector-set! ucd-suc-entries 365 ucd-suc-entry-365)
-  (vector-set! ucd-suc-entries 366 ucd-suc-entry-366)
-  (vector-set! ucd-suc-entries 367 ucd-suc-entry-367)
-  (vector-set! ucd-suc-entries 368 ucd-suc-entry-368)
-  (vector-set! ucd-suc-entries 369 ucd-suc-entry-369)
-  (vector-set! ucd-suc-entries 370 ucd-suc-entry-370)
-  (vector-set! ucd-suc-entries 371 ucd-suc-entry-371)
-  (vector-set! ucd-suc-entries 372 ucd-suc-entry-372)
-  (vector-set! ucd-suc-entries 373 ucd-suc-entry-373)
-  (vector-set! ucd-suc-entries 374 ucd-suc-entry-374)
-  (vector-set! ucd-suc-entries 375 ucd-suc-entry-375)
-  (vector-set! ucd-suc-entries 376 ucd-suc-entry-376)
-  (vector-set! ucd-suc-entries 377 ucd-suc-entry-377)
-  (vector-set! ucd-suc-entries 378 ucd-suc-entry-378)
-  (vector-set! ucd-suc-entries 379 ucd-suc-entry-379)
-  (vector-set! ucd-suc-entries 380 ucd-suc-entry-380)
-  (vector-set! ucd-suc-entries 381 ucd-suc-entry-381)
-  (vector-set! ucd-suc-entries 382 ucd-suc-entry-382)
-  (vector-set! ucd-suc-entries 383 ucd-suc-entry-383)
-  (vector-set! ucd-suc-entries 384 ucd-suc-entry-384)
-  (vector-set! ucd-suc-entries 385 ucd-suc-entry-385)
-  (vector-set! ucd-suc-entries 386 ucd-suc-entry-386)
-  (vector-set! ucd-suc-entries 387 ucd-suc-entry-387)
-  (vector-set! ucd-suc-entries 388 ucd-suc-entry-388)
-  (vector-set! ucd-suc-entries 389 ucd-suc-entry-389)
-  (vector-set! ucd-suc-entries 390 ucd-suc-entry-390)
-  (vector-set! ucd-suc-entries 391 ucd-suc-entry-391)
-  (vector-set! ucd-suc-entries 392 ucd-suc-entry-392)
-  (vector-set! ucd-suc-entries 393 ucd-suc-entry-393)
-  (vector-set! ucd-suc-entries 394 ucd-suc-entry-394)
-  (vector-set! ucd-suc-entries 395 ucd-suc-entry-395)
-  (vector-set! ucd-suc-entries 396 ucd-suc-entry-396)
-  (vector-set! ucd-suc-entries 397 ucd-suc-entry-397)
-  (vector-set! ucd-suc-entries 398 ucd-suc-entry-398)
-  (vector-set! ucd-suc-entries 399 ucd-suc-entry-399))
-
-(define (initialize-ucd-suc-entries-4)
-  (vector-set! ucd-suc-entries 400 ucd-suc-entry-400)
-  (vector-set! ucd-suc-entries 401 ucd-suc-entry-401)
-  (vector-set! ucd-suc-entries 402 ucd-suc-entry-402)
-  (vector-set! ucd-suc-entries 403 ucd-suc-entry-403)
-  (vector-set! ucd-suc-entries 404 ucd-suc-entry-404)
-  (vector-set! ucd-suc-entries 405 ucd-suc-entry-405)
-  (vector-set! ucd-suc-entries 406 ucd-suc-entry-406)
-  (vector-set! ucd-suc-entries 407 ucd-suc-entry-407)
-  (vector-set! ucd-suc-entries 408 ucd-suc-entry-408)
-  (vector-set! ucd-suc-entries 409 ucd-suc-entry-409)
-  (vector-set! ucd-suc-entries 410 ucd-suc-entry-410)
-  (vector-set! ucd-suc-entries 411 ucd-suc-entry-411)
-  (vector-set! ucd-suc-entries 412 ucd-suc-entry-412)
-  (vector-set! ucd-suc-entries 413 ucd-suc-entry-413)
-  (vector-set! ucd-suc-entries 414 ucd-suc-entry-414)
-  (vector-set! ucd-suc-entries 415 ucd-suc-entry-415)
-  (vector-set! ucd-suc-entries 416 ucd-suc-entry-416)
-  (vector-set! ucd-suc-entries 417 ucd-suc-entry-417)
-  (vector-set! ucd-suc-entries 418 ucd-suc-entry-418)
-  (vector-set! ucd-suc-entries 419 ucd-suc-entry-419)
-  (vector-set! ucd-suc-entries 420 ucd-suc-entry-420)
-  (vector-set! ucd-suc-entries 421 ucd-suc-entry-421)
-  (vector-set! ucd-suc-entries 422 ucd-suc-entry-422)
-  (vector-set! ucd-suc-entries 423 ucd-suc-entry-423)
-  (vector-set! ucd-suc-entries 424 ucd-suc-entry-424)
-  (vector-set! ucd-suc-entries 425 ucd-suc-entry-425)
-  (vector-set! ucd-suc-entries 426 ucd-suc-entry-426)
-  (vector-set! ucd-suc-entries 427 ucd-suc-entry-427)
-  (vector-set! ucd-suc-entries 428 ucd-suc-entry-428)
-  (vector-set! ucd-suc-entries 429 ucd-suc-entry-429)
-  (vector-set! ucd-suc-entries 430 ucd-suc-entry-430)
-  (vector-set! ucd-suc-entries 431 ucd-suc-entry-431)
-  (vector-set! ucd-suc-entries 432 ucd-suc-entry-432)
-  (vector-set! ucd-suc-entries 433 ucd-suc-entry-433)
-  (vector-set! ucd-suc-entries 434 ucd-suc-entry-434)
-  (vector-set! ucd-suc-entries 435 ucd-suc-entry-435)
-  (vector-set! ucd-suc-entries 436 ucd-suc-entry-436)
-  (vector-set! ucd-suc-entries 437 ucd-suc-entry-437)
-  (vector-set! ucd-suc-entries 438 ucd-suc-entry-438)
-  (vector-set! ucd-suc-entries 439 ucd-suc-entry-439)
-  (vector-set! ucd-suc-entries 440 ucd-suc-entry-440)
-  (vector-set! ucd-suc-entries 441 ucd-suc-entry-441)
-  (vector-set! ucd-suc-entries 442 ucd-suc-entry-442)
-  (vector-set! ucd-suc-entries 443 ucd-suc-entry-443)
-  (vector-set! ucd-suc-entries 444 ucd-suc-entry-444)
-  (vector-set! ucd-suc-entries 445 ucd-suc-entry-445)
-  (vector-set! ucd-suc-entries 446 ucd-suc-entry-446)
-  (vector-set! ucd-suc-entries 447 ucd-suc-entry-447)
-  (vector-set! ucd-suc-entries 448 ucd-suc-entry-448)
-  (vector-set! ucd-suc-entries 449 ucd-suc-entry-449)
-  (vector-set! ucd-suc-entries 450 ucd-suc-entry-450)
-  (vector-set! ucd-suc-entries 451 ucd-suc-entry-451)
-  (vector-set! ucd-suc-entries 452 ucd-suc-entry-452)
-  (vector-set! ucd-suc-entries 453 ucd-suc-entry-453)
-  (vector-set! ucd-suc-entries 454 ucd-suc-entry-454)
-  (vector-set! ucd-suc-entries 455 ucd-suc-entry-455)
-  (vector-set! ucd-suc-entries 456 ucd-suc-entry-456)
-  (vector-set! ucd-suc-entries 457 ucd-suc-entry-457)
-  (vector-set! ucd-suc-entries 458 ucd-suc-entry-458)
-  (vector-set! ucd-suc-entries 459 ucd-suc-entry-459)
-  (vector-set! ucd-suc-entries 460 ucd-suc-entry-460)
-  (vector-set! ucd-suc-entries 461 ucd-suc-entry-461)
-  (vector-set! ucd-suc-entries 462 ucd-suc-entry-462)
-  (vector-set! ucd-suc-entries 463 ucd-suc-entry-463)
-  (vector-set! ucd-suc-entries 464 ucd-suc-entry-464)
-  (vector-set! ucd-suc-entries 465 ucd-suc-entry-465)
-  (vector-set! ucd-suc-entries 466 ucd-suc-entry-466)
-  (vector-set! ucd-suc-entries 467 ucd-suc-entry-467)
-  (vector-set! ucd-suc-entries 468 ucd-suc-entry-468)
-  (vector-set! ucd-suc-entries 469 ucd-suc-entry-469)
-  (vector-set! ucd-suc-entries 470 ucd-suc-entry-470)
-  (vector-set! ucd-suc-entries 471 ucd-suc-entry-471)
-  (vector-set! ucd-suc-entries 472 ucd-suc-entry-472)
-  (vector-set! ucd-suc-entries 473 ucd-suc-entry-473)
-  (vector-set! ucd-suc-entries 474 ucd-suc-entry-474)
-  (vector-set! ucd-suc-entries 475 ucd-suc-entry-475)
-  (vector-set! ucd-suc-entries 476 ucd-suc-entry-476)
-  (vector-set! ucd-suc-entries 477 ucd-suc-entry-477)
-  (vector-set! ucd-suc-entries 478 ucd-suc-entry-478)
-  (vector-set! ucd-suc-entries 479 ucd-suc-entry-479)
-  (vector-set! ucd-suc-entries 480 ucd-suc-entry-480)
-  (vector-set! ucd-suc-entries 481 ucd-suc-entry-481)
-  (vector-set! ucd-suc-entries 482 ucd-suc-entry-482)
-  (vector-set! ucd-suc-entries 483 ucd-suc-entry-483)
-  (vector-set! ucd-suc-entries 484 ucd-suc-entry-484)
-  (vector-set! ucd-suc-entries 485 ucd-suc-entry-485)
-  (vector-set! ucd-suc-entries 486 ucd-suc-entry-486)
-  (vector-set! ucd-suc-entries 487 ucd-suc-entry-487)
-  (vector-set! ucd-suc-entries 488 ucd-suc-entry-488)
-  (vector-set! ucd-suc-entries 489 ucd-suc-entry-489)
-  (vector-set! ucd-suc-entries 490 ucd-suc-entry-490)
-  (vector-set! ucd-suc-entries 491 ucd-suc-entry-491)
-  (vector-set! ucd-suc-entries 492 ucd-suc-entry-492)
-  (vector-set! ucd-suc-entries 493 ucd-suc-entry-493)
-  (vector-set! ucd-suc-entries 494 ucd-suc-entry-494)
-  (vector-set! ucd-suc-entries 495 ucd-suc-entry-495)
-  (vector-set! ucd-suc-entries 496 ucd-suc-entry-496)
-  (vector-set! ucd-suc-entries 497 ucd-suc-entry-497)
-  (vector-set! ucd-suc-entries 498 ucd-suc-entry-498)
-  (vector-set! ucd-suc-entries 499 ucd-suc-entry-499))
-
-(define (initialize-ucd-suc-entries-5)
-  (vector-set! ucd-suc-entries 500 ucd-suc-entry-500)
-  (vector-set! ucd-suc-entries 501 ucd-suc-entry-501)
-  (vector-set! ucd-suc-entries 502 ucd-suc-entry-502)
-  (vector-set! ucd-suc-entries 503 ucd-suc-entry-503)
-  (vector-set! ucd-suc-entries 504 ucd-suc-entry-504)
-  (vector-set! ucd-suc-entries 505 ucd-suc-entry-505)
-  (vector-set! ucd-suc-entries 506 ucd-suc-entry-506)
-  (vector-set! ucd-suc-entries 507 ucd-suc-entry-507)
-  (vector-set! ucd-suc-entries 508 ucd-suc-entry-508)
-  (vector-set! ucd-suc-entries 509 ucd-suc-entry-509)
-  (vector-set! ucd-suc-entries 510 ucd-suc-entry-510)
-  (vector-set! ucd-suc-entries 511 ucd-suc-entry-511)
-  (vector-set! ucd-suc-entries 512 ucd-suc-entry-512)
-  (vector-set! ucd-suc-entries 513 ucd-suc-entry-513)
-  (vector-set! ucd-suc-entries 514 ucd-suc-entry-514)
-  (vector-set! ucd-suc-entries 515 ucd-suc-entry-515)
-  (vector-set! ucd-suc-entries 516 ucd-suc-entry-516)
-  (vector-set! ucd-suc-entries 517 ucd-suc-entry-517)
-  (vector-set! ucd-suc-entries 518 ucd-suc-entry-518)
-  (vector-set! ucd-suc-entries 519 ucd-suc-entry-519)
-  (vector-set! ucd-suc-entries 520 ucd-suc-entry-520)
-  (vector-set! ucd-suc-entries 521 ucd-suc-entry-521)
-  (vector-set! ucd-suc-entries 522 ucd-suc-entry-522)
-  (vector-set! ucd-suc-entries 523 ucd-suc-entry-523)
-  (vector-set! ucd-suc-entries 524 ucd-suc-entry-524)
-  (vector-set! ucd-suc-entries 525 ucd-suc-entry-525)
-  (vector-set! ucd-suc-entries 526 ucd-suc-entry-526)
-  (vector-set! ucd-suc-entries 527 ucd-suc-entry-527)
-  (vector-set! ucd-suc-entries 528 ucd-suc-entry-528)
-  (vector-set! ucd-suc-entries 529 ucd-suc-entry-529)
-  (vector-set! ucd-suc-entries 530 ucd-suc-entry-530)
-  (vector-set! ucd-suc-entries 531 ucd-suc-entry-531)
-  (vector-set! ucd-suc-entries 532 ucd-suc-entry-532)
-  (vector-set! ucd-suc-entries 533 ucd-suc-entry-533)
-  (vector-set! ucd-suc-entries 534 ucd-suc-entry-534)
-  (vector-set! ucd-suc-entries 535 ucd-suc-entry-535)
-  (vector-set! ucd-suc-entries 536 ucd-suc-entry-536)
-  (vector-set! ucd-suc-entries 537 ucd-suc-entry-537)
-  (vector-set! ucd-suc-entries 538 ucd-suc-entry-538)
-  (vector-set! ucd-suc-entries 539 ucd-suc-entry-539)
-  (vector-set! ucd-suc-entries 540 ucd-suc-entry-540)
-  (vector-set! ucd-suc-entries 541 ucd-suc-entry-541)
-  (vector-set! ucd-suc-entries 542 ucd-suc-entry-542)
-  (vector-set! ucd-suc-entries 543 ucd-suc-entry-543)
-  (vector-set! ucd-suc-entries 544 ucd-suc-entry-544)
-  (vector-set! ucd-suc-entries 545 ucd-suc-entry-545)
-  (vector-set! ucd-suc-entries 546 ucd-suc-entry-546)
-  (vector-set! ucd-suc-entries 547 ucd-suc-entry-547)
-  (vector-set! ucd-suc-entries 548 ucd-suc-entry-548)
-  (vector-set! ucd-suc-entries 549 ucd-suc-entry-549)
-  (vector-set! ucd-suc-entries 550 ucd-suc-entry-550)
-  (vector-set! ucd-suc-entries 551 ucd-suc-entry-551)
-  (vector-set! ucd-suc-entries 552 ucd-suc-entry-552)
-  (vector-set! ucd-suc-entries 553 ucd-suc-entry-553)
-  (vector-set! ucd-suc-entries 554 ucd-suc-entry-554)
-  (vector-set! ucd-suc-entries 555 ucd-suc-entry-555)
-  (vector-set! ucd-suc-entries 556 ucd-suc-entry-556)
-  (vector-set! ucd-suc-entries 557 ucd-suc-entry-557)
-  (vector-set! ucd-suc-entries 558 ucd-suc-entry-558)
-  (vector-set! ucd-suc-entries 559 ucd-suc-entry-559)
-  (vector-set! ucd-suc-entries 560 ucd-suc-entry-560)
-  (vector-set! ucd-suc-entries 561 ucd-suc-entry-561)
-  (vector-set! ucd-suc-entries 562 ucd-suc-entry-562)
-  (vector-set! ucd-suc-entries 563 ucd-suc-entry-563)
-  (vector-set! ucd-suc-entries 564 ucd-suc-entry-564)
-  (vector-set! ucd-suc-entries 565 ucd-suc-entry-565)
-  (vector-set! ucd-suc-entries 566 ucd-suc-entry-566)
-  (vector-set! ucd-suc-entries 567 ucd-suc-entry-567)
-  (vector-set! ucd-suc-entries 568 ucd-suc-entry-568)
-  (vector-set! ucd-suc-entries 569 ucd-suc-entry-569)
-  (vector-set! ucd-suc-entries 570 ucd-suc-entry-570)
-  (vector-set! ucd-suc-entries 571 ucd-suc-entry-571)
-  (vector-set! ucd-suc-entries 572 ucd-suc-entry-572)
-  (vector-set! ucd-suc-entries 573 ucd-suc-entry-573)
-  (vector-set! ucd-suc-entries 574 ucd-suc-entry-574)
-  (vector-set! ucd-suc-entries 575 ucd-suc-entry-575)
-  (vector-set! ucd-suc-entries 576 ucd-suc-entry-576)
-  (vector-set! ucd-suc-entries 577 ucd-suc-entry-577)
-  (vector-set! ucd-suc-entries 578 ucd-suc-entry-578)
-  (vector-set! ucd-suc-entries 579 ucd-suc-entry-579)
-  (vector-set! ucd-suc-entries 580 ucd-suc-entry-580)
-  (vector-set! ucd-suc-entries 581 ucd-suc-entry-581)
-  (vector-set! ucd-suc-entries 582 ucd-suc-entry-582)
-  (vector-set! ucd-suc-entries 583 ucd-suc-entry-583)
-  (vector-set! ucd-suc-entries 584 ucd-suc-entry-584)
-  (vector-set! ucd-suc-entries 585 ucd-suc-entry-585)
-  (vector-set! ucd-suc-entries 586 ucd-suc-entry-586)
-  (vector-set! ucd-suc-entries 587 ucd-suc-entry-587)
-  (vector-set! ucd-suc-entries 588 ucd-suc-entry-588)
-  (vector-set! ucd-suc-entries 589 ucd-suc-entry-589)
-  (vector-set! ucd-suc-entries 590 ucd-suc-entry-590)
-  (vector-set! ucd-suc-entries 591 ucd-suc-entry-591)
-  (vector-set! ucd-suc-entries 592 ucd-suc-entry-592)
-  (vector-set! ucd-suc-entries 593 ucd-suc-entry-593)
-  (vector-set! ucd-suc-entries 594 ucd-suc-entry-594)
-  (vector-set! ucd-suc-entries 595 ucd-suc-entry-595)
-  (vector-set! ucd-suc-entries 596 ucd-suc-entry-596)
-  (vector-set! ucd-suc-entries 597 ucd-suc-entry-597)
-  (vector-set! ucd-suc-entries 598 ucd-suc-entry-598)
-  (vector-set! ucd-suc-entries 599 ucd-suc-entry-599))
-
-(define (initialize-ucd-suc-entries-6)
-  (vector-set! ucd-suc-entries 600 ucd-suc-entry-600)
-  (vector-set! ucd-suc-entries 601 ucd-suc-entry-601)
-  (vector-set! ucd-suc-entries 602 ucd-suc-entry-602)
-  (vector-set! ucd-suc-entries 603 ucd-suc-entry-603)
-  (vector-set! ucd-suc-entries 604 ucd-suc-entry-604)
-  (vector-set! ucd-suc-entries 605 ucd-suc-entry-605)
-  (vector-set! ucd-suc-entries 606 ucd-suc-entry-606)
-  (vector-set! ucd-suc-entries 607 ucd-suc-entry-607)
-  (vector-set! ucd-suc-entries 608 ucd-suc-entry-608)
-  (vector-set! ucd-suc-entries 609 ucd-suc-entry-609)
-  (vector-set! ucd-suc-entries 610 ucd-suc-entry-610)
-  (vector-set! ucd-suc-entries 611 ucd-suc-entry-611)
-  (vector-set! ucd-suc-entries 612 ucd-suc-entry-612)
-  (vector-set! ucd-suc-entries 613 ucd-suc-entry-613)
-  (vector-set! ucd-suc-entries 614 ucd-suc-entry-614)
-  (vector-set! ucd-suc-entries 615 ucd-suc-entry-615)
-  (vector-set! ucd-suc-entries 616 ucd-suc-entry-616)
-  (vector-set! ucd-suc-entries 617 ucd-suc-entry-617)
-  (vector-set! ucd-suc-entries 618 ucd-suc-entry-618)
-  (vector-set! ucd-suc-entries 619 ucd-suc-entry-619)
-  (vector-set! ucd-suc-entries 620 ucd-suc-entry-620)
-  (vector-set! ucd-suc-entries 621 ucd-suc-entry-621)
-  (vector-set! ucd-suc-entries 622 ucd-suc-entry-622)
-  (vector-set! ucd-suc-entries 623 ucd-suc-entry-623)
-  (vector-set! ucd-suc-entries 624 ucd-suc-entry-624)
-  (vector-set! ucd-suc-entries 625 ucd-suc-entry-625)
-  (vector-set! ucd-suc-entries 626 ucd-suc-entry-626)
-  (vector-set! ucd-suc-entries 627 ucd-suc-entry-627)
-  (vector-set! ucd-suc-entries 628 ucd-suc-entry-628)
-  (vector-set! ucd-suc-entries 629 ucd-suc-entry-629)
-  (vector-set! ucd-suc-entries 630 ucd-suc-entry-630)
-  (vector-set! ucd-suc-entries 631 ucd-suc-entry-631)
-  (vector-set! ucd-suc-entries 632 ucd-suc-entry-632)
-  (vector-set! ucd-suc-entries 633 ucd-suc-entry-633)
-  (vector-set! ucd-suc-entries 634 ucd-suc-entry-634)
-  (vector-set! ucd-suc-entries 635 ucd-suc-entry-635)
-  (vector-set! ucd-suc-entries 636 ucd-suc-entry-636)
-  (vector-set! ucd-suc-entries 637 ucd-suc-entry-637)
-  (vector-set! ucd-suc-entries 638 ucd-suc-entry-638)
-  (vector-set! ucd-suc-entries 639 ucd-suc-entry-639)
-  (vector-set! ucd-suc-entries 640 ucd-suc-entry-640)
-  (vector-set! ucd-suc-entries 641 ucd-suc-entry-641)
-  (vector-set! ucd-suc-entries 642 ucd-suc-entry-642)
-  (vector-set! ucd-suc-entries 643 ucd-suc-entry-643)
-  (vector-set! ucd-suc-entries 644 ucd-suc-entry-644)
-  (vector-set! ucd-suc-entries 645 ucd-suc-entry-645)
-  (vector-set! ucd-suc-entries 646 ucd-suc-entry-646)
-  (vector-set! ucd-suc-entries 647 ucd-suc-entry-647)
-  (vector-set! ucd-suc-entries 648 ucd-suc-entry-648)
-  (vector-set! ucd-suc-entries 649 ucd-suc-entry-649)
-  (vector-set! ucd-suc-entries 650 ucd-suc-entry-650)
-  (vector-set! ucd-suc-entries 651 ucd-suc-entry-651)
-  (vector-set! ucd-suc-entries 652 ucd-suc-entry-652)
-  (vector-set! ucd-suc-entries 653 ucd-suc-entry-653)
-  (vector-set! ucd-suc-entries 654 ucd-suc-entry-654)
-  (vector-set! ucd-suc-entries 655 ucd-suc-entry-655)
-  (vector-set! ucd-suc-entries 656 ucd-suc-entry-656)
-  (vector-set! ucd-suc-entries 657 ucd-suc-entry-657)
-  (vector-set! ucd-suc-entries 658 ucd-suc-entry-658)
-  (vector-set! ucd-suc-entries 659 ucd-suc-entry-659)
-  (vector-set! ucd-suc-entries 660 ucd-suc-entry-660)
-  (vector-set! ucd-suc-entries 661 ucd-suc-entry-661)
-  (vector-set! ucd-suc-entries 662 ucd-suc-entry-662)
-  (vector-set! ucd-suc-entries 663 ucd-suc-entry-663)
-  (vector-set! ucd-suc-entries 664 ucd-suc-entry-664)
-  (vector-set! ucd-suc-entries 665 ucd-suc-entry-665)
-  (vector-set! ucd-suc-entries 666 ucd-suc-entry-666)
-  (vector-set! ucd-suc-entries 667 ucd-suc-entry-667)
-  (vector-set! ucd-suc-entries 668 ucd-suc-entry-668)
-  (vector-set! ucd-suc-entries 669 ucd-suc-entry-669)
-  (vector-set! ucd-suc-entries 670 ucd-suc-entry-670)
-  (vector-set! ucd-suc-entries 671 ucd-suc-entry-671)
-  (vector-set! ucd-suc-entries 672 ucd-suc-entry-672)
-  (vector-set! ucd-suc-entries 673 ucd-suc-entry-673)
-  (vector-set! ucd-suc-entries 674 ucd-suc-entry-674)
-  (vector-set! ucd-suc-entries 675 ucd-suc-entry-675)
-  (vector-set! ucd-suc-entries 676 ucd-suc-entry-676)
-  (vector-set! ucd-suc-entries 677 ucd-suc-entry-677)
-  (vector-set! ucd-suc-entries 678 ucd-suc-entry-678)
-  (vector-set! ucd-suc-entries 679 ucd-suc-entry-679)
-  (vector-set! ucd-suc-entries 680 ucd-suc-entry-680)
-  (vector-set! ucd-suc-entries 681 ucd-suc-entry-681)
-  (vector-set! ucd-suc-entries 682 ucd-suc-entry-682)
-  (vector-set! ucd-suc-entries 683 ucd-suc-entry-683)
-  (vector-set! ucd-suc-entries 684 ucd-suc-entry-684)
-  (vector-set! ucd-suc-entries 685 ucd-suc-entry-685)
-  (vector-set! ucd-suc-entries 686 ucd-suc-entry-686)
-  (vector-set! ucd-suc-entries 687 ucd-suc-entry-687)
-  (vector-set! ucd-suc-entries 688 ucd-suc-entry-688)
-  (vector-set! ucd-suc-entries 689 ucd-suc-entry-689)
-  (vector-set! ucd-suc-entries 690 ucd-suc-entry-690)
-  (vector-set! ucd-suc-entries 691 ucd-suc-entry-691)
-  (vector-set! ucd-suc-entries 692 ucd-suc-entry-692)
-  (vector-set! ucd-suc-entries 693 ucd-suc-entry-693)
-  (vector-set! ucd-suc-entries 694 ucd-suc-entry-694)
-  (vector-set! ucd-suc-entries 695 ucd-suc-entry-695)
-  (vector-set! ucd-suc-entries 696 ucd-suc-entry-696)
-  (vector-set! ucd-suc-entries 697 ucd-suc-entry-697)
-  (vector-set! ucd-suc-entries 698 ucd-suc-entry-698)
-  (vector-set! ucd-suc-entries 699 ucd-suc-entry-699))
-
-(define (initialize-ucd-suc-entries-7)
-  (vector-set! ucd-suc-entries 700 ucd-suc-entry-700)
-  (vector-set! ucd-suc-entries 701 ucd-suc-entry-701)
-  (vector-set! ucd-suc-entries 702 ucd-suc-entry-702)
-  (vector-set! ucd-suc-entries 703 ucd-suc-entry-703)
-  (vector-set! ucd-suc-entries 704 ucd-suc-entry-704)
-  (vector-set! ucd-suc-entries 705 ucd-suc-entry-705)
-  (vector-set! ucd-suc-entries 706 ucd-suc-entry-706)
-  (vector-set! ucd-suc-entries 707 ucd-suc-entry-707)
-  (vector-set! ucd-suc-entries 708 ucd-suc-entry-708)
-  (vector-set! ucd-suc-entries 709 ucd-suc-entry-709)
-  (vector-set! ucd-suc-entries 710 ucd-suc-entry-710)
-  (vector-set! ucd-suc-entries 711 ucd-suc-entry-711)
-  (vector-set! ucd-suc-entries 712 ucd-suc-entry-712)
-  (vector-set! ucd-suc-entries 713 ucd-suc-entry-713)
-  (vector-set! ucd-suc-entries 714 ucd-suc-entry-714)
-  (vector-set! ucd-suc-entries 715 ucd-suc-entry-715)
-  (vector-set! ucd-suc-entries 716 ucd-suc-entry-716)
-  (vector-set! ucd-suc-entries 717 ucd-suc-entry-717)
-  (vector-set! ucd-suc-entries 718 ucd-suc-entry-718)
-  (vector-set! ucd-suc-entries 719 ucd-suc-entry-719)
-  (vector-set! ucd-suc-entries 720 ucd-suc-entry-720)
-  (vector-set! ucd-suc-entries 721 ucd-suc-entry-721)
-  (vector-set! ucd-suc-entries 722 ucd-suc-entry-722)
-  (vector-set! ucd-suc-entries 723 ucd-suc-entry-723)
-  (vector-set! ucd-suc-entries 724 ucd-suc-entry-724)
-  (vector-set! ucd-suc-entries 725 ucd-suc-entry-725)
-  (vector-set! ucd-suc-entries 726 ucd-suc-entry-726)
-  (vector-set! ucd-suc-entries 727 ucd-suc-entry-727)
-  (vector-set! ucd-suc-entries 728 ucd-suc-entry-728)
-  (vector-set! ucd-suc-entries 729 ucd-suc-entry-729)
-  (vector-set! ucd-suc-entries 730 ucd-suc-entry-730)
-  (vector-set! ucd-suc-entries 731 ucd-suc-entry-731)
-  (vector-set! ucd-suc-entries 732 ucd-suc-entry-732)
-  (vector-set! ucd-suc-entries 733 ucd-suc-entry-733)
-  (vector-set! ucd-suc-entries 734 ucd-suc-entry-734)
-  (vector-set! ucd-suc-entries 735 ucd-suc-entry-735)
-  (vector-set! ucd-suc-entries 736 ucd-suc-entry-736)
-  (vector-set! ucd-suc-entries 737 ucd-suc-entry-737)
-  (vector-set! ucd-suc-entries 738 ucd-suc-entry-738)
-  (vector-set! ucd-suc-entries 739 ucd-suc-entry-739)
-  (vector-set! ucd-suc-entries 740 ucd-suc-entry-740)
-  (vector-set! ucd-suc-entries 741 ucd-suc-entry-741)
-  (vector-set! ucd-suc-entries 742 ucd-suc-entry-742)
-  (vector-set! ucd-suc-entries 743 ucd-suc-entry-743)
-  (vector-set! ucd-suc-entries 744 ucd-suc-entry-744)
-  (vector-set! ucd-suc-entries 745 ucd-suc-entry-745)
-  (vector-set! ucd-suc-entries 746 ucd-suc-entry-746)
-  (vector-set! ucd-suc-entries 747 ucd-suc-entry-747)
-  (vector-set! ucd-suc-entries 748 ucd-suc-entry-748)
-  (vector-set! ucd-suc-entries 749 ucd-suc-entry-749)
-  (vector-set! ucd-suc-entries 750 ucd-suc-entry-750)
-  (vector-set! ucd-suc-entries 751 ucd-suc-entry-751)
-  (vector-set! ucd-suc-entries 752 ucd-suc-entry-752)
-  (vector-set! ucd-suc-entries 753 ucd-suc-entry-753)
-  (vector-set! ucd-suc-entries 754 ucd-suc-entry-754)
-  (vector-set! ucd-suc-entries 755 ucd-suc-entry-755)
-  (vector-set! ucd-suc-entries 756 ucd-suc-entry-756)
-  (vector-set! ucd-suc-entries 757 ucd-suc-entry-757)
-  (vector-set! ucd-suc-entries 758 ucd-suc-entry-758)
-  (vector-set! ucd-suc-entries 759 ucd-suc-entry-759)
-  (vector-set! ucd-suc-entries 760 ucd-suc-entry-760)
-  (vector-set! ucd-suc-entries 761 ucd-suc-entry-761)
-  (vector-set! ucd-suc-entries 762 ucd-suc-entry-762)
-  (vector-set! ucd-suc-entries 763 ucd-suc-entry-763)
-  (vector-set! ucd-suc-entries 764 ucd-suc-entry-764)
-  (vector-set! ucd-suc-entries 765 ucd-suc-entry-765)
-  (vector-set! ucd-suc-entries 766 ucd-suc-entry-766)
-  (vector-set! ucd-suc-entries 767 ucd-suc-entry-767)
-  (vector-set! ucd-suc-entries 768 ucd-suc-entry-768)
-  (vector-set! ucd-suc-entries 769 ucd-suc-entry-769)
-  (vector-set! ucd-suc-entries 770 ucd-suc-entry-770)
-  (vector-set! ucd-suc-entries 771 ucd-suc-entry-771)
-  (vector-set! ucd-suc-entries 772 ucd-suc-entry-772)
-  (vector-set! ucd-suc-entries 773 ucd-suc-entry-773)
-  (vector-set! ucd-suc-entries 774 ucd-suc-entry-774)
-  (vector-set! ucd-suc-entries 775 ucd-suc-entry-775)
-  (vector-set! ucd-suc-entries 776 ucd-suc-entry-776)
-  (vector-set! ucd-suc-entries 777 ucd-suc-entry-777)
-  (vector-set! ucd-suc-entries 778 ucd-suc-entry-778)
-  (vector-set! ucd-suc-entries 779 ucd-suc-entry-779)
-  (vector-set! ucd-suc-entries 780 ucd-suc-entry-780)
-  (vector-set! ucd-suc-entries 781 ucd-suc-entry-781)
-  (vector-set! ucd-suc-entries 782 ucd-suc-entry-782)
-  (vector-set! ucd-suc-entries 783 ucd-suc-entry-783)
-  (vector-set! ucd-suc-entries 784 ucd-suc-entry-784)
-  (vector-set! ucd-suc-entries 785 ucd-suc-entry-785)
-  (vector-set! ucd-suc-entries 786 ucd-suc-entry-786)
-  (vector-set! ucd-suc-entries 787 ucd-suc-entry-787)
-  (vector-set! ucd-suc-entries 788 ucd-suc-entry-788)
-  (vector-set! ucd-suc-entries 789 ucd-suc-entry-789)
-  (vector-set! ucd-suc-entries 790 ucd-suc-entry-790)
-  (vector-set! ucd-suc-entries 791 ucd-suc-entry-791)
-  (vector-set! ucd-suc-entries 792 ucd-suc-entry-792)
-  (vector-set! ucd-suc-entries 793 ucd-suc-entry-793)
-  (vector-set! ucd-suc-entries 794 ucd-suc-entry-794)
-  (vector-set! ucd-suc-entries 795 ucd-suc-entry-795)
-  (vector-set! ucd-suc-entries 796 ucd-suc-entry-796)
-  (vector-set! ucd-suc-entries 797 ucd-suc-entry-797)
-  (vector-set! ucd-suc-entries 798 ucd-suc-entry-798)
-  (vector-set! ucd-suc-entries 799 ucd-suc-entry-799))
-
-(define (initialize-ucd-suc-entries-8)
-  (vector-set! ucd-suc-entries 800 ucd-suc-entry-800)
-  (vector-set! ucd-suc-entries 801 ucd-suc-entry-801)
-  (vector-set! ucd-suc-entries 802 ucd-suc-entry-802)
-  (vector-set! ucd-suc-entries 803 ucd-suc-entry-803)
-  (vector-set! ucd-suc-entries 804 ucd-suc-entry-804)
-  (vector-set! ucd-suc-entries 805 ucd-suc-entry-805)
-  (vector-set! ucd-suc-entries 806 ucd-suc-entry-806)
-  (vector-set! ucd-suc-entries 807 ucd-suc-entry-807)
-  (vector-set! ucd-suc-entries 808 ucd-suc-entry-808)
-  (vector-set! ucd-suc-entries 809 ucd-suc-entry-809)
-  (vector-set! ucd-suc-entries 810 ucd-suc-entry-810)
-  (vector-set! ucd-suc-entries 811 ucd-suc-entry-811)
-  (vector-set! ucd-suc-entries 812 ucd-suc-entry-812)
-  (vector-set! ucd-suc-entries 813 ucd-suc-entry-813)
-  (vector-set! ucd-suc-entries 814 ucd-suc-entry-814)
-  (vector-set! ucd-suc-entries 815 ucd-suc-entry-815)
-  (vector-set! ucd-suc-entries 816 ucd-suc-entry-816)
-  (vector-set! ucd-suc-entries 817 ucd-suc-entry-817)
-  (vector-set! ucd-suc-entries 818 ucd-suc-entry-818)
-  (vector-set! ucd-suc-entries 819 ucd-suc-entry-819)
-  (vector-set! ucd-suc-entries 820 ucd-suc-entry-820)
-  (vector-set! ucd-suc-entries 821 ucd-suc-entry-821)
-  (vector-set! ucd-suc-entries 822 ucd-suc-entry-822)
-  (vector-set! ucd-suc-entries 823 ucd-suc-entry-823)
-  (vector-set! ucd-suc-entries 824 ucd-suc-entry-824)
-  (vector-set! ucd-suc-entries 825 ucd-suc-entry-825)
-  (vector-set! ucd-suc-entries 826 ucd-suc-entry-826)
-  (vector-set! ucd-suc-entries 827 ucd-suc-entry-827)
-  (vector-set! ucd-suc-entries 828 ucd-suc-entry-828)
-  (vector-set! ucd-suc-entries 829 ucd-suc-entry-829)
-  (vector-set! ucd-suc-entries 830 ucd-suc-entry-830)
-  (vector-set! ucd-suc-entries 831 ucd-suc-entry-831)
-  (vector-set! ucd-suc-entries 832 ucd-suc-entry-832)
-  (vector-set! ucd-suc-entries 833 ucd-suc-entry-833)
-  (vector-set! ucd-suc-entries 834 ucd-suc-entry-834)
-  (vector-set! ucd-suc-entries 835 ucd-suc-entry-835)
-  (vector-set! ucd-suc-entries 836 ucd-suc-entry-836)
-  (vector-set! ucd-suc-entries 837 ucd-suc-entry-837)
-  (vector-set! ucd-suc-entries 838 ucd-suc-entry-838)
-  (vector-set! ucd-suc-entries 839 ucd-suc-entry-839)
-  (vector-set! ucd-suc-entries 840 ucd-suc-entry-840)
-  (vector-set! ucd-suc-entries 841 ucd-suc-entry-841)
-  (vector-set! ucd-suc-entries 842 ucd-suc-entry-842)
-  (vector-set! ucd-suc-entries 843 ucd-suc-entry-843)
-  (vector-set! ucd-suc-entries 844 ucd-suc-entry-844)
-  (vector-set! ucd-suc-entries 845 ucd-suc-entry-845)
-  (vector-set! ucd-suc-entries 846 ucd-suc-entry-846)
-  (vector-set! ucd-suc-entries 847 ucd-suc-entry-847)
-  (vector-set! ucd-suc-entries 848 ucd-suc-entry-848)
-  (vector-set! ucd-suc-entries 849 ucd-suc-entry-849)
-  (vector-set! ucd-suc-entries 850 ucd-suc-entry-850)
-  (vector-set! ucd-suc-entries 851 ucd-suc-entry-851)
-  (vector-set! ucd-suc-entries 852 ucd-suc-entry-852)
-  (vector-set! ucd-suc-entries 853 ucd-suc-entry-853)
-  (vector-set! ucd-suc-entries 854 ucd-suc-entry-854)
-  (vector-set! ucd-suc-entries 855 ucd-suc-entry-855)
-  (vector-set! ucd-suc-entries 856 ucd-suc-entry-856)
-  (vector-set! ucd-suc-entries 857 ucd-suc-entry-857)
-  (vector-set! ucd-suc-entries 858 ucd-suc-entry-858)
-  (vector-set! ucd-suc-entries 859 ucd-suc-entry-859)
-  (vector-set! ucd-suc-entries 860 ucd-suc-entry-860)
-  (vector-set! ucd-suc-entries 861 ucd-suc-entry-861)
-  (vector-set! ucd-suc-entries 862 ucd-suc-entry-862)
-  (vector-set! ucd-suc-entries 863 ucd-suc-entry-863)
-  (vector-set! ucd-suc-entries 864 ucd-suc-entry-864)
-  (vector-set! ucd-suc-entries 865 ucd-suc-entry-865)
-  (vector-set! ucd-suc-entries 866 ucd-suc-entry-866)
-  (vector-set! ucd-suc-entries 867 ucd-suc-entry-867)
-  (vector-set! ucd-suc-entries 868 ucd-suc-entry-868)
-  (vector-set! ucd-suc-entries 869 ucd-suc-entry-869)
-  (vector-set! ucd-suc-entries 870 ucd-suc-entry-870)
-  (vector-set! ucd-suc-entries 871 ucd-suc-entry-871)
-  (vector-set! ucd-suc-entries 872 ucd-suc-entry-872)
-  (vector-set! ucd-suc-entries 873 ucd-suc-entry-873)
-  (vector-set! ucd-suc-entries 874 ucd-suc-entry-874)
-  (vector-set! ucd-suc-entries 875 ucd-suc-entry-875)
-  (vector-set! ucd-suc-entries 876 ucd-suc-entry-876)
-  (vector-set! ucd-suc-entries 877 ucd-suc-entry-877)
-  (vector-set! ucd-suc-entries 878 ucd-suc-entry-878)
-  (vector-set! ucd-suc-entries 879 ucd-suc-entry-879)
-  (vector-set! ucd-suc-entries 880 ucd-suc-entry-880)
-  (vector-set! ucd-suc-entries 881 ucd-suc-entry-881)
-  (vector-set! ucd-suc-entries 882 ucd-suc-entry-882)
-  (vector-set! ucd-suc-entries 883 ucd-suc-entry-883)
-  (vector-set! ucd-suc-entries 884 ucd-suc-entry-884)
-  (vector-set! ucd-suc-entries 885 ucd-suc-entry-885)
-  (vector-set! ucd-suc-entries 886 ucd-suc-entry-886)
-  (vector-set! ucd-suc-entries 887 ucd-suc-entry-887)
-  (vector-set! ucd-suc-entries 888 ucd-suc-entry-888)
-  (vector-set! ucd-suc-entries 889 ucd-suc-entry-889)
-  (vector-set! ucd-suc-entries 890 ucd-suc-entry-890)
-  (vector-set! ucd-suc-entries 891 ucd-suc-entry-891)
-  (vector-set! ucd-suc-entries 892 ucd-suc-entry-892)
-  (vector-set! ucd-suc-entries 893 ucd-suc-entry-893)
-  (vector-set! ucd-suc-entries 894 ucd-suc-entry-894)
-  (vector-set! ucd-suc-entries 895 ucd-suc-entry-895)
-  (vector-set! ucd-suc-entries 896 ucd-suc-entry-896)
-  (vector-set! ucd-suc-entries 897 ucd-suc-entry-897)
-  (vector-set! ucd-suc-entries 898 ucd-suc-entry-898)
-  (vector-set! ucd-suc-entries 899 ucd-suc-entry-899))
-
-(define (initialize-ucd-suc-entries-9)
-  (vector-set! ucd-suc-entries 900 ucd-suc-entry-900)
-  (vector-set! ucd-suc-entries 901 ucd-suc-entry-901)
-  (vector-set! ucd-suc-entries 902 ucd-suc-entry-902)
-  (vector-set! ucd-suc-entries 903 ucd-suc-entry-903)
-  (vector-set! ucd-suc-entries 904 ucd-suc-entry-904)
-  (vector-set! ucd-suc-entries 905 ucd-suc-entry-905)
-  (vector-set! ucd-suc-entries 906 ucd-suc-entry-906)
-  (vector-set! ucd-suc-entries 907 ucd-suc-entry-907)
-  (vector-set! ucd-suc-entries 908 ucd-suc-entry-908)
-  (vector-set! ucd-suc-entries 909 ucd-suc-entry-909)
-  (vector-set! ucd-suc-entries 910 ucd-suc-entry-910)
-  (vector-set! ucd-suc-entries 911 ucd-suc-entry-911)
-  (vector-set! ucd-suc-entries 912 ucd-suc-entry-912)
-  (vector-set! ucd-suc-entries 913 ucd-suc-entry-913)
-  (vector-set! ucd-suc-entries 914 ucd-suc-entry-914)
-  (vector-set! ucd-suc-entries 915 ucd-suc-entry-915)
-  (vector-set! ucd-suc-entries 916 ucd-suc-entry-916)
-  (vector-set! ucd-suc-entries 917 ucd-suc-entry-917)
-  (vector-set! ucd-suc-entries 918 ucd-suc-entry-918)
-  (vector-set! ucd-suc-entries 919 ucd-suc-entry-919)
-  (vector-set! ucd-suc-entries 920 ucd-suc-entry-920)
-  (vector-set! ucd-suc-entries 921 ucd-suc-entry-921)
-  (vector-set! ucd-suc-entries 922 ucd-suc-entry-922)
-  (vector-set! ucd-suc-entries 923 ucd-suc-entry-923)
-  (vector-set! ucd-suc-entries 924 ucd-suc-entry-924)
-  (vector-set! ucd-suc-entries 925 ucd-suc-entry-925)
-  (vector-set! ucd-suc-entries 926 ucd-suc-entry-926)
-  (vector-set! ucd-suc-entries 927 ucd-suc-entry-927)
-  (vector-set! ucd-suc-entries 928 ucd-suc-entry-928)
-  (vector-set! ucd-suc-entries 929 ucd-suc-entry-929)
-  (vector-set! ucd-suc-entries 930 ucd-suc-entry-930)
-  (vector-set! ucd-suc-entries 931 ucd-suc-entry-931)
-  (vector-set! ucd-suc-entries 932 ucd-suc-entry-932)
-  (vector-set! ucd-suc-entries 933 ucd-suc-entry-933)
-  (vector-set! ucd-suc-entries 934 ucd-suc-entry-934)
-  (vector-set! ucd-suc-entries 935 ucd-suc-entry-935)
-  (vector-set! ucd-suc-entries 936 ucd-suc-entry-936)
-  (vector-set! ucd-suc-entries 937 ucd-suc-entry-937)
-  (vector-set! ucd-suc-entries 938 ucd-suc-entry-938)
-  (vector-set! ucd-suc-entries 939 ucd-suc-entry-939)
-  (vector-set! ucd-suc-entries 940 ucd-suc-entry-940)
-  (vector-set! ucd-suc-entries 941 ucd-suc-entry-941)
-  (vector-set! ucd-suc-entries 942 ucd-suc-entry-942)
-  (vector-set! ucd-suc-entries 943 ucd-suc-entry-943)
-  (vector-set! ucd-suc-entries 944 ucd-suc-entry-944)
-  (vector-set! ucd-suc-entries 945 ucd-suc-entry-945)
-  (vector-set! ucd-suc-entries 946 ucd-suc-entry-946)
-  (vector-set! ucd-suc-entries 947 ucd-suc-entry-947)
-  (vector-set! ucd-suc-entries 948 ucd-suc-entry-948)
-  (vector-set! ucd-suc-entries 949 ucd-suc-entry-949)
-  (vector-set! ucd-suc-entries 950 ucd-suc-entry-950)
-  (vector-set! ucd-suc-entries 951 ucd-suc-entry-951)
-  (vector-set! ucd-suc-entries 952 ucd-suc-entry-952)
-  (vector-set! ucd-suc-entries 953 ucd-suc-entry-953)
-  (vector-set! ucd-suc-entries 954 ucd-suc-entry-954)
-  (vector-set! ucd-suc-entries 955 ucd-suc-entry-955)
-  (vector-set! ucd-suc-entries 956 ucd-suc-entry-956)
-  (vector-set! ucd-suc-entries 957 ucd-suc-entry-957)
-  (vector-set! ucd-suc-entries 958 ucd-suc-entry-958)
-  (vector-set! ucd-suc-entries 959 ucd-suc-entry-959)
-  (vector-set! ucd-suc-entries 960 ucd-suc-entry-960)
-  (vector-set! ucd-suc-entries 961 ucd-suc-entry-961)
-  (vector-set! ucd-suc-entries 962 ucd-suc-entry-962)
-  (vector-set! ucd-suc-entries 963 ucd-suc-entry-963)
-  (vector-set! ucd-suc-entries 964 ucd-suc-entry-964)
-  (vector-set! ucd-suc-entries 965 ucd-suc-entry-965)
-  (vector-set! ucd-suc-entries 966 ucd-suc-entry-966)
-  (vector-set! ucd-suc-entries 967 ucd-suc-entry-967)
-  (vector-set! ucd-suc-entries 968 ucd-suc-entry-968)
-  (vector-set! ucd-suc-entries 969 ucd-suc-entry-969)
-  (vector-set! ucd-suc-entries 970 ucd-suc-entry-970)
-  (vector-set! ucd-suc-entries 971 ucd-suc-entry-971)
-  (vector-set! ucd-suc-entries 972 ucd-suc-entry-972)
-  (vector-set! ucd-suc-entries 973 ucd-suc-entry-973)
-  (vector-set! ucd-suc-entries 974 ucd-suc-entry-974)
-  (vector-set! ucd-suc-entries 975 ucd-suc-entry-975)
-  (vector-set! ucd-suc-entries 976 ucd-suc-entry-976)
-  (vector-set! ucd-suc-entries 977 ucd-suc-entry-977)
-  (vector-set! ucd-suc-entries 978 ucd-suc-entry-978)
-  (vector-set! ucd-suc-entries 979 ucd-suc-entry-979)
-  (vector-set! ucd-suc-entries 980 ucd-suc-entry-980)
-  (vector-set! ucd-suc-entries 981 ucd-suc-entry-981)
-  (vector-set! ucd-suc-entries 982 ucd-suc-entry-982)
-  (vector-set! ucd-suc-entries 983 ucd-suc-entry-983)
-  (vector-set! ucd-suc-entries 984 ucd-suc-entry-984)
-  (vector-set! ucd-suc-entries 985 ucd-suc-entry-985)
-  (vector-set! ucd-suc-entries 986 ucd-suc-entry-986)
-  (vector-set! ucd-suc-entries 987 ucd-suc-entry-987)
-  (vector-set! ucd-suc-entries 988 ucd-suc-entry-988)
-  (vector-set! ucd-suc-entries 989 ucd-suc-entry-989)
-  (vector-set! ucd-suc-entries 990 ucd-suc-entry-990)
-  (vector-set! ucd-suc-entries 991 ucd-suc-entry-991)
-  (vector-set! ucd-suc-entries 992 ucd-suc-entry-992)
-  (vector-set! ucd-suc-entries 993 ucd-suc-entry-993)
-  (vector-set! ucd-suc-entries 994 ucd-suc-entry-994)
-  (vector-set! ucd-suc-entries 995 ucd-suc-entry-995)
-  (vector-set! ucd-suc-entries 996 ucd-suc-entry-996)
-  (vector-set! ucd-suc-entries 997 ucd-suc-entry-997)
-  (vector-set! ucd-suc-entries 998 ucd-suc-entry-998)
-  (vector-set! ucd-suc-entries 999 ucd-suc-entry-999))
-
-(define (initialize-ucd-suc-entries-10)
-  (vector-set! ucd-suc-entries 1000 ucd-suc-entry-1000)
-  (vector-set! ucd-suc-entries 1001 ucd-suc-entry-1001)
-  (vector-set! ucd-suc-entries 1002 ucd-suc-entry-1002)
-  (vector-set! ucd-suc-entries 1003 ucd-suc-entry-1003)
-  (vector-set! ucd-suc-entries 1004 ucd-suc-entry-1004)
-  (vector-set! ucd-suc-entries 1005 ucd-suc-entry-1005)
-  (vector-set! ucd-suc-entries 1006 ucd-suc-entry-1006)
-  (vector-set! ucd-suc-entries 1007 ucd-suc-entry-1007)
-  (vector-set! ucd-suc-entries 1008 ucd-suc-entry-1008)
-  (vector-set! ucd-suc-entries 1009 ucd-suc-entry-1009)
-  (vector-set! ucd-suc-entries 1010 ucd-suc-entry-1010)
-  (vector-set! ucd-suc-entries 1011 ucd-suc-entry-1011)
-  (vector-set! ucd-suc-entries 1012 ucd-suc-entry-1012)
-  (vector-set! ucd-suc-entries 1013 ucd-suc-entry-1013)
-  (vector-set! ucd-suc-entries 1014 ucd-suc-entry-1014)
-  (vector-set! ucd-suc-entries 1015 ucd-suc-entry-1015)
-  (vector-set! ucd-suc-entries 1016 ucd-suc-entry-1016)
-  (vector-set! ucd-suc-entries 1017 ucd-suc-entry-1017)
-  (vector-set! ucd-suc-entries 1018 ucd-suc-entry-1018)
-  (vector-set! ucd-suc-entries 1019 ucd-suc-entry-1019)
-  (vector-set! ucd-suc-entries 1020 ucd-suc-entry-1020)
-  (vector-set! ucd-suc-entries 1021 ucd-suc-entry-1021)
-  (vector-set! ucd-suc-entries 1022 ucd-suc-entry-1022)
-  (vector-set! ucd-suc-entries 1023 ucd-suc-entry-1023)
-  (vector-set! ucd-suc-entries 1024 ucd-suc-entry-1024)
-  (vector-set! ucd-suc-entries 1025 ucd-suc-entry-1025)
-  (vector-set! ucd-suc-entries 1026 ucd-suc-entry-1026)
-  (vector-set! ucd-suc-entries 1027 ucd-suc-entry-1027)
-  (vector-set! ucd-suc-entries 1028 ucd-suc-entry-1028)
-  (vector-set! ucd-suc-entries 1029 ucd-suc-entry-1029)
-  (vector-set! ucd-suc-entries 1030 ucd-suc-entry-1030)
-  (vector-set! ucd-suc-entries 1031 ucd-suc-entry-1031)
-  (vector-set! ucd-suc-entries 1032 ucd-suc-entry-1032)
-  (vector-set! ucd-suc-entries 1033 ucd-suc-entry-1033)
-  (vector-set! ucd-suc-entries 1034 ucd-suc-entry-1034)
-  (vector-set! ucd-suc-entries 1035 ucd-suc-entry-1035)
-  (vector-set! ucd-suc-entries 1036 ucd-suc-entry-1036)
-  (vector-set! ucd-suc-entries 1037 ucd-suc-entry-1037)
-  (vector-set! ucd-suc-entries 1038 ucd-suc-entry-1038)
-  (vector-set! ucd-suc-entries 1039 ucd-suc-entry-1039)
-  (vector-set! ucd-suc-entries 1040 ucd-suc-entry-1040)
-  (vector-set! ucd-suc-entries 1041 ucd-suc-entry-1041)
-  (vector-set! ucd-suc-entries 1042 ucd-suc-entry-1042)
-  (vector-set! ucd-suc-entries 1043 ucd-suc-entry-1043)
-  (vector-set! ucd-suc-entries 1044 ucd-suc-entry-1044)
-  (vector-set! ucd-suc-entries 1045 ucd-suc-entry-1045)
-  (vector-set! ucd-suc-entries 1046 ucd-suc-entry-1046)
-  (vector-set! ucd-suc-entries 1047 ucd-suc-entry-1047)
-  (vector-set! ucd-suc-entries 1048 ucd-suc-entry-1048)
-  (vector-set! ucd-suc-entries 1049 ucd-suc-entry-1049)
-  (vector-set! ucd-suc-entries 1050 ucd-suc-entry-1050)
-  (vector-set! ucd-suc-entries 1051 ucd-suc-entry-1051)
-  (vector-set! ucd-suc-entries 1052 ucd-suc-entry-1052)
-  (vector-set! ucd-suc-entries 1053 ucd-suc-entry-1053)
-  (vector-set! ucd-suc-entries 1054 ucd-suc-entry-1054)
-  (vector-set! ucd-suc-entries 1055 ucd-suc-entry-1055)
-  (vector-set! ucd-suc-entries 1056 ucd-suc-entry-1056)
-  (vector-set! ucd-suc-entries 1057 ucd-suc-entry-1057)
-  (vector-set! ucd-suc-entries 1058 ucd-suc-entry-1058)
-  (vector-set! ucd-suc-entries 1059 ucd-suc-entry-1059)
-  (vector-set! ucd-suc-entries 1060 ucd-suc-entry-1060)
-  (vector-set! ucd-suc-entries 1061 ucd-suc-entry-1061)
-  (vector-set! ucd-suc-entries 1062 ucd-suc-entry-1062)
-  (vector-set! ucd-suc-entries 1063 ucd-suc-entry-1063)
-  (vector-set! ucd-suc-entries 1064 ucd-suc-entry-1064)
-  (vector-set! ucd-suc-entries 1065 ucd-suc-entry-1065)
-  (vector-set! ucd-suc-entries 1066 ucd-suc-entry-1066)
-  (vector-set! ucd-suc-entries 1067 ucd-suc-entry-1067)
-  (vector-set! ucd-suc-entries 1068 ucd-suc-entry-1068)
-  (vector-set! ucd-suc-entries 1069 ucd-suc-entry-1069)
-  (vector-set! ucd-suc-entries 1070 ucd-suc-entry-1070)
-  (vector-set! ucd-suc-entries 1071 ucd-suc-entry-1071)
-  (vector-set! ucd-suc-entries 1072 ucd-suc-entry-1072)
-  (vector-set! ucd-suc-entries 1073 ucd-suc-entry-1073)
-  (vector-set! ucd-suc-entries 1074 ucd-suc-entry-1074)
-  (vector-set! ucd-suc-entries 1075 ucd-suc-entry-1075)
-  (vector-set! ucd-suc-entries 1076 ucd-suc-entry-1076)
-  (vector-set! ucd-suc-entries 1077 ucd-suc-entry-1077)
-  (vector-set! ucd-suc-entries 1078 ucd-suc-entry-1078)
-  (vector-set! ucd-suc-entries 1079 ucd-suc-entry-1079)
-  (vector-set! ucd-suc-entries 1080 ucd-suc-entry-1080)
-  (vector-set! ucd-suc-entries 1081 ucd-suc-entry-1081)
-  (vector-set! ucd-suc-entries 1082 ucd-suc-entry-1082)
-  (vector-set! ucd-suc-entries 1083 ucd-suc-entry-1083)
-  (vector-set! ucd-suc-entries 1084 ucd-suc-entry-1084)
-  (vector-set! ucd-suc-entries 1085 ucd-suc-entry-1085)
-  (vector-set! ucd-suc-entries 1086 ucd-suc-entry-1086)
-  (vector-set! ucd-suc-entries 1087 ucd-suc-entry-1087)
-  (vector-set! ucd-suc-entries 1088 ucd-suc-entry-1088)
-  (vector-set! ucd-suc-entries 1089 ucd-suc-entry-1089)
-  (vector-set! ucd-suc-entries 1090 ucd-suc-entry-1090)
-  (vector-set! ucd-suc-entries 1091 ucd-suc-entry-1091)
-  (vector-set! ucd-suc-entries 1092 ucd-suc-entry-1092)
-  (vector-set! ucd-suc-entries 1093 ucd-suc-entry-1093)
-  (vector-set! ucd-suc-entries 1094 ucd-suc-entry-1094)
-  (vector-set! ucd-suc-entries 1095 ucd-suc-entry-1095)
-  (vector-set! ucd-suc-entries 1096 ucd-suc-entry-1096)
-  (vector-set! ucd-suc-entries 1097 ucd-suc-entry-1097)
-  (vector-set! ucd-suc-entries 1098 ucd-suc-entry-1098)
-  (vector-set! ucd-suc-entries 1099 ucd-suc-entry-1099))
-
-(define (initialize-ucd-suc-entries-11)
-  (vector-set! ucd-suc-entries 1100 ucd-suc-entry-1100)
-  (vector-set! ucd-suc-entries 1101 ucd-suc-entry-1101)
-  (vector-set! ucd-suc-entries 1102 ucd-suc-entry-1102)
-  (vector-set! ucd-suc-entries 1103 ucd-suc-entry-1103)
-  (vector-set! ucd-suc-entries 1104 ucd-suc-entry-1104)
-  (vector-set! ucd-suc-entries 1105 ucd-suc-entry-1105)
-  (vector-set! ucd-suc-entries 1106 ucd-suc-entry-1106)
-  (vector-set! ucd-suc-entries 1107 ucd-suc-entry-1107)
-  (vector-set! ucd-suc-entries 1108 ucd-suc-entry-1108)
-  (vector-set! ucd-suc-entries 1109 ucd-suc-entry-1109)
-  (vector-set! ucd-suc-entries 1110 ucd-suc-entry-1110)
-  (vector-set! ucd-suc-entries 1111 ucd-suc-entry-1111)
-  (vector-set! ucd-suc-entries 1112 ucd-suc-entry-1112)
-  (vector-set! ucd-suc-entries 1113 ucd-suc-entry-1113)
-  (vector-set! ucd-suc-entries 1114 ucd-suc-entry-1114)
-  (vector-set! ucd-suc-entries 1115 ucd-suc-entry-1115)
-  (vector-set! ucd-suc-entries 1116 ucd-suc-entry-1116)
-  (vector-set! ucd-suc-entries 1117 ucd-suc-entry-1117)
-  (vector-set! ucd-suc-entries 1118 ucd-suc-entry-1118)
-  (vector-set! ucd-suc-entries 1119 ucd-suc-entry-1119)
-  (vector-set! ucd-suc-entries 1120 ucd-suc-entry-1120)
-  (vector-set! ucd-suc-entries 1121 ucd-suc-entry-1121)
-  (vector-set! ucd-suc-entries 1122 ucd-suc-entry-1122)
-  (vector-set! ucd-suc-entries 1123 ucd-suc-entry-1123)
-  (vector-set! ucd-suc-entries 1124 ucd-suc-entry-1124)
-  (vector-set! ucd-suc-entries 1125 ucd-suc-entry-1125)
-  (vector-set! ucd-suc-entries 1126 ucd-suc-entry-1126)
-  (vector-set! ucd-suc-entries 1127 ucd-suc-entry-1127)
-  (vector-set! ucd-suc-entries 1128 ucd-suc-entry-1128)
-  (vector-set! ucd-suc-entries 1129 ucd-suc-entry-1129)
-  (vector-set! ucd-suc-entries 1130 ucd-suc-entry-1130)
-  (vector-set! ucd-suc-entries 1131 ucd-suc-entry-1131)
-  (vector-set! ucd-suc-entries 1132 ucd-suc-entry-1132)
-  (vector-set! ucd-suc-entries 1133 ucd-suc-entry-1133)
-  (vector-set! ucd-suc-entries 1134 ucd-suc-entry-1134)
-  (vector-set! ucd-suc-entries 1135 ucd-suc-entry-1135)
-  (vector-set! ucd-suc-entries 1136 ucd-suc-entry-1136)
-  (vector-set! ucd-suc-entries 1137 ucd-suc-entry-1137)
-  (vector-set! ucd-suc-entries 1138 ucd-suc-entry-1138)
-  (vector-set! ucd-suc-entries 1139 ucd-suc-entry-1139)
-  (vector-set! ucd-suc-entries 1140 ucd-suc-entry-1140)
-  (vector-set! ucd-suc-entries 1141 ucd-suc-entry-1141)
-  (vector-set! ucd-suc-entries 1142 ucd-suc-entry-1142)
-  (vector-set! ucd-suc-entries 1143 ucd-suc-entry-1143)
-  (vector-set! ucd-suc-entries 1144 ucd-suc-entry-1144)
-  (vector-set! ucd-suc-entries 1145 ucd-suc-entry-1145)
-  (vector-set! ucd-suc-entries 1146 ucd-suc-entry-1146)
-  (vector-set! ucd-suc-entries 1147 ucd-suc-entry-1147)
-  (vector-set! ucd-suc-entries 1148 ucd-suc-entry-1148)
-  (vector-set! ucd-suc-entries 1149 ucd-suc-entry-1149)
-  (vector-set! ucd-suc-entries 1150 ucd-suc-entry-1150)
-  (vector-set! ucd-suc-entries 1151 ucd-suc-entry-1151)
-  (vector-set! ucd-suc-entries 1152 ucd-suc-entry-1152)
-  (vector-set! ucd-suc-entries 1153 ucd-suc-entry-1153)
-  (vector-set! ucd-suc-entries 1154 ucd-suc-entry-1154)
-  (vector-set! ucd-suc-entries 1155 ucd-suc-entry-1155)
-  (vector-set! ucd-suc-entries 1156 ucd-suc-entry-1156)
-  (vector-set! ucd-suc-entries 1157 ucd-suc-entry-1157)
-  (vector-set! ucd-suc-entries 1158 ucd-suc-entry-1158)
-  (vector-set! ucd-suc-entries 1159 ucd-suc-entry-1159)
-  (vector-set! ucd-suc-entries 1160 ucd-suc-entry-1160)
-  (vector-set! ucd-suc-entries 1161 ucd-suc-entry-1161)
-  (vector-set! ucd-suc-entries 1162 ucd-suc-entry-1162)
-  (vector-set! ucd-suc-entries 1163 ucd-suc-entry-1163)
-  (vector-set! ucd-suc-entries 1164 ucd-suc-entry-1164)
-  (vector-set! ucd-suc-entries 1165 ucd-suc-entry-1165)
-  (vector-set! ucd-suc-entries 1166 ucd-suc-entry-1166)
-  (vector-set! ucd-suc-entries 1167 ucd-suc-entry-1167)
-  (vector-set! ucd-suc-entries 1168 ucd-suc-entry-1168)
-  (vector-set! ucd-suc-entries 1169 ucd-suc-entry-1169)
-  (vector-set! ucd-suc-entries 1170 ucd-suc-entry-1170)
-  (vector-set! ucd-suc-entries 1171 ucd-suc-entry-1171)
-  (vector-set! ucd-suc-entries 1172 ucd-suc-entry-1172)
-  (vector-set! ucd-suc-entries 1173 ucd-suc-entry-1173)
-  (vector-set! ucd-suc-entries 1174 ucd-suc-entry-1174)
-  (vector-set! ucd-suc-entries 1175 ucd-suc-entry-1175)
-  (vector-set! ucd-suc-entries 1176 ucd-suc-entry-1176)
-  (vector-set! ucd-suc-entries 1177 ucd-suc-entry-1177)
-  (vector-set! ucd-suc-entries 1178 ucd-suc-entry-1178)
-  (vector-set! ucd-suc-entries 1179 ucd-suc-entry-1179)
-  (vector-set! ucd-suc-entries 1180 ucd-suc-entry-1180)
-  (vector-set! ucd-suc-entries 1181 ucd-suc-entry-1181)
-  (vector-set! ucd-suc-entries 1182 ucd-suc-entry-1182)
-  (vector-set! ucd-suc-entries 1183 ucd-suc-entry-1183)
-  (vector-set! ucd-suc-entries 1184 ucd-suc-entry-1184)
-  (vector-set! ucd-suc-entries 1185 ucd-suc-entry-1185)
-  (vector-set! ucd-suc-entries 1186 ucd-suc-entry-1186)
-  (vector-set! ucd-suc-entries 1187 ucd-suc-entry-1187)
-  (vector-set! ucd-suc-entries 1188 ucd-suc-entry-1188)
-  (vector-set! ucd-suc-entries 1189 ucd-suc-entry-1189)
-  (vector-set! ucd-suc-entries 1190 ucd-suc-entry-1190)
-  (vector-set! ucd-suc-entries 1191 ucd-suc-entry-1191)
-  (vector-set! ucd-suc-entries 1192 ucd-suc-entry-1192)
-  (vector-set! ucd-suc-entries 1193 ucd-suc-entry-1193)
-  (vector-set! ucd-suc-entries 1194 ucd-suc-entry-1194)
-  (vector-set! ucd-suc-entries 1195 ucd-suc-entry-1195)
-  (vector-set! ucd-suc-entries 1196 ucd-suc-entry-1196)
-  (vector-set! ucd-suc-entries 1197 ucd-suc-entry-1197)
-  (vector-set! ucd-suc-entries 1198 ucd-suc-entry-1198)
-  (vector-set! ucd-suc-entries 1199 ucd-suc-entry-1199))
-
-(define (initialize-ucd-suc-entries-12)
-  (vector-set! ucd-suc-entries 1200 ucd-suc-entry-1200)
-  (vector-set! ucd-suc-entries 1201 ucd-suc-entry-1201)
-  (vector-set! ucd-suc-entries 1202 ucd-suc-entry-1202)
-  (vector-set! ucd-suc-entries 1203 ucd-suc-entry-1203)
-  (vector-set! ucd-suc-entries 1204 ucd-suc-entry-1204)
-  (vector-set! ucd-suc-entries 1205 ucd-suc-entry-1205)
-  (vector-set! ucd-suc-entries 1206 ucd-suc-entry-1206)
-  (vector-set! ucd-suc-entries 1207 ucd-suc-entry-1207)
-  (vector-set! ucd-suc-entries 1208 ucd-suc-entry-1208)
-  (vector-set! ucd-suc-entries 1209 ucd-suc-entry-1209)
-  (vector-set! ucd-suc-entries 1210 ucd-suc-entry-1210)
-  (vector-set! ucd-suc-entries 1211 ucd-suc-entry-1211)
-  (vector-set! ucd-suc-entries 1212 ucd-suc-entry-1212)
-  (vector-set! ucd-suc-entries 1213 ucd-suc-entry-1213)
-  (vector-set! ucd-suc-entries 1214 ucd-suc-entry-1214)
-  (vector-set! ucd-suc-entries 1215 ucd-suc-entry-1215)
-  (vector-set! ucd-suc-entries 1216 ucd-suc-entry-1216)
-  (vector-set! ucd-suc-entries 1217 ucd-suc-entry-1217)
-  (vector-set! ucd-suc-entries 1218 ucd-suc-entry-1218)
-  (vector-set! ucd-suc-entries 1219 ucd-suc-entry-1219)
-  (vector-set! ucd-suc-entries 1220 ucd-suc-entry-1220)
-  (vector-set! ucd-suc-entries 1221 ucd-suc-entry-1221)
-  (vector-set! ucd-suc-entries 1222 ucd-suc-entry-1222)
-  (vector-set! ucd-suc-entries 1223 ucd-suc-entry-1223)
-  (vector-set! ucd-suc-entries 1224 ucd-suc-entry-1224)
-  (vector-set! ucd-suc-entries 1225 ucd-suc-entry-1225)
-  (vector-set! ucd-suc-entries 1226 ucd-suc-entry-1226)
-  (vector-set! ucd-suc-entries 1227 ucd-suc-entry-1227)
-  (vector-set! ucd-suc-entries 1228 ucd-suc-entry-1228)
-  (vector-set! ucd-suc-entries 1229 ucd-suc-entry-1229)
-  (vector-set! ucd-suc-entries 1230 ucd-suc-entry-1230)
-  (vector-set! ucd-suc-entries 1231 ucd-suc-entry-1231)
-  (vector-set! ucd-suc-entries 1232 ucd-suc-entry-1232)
-  (vector-set! ucd-suc-entries 1233 ucd-suc-entry-1233)
-  (vector-set! ucd-suc-entries 1234 ucd-suc-entry-1234)
-  (vector-set! ucd-suc-entries 1235 ucd-suc-entry-1235)
-  (vector-set! ucd-suc-entries 1236 ucd-suc-entry-1236)
-  (vector-set! ucd-suc-entries 1237 ucd-suc-entry-1237)
-  (vector-set! ucd-suc-entries 1238 ucd-suc-entry-1238)
-  (vector-set! ucd-suc-entries 1239 ucd-suc-entry-1239)
-  (vector-set! ucd-suc-entries 1240 ucd-suc-entry-1240)
-  (vector-set! ucd-suc-entries 1241 ucd-suc-entry-1241)
-  (vector-set! ucd-suc-entries 1242 ucd-suc-entry-1242)
-  (vector-set! ucd-suc-entries 1243 ucd-suc-entry-1243)
-  (vector-set! ucd-suc-entries 1244 ucd-suc-entry-1244)
-  (vector-set! ucd-suc-entries 1245 ucd-suc-entry-1245)
-  (vector-set! ucd-suc-entries 1246 ucd-suc-entry-1246)
-  (vector-set! ucd-suc-entries 1247 ucd-suc-entry-1247)
-  (vector-set! ucd-suc-entries 1248 ucd-suc-entry-1248)
-  (vector-set! ucd-suc-entries 1249 ucd-suc-entry-1249)
-  (vector-set! ucd-suc-entries 1250 ucd-suc-entry-1250)
-  (vector-set! ucd-suc-entries 1251 ucd-suc-entry-1251)
-  (vector-set! ucd-suc-entries 1252 ucd-suc-entry-1252)
-  (vector-set! ucd-suc-entries 1253 ucd-suc-entry-1253)
-  (vector-set! ucd-suc-entries 1254 ucd-suc-entry-1254)
-  (vector-set! ucd-suc-entries 1255 ucd-suc-entry-1255)
-  (vector-set! ucd-suc-entries 1256 ucd-suc-entry-1256)
-  (vector-set! ucd-suc-entries 1257 ucd-suc-entry-1257)
-  (vector-set! ucd-suc-entries 1258 ucd-suc-entry-1258)
-  (vector-set! ucd-suc-entries 1259 ucd-suc-entry-1259)
-  (vector-set! ucd-suc-entries 1260 ucd-suc-entry-1260)
-  (vector-set! ucd-suc-entries 1261 ucd-suc-entry-1261)
-  (vector-set! ucd-suc-entries 1262 ucd-suc-entry-1262)
-  (vector-set! ucd-suc-entries 1263 ucd-suc-entry-1263)
-  (vector-set! ucd-suc-entries 1264 ucd-suc-entry-1264)
-  (vector-set! ucd-suc-entries 1265 ucd-suc-entry-1265)
-  (vector-set! ucd-suc-entries 1266 ucd-suc-entry-1266)
-  (vector-set! ucd-suc-entries 1267 ucd-suc-entry-1267)
-  (vector-set! ucd-suc-entries 1268 ucd-suc-entry-1268)
-  (vector-set! ucd-suc-entries 1269 ucd-suc-entry-1269)
-  (vector-set! ucd-suc-entries 1270 ucd-suc-entry-1270)
-  (vector-set! ucd-suc-entries 1271 ucd-suc-entry-1271)
-  (vector-set! ucd-suc-entries 1272 ucd-suc-entry-1272)
-  (vector-set! ucd-suc-entries 1273 ucd-suc-entry-1273)
-  (vector-set! ucd-suc-entries 1274 ucd-suc-entry-1274)
-  (vector-set! ucd-suc-entries 1275 ucd-suc-entry-1275)
-  (vector-set! ucd-suc-entries 1276 ucd-suc-entry-1276)
-  (vector-set! ucd-suc-entries 1277 ucd-suc-entry-1277)
-  (vector-set! ucd-suc-entries 1278 ucd-suc-entry-1278)
-  (vector-set! ucd-suc-entries 1279 ucd-suc-entry-1279)
-  (vector-set! ucd-suc-entries 1280 ucd-suc-entry-1280)
-  (vector-set! ucd-suc-entries 1281 ucd-suc-entry-1281)
-  (vector-set! ucd-suc-entries 1282 ucd-suc-entry-1282)
-  (vector-set! ucd-suc-entries 1283 ucd-suc-entry-1283)
-  (vector-set! ucd-suc-entries 1284 ucd-suc-entry-1284)
-  (vector-set! ucd-suc-entries 1285 ucd-suc-entry-1285)
-  (vector-set! ucd-suc-entries 1286 ucd-suc-entry-1286)
-  (vector-set! ucd-suc-entries 1287 ucd-suc-entry-1287)
-  (vector-set! ucd-suc-entries 1288 ucd-suc-entry-1288)
-  (vector-set! ucd-suc-entries 1289 ucd-suc-entry-1289)
-  (vector-set! ucd-suc-entries 1290 ucd-suc-entry-1290)
-  (vector-set! ucd-suc-entries 1291 ucd-suc-entry-1291)
-  (vector-set! ucd-suc-entries 1292 ucd-suc-entry-1292)
-  (vector-set! ucd-suc-entries 1293 ucd-suc-entry-1293)
-  (vector-set! ucd-suc-entries 1294 ucd-suc-entry-1294)
-  (vector-set! ucd-suc-entries 1295 ucd-suc-entry-1295)
-  (vector-set! ucd-suc-entries 1296 ucd-suc-entry-1296)
-  (vector-set! ucd-suc-entries 1297 ucd-suc-entry-1297)
-  (vector-set! ucd-suc-entries 1298 ucd-suc-entry-1298)
-  (vector-set! ucd-suc-entries 1299 ucd-suc-entry-1299))
-
-(define (initialize-ucd-suc-entries-13)
-  (vector-set! ucd-suc-entries 1300 ucd-suc-entry-1300)
-  (vector-set! ucd-suc-entries 1301 ucd-suc-entry-1301)
-  (vector-set! ucd-suc-entries 1302 ucd-suc-entry-1302)
-  (vector-set! ucd-suc-entries 1303 ucd-suc-entry-1303)
-  (vector-set! ucd-suc-entries 1304 ucd-suc-entry-1304)
-  (vector-set! ucd-suc-entries 1305 ucd-suc-entry-1305)
-  (vector-set! ucd-suc-entries 1306 ucd-suc-entry-1306)
-  (vector-set! ucd-suc-entries 1307 ucd-suc-entry-1307)
-  (vector-set! ucd-suc-entries 1308 ucd-suc-entry-1308)
-  (vector-set! ucd-suc-entries 1309 ucd-suc-entry-1309)
-  (vector-set! ucd-suc-entries 1310 ucd-suc-entry-1310)
-  (vector-set! ucd-suc-entries 1311 ucd-suc-entry-1311)
-  (vector-set! ucd-suc-entries 1312 ucd-suc-entry-1312)
-  (vector-set! ucd-suc-entries 1313 ucd-suc-entry-1313)
-  (vector-set! ucd-suc-entries 1314 ucd-suc-entry-1314)
-  (vector-set! ucd-suc-entries 1315 ucd-suc-entry-1315)
-  (vector-set! ucd-suc-entries 1316 ucd-suc-entry-1316)
-  (vector-set! ucd-suc-entries 1317 ucd-suc-entry-1317)
-  (vector-set! ucd-suc-entries 1318 ucd-suc-entry-1318)
-  (vector-set! ucd-suc-entries 1319 ucd-suc-entry-1319)
-  (vector-set! ucd-suc-entries 1320 ucd-suc-entry-1320)
-  (vector-set! ucd-suc-entries 1321 ucd-suc-entry-1321)
-  (vector-set! ucd-suc-entries 1322 ucd-suc-entry-1322)
-  (vector-set! ucd-suc-entries 1323 ucd-suc-entry-1323)
-  (vector-set! ucd-suc-entries 1324 ucd-suc-entry-1324)
-  (vector-set! ucd-suc-entries 1325 ucd-suc-entry-1325)
-  (vector-set! ucd-suc-entries 1326 ucd-suc-entry-1326)
-  (vector-set! ucd-suc-entries 1327 ucd-suc-entry-1327)
-  (vector-set! ucd-suc-entries 1328 ucd-suc-entry-1328)
-  (vector-set! ucd-suc-entries 1329 ucd-suc-entry-1329)
-  (vector-set! ucd-suc-entries 1330 ucd-suc-entry-1330)
-  (vector-set! ucd-suc-entries 1331 ucd-suc-entry-1331)
-  (vector-set! ucd-suc-entries 1332 ucd-suc-entry-1332)
-  (vector-set! ucd-suc-entries 1333 ucd-suc-entry-1333)
-  (vector-set! ucd-suc-entries 1334 ucd-suc-entry-1334)
-  (vector-set! ucd-suc-entries 1335 ucd-suc-entry-1335)
-  (vector-set! ucd-suc-entries 1336 ucd-suc-entry-1336)
-  (vector-set! ucd-suc-entries 1337 ucd-suc-entry-1337)
-  (vector-set! ucd-suc-entries 1338 ucd-suc-entry-1338)
-  (vector-set! ucd-suc-entries 1339 ucd-suc-entry-1339)
-  (vector-set! ucd-suc-entries 1340 ucd-suc-entry-1340)
-  (vector-set! ucd-suc-entries 1341 ucd-suc-entry-1341)
-  (vector-set! ucd-suc-entries 1342 ucd-suc-entry-1342)
-  (vector-set! ucd-suc-entries 1343 ucd-suc-entry-1343)
-  (vector-set! ucd-suc-entries 1344 ucd-suc-entry-1344)
-  (vector-set! ucd-suc-entries 1345 ucd-suc-entry-1345)
-  (vector-set! ucd-suc-entries 1346 ucd-suc-entry-1346)
-  (vector-set! ucd-suc-entries 1347 ucd-suc-entry-1347)
-  (vector-set! ucd-suc-entries 1348 ucd-suc-entry-1348)
-  (vector-set! ucd-suc-entries 1349 ucd-suc-entry-1349)
-  (vector-set! ucd-suc-entries 1350 ucd-suc-entry-1350)
-  (vector-set! ucd-suc-entries 1351 ucd-suc-entry-1351)
-  (vector-set! ucd-suc-entries 1352 ucd-suc-entry-1352)
-  (vector-set! ucd-suc-entries 1353 ucd-suc-entry-1353)
-  (vector-set! ucd-suc-entries 1354 ucd-suc-entry-1354)
-  (vector-set! ucd-suc-entries 1355 ucd-suc-entry-1355)
-  (vector-set! ucd-suc-entries 1356 ucd-suc-entry-1356)
-  (vector-set! ucd-suc-entries 1357 ucd-suc-entry-1357)
-  (vector-set! ucd-suc-entries 1358 ucd-suc-entry-1358)
-  (vector-set! ucd-suc-entries 1359 ucd-suc-entry-1359)
-  (vector-set! ucd-suc-entries 1360 ucd-suc-entry-1360)
-  (vector-set! ucd-suc-entries 1361 ucd-suc-entry-1361)
-  (vector-set! ucd-suc-entries 1362 ucd-suc-entry-1362)
-  (vector-set! ucd-suc-entries 1363 ucd-suc-entry-1363)
-  (vector-set! ucd-suc-entries 1364 ucd-suc-entry-1364)
-  (vector-set! ucd-suc-entries 1365 ucd-suc-entry-1365)
-  (vector-set! ucd-suc-entries 1366 ucd-suc-entry-1366)
-  (vector-set! ucd-suc-entries 1367 ucd-suc-entry-1367)
-  (vector-set! ucd-suc-entries 1368 ucd-suc-entry-1368)
-  (vector-set! ucd-suc-entries 1369 ucd-suc-entry-1369)
-  (vector-set! ucd-suc-entries 1370 ucd-suc-entry-1370)
-  (vector-set! ucd-suc-entries 1371 ucd-suc-entry-1371)
-  (vector-set! ucd-suc-entries 1372 ucd-suc-entry-1372)
-  (vector-set! ucd-suc-entries 1373 ucd-suc-entry-1373)
-  (vector-set! ucd-suc-entries 1374 ucd-suc-entry-1374)
-  (vector-set! ucd-suc-entries 1375 ucd-suc-entry-1375)
-  (vector-set! ucd-suc-entries 1376 ucd-suc-entry-1376)
-  (vector-set! ucd-suc-entries 1377 ucd-suc-entry-1377)
-  (vector-set! ucd-suc-entries 1378 ucd-suc-entry-1378)
-  (vector-set! ucd-suc-entries 1379 ucd-suc-entry-1379)
-  (vector-set! ucd-suc-entries 1380 ucd-suc-entry-1380)
-  (vector-set! ucd-suc-entries 1381 ucd-suc-entry-1381)
-  (vector-set! ucd-suc-entries 1382 ucd-suc-entry-1382)
-  (vector-set! ucd-suc-entries 1383 ucd-suc-entry-1383)
-  (vector-set! ucd-suc-entries 1384 ucd-suc-entry-1384)
-  (vector-set! ucd-suc-entries 1385 ucd-suc-entry-1385)
-  (vector-set! ucd-suc-entries 1386 ucd-suc-entry-1386)
-  (vector-set! ucd-suc-entries 1387 ucd-suc-entry-1387)
-  (vector-set! ucd-suc-entries 1388 ucd-suc-entry-1388)
-  (vector-set! ucd-suc-entries 1389 ucd-suc-entry-1389)
-  (vector-set! ucd-suc-entries 1390 ucd-suc-entry-1390)
-  (vector-set! ucd-suc-entries 1391 ucd-suc-entry-1391)
-  (vector-set! ucd-suc-entries 1392 ucd-suc-entry-1392)
-  (vector-set! ucd-suc-entries 1393 ucd-suc-entry-1393)
-  (vector-set! ucd-suc-entries 1394 ucd-suc-entry-1394)
-  (vector-set! ucd-suc-entries 1395 ucd-suc-entry-1395)
-  (vector-set! ucd-suc-entries 1396 ucd-suc-entry-1396)
-  (vector-set! ucd-suc-entries 1397 ucd-suc-entry-1397)
-  (vector-set! ucd-suc-entries 1398 ucd-suc-entry-1398)
-  (vector-set! ucd-suc-entries 1399 ucd-suc-entry-1399))
-
-(define (initialize-ucd-suc-entries-14)
-  (vector-set! ucd-suc-entries 1400 ucd-suc-entry-1400)
-  (vector-set! ucd-suc-entries 1401 ucd-suc-entry-1401)
-  (vector-set! ucd-suc-entries 1402 ucd-suc-entry-1402)
-  (vector-set! ucd-suc-entries 1403 ucd-suc-entry-1403)
-  (vector-set! ucd-suc-entries 1404 ucd-suc-entry-1404)
-  (vector-set! ucd-suc-entries 1405 ucd-suc-entry-1405)
-  (vector-set! ucd-suc-entries 1406 ucd-suc-entry-1406)
-  (vector-set! ucd-suc-entries 1407 ucd-suc-entry-1407)
-  (vector-set! ucd-suc-entries 1408 ucd-suc-entry-1408)
-  (vector-set! ucd-suc-entries 1409 ucd-suc-entry-1409)
-  (vector-set! ucd-suc-entries 1410 ucd-suc-entry-1410)
-  (vector-set! ucd-suc-entries 1411 ucd-suc-entry-1411)
-  (vector-set! ucd-suc-entries 1412 ucd-suc-entry-1412)
-  (vector-set! ucd-suc-entries 1413 ucd-suc-entry-1413)
-  (vector-set! ucd-suc-entries 1414 ucd-suc-entry-1414)
-  (vector-set! ucd-suc-entries 1415 ucd-suc-entry-1415)
-  (vector-set! ucd-suc-entries 1416 ucd-suc-entry-1416)
-  (vector-set! ucd-suc-entries 1417 ucd-suc-entry-1417)
-  (vector-set! ucd-suc-entries 1418 ucd-suc-entry-1418)
-  (vector-set! ucd-suc-entries 1419 ucd-suc-entry-1419)
-  (vector-set! ucd-suc-entries 1420 ucd-suc-entry-1420))
+(define (ucd-suc-value sv)
+  (hash-table-ref/default char-map:simple-upper-case sv sv))
+
+(define-deferred char-map:simple-upper-case
+  (let ((table (make-strong-eq-hash-table)))
+    (for-each
+     (lambda (p)
+       (hash-table-set! table (car p) (cdr p)))
+     '((97 . 65)         (98 . 66)         (99 . 67)         (100 . 68)        (101 . 69)        (102 . 70)        (103 . 71)        (104 . 72)        (105 . 73)        (106 . 74)        (107 . 75)        (108 . 76)        (109 . 77)        (110 . 78)        (111 . 79)        (112 . 80)        (113 . 81)        (114 . 82)        (115 . 83)        (116 . 84)        (117 . 85)        (118 . 86)        (119 . 87)        (120 . 88)        (121 . 89)        (122 . 90)        (181 . 924)       (224 . 192)       (225 . 193)       (226 . 194)       (227 . 195)       (228 . 196)       (229 . 197)       (230 . 198)     (231 . 199)     (232 . 200)     (233 . 201)     (234 . 202)     (235 . 203)     (236 . 204)     (237 . 205)     (238 . 206)     (239 . 207)     (240 . 208)     (241 . 209)     (242 . 210)     (243 . 211)     (244 . 212)     (245 . 213)     (246 . 214)     (248 . 216)     (249 . 217)     (250 . 218)     (251 . 219)     (252 . 220)     (253 . 221)
+       (254 . 222)       (255 . 376)       (257 . 256)       (259 . 258)       (261 . 260)       (263 . 262)       (265 . 264)       (267 . 266)       (269 . 268)       (271 . 270)       (273 . 272)       (275 . 274)       (277 . 276)       (279 . 278)       (281 . 280)       (283 . 282)       (285 . 284)       (287 . 286)       (289 . 288)       (291 . 290)       (293 . 292)       (295 . 294)       (297 . 296)       (299 . 298)       (301 . 300)       (303 . 302)       (305 . 73)        (307 . 306)       (309 . 308)       (311 . 310)       (314 . 313)       (316 . 315)       (318 . 317)       (320 . 319)     (322 . 321)     (324 . 323)     (326 . 325)     (328 . 327)     (331 . 330)     (333 . 332)     (335 . 334)     (337 . 336)     (339 . 338)     (341 . 340)     (343 . 342)     (345 . 344)     (347 . 346)     (349 . 348)     (351 . 350)     (353 . 352)     (355 . 354)     (357 . 356)     (359 . 358)     (361 . 360)     (363 . 362)     (365 . 364)
+       (367 . 366)       (369 . 368)       (371 . 370)       (373 . 372)       (375 . 374)       (378 . 377)       (380 . 379)       (382 . 381)       (383 . 83)        (384 . 579)       (387 . 386)       (389 . 388)       (392 . 391)       (396 . 395)       (402 . 401)       (405 . 502)       (409 . 408)       (410 . 573)       (414 . 544)       (417 . 416)       (419 . 418)       (421 . 420)       (424 . 423)       (429 . 428)       (432 . 431)       (436 . 435)       (438 . 437)       (441 . 440)       (445 . 444)       (447 . 503)       (453 . 452)       (454 . 452)       (456 . 455)       (457 . 455)     (459 . 458)     (460 . 458)     (462 . 461)     (464 . 463)     (466 . 465)     (468 . 467)     (470 . 469)     (472 . 471)     (474 . 473)     (476 . 475)     (477 . 398)     (479 . 478)     (481 . 480)     (483 . 482)     (485 . 484)     (487 . 486)     (489 . 488)     (491 . 490)     (493 . 492)     (495 . 494)     (498 . 497)     (499 . 497)
+       (501 . 500)       (505 . 504)       (507 . 506)       (509 . 508)       (511 . 510)       (513 . 512)       (515 . 514)       (517 . 516)       (519 . 518)       (521 . 520)       (523 . 522)       (525 . 524)       (527 . 526)       (529 . 528)       (531 . 530)       (533 . 532)       (535 . 534)       (537 . 536)       (539 . 538)       (541 . 540)       (543 . 542)       (547 . 546)       (549 . 548)       (551 . 550)       (553 . 552)       (555 . 554)       (557 . 556)       (559 . 558)       (561 . 560)       (563 . 562)       (572 . 571)       (575 . 11390)     (576 . 11391)     (578 . 577)     (583 . 582)     (585 . 584)     (587 . 586)     (589 . 588)     (591 . 590)     (592 . 11375)   (593 . 11373)   (594 . 11376)   (595 . 385)     (596 . 390)     (598 . 393)     (599 . 394)     (601 . 399)     (603 . 400)     (604 . 42923)   (608 . 403)     (609 . 42924)   (611 . 404)     (613 . 42893)   (614 . 42922)   (616 . 407)     (617 . 406)
+       (618 . 42926)     (619 . 11362)     (620 . 42925)     (623 . 412)       (625 . 11374)     (626 . 413)       (629 . 415)       (637 . 11364)     (640 . 422)       (643 . 425)       (647 . 42929)     (648 . 430)       (649 . 580)       (650 . 433)       (651 . 434)       (652 . 581)       (658 . 439)       (669 . 42930)     (670 . 42928)     (837 . 921)       (881 . 880)       (883 . 882)       (887 . 886)       (891 . 1021)      (892 . 1022)      (893 . 1023)      (940 . 902)       (941 . 904)       (942 . 905)       (943 . 906)       (945 . 913)       (946 . 914)       (947 . 915)       (948 . 916)     (949 . 917)     (950 . 918)     (951 . 919)     (952 . 920)     (953 . 921)     (954 . 922)     (955 . 923)     (956 . 924)     (957 . 925)     (958 . 926)     (959 . 927)     (960 . 928)     (961 . 929)     (962 . 931)     (963 . 931)     (964 . 932)     (965 . 933)     (966 . 934)     (967 . 935)     (968 . 936)     (969 . 937)     (970 . 938)
+       (971 . 939)       (972 . 908)       (973 . 910)       (974 . 911)       (976 . 914)       (977 . 920)       (981 . 934)       (982 . 928)       (983 . 975)       (985 . 984)       (987 . 986)       (989 . 988)       (991 . 990)       (993 . 992)       (995 . 994)       (997 . 996)       (999 . 998)       (1001 . 1000)     (1003 . 1002)     (1005 . 1004)     (1007 . 1006)     (1008 . 922)      (1009 . 929)      (1010 . 1017)     (1011 . 895)      (1013 . 917)      (1016 . 1015)     (1019 . 1018)     (1072 . 1040)     (1073 . 1041)     (1074 . 1042)     (1075 . 1043)     (1076 . 1044)     (1077 . 1045)   (1078 . 1046)   (1079 . 1047)   (1080 . 1048)   (1081 . 1049)   (1082 . 1050)   (1083 . 1051)   (1084 . 1052)   (1085 . 1053)   (1086 . 1054)   (1087 . 1055)   (1088 . 1056)   (1089 . 1057)   (1090 . 1058)   (1091 . 1059)   (1092 . 1060)   (1093 . 1061)   (1094 . 1062)   (1095 . 1063)   (1096 . 1064)   (1097 . 1065)   (1098 . 1066)   (1099 . 1067)
+       (1100 . 1068)     (1101 . 1069)     (1102 . 1070)     (1103 . 1071)     (1104 . 1024)     (1105 . 1025)     (1106 . 1026)     (1107 . 1027)     (1108 . 1028)     (1109 . 1029)     (1110 . 1030)     (1111 . 1031)     (1112 . 1032)     (1113 . 1033)     (1114 . 1034)     (1115 . 1035)     (1116 . 1036)     (1117 . 1037)     (1118 . 1038)     (1119 . 1039)     (1121 . 1120)     (1123 . 1122)     (1125 . 1124)     (1127 . 1126)     (1129 . 1128)     (1131 . 1130)     (1133 . 1132)     (1135 . 1134)     (1137 . 1136)     (1139 . 1138)     (1141 . 1140)     (1143 . 1142)     (1145 . 1144)     (1147 . 1146)   (1149 . 1148)   (1151 . 1150)   (1153 . 1152)   (1163 . 1162)   (1165 . 1164)   (1167 . 1166)   (1169 . 1168)   (1171 . 1170)   (1173 . 1172)   (1175 . 1174)   (1177 . 1176)   (1179 . 1178)   (1181 . 1180)   (1183 . 1182)   (1185 . 1184)   (1187 . 1186)   (1189 . 1188)   (1191 . 1190)   (1193 . 1192)   (1195 . 1194)   (1197 . 1196)   (1199 . 1198)
+       (1201 . 1200)     (1203 . 1202)     (1205 . 1204)     (1207 . 1206)     (1209 . 1208)     (1211 . 1210)     (1213 . 1212)     (1215 . 1214)     (1218 . 1217)     (1220 . 1219)     (1222 . 1221)     (1224 . 1223)     (1226 . 1225)     (1228 . 1227)     (1230 . 1229)     (1231 . 1216)     (1233 . 1232)     (1235 . 1234)     (1237 . 1236)     (1239 . 1238)     (1241 . 1240)     (1243 . 1242)     (1245 . 1244)     (1247 . 1246)     (1249 . 1248)     (1251 . 1250)     (1253 . 1252)     (1255 . 1254)     (1257 . 1256)     (1259 . 1258)     (1261 . 1260)     (1263 . 1262)     (1265 . 1264)     (1267 . 1266)   (1269 . 1268)   (1271 . 1270)   (1273 . 1272)   (1275 . 1274)   (1277 . 1276)   (1279 . 1278)   (1281 . 1280)   (1283 . 1282)   (1285 . 1284)   (1287 . 1286)   (1289 . 1288)   (1291 . 1290)   (1293 . 1292)   (1295 . 1294)   (1297 . 1296)   (1299 . 1298)   (1301 . 1300)   (1303 . 1302)   (1305 . 1304)   (1307 . 1306)   (1309 . 1308)   (1311 . 1310)
+       (1313 . 1312)     (1315 . 1314)     (1317 . 1316)     (1319 . 1318)     (1321 . 1320)     (1323 . 1322)     (1325 . 1324)     (1327 . 1326)     (1377 . 1329)     (1378 . 1330)     (1379 . 1331)     (1380 . 1332)     (1381 . 1333)     (1382 . 1334)     (1383 . 1335)     (1384 . 1336)     (1385 . 1337)     (1386 . 1338)     (1387 . 1339)     (1388 . 1340)     (1389 . 1341)     (1390 . 1342)     (1391 . 1343)     (1392 . 1344)     (1393 . 1345)     (1394 . 1346)     (1395 . 1347)     (1396 . 1348)     (1397 . 1349)     (1398 . 1350)     (1399 . 1351)     (1400 . 1352)     (1401 . 1353)     (1402 . 1354)   (1403 . 1355)   (1404 . 1356)   (1405 . 1357)   (1406 . 1358)   (1407 . 1359)   (1408 . 1360)   (1409 . 1361)   (1410 . 1362)   (1411 . 1363)   (1412 . 1364)   (1413 . 1365)   (1414 . 1366)   (5112 . 5104)   (5113 . 5105)   (5114 . 5106)   (5115 . 5107)   (5116 . 5108)   (5117 . 5109)   (7296 . 1042)   (7297 . 1044)   (7298 . 1054)   (7299 . 1057)
+       (7300 . 1058)     (7301 . 1058)     (7302 . 1066)     (7303 . 1122)     (7304 . 42570)    (7545 . 42877)    (7549 . 11363)    (7681 . 7680)     (7683 . 7682)     (7685 . 7684)     (7687 . 7686)     (7689 . 7688)     (7691 . 7690)     (7693 . 7692)     (7695 . 7694)     (7697 . 7696)     (7699 . 7698)     (7701 . 7700)     (7703 . 7702)     (7705 . 7704)     (7707 . 7706)     (7709 . 7708)     (7711 . 7710)     (7713 . 7712)     (7715 . 7714)     (7717 . 7716)     (7719 . 7718)     (7721 . 7720)     (7723 . 7722)     (7725 . 7724)     (7727 . 7726)     (7729 . 7728)     (7731 . 7730)     (7733 . 7732)   (7735 . 7734)   (7737 . 7736)   (7739 . 7738)   (7741 . 7740)   (7743 . 7742)   (7745 . 7744)   (7747 . 7746)   (7749 . 7748)   (7751 . 7750)   (7753 . 7752)   (7755 . 7754)   (7757 . 7756)   (7759 . 7758)   (7761 . 7760)   (7763 . 7762)   (7765 . 7764)   (7767 . 7766)   (7769 . 7768)   (7771 . 7770)   (7773 . 7772)   (7775 . 7774)   (7777 . 7776)
+       (7779 . 7778)     (7781 . 7780)     (7783 . 7782)     (7785 . 7784)     (7787 . 7786)     (7789 . 7788)     (7791 . 7790)     (7793 . 7792)     (7795 . 7794)     (7797 . 7796)     (7799 . 7798)     (7801 . 7800)     (7803 . 7802)     (7805 . 7804)     (7807 . 7806)     (7809 . 7808)     (7811 . 7810)     (7813 . 7812)     (7815 . 7814)     (7817 . 7816)     (7819 . 7818)     (7821 . 7820)     (7823 . 7822)     (7825 . 7824)     (7827 . 7826)     (7829 . 7828)     (7835 . 7776)     (7841 . 7840)     (7843 . 7842)     (7845 . 7844)     (7847 . 7846)     (7849 . 7848)     (7851 . 7850)     (7853 . 7852)   (7855 . 7854)   (7857 . 7856)   (7859 . 7858)   (7861 . 7860)   (7863 . 7862)   (7865 . 7864)   (7867 . 7866)   (7869 . 7868)   (7871 . 7870)   (7873 . 7872)   (7875 . 7874)   (7877 . 7876)   (7879 . 7878)   (7881 . 7880)   (7883 . 7882)   (7885 . 7884)   (7887 . 7886)   (7889 . 7888)   (7891 . 7890)   (7893 . 7892)   (7895 . 7894)   (7897 . 7896)
+       (7899 . 7898)     (7901 . 7900)     (7903 . 7902)     (7905 . 7904)     (7907 . 7906)     (7909 . 7908)     (7911 . 7910)     (7913 . 7912)     (7915 . 7914)     (7917 . 7916)     (7919 . 7918)     (7921 . 7920)     (7923 . 7922)     (7925 . 7924)     (7927 . 7926)     (7929 . 7928)     (7931 . 7930)     (7933 . 7932)     (7935 . 7934)     (7936 . 7944)     (7937 . 7945)     (7938 . 7946)     (7939 . 7947)     (7940 . 7948)     (7941 . 7949)     (7942 . 7950)     (7943 . 7951)     (7952 . 7960)     (7953 . 7961)     (7954 . 7962)     (7955 . 7963)     (7956 . 7964)     (7957 . 7965)     (7968 . 7976)   (7969 . 7977)   (7970 . 7978)   (7971 . 7979)   (7972 . 7980)   (7973 . 7981)   (7974 . 7982)   (7975 . 7983)   (7984 . 7992)   (7985 . 7993)   (7986 . 7994)   (7987 . 7995)   (7988 . 7996)   (7989 . 7997)   (7990 . 7998)   (7991 . 7999)   (8000 . 8008)   (8001 . 8009)   (8002 . 8010)   (8003 . 8011)   (8004 . 8012)   (8005 . 8013)   (8017 . 8025)
+       (8019 . 8027)     (8021 . 8029)     (8023 . 8031)     (8032 . 8040)     (8033 . 8041)     (8034 . 8042)     (8035 . 8043)     (8036 . 8044)     (8037 . 8045)     (8038 . 8046)     (8039 . 8047)     (8048 . 8122)     (8049 . 8123)     (8050 . 8136)     (8051 . 8137)     (8052 . 8138)     (8053 . 8139)     (8054 . 8154)     (8055 . 8155)     (8056 . 8184)     (8057 . 8185)     (8058 . 8170)     (8059 . 8171)     (8060 . 8186)     (8061 . 8187)     (8064 . 8072)     (8065 . 8073)     (8066 . 8074)     (8067 . 8075)     (8068 . 8076)     (8069 . 8077)     (8070 . 8078)     (8071 . 8079)     (8080 . 8088)   (8081 . 8089)   (8082 . 8090)   (8083 . 8091)   (8084 . 8092)   (8085 . 8093)   (8086 . 8094)   (8087 . 8095)   (8096 . 8104)   (8097 . 8105)   (8098 . 8106)   (8099 . 8107)   (8100 . 8108)   (8101 . 8109)   (8102 . 8110)   (8103 . 8111)   (8112 . 8120)   (8113 . 8121)   (8115 . 8124)   (8126 . 921)    (8131 . 8140)   (8144 . 8152)   (8145 . 8153)
+       (8160 . 8168)     (8161 . 8169)     (8165 . 8172)     (8179 . 8188)     (8526 . 8498)     (8560 . 8544)     (8561 . 8545)     (8562 . 8546)     (8563 . 8547)     (8564 . 8548)     (8565 . 8549)     (8566 . 8550)     (8567 . 8551)     (8568 . 8552)     (8569 . 8553)     (8570 . 8554)     (8571 . 8555)     (8572 . 8556)     (8573 . 8557)     (8574 . 8558)     (8575 . 8559)     (8580 . 8579)     (9424 . 9398)     (9425 . 9399)     (9426 . 9400)     (9427 . 9401)     (9428 . 9402)     (9429 . 9403)     (9430 . 9404)     (9431 . 9405)     (9432 . 9406)     (9433 . 9407)     (9434 . 9408)     (9435 . 9409)   (9436 . 9410)   (9437 . 9411)   (9438 . 9412)   (9439 . 9413)   (9440 . 9414)   (9441 . 9415)   (9442 . 9416)   (9443 . 9417)   (9444 . 9418)   (9445 . 9419)   (9446 . 9420)   (9447 . 9421)   (9448 . 9422)   (9449 . 9423)   (11312 . 11264) (11313 . 11265) (11314 . 11266) (11315 . 11267) (11316 . 11268) (11317 . 11269) (11318 . 11270) (11319 . 11271)
+       (11320 . 11272)   (11321 . 11273)   (11322 . 11274)   (11323 . 11275)   (11324 . 11276)   (11325 . 11277)   (11326 . 11278)   (11327 . 11279)   (11328 . 11280)   (11329 . 11281)   (11330 . 11282)   (11331 . 11283)   (11332 . 11284)   (11333 . 11285)   (11334 . 11286)   (11335 . 11287)   (11336 . 11288)   (11337 . 11289)   (11338 . 11290)   (11339 . 11291)   (11340 . 11292)   (11341 . 11293)   (11342 . 11294)   (11343 . 11295)   (11344 . 11296)   (11345 . 11297)   (11346 . 11298)   (11347 . 11299)   (11348 . 11300)   (11349 . 11301)   (11350 . 11302)   (11351 . 11303)   (11352 . 11304)   (11353 . 11305) (11354 . 11306) (11355 . 11307) (11356 . 11308) (11357 . 11309) (11358 . 11310) (11361 . 11360) (11365 . 570)   (11366 . 574)   (11368 . 11367) (11370 . 11369) (11372 . 11371) (11379 . 11378) (11382 . 11381) (11393 . 11392) (11395 . 11394) (11397 . 11396) (11399 . 11398) (11401 . 11400) (11403 . 11402) (11405 . 11404) (11407 . 11406) (11409 . 11408)
+       (11411 . 11410)   (11413 . 11412)   (11415 . 11414)   (11417 . 11416)   (11419 . 11418)   (11421 . 11420)   (11423 . 11422)   (11425 . 11424)   (11427 . 11426)   (11429 . 11428)   (11431 . 11430)   (11433 . 11432)   (11435 . 11434)   (11437 . 11436)   (11439 . 11438)   (11441 . 11440)   (11443 . 11442)   (11445 . 11444)   (11447 . 11446)   (11449 . 11448)   (11451 . 11450)   (11453 . 11452)   (11455 . 11454)   (11457 . 11456)   (11459 . 11458)   (11461 . 11460)   (11463 . 11462)   (11465 . 11464)   (11467 . 11466)   (11469 . 11468)   (11471 . 11470)   (11473 . 11472)   (11475 . 11474)   (11477 . 11476) (11479 . 11478) (11481 . 11480) (11483 . 11482) (11485 . 11484) (11487 . 11486) (11489 . 11488) (11491 . 11490) (11500 . 11499) (11502 . 11501) (11507 . 11506) (11520 . 4256)  (11521 . 4257)  (11522 . 4258)  (11523 . 4259)  (11524 . 4260)  (11525 . 4261)  (11526 . 4262)  (11527 . 4263)  (11528 . 4264)  (11529 . 4265)  (11530 . 4266)  (11531 . 4267)
+       (11532 . 4268)    (11533 . 4269)    (11534 . 4270)    (11535 . 4271)    (11536 . 4272)    (11537 . 4273)    (11538 . 4274)    (11539 . 4275)    (11540 . 4276)    (11541 . 4277)    (11542 . 4278)    (11543 . 4279)    (11544 . 4280)    (11545 . 4281)    (11546 . 4282)    (11547 . 4283)    (11548 . 4284)    (11549 . 4285)    (11550 . 4286)    (11551 . 4287)    (11552 . 4288)    (11553 . 4289)    (11554 . 4290)    (11555 . 4291)    (11556 . 4292)    (11557 . 4293)    (11559 . 4295)    (11565 . 4301)    (42561 . 42560)   (42563 . 42562)   (42565 . 42564)   (42567 . 42566)   (42569 . 42568)   (42571 . 42570) (42573 . 42572) (42575 . 42574) (42577 . 42576) (42579 . 42578) (42581 . 42580) (42583 . 42582) (42585 . 42584) (42587 . 42586) (42589 . 42588) (42591 . 42590) (42593 . 42592) (42595 . 42594) (42597 . 42596) (42599 . 42598) (42601 . 42600) (42603 . 42602) (42605 . 42604) (42625 . 42624) (42627 . 42626) (42629 . 42628) (42631 . 42630) (42633 . 42632)
+       (42635 . 42634)   (42637 . 42636)   (42639 . 42638)   (42641 . 42640)   (42643 . 42642)   (42645 . 42644)   (42647 . 42646)   (42649 . 42648)   (42651 . 42650)   (42787 . 42786)   (42789 . 42788)   (42791 . 42790)   (42793 . 42792)   (42795 . 42794)   (42797 . 42796)   (42799 . 42798)   (42803 . 42802)   (42805 . 42804)   (42807 . 42806)   (42809 . 42808)   (42811 . 42810)   (42813 . 42812)   (42815 . 42814)   (42817 . 42816)   (42819 . 42818)   (42821 . 42820)   (42823 . 42822)   (42825 . 42824)   (42827 . 42826)   (42829 . 42828)   (42831 . 42830)   (42833 . 42832)   (42835 . 42834)   (42837 . 42836) (42839 . 42838) (42841 . 42840) (42843 . 42842) (42845 . 42844) (42847 . 42846) (42849 . 42848) (42851 . 42850) (42853 . 42852) (42855 . 42854) (42857 . 42856) (42859 . 42858) (42861 . 42860) (42863 . 42862) (42874 . 42873) (42876 . 42875) (42879 . 42878) (42881 . 42880) (42883 . 42882) (42885 . 42884) (42887 . 42886) (42892 . 42891) (42897 . 42896)
+       (42899 . 42898)   (42903 . 42902)   (42905 . 42904)   (42907 . 42906)   (42909 . 42908)   (42911 . 42910)   (42913 . 42912)   (42915 . 42914)   (42917 . 42916)   (42919 . 42918)   (42921 . 42920)   (42933 . 42932)   (42935 . 42934)   (43859 . 42931)   (43888 . 5024)    (43889 . 5025)    (43890 . 5026)    (43891 . 5027)    (43892 . 5028)    (43893 . 5029)    (43894 . 5030)    (43895 . 5031)    (43896 . 5032)    (43897 . 5033)    (43898 . 5034)    (43899 . 5035)    (43900 . 5036)    (43901 . 5037)    (43902 . 5038)    (43903 . 5039)    (43904 . 5040)    (43905 . 5041)    (43906 . 5042)    (43907 . 5043)  (43908 . 5044)  (43909 . 5045)  (43910 . 5046)  (43911 . 5047)  (43912 . 5048)  (43913 . 5049)  (43914 . 5050)  (43915 . 5051)  (43916 . 5052)  (43917 . 5053)  (43918 . 5054)  (43919 . 5055)  (43920 . 5056)  (43921 . 5057)  (43922 . 5058)  (43923 . 5059)  (43924 . 5060)  (43925 . 5061)  (43926 . 5062)  (43927 . 5063)  (43928 . 5064)  (43929 . 5065)
+       (43930 . 5066)    (43931 . 5067)    (43932 . 5068)    (43933 . 5069)    (43934 . 5070)    (43935 . 5071)    (43936 . 5072)    (43937 . 5073)    (43938 . 5074)    (43939 . 5075)    (43940 . 5076)    (43941 . 5077)    (43942 . 5078)    (43943 . 5079)    (43944 . 5080)    (43945 . 5081)    (43946 . 5082)    (43947 . 5083)    (43948 . 5084)    (43949 . 5085)    (43950 . 5086)    (43951 . 5087)    (43952 . 5088)    (43953 . 5089)    (43954 . 5090)    (43955 . 5091)    (43956 . 5092)    (43957 . 5093)    (43958 . 5094)    (43959 . 5095)    (43960 . 5096)    (43961 . 5097)    (43962 . 5098)    (43963 . 5099)  (43964 . 5100)  (43965 . 5101)  (43966 . 5102)  (43967 . 5103)  (65345 . 65313) (65346 . 65314) (65347 . 65315) (65348 . 65316) (65349 . 65317) (65350 . 65318) (65351 . 65319) (65352 . 65320) (65353 . 65321) (65354 . 65322) (65355 . 65323) (65356 . 65324) (65357 . 65325) (65358 . 65326) (65359 . 65327) (65360 . 65328) (65361 . 65329) (65362 . 65330)
+       (65363 . 65331)   (65364 . 65332)   (65365 . 65333)   (65366 . 65334)   (65367 . 65335)   (65368 . 65336)   (65369 . 65337)   (65370 . 65338)   (66600 . 66560)   (66601 . 66561)   (66602 . 66562)   (66603 . 66563)   (66604 . 66564)   (66605 . 66565)   (66606 . 66566)   (66607 . 66567)   (66608 . 66568)   (66609 . 66569)   (66610 . 66570)   (66611 . 66571)   (66612 . 66572)   (66613 . 66573)   (66614 . 66574)   (66615 . 66575)   (66616 . 66576)   (66617 . 66577)   (66618 . 66578)   (66619 . 66579)   (66620 . 66580)   (66621 . 66581)   (66622 . 66582)   (66623 . 66583)   (66624 . 66584)   (66625 . 66585) (66626 . 66586) (66627 . 66587) (66628 . 66588) (66629 . 66589) (66630 . 66590) (66631 . 66591) (66632 . 66592) (66633 . 66593) (66634 . 66594) (66635 . 66595) (66636 . 66596) (66637 . 66597) (66638 . 66598) (66639 . 66599) (66776 . 66736) (66777 . 66737) (66778 . 66738) (66779 . 66739) (66780 . 66740) (66781 . 66741) (66782 . 66742) (66783 . 66743)
+       (66784 . 66744)   (66785 . 66745)   (66786 . 66746)   (66787 . 66747)   (66788 . 66748)   (66789 . 66749)   (66790 . 66750)   (66791 . 66751)   (66792 . 66752)   (66793 . 66753)   (66794 . 66754)   (66795 . 66755)   (66796 . 66756)   (66797 . 66757)   (66798 . 66758)   (66799 . 66759)   (66800 . 66760)   (66801 . 66761)   (66802 . 66762)   (66803 . 66763)   (66804 . 66764)   (66805 . 66765)   (66806 . 66766)   (66807 . 66767)   (66808 . 66768)   (66809 . 66769)   (66810 . 66770)   (66811 . 66771)   (68800 . 68736)   (68801 . 68737)   (68802 . 68738)   (68803 . 68739)   (68804 . 68740)   (68805 . 68741) (68806 . 68742) (68807 . 68743) (68808 . 68744) (68809 . 68745) (68810 . 68746) (68811 . 68747) (68812 . 68748) (68813 . 68749) (68814 . 68750) (68815 . 68751) (68816 . 68752) (68817 . 68753) (68818 . 68754) (68819 . 68755) (68820 . 68756) (68821 . 68757) (68822 . 68758) (68823 . 68759) (68824 . 68760) (68825 . 68761) (68826 . 68762) (68827 . 68763)
+       (68828 . 68764)   (68829 . 68765)   (68830 . 68766)   (68831 . 68767)   (68832 . 68768)   (68833 . 68769)   (68834 . 68770)   (68835 . 68771)   (68836 . 68772)   (68837 . 68773)   (68838 . 68774)   (68839 . 68775)   (68840 . 68776)   (68841 . 68777)   (68842 . 68778)   (68843 . 68779)   (68844 . 68780)   (68845 . 68781)   (68846 . 68782)   (68847 . 68783)   (68848 . 68784)   (68849 . 68785)   (68850 . 68786)   (71872 . 71840)   (71873 . 71841)   (71874 . 71842)   (71875 . 71843)   (71876 . 71844)   (71877 . 71845)   (71878 . 71846)   (71879 . 71847)   (71880 . 71848)   (71881 . 71849)   (71882 . 71850) (71883 . 71851) (71884 . 71852) (71885 . 71853) (71886 . 71854) (71887 . 71855) (71888 . 71856) (71889 . 71857) (71890 . 71858) (71891 . 71859) (71892 . 71860) (71893 . 71861) (71894 . 71862) (71895 . 71863) (71896 . 71864) (71897 . 71865) (71898 . 71866) (71899 . 71867) (71900 . 71868) (71901 . 71869) (71902 . 71870) (71903 . 71871) (125218 . 125184)
+       (125219 . 125185) (125220 . 125186) (125221 . 125187) (125222 . 125188) (125223 . 125189) (125224 . 125190) (125225 . 125191) (125226 . 125192) (125227 . 125193) (125228 . 125194) (125229 . 125195) (125230 . 125196) (125231 . 125197) (125232 . 125198) (125233 . 125199) (125234 . 125200) (125235 . 125201) (125236 . 125202) (125237 . 125203) (125238 . 125204) (125239 . 125205) (125240 . 125206) (125241 . 125207) (125242 . 125208) (125243 . 125209) (125244 . 125210) (125245 . 125211) (125246 . 125212) (125247 . 125213) (125248 . 125214) (125249 . 125215) (125250 . 125216) (125251 . 125217)))
+    table))
index f797c4b80e7060becbbc61916301658753249934..b6a0245cd9df2495f73b14364cd6a03c6f03fadb 100644 (file)
@@ -26,913 +26,22 @@ USA.
 
 ;;;; UCD property: Upper
 
-;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T00:05:07-08
+;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T23:45:15-08
 
 (declare (usual-integrations))
 \f
-
-(define-deferred ucd-upper-value
-  (let ((offsets (bytevector 59 116 122 2 2 2 2 2 2 2 2 2 2 2 125 127 127)))
-    (named-lambda (ucd-upper-value sv)
-      ((vector-ref ucd-upper-entries (bytevector-u8-ref offsets (fix:and 31 (fix:lsh sv -16)))) sv ucd-upper-entries))))
-
-(define (ucd-upper-entry-0 sv table)
-  sv
-  table
-  #f)
-
-(define (ucd-upper-entry-1 sv table)
-  sv
-  table
-  #t)
-
-(define (ucd-upper-entry-2 sv table)
-  sv
-  table
-  #!default)
-
-
-(define-deferred ucd-upper-entry-3
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-3 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-4
-  (let ((offsets (bytevector 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 0 0 1 1 0 1 0 1 1 0 1 1 1 0 0 1 1 1 1 0 1 1 0 1 1 1 0 0 0 1 1 0 1 1 0 1 0 1 0 1 1 0 1 0 0 1 0 1 1 0 1 1 1 0 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 1 0 0 1 0 1 1 1 0 1 0 1 0 1 0)))
-    (named-lambda (ucd-upper-entry-4 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-5
-  (let ((offsets (bytevector 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 1 1 0 1 1 0 0 1 0 1 1 1 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-5 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-6
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 2 2 0 0 0 0 0 1 2 2 2 2 0 0 1 0 1 1 1 2 1 2 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 1 0 0 1 0 1 1 0 0 1 1 1)))
-    (named-lambda (ucd-upper-entry-6 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-7
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0)))
-    (named-lambda (ucd-upper-entry-7 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-8
-  (let ((offsets (bytevector 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-8 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-9
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-9 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-10
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-10 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-11
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-11 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-12
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 2 2 2 2 2 2 2 2 0 2 2 2 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-12 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-13
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 2 2 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 2 0 0 2 2 0 2 0 0 0 0 0 2 2 2 2 0 0 2 2 0 0 0 2 2 2 0 2 2 2 2 2 2 2 0 0 0 0 2 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-13 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-14
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 2 2 2 2 2 2 2 2 0 0 2 2 2 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 2 0 0 0 0 0 0 2 2 2 0 0 0 2 0 0 0 0 2 2 2 0 0 2 0 2 0 0 2 2 2 0 0 2 2 2 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 2 2 2 0 0 0 2 0 0 0 0 2 2 0 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-14 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-15
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 2 2 2 2 2 2 2 0 0 2 0 0 0 2 2 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-15 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-16
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 0 0 2 2 2 0 2 2 2 2 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-16 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-17
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 0 2 2 0 0 2 0 2 2 0 2 2 2 2 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 2 0 2 0 2 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 2 0 0 0 0 0 2 0 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-17 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-18
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-18 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-19
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 2 2 2 2 1 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-19 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-20
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-20 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-21
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-upper-entry-21 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-22
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-22 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-23
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-23 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-24
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-24 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-25
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-25 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-26
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-26 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-27
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-27 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-28
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-28 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-29
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-29 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-30
-  (let ((offsets (bytevector 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0)))
-    (named-lambda (ucd-upper-entry-30 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-31
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 2 2 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 2 2 1 1 1 1 1 1 2 2 0 0 0 0 0 0 0 0 2 1 2 1 2 1 2 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 2 0 0 1 1 1 1 0 0 0 0 0 0 0 0 2 2 0 0 1 1 1 1 2 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 2 2 0 0 0 2 0 0 1 1 1 1 0 0 0 2)))
-    (named-lambda (ucd-upper-entry-31 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-32
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-32 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-33
-  (let ((offsets (bytevector 0 0 1 0 0 0 0 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 0 0 0 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 1 0 1 1 1 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-33 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-34
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-upper-entry-34 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-35
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-35 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-36
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-36 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-37
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 1 1 1 0 0 1 0 1 0 1 0 1 1 1 1 0 1 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 1 0 2 2 2 2 2 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-37 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-38
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-38 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-39
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-39 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-40
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-40 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-41
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-41 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-42
-  (let ((offsets (bytevector 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-42 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-43
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-upper-entry-43 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-44
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-44 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-45
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-45 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-46
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-46 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-47
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-47 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-48
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 1 0 1 0 1 0 1 0 1 0 0 0 0 1 0 1 0 0 1 0 1 0 0 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 1 1 1 1 2 1 1 1 1 1 0 1 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-48 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-49
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-upper-entry-49 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-50
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-upper-entry-50 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-51
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-51 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-52
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-52 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-53
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-53 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-54
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-54 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-55
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 2 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-55 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-56
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-upper-entry-56 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-57
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0)))
-    (named-lambda (ucd-upper-entry-57 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-58
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-upper-entry-58 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-59
-  (let ((offsets (bytevector 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 0 20 21 0 0 22 23 24 25 26 27 28 29 30 31 32 33 0 34 35 0 0 0 0 0 0 36 37 38 39 40 41 42 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 0 0 0 0 46 0 47 48 49 50 51 52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54 55 0 56 57 58)))
-    (named-lambda (ucd-upper-entry-59 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-upper-entry-60
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-60 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-61
-  (let ((offsets (bytevector 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-upper-entry-61 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-62
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-62 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-63
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-63 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-64
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-64 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-65
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-65 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-66
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-66 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-67
-  (let ((offsets (bytevector 0 0 0 0 0 0 2 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-67 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-68
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-68 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-69
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-69 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-70
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-70 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-71
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-71 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-72
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-72 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-73
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-73 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-74
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-74 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-75
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-75 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-76
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 2 2 0 2 2 2 2 2 2 0 2 2 2 2 2 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-76 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-77
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-77 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-78
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-78 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-79
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-79 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-80
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-80 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-81
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0)))
-    (named-lambda (ucd-upper-entry-81 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-82
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-82 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-83
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-83 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-84
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-84 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-85
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-85 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-86
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-86 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-87
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-87 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-88
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-88 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-89
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-89 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-90
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-90 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-91
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-91 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-92
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-92 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-93
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-93 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-94
-  (let ((offsets (bytevector 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-94 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-95
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-95 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-96
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-96 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-97
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-97 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-98
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-98 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-99
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-99 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-100
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 1 1 2 2 1 2 2 1 1 2 2 1 1 1 1 2 1 1 1 1 1 1 1 1 0 0 0 0 2 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-100 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-101
-  (let ((offsets (bytevector 0 0 0 0 1 1 2 1 1 1 1 2 2 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 1 1 1 1 2 1 1 1 1 1 2 1 2 2 2 1 1 1 1 1 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-101 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-102
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-102 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-103
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-103 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-104
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-104 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-105
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-105 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-106
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-106 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-107
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-107 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-108
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 0 2 2 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 0 2 0 2 2 2 2 2 2 0 2 2 2 2 0 2 0 2 0 2 0 0 0 2 0 0 2 0 2 2 0 2 0 2 0 2 0 2 0 2 0 0 2 0 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 2 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-108 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-109
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-109 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-110
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 2 2 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-110 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-111
-  (let ((offsets (bytevector 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-111 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-112
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-112 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-113
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-113 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-114
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-114 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-115
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-115 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-116
-  (let ((offsets (bytevector 60 61 62 63 64 65 0 66 67 68 69 70 71 2 72 2 73 74 75 76 77 78 79 80 81 2 82 2 83 2 2 2 0 0 0 84 85 86 2 2 2 2 2 2 2 2 2 2 0 0 0 0 87 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 88 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 89 90 2 2 2 91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 92 0 0 93 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 94 2 2 2 2 2 2 2 2 2 2 2 95 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 96 97 98 99 100 101 102 103 0 0 104 2 2 2 2 2 105 2 2 2 2 2 2 2 106 107 2 2 2 2 108 2 109 110 111 0 0 0 112 113 114 115 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-116 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-upper-entry-117
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-117 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-118
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-118 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-119
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-upper-entry-119 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-120
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-120 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-121
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-121 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-122
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118 119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 121 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-122 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-upper-entry-123
-  (let ((offsets (bytevector 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-123 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-124
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-124 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-125
-  (let ((offsets (bytevector 123 124 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-upper-entry-125 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-upper-entry-126
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-upper-entry-126 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-upper-entry-127
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 126)))
-    (named-lambda (ucd-upper-entry-127 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-(define ucd-upper-entries)
-
-(add-boot-init! (lambda () (set! ucd-upper-entries (make-vector 128)) (initialize-ucd-upper-entries-0) (initialize-ucd-upper-entries-1)))
-
-(define (initialize-ucd-upper-entries-0)
-  (vector-set! ucd-upper-entries 0 ucd-upper-entry-0)
-  (vector-set! ucd-upper-entries 1 ucd-upper-entry-1)
-  (vector-set! ucd-upper-entries 2 ucd-upper-entry-2)
-  (vector-set! ucd-upper-entries 3 ucd-upper-entry-3)
-  (vector-set! ucd-upper-entries 4 ucd-upper-entry-4)
-  (vector-set! ucd-upper-entries 5 ucd-upper-entry-5)
-  (vector-set! ucd-upper-entries 6 ucd-upper-entry-6)
-  (vector-set! ucd-upper-entries 7 ucd-upper-entry-7)
-  (vector-set! ucd-upper-entries 8 ucd-upper-entry-8)
-  (vector-set! ucd-upper-entries 9 ucd-upper-entry-9)
-  (vector-set! ucd-upper-entries 10 ucd-upper-entry-10)
-  (vector-set! ucd-upper-entries 11 ucd-upper-entry-11)
-  (vector-set! ucd-upper-entries 12 ucd-upper-entry-12)
-  (vector-set! ucd-upper-entries 13 ucd-upper-entry-13)
-  (vector-set! ucd-upper-entries 14 ucd-upper-entry-14)
-  (vector-set! ucd-upper-entries 15 ucd-upper-entry-15)
-  (vector-set! ucd-upper-entries 16 ucd-upper-entry-16)
-  (vector-set! ucd-upper-entries 17 ucd-upper-entry-17)
-  (vector-set! ucd-upper-entries 18 ucd-upper-entry-18)
-  (vector-set! ucd-upper-entries 19 ucd-upper-entry-19)
-  (vector-set! ucd-upper-entries 20 ucd-upper-entry-20)
-  (vector-set! ucd-upper-entries 21 ucd-upper-entry-21)
-  (vector-set! ucd-upper-entries 22 ucd-upper-entry-22)
-  (vector-set! ucd-upper-entries 23 ucd-upper-entry-23)
-  (vector-set! ucd-upper-entries 24 ucd-upper-entry-24)
-  (vector-set! ucd-upper-entries 25 ucd-upper-entry-25)
-  (vector-set! ucd-upper-entries 26 ucd-upper-entry-26)
-  (vector-set! ucd-upper-entries 27 ucd-upper-entry-27)
-  (vector-set! ucd-upper-entries 28 ucd-upper-entry-28)
-  (vector-set! ucd-upper-entries 29 ucd-upper-entry-29)
-  (vector-set! ucd-upper-entries 30 ucd-upper-entry-30)
-  (vector-set! ucd-upper-entries 31 ucd-upper-entry-31)
-  (vector-set! ucd-upper-entries 32 ucd-upper-entry-32)
-  (vector-set! ucd-upper-entries 33 ucd-upper-entry-33)
-  (vector-set! ucd-upper-entries 34 ucd-upper-entry-34)
-  (vector-set! ucd-upper-entries 35 ucd-upper-entry-35)
-  (vector-set! ucd-upper-entries 36 ucd-upper-entry-36)
-  (vector-set! ucd-upper-entries 37 ucd-upper-entry-37)
-  (vector-set! ucd-upper-entries 38 ucd-upper-entry-38)
-  (vector-set! ucd-upper-entries 39 ucd-upper-entry-39)
-  (vector-set! ucd-upper-entries 40 ucd-upper-entry-40)
-  (vector-set! ucd-upper-entries 41 ucd-upper-entry-41)
-  (vector-set! ucd-upper-entries 42 ucd-upper-entry-42)
-  (vector-set! ucd-upper-entries 43 ucd-upper-entry-43)
-  (vector-set! ucd-upper-entries 44 ucd-upper-entry-44)
-  (vector-set! ucd-upper-entries 45 ucd-upper-entry-45)
-  (vector-set! ucd-upper-entries 46 ucd-upper-entry-46)
-  (vector-set! ucd-upper-entries 47 ucd-upper-entry-47)
-  (vector-set! ucd-upper-entries 48 ucd-upper-entry-48)
-  (vector-set! ucd-upper-entries 49 ucd-upper-entry-49)
-  (vector-set! ucd-upper-entries 50 ucd-upper-entry-50)
-  (vector-set! ucd-upper-entries 51 ucd-upper-entry-51)
-  (vector-set! ucd-upper-entries 52 ucd-upper-entry-52)
-  (vector-set! ucd-upper-entries 53 ucd-upper-entry-53)
-  (vector-set! ucd-upper-entries 54 ucd-upper-entry-54)
-  (vector-set! ucd-upper-entries 55 ucd-upper-entry-55)
-  (vector-set! ucd-upper-entries 56 ucd-upper-entry-56)
-  (vector-set! ucd-upper-entries 57 ucd-upper-entry-57)
-  (vector-set! ucd-upper-entries 58 ucd-upper-entry-58)
-  (vector-set! ucd-upper-entries 59 ucd-upper-entry-59)
-  (vector-set! ucd-upper-entries 60 ucd-upper-entry-60)
-  (vector-set! ucd-upper-entries 61 ucd-upper-entry-61)
-  (vector-set! ucd-upper-entries 62 ucd-upper-entry-62)
-  (vector-set! ucd-upper-entries 63 ucd-upper-entry-63)
-  (vector-set! ucd-upper-entries 64 ucd-upper-entry-64)
-  (vector-set! ucd-upper-entries 65 ucd-upper-entry-65)
-  (vector-set! ucd-upper-entries 66 ucd-upper-entry-66)
-  (vector-set! ucd-upper-entries 67 ucd-upper-entry-67)
-  (vector-set! ucd-upper-entries 68 ucd-upper-entry-68)
-  (vector-set! ucd-upper-entries 69 ucd-upper-entry-69)
-  (vector-set! ucd-upper-entries 70 ucd-upper-entry-70)
-  (vector-set! ucd-upper-entries 71 ucd-upper-entry-71)
-  (vector-set! ucd-upper-entries 72 ucd-upper-entry-72)
-  (vector-set! ucd-upper-entries 73 ucd-upper-entry-73)
-  (vector-set! ucd-upper-entries 74 ucd-upper-entry-74)
-  (vector-set! ucd-upper-entries 75 ucd-upper-entry-75)
-  (vector-set! ucd-upper-entries 76 ucd-upper-entry-76)
-  (vector-set! ucd-upper-entries 77 ucd-upper-entry-77)
-  (vector-set! ucd-upper-entries 78 ucd-upper-entry-78)
-  (vector-set! ucd-upper-entries 79 ucd-upper-entry-79)
-  (vector-set! ucd-upper-entries 80 ucd-upper-entry-80)
-  (vector-set! ucd-upper-entries 81 ucd-upper-entry-81)
-  (vector-set! ucd-upper-entries 82 ucd-upper-entry-82)
-  (vector-set! ucd-upper-entries 83 ucd-upper-entry-83)
-  (vector-set! ucd-upper-entries 84 ucd-upper-entry-84)
-  (vector-set! ucd-upper-entries 85 ucd-upper-entry-85)
-  (vector-set! ucd-upper-entries 86 ucd-upper-entry-86)
-  (vector-set! ucd-upper-entries 87 ucd-upper-entry-87)
-  (vector-set! ucd-upper-entries 88 ucd-upper-entry-88)
-  (vector-set! ucd-upper-entries 89 ucd-upper-entry-89)
-  (vector-set! ucd-upper-entries 90 ucd-upper-entry-90)
-  (vector-set! ucd-upper-entries 91 ucd-upper-entry-91)
-  (vector-set! ucd-upper-entries 92 ucd-upper-entry-92)
-  (vector-set! ucd-upper-entries 93 ucd-upper-entry-93)
-  (vector-set! ucd-upper-entries 94 ucd-upper-entry-94)
-  (vector-set! ucd-upper-entries 95 ucd-upper-entry-95)
-  (vector-set! ucd-upper-entries 96 ucd-upper-entry-96)
-  (vector-set! ucd-upper-entries 97 ucd-upper-entry-97)
-  (vector-set! ucd-upper-entries 98 ucd-upper-entry-98)
-  (vector-set! ucd-upper-entries 99 ucd-upper-entry-99))
-
-(define (initialize-ucd-upper-entries-1)
-  (vector-set! ucd-upper-entries 100 ucd-upper-entry-100)
-  (vector-set! ucd-upper-entries 101 ucd-upper-entry-101)
-  (vector-set! ucd-upper-entries 102 ucd-upper-entry-102)
-  (vector-set! ucd-upper-entries 103 ucd-upper-entry-103)
-  (vector-set! ucd-upper-entries 104 ucd-upper-entry-104)
-  (vector-set! ucd-upper-entries 105 ucd-upper-entry-105)
-  (vector-set! ucd-upper-entries 106 ucd-upper-entry-106)
-  (vector-set! ucd-upper-entries 107 ucd-upper-entry-107)
-  (vector-set! ucd-upper-entries 108 ucd-upper-entry-108)
-  (vector-set! ucd-upper-entries 109 ucd-upper-entry-109)
-  (vector-set! ucd-upper-entries 110 ucd-upper-entry-110)
-  (vector-set! ucd-upper-entries 111 ucd-upper-entry-111)
-  (vector-set! ucd-upper-entries 112 ucd-upper-entry-112)
-  (vector-set! ucd-upper-entries 113 ucd-upper-entry-113)
-  (vector-set! ucd-upper-entries 114 ucd-upper-entry-114)
-  (vector-set! ucd-upper-entries 115 ucd-upper-entry-115)
-  (vector-set! ucd-upper-entries 116 ucd-upper-entry-116)
-  (vector-set! ucd-upper-entries 117 ucd-upper-entry-117)
-  (vector-set! ucd-upper-entries 118 ucd-upper-entry-118)
-  (vector-set! ucd-upper-entries 119 ucd-upper-entry-119)
-  (vector-set! ucd-upper-entries 120 ucd-upper-entry-120)
-  (vector-set! ucd-upper-entries 121 ucd-upper-entry-121)
-  (vector-set! ucd-upper-entries 122 ucd-upper-entry-122)
-  (vector-set! ucd-upper-entries 123 ucd-upper-entry-123)
-  (vector-set! ucd-upper-entries 124 ucd-upper-entry-124)
-  (vector-set! ucd-upper-entries 125 ucd-upper-entry-125)
-  (vector-set! ucd-upper-entries 126 ucd-upper-entry-126)
-  (vector-set! ucd-upper-entries 127 ucd-upper-entry-127))
+(define (ucd-upper-value sv)
+  (scalar-value-in-char-set? sv char-set:upper-case))
+
+(define-deferred char-set:upper-case
+  (char-set*
+   '((65 . 91)         (192 . 215)       (216 . 223)   256               258               260               262               264               266               268               270               272               274               276               278               280         282               284               286               288               290           292   294           296             298   300             302             304   306   308             310   313   315             317   319           321           323   325   327         330   332   334   336   338   340   342             344             346   348             350             352             354             356             358               360               362               364    366               368    370               372               374               (376 . 378)       379               381               (385 . 387)       388               (390 . 392)
+     (393 . 396)       (398 . 402)       (403 . 405)   (406 . 409)       (412 . 414)       (415 . 417)       418               420               (422 . 424)       425               428               (430 . 432)       (433 . 436)       437               (439 . 441)       444         452               455               458               461               463           465   467           469             471   473             475             478   480   482             484   486   488             490   492           494           497   500   (502 . 505) 506   508   510   512   514   516   518             520             522   524             526             528             530             532             534               536               538               540    542               544    546               548               550               552               554               556               558               560               562
+     (570 . 572)       (573 . 575)       577           (579 . 583)       584               586               588               590               880               882               886               895               902               (904 . 907)       908               (910 . 912) (913 . 930)       (931 . 940)       975               (978 . 981)       984           986   988           990             992   994             996             998   1000  1002            1004  1006  1012            1015  (1017 . 1019) (1021 . 1072) 1120  1122  1124        1126  1128  1130  1132  1134  1136  1138            1140            1142  1144            1146            1148            1150            1152            1162              1164              1166              1168   1170              1172   1174              1176              1178              1180              1182              1184              1186              1188              1190
+     1192              1194              1196          1198              1200              1202              1204              1206              1208              1210              1212              1214              (1216 . 1218)     1219              1221              1223        1225              1227              1229              1232              1234          1236  1238          1240            1242  1244            1246            1248  1250  1252            1254  1256  1258            1260  1262          1264          1266  1268  1270        1272  1274  1276  1278  1280  1282  1284            1286            1288  1290            1292            1294            1296            1298            1300              1302              1304              1306   1308              1310   1312              1314              1316              1318              1320              1322              1324              1326              (1329 . 1367)
+     (4256 . 4294)     4295              4301          (5024 . 5110)     7680              7682              7684              7686              7688              7690              7692              7694              7696              7698              7700              7702        7704              7706              7708              7710              7712          7714  7716          7718            7720  7722            7724            7726  7728  7730            7732  7734  7736            7738  7740          7742          7744  7746  7748        7750  7752  7754  7756  7758  7760  7762            7764            7766  7768            7770            7772            7774            7776            7778              7780              7782              7784   7786              7788   7790              7792              7794              7796              7798              7800              7802              7804              7806
+     7808              7810              7812          7814              7816              7818              7820              7822              7824              7826              7828              7838              7840              7842              7844              7846        7848              7850              7852              7854              7856          7858  7860          7862            7864  7866            7868            7870  7872  7874            7876  7878  7880            7882  7884          7886          7888  7890  7892        7894  7896  7898  7900  7902  7904  7906            7908            7910  7912            7914            7916            7918            7920            7922              7924              7926              7928   7930              7932   7934              (7944 . 7952)     (7960 . 7966)     (7976 . 7984)     (7992 . 8000)     (8008 . 8014)     8025              8027              8029
+     8031              (8040 . 8048)     (8120 . 8124) (8136 . 8140)     (8152 . 8156)     (8168 . 8173)     (8184 . 8188)     8450              8455              (8459 . 8462)     (8464 . 8467)     8469              (8473 . 8478)     8484              8486              8488        (8490 . 8494)     (8496 . 8500)     (8510 . 8512)     8517              (8544 . 8560) 8579  (9398 . 9424) (11264 . 11311) 11360 (11362 . 11365) 11367           11369 11371 (11373 . 11377) 11378 11381 (11390 . 11393) 11394 11396         11398         11400 11402 11404       11406 11408 11410 11412 11414 11416 11418           11420           11422 11424           11426           11428           11430           11432           11434             11436             11438             11440  11442             11444  11446             11448             11450             11452             11454             11456             11458             11460             11462
+     11464             11466             11468         11470             11472             11474             11476             11478             11480             11482             11484             11486             11488             11490             11499             11501       11506             42560             42562             42564             42566         42568 42570         42572           42574 42576           42578           42580 42582 42584           42586 42588 42590           42592 42594         42596         42598 42600 42602       42604 42624 42626 42628 42630 42632 42634           42636           42638 42640           42642           42644           42646           42648           42650             42786             42788             42790  42792             42794  42796             42798             42802             42804             42806             42808             42810             42812             42814
+     42816             42818             42820         42822             42824             42826             42828             42830             42832             42834             42836             42838             42840             42842             42844             42846       42848             42850             42852             42854             42856         42858 42860         42862           42873 42875           (42877 . 42879) 42880 42882 42884           42886 42891 42893           42896 42898         42902         42904 42906 42908       42910 42912 42914 42916 42918 42920 (42922 . 42927) (42928 . 42933) 42934 (65313 . 65339) (66560 . 66600) (66736 . 66772) (68736 . 68787) (71840 . 71872) (119808 . 119834) (119860 . 119886) (119912 . 119938) 119964 (119966 . 119968) 119970 (119973 . 119975) (119977 . 119981) (119982 . 119990) (120016 . 120042) (120068 . 120070) (120071 . 120075) (120077 . 120085) (120086 . 120093) (120120 . 120122)
+     (120123 . 120127) (120128 . 120133) 120134        (120138 . 120145) (120172 . 120198) (120224 . 120250) (120276 . 120302) (120328 . 120354) (120380 . 120406) (120432 . 120458) (120488 . 120513) (120546 . 120571) (120604 . 120629) (120662 . 120687) (120720 . 120745) 120778      (125184 . 125218) (127280 . 127306) (127312 . 127338) (127344 . 127370))))
index df899eb79572ffd741281d38a87dcafde600bb4b..3ef71f4283a953295f81f281ed636b9d543127e1 100644 (file)
@@ -26,885 +26,12 @@ USA.
 
 ;;;; UCD property: WSpace
 
-;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T00:05:07-08
+;;; Generated from Unicode 9.0.0 UCD at 2017-02-09T23:45:15-08
 
 (declare (usual-integrations))
 \f
+(define (ucd-wspace-value sv)
+  (scalar-value-in-char-set? sv char-set:white-space))
 
-(define-deferred ucd-wspace-value
-  (let ((offsets (bytevector 55 112 118 2 2 2 2 2 2 2 2 2 2 2 121 123 123)))
-    (named-lambda (ucd-wspace-value sv)
-      ((vector-ref ucd-wspace-entries (bytevector-u8-ref offsets (fix:and 31 (fix:lsh sv -16)))) sv ucd-wspace-entries))))
-
-(define (ucd-wspace-entry-0 sv table)
-  sv
-  table
-  #f)
-
-(define (ucd-wspace-entry-1 sv table)
-  sv
-  table
-  #t)
-
-(define (ucd-wspace-entry-2 sv table)
-  sv
-  table
-  #!default)
-
-
-(define-deferred ucd-wspace-entry-3
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-3 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-4
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-4 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-5
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-5 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-6
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-6 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-7
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-7 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-8
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-8 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-9
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 2 2 2 2 2 2 2 2 0 2 2 2 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-9 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-10
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 2 2 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 2 0 0 2 2 0 2 0 0 0 0 0 2 2 2 2 0 0 2 2 0 0 0 2 2 2 0 2 2 2 2 2 2 2 0 0 0 0 2 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-10 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-11
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 2 2 2 2 2 2 2 2 0 0 2 2 2 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 2 0 0 0 0 0 0 2 2 2 0 0 0 2 0 0 0 0 2 2 2 0 0 2 0 2 0 0 2 2 2 0 0 2 2 2 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 2 2 2 0 0 0 2 0 0 0 0 2 2 0 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-11 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-12
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 2 2 2 2 2 2 2 0 0 2 0 0 0 2 2 2 2 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-12 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-13
-  (let ((offsets (bytevector 2 0 0 0 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 2 0 2 2 0 0 0 0 0 0 0 2 2 2 0 2 2 2 2 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-13 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-14
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 0 2 2 0 0 2 0 2 2 0 2 2 2 2 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 2 0 2 0 2 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 2 0 0 0 0 0 2 0 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-14 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-15
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-15 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-16
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-16 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-17
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-17 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-18
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-wspace-entry-18 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-19
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-19 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-20
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-20 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-21
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-21 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-22
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-22 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-23
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-23 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-24
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-24 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-25
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-25 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-26
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-26 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-27
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 0 2 0 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 2 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-wspace-entry-27 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-28
-  (let ((offsets (bytevector 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-28 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-29
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-29 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-30
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-wspace-entry-30 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-31
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-31 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-32
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-32 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-33
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-33 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-34
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 2 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-34 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-35
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-35 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-36
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-36 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-37
-  (let ((offsets (bytevector 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-37 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-38
-  (let ((offsets (bytevector 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-38 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-39
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-wspace-entry-39 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-40
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-40 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-41
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-41 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-42
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-42 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-43
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-43 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-44
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-44 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-45
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-wspace-entry-45 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-46
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2)))
-    (named-lambda (ucd-wspace-entry-46 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-47
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-47 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-48
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-48 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-49
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-49 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-50
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-50 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-51
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 0 2 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-51 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-52
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-wspace-entry-52 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-53
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 2 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0)))
-    (named-lambda (ucd-wspace-entry-53 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-54
-  (let ((offsets (bytevector 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 0 0 0 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-wspace-entry-54 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-55
-  (let ((offsets (bytevector 3 0 0 4 0 5 6 7 8 9 10 11 12 13 14 15 16 0 17 18 0 0 19 20 21 22 23 24 25 26 0 27 28 29 0 30 31 0 0 0 0 0 0 32 33 34 35 36 37 38 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 0 0 0 0 42 0 43 44 45 46 47 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 51 0 52 53 54)))
-    (named-lambda (ucd-wspace-entry-55 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-56
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-56 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-57
-  (let ((offsets (bytevector 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-wspace-entry-57 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-58
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-58 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-59
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-59 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-60
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-60 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-61
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-61 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-62
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-62 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-63
-  (let ((offsets (bytevector 0 0 0 0 0 0 2 2 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 2 2 2 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-63 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-64
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-64 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-65
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 2 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-65 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-66
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-66 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-67
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-67 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-68
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-68 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-69
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-69 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-70
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-70 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-71
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 2 0 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-71 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-72
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 2 2 0 0 2 2 0 0 0 2 2 0 2 2 2 2 2 2 0 2 2 2 2 2 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-72 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-73
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-73 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-74
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-74 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-75
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-75 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-76
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-76 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-77
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0)))
-    (named-lambda (ucd-wspace-entry-77 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-78
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-78 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-79
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-79 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-80
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-80 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-81
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-81 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-82
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-82 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-83
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-83 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-84
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-84 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-85
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-85 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-86
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-86 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-87
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-87 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-88
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-88 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-89
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-89 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-90
-  (let ((offsets (bytevector 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-90 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-91
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-91 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-92
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-92 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-93
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-93 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-94
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-94 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-95
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-95 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-96
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 2 0 2 2 0 0 2 2 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-96 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-97
-  (let ((offsets (bytevector 0 0 0 0 0 0 2 0 0 0 0 2 2 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 0 0 0 0 0 2 0 2 2 2 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-97 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-98
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-98 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-99
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-99 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-100
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-100 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-101
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 2 0 0 2 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-101 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-102
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-102 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-103
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-103 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-104
-  (let ((offsets (bytevector 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 2 0 2 2 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 2 0 2 0 2 2 2 2 2 2 0 2 2 2 2 0 2 0 2 0 2 0 0 0 2 0 0 2 0 2 2 0 2 0 2 0 2 0 2 0 2 0 0 2 0 2 2 0 0 0 0 2 0 0 0 0 0 0 0 2 0 0 0 0 2 0 0 0 0 2 0 2 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 0 0 0 2 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-104 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-105
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-105 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-106
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-106 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-107
-  (let ((offsets (bytevector 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-107 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-108
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-108 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-109
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-109 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-110
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-110 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-111
-  (let ((offsets (bytevector 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-111 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-112
-  (let ((offsets (bytevector 56 57 58 59 60 61 0 62 63 64 65 66 67 2 68 2 69 70 71 72 73 74 75 76 77 2 78 2 79 2 2 2 0 0 0 80 81 82 2 2 2 2 2 2 2 2 2 2 0 0 0 0 83 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 84 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 85 86 2 2 2 87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 88 0 0 89 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 90 2 2 2 2 2 2 2 2 2 2 2 91 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 92 93 94 95 96 97 98 99 0 0 100 2 2 2 2 2 101 2 2 2 2 2 2 2 102 103 2 2 2 2 104 2 105 106 107 0 0 0 108 109 110 111 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-112 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-113
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-113 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-114
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-114 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-115
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)))
-    (named-lambda (ucd-wspace-entry-115 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-116
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-116 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-117
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-117 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-118
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 113 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 114 115 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 116 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 117 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-118 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-119
-  (let ((offsets (bytevector 2 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-119 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-120
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-120 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-121
-  (let ((offsets (bytevector 119 120 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2)))
-    (named-lambda (ucd-wspace-entry-121 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-122
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2)))
-    (named-lambda (ucd-wspace-entry-122 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 sv))) sv table))))
-
-
-(define-deferred ucd-wspace-entry-123
-  (let ((offsets (bytevector 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122)))
-    (named-lambda (ucd-wspace-entry-123 sv table)
-      ((vector-ref table (bytevector-u8-ref offsets (fix:and 255 (fix:lsh sv -8)))) sv table))))
-
-(define ucd-wspace-entries)
-
-(add-boot-init! (lambda () (set! ucd-wspace-entries (make-vector 124)) (initialize-ucd-wspace-entries-0) (initialize-ucd-wspace-entries-1)))
-
-(define (initialize-ucd-wspace-entries-0)
-  (vector-set! ucd-wspace-entries 0 ucd-wspace-entry-0)
-  (vector-set! ucd-wspace-entries 1 ucd-wspace-entry-1)
-  (vector-set! ucd-wspace-entries 2 ucd-wspace-entry-2)
-  (vector-set! ucd-wspace-entries 3 ucd-wspace-entry-3)
-  (vector-set! ucd-wspace-entries 4 ucd-wspace-entry-4)
-  (vector-set! ucd-wspace-entries 5 ucd-wspace-entry-5)
-  (vector-set! ucd-wspace-entries 6 ucd-wspace-entry-6)
-  (vector-set! ucd-wspace-entries 7 ucd-wspace-entry-7)
-  (vector-set! ucd-wspace-entries 8 ucd-wspace-entry-8)
-  (vector-set! ucd-wspace-entries 9 ucd-wspace-entry-9)
-  (vector-set! ucd-wspace-entries 10 ucd-wspace-entry-10)
-  (vector-set! ucd-wspace-entries 11 ucd-wspace-entry-11)
-  (vector-set! ucd-wspace-entries 12 ucd-wspace-entry-12)
-  (vector-set! ucd-wspace-entries 13 ucd-wspace-entry-13)
-  (vector-set! ucd-wspace-entries 14 ucd-wspace-entry-14)
-  (vector-set! ucd-wspace-entries 15 ucd-wspace-entry-15)
-  (vector-set! ucd-wspace-entries 16 ucd-wspace-entry-16)
-  (vector-set! ucd-wspace-entries 17 ucd-wspace-entry-17)
-  (vector-set! ucd-wspace-entries 18 ucd-wspace-entry-18)
-  (vector-set! ucd-wspace-entries 19 ucd-wspace-entry-19)
-  (vector-set! ucd-wspace-entries 20 ucd-wspace-entry-20)
-  (vector-set! ucd-wspace-entries 21 ucd-wspace-entry-21)
-  (vector-set! ucd-wspace-entries 22 ucd-wspace-entry-22)
-  (vector-set! ucd-wspace-entries 23 ucd-wspace-entry-23)
-  (vector-set! ucd-wspace-entries 24 ucd-wspace-entry-24)
-  (vector-set! ucd-wspace-entries 25 ucd-wspace-entry-25)
-  (vector-set! ucd-wspace-entries 26 ucd-wspace-entry-26)
-  (vector-set! ucd-wspace-entries 27 ucd-wspace-entry-27)
-  (vector-set! ucd-wspace-entries 28 ucd-wspace-entry-28)
-  (vector-set! ucd-wspace-entries 29 ucd-wspace-entry-29)
-  (vector-set! ucd-wspace-entries 30 ucd-wspace-entry-30)
-  (vector-set! ucd-wspace-entries 31 ucd-wspace-entry-31)
-  (vector-set! ucd-wspace-entries 32 ucd-wspace-entry-32)
-  (vector-set! ucd-wspace-entries 33 ucd-wspace-entry-33)
-  (vector-set! ucd-wspace-entries 34 ucd-wspace-entry-34)
-  (vector-set! ucd-wspace-entries 35 ucd-wspace-entry-35)
-  (vector-set! ucd-wspace-entries 36 ucd-wspace-entry-36)
-  (vector-set! ucd-wspace-entries 37 ucd-wspace-entry-37)
-  (vector-set! ucd-wspace-entries 38 ucd-wspace-entry-38)
-  (vector-set! ucd-wspace-entries 39 ucd-wspace-entry-39)
-  (vector-set! ucd-wspace-entries 40 ucd-wspace-entry-40)
-  (vector-set! ucd-wspace-entries 41 ucd-wspace-entry-41)
-  (vector-set! ucd-wspace-entries 42 ucd-wspace-entry-42)
-  (vector-set! ucd-wspace-entries 43 ucd-wspace-entry-43)
-  (vector-set! ucd-wspace-entries 44 ucd-wspace-entry-44)
-  (vector-set! ucd-wspace-entries 45 ucd-wspace-entry-45)
-  (vector-set! ucd-wspace-entries 46 ucd-wspace-entry-46)
-  (vector-set! ucd-wspace-entries 47 ucd-wspace-entry-47)
-  (vector-set! ucd-wspace-entries 48 ucd-wspace-entry-48)
-  (vector-set! ucd-wspace-entries 49 ucd-wspace-entry-49)
-  (vector-set! ucd-wspace-entries 50 ucd-wspace-entry-50)
-  (vector-set! ucd-wspace-entries 51 ucd-wspace-entry-51)
-  (vector-set! ucd-wspace-entries 52 ucd-wspace-entry-52)
-  (vector-set! ucd-wspace-entries 53 ucd-wspace-entry-53)
-  (vector-set! ucd-wspace-entries 54 ucd-wspace-entry-54)
-  (vector-set! ucd-wspace-entries 55 ucd-wspace-entry-55)
-  (vector-set! ucd-wspace-entries 56 ucd-wspace-entry-56)
-  (vector-set! ucd-wspace-entries 57 ucd-wspace-entry-57)
-  (vector-set! ucd-wspace-entries 58 ucd-wspace-entry-58)
-  (vector-set! ucd-wspace-entries 59 ucd-wspace-entry-59)
-  (vector-set! ucd-wspace-entries 60 ucd-wspace-entry-60)
-  (vector-set! ucd-wspace-entries 61 ucd-wspace-entry-61)
-  (vector-set! ucd-wspace-entries 62 ucd-wspace-entry-62)
-  (vector-set! ucd-wspace-entries 63 ucd-wspace-entry-63)
-  (vector-set! ucd-wspace-entries 64 ucd-wspace-entry-64)
-  (vector-set! ucd-wspace-entries 65 ucd-wspace-entry-65)
-  (vector-set! ucd-wspace-entries 66 ucd-wspace-entry-66)
-  (vector-set! ucd-wspace-entries 67 ucd-wspace-entry-67)
-  (vector-set! ucd-wspace-entries 68 ucd-wspace-entry-68)
-  (vector-set! ucd-wspace-entries 69 ucd-wspace-entry-69)
-  (vector-set! ucd-wspace-entries 70 ucd-wspace-entry-70)
-  (vector-set! ucd-wspace-entries 71 ucd-wspace-entry-71)
-  (vector-set! ucd-wspace-entries 72 ucd-wspace-entry-72)
-  (vector-set! ucd-wspace-entries 73 ucd-wspace-entry-73)
-  (vector-set! ucd-wspace-entries 74 ucd-wspace-entry-74)
-  (vector-set! ucd-wspace-entries 75 ucd-wspace-entry-75)
-  (vector-set! ucd-wspace-entries 76 ucd-wspace-entry-76)
-  (vector-set! ucd-wspace-entries 77 ucd-wspace-entry-77)
-  (vector-set! ucd-wspace-entries 78 ucd-wspace-entry-78)
-  (vector-set! ucd-wspace-entries 79 ucd-wspace-entry-79)
-  (vector-set! ucd-wspace-entries 80 ucd-wspace-entry-80)
-  (vector-set! ucd-wspace-entries 81 ucd-wspace-entry-81)
-  (vector-set! ucd-wspace-entries 82 ucd-wspace-entry-82)
-  (vector-set! ucd-wspace-entries 83 ucd-wspace-entry-83)
-  (vector-set! ucd-wspace-entries 84 ucd-wspace-entry-84)
-  (vector-set! ucd-wspace-entries 85 ucd-wspace-entry-85)
-  (vector-set! ucd-wspace-entries 86 ucd-wspace-entry-86)
-  (vector-set! ucd-wspace-entries 87 ucd-wspace-entry-87)
-  (vector-set! ucd-wspace-entries 88 ucd-wspace-entry-88)
-  (vector-set! ucd-wspace-entries 89 ucd-wspace-entry-89)
-  (vector-set! ucd-wspace-entries 90 ucd-wspace-entry-90)
-  (vector-set! ucd-wspace-entries 91 ucd-wspace-entry-91)
-  (vector-set! ucd-wspace-entries 92 ucd-wspace-entry-92)
-  (vector-set! ucd-wspace-entries 93 ucd-wspace-entry-93)
-  (vector-set! ucd-wspace-entries 94 ucd-wspace-entry-94)
-  (vector-set! ucd-wspace-entries 95 ucd-wspace-entry-95)
-  (vector-set! ucd-wspace-entries 96 ucd-wspace-entry-96)
-  (vector-set! ucd-wspace-entries 97 ucd-wspace-entry-97)
-  (vector-set! ucd-wspace-entries 98 ucd-wspace-entry-98)
-  (vector-set! ucd-wspace-entries 99 ucd-wspace-entry-99))
-
-(define (initialize-ucd-wspace-entries-1)
-  (vector-set! ucd-wspace-entries 100 ucd-wspace-entry-100)
-  (vector-set! ucd-wspace-entries 101 ucd-wspace-entry-101)
-  (vector-set! ucd-wspace-entries 102 ucd-wspace-entry-102)
-  (vector-set! ucd-wspace-entries 103 ucd-wspace-entry-103)
-  (vector-set! ucd-wspace-entries 104 ucd-wspace-entry-104)
-  (vector-set! ucd-wspace-entries 105 ucd-wspace-entry-105)
-  (vector-set! ucd-wspace-entries 106 ucd-wspace-entry-106)
-  (vector-set! ucd-wspace-entries 107 ucd-wspace-entry-107)
-  (vector-set! ucd-wspace-entries 108 ucd-wspace-entry-108)
-  (vector-set! ucd-wspace-entries 109 ucd-wspace-entry-109)
-  (vector-set! ucd-wspace-entries 110 ucd-wspace-entry-110)
-  (vector-set! ucd-wspace-entries 111 ucd-wspace-entry-111)
-  (vector-set! ucd-wspace-entries 112 ucd-wspace-entry-112)
-  (vector-set! ucd-wspace-entries 113 ucd-wspace-entry-113)
-  (vector-set! ucd-wspace-entries 114 ucd-wspace-entry-114)
-  (vector-set! ucd-wspace-entries 115 ucd-wspace-entry-115)
-  (vector-set! ucd-wspace-entries 116 ucd-wspace-entry-116)
-  (vector-set! ucd-wspace-entries 117 ucd-wspace-entry-117)
-  (vector-set! ucd-wspace-entries 118 ucd-wspace-entry-118)
-  (vector-set! ucd-wspace-entries 119 ucd-wspace-entry-119)
-  (vector-set! ucd-wspace-entries 120 ucd-wspace-entry-120)
-  (vector-set! ucd-wspace-entries 121 ucd-wspace-entry-121)
-  (vector-set! ucd-wspace-entries 122 ucd-wspace-entry-122)
-  (vector-set! ucd-wspace-entries 123 ucd-wspace-entry-123))
+(define-deferred char-set:white-space
+  (char-set* '((9 . 14) 32 133 160 5760 (8192 . 8203) (8232 . 8234) 8239 8287 12288)))