From cc6f3f69ab636cd9e37adf06b125d9dfe70df7f3 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 10 Jul 2011 08:22:40 -0600 Subject: [PATCH] add `port-set-next-location!'; make prompt read handler use it Closes PR 12035 --- collects/readline/pread.rkt | 2 +- .../scribblings/reference/custom-ports.scrbl | 2 +- collects/scribblings/reference/eval.scrbl | 9 +- .../reference/port-line-counting.scrbl | 17 + .../scribblings/reference/pretty-print.scrbl | 5 +- collects/tests/racket/port.rktl | 24 +- doc/release-notes/racket/HISTORY.txt | 5 + src/racket/include/mzwin.def | 1 + src/racket/include/mzwin3m.def | 1 + src/racket/include/racket.exp | 1 + src/racket/include/racket3m.exp | 1 + src/racket/src/cstartup.inc | 1846 ++++++++--------- src/racket/src/fun.c | 28 +- src/racket/src/port.c | 117 +- src/racket/src/portfun.c | 13 +- src/racket/src/schemef.h | 1 + src/racket/src/schemex.h | 1 + src/racket/src/schemex.inc | 1 + src/racket/src/schemexm.h | 1 + src/racket/src/schminc.h | 2 +- src/racket/src/schvers.h | 4 +- 21 files changed, 1108 insertions(+), 974 deletions(-) diff --git a/collects/readline/pread.rkt b/collects/readline/pread.rkt index a30a6d8765..1587a6cab5 100644 --- a/collects/readline/pread.rkt +++ b/collects/readline/pread.rkt @@ -100,7 +100,7 @@ (define (readline-bytes/hist p force-keep?) (when (eq? readline-output-port (current-output-port)) (let-values ([(line col pos) (port-next-location readline-output-port)]) - (when (< 0 col) (newline readline-output-port)))) + (when (and col (positive? col)) (newline readline-output-port)))) (let ([s (readline-bytes p)]) (add-to-history s force-keep?) s)) (exit-handler diff --git a/collects/scribblings/reference/custom-ports.scrbl b/collects/scribblings/reference/custom-ports.scrbl index a28b36d7a0..2309060275 100644 --- a/collects/scribblings/reference/custom-ports.scrbl +++ b/collects/scribblings/reference/custom-ports.scrbl @@ -4,7 +4,7 @@ @title[#:tag "customport"]{Custom Ports} The @racket[make-input-port] and @racket[make-output-port] procedures -create custom ports with arbitrary control procedures (much like +create @deftech{custom ports} with arbitrary control procedures (much like implementing a device driver). Custom ports are mainly useful to obtain fine control over the action of committing bytes as read or written. diff --git a/collects/scribblings/reference/eval.scrbl b/collects/scribblings/reference/eval.scrbl index c5087a54f5..474401f43b 100644 --- a/collects/scribblings/reference/eval.scrbl +++ b/collects/scribblings/reference/eval.scrbl @@ -329,7 +329,14 @@ result of @racketblock[ (let ([in ((current-get-interaction-input-port))]) ((current-read-interaction) (object-name in) in)) -]} +] + +If the input and output ports are both terminals (in the sense of +@racket[terminal-port?]) and if the output port appears to be counting +lines (because @racket[port-next-location] returns a non-@racket[#f] +line and column), then the output port's line is incremented and its +column is reset to @racket[0] via @racket[set-port-next-location!] +before returning the read result.} @defparam[current-get-interaction-input-port proc (-> input-port?)]{ diff --git a/collects/scribblings/reference/port-line-counting.scrbl b/collects/scribblings/reference/port-line-counting.scrbl index 01a1a712ed..193352c8f8 100644 --- a/collects/scribblings/reference/port-line-counting.scrbl +++ b/collects/scribblings/reference/port-line-counting.scrbl @@ -38,6 +38,11 @@ the port becomes unknown, and line and column tacking is disabled. Return-linefeed combinations are treated as a single character position only when line and column counting is enabled. +@tech{Custom ports} can define their own counting functions, which are +not subject to the rules above, except that the counting functions are +invoked only when tracking is specifically enabled with +@racket[port-count-lines!]. + @;------------------------------------------------------------------------ @defproc[(port-count-lines! [port port?]) void?]{ @@ -81,6 +86,18 @@ Even with line counting enabled, a port may return @racket[#f] values if it somehow cannot keep track of lines, columns, or positions.} +@defproc[(set-port-next-location! [port port?] + [line (or/c exact-positive-integer? #f)] + [column (or/c exact-nonnegative-integer? #f)] + [position (or/c exact-positive-integer? #f)]) + void?]{ + +Sets the next line, column, and position for @racket[port]. If line +counting has not been enabled for @racket[port] or if @racket[port] is +a @tech{custom port} that defines its own counting function, then +@racket[set-port-next-location!] has no effect.} + + @defboolparam[port-count-lines-enabled on?]{ A parameter that determines whether line counting is enabled diff --git a/collects/scribblings/reference/pretty-print.scrbl b/collects/scribblings/reference/pretty-print.scrbl index b62539bade..28f736364b 100644 --- a/collects/scribblings/reference/pretty-print.scrbl +++ b/collects/scribblings/reference/pretty-print.scrbl @@ -14,7 +14,10 @@ default @racket[print] mode, but with newlines and whitespace inserted to avoid lines longer than @racket[(pretty-print-columns)], as controlled by @racket[(pretty-print-current-style-table)]. The printed form ends in a newline, unless the @racket[pretty-print-columns] -parameter is set to @racket['infinity]. +parameter is set to @racket['infinity]. When @racket[port] has line +counting enabled (see @secref["linecol"]), then printing is sensitive +to the column when printing starts---both for determining an initial +line break and indenting subsequent lines. In addition to the parameters defined in this section, @racket[pretty-print] conforms to the @racket[print-graph], diff --git a/collects/tests/racket/port.rktl b/collects/tests/racket/port.rktl index 64fe8fa4e0..9df0ce4366 100644 --- a/collects/tests/racket/port.rktl +++ b/collects/tests/racket/port.rktl @@ -514,7 +514,7 @@ (adjust-locs line col pos))))]) (port-count-lines! p2) p2)))]) - (let ([plain (let ([p (open-input-string "Hello\n\n world")]) + (let ([plain (let ([p (open-input-string "Hello\n\n world 1\n2")]) (port-count-lines! p) p)] [double (mk (lambda (l c p) @@ -536,6 +536,14 @@ (test-values '(#f #f #f) (lambda () (port-next-location none))) (err/rt-test (port-next-location bad)) + ;; `set-port-next-location!' should have no effect on custom ports: + (set-port-next-location! double 1 1 1) + (test-values '(2 10 12) (lambda () (port-next-location double))) + (set-port-next-location! none 1 1 1) + (test-values '(#f #f #f) (lambda () (port-next-location none))) + (set-port-next-location! bad 1 1 1) + (err/rt-test (port-next-location bad)) + (let ([stx (read-syntax #f plain)]) (test 3 syntax-line stx) (test 1 syntax-column stx) @@ -555,7 +563,19 @@ (test-values '(3 6 14) (lambda () (port-next-location plain))) (test-values '(6 12 28) (lambda () (port-next-location double))) - (test-values '(#f #f #f) (lambda () (port-next-location none))))) + (test-values '(#f #f #f) (lambda () (port-next-location none))) + + ;; Check `set-port-next-location!': + (set-port-next-location! plain 100 13 1023) + (test-values '(100 13 1023) (lambda () (port-next-location plain))) + (let ([stx (read-syntax #f plain)]) + (test 100 syntax-line stx) + (test 14 syntax-column stx) + (test 1024 syntax-position stx)) + (let ([stx (read-syntax #f plain)]) + (test 101 syntax-line stx) + (test 0 syntax-column stx) + (test 1026 syntax-position stx)))) ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Check that if the initial commit thread is killed, then diff --git a/doc/release-notes/racket/HISTORY.txt b/doc/release-notes/racket/HISTORY.txt index 6334048ace..fa55fc0dea 100644 --- a/doc/release-notes/racket/HISTORY.txt +++ b/doc/release-notes/racket/HISTORY.txt @@ -1,6 +1,11 @@ +Version 5.1.2.3 +Added set-port-next-location! and changed the default prompt + read handler to use it when input and output ar terminals + Version 5.1.2.2 Changed the location-creation semantics of internal definitions and `letrec-syntaxes+values' +Added unsafe-list-ref and unsafe-list-tail Version 5.1.2, July 2011 Replaced syntax certificates with syntax taints: diff --git a/src/racket/include/mzwin.def b/src/racket/include/mzwin.def index f931bb1a95..891886e259 100644 --- a/src/racket/include/mzwin.def +++ b/src/racket/include/mzwin.def @@ -408,6 +408,7 @@ EXPORTS scheme_tell_line scheme_tell_column scheme_tell_all + scheme_set_port_location scheme_count_lines scheme_close_input_port scheme_close_output_port diff --git a/src/racket/include/mzwin3m.def b/src/racket/include/mzwin3m.def index 0ade8fb507..992ab3d3d6 100644 --- a/src/racket/include/mzwin3m.def +++ b/src/racket/include/mzwin3m.def @@ -423,6 +423,7 @@ EXPORTS scheme_tell_line scheme_tell_column scheme_tell_all + scheme_set_port_location scheme_count_lines scheme_close_input_port scheme_close_output_port diff --git a/src/racket/include/racket.exp b/src/racket/include/racket.exp index 4065f5348f..ed449811c6 100644 --- a/src/racket/include/racket.exp +++ b/src/racket/include/racket.exp @@ -425,6 +425,7 @@ scheme_output_tell scheme_tell_line scheme_tell_column scheme_tell_all +scheme_set_port_location scheme_count_lines scheme_close_input_port scheme_close_output_port diff --git a/src/racket/include/racket3m.exp b/src/racket/include/racket3m.exp index 03eab8c43d..2d728a3cba 100644 --- a/src/racket/include/racket3m.exp +++ b/src/racket/include/racket3m.exp @@ -431,6 +431,7 @@ scheme_output_tell scheme_tell_line scheme_tell_column scheme_tell_all +scheme_set_port_location scheme_count_lines scheme_close_input_port scheme_close_output_port diff --git a/src/racket/src/cstartup.inc b/src/racket/src/cstartup.inc index f5c60c2c58..f0ed743d03 100644 --- a/src/racket/src/cstartup.inc +++ b/src/racket/src/cstartup.inc @@ -1,753 +1,756 @@ { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,53,46,49,46,49,46,49,48,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,51,0,0,0,1,0,0,10,0,13,0, -22,0,26,0,31,0,38,0,45,0,50,0,55,0,59,0,72,0,79,0,82, -0,85,0,91,0,105,0,119,0,122,0,128,0,132,0,134,0,145,0,147,0, -161,0,168,0,190,0,192,0,206,0,17,1,46,1,57,1,68,1,93,1,126, -1,159,1,218,1,17,2,95,2,150,2,155,2,175,2,68,3,88,3,140,3, -206,3,95,4,237,4,34,5,45,5,124,5,0,0,69,7,0,0,69,35,37, -109,105,110,45,115,116,120,29,11,11,68,104,101,114,101,45,115,116,120,63,108, -101,116,64,99,111,110,100,66,117,110,108,101,115,115,66,100,101,102,105,110,101, -64,119,104,101,110,64,108,101,116,42,63,97,110,100,72,112,97,114,97,109,101, -116,101,114,105,122,101,66,108,101,116,114,101,99,62,111,114,29,11,11,65,113, -117,111,116,101,29,94,2,15,68,35,37,107,101,114,110,101,108,11,29,94,2, -15,68,35,37,112,97,114,97,109,122,11,62,105,102,65,98,101,103,105,110,63, -115,116,120,61,115,70,108,101,116,45,118,97,108,117,101,115,61,120,73,108,101, -116,114,101,99,45,118,97,108,117,101,115,66,108,97,109,98,100,97,1,20,112, -97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,45,107,101,121,61,118, -73,100,101,102,105,110,101,45,118,97,108,117,101,115,97,36,11,8,240,65,75, -0,0,95,159,2,17,36,36,159,2,16,36,36,159,2,16,36,36,16,20,2, -4,2,2,2,6,2,2,2,7,2,2,2,8,2,2,2,9,2,2,2,10, -2,2,2,5,2,2,2,11,2,2,2,12,2,2,2,13,2,2,97,37,11, -8,240,65,75,0,0,93,159,2,16,36,37,16,2,2,3,161,2,2,37,2, -3,2,2,2,3,96,38,11,8,240,65,75,0,0,16,0,96,11,11,8,240, -65,75,0,0,16,0,18,98,64,104,101,114,101,13,16,5,36,2,14,2,2, -11,11,8,32,8,31,8,30,8,29,27,248,22,155,4,195,249,22,148,4,80, -158,39,36,251,22,83,2,18,248,22,98,199,12,249,22,73,2,19,248,22,100, -201,27,248,22,155,4,195,249,22,148,4,80,158,39,36,251,22,83,2,18,248, -22,98,199,249,22,73,2,19,248,22,100,201,12,27,248,22,75,248,22,155,4, -196,28,248,22,81,193,20,14,159,37,36,37,28,248,22,81,248,22,75,194,248, -22,74,193,249,22,148,4,80,158,39,36,251,22,83,2,18,248,22,74,199,249, -22,73,2,10,248,22,75,201,11,18,100,10,13,16,5,36,2,14,2,2,11, -11,8,32,8,31,8,30,8,29,16,4,11,11,2,20,3,1,8,101,110,118, -49,51,57,55,51,16,4,11,11,2,21,3,1,8,101,110,118,49,51,57,55, -52,27,248,22,75,248,22,155,4,196,28,248,22,81,193,20,14,159,37,36,37, -28,248,22,81,248,22,75,194,248,22,74,193,249,22,148,4,80,158,39,36,250, -22,83,2,22,248,22,83,249,22,83,248,22,83,2,23,248,22,74,201,251,22, -83,2,18,2,23,2,23,249,22,73,2,13,248,22,75,204,18,100,11,13,16, -5,36,2,14,2,2,11,11,8,32,8,31,8,30,8,29,16,4,11,11,2, -20,3,1,8,101,110,118,49,51,57,55,54,16,4,11,11,2,21,3,1,8, -101,110,118,49,51,57,55,55,248,22,155,4,193,27,248,22,155,4,194,249,22, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,53,46,49,46,50,46,51,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,51,0,0,0,1,0,0,10,0,13,0,22, +0,26,0,31,0,38,0,45,0,50,0,55,0,59,0,72,0,79,0,82,0, +85,0,91,0,105,0,119,0,122,0,128,0,132,0,134,0,145,0,147,0,161, +0,168,0,190,0,192,0,206,0,17,1,46,1,57,1,68,1,93,1,126,1, +159,1,218,1,17,2,95,2,150,2,155,2,175,2,68,3,88,3,140,3,206, +3,95,4,237,4,34,5,45,5,124,5,0,0,69,7,0,0,69,35,37,109, +105,110,45,115,116,120,29,11,11,68,104,101,114,101,45,115,116,120,63,108,101, +116,64,99,111,110,100,66,117,110,108,101,115,115,66,100,101,102,105,110,101,64, +119,104,101,110,64,108,101,116,42,63,97,110,100,72,112,97,114,97,109,101,116, +101,114,105,122,101,66,108,101,116,114,101,99,62,111,114,29,11,11,65,113,117, +111,116,101,29,94,2,15,68,35,37,107,101,114,110,101,108,11,29,94,2,15, +68,35,37,112,97,114,97,109,122,11,62,105,102,65,98,101,103,105,110,63,115, +116,120,61,115,70,108,101,116,45,118,97,108,117,101,115,61,120,73,108,101,116, +114,101,99,45,118,97,108,117,101,115,66,108,97,109,98,100,97,1,20,112,97, +114,97,109,101,116,101,114,105,122,97,116,105,111,110,45,107,101,121,61,118,73, +100,101,102,105,110,101,45,118,97,108,117,101,115,97,36,11,8,240,152,73,0, +0,95,159,2,17,36,36,159,2,16,36,36,159,2,16,36,36,16,20,2,4, +2,2,2,6,2,2,2,7,2,2,2,8,2,2,2,9,2,2,2,10,2, +2,2,5,2,2,2,11,2,2,2,12,2,2,2,13,2,2,97,37,11,8, +240,152,73,0,0,93,159,2,16,36,37,16,2,2,3,161,2,2,37,2,3, +2,2,2,3,96,38,11,8,240,152,73,0,0,16,0,96,11,11,8,240,152, +73,0,0,16,0,18,98,64,104,101,114,101,13,16,5,36,2,14,2,2,11, +11,8,32,8,31,8,30,8,29,27,248,22,155,4,195,249,22,148,4,80,158, +39,36,251,22,83,2,18,248,22,98,199,12,249,22,73,2,19,248,22,100,201, +27,248,22,155,4,195,249,22,148,4,80,158,39,36,251,22,83,2,18,248,22, +98,199,249,22,73,2,19,248,22,100,201,12,27,248,22,75,248,22,155,4,196, +28,248,22,81,193,20,14,159,37,36,37,28,248,22,81,248,22,75,194,248,22, +74,193,249,22,148,4,80,158,39,36,251,22,83,2,18,248,22,74,199,249,22, +73,2,10,248,22,75,201,11,18,100,10,13,16,5,36,2,14,2,2,11,11, +8,32,8,31,8,30,8,29,16,4,11,11,2,20,3,1,8,101,110,118,49, +51,57,54,52,16,4,11,11,2,21,3,1,8,101,110,118,49,51,57,54,53, +27,248,22,75,248,22,155,4,196,28,248,22,81,193,20,14,159,37,36,37,28, +248,22,81,248,22,75,194,248,22,74,193,249,22,148,4,80,158,39,36,250,22, +83,2,22,248,22,83,249,22,83,248,22,83,2,23,248,22,74,201,251,22,83, +2,18,2,23,2,23,249,22,73,2,13,248,22,75,204,18,100,11,13,16,5, +36,2,14,2,2,11,11,8,32,8,31,8,30,8,29,16,4,11,11,2,20, +3,1,8,101,110,118,49,51,57,54,55,16,4,11,11,2,21,3,1,8,101, +110,118,49,51,57,54,56,248,22,155,4,193,27,248,22,155,4,194,249,22,73, +248,22,83,248,22,74,196,248,22,75,195,27,248,22,75,248,22,155,4,23,197, +1,249,22,148,4,80,158,39,36,28,248,22,58,248,22,149,4,248,22,74,23, +198,2,27,249,22,2,32,0,88,163,8,36,37,43,11,9,222,33,40,248,22, +155,4,248,22,98,23,200,2,250,22,83,2,24,248,22,83,249,22,83,248,22, +83,248,22,74,23,204,2,250,22,84,2,25,249,22,2,22,74,23,204,2,248, +22,100,23,206,2,249,22,73,248,22,74,23,202,1,249,22,2,22,98,23,200, +1,250,22,84,2,22,249,22,2,32,0,88,163,8,36,37,47,11,9,222,33, +41,248,22,155,4,248,22,74,201,248,22,75,198,27,248,22,155,4,194,249,22, 73,248,22,83,248,22,74,196,248,22,75,195,27,248,22,75,248,22,155,4,23, -197,1,249,22,148,4,80,158,39,36,28,248,22,58,248,22,149,4,248,22,74, -23,198,2,27,249,22,2,32,0,88,163,8,36,37,43,11,9,222,33,40,248, -22,155,4,248,22,98,23,200,2,250,22,83,2,24,248,22,83,249,22,83,248, -22,83,248,22,74,23,204,2,250,22,84,2,25,249,22,2,22,74,23,204,2, -248,22,100,23,206,2,249,22,73,248,22,74,23,202,1,249,22,2,22,98,23, -200,1,250,22,84,2,22,249,22,2,32,0,88,163,8,36,37,47,11,9,222, -33,41,248,22,155,4,248,22,74,201,248,22,75,198,27,248,22,155,4,194,249, -22,73,248,22,83,248,22,74,196,248,22,75,195,27,248,22,75,248,22,155,4, -23,197,1,249,22,148,4,80,158,39,36,250,22,84,2,24,249,22,2,32,0, -88,163,8,36,37,47,11,9,222,33,43,248,22,155,4,248,22,74,201,248,22, -75,198,27,248,22,75,248,22,155,4,196,27,248,22,155,4,248,22,74,195,249, -22,148,4,80,158,40,36,28,248,22,81,195,250,22,84,2,22,9,248,22,75, -199,250,22,83,2,4,248,22,83,248,22,74,199,250,22,84,2,9,248,22,75, -201,248,22,75,202,27,248,22,75,248,22,155,4,23,197,1,27,249,22,1,22, -87,249,22,2,22,155,4,248,22,155,4,248,22,74,199,248,22,174,4,249,22, -148,4,80,158,41,36,251,22,83,1,22,119,105,116,104,45,99,111,110,116,105, -110,117,97,116,105,111,110,45,109,97,114,107,2,26,250,22,84,1,23,101,120, -116,101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110, -21,95,1,27,99,111,110,116,105,110,117,97,116,105,111,110,45,109,97,114,107, -45,115,101,116,45,102,105,114,115,116,11,2,26,202,250,22,84,2,22,9,248, -22,75,204,27,248,22,75,248,22,155,4,196,28,248,22,81,193,20,14,159,37, -36,37,249,22,148,4,80,158,39,36,27,248,22,155,4,248,22,74,197,28,249, -22,139,9,62,61,62,248,22,149,4,248,22,98,196,250,22,83,2,22,248,22, -83,249,22,83,21,93,2,27,248,22,74,199,250,22,84,2,5,249,22,83,2, -27,249,22,83,248,22,107,203,2,27,248,22,75,202,251,22,83,2,18,28,249, -22,139,9,248,22,149,4,248,22,74,200,64,101,108,115,101,10,248,22,74,197, -250,22,84,2,22,9,248,22,75,200,249,22,73,2,5,248,22,75,202,99,13, -16,5,36,2,14,2,2,11,11,8,32,8,31,8,30,8,29,16,4,11,11, -2,20,3,1,8,101,110,118,49,51,57,57,57,16,4,11,11,2,21,3,1, -8,101,110,118,49,52,48,48,48,18,158,94,10,64,118,111,105,100,8,48,27, -248,22,75,248,22,155,4,196,249,22,148,4,80,158,39,36,28,248,22,58,248, -22,149,4,248,22,74,197,250,22,83,2,28,248,22,83,248,22,74,199,248,22, -98,198,27,248,22,149,4,248,22,74,197,250,22,83,2,28,248,22,83,248,22, -74,197,250,22,84,2,25,248,22,75,199,248,22,75,202,159,36,20,112,159,36, -16,1,11,16,0,20,26,142,2,1,2,1,2,2,11,11,11,10,36,80,158, -36,36,20,112,159,36,16,0,16,0,16,1,2,3,37,16,0,36,16,0,36, -11,11,39,36,11,11,16,10,2,4,2,5,2,6,2,7,2,8,2,9,2, -10,2,11,2,12,2,13,16,10,11,11,11,11,11,11,11,11,11,11,16,10, -2,4,2,5,2,6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,36, -46,37,11,11,16,0,16,0,16,0,36,36,11,11,11,16,0,16,0,16,0, -36,36,16,11,16,5,2,3,20,14,159,36,36,36,36,20,112,159,36,16,0, -16,1,33,33,10,16,5,2,6,88,163,8,36,37,53,37,9,223,0,33,34, -36,20,112,159,36,16,1,2,3,16,0,11,16,5,2,8,88,163,8,36,37, -53,37,9,223,0,33,35,36,20,112,159,36,16,1,2,3,16,0,11,16,5, -2,10,88,163,8,36,37,53,37,9,223,0,33,36,36,20,112,159,36,16,1, -2,3,16,1,33,37,11,16,5,2,13,88,163,8,36,37,56,37,9,223,0, -33,38,36,20,112,159,36,16,1,2,3,16,1,33,39,11,16,5,2,4,88, -163,8,36,37,58,37,9,223,0,33,42,36,20,112,159,36,16,1,2,3,16, -0,11,16,5,2,12,88,163,8,36,37,53,37,9,223,0,33,44,36,20,112, -159,36,16,1,2,3,16,0,11,16,5,2,9,88,163,8,36,37,54,37,9, -223,0,33,45,36,20,112,159,36,16,1,2,3,16,0,11,16,5,2,11,88, -163,8,36,37,56,37,9,223,0,33,46,36,20,112,159,36,16,1,2,3,16, -0,11,16,5,2,5,88,163,8,36,37,58,37,9,223,0,33,47,36,20,112, -159,36,16,1,2,3,16,1,33,49,11,16,5,2,7,88,163,8,36,37,54, -37,9,223,0,33,50,36,20,112,159,36,16,1,2,3,16,0,11,16,0,94, -2,16,2,17,93,2,16,9,9,36,0}; - EVAL_ONE_SIZED_STR((char *)expr, 2005); +197,1,249,22,148,4,80,158,39,36,250,22,84,2,24,249,22,2,32,0,88, +163,8,36,37,47,11,9,222,33,43,248,22,155,4,248,22,74,201,248,22,75, +198,27,248,22,75,248,22,155,4,196,27,248,22,155,4,248,22,74,195,249,22, +148,4,80,158,40,36,28,248,22,81,195,250,22,84,2,22,9,248,22,75,199, +250,22,83,2,4,248,22,83,248,22,74,199,250,22,84,2,9,248,22,75,201, +248,22,75,202,27,248,22,75,248,22,155,4,23,197,1,27,249,22,1,22,87, +249,22,2,22,155,4,248,22,155,4,248,22,74,199,248,22,174,4,249,22,148, +4,80,158,41,36,251,22,83,1,22,119,105,116,104,45,99,111,110,116,105,110, +117,97,116,105,111,110,45,109,97,114,107,2,26,250,22,84,1,23,101,120,116, +101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,21, +95,1,27,99,111,110,116,105,110,117,97,116,105,111,110,45,109,97,114,107,45, +115,101,116,45,102,105,114,115,116,11,2,26,202,250,22,84,2,22,9,248,22, +75,204,27,248,22,75,248,22,155,4,196,28,248,22,81,193,20,14,159,37,36, +37,249,22,148,4,80,158,39,36,27,248,22,155,4,248,22,74,197,28,249,22, +140,9,62,61,62,248,22,149,4,248,22,98,196,250,22,83,2,22,248,22,83, +249,22,83,21,93,2,27,248,22,74,199,250,22,84,2,5,249,22,83,2,27, +249,22,83,248,22,107,203,2,27,248,22,75,202,251,22,83,2,18,28,249,22, +140,9,248,22,149,4,248,22,74,200,64,101,108,115,101,10,248,22,74,197,250, +22,84,2,22,9,248,22,75,200,249,22,73,2,5,248,22,75,202,99,13,16, +5,36,2,14,2,2,11,11,8,32,8,31,8,30,8,29,16,4,11,11,2, +20,3,1,8,101,110,118,49,51,57,57,48,16,4,11,11,2,21,3,1,8, +101,110,118,49,51,57,57,49,18,158,94,10,64,118,111,105,100,8,48,27,248, +22,75,248,22,155,4,196,249,22,148,4,80,158,39,36,28,248,22,58,248,22, +149,4,248,22,74,197,250,22,83,2,28,248,22,83,248,22,74,199,248,22,98, +198,27,248,22,149,4,248,22,74,197,250,22,83,2,28,248,22,83,248,22,74, +197,250,22,84,2,25,248,22,75,199,248,22,75,202,159,36,20,112,159,36,16, +1,11,16,0,20,26,142,2,1,2,1,2,2,11,11,11,10,36,80,158,36, +36,20,112,159,36,16,0,16,0,16,1,2,3,37,16,0,36,16,0,36,11, +11,39,36,11,11,16,10,2,4,2,5,2,6,2,7,2,8,2,9,2,10, +2,11,2,12,2,13,16,10,11,11,11,11,11,11,11,11,11,11,16,10,2, +4,2,5,2,6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,36,46, +37,11,11,16,0,16,0,16,0,36,36,11,11,11,16,0,16,0,16,0,36, +36,16,11,16,5,2,3,20,14,159,36,36,36,36,20,112,159,36,16,0,16, +1,33,33,10,16,5,2,6,88,163,8,36,37,53,37,9,223,0,33,34,36, +20,112,159,36,16,1,2,3,16,0,11,16,5,2,8,88,163,8,36,37,53, +37,9,223,0,33,35,36,20,112,159,36,16,1,2,3,16,0,11,16,5,2, +10,88,163,8,36,37,53,37,9,223,0,33,36,36,20,112,159,36,16,1,2, +3,16,1,33,37,11,16,5,2,13,88,163,8,36,37,56,37,9,223,0,33, +38,36,20,112,159,36,16,1,2,3,16,1,33,39,11,16,5,2,4,88,163, +8,36,37,58,37,9,223,0,33,42,36,20,112,159,36,16,1,2,3,16,0, +11,16,5,2,12,88,163,8,36,37,53,37,9,223,0,33,44,36,20,112,159, +36,16,1,2,3,16,0,11,16,5,2,9,88,163,8,36,37,54,37,9,223, +0,33,45,36,20,112,159,36,16,1,2,3,16,0,11,16,5,2,11,88,163, +8,36,37,56,37,9,223,0,33,46,36,20,112,159,36,16,1,2,3,16,0, +11,16,5,2,5,88,163,8,36,37,58,37,9,223,0,33,47,36,20,112,159, +36,16,1,2,3,16,1,33,49,11,16,5,2,7,88,163,8,36,37,54,37, +9,223,0,33,50,36,20,112,159,36,16,1,2,3,16,0,11,16,0,94,2, +16,2,17,93,2,16,9,9,36,0}; + EVAL_ONE_SIZED_STR((char *)expr, 2004); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,53,46,49,46,49,46,49,48,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,82,0,0,0,1,0,0,8,0,21,0, -26,0,43,0,58,0,76,0,92,0,106,0,128,0,146,0,166,0,182,0,200, -0,231,0,4,1,26,1,40,1,46,1,60,1,65,1,75,1,83,1,111,1, -143,1,188,1,194,1,201,1,207,1,252,1,20,2,59,2,73,2,76,2,79, -2,89,2,100,2,113,2,115,2,117,2,27,3,117,4,231,4,89,5,130,5, -203,6,33,7,119,7,219,7,47,8,61,8,194,8,168,9,252,9,10,10,31, -11,235,11,249,11,141,16,156,17,45,18,30,19,12,20,19,20,98,20,179,20, -6,21,21,21,31,21,164,25,161,30,184,30,201,30,149,32,252,32,10,33,170, -33,107,35,116,35,125,35,151,35,23,36,0,0,131,39,0,0,67,35,37,117, -116,105,108,115,72,112,97,116,104,45,115,116,114,105,110,103,63,64,98,115,98, -115,76,110,111,114,109,97,108,45,99,97,115,101,45,112,97,116,104,74,45,99, -104,101,99,107,45,114,101,108,112,97,116,104,77,45,99,104,101,99,107,45,99, -111,108,108,101,99,116,105,111,110,75,99,111,108,108,101,99,116,105,111,110,45, -112,97,116,104,73,102,105,110,100,45,99,111,108,45,102,105,108,101,1,20,99, -111,108,108,101,99,116,105,111,110,45,102,105,108,101,45,112,97,116,104,77,99, -104,101,99,107,45,115,117,102,102,105,120,45,99,97,108,108,79,112,97,116,104, -45,114,101,112,108,97,99,101,45,115,117,102,102,105,120,75,112,97,116,104,45, -97,100,100,45,115,117,102,102,105,120,77,108,111,97,100,47,117,115,101,45,99, -111,109,112,105,108,101,100,1,29,102,105,110,100,45,108,105,98,114,97,114,121, -45,99,111,108,108,101,99,116,105,111,110,45,112,97,116,104,115,1,27,112,97, -116,104,45,108,105,115,116,45,115,116,114,105,110,103,45,62,112,97,116,104,45, -108,105,115,116,1,20,102,105,110,100,45,101,120,101,99,117,116,97,98,108,101, -45,112,97,116,104,73,101,109,98,101,100,100,101,100,45,108,111,97,100,65,113, -117,111,116,101,29,94,2,18,68,35,37,112,97,114,97,109,122,11,64,108,111, -111,112,69,101,120,101,99,45,102,105,108,101,67,119,105,110,100,111,119,115,6, -25,25,112,97,116,104,32,111,114,32,118,97,108,105,100,45,112,97,116,104,32, -115,116,114,105,110,103,6,29,29,126,97,58,32,105,110,118,97,108,105,100,32, -114,101,108,97,116,105,118,101,32,112,97,116,104,58,32,126,115,6,42,42,126, -97,58,32,99,111,108,108,101,99,116,105,111,110,32,110,111,116,32,102,111,117, -110,100,58,32,126,115,32,105,110,32,97,110,121,32,111,102,58,32,126,115,65, -99,108,111,111,112,6,4,4,46,114,107,116,6,3,3,46,115,115,6,42,42, -112,97,116,104,32,40,102,111,114,32,97,110,121,32,115,121,115,116,101,109,41, -32,111,114,32,118,97,108,105,100,45,112,97,116,104,32,115,116,114,105,110,103, -6,21,21,115,116,114,105,110,103,32,111,114,32,98,121,116,101,32,115,116,114, -105,110,103,6,36,36,99,97,110,110,111,116,32,97,100,100,32,97,32,115,117, -102,102,105,120,32,116,111,32,97,32,114,111,111,116,32,112,97,116,104,58,32, -6,11,11,80,76,84,67,79,76,76,69,67,84,83,6,0,0,6,0,0,69, -97,100,100,111,110,45,100,105,114,6,8,8,99,111,108,108,101,99,116,115,72, -99,111,108,108,101,99,116,115,45,100,105,114,5,0,5,0,27,20,13,159,80, -159,37,52,38,250,80,159,40,53,38,249,22,27,11,80,159,42,52,38,22,183, -13,10,248,22,189,5,23,196,2,28,248,22,188,6,23,194,2,12,86,94,248, -22,147,9,23,194,1,27,20,13,159,80,159,38,52,38,250,80,159,41,53,38, -249,22,27,11,80,159,43,52,38,22,183,13,10,248,22,189,5,23,197,2,28, -248,22,188,6,23,194,2,12,86,94,248,22,147,9,23,194,1,27,20,13,159, -80,159,39,52,38,250,80,159,42,53,38,249,22,27,11,80,159,44,52,38,22, -183,13,10,248,22,189,5,23,198,2,28,248,22,188,6,23,194,2,12,86,94, -248,22,147,9,23,194,1,248,80,159,40,57,37,197,28,248,22,81,23,195,2, -9,27,248,22,74,23,196,2,27,28,248,22,169,14,23,195,2,23,194,1,28, -248,22,168,14,23,195,2,249,22,170,14,23,196,1,250,80,158,43,50,248,22, -185,14,2,21,11,10,250,80,158,41,50,248,22,185,14,2,21,23,197,1,10, -28,23,193,2,249,22,73,248,22,172,14,249,22,170,14,23,198,1,247,22,186, -14,27,248,22,75,23,200,1,28,248,22,81,23,194,2,9,27,248,22,74,23, -195,2,27,28,248,22,169,14,23,195,2,23,194,1,28,248,22,168,14,23,195, -2,249,22,170,14,23,196,1,250,80,158,48,50,248,22,185,14,2,21,11,10, -250,80,158,46,50,248,22,185,14,2,21,23,197,1,10,28,23,193,2,249,22, -73,248,22,172,14,249,22,170,14,23,198,1,247,22,186,14,248,80,159,46,56, -37,248,22,75,23,199,1,86,94,23,193,1,248,80,159,44,56,37,248,22,75, -23,197,1,86,94,23,193,1,27,248,22,75,23,198,1,28,248,22,81,23,194, -2,9,27,248,22,74,23,195,2,27,28,248,22,169,14,23,195,2,23,194,1, -28,248,22,168,14,23,195,2,249,22,170,14,23,196,1,250,80,158,46,50,248, -22,185,14,2,21,11,10,250,80,158,44,50,248,22,185,14,2,21,23,197,1, -10,28,23,193,2,249,22,73,248,22,172,14,249,22,170,14,23,198,1,247,22, -186,14,248,80,159,44,56,37,248,22,75,23,199,1,248,80,159,42,56,37,248, -22,75,196,28,248,22,81,23,195,2,9,27,248,22,74,23,196,2,27,28,248, -22,169,14,23,195,2,23,194,1,28,248,22,168,14,23,195,2,249,22,170,14, -23,196,1,250,80,158,43,50,248,22,185,14,2,21,11,10,250,80,158,41,50, -248,22,185,14,2,21,23,197,1,10,28,23,193,2,249,22,73,248,22,172,14, -249,22,170,14,23,198,1,247,22,186,14,248,80,159,41,55,37,248,22,75,23, -200,1,248,80,159,39,55,37,248,22,75,197,28,248,22,81,23,195,2,9,27, -248,22,74,23,196,2,27,28,248,22,169,14,23,195,2,23,194,1,28,248,22, -168,14,23,195,2,249,22,170,14,23,196,1,250,80,158,43,50,248,22,185,14, -2,21,11,10,250,80,158,41,50,248,22,185,14,2,21,23,197,1,10,28,23, -193,2,249,22,73,248,22,172,14,249,22,170,14,23,198,1,247,22,186,14,248, -80,159,41,54,37,248,22,75,23,200,1,248,80,159,39,54,37,248,22,75,197, -27,248,22,145,14,23,195,2,28,23,193,2,192,86,94,23,193,1,28,248,22, -129,7,23,195,2,27,248,22,167,14,195,28,192,192,248,22,168,14,195,11,86, -94,28,28,248,22,146,14,23,195,2,10,28,248,22,145,14,23,195,2,10,28, -248,22,129,7,23,195,2,28,248,22,167,14,23,195,2,10,248,22,168,14,23, -195,2,11,12,250,22,175,9,76,110,111,114,109,97,108,45,112,97,116,104,45, -99,97,115,101,6,42,42,112,97,116,104,32,40,102,111,114,32,97,110,121,32, -115,121,115,116,101,109,41,32,111,114,32,118,97,108,105,100,45,112,97,116,104, -32,115,116,114,105,110,103,23,197,2,28,28,248,22,146,14,23,195,2,249,22, -139,9,248,22,147,14,23,197,2,2,22,249,22,139,9,247,22,151,8,2,22, -27,28,248,22,129,7,23,196,2,23,195,2,248,22,141,8,248,22,150,14,23, -197,2,28,249,22,136,15,0,21,35,114,120,34,94,91,92,92,93,91,92,92, -93,91,63,93,91,92,92,93,34,23,195,2,28,248,22,129,7,195,248,22,153, -14,195,194,27,248,22,168,7,23,195,1,249,22,154,14,248,22,144,8,250,22, -144,15,0,6,35,114,120,34,47,34,28,249,22,136,15,0,22,35,114,120,34, -91,47,92,92,93,91,46,32,93,43,91,47,92,92,93,42,36,34,23,201,2, -23,199,1,250,22,144,15,0,19,35,114,120,34,91,32,46,93,43,40,91,47, -92,92,93,42,41,36,34,23,202,1,6,2,2,92,49,80,159,44,37,38,2, -22,28,248,22,129,7,194,248,22,153,14,194,193,86,94,28,28,248,22,145,14, -23,195,2,10,28,248,22,129,7,23,195,2,28,248,22,167,14,23,195,2,10, -248,22,168,14,23,195,2,11,12,250,22,175,9,23,196,2,2,23,23,197,2, -28,248,22,167,14,23,195,2,12,248,22,159,12,249,22,165,11,248,22,158,7, -250,22,177,7,2,24,23,200,1,23,201,1,247,22,23,86,94,28,28,248,22, -145,14,23,195,2,10,28,248,22,129,7,23,195,2,28,248,22,167,14,23,195, -2,10,248,22,168,14,23,195,2,11,12,250,22,175,9,23,196,2,2,23,23, -197,2,28,248,22,167,14,23,195,2,12,248,22,159,12,249,22,165,11,248,22, -158,7,250,22,177,7,2,24,23,200,1,23,201,1,247,22,23,86,94,86,94, -28,28,248,22,145,14,23,195,2,10,28,248,22,129,7,23,195,2,28,248,22, -167,14,23,195,2,10,248,22,168,14,23,195,2,11,12,250,22,175,9,195,2, -23,23,197,2,28,248,22,167,14,23,195,2,12,248,22,159,12,249,22,165,11, -248,22,158,7,250,22,177,7,2,24,199,23,201,1,247,22,23,249,22,3,88, -163,8,36,37,50,11,9,223,2,33,47,196,86,94,28,28,248,22,145,14,23, -194,2,10,28,248,22,129,7,23,194,2,28,248,22,167,14,23,194,2,10,248, -22,168,14,23,194,2,11,12,250,22,175,9,2,7,2,23,23,196,2,28,248, -22,167,14,23,194,2,12,248,22,159,12,249,22,165,11,248,22,158,7,250,22, -177,7,2,24,2,7,23,200,1,247,22,23,32,50,88,163,8,36,41,56,11, -2,26,222,33,51,28,248,22,81,23,197,2,86,94,23,196,1,28,23,197,2, -196,86,94,23,197,1,248,22,159,12,249,22,134,12,251,22,177,7,2,25,2, -7,28,248,22,81,23,203,2,86,94,23,202,1,23,201,1,250,22,1,22,163, -14,23,204,1,23,205,1,23,200,1,247,22,23,27,249,22,163,14,248,22,74, -23,200,2,23,197,2,28,248,22,158,14,23,194,2,27,250,22,1,22,163,14, -23,197,1,199,28,248,22,158,14,193,192,252,2,50,199,200,201,248,22,75,203, -203,252,2,50,198,199,200,248,22,75,202,202,86,94,86,94,86,94,28,28,248, -22,145,14,23,194,2,10,28,248,22,129,7,23,194,2,28,248,22,167,14,23, -194,2,10,248,22,168,14,23,194,2,11,12,250,22,175,9,2,7,2,23,23, -196,2,28,248,22,167,14,23,194,2,12,248,22,159,12,249,22,165,11,248,22, -158,7,250,22,177,7,2,24,2,7,23,200,2,247,22,23,249,22,3,32,0, -88,163,8,36,37,49,11,9,222,33,49,23,196,2,27,247,22,187,14,28,248, -22,81,23,194,2,248,22,159,12,249,22,134,12,251,22,177,7,2,25,2,7, -28,248,22,81,23,203,2,86,94,23,202,1,23,201,1,250,22,1,22,163,14, -23,204,1,23,205,1,23,200,1,247,22,23,27,249,22,163,14,248,22,74,23, -197,2,23,197,2,28,248,22,158,14,23,194,2,27,250,22,1,22,163,14,23, -197,1,199,28,248,22,158,14,193,192,252,2,50,199,200,201,248,22,75,200,11, -252,2,50,198,199,200,248,22,75,199,11,86,94,28,28,248,22,145,14,23,194, -2,10,28,248,22,129,7,23,194,2,28,248,22,167,14,23,194,2,10,248,22, -168,14,23,194,2,11,12,250,22,175,9,2,9,2,23,23,196,2,28,248,22, -167,14,23,194,2,12,248,22,159,12,249,22,165,11,248,22,158,7,250,22,177, -7,2,24,2,9,23,200,1,247,22,23,32,54,88,163,8,36,42,59,11,2, -26,222,33,55,28,248,22,81,23,198,2,86,95,23,197,1,23,194,1,28,23, -198,2,197,86,94,23,198,1,248,22,159,12,249,22,134,12,251,22,177,7,2, -25,2,9,28,248,22,81,23,204,2,86,94,23,203,1,23,202,1,250,22,1, -22,163,14,23,205,1,23,206,1,23,200,1,247,22,23,27,249,22,163,14,248, -22,74,23,201,2,23,198,2,28,248,22,158,14,23,194,2,27,250,22,1,22, -163,14,23,197,1,23,201,2,28,248,22,158,14,23,194,2,28,23,196,2,28, -28,248,22,157,14,249,22,163,14,195,198,10,27,28,248,22,145,14,197,248,22, -149,14,197,196,27,248,22,132,7,23,195,2,27,28,249,22,188,3,23,196,2, -40,28,249,22,135,7,2,27,249,22,151,7,23,199,2,249,22,176,3,23,200, -2,40,249,22,152,7,250,22,151,7,23,200,1,36,249,22,176,3,23,201,1, -40,2,28,86,95,23,195,1,23,194,1,11,11,28,23,193,2,248,22,157,14, -249,22,163,14,198,23,196,1,11,192,253,2,54,200,201,202,203,248,22,75,205, -28,205,205,198,192,253,2,54,200,201,202,203,248,22,75,205,205,253,2,54,199, -200,201,202,248,22,75,204,204,86,95,86,94,28,28,248,22,145,14,193,10,28, -248,22,129,7,193,28,248,22,167,14,193,10,248,22,168,14,193,11,12,250,22, -175,9,2,9,2,23,195,28,248,22,167,14,193,12,248,22,159,12,249,22,165, -11,248,22,158,7,250,22,177,7,2,24,2,9,199,247,22,23,86,94,86,94, -28,28,248,22,145,14,23,195,2,10,28,248,22,129,7,23,195,2,28,248,22, -167,14,23,195,2,10,248,22,168,14,23,195,2,11,12,250,22,175,9,2,9, -2,23,23,197,2,28,248,22,167,14,23,195,2,12,248,22,159,12,249,22,165, -11,248,22,158,7,250,22,177,7,2,24,2,9,23,201,2,247,22,23,249,22, -3,32,0,88,163,8,36,37,49,11,9,222,33,53,23,197,2,249,22,163,14, -27,247,22,187,14,253,2,54,23,199,2,201,23,203,1,23,204,1,23,199,1, -11,194,32,57,88,163,36,44,8,29,11,2,26,222,33,58,28,248,22,81,23, -200,2,86,95,23,199,1,23,198,1,28,23,200,2,199,86,94,23,200,1,248, -23,196,1,251,22,177,7,2,25,23,199,1,28,248,22,81,23,203,2,86,94, -23,202,1,23,201,1,250,22,1,22,163,14,23,204,1,23,205,1,23,198,1, -27,249,22,163,14,248,22,74,23,203,2,23,199,2,28,248,22,158,14,23,194, -2,27,250,22,1,22,163,14,23,197,1,23,202,2,28,248,22,158,14,23,194, -2,28,23,200,2,28,28,248,22,157,14,249,22,163,14,23,196,2,23,203,2, -10,27,28,248,22,145,14,23,202,2,248,22,149,14,23,202,2,23,201,2,27, -248,22,132,7,23,195,2,27,28,249,22,188,3,23,196,2,40,28,249,22,135, -7,2,27,249,22,151,7,23,199,2,249,22,176,3,23,200,2,40,249,22,152, -7,250,22,151,7,23,200,1,36,249,22,176,3,23,201,1,40,2,28,86,95, -23,195,1,23,194,1,11,11,28,23,193,2,248,22,157,14,249,22,163,14,23, -199,2,23,196,1,11,192,27,248,22,75,23,203,1,27,28,23,204,2,86,94, -23,195,1,23,204,1,86,94,23,204,1,23,195,1,28,248,22,81,23,195,2, -86,95,23,202,1,23,194,1,28,23,193,2,192,86,94,23,193,1,248,23,200, -1,251,22,177,7,2,25,23,203,1,28,248,22,81,23,207,2,86,94,23,206, -1,23,205,1,250,22,1,22,163,14,23,208,1,23,209,1,23,202,1,27,249, -22,163,14,248,22,74,23,198,2,23,203,2,28,248,22,158,14,23,194,2,27, -250,22,1,22,163,14,23,197,1,23,206,2,28,248,22,158,14,23,194,2,28, -23,204,2,28,28,248,22,157,14,249,22,163,14,195,206,10,27,28,248,22,145, -14,205,248,22,149,14,205,204,27,248,22,132,7,23,195,2,27,28,249,22,188, -3,23,196,2,40,28,249,22,135,7,2,27,249,22,151,7,23,199,2,249,22, -176,3,23,200,2,40,249,22,152,7,250,22,151,7,23,200,1,36,249,22,176, -3,23,201,1,40,2,28,86,95,23,195,1,23,194,1,11,11,28,23,193,2, -248,22,157,14,249,22,163,14,198,23,196,1,11,192,26,8,2,57,206,23,15, -23,16,23,17,23,18,23,19,248,22,75,204,28,202,202,200,192,26,8,2,57, -206,23,15,23,16,23,17,23,18,23,19,248,22,75,204,202,26,8,2,57,205, -206,23,15,23,16,23,17,23,18,248,22,75,203,201,192,27,248,22,75,23,203, -1,28,248,22,81,23,194,2,86,95,23,201,1,23,193,1,28,23,203,2,202, -86,94,23,203,1,248,23,199,1,251,22,177,7,2,25,23,202,1,28,248,22, -81,23,206,2,86,94,23,205,1,23,204,1,250,22,1,22,163,14,23,207,1, -23,208,1,23,201,1,27,249,22,163,14,248,22,74,23,197,2,23,202,2,28, -248,22,158,14,23,194,2,27,250,22,1,22,163,14,23,197,1,23,205,2,28, -248,22,158,14,23,194,2,28,23,203,2,28,28,248,22,157,14,249,22,163,14, -195,205,10,27,28,248,22,145,14,204,248,22,149,14,204,203,27,248,22,132,7, -23,195,2,27,28,249,22,188,3,23,196,2,40,28,249,22,135,7,2,27,249, -22,151,7,23,199,2,249,22,176,3,23,200,2,40,249,22,152,7,250,22,151, -7,23,200,1,36,249,22,176,3,23,201,1,40,2,28,86,95,23,195,1,23, -194,1,11,11,28,23,193,2,248,22,157,14,249,22,163,14,198,23,196,1,11, -192,26,8,2,57,205,206,23,15,23,16,23,17,23,18,248,22,75,203,28,23, -20,23,20,200,192,26,8,2,57,205,206,23,15,23,16,23,17,23,18,248,22, -75,203,23,20,26,8,2,57,204,205,206,23,15,23,16,23,17,248,22,75,202, -23,19,86,94,23,193,1,27,248,22,75,23,202,1,28,248,22,81,23,194,2, -86,95,23,200,1,23,193,1,28,23,202,2,201,86,94,23,202,1,248,23,198, -1,251,22,177,7,2,25,23,201,1,28,248,22,81,23,205,2,86,94,23,204, -1,23,203,1,250,22,1,22,163,14,23,206,1,23,207,1,23,200,1,27,249, -22,163,14,248,22,74,23,197,2,23,201,2,28,248,22,158,14,23,194,2,27, -250,22,1,22,163,14,23,197,1,23,204,2,28,248,22,158,14,23,194,2,28, -23,202,2,28,28,248,22,157,14,249,22,163,14,195,204,10,27,28,248,22,145, -14,203,248,22,149,14,203,202,27,248,22,132,7,23,195,2,27,28,249,22,188, -3,23,196,2,40,28,249,22,135,7,2,27,249,22,151,7,23,199,2,249,22, -176,3,23,200,2,40,249,22,152,7,250,22,151,7,23,200,1,36,249,22,176, -3,23,201,1,40,2,28,86,95,23,195,1,23,194,1,11,11,28,23,193,2, -248,22,157,14,249,22,163,14,198,23,196,1,11,192,26,8,2,57,204,205,206, -23,15,23,16,23,17,248,22,75,203,28,23,19,23,19,200,192,26,8,2,57, -204,205,206,23,15,23,16,23,17,248,22,75,203,23,19,26,8,2,57,203,204, -205,206,23,15,23,16,248,22,75,202,23,18,27,247,22,187,14,28,248,22,81, -23,194,2,86,94,23,198,1,248,23,196,1,251,22,177,7,2,25,23,199,1, -28,248,22,81,23,203,2,86,94,23,202,1,23,201,1,250,22,1,22,163,14, -23,204,1,23,205,1,23,198,1,27,249,22,163,14,248,22,74,23,197,2,23, -199,2,28,248,22,158,14,23,194,2,27,250,22,1,22,163,14,23,197,1,23, -202,2,28,248,22,158,14,23,194,2,28,23,200,2,28,28,248,22,157,14,249, -22,163,14,195,202,10,27,28,248,22,145,14,201,248,22,149,14,201,200,27,248, -22,132,7,23,195,2,27,28,249,22,188,3,23,196,2,40,28,249,22,135,7, -2,27,249,22,151,7,23,199,2,249,22,176,3,23,200,2,40,249,22,152,7, -250,22,151,7,23,200,1,36,249,22,176,3,23,201,1,40,2,28,86,95,23, -195,1,23,194,1,11,11,28,23,193,2,248,22,157,14,249,22,163,14,198,23, -196,1,11,192,26,8,2,57,202,203,204,205,206,23,15,248,22,75,203,200,192, -26,8,2,57,202,203,204,205,206,23,15,248,22,75,203,11,26,8,2,57,201, -202,203,204,205,206,248,22,75,202,11,86,95,28,28,248,22,146,14,23,194,2, -10,28,248,22,145,14,23,194,2,10,28,248,22,129,7,23,194,2,28,248,22, -167,14,23,194,2,10,248,22,168,14,23,194,2,11,12,252,22,175,9,23,200, -2,2,29,36,23,198,2,23,199,2,28,28,248,22,129,7,23,195,2,10,248, -22,182,7,23,195,2,86,94,23,194,1,12,252,22,175,9,23,200,2,2,30, -37,23,198,2,23,199,1,90,159,39,11,89,161,39,36,11,248,22,166,14,23, -197,2,86,94,23,195,1,86,94,28,192,12,250,22,176,9,23,201,1,2,31, -23,199,1,249,22,7,194,195,90,159,38,11,89,161,38,36,11,86,95,28,28, -248,22,146,14,23,196,2,10,28,248,22,145,14,23,196,2,10,28,248,22,129, -7,23,196,2,28,248,22,167,14,23,196,2,10,248,22,168,14,23,196,2,11, -12,252,22,175,9,2,11,2,29,36,23,200,2,23,201,2,28,28,248,22,129, -7,23,197,2,10,248,22,182,7,23,197,2,12,252,22,175,9,2,11,2,30, -37,23,200,2,23,201,2,90,159,39,11,89,161,39,36,11,248,22,166,14,23, -199,2,86,94,23,195,1,86,94,28,192,12,250,22,176,9,2,11,2,31,23, -201,2,249,22,7,194,195,27,249,22,155,14,250,22,143,15,0,20,35,114,120, -35,34,40,63,58,91,46,93,91,94,46,93,42,124,41,36,34,248,22,151,14, -23,201,1,28,248,22,129,7,23,203,2,249,22,144,8,23,204,1,8,63,23, -202,1,28,248,22,146,14,23,199,2,248,22,147,14,23,199,1,86,94,23,198, -1,247,22,148,14,28,248,22,145,14,194,249,22,163,14,195,194,192,90,159,38, -11,89,161,38,36,11,86,95,28,28,248,22,146,14,23,196,2,10,28,248,22, -145,14,23,196,2,10,28,248,22,129,7,23,196,2,28,248,22,167,14,23,196, -2,10,248,22,168,14,23,196,2,11,12,252,22,175,9,2,12,2,29,36,23, -200,2,23,201,2,28,28,248,22,129,7,23,197,2,10,248,22,182,7,23,197, -2,12,252,22,175,9,2,12,2,30,37,23,200,2,23,201,2,90,159,39,11, -89,161,39,36,11,248,22,166,14,23,199,2,86,94,23,195,1,86,94,28,192, -12,250,22,176,9,2,12,2,31,23,201,2,249,22,7,194,195,27,249,22,155, -14,249,22,130,8,250,22,144,15,0,9,35,114,120,35,34,91,46,93,34,248, -22,151,14,23,203,1,6,1,1,95,28,248,22,129,7,23,202,2,249,22,144, -8,23,203,1,8,63,23,201,1,28,248,22,146,14,23,199,2,248,22,147,14, -23,199,1,86,94,23,198,1,247,22,148,14,28,248,22,145,14,194,249,22,163, -14,195,194,192,249,247,22,158,5,194,11,27,247,22,189,14,249,80,158,39,49, -28,23,195,2,27,248,22,149,8,2,32,28,192,192,2,33,2,34,27,28,23, -196,1,250,22,163,14,248,22,185,14,2,35,247,22,147,8,2,36,11,27,248, -80,159,42,54,37,250,22,87,9,248,22,83,248,22,185,14,2,37,9,28,193, -249,22,73,195,194,192,27,247,22,189,14,249,80,158,39,49,28,23,195,2,27, -248,22,149,8,2,32,28,192,192,2,33,2,34,27,28,23,196,1,250,22,163, -14,248,22,185,14,2,35,247,22,147,8,2,36,11,27,248,80,159,42,55,37, -250,22,87,23,203,1,248,22,83,248,22,185,14,2,37,9,28,193,249,22,73, -195,194,192,27,247,22,189,14,249,80,158,39,49,28,23,195,2,27,248,22,149, -8,2,32,28,192,192,2,33,2,34,27,28,23,196,1,250,22,163,14,248,22, -185,14,2,35,247,22,147,8,2,36,11,27,248,80,159,42,56,37,250,22,87, -23,203,1,248,22,83,248,22,185,14,2,37,23,204,1,28,193,249,22,73,195, -194,192,32,67,88,163,8,36,39,8,45,11,2,20,222,33,69,0,8,35,114, -120,35,34,92,34,34,27,249,22,132,15,23,197,2,23,198,2,28,23,193,2, -86,94,23,196,1,27,248,22,98,23,195,2,27,27,248,22,107,23,197,1,27, -249,22,132,15,23,201,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248, -22,98,23,195,2,27,27,248,22,107,23,197,1,27,249,22,132,15,23,205,2, -23,196,2,28,23,193,2,86,94,23,194,1,27,248,22,98,23,195,2,27,27, -248,22,107,23,197,1,27,249,22,132,15,23,209,2,23,196,2,28,23,193,2, -86,94,23,194,1,27,248,22,98,23,195,2,27,27,248,22,107,23,197,1,27, -249,22,132,15,23,213,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248, -22,98,23,195,2,27,27,248,22,107,23,197,1,27,249,22,132,15,23,217,2, -23,196,2,28,23,193,2,86,94,23,194,1,27,248,22,98,23,195,2,27,27, -248,22,107,23,197,1,27,249,22,132,15,23,221,2,23,196,2,28,23,193,2, -86,94,23,194,1,27,248,22,98,23,195,2,27,27,248,22,107,23,197,1,27, -249,22,132,15,23,224,33,0,0,0,2,23,196,2,28,23,193,2,86,94,23, -194,1,27,248,22,98,23,195,2,27,250,2,67,23,224,35,0,0,0,2,23, -224,36,0,0,0,1,248,22,107,23,199,1,28,249,22,190,7,23,196,2,2, -38,249,22,87,23,224,34,0,0,0,2,194,249,22,73,248,22,154,14,28,249, -22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23, -197,1,194,86,95,23,223,1,23,193,1,28,249,22,190,7,23,196,2,2,38, -249,22,87,23,224,32,0,0,0,2,9,249,22,73,248,22,154,14,28,249,22, -139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197, -1,9,28,249,22,190,7,23,196,2,2,38,249,22,87,23,222,2,194,249,22, -73,248,22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2, -68,23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23, -196,2,2,38,249,22,87,23,220,2,9,249,22,73,248,22,154,14,28,249,22, -139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197, -1,9,28,249,22,190,7,23,196,2,2,38,249,22,87,23,218,2,194,249,22, -73,248,22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2, -68,23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23, -196,2,2,38,249,22,87,23,216,2,9,249,22,73,248,22,154,14,28,249,22, -139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197, -1,9,28,249,22,190,7,23,196,2,2,38,249,22,87,23,214,2,194,249,22, -73,248,22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2, -68,23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23, -196,2,2,38,249,22,87,23,212,2,9,249,22,73,248,22,154,14,28,249,22, -139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197, -1,9,28,249,22,190,7,23,196,2,2,38,249,22,87,23,210,2,194,249,22, -73,248,22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2, -68,23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23, -196,2,2,38,249,22,87,23,208,2,9,249,22,73,248,22,154,14,28,249,22, -139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197, -1,9,28,249,22,190,7,23,196,2,2,38,249,22,87,23,206,2,194,249,22, -73,248,22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2, -68,23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23, -196,2,2,38,249,22,87,23,204,2,9,249,22,73,248,22,154,14,28,249,22, -139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197, -1,9,28,249,22,190,7,23,196,2,2,38,249,22,87,23,202,2,194,249,22, -73,248,22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2, -68,23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23, -196,2,2,38,249,22,87,23,200,2,9,249,22,73,248,22,154,14,28,249,22, -139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197, -1,9,28,249,22,190,7,23,196,2,2,38,249,22,87,197,194,86,94,23,196, -1,249,22,73,248,22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22, -144,15,2,68,23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22, -190,7,23,198,2,2,38,249,22,87,195,9,86,94,23,194,1,249,22,73,248, -22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23, -202,1,2,39,23,199,1,9,86,95,28,28,248,22,182,7,23,195,2,10,248, -22,129,7,23,195,2,12,250,22,175,9,2,15,6,21,21,98,121,116,101,32, -115,116,114,105,110,103,32,111,114,32,115,116,114,105,110,103,23,197,2,28,28, -248,22,82,23,196,2,249,22,4,22,145,14,23,197,2,11,12,250,22,175,9, -2,15,6,13,13,108,105,115,116,32,111,102,32,112,97,116,104,115,23,198,2, -27,28,248,22,129,7,23,196,2,248,22,143,8,23,196,1,23,195,1,27,249, -22,132,15,23,197,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22, -98,23,195,2,27,27,248,22,107,23,197,1,27,249,22,132,15,23,201,2,23, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,53,46,49,46,50,46,51,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,82,0,0,0,1,0,0,8,0,21,0,26, +0,43,0,58,0,76,0,92,0,106,0,128,0,146,0,166,0,182,0,200,0, +231,0,4,1,26,1,40,1,46,1,60,1,65,1,75,1,83,1,111,1,143, +1,188,1,194,1,201,1,207,1,252,1,20,2,59,2,73,2,76,2,79,2, +89,2,100,2,113,2,115,2,117,2,27,3,117,4,231,4,89,5,130,5,203, +6,33,7,119,7,219,7,47,8,61,8,194,8,168,9,252,9,10,10,31,11, +235,11,249,11,141,16,156,17,45,18,30,19,12,20,19,20,98,20,179,20,6, +21,21,21,31,21,164,25,161,30,184,30,201,30,149,32,252,32,10,33,170,33, +107,35,116,35,125,35,151,35,23,36,0,0,131,39,0,0,67,35,37,117,116, +105,108,115,72,112,97,116,104,45,115,116,114,105,110,103,63,64,98,115,98,115, +76,110,111,114,109,97,108,45,99,97,115,101,45,112,97,116,104,74,45,99,104, +101,99,107,45,114,101,108,112,97,116,104,77,45,99,104,101,99,107,45,99,111, +108,108,101,99,116,105,111,110,75,99,111,108,108,101,99,116,105,111,110,45,112, +97,116,104,73,102,105,110,100,45,99,111,108,45,102,105,108,101,1,20,99,111, +108,108,101,99,116,105,111,110,45,102,105,108,101,45,112,97,116,104,77,99,104, +101,99,107,45,115,117,102,102,105,120,45,99,97,108,108,79,112,97,116,104,45, +114,101,112,108,97,99,101,45,115,117,102,102,105,120,75,112,97,116,104,45,97, +100,100,45,115,117,102,102,105,120,77,108,111,97,100,47,117,115,101,45,99,111, +109,112,105,108,101,100,1,29,102,105,110,100,45,108,105,98,114,97,114,121,45, +99,111,108,108,101,99,116,105,111,110,45,112,97,116,104,115,1,27,112,97,116, +104,45,108,105,115,116,45,115,116,114,105,110,103,45,62,112,97,116,104,45,108, +105,115,116,1,20,102,105,110,100,45,101,120,101,99,117,116,97,98,108,101,45, +112,97,116,104,73,101,109,98,101,100,100,101,100,45,108,111,97,100,65,113,117, +111,116,101,29,94,2,18,68,35,37,112,97,114,97,109,122,11,64,108,111,111, +112,69,101,120,101,99,45,102,105,108,101,67,119,105,110,100,111,119,115,6,25, +25,112,97,116,104,32,111,114,32,118,97,108,105,100,45,112,97,116,104,32,115, +116,114,105,110,103,6,29,29,126,97,58,32,105,110,118,97,108,105,100,32,114, +101,108,97,116,105,118,101,32,112,97,116,104,58,32,126,115,6,42,42,126,97, +58,32,99,111,108,108,101,99,116,105,111,110,32,110,111,116,32,102,111,117,110, +100,58,32,126,115,32,105,110,32,97,110,121,32,111,102,58,32,126,115,65,99, +108,111,111,112,6,4,4,46,114,107,116,6,3,3,46,115,115,6,42,42,112, +97,116,104,32,40,102,111,114,32,97,110,121,32,115,121,115,116,101,109,41,32, +111,114,32,118,97,108,105,100,45,112,97,116,104,32,115,116,114,105,110,103,6, +21,21,115,116,114,105,110,103,32,111,114,32,98,121,116,101,32,115,116,114,105, +110,103,6,36,36,99,97,110,110,111,116,32,97,100,100,32,97,32,115,117,102, +102,105,120,32,116,111,32,97,32,114,111,111,116,32,112,97,116,104,58,32,6, +11,11,80,76,84,67,79,76,76,69,67,84,83,6,0,0,6,0,0,69,97, +100,100,111,110,45,100,105,114,6,8,8,99,111,108,108,101,99,116,115,72,99, +111,108,108,101,99,116,115,45,100,105,114,5,0,5,0,27,20,13,159,80,159, +37,52,38,250,80,159,40,53,38,249,22,27,11,80,159,42,52,38,22,184,13, +10,248,22,190,5,23,196,2,28,248,22,189,6,23,194,2,12,86,94,248,22, +148,9,23,194,1,27,20,13,159,80,159,38,52,38,250,80,159,41,53,38,249, +22,27,11,80,159,43,52,38,22,184,13,10,248,22,190,5,23,197,2,28,248, +22,189,6,23,194,2,12,86,94,248,22,148,9,23,194,1,27,20,13,159,80, +159,39,52,38,250,80,159,42,53,38,249,22,27,11,80,159,44,52,38,22,184, +13,10,248,22,190,5,23,198,2,28,248,22,189,6,23,194,2,12,86,94,248, +22,148,9,23,194,1,248,80,159,40,57,37,197,28,248,22,81,23,195,2,9, +27,248,22,74,23,196,2,27,28,248,22,170,14,23,195,2,23,194,1,28,248, +22,169,14,23,195,2,249,22,171,14,23,196,1,250,80,158,43,50,248,22,186, +14,2,21,11,10,250,80,158,41,50,248,22,186,14,2,21,23,197,1,10,28, +23,193,2,249,22,73,248,22,173,14,249,22,171,14,23,198,1,247,22,187,14, +27,248,22,75,23,200,1,28,248,22,81,23,194,2,9,27,248,22,74,23,195, +2,27,28,248,22,170,14,23,195,2,23,194,1,28,248,22,169,14,23,195,2, +249,22,171,14,23,196,1,250,80,158,48,50,248,22,186,14,2,21,11,10,250, +80,158,46,50,248,22,186,14,2,21,23,197,1,10,28,23,193,2,249,22,73, +248,22,173,14,249,22,171,14,23,198,1,247,22,187,14,248,80,159,46,56,37, +248,22,75,23,199,1,86,94,23,193,1,248,80,159,44,56,37,248,22,75,23, +197,1,86,94,23,193,1,27,248,22,75,23,198,1,28,248,22,81,23,194,2, +9,27,248,22,74,23,195,2,27,28,248,22,170,14,23,195,2,23,194,1,28, +248,22,169,14,23,195,2,249,22,171,14,23,196,1,250,80,158,46,50,248,22, +186,14,2,21,11,10,250,80,158,44,50,248,22,186,14,2,21,23,197,1,10, +28,23,193,2,249,22,73,248,22,173,14,249,22,171,14,23,198,1,247,22,187, +14,248,80,159,44,56,37,248,22,75,23,199,1,248,80,159,42,56,37,248,22, +75,196,28,248,22,81,23,195,2,9,27,248,22,74,23,196,2,27,28,248,22, +170,14,23,195,2,23,194,1,28,248,22,169,14,23,195,2,249,22,171,14,23, +196,1,250,80,158,43,50,248,22,186,14,2,21,11,10,250,80,158,41,50,248, +22,186,14,2,21,23,197,1,10,28,23,193,2,249,22,73,248,22,173,14,249, +22,171,14,23,198,1,247,22,187,14,248,80,159,41,55,37,248,22,75,23,200, +1,248,80,159,39,55,37,248,22,75,197,28,248,22,81,23,195,2,9,27,248, +22,74,23,196,2,27,28,248,22,170,14,23,195,2,23,194,1,28,248,22,169, +14,23,195,2,249,22,171,14,23,196,1,250,80,158,43,50,248,22,186,14,2, +21,11,10,250,80,158,41,50,248,22,186,14,2,21,23,197,1,10,28,23,193, +2,249,22,73,248,22,173,14,249,22,171,14,23,198,1,247,22,187,14,248,80, +159,41,54,37,248,22,75,23,200,1,248,80,159,39,54,37,248,22,75,197,27, +248,22,146,14,23,195,2,28,23,193,2,192,86,94,23,193,1,28,248,22,130, +7,23,195,2,27,248,22,168,14,195,28,192,192,248,22,169,14,195,11,86,94, +28,28,248,22,147,14,23,195,2,10,28,248,22,146,14,23,195,2,10,28,248, +22,130,7,23,195,2,28,248,22,168,14,23,195,2,10,248,22,169,14,23,195, +2,11,12,250,22,176,9,76,110,111,114,109,97,108,45,112,97,116,104,45,99, +97,115,101,6,42,42,112,97,116,104,32,40,102,111,114,32,97,110,121,32,115, +121,115,116,101,109,41,32,111,114,32,118,97,108,105,100,45,112,97,116,104,32, +115,116,114,105,110,103,23,197,2,28,28,248,22,147,14,23,195,2,249,22,140, +9,248,22,148,14,23,197,2,2,22,249,22,140,9,247,22,152,8,2,22,27, +28,248,22,130,7,23,196,2,23,195,2,248,22,142,8,248,22,151,14,23,197, +2,28,249,22,137,15,0,21,35,114,120,34,94,91,92,92,93,91,92,92,93, +91,63,93,91,92,92,93,34,23,195,2,28,248,22,130,7,195,248,22,154,14, +195,194,27,248,22,169,7,23,195,1,249,22,155,14,248,22,145,8,250,22,145, +15,0,6,35,114,120,34,47,34,28,249,22,137,15,0,22,35,114,120,34,91, +47,92,92,93,91,46,32,93,43,91,47,92,92,93,42,36,34,23,201,2,23, +199,1,250,22,145,15,0,19,35,114,120,34,91,32,46,93,43,40,91,47,92, +92,93,42,41,36,34,23,202,1,6,2,2,92,49,80,159,44,37,38,2,22, +28,248,22,130,7,194,248,22,154,14,194,193,86,94,28,28,248,22,146,14,23, +195,2,10,28,248,22,130,7,23,195,2,28,248,22,168,14,23,195,2,10,248, +22,169,14,23,195,2,11,12,250,22,176,9,23,196,2,2,23,23,197,2,28, +248,22,168,14,23,195,2,12,248,22,160,12,249,22,166,11,248,22,159,7,250, +22,178,7,2,24,23,200,1,23,201,1,247,22,23,86,94,28,28,248,22,146, +14,23,195,2,10,28,248,22,130,7,23,195,2,28,248,22,168,14,23,195,2, +10,248,22,169,14,23,195,2,11,12,250,22,176,9,23,196,2,2,23,23,197, +2,28,248,22,168,14,23,195,2,12,248,22,160,12,249,22,166,11,248,22,159, +7,250,22,178,7,2,24,23,200,1,23,201,1,247,22,23,86,94,86,94,28, +28,248,22,146,14,23,195,2,10,28,248,22,130,7,23,195,2,28,248,22,168, +14,23,195,2,10,248,22,169,14,23,195,2,11,12,250,22,176,9,195,2,23, +23,197,2,28,248,22,168,14,23,195,2,12,248,22,160,12,249,22,166,11,248, +22,159,7,250,22,178,7,2,24,199,23,201,1,247,22,23,249,22,3,88,163, +8,36,37,50,11,9,223,2,33,47,196,86,94,28,28,248,22,146,14,23,194, +2,10,28,248,22,130,7,23,194,2,28,248,22,168,14,23,194,2,10,248,22, +169,14,23,194,2,11,12,250,22,176,9,2,7,2,23,23,196,2,28,248,22, +168,14,23,194,2,12,248,22,160,12,249,22,166,11,248,22,159,7,250,22,178, +7,2,24,2,7,23,200,1,247,22,23,32,50,88,163,8,36,41,56,11,2, +26,222,33,51,28,248,22,81,23,197,2,86,94,23,196,1,28,23,197,2,196, +86,94,23,197,1,248,22,160,12,249,22,135,12,251,22,178,7,2,25,2,7, +28,248,22,81,23,203,2,86,94,23,202,1,23,201,1,250,22,1,22,164,14, +23,204,1,23,205,1,23,200,1,247,22,23,27,249,22,164,14,248,22,74,23, +200,2,23,197,2,28,248,22,159,14,23,194,2,27,250,22,1,22,164,14,23, +197,1,199,28,248,22,159,14,193,192,252,2,50,199,200,201,248,22,75,203,203, +252,2,50,198,199,200,248,22,75,202,202,86,94,86,94,86,94,28,28,248,22, +146,14,23,194,2,10,28,248,22,130,7,23,194,2,28,248,22,168,14,23,194, +2,10,248,22,169,14,23,194,2,11,12,250,22,176,9,2,7,2,23,23,196, +2,28,248,22,168,14,23,194,2,12,248,22,160,12,249,22,166,11,248,22,159, +7,250,22,178,7,2,24,2,7,23,200,2,247,22,23,249,22,3,32,0,88, +163,8,36,37,49,11,9,222,33,49,23,196,2,27,247,22,188,14,28,248,22, +81,23,194,2,248,22,160,12,249,22,135,12,251,22,178,7,2,25,2,7,28, +248,22,81,23,203,2,86,94,23,202,1,23,201,1,250,22,1,22,164,14,23, +204,1,23,205,1,23,200,1,247,22,23,27,249,22,164,14,248,22,74,23,197, +2,23,197,2,28,248,22,159,14,23,194,2,27,250,22,1,22,164,14,23,197, +1,199,28,248,22,159,14,193,192,252,2,50,199,200,201,248,22,75,200,11,252, +2,50,198,199,200,248,22,75,199,11,86,94,28,28,248,22,146,14,23,194,2, +10,28,248,22,130,7,23,194,2,28,248,22,168,14,23,194,2,10,248,22,169, +14,23,194,2,11,12,250,22,176,9,2,9,2,23,23,196,2,28,248,22,168, +14,23,194,2,12,248,22,160,12,249,22,166,11,248,22,159,7,250,22,178,7, +2,24,2,9,23,200,1,247,22,23,32,54,88,163,8,36,42,59,11,2,26, +222,33,55,28,248,22,81,23,198,2,86,95,23,197,1,23,194,1,28,23,198, +2,197,86,94,23,198,1,248,22,160,12,249,22,135,12,251,22,178,7,2,25, +2,9,28,248,22,81,23,204,2,86,94,23,203,1,23,202,1,250,22,1,22, +164,14,23,205,1,23,206,1,23,200,1,247,22,23,27,249,22,164,14,248,22, +74,23,201,2,23,198,2,28,248,22,159,14,23,194,2,27,250,22,1,22,164, +14,23,197,1,23,201,2,28,248,22,159,14,23,194,2,28,23,196,2,28,28, +248,22,158,14,249,22,164,14,195,198,10,27,28,248,22,146,14,197,248,22,150, +14,197,196,27,248,22,133,7,23,195,2,27,28,249,22,188,3,23,196,2,40, +28,249,22,136,7,2,27,249,22,152,7,23,199,2,249,22,176,3,23,200,2, +40,249,22,153,7,250,22,152,7,23,200,1,36,249,22,176,3,23,201,1,40, +2,28,86,95,23,195,1,23,194,1,11,11,28,23,193,2,248,22,158,14,249, +22,164,14,198,23,196,1,11,192,253,2,54,200,201,202,203,248,22,75,205,28, +205,205,198,192,253,2,54,200,201,202,203,248,22,75,205,205,253,2,54,199,200, +201,202,248,22,75,204,204,86,95,86,94,28,28,248,22,146,14,193,10,28,248, +22,130,7,193,28,248,22,168,14,193,10,248,22,169,14,193,11,12,250,22,176, +9,2,9,2,23,195,28,248,22,168,14,193,12,248,22,160,12,249,22,166,11, +248,22,159,7,250,22,178,7,2,24,2,9,199,247,22,23,86,94,86,94,28, +28,248,22,146,14,23,195,2,10,28,248,22,130,7,23,195,2,28,248,22,168, +14,23,195,2,10,248,22,169,14,23,195,2,11,12,250,22,176,9,2,9,2, +23,23,197,2,28,248,22,168,14,23,195,2,12,248,22,160,12,249,22,166,11, +248,22,159,7,250,22,178,7,2,24,2,9,23,201,2,247,22,23,249,22,3, +32,0,88,163,8,36,37,49,11,9,222,33,53,23,197,2,249,22,164,14,27, +247,22,188,14,253,2,54,23,199,2,201,23,203,1,23,204,1,23,199,1,11, +194,32,57,88,163,36,44,8,29,11,2,26,222,33,58,28,248,22,81,23,200, +2,86,95,23,199,1,23,198,1,28,23,200,2,199,86,94,23,200,1,248,23, +196,1,251,22,178,7,2,25,23,199,1,28,248,22,81,23,203,2,86,94,23, +202,1,23,201,1,250,22,1,22,164,14,23,204,1,23,205,1,23,198,1,27, +249,22,164,14,248,22,74,23,203,2,23,199,2,28,248,22,159,14,23,194,2, +27,250,22,1,22,164,14,23,197,1,23,202,2,28,248,22,159,14,23,194,2, +28,23,200,2,28,28,248,22,158,14,249,22,164,14,23,196,2,23,203,2,10, +27,28,248,22,146,14,23,202,2,248,22,150,14,23,202,2,23,201,2,27,248, +22,133,7,23,195,2,27,28,249,22,188,3,23,196,2,40,28,249,22,136,7, +2,27,249,22,152,7,23,199,2,249,22,176,3,23,200,2,40,249,22,153,7, +250,22,152,7,23,200,1,36,249,22,176,3,23,201,1,40,2,28,86,95,23, +195,1,23,194,1,11,11,28,23,193,2,248,22,158,14,249,22,164,14,23,199, +2,23,196,1,11,192,27,248,22,75,23,203,1,27,28,23,204,2,86,94,23, +195,1,23,204,1,86,94,23,204,1,23,195,1,28,248,22,81,23,195,2,86, +95,23,202,1,23,194,1,28,23,193,2,192,86,94,23,193,1,248,23,200,1, +251,22,178,7,2,25,23,203,1,28,248,22,81,23,207,2,86,94,23,206,1, +23,205,1,250,22,1,22,164,14,23,208,1,23,209,1,23,202,1,27,249,22, +164,14,248,22,74,23,198,2,23,203,2,28,248,22,159,14,23,194,2,27,250, +22,1,22,164,14,23,197,1,23,206,2,28,248,22,159,14,23,194,2,28,23, +204,2,28,28,248,22,158,14,249,22,164,14,195,206,10,27,28,248,22,146,14, +205,248,22,150,14,205,204,27,248,22,133,7,23,195,2,27,28,249,22,188,3, +23,196,2,40,28,249,22,136,7,2,27,249,22,152,7,23,199,2,249,22,176, +3,23,200,2,40,249,22,153,7,250,22,152,7,23,200,1,36,249,22,176,3, +23,201,1,40,2,28,86,95,23,195,1,23,194,1,11,11,28,23,193,2,248, +22,158,14,249,22,164,14,198,23,196,1,11,192,26,8,2,57,206,23,15,23, +16,23,17,23,18,23,19,248,22,75,204,28,202,202,200,192,26,8,2,57,206, +23,15,23,16,23,17,23,18,23,19,248,22,75,204,202,26,8,2,57,205,206, +23,15,23,16,23,17,23,18,248,22,75,203,201,192,27,248,22,75,23,203,1, +28,248,22,81,23,194,2,86,95,23,201,1,23,193,1,28,23,203,2,202,86, +94,23,203,1,248,23,199,1,251,22,178,7,2,25,23,202,1,28,248,22,81, +23,206,2,86,94,23,205,1,23,204,1,250,22,1,22,164,14,23,207,1,23, +208,1,23,201,1,27,249,22,164,14,248,22,74,23,197,2,23,202,2,28,248, +22,159,14,23,194,2,27,250,22,1,22,164,14,23,197,1,23,205,2,28,248, +22,159,14,23,194,2,28,23,203,2,28,28,248,22,158,14,249,22,164,14,195, +205,10,27,28,248,22,146,14,204,248,22,150,14,204,203,27,248,22,133,7,23, +195,2,27,28,249,22,188,3,23,196,2,40,28,249,22,136,7,2,27,249,22, +152,7,23,199,2,249,22,176,3,23,200,2,40,249,22,153,7,250,22,152,7, +23,200,1,36,249,22,176,3,23,201,1,40,2,28,86,95,23,195,1,23,194, +1,11,11,28,23,193,2,248,22,158,14,249,22,164,14,198,23,196,1,11,192, +26,8,2,57,205,206,23,15,23,16,23,17,23,18,248,22,75,203,28,23,20, +23,20,200,192,26,8,2,57,205,206,23,15,23,16,23,17,23,18,248,22,75, +203,23,20,26,8,2,57,204,205,206,23,15,23,16,23,17,248,22,75,202,23, +19,86,94,23,193,1,27,248,22,75,23,202,1,28,248,22,81,23,194,2,86, +95,23,200,1,23,193,1,28,23,202,2,201,86,94,23,202,1,248,23,198,1, +251,22,178,7,2,25,23,201,1,28,248,22,81,23,205,2,86,94,23,204,1, +23,203,1,250,22,1,22,164,14,23,206,1,23,207,1,23,200,1,27,249,22, +164,14,248,22,74,23,197,2,23,201,2,28,248,22,159,14,23,194,2,27,250, +22,1,22,164,14,23,197,1,23,204,2,28,248,22,159,14,23,194,2,28,23, +202,2,28,28,248,22,158,14,249,22,164,14,195,204,10,27,28,248,22,146,14, +203,248,22,150,14,203,202,27,248,22,133,7,23,195,2,27,28,249,22,188,3, +23,196,2,40,28,249,22,136,7,2,27,249,22,152,7,23,199,2,249,22,176, +3,23,200,2,40,249,22,153,7,250,22,152,7,23,200,1,36,249,22,176,3, +23,201,1,40,2,28,86,95,23,195,1,23,194,1,11,11,28,23,193,2,248, +22,158,14,249,22,164,14,198,23,196,1,11,192,26,8,2,57,204,205,206,23, +15,23,16,23,17,248,22,75,203,28,23,19,23,19,200,192,26,8,2,57,204, +205,206,23,15,23,16,23,17,248,22,75,203,23,19,26,8,2,57,203,204,205, +206,23,15,23,16,248,22,75,202,23,18,27,247,22,188,14,28,248,22,81,23, +194,2,86,94,23,198,1,248,23,196,1,251,22,178,7,2,25,23,199,1,28, +248,22,81,23,203,2,86,94,23,202,1,23,201,1,250,22,1,22,164,14,23, +204,1,23,205,1,23,198,1,27,249,22,164,14,248,22,74,23,197,2,23,199, +2,28,248,22,159,14,23,194,2,27,250,22,1,22,164,14,23,197,1,23,202, +2,28,248,22,159,14,23,194,2,28,23,200,2,28,28,248,22,158,14,249,22, +164,14,195,202,10,27,28,248,22,146,14,201,248,22,150,14,201,200,27,248,22, +133,7,23,195,2,27,28,249,22,188,3,23,196,2,40,28,249,22,136,7,2, +27,249,22,152,7,23,199,2,249,22,176,3,23,200,2,40,249,22,153,7,250, +22,152,7,23,200,1,36,249,22,176,3,23,201,1,40,2,28,86,95,23,195, +1,23,194,1,11,11,28,23,193,2,248,22,158,14,249,22,164,14,198,23,196, +1,11,192,26,8,2,57,202,203,204,205,206,23,15,248,22,75,203,200,192,26, +8,2,57,202,203,204,205,206,23,15,248,22,75,203,11,26,8,2,57,201,202, +203,204,205,206,248,22,75,202,11,86,95,28,28,248,22,147,14,23,194,2,10, +28,248,22,146,14,23,194,2,10,28,248,22,130,7,23,194,2,28,248,22,168, +14,23,194,2,10,248,22,169,14,23,194,2,11,12,252,22,176,9,23,200,2, +2,29,36,23,198,2,23,199,2,28,28,248,22,130,7,23,195,2,10,248,22, +183,7,23,195,2,86,94,23,194,1,12,252,22,176,9,23,200,2,2,30,37, +23,198,2,23,199,1,90,159,39,11,89,161,39,36,11,248,22,167,14,23,197, +2,86,94,23,195,1,86,94,28,192,12,250,22,177,9,23,201,1,2,31,23, +199,1,249,22,7,194,195,90,159,38,11,89,161,38,36,11,86,95,28,28,248, +22,147,14,23,196,2,10,28,248,22,146,14,23,196,2,10,28,248,22,130,7, +23,196,2,28,248,22,168,14,23,196,2,10,248,22,169,14,23,196,2,11,12, +252,22,176,9,2,11,2,29,36,23,200,2,23,201,2,28,28,248,22,130,7, +23,197,2,10,248,22,183,7,23,197,2,12,252,22,176,9,2,11,2,30,37, +23,200,2,23,201,2,90,159,39,11,89,161,39,36,11,248,22,167,14,23,199, +2,86,94,23,195,1,86,94,28,192,12,250,22,177,9,2,11,2,31,23,201, +2,249,22,7,194,195,27,249,22,156,14,250,22,144,15,0,20,35,114,120,35, +34,40,63,58,91,46,93,91,94,46,93,42,124,41,36,34,248,22,152,14,23, +201,1,28,248,22,130,7,23,203,2,249,22,145,8,23,204,1,8,63,23,202, +1,28,248,22,147,14,23,199,2,248,22,148,14,23,199,1,86,94,23,198,1, +247,22,149,14,28,248,22,146,14,194,249,22,164,14,195,194,192,90,159,38,11, +89,161,38,36,11,86,95,28,28,248,22,147,14,23,196,2,10,28,248,22,146, +14,23,196,2,10,28,248,22,130,7,23,196,2,28,248,22,168,14,23,196,2, +10,248,22,169,14,23,196,2,11,12,252,22,176,9,2,12,2,29,36,23,200, +2,23,201,2,28,28,248,22,130,7,23,197,2,10,248,22,183,7,23,197,2, +12,252,22,176,9,2,12,2,30,37,23,200,2,23,201,2,90,159,39,11,89, +161,39,36,11,248,22,167,14,23,199,2,86,94,23,195,1,86,94,28,192,12, +250,22,177,9,2,12,2,31,23,201,2,249,22,7,194,195,27,249,22,156,14, +249,22,131,8,250,22,145,15,0,9,35,114,120,35,34,91,46,93,34,248,22, +152,14,23,203,1,6,1,1,95,28,248,22,130,7,23,202,2,249,22,145,8, +23,203,1,8,63,23,201,1,28,248,22,147,14,23,199,2,248,22,148,14,23, +199,1,86,94,23,198,1,247,22,149,14,28,248,22,146,14,194,249,22,164,14, +195,194,192,249,247,22,158,5,194,11,27,247,22,190,14,249,80,158,39,49,28, +23,195,2,27,248,22,150,8,2,32,28,192,192,2,33,2,34,27,28,23,196, +1,250,22,164,14,248,22,186,14,2,35,247,22,148,8,2,36,11,27,248,80, +159,42,54,37,250,22,87,9,248,22,83,248,22,186,14,2,37,9,28,193,249, +22,73,195,194,192,27,247,22,190,14,249,80,158,39,49,28,23,195,2,27,248, +22,150,8,2,32,28,192,192,2,33,2,34,27,28,23,196,1,250,22,164,14, +248,22,186,14,2,35,247,22,148,8,2,36,11,27,248,80,159,42,55,37,250, +22,87,23,203,1,248,22,83,248,22,186,14,2,37,9,28,193,249,22,73,195, +194,192,27,247,22,190,14,249,80,158,39,49,28,23,195,2,27,248,22,150,8, +2,32,28,192,192,2,33,2,34,27,28,23,196,1,250,22,164,14,248,22,186, +14,2,35,247,22,148,8,2,36,11,27,248,80,159,42,56,37,250,22,87,23, +203,1,248,22,83,248,22,186,14,2,37,23,204,1,28,193,249,22,73,195,194, +192,32,67,88,163,8,36,39,8,45,11,2,20,222,33,69,0,8,35,114,120, +35,34,92,34,34,27,249,22,133,15,23,197,2,23,198,2,28,23,193,2,86, +94,23,196,1,27,248,22,98,23,195,2,27,27,248,22,107,23,197,1,27,249, +22,133,15,23,201,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22, +98,23,195,2,27,27,248,22,107,23,197,1,27,249,22,133,15,23,205,2,23, 196,2,28,23,193,2,86,94,23,194,1,27,248,22,98,23,195,2,27,27,248, -22,107,23,197,1,27,249,22,132,15,23,205,2,23,196,2,28,23,193,2,86, +22,107,23,197,1,27,249,22,133,15,23,209,2,23,196,2,28,23,193,2,86, 94,23,194,1,27,248,22,98,23,195,2,27,27,248,22,107,23,197,1,27,249, -22,132,15,23,209,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22, -98,23,195,2,27,27,248,22,107,23,197,1,27,249,22,132,15,23,213,2,23, +22,133,15,23,213,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22, +98,23,195,2,27,27,248,22,107,23,197,1,27,249,22,133,15,23,217,2,23, 196,2,28,23,193,2,86,94,23,194,1,27,248,22,98,23,195,2,27,27,248, -22,107,23,197,1,27,249,22,132,15,23,217,2,23,196,2,28,23,193,2,86, +22,107,23,197,1,27,249,22,133,15,23,221,2,23,196,2,28,23,193,2,86, 94,23,194,1,27,248,22,98,23,195,2,27,27,248,22,107,23,197,1,27,249, -22,132,15,23,221,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22, -98,23,195,2,27,27,248,22,107,23,197,1,27,249,22,132,15,23,224,33,0, -0,0,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22,98,23,195, -2,27,250,2,67,23,224,38,0,0,0,2,23,224,36,0,0,0,1,248,22, -107,23,199,1,28,249,22,190,7,23,196,2,2,38,249,22,87,23,224,37,0, -0,0,2,194,249,22,73,248,22,154,14,28,249,22,139,9,247,22,151,8,2, -22,250,22,144,15,2,68,23,200,1,2,39,23,197,1,194,86,95,23,223,1, -23,193,1,28,249,22,190,7,23,196,2,2,38,249,22,87,23,224,35,0,0, -0,2,9,249,22,73,248,22,154,14,28,249,22,139,9,247,22,151,8,2,22, -250,22,144,15,2,68,23,200,1,2,39,23,197,1,9,28,249,22,190,7,23, -196,2,2,38,249,22,87,23,224,33,0,0,0,2,194,249,22,73,248,22,154, -14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1, -2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23,196,2,2,38, -249,22,87,23,223,2,9,249,22,73,248,22,154,14,28,249,22,139,9,247,22, -151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197,1,9,28,249, -22,190,7,23,196,2,2,38,249,22,87,23,221,2,194,249,22,73,248,22,154, -14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1, -2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23,196,2,2,38, -249,22,87,23,219,2,9,249,22,73,248,22,154,14,28,249,22,139,9,247,22, -151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197,1,9,28,249, -22,190,7,23,196,2,2,38,249,22,87,23,217,2,194,249,22,73,248,22,154, -14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1, -2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23,196,2,2,38, -249,22,87,23,215,2,9,249,22,73,248,22,154,14,28,249,22,139,9,247,22, -151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197,1,9,28,249, -22,190,7,23,196,2,2,38,249,22,87,23,213,2,194,249,22,73,248,22,154, -14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1, -2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23,196,2,2,38, -249,22,87,23,211,2,9,249,22,73,248,22,154,14,28,249,22,139,9,247,22, -151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197,1,9,28,249, -22,190,7,23,196,2,2,38,249,22,87,23,209,2,194,249,22,73,248,22,154, -14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1, -2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23,196,2,2,38, -249,22,87,23,207,2,9,249,22,73,248,22,154,14,28,249,22,139,9,247,22, -151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197,1,9,28,249, -22,190,7,23,196,2,2,38,249,22,87,23,205,2,194,249,22,73,248,22,154, -14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1, -2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23,196,2,2,38, -249,22,87,23,203,2,9,249,22,73,248,22,154,14,28,249,22,139,9,247,22, -151,8,2,22,250,22,144,15,2,68,23,200,1,2,39,23,197,1,9,28,249, -22,190,7,23,196,2,2,38,249,22,87,200,194,86,94,23,199,1,249,22,73, -248,22,154,14,28,249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68, -23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,190,7,23,196, -2,2,38,249,22,87,198,9,86,94,23,197,1,249,22,73,248,22,154,14,28, -249,22,139,9,247,22,151,8,2,22,250,22,144,15,2,68,23,200,1,2,39, -23,197,1,9,32,71,88,163,8,36,39,53,11,70,102,111,117,110,100,45,101, -120,101,99,222,33,74,32,72,88,163,8,36,40,58,11,64,110,101,120,116,222, -33,73,27,248,22,171,14,23,196,2,28,249,22,141,9,23,195,2,23,197,1, -11,28,248,22,167,14,23,194,2,27,249,22,163,14,23,197,1,23,196,1,28, -23,197,2,90,159,39,11,89,161,39,36,11,248,22,166,14,23,197,2,86,95, -23,195,1,23,194,1,27,28,23,202,2,27,248,22,171,14,23,199,2,28,249, -22,141,9,23,195,2,23,200,2,11,28,248,22,167,14,23,194,2,250,2,71, -23,205,2,23,206,2,249,22,163,14,23,200,2,23,198,1,250,2,71,23,205, -2,23,206,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27,28,248, -22,145,14,23,196,2,27,249,22,163,14,23,198,2,23,205,2,28,28,248,22, -158,14,193,10,248,22,157,14,193,192,11,11,28,23,193,2,192,86,94,23,193, -1,28,23,203,2,11,27,248,22,171,14,23,200,2,28,249,22,141,9,23,195, -2,23,201,1,11,28,248,22,167,14,23,194,2,250,2,71,23,206,1,23,207, -1,249,22,163,14,23,201,1,23,198,1,250,2,71,205,206,195,192,86,94,23, -194,1,28,23,196,2,90,159,39,11,89,161,39,36,11,248,22,166,14,23,197, -2,86,95,23,195,1,23,194,1,27,28,23,201,2,27,248,22,171,14,23,199, -2,28,249,22,141,9,23,195,2,23,200,2,11,28,248,22,167,14,23,194,2, -250,2,71,23,204,2,23,205,2,249,22,163,14,23,200,2,23,198,1,250,2, -71,23,204,2,23,205,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1, -27,28,248,22,145,14,23,196,2,27,249,22,163,14,23,198,2,23,204,2,28, -28,248,22,158,14,193,10,248,22,157,14,193,192,11,11,28,23,193,2,192,86, -94,23,193,1,28,23,202,2,11,27,248,22,171,14,23,200,2,28,249,22,141, -9,23,195,2,23,201,1,11,28,248,22,167,14,23,194,2,250,2,71,23,205, -1,23,206,1,249,22,163,14,23,201,1,23,198,1,250,2,71,204,205,195,192, -28,23,193,2,90,159,39,11,89,161,39,36,11,248,22,166,14,23,199,2,86, -95,23,195,1,23,194,1,27,28,23,198,2,251,2,72,23,198,2,23,203,2, -23,201,2,23,202,2,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22, -145,14,195,27,249,22,163,14,197,200,28,28,248,22,158,14,193,10,248,22,157, -14,193,192,11,11,28,192,192,28,198,11,251,2,72,198,203,201,202,194,32,75, -88,163,8,36,40,58,11,2,20,222,33,76,28,248,22,81,23,197,2,11,27, -248,22,170,14,248,22,74,23,199,2,27,249,22,163,14,23,196,1,23,197,2, -28,248,22,157,14,23,194,2,250,2,71,198,199,195,86,94,23,193,1,27,248, -22,75,23,200,1,28,248,22,81,23,194,2,11,27,248,22,170,14,248,22,74, -23,196,2,27,249,22,163,14,23,196,1,23,200,2,28,248,22,157,14,23,194, -2,250,2,71,201,202,195,86,94,23,193,1,27,248,22,75,23,197,1,28,248, -22,81,23,194,2,11,27,248,22,170,14,248,22,74,195,27,249,22,163,14,23, -196,1,202,28,248,22,157,14,193,250,2,71,204,205,195,251,2,75,204,205,206, -248,22,75,199,86,95,28,28,248,22,145,14,23,195,2,10,28,248,22,129,7, -23,195,2,28,248,22,167,14,23,195,2,10,248,22,168,14,23,195,2,11,12, -250,22,175,9,2,16,6,25,25,112,97,116,104,32,111,114,32,115,116,114,105, -110,103,32,40,115,97,110,115,32,110,117,108,41,23,197,2,28,28,23,195,2, -28,28,248,22,145,14,23,196,2,10,28,248,22,129,7,23,196,2,28,248,22, -167,14,23,196,2,10,248,22,168,14,23,196,2,11,248,22,167,14,23,196,2, -11,10,12,250,22,175,9,2,16,6,29,29,35,102,32,111,114,32,114,101,108, -97,116,105,118,101,32,112,97,116,104,32,111,114,32,115,116,114,105,110,103,23, -198,2,28,28,248,22,167,14,23,195,2,90,159,39,11,89,161,39,36,11,248, -22,166,14,23,198,2,249,22,139,9,194,68,114,101,108,97,116,105,118,101,11, -27,248,22,149,8,6,4,4,80,65,84,72,27,28,23,194,2,27,249,80,159, -41,49,38,23,197,1,9,28,249,22,139,9,247,22,151,8,2,22,249,22,73, -248,22,154,14,5,1,46,194,192,86,94,23,194,1,9,28,248,22,81,23,194, -2,11,27,248,22,170,14,248,22,74,23,196,2,27,249,22,163,14,23,196,1, -23,200,2,28,248,22,157,14,23,194,2,250,2,71,201,202,195,86,94,23,193, -1,27,248,22,75,23,197,1,28,248,22,81,23,194,2,11,27,248,22,170,14, -248,22,74,23,196,2,27,249,22,163,14,23,196,1,23,203,2,28,248,22,157, -14,23,194,2,250,2,71,204,205,195,86,94,23,193,1,27,248,22,75,23,197, -1,28,248,22,81,23,194,2,11,27,248,22,170,14,248,22,74,195,27,249,22, -163,14,23,196,1,205,28,248,22,157,14,193,250,2,71,23,15,23,16,195,251, -2,75,23,15,23,16,23,17,248,22,75,199,27,248,22,170,14,23,196,1,28, -248,22,157,14,193,250,2,71,198,199,195,11,250,80,159,39,50,37,196,197,11, -250,80,159,39,50,37,196,11,11,86,94,249,22,182,6,247,22,154,5,195,248, -22,144,6,249,22,128,4,36,249,22,176,3,197,198,27,28,23,197,2,86,95, -23,196,1,23,195,1,23,197,1,86,94,23,197,1,27,248,22,185,14,2,21, -27,250,80,159,42,50,37,23,197,1,11,11,27,248,22,131,4,23,199,1,27, -28,23,194,2,23,194,1,86,94,23,194,1,36,27,248,22,131,4,23,202,1, -27,28,23,194,2,23,194,1,86,94,23,194,1,36,249,22,185,5,23,199,1, -20,20,95,88,163,8,36,36,48,11,9,224,4,2,33,80,23,195,1,23,197, -1,27,248,22,170,5,23,195,1,248,80,159,39,57,37,193,159,36,20,112,159, -36,16,1,11,16,0,20,26,142,2,1,2,1,29,11,11,11,11,11,10,43, -80,158,36,36,20,112,159,40,16,18,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, -30,2,19,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110, -45,107,101,121,5,30,2,19,1,23,101,120,116,101,110,100,45,112,97,114,97, -109,101,116,101,114,105,122,97,116,105,111,110,3,16,0,16,0,36,16,0,36, -16,4,2,6,2,5,2,3,2,10,40,11,11,39,36,11,11,16,12,2,9, -2,7,2,17,2,8,2,16,2,14,2,13,2,4,2,12,2,15,2,11,2, -2,16,12,11,11,11,11,11,11,11,11,11,11,11,11,16,12,2,9,2,7, -2,17,2,8,2,16,2,14,2,13,2,4,2,12,2,15,2,11,2,2,48, -48,37,11,11,16,0,16,0,16,0,36,36,11,11,11,16,0,16,0,16,0, -36,36,16,0,16,20,20,15,16,2,88,163,8,36,37,51,8,240,0,0,35, -0,2,20,223,0,33,40,80,159,36,57,37,20,15,16,2,88,163,8,36,37, -56,8,240,0,64,16,0,2,20,223,0,33,41,80,159,36,56,37,20,15,16, -2,88,163,8,36,37,51,8,240,0,64,8,0,2,20,223,0,33,42,80,159, -36,55,37,20,15,16,2,88,163,8,36,37,51,8,240,0,64,4,0,2,20, -223,0,33,43,80,159,36,54,37,20,15,16,2,32,0,88,163,36,37,45,11, -2,2,222,33,44,80,159,36,36,37,20,15,16,2,249,22,131,7,7,92,7, -92,80,159,36,37,37,20,15,16,2,88,163,36,37,54,38,2,4,223,0,33, -45,80,159,36,38,37,20,15,16,2,32,0,88,163,8,36,38,50,11,2,5, -222,33,46,80,159,36,39,37,20,15,16,2,32,0,88,163,8,36,39,51,11, -2,6,222,33,48,80,159,36,40,37,20,15,16,2,32,0,88,163,8,45,38, -54,11,2,7,222,33,52,80,159,36,41,37,20,15,16,2,32,0,88,163,45, -39,53,11,2,9,222,33,56,80,159,36,43,37,20,15,16,2,32,0,88,163, -36,41,59,11,2,8,222,33,59,80,159,36,42,37,20,15,16,2,32,0,88, -163,36,39,50,11,2,10,222,33,60,80,159,36,44,37,20,15,16,2,32,0, -88,163,36,38,53,11,2,11,222,33,61,80,159,36,45,37,20,15,16,2,32, -0,88,163,36,38,54,11,2,12,222,33,62,80,159,36,46,37,20,15,16,2, -32,0,88,163,36,37,44,11,2,13,222,33,63,80,159,36,47,37,20,15,16, -2,20,25,96,2,14,88,163,36,36,53,8,240,0,32,4,0,9,223,0,33, -64,88,163,36,37,54,8,240,0,32,8,0,9,223,0,33,65,88,163,36,38, -55,8,240,0,32,16,0,9,223,0,33,66,80,159,36,48,37,20,15,16,2, -27,248,22,128,15,248,22,143,8,27,28,249,22,139,9,247,22,151,8,2,22, -6,1,1,59,6,1,1,58,250,22,177,7,6,14,14,40,91,94,126,97,93, -42,41,126,97,40,46,42,41,23,196,2,23,196,1,88,163,8,36,38,8,46, -11,2,15,223,0,33,70,80,159,36,49,37,20,15,16,2,20,25,96,2,16, -88,163,8,36,39,8,24,8,128,128,9,223,0,33,77,88,163,8,36,38,47, -8,240,0,64,0,0,9,223,0,33,78,88,163,8,36,37,46,8,240,0,64, -0,0,9,223,0,33,79,80,159,36,50,37,20,15,16,2,88,163,8,36,39, -54,8,240,0,64,32,0,2,17,223,0,33,81,80,159,36,51,37,94,29,94, -2,18,68,35,37,107,101,114,110,101,108,11,29,94,2,18,69,35,37,109,105, -110,45,115,116,120,11,9,9,9,36,0}; - EVAL_ONE_SIZED_STR((char *)expr, 10321); +22,133,15,23,224,33,0,0,0,2,23,196,2,28,23,193,2,86,94,23,194, +1,27,248,22,98,23,195,2,27,250,2,67,23,224,35,0,0,0,2,23,224, +36,0,0,0,1,248,22,107,23,199,1,28,249,22,191,7,23,196,2,2,38, +249,22,87,23,224,34,0,0,0,2,194,249,22,73,248,22,155,14,28,249,22, +140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197, +1,194,86,95,23,223,1,23,193,1,28,249,22,191,7,23,196,2,2,38,249, +22,87,23,224,32,0,0,0,2,9,249,22,73,248,22,155,14,28,249,22,140, +9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1, +9,28,249,22,191,7,23,196,2,2,38,249,22,87,23,222,2,194,249,22,73, +248,22,155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68, +23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196, +2,2,38,249,22,87,23,220,2,9,249,22,73,248,22,155,14,28,249,22,140, +9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1, +9,28,249,22,191,7,23,196,2,2,38,249,22,87,23,218,2,194,249,22,73, +248,22,155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68, +23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196, +2,2,38,249,22,87,23,216,2,9,249,22,73,248,22,155,14,28,249,22,140, +9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1, +9,28,249,22,191,7,23,196,2,2,38,249,22,87,23,214,2,194,249,22,73, +248,22,155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68, +23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196, +2,2,38,249,22,87,23,212,2,9,249,22,73,248,22,155,14,28,249,22,140, +9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1, +9,28,249,22,191,7,23,196,2,2,38,249,22,87,23,210,2,194,249,22,73, +248,22,155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68, +23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196, +2,2,38,249,22,87,23,208,2,9,249,22,73,248,22,155,14,28,249,22,140, +9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1, +9,28,249,22,191,7,23,196,2,2,38,249,22,87,23,206,2,194,249,22,73, +248,22,155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68, +23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196, +2,2,38,249,22,87,23,204,2,9,249,22,73,248,22,155,14,28,249,22,140, +9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1, +9,28,249,22,191,7,23,196,2,2,38,249,22,87,23,202,2,194,249,22,73, +248,22,155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68, +23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196, +2,2,38,249,22,87,23,200,2,9,249,22,73,248,22,155,14,28,249,22,140, +9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1, +9,28,249,22,191,7,23,196,2,2,38,249,22,87,197,194,86,94,23,196,1, +249,22,73,248,22,155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145, +15,2,68,23,200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,191, +7,23,198,2,2,38,249,22,87,195,9,86,94,23,194,1,249,22,73,248,22, +155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,202, +1,2,39,23,199,1,9,86,95,28,28,248,22,183,7,23,195,2,10,248,22, +130,7,23,195,2,12,250,22,176,9,2,15,6,21,21,98,121,116,101,32,115, +116,114,105,110,103,32,111,114,32,115,116,114,105,110,103,23,197,2,28,28,248, +22,82,23,196,2,249,22,4,22,146,14,23,197,2,11,12,250,22,176,9,2, +15,6,13,13,108,105,115,116,32,111,102,32,112,97,116,104,115,23,198,2,27, +28,248,22,130,7,23,196,2,248,22,144,8,23,196,1,23,195,1,27,249,22, +133,15,23,197,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22,98, +23,195,2,27,27,248,22,107,23,197,1,27,249,22,133,15,23,201,2,23,196, +2,28,23,193,2,86,94,23,194,1,27,248,22,98,23,195,2,27,27,248,22, +107,23,197,1,27,249,22,133,15,23,205,2,23,196,2,28,23,193,2,86,94, +23,194,1,27,248,22,98,23,195,2,27,27,248,22,107,23,197,1,27,249,22, +133,15,23,209,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22,98, +23,195,2,27,27,248,22,107,23,197,1,27,249,22,133,15,23,213,2,23,196, +2,28,23,193,2,86,94,23,194,1,27,248,22,98,23,195,2,27,27,248,22, +107,23,197,1,27,249,22,133,15,23,217,2,23,196,2,28,23,193,2,86,94, +23,194,1,27,248,22,98,23,195,2,27,27,248,22,107,23,197,1,27,249,22, +133,15,23,221,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22,98, +23,195,2,27,27,248,22,107,23,197,1,27,249,22,133,15,23,224,33,0,0, +0,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248,22,98,23,195,2, +27,250,2,67,23,224,38,0,0,0,2,23,224,36,0,0,0,1,248,22,107, +23,199,1,28,249,22,191,7,23,196,2,2,38,249,22,87,23,224,37,0,0, +0,2,194,249,22,73,248,22,155,14,28,249,22,140,9,247,22,152,8,2,22, +250,22,145,15,2,68,23,200,1,2,39,23,197,1,194,86,95,23,223,1,23, +193,1,28,249,22,191,7,23,196,2,2,38,249,22,87,23,224,35,0,0,0, +2,9,249,22,73,248,22,155,14,28,249,22,140,9,247,22,152,8,2,22,250, +22,145,15,2,68,23,200,1,2,39,23,197,1,9,28,249,22,191,7,23,196, +2,2,38,249,22,87,23,224,33,0,0,0,2,194,249,22,73,248,22,155,14, +28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2, +39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196,2,2,38,249, +22,87,23,223,2,9,249,22,73,248,22,155,14,28,249,22,140,9,247,22,152, +8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1,9,28,249,22, +191,7,23,196,2,2,38,249,22,87,23,221,2,194,249,22,73,248,22,155,14, +28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2, +39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196,2,2,38,249, +22,87,23,219,2,9,249,22,73,248,22,155,14,28,249,22,140,9,247,22,152, +8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1,9,28,249,22, +191,7,23,196,2,2,38,249,22,87,23,217,2,194,249,22,73,248,22,155,14, +28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2, +39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196,2,2,38,249, +22,87,23,215,2,9,249,22,73,248,22,155,14,28,249,22,140,9,247,22,152, +8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1,9,28,249,22, +191,7,23,196,2,2,38,249,22,87,23,213,2,194,249,22,73,248,22,155,14, +28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2, +39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196,2,2,38,249, +22,87,23,211,2,9,249,22,73,248,22,155,14,28,249,22,140,9,247,22,152, +8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1,9,28,249,22, +191,7,23,196,2,2,38,249,22,87,23,209,2,194,249,22,73,248,22,155,14, +28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2, +39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196,2,2,38,249, +22,87,23,207,2,9,249,22,73,248,22,155,14,28,249,22,140,9,247,22,152, +8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1,9,28,249,22, +191,7,23,196,2,2,38,249,22,87,23,205,2,194,249,22,73,248,22,155,14, +28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2, +39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196,2,2,38,249, +22,87,23,203,2,9,249,22,73,248,22,155,14,28,249,22,140,9,247,22,152, +8,2,22,250,22,145,15,2,68,23,200,1,2,39,23,197,1,9,28,249,22, +191,7,23,196,2,2,38,249,22,87,200,194,86,94,23,199,1,249,22,73,248, +22,155,14,28,249,22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23, +200,1,2,39,23,197,1,194,86,94,23,193,1,28,249,22,191,7,23,196,2, +2,38,249,22,87,198,9,86,94,23,197,1,249,22,73,248,22,155,14,28,249, +22,140,9,247,22,152,8,2,22,250,22,145,15,2,68,23,200,1,2,39,23, +197,1,9,32,71,88,163,8,36,39,53,11,70,102,111,117,110,100,45,101,120, +101,99,222,33,74,32,72,88,163,8,36,40,58,11,64,110,101,120,116,222,33, +73,27,248,22,172,14,23,196,2,28,249,22,142,9,23,195,2,23,197,1,11, +28,248,22,168,14,23,194,2,27,249,22,164,14,23,197,1,23,196,1,28,23, +197,2,90,159,39,11,89,161,39,36,11,248,22,167,14,23,197,2,86,95,23, +195,1,23,194,1,27,28,23,202,2,27,248,22,172,14,23,199,2,28,249,22, +142,9,23,195,2,23,200,2,11,28,248,22,168,14,23,194,2,250,2,71,23, +205,2,23,206,2,249,22,164,14,23,200,2,23,198,1,250,2,71,23,205,2, +23,206,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22, +146,14,23,196,2,27,249,22,164,14,23,198,2,23,205,2,28,28,248,22,159, +14,193,10,248,22,158,14,193,192,11,11,28,23,193,2,192,86,94,23,193,1, +28,23,203,2,11,27,248,22,172,14,23,200,2,28,249,22,142,9,23,195,2, +23,201,1,11,28,248,22,168,14,23,194,2,250,2,71,23,206,1,23,207,1, +249,22,164,14,23,201,1,23,198,1,250,2,71,205,206,195,192,86,94,23,194, +1,28,23,196,2,90,159,39,11,89,161,39,36,11,248,22,167,14,23,197,2, +86,95,23,195,1,23,194,1,27,28,23,201,2,27,248,22,172,14,23,199,2, +28,249,22,142,9,23,195,2,23,200,2,11,28,248,22,168,14,23,194,2,250, +2,71,23,204,2,23,205,2,249,22,164,14,23,200,2,23,198,1,250,2,71, +23,204,2,23,205,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27, +28,248,22,146,14,23,196,2,27,249,22,164,14,23,198,2,23,204,2,28,28, +248,22,159,14,193,10,248,22,158,14,193,192,11,11,28,23,193,2,192,86,94, +23,193,1,28,23,202,2,11,27,248,22,172,14,23,200,2,28,249,22,142,9, +23,195,2,23,201,1,11,28,248,22,168,14,23,194,2,250,2,71,23,205,1, +23,206,1,249,22,164,14,23,201,1,23,198,1,250,2,71,204,205,195,192,28, +23,193,2,90,159,39,11,89,161,39,36,11,248,22,167,14,23,199,2,86,95, +23,195,1,23,194,1,27,28,23,198,2,251,2,72,23,198,2,23,203,2,23, +201,2,23,202,2,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22,146, +14,195,27,249,22,164,14,197,200,28,28,248,22,159,14,193,10,248,22,158,14, +193,192,11,11,28,192,192,28,198,11,251,2,72,198,203,201,202,194,32,75,88, +163,8,36,40,58,11,2,20,222,33,76,28,248,22,81,23,197,2,11,27,248, +22,171,14,248,22,74,23,199,2,27,249,22,164,14,23,196,1,23,197,2,28, +248,22,158,14,23,194,2,250,2,71,198,199,195,86,94,23,193,1,27,248,22, +75,23,200,1,28,248,22,81,23,194,2,11,27,248,22,171,14,248,22,74,23, +196,2,27,249,22,164,14,23,196,1,23,200,2,28,248,22,158,14,23,194,2, +250,2,71,201,202,195,86,94,23,193,1,27,248,22,75,23,197,1,28,248,22, +81,23,194,2,11,27,248,22,171,14,248,22,74,195,27,249,22,164,14,23,196, +1,202,28,248,22,158,14,193,250,2,71,204,205,195,251,2,75,204,205,206,248, +22,75,199,86,95,28,28,248,22,146,14,23,195,2,10,28,248,22,130,7,23, +195,2,28,248,22,168,14,23,195,2,10,248,22,169,14,23,195,2,11,12,250, +22,176,9,2,16,6,25,25,112,97,116,104,32,111,114,32,115,116,114,105,110, +103,32,40,115,97,110,115,32,110,117,108,41,23,197,2,28,28,23,195,2,28, +28,248,22,146,14,23,196,2,10,28,248,22,130,7,23,196,2,28,248,22,168, +14,23,196,2,10,248,22,169,14,23,196,2,11,248,22,168,14,23,196,2,11, +10,12,250,22,176,9,2,16,6,29,29,35,102,32,111,114,32,114,101,108,97, +116,105,118,101,32,112,97,116,104,32,111,114,32,115,116,114,105,110,103,23,198, +2,28,28,248,22,168,14,23,195,2,90,159,39,11,89,161,39,36,11,248,22, +167,14,23,198,2,249,22,140,9,194,68,114,101,108,97,116,105,118,101,11,27, +248,22,150,8,6,4,4,80,65,84,72,27,28,23,194,2,27,249,80,159,41, +49,38,23,197,1,9,28,249,22,140,9,247,22,152,8,2,22,249,22,73,248, +22,155,14,5,1,46,194,192,86,94,23,194,1,9,28,248,22,81,23,194,2, +11,27,248,22,171,14,248,22,74,23,196,2,27,249,22,164,14,23,196,1,23, +200,2,28,248,22,158,14,23,194,2,250,2,71,201,202,195,86,94,23,193,1, +27,248,22,75,23,197,1,28,248,22,81,23,194,2,11,27,248,22,171,14,248, +22,74,23,196,2,27,249,22,164,14,23,196,1,23,203,2,28,248,22,158,14, +23,194,2,250,2,71,204,205,195,86,94,23,193,1,27,248,22,75,23,197,1, +28,248,22,81,23,194,2,11,27,248,22,171,14,248,22,74,195,27,249,22,164, +14,23,196,1,205,28,248,22,158,14,193,250,2,71,23,15,23,16,195,251,2, +75,23,15,23,16,23,17,248,22,75,199,27,248,22,171,14,23,196,1,28,248, +22,158,14,193,250,2,71,198,199,195,11,250,80,159,39,50,37,196,197,11,250, +80,159,39,50,37,196,11,11,86,94,249,22,183,6,247,22,154,5,195,248,22, +145,6,249,22,128,4,36,249,22,176,3,197,198,27,28,23,197,2,86,95,23, +196,1,23,195,1,23,197,1,86,94,23,197,1,27,248,22,186,14,2,21,27, +250,80,159,42,50,37,23,197,1,11,11,27,248,22,131,4,23,199,1,27,28, +23,194,2,23,194,1,86,94,23,194,1,36,27,248,22,131,4,23,202,1,27, +28,23,194,2,23,194,1,86,94,23,194,1,36,249,22,185,5,23,199,1,20, +20,95,88,163,8,36,36,48,11,9,224,4,2,33,80,23,195,1,23,197,1, +27,248,22,170,5,23,195,1,248,80,159,39,57,37,193,159,36,20,112,159,36, +16,1,11,16,0,20,26,142,2,1,2,1,29,11,11,11,11,11,10,43,80, +158,36,36,20,112,159,40,16,18,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,30, +2,19,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,45, +107,101,121,5,30,2,19,1,23,101,120,116,101,110,100,45,112,97,114,97,109, +101,116,101,114,105,122,97,116,105,111,110,3,16,0,16,0,36,16,0,36,16, +4,2,6,2,5,2,3,2,10,40,11,11,39,36,11,11,16,12,2,9,2, +7,2,17,2,8,2,16,2,14,2,13,2,4,2,12,2,15,2,11,2,2, +16,12,11,11,11,11,11,11,11,11,11,11,11,11,16,12,2,9,2,7,2, +17,2,8,2,16,2,14,2,13,2,4,2,12,2,15,2,11,2,2,48,48, +37,11,11,16,0,16,0,16,0,36,36,11,11,11,16,0,16,0,16,0,36, +36,16,0,16,20,20,15,16,2,88,163,8,36,37,51,8,240,0,0,35,0, +2,20,223,0,33,40,80,159,36,57,37,20,15,16,2,88,163,8,36,37,56, +8,240,0,64,16,0,2,20,223,0,33,41,80,159,36,56,37,20,15,16,2, +88,163,8,36,37,51,8,240,0,64,8,0,2,20,223,0,33,42,80,159,36, +55,37,20,15,16,2,88,163,8,36,37,51,8,240,0,64,4,0,2,20,223, +0,33,43,80,159,36,54,37,20,15,16,2,32,0,88,163,36,37,45,11,2, +2,222,33,44,80,159,36,36,37,20,15,16,2,249,22,132,7,7,92,7,92, +80,159,36,37,37,20,15,16,2,88,163,36,37,54,38,2,4,223,0,33,45, +80,159,36,38,37,20,15,16,2,32,0,88,163,8,36,38,50,11,2,5,222, +33,46,80,159,36,39,37,20,15,16,2,32,0,88,163,8,36,39,51,11,2, +6,222,33,48,80,159,36,40,37,20,15,16,2,32,0,88,163,8,45,38,54, +11,2,7,222,33,52,80,159,36,41,37,20,15,16,2,32,0,88,163,45,39, +53,11,2,9,222,33,56,80,159,36,43,37,20,15,16,2,32,0,88,163,36, +41,59,11,2,8,222,33,59,80,159,36,42,37,20,15,16,2,32,0,88,163, +36,39,50,11,2,10,222,33,60,80,159,36,44,37,20,15,16,2,32,0,88, +163,36,38,53,11,2,11,222,33,61,80,159,36,45,37,20,15,16,2,32,0, +88,163,36,38,54,11,2,12,222,33,62,80,159,36,46,37,20,15,16,2,32, +0,88,163,36,37,44,11,2,13,222,33,63,80,159,36,47,37,20,15,16,2, +20,25,96,2,14,88,163,36,36,53,8,240,0,32,4,0,9,223,0,33,64, +88,163,36,37,54,8,240,0,32,8,0,9,223,0,33,65,88,163,36,38,55, +8,240,0,32,16,0,9,223,0,33,66,80,159,36,48,37,20,15,16,2,27, +248,22,129,15,248,22,144,8,27,28,249,22,140,9,247,22,152,8,2,22,6, +1,1,59,6,1,1,58,250,22,178,7,6,14,14,40,91,94,126,97,93,42, +41,126,97,40,46,42,41,23,196,2,23,196,1,88,163,8,36,38,8,46,11, +2,15,223,0,33,70,80,159,36,49,37,20,15,16,2,20,25,96,2,16,88, +163,8,36,39,8,24,8,128,128,9,223,0,33,77,88,163,8,36,38,47,8, +240,0,64,0,0,9,223,0,33,78,88,163,8,36,37,46,8,240,0,64,0, +0,9,223,0,33,79,80,159,36,50,37,20,15,16,2,88,163,8,36,39,54, +8,240,0,64,32,0,2,17,223,0,33,81,80,159,36,51,37,94,29,94,2, +18,68,35,37,107,101,114,110,101,108,11,29,94,2,18,69,35,37,109,105,110, +45,115,116,120,11,9,9,9,36,0}; + EVAL_ONE_SIZED_STR((char *)expr, 10320); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,53,46,49,46,49,46,49,48,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,15,0,40,0, -57,0,75,0,97,0,120,0,140,0,162,0,169,0,176,0,183,0,0,0,178, -1,0,0,74,35,37,112,108,97,99,101,45,115,116,114,117,99,116,1,23,115, -116,114,117,99,116,58,84,72,45,112,108,97,99,101,45,99,104,97,110,110,101, -108,76,84,72,45,112,108,97,99,101,45,99,104,97,110,110,101,108,77,84,72, -45,112,108,97,99,101,45,99,104,97,110,110,101,108,63,1,20,84,72,45,112, -108,97,99,101,45,99,104,97,110,110,101,108,45,114,101,102,1,21,84,72,45, -112,108,97,99,101,45,99,104,97,110,110,101,108,45,115,101,116,33,79,84,72, -45,112,108,97,99,101,45,99,104,97,110,110,101,108,45,105,110,1,20,84,72, -45,112,108,97,99,101,45,99,104,97,110,110,101,108,45,111,117,116,249,80,158, -38,39,195,36,249,80,158,38,39,195,36,249,80,158,38,39,195,37,159,36,20, -112,159,36,16,1,11,16,0,20,26,142,2,1,2,1,29,11,11,11,11,11, -10,45,80,158,36,36,20,112,159,36,16,7,2,2,2,3,2,4,2,5,2, -6,2,7,2,8,16,0,16,0,36,16,0,36,16,2,2,5,2,6,38,11, -11,39,36,11,11,16,5,2,3,2,7,2,8,2,4,2,2,16,5,11,11, -11,11,11,16,5,2,3,2,7,2,8,2,4,2,2,41,41,37,11,11,16, -0,16,0,16,0,36,36,11,11,11,16,0,16,0,16,0,36,36,16,0,16, -2,20,15,16,6,253,22,173,10,2,3,11,38,36,11,248,22,83,249,22,73, -22,163,10,88,163,36,37,45,44,9,223,9,33,9,80,159,36,36,37,80,159, -36,37,37,80,159,36,38,37,80,159,36,39,37,80,159,36,40,37,20,15,16, -3,249,22,7,88,163,36,37,45,44,9,223,2,33,10,88,163,36,37,45,44, -9,223,2,33,11,80,159,36,41,37,80,159,36,42,37,93,29,94,65,113,117, -111,116,101,68,35,37,107,101,114,110,101,108,11,9,9,9,36,0}; - EVAL_ONE_SIZED_STR((char *)expr, 500); + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,53,46,49,46,50,46,51,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,12,0,0,0,1,0,0,15,0,40,0,57, +0,75,0,97,0,120,0,140,0,162,0,169,0,176,0,183,0,0,0,178,1, +0,0,74,35,37,112,108,97,99,101,45,115,116,114,117,99,116,1,23,115,116, +114,117,99,116,58,84,72,45,112,108,97,99,101,45,99,104,97,110,110,101,108, +76,84,72,45,112,108,97,99,101,45,99,104,97,110,110,101,108,77,84,72,45, +112,108,97,99,101,45,99,104,97,110,110,101,108,63,1,20,84,72,45,112,108, +97,99,101,45,99,104,97,110,110,101,108,45,114,101,102,1,21,84,72,45,112, +108,97,99,101,45,99,104,97,110,110,101,108,45,115,101,116,33,79,84,72,45, +112,108,97,99,101,45,99,104,97,110,110,101,108,45,105,110,1,20,84,72,45, +112,108,97,99,101,45,99,104,97,110,110,101,108,45,111,117,116,249,80,158,38, +39,195,36,249,80,158,38,39,195,36,249,80,158,38,39,195,37,159,36,20,112, +159,36,16,1,11,16,0,20,26,142,2,1,2,1,29,11,11,11,11,11,10, +45,80,158,36,36,20,112,159,36,16,7,2,2,2,3,2,4,2,5,2,6, +2,7,2,8,16,0,16,0,36,16,0,36,16,2,2,5,2,6,38,11,11, +39,36,11,11,16,5,2,3,2,7,2,8,2,4,2,2,16,5,11,11,11, +11,11,16,5,2,3,2,7,2,8,2,4,2,2,41,41,37,11,11,16,0, +16,0,16,0,36,36,11,11,11,16,0,16,0,16,0,36,36,16,0,16,2, +20,15,16,6,253,22,174,10,2,3,11,38,36,11,248,22,83,249,22,73,22, +164,10,88,163,36,37,45,44,9,223,9,33,9,80,159,36,36,37,80,159,36, +37,37,80,159,36,38,37,80,159,36,39,37,80,159,36,40,37,20,15,16,3, +249,22,7,88,163,36,37,45,44,9,223,2,33,10,88,163,36,37,45,44,9, +223,2,33,11,80,159,36,41,37,80,159,36,42,37,93,29,94,65,113,117,111, +116,101,68,35,37,107,101,114,110,101,108,11,9,9,9,36,0}; + EVAL_ONE_SIZED_STR((char *)expr, 499); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,53,46,49,46,49,46,49,48,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,60,0,0,0,1,0,0,7,0,18,0, -45,0,51,0,64,0,73,0,80,0,102,0,124,0,150,0,162,0,180,0,200, -0,212,0,228,0,251,0,7,1,38,1,45,1,50,1,55,1,60,1,65,1, -70,1,79,1,84,1,88,1,96,1,105,1,113,1,174,1,21,2,42,2,63, -2,93,2,123,2,181,2,239,2,32,3,81,3,15,9,34,9,48,9,206,9, -220,9,150,11,244,13,111,14,117,14,131,14,158,14,178,14,238,14,69,15,71, -15,140,15,152,21,204,21,227,21,0,0,233,24,0,0,66,35,37,98,111,111, -116,70,100,108,108,45,115,117,102,102,105,120,1,25,100,101,102,97,117,108,116, -45,108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,65,113,117, -111,116,101,29,94,2,4,67,35,37,117,116,105,108,115,11,68,35,37,112,97, -114,97,109,122,29,94,2,4,2,6,11,1,20,112,97,114,97,109,101,116,101, -114,105,122,97,116,105,111,110,45,107,101,121,1,20,100,101,102,97,117,108,116, -45,114,101,97,100,101,114,45,103,117,97,114,100,1,24,45,109,111,100,117,108, -101,45,104,97,115,104,45,116,97,98,108,101,45,116,97,98,108,101,71,45,112, -97,116,104,45,99,97,99,104,101,77,45,108,111,97,100,105,110,103,45,102,105, -108,101,110,97,109,101,79,45,108,111,97,100,105,110,103,45,112,114,111,109,112, -116,45,116,97,103,71,45,112,114,101,118,45,114,101,108,116,111,75,45,112,114, -101,118,45,114,101,108,116,111,45,100,105,114,1,21,115,112,108,105,116,45,114, -101,108,97,116,105,118,101,45,115,116,114,105,110,103,71,111,114,105,103,45,112, -97,114,97,109,122,1,29,115,116,97,110,100,97,114,100,45,109,111,100,117,108, -101,45,110,97,109,101,45,114,101,115,111,108,118,101,114,29,94,2,4,2,6, -11,64,98,111,111,116,64,115,101,97,108,64,115,97,109,101,5,3,46,122,111, -5,3,46,122,111,6,6,6,110,97,116,105,118,101,64,108,111,111,112,63,108, -105,98,67,105,103,110,111,114,101,100,249,22,14,195,80,159,38,46,38,249,80, -159,38,49,37,195,10,90,159,39,11,89,161,39,36,11,248,22,166,14,197,86, -95,23,195,1,23,193,1,28,249,22,132,15,0,11,35,114,120,34,91,46,93, -115,115,36,34,248,22,150,14,23,197,1,249,80,159,41,53,38,198,5,4,46, -114,107,116,196,27,28,23,195,2,28,249,22,139,9,23,197,2,80,158,39,47, -86,94,23,195,1,80,158,37,48,27,248,22,137,5,23,197,2,28,248,22,145, -14,23,194,2,90,159,39,11,89,161,39,36,11,248,22,166,14,23,197,1,86, -95,20,18,159,11,80,158,41,47,198,20,18,159,11,80,158,41,48,192,192,11, -11,28,23,193,2,192,86,94,23,193,1,27,247,22,159,5,28,192,192,247,22, -186,14,250,22,163,14,23,197,1,23,199,1,249,80,159,43,39,38,23,198,1, -2,23,250,22,163,14,23,197,1,23,199,1,249,80,159,43,39,38,23,198,1, -2,24,252,22,163,14,23,199,1,23,201,1,2,25,247,22,152,8,249,80,159, -45,39,38,23,200,1,80,159,45,36,38,252,22,163,14,23,199,1,23,201,1, -2,25,247,22,152,8,249,80,159,45,39,38,23,200,1,80,159,45,36,38,27, -252,22,163,14,23,200,1,23,202,1,2,25,247,22,152,8,249,80,159,46,39, -38,23,201,1,80,159,46,36,38,27,250,22,180,14,196,11,32,0,88,163,8, -36,36,41,11,9,222,11,28,192,249,22,73,195,194,11,27,252,22,163,14,23, -200,1,23,202,1,2,25,247,22,152,8,249,80,159,46,39,38,23,201,1,80, -159,46,36,38,27,250,22,180,14,196,11,32,0,88,163,8,36,36,41,11,9, -222,11,28,192,249,22,73,195,194,11,27,250,22,163,14,23,198,1,23,200,1, -249,80,159,44,39,38,23,199,1,2,23,27,250,22,180,14,196,11,32,0,88, -163,8,36,36,41,11,9,222,11,28,192,249,22,73,195,194,11,27,250,22,163, -14,23,198,1,23,200,1,249,80,159,44,39,38,23,199,1,2,24,27,250,22, -180,14,196,11,32,0,88,163,8,36,36,41,11,9,222,11,28,192,249,22,73, -195,194,11,86,94,28,248,80,159,37,38,38,23,195,2,12,250,22,175,9,77, -108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,6,25,25,112, -97,116,104,32,111,114,32,118,97,108,105,100,45,112,97,116,104,32,115,116,114, -105,110,103,23,197,2,90,159,46,11,89,161,37,36,11,28,248,22,169,14,23, -205,2,23,204,2,27,247,22,159,5,28,23,193,2,249,22,170,14,23,207,2, -23,195,1,23,205,2,89,161,39,37,11,248,22,166,14,23,205,1,86,94,23, -196,1,89,161,38,40,11,28,23,205,2,27,248,22,150,14,23,197,2,27,248, -22,187,7,23,195,2,28,28,249,22,188,3,23,195,2,40,249,22,190,7,5, -4,46,114,107,116,249,22,129,8,23,198,2,249,22,176,3,23,199,2,40,11, -249,22,7,23,199,2,248,22,154,14,249,22,130,8,250,22,129,8,23,202,1, -36,249,22,176,3,23,203,1,40,5,3,46,115,115,249,22,7,23,199,2,11, -249,22,7,23,197,2,11,89,161,37,42,11,28,249,22,139,9,23,199,2,23, -197,2,23,193,2,249,22,163,14,23,196,2,23,199,2,89,161,37,43,11,28, -23,198,2,28,249,22,139,9,23,200,2,23,197,1,23,193,1,86,94,23,193, -1,249,22,163,14,23,196,2,23,200,2,86,94,23,195,1,11,89,161,37,44, -11,28,249,22,139,9,23,196,2,68,114,101,108,97,116,105,118,101,86,94,23, -194,1,2,22,23,194,1,89,161,37,45,11,247,22,188,14,27,250,22,180,14, -23,203,2,11,32,0,88,163,8,36,36,41,11,9,222,11,27,28,23,194,2, -249,22,73,23,203,2,23,196,1,86,94,23,194,1,11,27,28,23,203,2,28, -23,194,2,11,27,250,22,180,14,23,207,2,11,32,0,88,163,8,36,36,41, -11,9,222,11,28,192,249,22,73,23,206,2,194,11,11,27,28,23,195,2,23, -195,2,23,194,2,27,88,163,36,37,50,44,62,122,111,225,15,13,9,33,33, -27,88,163,36,37,50,44,66,97,108,116,45,122,111,225,16,14,11,33,34,27, -88,163,36,37,52,45,9,225,17,15,11,33,35,27,88,163,36,37,52,45,9, -225,18,16,13,33,36,27,28,23,200,2,23,200,2,248,22,137,9,23,200,2, -27,28,23,208,2,28,23,200,2,86,94,23,201,1,23,200,2,248,22,137,9, -23,202,1,11,27,28,23,195,2,28,23,197,1,27,249,22,5,88,163,8,36, -37,53,45,9,225,24,22,18,33,37,23,216,2,27,28,23,202,2,11,193,28, -192,192,28,193,28,23,202,2,28,249,22,188,3,248,22,75,196,248,22,75,23, -205,2,193,11,11,11,11,86,94,23,197,1,11,28,23,193,2,86,105,23,213, -1,23,211,1,23,210,1,23,209,1,23,208,1,23,201,1,23,200,1,23,199, -1,23,198,1,23,196,1,23,195,1,23,194,1,20,13,159,80,159,57,40,38, -250,80,159,8,24,41,38,249,22,27,11,80,159,8,26,40,38,22,180,4,11, -20,13,159,80,159,57,40,38,250,80,159,8,24,41,38,249,22,27,11,80,159, -8,26,40,38,22,159,5,28,248,22,145,14,23,216,2,23,215,1,86,94,23, -215,1,247,22,186,14,249,247,22,191,14,248,22,74,195,23,25,86,94,23,193, -1,27,28,23,195,2,28,23,197,1,27,249,22,5,88,163,8,36,37,53,45, -9,225,25,23,20,33,38,23,217,2,27,28,23,204,2,11,193,28,192,192,28, -193,28,203,28,249,22,188,3,248,22,75,196,248,22,75,206,193,11,11,11,11, -86,94,23,197,1,11,28,23,193,2,86,102,23,214,1,23,211,1,23,210,1, -23,209,1,23,201,1,23,200,1,23,199,1,23,196,1,23,195,1,20,13,159, -80,159,58,40,38,250,80,159,8,25,41,38,249,22,27,11,80,159,8,27,40, -38,22,180,4,23,215,1,20,13,159,80,159,58,40,38,250,80,159,8,25,41, -38,249,22,27,11,80,159,8,27,40,38,22,159,5,28,248,22,145,14,23,217, -2,23,216,1,86,94,23,216,1,247,22,186,14,249,247,22,191,14,248,22,74, -195,23,26,86,94,23,193,1,27,28,23,197,2,28,23,201,1,27,249,22,5, -20,20,94,88,163,8,36,37,51,44,9,225,26,24,20,33,39,23,213,1,23, -218,2,27,28,23,204,2,11,193,28,192,192,28,193,28,23,204,2,28,249,22, -188,3,248,22,75,196,248,22,75,23,207,2,193,11,11,11,86,94,23,210,1, -11,86,94,23,201,1,11,28,23,193,2,86,101,23,215,1,23,213,1,23,212, -1,23,211,1,23,202,1,23,200,1,23,197,1,23,196,1,20,13,159,80,159, -59,40,38,250,80,159,8,26,41,38,249,22,27,11,80,159,8,28,40,38,22, -180,4,11,20,13,159,80,159,59,40,38,250,80,159,8,26,41,38,249,22,27, -11,80,159,8,28,40,38,22,159,5,28,248,22,145,14,23,218,2,23,217,1, -86,94,23,217,1,247,22,186,14,249,247,22,157,5,248,22,74,195,23,27,86, -94,23,193,1,27,28,23,197,1,28,23,201,1,27,249,22,5,20,20,94,88, -163,8,36,37,51,44,9,225,27,25,22,33,40,23,215,1,23,219,1,27,28, -23,205,2,11,193,28,192,192,28,193,28,204,28,249,22,188,3,248,22,75,196, -248,22,75,23,15,193,11,11,11,86,95,23,216,1,23,212,1,11,86,94,23, -201,1,11,28,23,193,2,86,95,23,213,1,23,198,1,20,13,159,80,159,8, -24,40,38,250,80,159,8,27,41,38,249,22,27,11,80,159,8,29,40,38,22, -180,4,23,217,1,20,13,159,80,159,8,24,40,38,250,80,159,8,27,41,38, -249,22,27,11,80,159,8,29,40,38,22,159,5,28,248,22,145,14,23,219,2, -23,218,1,86,94,23,218,1,247,22,186,14,249,247,22,157,5,248,22,74,195, -23,28,86,94,23,193,1,27,28,23,199,2,86,94,23,215,1,23,214,1,86, -94,23,214,1,23,215,1,20,13,159,80,159,8,25,40,38,250,80,159,8,28, -41,38,249,22,27,11,80,159,8,30,40,38,22,180,4,28,23,30,28,23,202, -1,11,195,86,94,23,202,1,11,20,13,159,80,159,8,25,40,38,250,80,159, -8,28,41,38,249,22,27,11,80,159,8,30,40,38,22,159,5,28,248,22,145, -14,23,220,2,23,219,1,86,94,23,219,1,247,22,186,14,249,247,22,157,5, -194,23,29,0,17,35,114,120,34,94,40,46,42,63,41,47,40,46,42,41,36, -34,32,43,88,163,8,36,37,59,11,2,26,222,33,44,27,249,22,132,15,2, -42,23,196,2,28,23,193,2,86,94,23,194,1,249,22,73,248,22,98,23,196, -2,27,248,22,107,23,197,1,27,249,22,132,15,2,42,23,196,2,28,23,193, -2,86,94,23,194,1,249,22,73,248,22,98,23,196,2,27,248,22,107,23,197, -1,27,249,22,132,15,2,42,23,196,2,28,23,193,2,86,94,23,194,1,249, -22,73,248,22,98,23,196,2,27,248,22,107,23,197,1,27,249,22,132,15,2, -42,23,196,2,28,23,193,2,86,94,23,194,1,249,22,73,248,22,98,23,196, -2,248,2,43,248,22,107,23,197,1,248,22,83,194,248,22,83,194,248,22,83, -194,248,22,83,194,32,45,88,163,36,37,8,40,11,2,26,222,33,46,28,248, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,53,46,49,46,50,46,51,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,60,0,0,0,1,0,0,7,0,18,0,45, +0,51,0,64,0,73,0,80,0,102,0,124,0,150,0,162,0,180,0,200,0, +212,0,228,0,251,0,7,1,38,1,45,1,50,1,55,1,60,1,65,1,70, +1,79,1,84,1,88,1,96,1,105,1,113,1,174,1,21,2,42,2,63,2, +93,2,123,2,181,2,239,2,32,3,81,3,15,9,34,9,48,9,206,9,220, +9,150,11,244,13,111,14,117,14,131,14,158,14,178,14,238,14,69,15,71,15, +140,15,152,21,204,21,227,21,0,0,233,24,0,0,66,35,37,98,111,111,116, +70,100,108,108,45,115,117,102,102,105,120,1,25,100,101,102,97,117,108,116,45, +108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,65,113,117,111, +116,101,29,94,2,4,67,35,37,117,116,105,108,115,11,68,35,37,112,97,114, +97,109,122,29,94,2,4,2,6,11,1,20,112,97,114,97,109,101,116,101,114, +105,122,97,116,105,111,110,45,107,101,121,1,20,100,101,102,97,117,108,116,45, +114,101,97,100,101,114,45,103,117,97,114,100,1,24,45,109,111,100,117,108,101, +45,104,97,115,104,45,116,97,98,108,101,45,116,97,98,108,101,71,45,112,97, +116,104,45,99,97,99,104,101,77,45,108,111,97,100,105,110,103,45,102,105,108, +101,110,97,109,101,79,45,108,111,97,100,105,110,103,45,112,114,111,109,112,116, +45,116,97,103,71,45,112,114,101,118,45,114,101,108,116,111,75,45,112,114,101, +118,45,114,101,108,116,111,45,100,105,114,1,21,115,112,108,105,116,45,114,101, +108,97,116,105,118,101,45,115,116,114,105,110,103,71,111,114,105,103,45,112,97, +114,97,109,122,1,29,115,116,97,110,100,97,114,100,45,109,111,100,117,108,101, +45,110,97,109,101,45,114,101,115,111,108,118,101,114,29,94,2,4,2,6,11, +64,98,111,111,116,64,115,101,97,108,64,115,97,109,101,5,3,46,122,111,5, +3,46,122,111,6,6,6,110,97,116,105,118,101,64,108,111,111,112,63,108,105, +98,67,105,103,110,111,114,101,100,249,22,14,195,80,159,38,46,38,249,80,159, +38,49,37,195,10,90,159,39,11,89,161,39,36,11,248,22,167,14,197,86,95, +23,195,1,23,193,1,28,249,22,133,15,0,11,35,114,120,34,91,46,93,115, +115,36,34,248,22,151,14,23,197,1,249,80,159,41,53,38,198,5,4,46,114, +107,116,196,27,28,23,195,2,28,249,22,140,9,23,197,2,80,158,39,47,86, +94,23,195,1,80,158,37,48,27,248,22,137,5,23,197,2,28,248,22,146,14, +23,194,2,90,159,39,11,89,161,39,36,11,248,22,167,14,23,197,1,86,95, +20,18,159,11,80,158,41,47,198,20,18,159,11,80,158,41,48,192,192,11,11, +28,23,193,2,192,86,94,23,193,1,27,247,22,159,5,28,192,192,247,22,187, +14,250,22,164,14,23,197,1,23,199,1,249,80,159,43,39,38,23,198,1,2, +23,250,22,164,14,23,197,1,23,199,1,249,80,159,43,39,38,23,198,1,2, +24,252,22,164,14,23,199,1,23,201,1,2,25,247,22,153,8,249,80,159,45, +39,38,23,200,1,80,159,45,36,38,252,22,164,14,23,199,1,23,201,1,2, +25,247,22,153,8,249,80,159,45,39,38,23,200,1,80,159,45,36,38,27,252, +22,164,14,23,200,1,23,202,1,2,25,247,22,153,8,249,80,159,46,39,38, +23,201,1,80,159,46,36,38,27,250,22,181,14,196,11,32,0,88,163,8,36, +36,41,11,9,222,11,28,192,249,22,73,195,194,11,27,252,22,164,14,23,200, +1,23,202,1,2,25,247,22,153,8,249,80,159,46,39,38,23,201,1,80,159, +46,36,38,27,250,22,181,14,196,11,32,0,88,163,8,36,36,41,11,9,222, +11,28,192,249,22,73,195,194,11,27,250,22,164,14,23,198,1,23,200,1,249, +80,159,44,39,38,23,199,1,2,23,27,250,22,181,14,196,11,32,0,88,163, +8,36,36,41,11,9,222,11,28,192,249,22,73,195,194,11,27,250,22,164,14, +23,198,1,23,200,1,249,80,159,44,39,38,23,199,1,2,24,27,250,22,181, +14,196,11,32,0,88,163,8,36,36,41,11,9,222,11,28,192,249,22,73,195, +194,11,86,94,28,248,80,159,37,38,38,23,195,2,12,250,22,176,9,77,108, +111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,6,25,25,112,97, +116,104,32,111,114,32,118,97,108,105,100,45,112,97,116,104,32,115,116,114,105, +110,103,23,197,2,90,159,46,11,89,161,37,36,11,28,248,22,170,14,23,205, +2,23,204,2,27,247,22,159,5,28,23,193,2,249,22,171,14,23,207,2,23, +195,1,23,205,2,89,161,39,37,11,248,22,167,14,23,205,1,86,94,23,196, +1,89,161,38,40,11,28,23,205,2,27,248,22,151,14,23,197,2,27,248,22, +188,7,23,195,2,28,28,249,22,188,3,23,195,2,40,249,22,191,7,5,4, +46,114,107,116,249,22,130,8,23,198,2,249,22,176,3,23,199,2,40,11,249, +22,7,23,199,2,248,22,155,14,249,22,131,8,250,22,130,8,23,202,1,36, +249,22,176,3,23,203,1,40,5,3,46,115,115,249,22,7,23,199,2,11,249, +22,7,23,197,2,11,89,161,37,42,11,28,249,22,140,9,23,199,2,23,197, +2,23,193,2,249,22,164,14,23,196,2,23,199,2,89,161,37,43,11,28,23, +198,2,28,249,22,140,9,23,200,2,23,197,1,23,193,1,86,94,23,193,1, +249,22,164,14,23,196,2,23,200,2,86,94,23,195,1,11,89,161,37,44,11, +28,249,22,140,9,23,196,2,68,114,101,108,97,116,105,118,101,86,94,23,194, +1,2,22,23,194,1,89,161,37,45,11,247,22,189,14,27,250,22,181,14,23, +203,2,11,32,0,88,163,8,36,36,41,11,9,222,11,27,28,23,194,2,249, +22,73,23,203,2,23,196,1,86,94,23,194,1,11,27,28,23,203,2,28,23, +194,2,11,27,250,22,181,14,23,207,2,11,32,0,88,163,8,36,36,41,11, +9,222,11,28,192,249,22,73,23,206,2,194,11,11,27,28,23,195,2,23,195, +2,23,194,2,27,88,163,36,37,50,44,62,122,111,225,15,13,9,33,33,27, +88,163,36,37,50,44,66,97,108,116,45,122,111,225,16,14,11,33,34,27,88, +163,36,37,52,45,9,225,17,15,11,33,35,27,88,163,36,37,52,45,9,225, +18,16,13,33,36,27,28,23,200,2,23,200,2,248,22,138,9,23,200,2,27, +28,23,208,2,28,23,200,2,86,94,23,201,1,23,200,2,248,22,138,9,23, +202,1,11,27,28,23,195,2,28,23,197,1,27,249,22,5,88,163,8,36,37, +53,45,9,225,24,22,18,33,37,23,216,2,27,28,23,202,2,11,193,28,192, +192,28,193,28,23,202,2,28,249,22,188,3,248,22,75,196,248,22,75,23,205, +2,193,11,11,11,11,86,94,23,197,1,11,28,23,193,2,86,105,23,213,1, +23,211,1,23,210,1,23,209,1,23,208,1,23,201,1,23,200,1,23,199,1, +23,198,1,23,196,1,23,195,1,23,194,1,20,13,159,80,159,57,40,38,250, +80,159,8,24,41,38,249,22,27,11,80,159,8,26,40,38,22,180,4,11,20, +13,159,80,159,57,40,38,250,80,159,8,24,41,38,249,22,27,11,80,159,8, +26,40,38,22,159,5,28,248,22,146,14,23,216,2,23,215,1,86,94,23,215, +1,247,22,187,14,249,247,22,128,15,248,22,74,195,23,25,86,94,23,193,1, +27,28,23,195,2,28,23,197,1,27,249,22,5,88,163,8,36,37,53,45,9, +225,25,23,20,33,38,23,217,2,27,28,23,204,2,11,193,28,192,192,28,193, +28,203,28,249,22,188,3,248,22,75,196,248,22,75,206,193,11,11,11,11,86, +94,23,197,1,11,28,23,193,2,86,102,23,214,1,23,211,1,23,210,1,23, +209,1,23,201,1,23,200,1,23,199,1,23,196,1,23,195,1,20,13,159,80, +159,58,40,38,250,80,159,8,25,41,38,249,22,27,11,80,159,8,27,40,38, +22,180,4,23,215,1,20,13,159,80,159,58,40,38,250,80,159,8,25,41,38, +249,22,27,11,80,159,8,27,40,38,22,159,5,28,248,22,146,14,23,217,2, +23,216,1,86,94,23,216,1,247,22,187,14,249,247,22,128,15,248,22,74,195, +23,26,86,94,23,193,1,27,28,23,197,2,28,23,201,1,27,249,22,5,20, +20,94,88,163,8,36,37,51,44,9,225,26,24,20,33,39,23,213,1,23,218, +2,27,28,23,204,2,11,193,28,192,192,28,193,28,23,204,2,28,249,22,188, +3,248,22,75,196,248,22,75,23,207,2,193,11,11,11,86,94,23,210,1,11, +86,94,23,201,1,11,28,23,193,2,86,101,23,215,1,23,213,1,23,212,1, +23,211,1,23,202,1,23,200,1,23,197,1,23,196,1,20,13,159,80,159,59, +40,38,250,80,159,8,26,41,38,249,22,27,11,80,159,8,28,40,38,22,180, +4,11,20,13,159,80,159,59,40,38,250,80,159,8,26,41,38,249,22,27,11, +80,159,8,28,40,38,22,159,5,28,248,22,146,14,23,218,2,23,217,1,86, +94,23,217,1,247,22,187,14,249,247,22,157,5,248,22,74,195,23,27,86,94, +23,193,1,27,28,23,197,1,28,23,201,1,27,249,22,5,20,20,94,88,163, +8,36,37,51,44,9,225,27,25,22,33,40,23,215,1,23,219,1,27,28,23, +205,2,11,193,28,192,192,28,193,28,204,28,249,22,188,3,248,22,75,196,248, +22,75,23,15,193,11,11,11,86,95,23,216,1,23,212,1,11,86,94,23,201, +1,11,28,23,193,2,86,95,23,213,1,23,198,1,20,13,159,80,159,8,24, +40,38,250,80,159,8,27,41,38,249,22,27,11,80,159,8,29,40,38,22,180, +4,23,217,1,20,13,159,80,159,8,24,40,38,250,80,159,8,27,41,38,249, +22,27,11,80,159,8,29,40,38,22,159,5,28,248,22,146,14,23,219,2,23, +218,1,86,94,23,218,1,247,22,187,14,249,247,22,157,5,248,22,74,195,23, +28,86,94,23,193,1,27,28,23,199,2,86,94,23,215,1,23,214,1,86,94, +23,214,1,23,215,1,20,13,159,80,159,8,25,40,38,250,80,159,8,28,41, +38,249,22,27,11,80,159,8,30,40,38,22,180,4,28,23,30,28,23,202,1, +11,195,86,94,23,202,1,11,20,13,159,80,159,8,25,40,38,250,80,159,8, +28,41,38,249,22,27,11,80,159,8,30,40,38,22,159,5,28,248,22,146,14, +23,220,2,23,219,1,86,94,23,219,1,247,22,187,14,249,247,22,157,5,194, +23,29,0,17,35,114,120,34,94,40,46,42,63,41,47,40,46,42,41,36,34, +32,43,88,163,8,36,37,59,11,2,26,222,33,44,27,249,22,133,15,2,42, +23,196,2,28,23,193,2,86,94,23,194,1,249,22,73,248,22,98,23,196,2, +27,248,22,107,23,197,1,27,249,22,133,15,2,42,23,196,2,28,23,193,2, +86,94,23,194,1,249,22,73,248,22,98,23,196,2,27,248,22,107,23,197,1, +27,249,22,133,15,2,42,23,196,2,28,23,193,2,86,94,23,194,1,249,22, +73,248,22,98,23,196,2,27,248,22,107,23,197,1,27,249,22,133,15,2,42, +23,196,2,28,23,193,2,86,94,23,194,1,249,22,73,248,22,98,23,196,2, +248,2,43,248,22,107,23,197,1,248,22,83,194,248,22,83,194,248,22,83,194, +248,22,83,194,32,45,88,163,36,37,8,40,11,2,26,222,33,46,28,248,22, +81,248,22,75,23,195,2,249,22,7,9,248,22,74,195,27,248,22,75,194,90, +159,38,11,89,161,38,36,11,28,248,22,81,248,22,75,23,197,2,249,22,7, +9,248,22,74,197,90,159,38,11,89,161,38,36,11,27,248,22,75,198,28,248, 22,81,248,22,75,23,195,2,249,22,7,9,248,22,74,195,27,248,22,75,194, 90,159,38,11,89,161,38,36,11,28,248,22,81,248,22,75,23,197,2,249,22, 7,9,248,22,74,197,90,159,38,11,89,161,38,36,11,27,248,22,75,198,28, @@ -759,25 +762,25 @@ 249,22,7,9,248,22,74,197,90,159,38,11,89,161,38,36,11,27,248,22,75, 198,28,248,22,81,248,22,75,23,195,2,249,22,7,9,248,22,74,195,27,248, 22,75,194,90,159,38,11,89,161,38,36,11,28,248,22,81,248,22,75,23,197, -2,249,22,7,9,248,22,74,197,90,159,38,11,89,161,38,36,11,27,248,22, -75,198,28,248,22,81,248,22,75,23,195,2,249,22,7,9,248,22,74,195,27, -248,22,75,194,90,159,38,11,89,161,38,36,11,28,248,22,81,248,22,75,23, -197,2,249,22,7,9,248,22,74,197,90,159,38,11,89,161,38,36,11,248,2, -45,248,22,75,198,249,22,7,249,22,73,248,22,74,201,196,195,249,22,7,249, -22,73,248,22,74,200,196,195,249,22,7,249,22,73,248,22,74,201,196,195,249, -22,7,249,22,73,248,22,74,200,196,195,249,22,7,249,22,73,248,22,74,201, -196,195,249,22,7,249,22,73,248,22,74,200,196,195,249,22,7,249,22,73,248, -22,74,201,196,195,249,22,7,249,22,73,248,22,74,200,196,195,249,22,7,249, -22,73,248,22,74,201,196,195,249,22,7,249,22,73,248,22,74,200,196,195,27, -27,249,22,132,15,2,42,23,197,2,28,23,193,2,86,94,23,195,1,249,22, -73,248,22,98,23,196,2,27,248,22,107,23,197,1,27,249,22,132,15,2,42, -23,196,2,28,23,193,2,86,94,23,194,1,249,22,73,248,22,98,23,196,2, -27,248,22,107,23,197,1,27,249,22,132,15,2,42,23,196,2,28,23,193,2, -86,94,23,194,1,249,22,73,248,22,98,23,196,2,27,248,22,107,23,197,1, -27,249,22,132,15,2,42,23,196,2,28,23,193,2,86,94,23,194,1,249,22, -73,248,22,98,23,196,2,248,2,43,248,22,107,23,197,1,248,22,83,194,248, -22,83,194,248,22,83,194,248,22,83,195,28,23,195,1,192,28,248,22,81,248, -22,75,23,195,2,249,22,7,9,248,22,74,195,27,248,22,75,194,90,159,38, +2,249,22,7,9,248,22,74,197,90,159,38,11,89,161,38,36,11,248,2,45, +248,22,75,198,249,22,7,249,22,73,248,22,74,201,196,195,249,22,7,249,22, +73,248,22,74,200,196,195,249,22,7,249,22,73,248,22,74,201,196,195,249,22, +7,249,22,73,248,22,74,200,196,195,249,22,7,249,22,73,248,22,74,201,196, +195,249,22,7,249,22,73,248,22,74,200,196,195,249,22,7,249,22,73,248,22, +74,201,196,195,249,22,7,249,22,73,248,22,74,200,196,195,249,22,7,249,22, +73,248,22,74,201,196,195,249,22,7,249,22,73,248,22,74,200,196,195,27,27, +249,22,133,15,2,42,23,197,2,28,23,193,2,86,94,23,195,1,249,22,73, +248,22,98,23,196,2,27,248,22,107,23,197,1,27,249,22,133,15,2,42,23, +196,2,28,23,193,2,86,94,23,194,1,249,22,73,248,22,98,23,196,2,27, +248,22,107,23,197,1,27,249,22,133,15,2,42,23,196,2,28,23,193,2,86, +94,23,194,1,249,22,73,248,22,98,23,196,2,27,248,22,107,23,197,1,27, +249,22,133,15,2,42,23,196,2,28,23,193,2,86,94,23,194,1,249,22,73, +248,22,98,23,196,2,248,2,43,248,22,107,23,197,1,248,22,83,194,248,22, +83,194,248,22,83,194,248,22,83,195,28,23,195,1,192,28,248,22,81,248,22, +75,23,195,2,249,22,7,9,248,22,74,195,27,248,22,75,194,90,159,38,11, +89,161,38,36,11,28,248,22,81,248,22,75,23,197,2,249,22,7,9,248,22, +74,197,27,248,22,75,196,90,159,38,11,89,161,38,36,11,28,248,22,81,248, +22,75,23,197,2,249,22,7,9,248,22,74,197,27,248,22,75,196,90,159,38, 11,89,161,38,36,11,28,248,22,81,248,22,75,23,197,2,249,22,7,9,248, 22,74,197,27,248,22,75,196,90,159,38,11,89,161,38,36,11,28,248,22,81, 248,22,75,23,197,2,249,22,7,9,248,22,74,197,27,248,22,75,196,90,159, @@ -788,172 +791,169 @@ 9,248,22,74,197,27,248,22,75,196,90,159,38,11,89,161,38,36,11,28,248, 22,81,248,22,75,23,197,2,249,22,7,9,248,22,74,197,27,248,22,75,196, 90,159,38,11,89,161,38,36,11,28,248,22,81,248,22,75,23,197,2,249,22, -7,9,248,22,74,197,27,248,22,75,196,90,159,38,11,89,161,38,36,11,28, -248,22,81,248,22,75,23,197,2,249,22,7,9,248,22,74,197,27,248,22,75, -196,90,159,38,11,89,161,38,36,11,28,248,22,81,248,22,75,23,197,2,249, -22,7,9,248,22,74,197,90,159,38,11,89,161,38,36,11,248,2,45,248,22, -75,198,249,22,7,249,22,73,248,22,74,201,196,195,249,22,7,249,22,73,248, -22,74,202,196,195,249,22,7,249,22,73,248,22,74,202,196,195,249,22,7,249, -22,73,248,22,74,202,196,195,249,22,7,249,22,73,248,22,74,202,196,195,249, -22,7,249,22,73,248,22,74,202,196,195,249,22,7,249,22,73,248,22,74,202, -196,195,249,22,7,249,22,73,248,22,74,202,196,195,249,22,7,249,22,73,248, -22,74,202,196,195,249,22,7,249,22,73,248,22,74,200,196,195,86,95,28,248, -22,135,5,195,12,250,22,175,9,2,18,6,20,20,114,101,115,111,108,118,101, -100,45,109,111,100,117,108,101,45,112,97,116,104,197,28,24,193,2,248,24,194, -1,195,86,94,23,193,1,12,27,250,22,153,2,80,159,41,43,38,248,22,157, -15,247,22,187,12,11,27,28,23,194,2,193,86,94,23,194,1,27,247,22,133, -2,86,94,250,22,151,2,80,159,43,43,38,248,22,157,15,247,22,187,12,195, -192,250,22,151,2,195,199,66,97,116,116,97,99,104,251,211,197,198,199,10,28, -192,250,22,174,9,11,196,195,248,22,172,9,194,28,249,22,135,7,194,6,1, -1,46,2,22,28,249,22,135,7,194,6,2,2,46,46,62,117,112,192,32,52, -88,163,8,36,37,50,11,67,115,115,45,62,114,107,116,222,33,53,27,248,22, -132,7,194,28,249,22,188,3,194,39,28,249,22,135,7,6,3,3,46,115,115, -249,22,151,7,197,249,22,176,3,198,39,249,22,152,7,250,22,151,7,198,36, -249,22,176,3,199,39,6,4,4,46,114,107,116,193,193,28,249,22,141,9,248, -22,75,23,200,2,23,197,1,28,249,22,139,9,248,22,74,23,200,2,23,196, -1,251,22,172,9,2,18,6,28,28,99,121,99,108,101,32,105,110,32,108,111, -97,100,105,110,103,32,97,116,32,126,46,115,58,32,126,46,115,23,200,1,249, -22,2,22,75,248,22,88,249,22,73,23,206,1,23,202,1,12,12,247,192,20, -13,159,80,159,40,45,38,249,22,73,248,22,157,15,247,22,187,12,23,197,1, -20,13,159,80,159,40,40,38,250,80,159,43,41,38,249,22,27,11,80,159,45, -40,38,22,179,4,23,196,1,249,247,22,158,5,23,198,1,248,22,61,248,22, -149,14,23,198,1,86,94,28,28,248,22,145,14,23,196,2,10,248,22,143,5, -23,196,2,12,28,23,197,2,250,22,174,9,11,6,15,15,98,97,100,32,109, -111,100,117,108,101,32,112,97,116,104,23,200,2,250,22,175,9,2,18,6,19, -19,109,111,100,117,108,101,45,112,97,116,104,32,111,114,32,112,97,116,104,23, -198,2,28,28,248,22,71,23,196,2,249,22,139,9,248,22,74,23,198,2,2, -4,11,248,22,136,5,248,22,98,196,28,28,248,22,71,23,196,2,249,22,139, -9,248,22,74,23,198,2,66,112,108,97,110,101,116,11,86,94,28,207,12,20, -13,159,80,159,37,52,38,80,158,37,50,89,161,37,36,10,249,22,181,4,21, -94,2,27,6,19,19,112,108,97,110,101,116,47,114,101,115,111,108,118,101,114, -46,114,107,116,1,27,112,108,97,110,101,116,45,109,111,100,117,108,101,45,110, -97,109,101,45,114,101,115,111,108,118,101,114,12,252,212,199,200,201,202,80,158, -42,50,86,94,23,193,1,27,88,163,8,36,37,46,11,79,115,104,111,119,45, -99,111,108,108,101,99,116,105,111,110,45,101,114,114,223,5,33,50,27,28,248, -22,58,23,198,2,27,250,22,153,2,80,159,43,44,38,249,22,73,23,203,2, -247,22,187,14,11,28,23,193,2,192,86,94,23,193,1,90,159,38,11,89,161, -38,36,11,249,80,159,44,49,37,248,22,64,23,203,2,11,27,28,248,22,81, -23,195,2,6,8,8,109,97,105,110,46,114,107,116,249,22,152,7,23,197,2, -6,4,4,46,114,107,116,27,252,80,159,49,54,38,2,18,23,204,1,28,248, -22,81,23,201,2,23,201,1,86,94,23,201,1,248,22,74,23,201,2,28,248, -22,81,23,201,2,86,94,23,200,1,9,248,22,75,23,201,1,23,199,2,249, -22,163,14,23,195,1,23,196,1,28,248,22,129,7,23,198,2,86,94,23,194, -1,27,248,80,159,41,59,37,23,200,2,27,250,22,153,2,80,159,44,44,38, -249,22,73,23,204,2,23,199,2,11,28,23,193,2,192,86,94,23,193,1,90, -159,38,11,89,161,38,36,11,249,80,159,45,49,37,23,203,2,11,250,22,1, -22,163,14,23,199,1,249,22,87,249,22,2,32,0,88,163,8,36,37,44,11, -9,222,33,51,23,200,1,248,22,83,248,2,52,23,201,1,28,248,22,145,14, -23,198,2,86,94,23,194,1,28,248,22,168,14,23,198,2,248,80,159,40,8, -24,37,248,22,172,14,23,199,2,248,22,83,6,26,26,32,40,97,32,112,97, -116,104,32,109,117,115,116,32,98,101,32,97,98,115,111,108,117,116,101,41,28, -249,22,139,9,248,22,74,23,200,2,2,27,27,250,22,153,2,80,159,43,44, -38,249,22,73,23,203,2,247,22,187,14,11,28,23,193,2,192,86,94,23,193, -1,90,159,39,11,89,161,38,36,11,249,80,159,45,49,37,248,22,98,23,204, -2,11,89,161,37,38,11,28,248,22,81,248,22,100,23,203,2,28,248,22,81, -23,194,2,249,22,136,15,0,8,35,114,120,34,91,46,93,34,23,196,2,11, -10,27,28,23,196,2,248,2,52,23,196,2,28,248,22,81,23,195,2,6,8, -8,109,97,105,110,46,114,107,116,28,249,22,136,15,0,8,35,114,120,34,91, -46,93,34,23,197,2,248,2,52,23,196,2,249,22,152,7,23,197,2,6,4, -4,46,114,107,116,27,28,23,197,1,86,94,23,196,1,249,22,87,28,248,22, -81,248,22,100,23,207,2,21,93,6,5,5,109,122,108,105,98,249,22,1,22, -87,249,22,2,80,159,51,8,25,37,248,22,100,23,210,2,23,197,1,28,248, -22,81,23,196,2,86,94,23,195,1,248,22,83,23,197,1,86,94,23,196,1, -23,195,1,27,252,80,159,51,54,38,2,18,23,206,1,248,22,74,23,200,2, -248,22,75,23,200,1,23,200,2,249,22,163,14,23,195,1,23,197,1,28,249, -22,139,9,248,22,74,23,200,2,64,102,105,108,101,248,80,159,40,8,24,37, -248,22,172,14,249,22,170,14,248,22,174,14,248,22,98,23,203,2,248,80,159, -44,59,37,23,203,2,12,86,94,28,28,248,22,145,14,23,194,2,10,248,22, -154,8,23,194,2,86,94,23,199,1,12,28,23,199,2,250,22,174,9,67,114, -101,113,117,105,114,101,249,22,177,7,6,17,17,98,97,100,32,109,111,100,117, -108,101,32,112,97,116,104,126,97,28,23,198,2,248,22,74,23,199,2,6,0, -0,23,202,1,86,94,23,199,1,250,22,175,9,2,18,249,22,177,7,6,13, -13,109,111,100,117,108,101,32,112,97,116,104,126,97,28,23,198,2,248,22,74, -23,199,2,6,0,0,23,200,2,27,28,248,22,154,8,23,195,2,249,22,159, -8,23,196,2,36,249,22,172,14,248,22,173,14,23,197,2,11,27,28,248,22, -154,8,23,196,2,249,22,159,8,23,197,2,37,248,80,159,42,55,38,23,195, -2,90,159,39,11,89,161,39,36,11,28,248,22,154,8,23,199,2,250,22,7, -2,28,249,22,159,8,23,203,2,38,2,28,248,22,166,14,23,198,2,86,95, -23,195,1,23,193,1,27,28,248,22,154,8,23,200,2,249,22,159,8,23,201, -2,39,249,80,159,47,53,38,23,197,2,5,0,27,28,248,22,154,8,23,201, -2,249,22,159,8,23,202,2,40,248,22,136,5,23,200,2,27,27,250,22,153, -2,80,159,51,43,38,248,22,157,15,247,22,187,12,11,28,23,193,2,192,86, -94,23,193,1,27,247,22,133,2,86,94,250,22,151,2,80,159,52,43,38,248, -22,157,15,247,22,187,12,195,192,86,95,28,23,208,1,27,250,22,153,2,23, -197,2,197,11,28,23,193,1,12,86,95,27,27,28,248,22,17,80,159,51,46, -38,80,159,50,46,38,247,22,19,250,22,25,248,22,23,23,197,2,80,159,53, -45,38,23,196,1,27,248,22,157,15,247,22,187,12,249,22,3,20,20,94,88, -163,8,36,37,55,11,9,226,12,11,2,3,33,54,23,195,1,23,196,1,248, -28,248,22,17,80,159,50,46,38,32,0,88,163,36,37,42,11,9,222,33,55, -80,159,49,8,26,37,88,163,36,36,51,8,176,8,9,227,13,9,8,4,3, -33,56,250,22,151,2,23,197,1,197,10,12,28,28,248,22,154,8,23,202,1, -11,28,248,22,129,7,23,206,2,10,28,248,22,58,23,206,2,10,28,248,22, -71,23,206,2,249,22,139,9,248,22,74,23,208,2,2,27,11,250,22,151,2, -80,159,50,44,38,28,248,22,129,7,23,209,2,249,22,73,23,210,1,248,80, -159,53,59,37,23,212,1,86,94,23,209,1,249,22,73,23,210,1,247,22,187, -14,252,22,156,8,23,208,1,23,207,1,23,205,1,23,203,1,201,12,193,86, -96,20,18,159,11,80,158,36,50,248,80,159,37,58,38,249,22,27,11,80,159, -39,52,38,248,22,178,4,80,159,37,51,38,248,22,158,5,80,159,37,37,37, -248,22,178,13,80,159,37,42,37,20,18,159,11,80,158,36,50,248,80,159,37, -58,38,249,22,27,11,80,159,39,52,38,159,36,20,112,159,36,16,1,11,16, -0,20,26,142,2,1,2,1,29,11,11,11,11,11,10,38,80,158,36,36,20, -112,159,40,16,23,2,2,2,3,30,2,5,72,112,97,116,104,45,115,116,114, -105,110,103,63,11,30,2,5,75,112,97,116,104,45,97,100,100,45,115,117,102, -102,105,120,8,30,2,7,2,8,5,30,2,7,1,23,101,120,116,101,110,100, -45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,3,2,9,2, -10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,30,2,19,2, -8,5,30,2,5,79,112,97,116,104,45,114,101,112,108,97,99,101,45,115,117, -102,102,105,120,10,30,2,5,73,102,105,110,100,45,99,111,108,45,102,105,108, -101,3,30,2,5,76,110,111,114,109,97,108,45,99,97,115,101,45,112,97,116, -104,7,2,20,2,21,30,2,19,74,114,101,112,97,114,97,109,101,116,101,114, -105,122,101,6,16,0,16,0,36,16,0,36,16,11,2,12,2,13,2,10,2, -11,2,14,2,15,2,3,2,9,2,2,2,16,2,18,47,11,11,39,36,11, -11,16,3,2,20,2,17,2,21,16,3,11,11,11,16,3,2,20,2,17,2, -21,39,39,37,11,11,16,0,16,0,16,0,36,36,11,11,11,16,0,16,0, -16,0,36,36,16,0,16,18,20,15,16,2,88,163,36,37,45,8,128,16,9, -223,0,33,29,80,159,36,8,26,37,20,15,16,2,88,163,8,36,37,45,8, -128,128,9,223,0,33,30,80,159,36,8,25,37,20,15,16,2,88,163,36,37, -49,8,240,0,0,2,0,72,112,97,116,104,45,115,115,45,62,114,107,116,223, -0,33,31,80,159,36,8,24,37,20,15,16,2,88,163,36,37,49,8,128,96, -67,103,101,116,45,100,105,114,223,0,33,32,80,159,36,59,37,20,15,16,2, -248,22,151,8,69,115,111,45,115,117,102,102,105,120,80,159,36,36,37,20,15, -16,2,88,163,36,38,8,38,8,61,2,3,223,0,33,41,80,159,36,37,37, -20,15,16,2,32,0,88,163,8,36,37,42,11,2,9,222,192,80,159,36,42, -37,20,15,16,2,247,22,136,2,80,159,36,43,37,20,15,16,2,247,22,135, -2,80,159,36,44,37,20,15,16,2,247,22,69,80,159,36,45,37,20,15,16, -2,248,22,18,74,109,111,100,117,108,101,45,108,111,97,100,105,110,103,80,159, -36,46,37,20,15,16,2,11,80,158,36,47,20,15,16,2,11,80,158,36,48, -20,15,16,2,32,0,88,163,36,38,8,42,11,2,16,222,33,47,80,159,36, -49,37,20,15,16,2,11,80,158,36,50,20,15,16,2,27,11,20,19,158,36, -90,159,37,10,89,161,37,36,10,20,25,96,2,18,88,163,8,36,37,51,8, -128,2,9,224,2,1,33,48,88,163,36,39,49,11,9,223,0,33,49,88,163, -36,40,8,29,8,240,176,103,143,7,9,224,2,1,33,57,207,80,159,36,51, -37,20,15,16,2,88,163,36,36,45,8,240,66,192,65,0,2,20,223,0,33, -58,80,159,36,56,37,20,15,16,2,88,163,8,36,36,45,8,240,0,64,65, -0,2,21,223,0,33,59,80,159,36,57,37,96,29,94,2,4,68,35,37,107, -101,114,110,101,108,11,29,94,2,4,69,35,37,109,105,110,45,115,116,120,11, -2,5,2,19,9,9,9,36,0}; - EVAL_ONE_SIZED_STR((char *)expr, 6539); +7,9,248,22,74,197,90,159,38,11,89,161,38,36,11,248,2,45,248,22,75, +198,249,22,7,249,22,73,248,22,74,201,196,195,249,22,7,249,22,73,248,22, +74,202,196,195,249,22,7,249,22,73,248,22,74,202,196,195,249,22,7,249,22, +73,248,22,74,202,196,195,249,22,7,249,22,73,248,22,74,202,196,195,249,22, +7,249,22,73,248,22,74,202,196,195,249,22,7,249,22,73,248,22,74,202,196, +195,249,22,7,249,22,73,248,22,74,202,196,195,249,22,7,249,22,73,248,22, +74,202,196,195,249,22,7,249,22,73,248,22,74,200,196,195,86,95,28,248,22, +135,5,195,12,250,22,176,9,2,18,6,20,20,114,101,115,111,108,118,101,100, +45,109,111,100,117,108,101,45,112,97,116,104,197,28,24,193,2,248,24,194,1, +195,86,94,23,193,1,12,27,250,22,153,2,80,159,41,43,38,248,22,158,15, +247,22,188,12,11,27,28,23,194,2,193,86,94,23,194,1,27,247,22,133,2, +86,94,250,22,151,2,80,159,43,43,38,248,22,158,15,247,22,188,12,195,192, +250,22,151,2,195,199,66,97,116,116,97,99,104,251,211,197,198,199,10,28,192, +250,22,175,9,11,196,195,248,22,173,9,194,28,249,22,136,7,194,6,1,1, +46,2,22,28,249,22,136,7,194,6,2,2,46,46,62,117,112,192,32,52,88, +163,8,36,37,50,11,67,115,115,45,62,114,107,116,222,33,53,27,248,22,133, +7,194,28,249,22,188,3,194,39,28,249,22,136,7,6,3,3,46,115,115,249, +22,152,7,197,249,22,176,3,198,39,249,22,153,7,250,22,152,7,198,36,249, +22,176,3,199,39,6,4,4,46,114,107,116,193,193,28,249,22,142,9,248,22, +75,23,200,2,23,197,1,28,249,22,140,9,248,22,74,23,200,2,23,196,1, +251,22,173,9,2,18,6,28,28,99,121,99,108,101,32,105,110,32,108,111,97, +100,105,110,103,32,97,116,32,126,46,115,58,32,126,46,115,23,200,1,249,22, +2,22,75,248,22,88,249,22,73,23,206,1,23,202,1,12,12,247,192,20,13, +159,80,159,40,45,38,249,22,73,248,22,158,15,247,22,188,12,23,197,1,20, +13,159,80,159,40,40,38,250,80,159,43,41,38,249,22,27,11,80,159,45,40, +38,22,179,4,23,196,1,249,247,22,158,5,23,198,1,248,22,61,248,22,150, +14,23,198,1,86,94,28,28,248,22,146,14,23,196,2,10,248,22,143,5,23, +196,2,12,28,23,197,2,250,22,175,9,11,6,15,15,98,97,100,32,109,111, +100,117,108,101,32,112,97,116,104,23,200,2,250,22,176,9,2,18,6,19,19, +109,111,100,117,108,101,45,112,97,116,104,32,111,114,32,112,97,116,104,23,198, +2,28,28,248,22,71,23,196,2,249,22,140,9,248,22,74,23,198,2,2,4, +11,248,22,136,5,248,22,98,196,28,28,248,22,71,23,196,2,249,22,140,9, +248,22,74,23,198,2,66,112,108,97,110,101,116,11,86,94,28,207,12,20,13, +159,80,159,37,52,38,80,158,37,50,89,161,37,36,10,249,22,181,4,21,94, +2,27,6,19,19,112,108,97,110,101,116,47,114,101,115,111,108,118,101,114,46, +114,107,116,1,27,112,108,97,110,101,116,45,109,111,100,117,108,101,45,110,97, +109,101,45,114,101,115,111,108,118,101,114,12,252,212,199,200,201,202,80,158,42, +50,86,94,23,193,1,27,88,163,8,36,37,46,11,79,115,104,111,119,45,99, +111,108,108,101,99,116,105,111,110,45,101,114,114,223,5,33,50,27,28,248,22, +58,23,198,2,27,250,22,153,2,80,159,43,44,38,249,22,73,23,203,2,247, +22,188,14,11,28,23,193,2,192,86,94,23,193,1,90,159,38,11,89,161,38, +36,11,249,80,159,44,49,37,248,22,64,23,203,2,11,27,28,248,22,81,23, +195,2,6,8,8,109,97,105,110,46,114,107,116,249,22,153,7,23,197,2,6, +4,4,46,114,107,116,27,252,80,159,49,54,38,2,18,23,204,1,28,248,22, +81,23,201,2,23,201,1,86,94,23,201,1,248,22,74,23,201,2,28,248,22, +81,23,201,2,86,94,23,200,1,9,248,22,75,23,201,1,23,199,2,249,22, +164,14,23,195,1,23,196,1,28,248,22,130,7,23,198,2,86,94,23,194,1, +27,248,80,159,41,59,37,23,200,2,27,250,22,153,2,80,159,44,44,38,249, +22,73,23,204,2,23,199,2,11,28,23,193,2,192,86,94,23,193,1,90,159, +38,11,89,161,38,36,11,249,80,159,45,49,37,23,203,2,11,250,22,1,22, +164,14,23,199,1,249,22,87,249,22,2,32,0,88,163,8,36,37,44,11,9, +222,33,51,23,200,1,248,22,83,248,2,52,23,201,1,28,248,22,146,14,23, +198,2,86,94,23,194,1,28,248,22,169,14,23,198,2,248,80,159,40,8,24, +37,248,22,173,14,23,199,2,248,22,83,6,26,26,32,40,97,32,112,97,116, +104,32,109,117,115,116,32,98,101,32,97,98,115,111,108,117,116,101,41,28,249, +22,140,9,248,22,74,23,200,2,2,27,27,250,22,153,2,80,159,43,44,38, +249,22,73,23,203,2,247,22,188,14,11,28,23,193,2,192,86,94,23,193,1, +90,159,39,11,89,161,38,36,11,249,80,159,45,49,37,248,22,98,23,204,2, +11,89,161,37,38,11,28,248,22,81,248,22,100,23,203,2,28,248,22,81,23, +194,2,249,22,137,15,0,8,35,114,120,34,91,46,93,34,23,196,2,11,10, +27,28,23,196,2,248,2,52,23,196,2,28,248,22,81,23,195,2,6,8,8, +109,97,105,110,46,114,107,116,28,249,22,137,15,0,8,35,114,120,34,91,46, +93,34,23,197,2,248,2,52,23,196,2,249,22,153,7,23,197,2,6,4,4, +46,114,107,116,27,28,23,197,1,86,94,23,196,1,249,22,87,28,248,22,81, +248,22,100,23,207,2,21,93,6,5,5,109,122,108,105,98,249,22,1,22,87, +249,22,2,80,159,51,8,25,37,248,22,100,23,210,2,23,197,1,28,248,22, +81,23,196,2,86,94,23,195,1,248,22,83,23,197,1,86,94,23,196,1,23, +195,1,27,252,80,159,51,54,38,2,18,23,206,1,248,22,74,23,200,2,248, +22,75,23,200,1,23,200,2,249,22,164,14,23,195,1,23,197,1,28,249,22, +140,9,248,22,74,23,200,2,64,102,105,108,101,248,80,159,40,8,24,37,248, +22,173,14,249,22,171,14,248,22,175,14,248,22,98,23,203,2,248,80,159,44, +59,37,23,203,2,12,86,94,28,28,248,22,146,14,23,194,2,10,248,22,155, +8,23,194,2,86,94,23,199,1,12,28,23,199,2,250,22,175,9,67,114,101, +113,117,105,114,101,249,22,178,7,6,17,17,98,97,100,32,109,111,100,117,108, +101,32,112,97,116,104,126,97,28,23,198,2,248,22,74,23,199,2,6,0,0, +23,202,1,86,94,23,199,1,250,22,176,9,2,18,249,22,178,7,6,13,13, +109,111,100,117,108,101,32,112,97,116,104,126,97,28,23,198,2,248,22,74,23, +199,2,6,0,0,23,200,2,27,28,248,22,155,8,23,195,2,249,22,160,8, +23,196,2,36,249,22,173,14,248,22,174,14,23,197,2,11,27,28,248,22,155, +8,23,196,2,249,22,160,8,23,197,2,37,248,80,159,42,55,38,23,195,2, +90,159,39,11,89,161,39,36,11,28,248,22,155,8,23,199,2,250,22,7,2, +28,249,22,160,8,23,203,2,38,2,28,248,22,167,14,23,198,2,86,95,23, +195,1,23,193,1,27,28,248,22,155,8,23,200,2,249,22,160,8,23,201,2, +39,249,80,159,47,53,38,23,197,2,5,0,27,28,248,22,155,8,23,201,2, +249,22,160,8,23,202,2,40,248,22,136,5,23,200,2,27,27,250,22,153,2, +80,159,51,43,38,248,22,158,15,247,22,188,12,11,28,23,193,2,192,86,94, +23,193,1,27,247,22,133,2,86,94,250,22,151,2,80,159,52,43,38,248,22, +158,15,247,22,188,12,195,192,86,95,28,23,208,1,27,250,22,153,2,23,197, +2,197,11,28,23,193,1,12,86,95,27,27,28,248,22,17,80,159,51,46,38, +80,159,50,46,38,247,22,19,250,22,25,248,22,23,23,197,2,80,159,53,45, +38,23,196,1,27,248,22,158,15,247,22,188,12,249,22,3,20,20,94,88,163, +8,36,37,55,11,9,226,12,11,2,3,33,54,23,195,1,23,196,1,248,28, +248,22,17,80,159,50,46,38,32,0,88,163,36,37,42,11,9,222,33,55,80, +159,49,8,26,37,88,163,36,36,51,8,176,8,9,227,13,9,8,4,3,33, +56,250,22,151,2,23,197,1,197,10,12,28,28,248,22,155,8,23,202,1,11, +28,248,22,130,7,23,206,2,10,28,248,22,58,23,206,2,10,28,248,22,71, +23,206,2,249,22,140,9,248,22,74,23,208,2,2,27,11,250,22,151,2,80, +159,50,44,38,28,248,22,130,7,23,209,2,249,22,73,23,210,1,248,80,159, +53,59,37,23,212,1,86,94,23,209,1,249,22,73,23,210,1,247,22,188,14, +252,22,157,8,23,208,1,23,207,1,23,205,1,23,203,1,201,12,193,86,96, +20,18,159,11,80,158,36,50,248,80,159,37,58,38,249,22,27,11,80,159,39, +52,38,248,22,178,4,80,159,37,51,38,248,22,158,5,80,159,37,37,37,248, +22,179,13,80,159,37,42,37,20,18,159,11,80,158,36,50,248,80,159,37,58, +38,249,22,27,11,80,159,39,52,38,159,36,20,112,159,36,16,1,11,16,0, +20,26,142,2,1,2,1,29,11,11,11,11,11,10,38,80,158,36,36,20,112, +159,40,16,23,2,2,2,3,30,2,5,72,112,97,116,104,45,115,116,114,105, +110,103,63,11,30,2,5,75,112,97,116,104,45,97,100,100,45,115,117,102,102, +105,120,8,30,2,7,2,8,5,30,2,7,1,23,101,120,116,101,110,100,45, +112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,3,2,9,2,10, +2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,30,2,19,2,8, +5,30,2,5,79,112,97,116,104,45,114,101,112,108,97,99,101,45,115,117,102, +102,105,120,10,30,2,5,73,102,105,110,100,45,99,111,108,45,102,105,108,101, +3,30,2,5,76,110,111,114,109,97,108,45,99,97,115,101,45,112,97,116,104, +7,2,20,2,21,30,2,19,74,114,101,112,97,114,97,109,101,116,101,114,105, +122,101,6,16,0,16,0,36,16,0,36,16,11,2,12,2,13,2,10,2,11, +2,14,2,15,2,3,2,9,2,2,2,16,2,18,47,11,11,39,36,11,11, +16,3,2,20,2,17,2,21,16,3,11,11,11,16,3,2,20,2,17,2,21, +39,39,37,11,11,16,0,16,0,16,0,36,36,11,11,11,16,0,16,0,16, +0,36,36,16,0,16,18,20,15,16,2,88,163,36,37,45,8,128,16,9,223, +0,33,29,80,159,36,8,26,37,20,15,16,2,88,163,8,36,37,45,8,128, +128,9,223,0,33,30,80,159,36,8,25,37,20,15,16,2,88,163,36,37,49, +8,240,0,0,2,0,72,112,97,116,104,45,115,115,45,62,114,107,116,223,0, +33,31,80,159,36,8,24,37,20,15,16,2,88,163,36,37,49,8,128,96,67, +103,101,116,45,100,105,114,223,0,33,32,80,159,36,59,37,20,15,16,2,248, +22,152,8,69,115,111,45,115,117,102,102,105,120,80,159,36,36,37,20,15,16, +2,88,163,36,38,8,38,8,61,2,3,223,0,33,41,80,159,36,37,37,20, +15,16,2,32,0,88,163,8,36,37,42,11,2,9,222,192,80,159,36,42,37, +20,15,16,2,247,22,136,2,80,159,36,43,37,20,15,16,2,247,22,135,2, +80,159,36,44,37,20,15,16,2,247,22,69,80,159,36,45,37,20,15,16,2, +248,22,18,74,109,111,100,117,108,101,45,108,111,97,100,105,110,103,80,159,36, +46,37,20,15,16,2,11,80,158,36,47,20,15,16,2,11,80,158,36,48,20, +15,16,2,32,0,88,163,36,38,8,42,11,2,16,222,33,47,80,159,36,49, +37,20,15,16,2,11,80,158,36,50,20,15,16,2,27,11,20,19,158,36,90, +159,37,10,89,161,37,36,10,20,25,96,2,18,88,163,8,36,37,51,8,128, +2,9,224,2,1,33,48,88,163,36,39,49,11,9,223,0,33,49,88,163,36, +40,8,29,8,240,176,103,143,7,9,224,2,1,33,57,207,80,159,36,51,37, +20,15,16,2,88,163,36,36,45,8,240,66,192,65,0,2,20,223,0,33,58, +80,159,36,56,37,20,15,16,2,88,163,8,36,36,45,8,240,0,64,65,0, +2,21,223,0,33,59,80,159,36,57,37,96,29,94,2,4,68,35,37,107,101, +114,110,101,108,11,29,94,2,4,69,35,37,109,105,110,45,115,116,120,11,2, +5,2,19,9,9,9,36,0}; + EVAL_ONE_SIZED_STR((char *)expr, 6538); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,53,46,49,46,49,46,49,48,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,11,0,0,0,1,0,0,10,0,16,0, -29,0,44,0,58,0,78,0,90,0,104,0,118,0,170,0,0,0,97,1,0, -0,69,35,37,98,117,105,108,116,105,110,65,113,117,111,116,101,29,94,2,2, -67,35,37,117,116,105,108,115,11,29,94,2,2,69,35,37,110,101,116,119,111, -114,107,11,29,94,2,2,68,35,37,112,97,114,97,109,122,11,29,94,2,2, -74,35,37,112,108,97,99,101,45,115,116,114,117,99,116,11,29,94,2,2,66, -35,37,98,111,111,116,11,29,94,2,2,68,35,37,101,120,112,111,98,115,11, -29,94,2,2,68,35,37,107,101,114,110,101,108,11,97,36,11,8,240,169,76, -0,0,100,159,2,3,36,36,159,2,4,36,36,159,2,5,36,36,159,2,6, -36,36,159,2,7,36,36,159,2,8,36,36,159,2,9,36,36,159,2,9,36, -36,16,0,159,36,20,112,159,36,16,1,11,16,0,20,26,142,2,1,2,1, -29,11,11,11,11,11,18,96,11,46,46,46,36,80,158,36,36,20,112,159,36, -16,0,16,0,16,0,36,16,0,36,16,0,36,11,11,39,36,11,11,16,0, -16,0,16,0,36,36,37,11,11,16,0,16,0,16,0,36,36,11,11,11,16, -0,16,0,16,0,36,36,16,0,16,0,104,2,9,2,8,29,94,2,2,69, -35,37,102,111,114,101,105,103,110,11,29,94,2,2,68,35,37,117,110,115,97, -102,101,11,29,94,2,2,69,35,37,102,108,102,120,110,117,109,11,2,7,2, -6,2,5,2,4,2,3,29,94,2,2,67,35,37,112,108,97,99,101,11,29, -94,2,2,69,35,37,102,117,116,117,114,101,115,11,9,9,9,36,0}; - EVAL_ONE_SIZED_STR((char *)expr, 417); + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,53,46,49,46,50,46,51,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,11,0,0,0,1,0,0,10,0,16,0,29, +0,44,0,58,0,78,0,90,0,104,0,118,0,170,0,0,0,97,1,0,0, +69,35,37,98,117,105,108,116,105,110,65,113,117,111,116,101,29,94,2,2,67, +35,37,117,116,105,108,115,11,29,94,2,2,69,35,37,110,101,116,119,111,114, +107,11,29,94,2,2,68,35,37,112,97,114,97,109,122,11,29,94,2,2,74, +35,37,112,108,97,99,101,45,115,116,114,117,99,116,11,29,94,2,2,66,35, +37,98,111,111,116,11,29,94,2,2,68,35,37,101,120,112,111,98,115,11,29, +94,2,2,68,35,37,107,101,114,110,101,108,11,97,36,11,8,240,0,75,0, +0,100,159,2,3,36,36,159,2,4,36,36,159,2,5,36,36,159,2,6,36, +36,159,2,7,36,36,159,2,8,36,36,159,2,9,36,36,159,2,9,36,36, +16,0,159,36,20,112,159,36,16,1,11,16,0,20,26,142,2,1,2,1,29, +11,11,11,11,11,18,96,11,46,46,46,36,80,158,36,36,20,112,159,36,16, +0,16,0,16,0,36,16,0,36,16,0,36,11,11,39,36,11,11,16,0,16, +0,16,0,36,36,37,11,11,16,0,16,0,16,0,36,36,11,11,11,16,0, +16,0,16,0,36,36,16,0,16,0,104,2,9,2,8,29,94,2,2,69,35, +37,102,111,114,101,105,103,110,11,29,94,2,2,68,35,37,117,110,115,97,102, +101,11,29,94,2,2,69,35,37,102,108,102,120,110,117,109,11,2,7,2,6, +2,5,2,4,2,3,29,94,2,2,67,35,37,112,108,97,99,101,11,29,94, +2,2,69,35,37,102,117,116,117,114,101,115,11,9,9,9,36,0}; + EVAL_ONE_SIZED_STR((char *)expr, 416); } diff --git a/src/racket/src/fun.c b/src/racket/src/fun.c index 3066fee37b..8d048379f4 100644 --- a/src/racket/src/fun.c +++ b/src/racket/src/fun.c @@ -8548,7 +8548,7 @@ scheme_default_prompt_read_handler(int argc, Scheme_Object *argv[]) { Scheme_Config *config; Scheme_Object *port, *reader, *getter; - Scheme_Object *inport, *name, *a[2]; + Scheme_Object *inport, *name, *a[4], *v; config = scheme_current_config(); port = scheme_get_param(config, MZCONFIG_OUTPUT_PORT); @@ -8569,7 +8569,31 @@ scheme_default_prompt_read_handler(int argc, Scheme_Object *argv[]) a[0] = name; a[1] = inport; - return _scheme_apply(reader, 2, a); + v = _scheme_apply(reader, 2, a); + + a[0] = inport; + if (SCHEME_TRUEP(scheme_terminal_port_p(1, a))) { + a[0] = port; + if (SCHEME_TRUEP(scheme_terminal_port_p(1, a))) { + intptr_t line, col, pos; + scheme_tell_all(port, &line, &col, &pos); + if ((col > 0) && (line > 0)) { + /* input and output are terminals (assume the same one), + and the output port counts lines: tell output port + that it's on a new line: */ + a[0] = port; + a[1] = scheme_make_integer(line + 1); + a[2] = scheme_make_integer(0); + if (pos > 0) + a[3] = scheme_make_integer(pos + 2); /* incremet plus 0-adjust */ + else + a[3] = scheme_false; + scheme_set_port_location(4, a); + } + } + } + + return v; } Scheme_Object * diff --git a/src/racket/src/port.c b/src/racket/src/port.c index 952b604306..302eb60425 100644 --- a/src/racket/src/port.c +++ b/src/racket/src/port.c @@ -3386,19 +3386,69 @@ scheme_tell_column (Scheme_Object *port) return col; } + +static void extract_next_location(const char *who, int argc, Scheme_Object **a, int delta, + intptr_t *_line, intptr_t *_col, intptr_t *_pos) +{ + int i, j; + intptr_t v; + intptr_t line = -1, col = -1, pos = -1; + + for (j = 0; j < 3; j++) { + v = -1; + i = j + delta; + if (SCHEME_TRUEP(a[i])) { + if (scheme_nonneg_exact_p(a[i])) { + if (SCHEME_INTP(a[i])) { + v = SCHEME_INT_VAL(a[i]); + if ((j != 1) && !v) { + v = -1; + } + } + } + if (v == -1) { + if (argc < 0) + a[0] = a[i]; + scheme_wrong_type(who, + ((j == 1) ? "non-negative exact integer or #f" : "positive exact integer or #f"), + ((argc > 0) ? i : -1), argc, a); + return; + } + } + + switch (j) { + case 0: + line = v; + break; + case 1: + col = v; + break; + case 2: + pos = v; + break; + } + } + + /* Internally, positions count from 0 instead of 1 */ + if (pos > -1) + pos--; + + if (_line) *_line = line; + if (_col) *_col = col; + if (_pos) *_pos = pos; +} + void scheme_tell_all (Scheme_Object *port, intptr_t *_line, intptr_t *_col, intptr_t *_pos) { Scheme_Port *ip; - intptr_t line = -1, col = -1, pos = -1; ip = scheme_port_record(port); if (ip->count_lines && ip->location_fun) { Scheme_Location_Fun location_fun; Scheme_Object *r, *a[3]; - intptr_t v; - int got, i; + int got; location_fun = ip->location_fun; r = location_fun(ip); @@ -3416,47 +3466,36 @@ scheme_tell_all (Scheme_Object *port, intptr_t *_line, intptr_t *_col, intptr_t a[1] = scheme_multiple_array[1]; a[2] = scheme_multiple_array[2]; - for (i = 0; i < 3; i++) { - v = -1; - if (SCHEME_TRUEP(a[i])) { - if (scheme_nonneg_exact_p(a[i])) { - if (SCHEME_INTP(a[i])) { - v = SCHEME_INT_VAL(a[i]); - if ((i != 1) && !v) { - a[0] = a[i]; - scheme_wrong_type("user port next-location", - ((i == 1) ? "non-negative exact integer or #f" : "positive exact integer or #f"), - -1, -1, a); - return; - } - } - } - } - switch(i) { - case 0: - line = v; - break; - case 1: - col = v; - break; - case 2: - pos = v; - break; - } - } - - /* Internally, positions count from 0 instead of 1 */ - if (pos > -1) - pos--; + extract_next_location("user port next-location", -1, a, 0, _line, _col, _pos); } else { + intptr_t line, col, pos; + line = scheme_tell_line(port); col = scheme_tell_column(port); pos = scheme_tell(port); - } - if (_line) *_line = line; - if (_col) *_col = col; - if (_pos) *_pos = pos; + if (_line) *_line = line; + if (_col) *_col = col; + if (_pos) *_pos = pos; + } +} + +void scheme_set_port_location(int argc, Scheme_Object **argv) +{ + Scheme_Port *ip; + intptr_t line, col, pos; + + extract_next_location("set-port-next-location!", argc, argv, + 1, &line, &col, &pos); + + + ip = scheme_port_record(argv[0]); + + if (ip->count_lines) { + ip->readpos = pos; + ip->lineNumber = line; + ip->column = col; + } } void diff --git a/src/racket/src/portfun.c b/src/racket/src/portfun.c index 6fa1485377..04a6f16c27 100644 --- a/src/racket/src/portfun.c +++ b/src/racket/src/portfun.c @@ -125,6 +125,7 @@ static Scheme_Object *global_port_print_handler(int, Scheme_Object **args); static Scheme_Object *global_port_count_lines(int, Scheme_Object **args); static Scheme_Object *port_count_lines(int, Scheme_Object **args); static Scheme_Object *port_next_location(int, Scheme_Object **args); +static Scheme_Object *set_port_next_location(int, Scheme_Object **args); static Scheme_Object *sch_default_read_handler(void *ignore, int argc, Scheme_Object *argv[]); static Scheme_Object *sch_default_display_handler(int argc, Scheme_Object *argv[]); @@ -254,7 +255,7 @@ scheme_init_port_fun(Scheme_Env *env) GLOBAL_PRIM_W_ARITY2("load", load, 1, 1, 0, -1, env); GLOBAL_PRIM_W_ARITY2("make-pipe", sch_pipe, 0, 3, 2, 2, env); GLOBAL_PRIM_W_ARITY2("port-next-location", port_next_location, 1, 1, 3, 3, env); - + GLOBAL_PRIM_W_ARITY("set-port-next-location!", set_port_next_location, 4, 4, env); GLOBAL_NONCM_PRIM("read", read_f, 0, 1, env); GLOBAL_NONCM_PRIM("read/recursive", read_recur_f, 0, 4, env); @@ -4094,6 +4095,16 @@ static Scheme_Object *port_next_location(int argc, Scheme_Object *argv[]) return scheme_values(3, a); } +static Scheme_Object *set_port_next_location(int argc, Scheme_Object *argv[]) +{ + if (!SCHEME_INPUT_PORTP(argv[0]) && !SCHEME_OUTPUT_PORTP(argv[0])) + scheme_wrong_type("set-port-next-location!", "port", 0, argc, argv); + + scheme_set_port_location(argc, argv); + + return scheme_void; +} + typedef struct { MZTAG_IF_REQUIRED Scheme_Config *config; diff --git a/src/racket/src/schemef.h b/src/racket/src/schemef.h index eb457f0a8a..738ab205f3 100644 --- a/src/racket/src/schemef.h +++ b/src/racket/src/schemef.h @@ -807,6 +807,7 @@ MZ_EXTERN intptr_t scheme_output_tell(Scheme_Object *port); MZ_EXTERN intptr_t scheme_tell_line(Scheme_Object *port); MZ_EXTERN intptr_t scheme_tell_column(Scheme_Object *port); MZ_EXTERN void scheme_tell_all(Scheme_Object *port, intptr_t *line, intptr_t *col, intptr_t *pos); +MZ_EXTERN void scheme_set_port_location(int argc, Scheme_Object **argv); MZ_EXTERN void scheme_count_lines(Scheme_Object *port); MZ_EXTERN void scheme_close_input_port(Scheme_Object *port); MZ_EXTERN void scheme_close_output_port(Scheme_Object *port); diff --git a/src/racket/src/schemex.h b/src/racket/src/schemex.h index fb19fe06c6..d2b51efa3a 100644 --- a/src/racket/src/schemex.h +++ b/src/racket/src/schemex.h @@ -662,6 +662,7 @@ intptr_t (*scheme_output_tell)(Scheme_Object *port); intptr_t (*scheme_tell_line)(Scheme_Object *port); intptr_t (*scheme_tell_column)(Scheme_Object *port); void (*scheme_tell_all)(Scheme_Object *port, intptr_t *line, intptr_t *col, intptr_t *pos); +void (*scheme_set_port_location)(int argc, Scheme_Object **argv); void (*scheme_count_lines)(Scheme_Object *port); void (*scheme_close_input_port)(Scheme_Object *port); void (*scheme_close_output_port)(Scheme_Object *port); diff --git a/src/racket/src/schemex.inc b/src/racket/src/schemex.inc index 2d923213a1..b2b241c831 100644 --- a/src/racket/src/schemex.inc +++ b/src/racket/src/schemex.inc @@ -473,6 +473,7 @@ scheme_extension_table->scheme_tell_line = scheme_tell_line; scheme_extension_table->scheme_tell_column = scheme_tell_column; scheme_extension_table->scheme_tell_all = scheme_tell_all; + scheme_extension_table->scheme_set_port_location = scheme_set_port_location; scheme_extension_table->scheme_count_lines = scheme_count_lines; scheme_extension_table->scheme_close_input_port = scheme_close_input_port; scheme_extension_table->scheme_close_output_port = scheme_close_output_port; diff --git a/src/racket/src/schemexm.h b/src/racket/src/schemexm.h index 115f8f7b99..e01d9029d2 100644 --- a/src/racket/src/schemexm.h +++ b/src/racket/src/schemexm.h @@ -473,6 +473,7 @@ #define scheme_tell_line (scheme_extension_table->scheme_tell_line) #define scheme_tell_column (scheme_extension_table->scheme_tell_column) #define scheme_tell_all (scheme_extension_table->scheme_tell_all) +#define scheme_set_port_location (scheme_extension_table->scheme_set_port_location) #define scheme_count_lines (scheme_extension_table->scheme_count_lines) #define scheme_close_input_port (scheme_extension_table->scheme_close_input_port) #define scheme_close_output_port (scheme_extension_table->scheme_close_output_port) diff --git a/src/racket/src/schminc.h b/src/racket/src/schminc.h index 8c80be7643..a31a9156e4 100644 --- a/src/racket/src/schminc.h +++ b/src/racket/src/schminc.h @@ -13,7 +13,7 @@ #define USE_COMPILED_STARTUP 1 -#define EXPECTED_PRIM_COUNT 1026 +#define EXPECTED_PRIM_COUNT 1027 #define EXPECTED_UNSAFE_COUNT 78 #define EXPECTED_FLFXNUM_COUNT 68 #define EXPECTED_FUTURES_COUNT 11 diff --git a/src/racket/src/schvers.h b/src/racket/src/schvers.h index 50e7fb8b42..bf96e9cd3a 100644 --- a/src/racket/src/schvers.h +++ b/src/racket/src/schvers.h @@ -13,12 +13,12 @@ consistently.) */ -#define MZSCHEME_VERSION "5.1.2.2" +#define MZSCHEME_VERSION "5.1.2.3" #define MZSCHEME_VERSION_X 5 #define MZSCHEME_VERSION_Y 1 #define MZSCHEME_VERSION_Z 2 -#define MZSCHEME_VERSION_W 2 +#define MZSCHEME_VERSION_W 3 #define MZSCHEME_VERSION_MAJOR ((MZSCHEME_VERSION_X * 100) + MZSCHEME_VERSION_Y) #define MZSCHEME_VERSION_MINOR ((MZSCHEME_VERSION_Z * 1000) + MZSCHEME_VERSION_W)