From 1621091fc1efbf6ff0d3328bbd8b06367b85bae9 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 9 Apr 2010 13:22:57 +0000 Subject: [PATCH] add 'current-read-interaction' parameter svn: r18769 --- collects/drscheme/private/module-language.ss | 15 + collects/racket/private/lang/reader.ss | 2 + collects/racket/private/runtime.ss | 3 + collects/readline/pread.ss | 4 +- collects/scribblings/reference/eval.scrbl | 33 +- src/mzscheme/include/scheme.h | 1 + src/mzscheme/src/cstartup.inc | 930 +++++++++---------- src/mzscheme/src/fun.c | 51 +- src/mzscheme/src/schminc.h | 2 +- src/mzscheme/src/schpriv.h | 1 + src/mzscheme/src/schvers.h | 4 +- src/mzscheme/src/thread.c | 15 +- 12 files changed, 573 insertions(+), 488 deletions(-) diff --git a/collects/drscheme/private/module-language.ss b/collects/drscheme/private/module-language.ss index ef1add3dc0..77f13bbe31 100644 --- a/collects/drscheme/private/module-language.ss +++ b/collects/drscheme/private/module-language.ss @@ -334,6 +334,21 @@ (cond [(thread-cell-ref repl-init-thunk) => (λ (t) (thread-cell-set! repl-init-thunk #f) (t))])) + (define/override (front-end/interaction port settings) + (λ () + (let ([v (parameterize ([read-accept-reader #t]) + (with-stack-checkpoint + ((current-read-interaction) + (object-name port) + port)))]) + (if (eof-object? v) + v + (let ([w (cons '#%top-interaction v)]) + (if (syntax? v) + (namespace-syntax-introduce + (datum->syntax #f w v)) + v)))))) + ;; printer settings are just ignored here. (define/override (create-executable setting parent program-filename) (let* ([executable-specs (drscheme:language:create-executable-gui diff --git a/collects/racket/private/lang/reader.ss b/collects/racket/private/lang/reader.ss index d6e6c3cd4f..b15c1ae80f 100644 --- a/collects/racket/private/lang/reader.ss +++ b/collects/racket/private/lang/reader.ss @@ -2,4 +2,6 @@ scheme/base #:info get-info +#:module-info '#(racket/private/get-info get-info #f) + (require racket/private/get-info) diff --git a/collects/racket/private/runtime.ss b/collects/racket/private/runtime.ss index b7c0e26713..c3846954d0 100644 --- a/collects/racket/private/runtime.ss +++ b/collects/racket/private/runtime.ss @@ -4,4 +4,7 @@ (provide configure) (define (configure config) + (current-prompt-read (lambda () + (printf "r> ") + (read))) (print-as-quasiquote #t)) diff --git a/collects/readline/pread.ss b/collects/readline/pread.ss index 3ce370f151..046717de57 100644 --- a/collects/readline/pread.ss +++ b/collects/readline/pread.ss @@ -208,4 +208,6 @@ ;; readline-prompt and using read-complete-syntax below should still ;; work fine) (display prompt) (flush-output)) - (begin0 (read-syntax) (do-multiline-chunk)))) + (begin0 (let ([in (current-input-port)]) + ((current-read-interaction) (object-name in) in)) + (do-multiline-chunk)))) diff --git a/collects/scribblings/reference/eval.scrbl b/collects/scribblings/reference/eval.scrbl index 691f065303..88a3690dff 100644 --- a/collects/scribblings/reference/eval.scrbl +++ b/collects/scribblings/reference/eval.scrbl @@ -288,15 +288,34 @@ the @scheme[current-prompt-read], @scheme[current-eval], and @defparam[current-prompt-read proc (-> any)]{ -A parameter that determines a procedure that takes no arguments, -displays a prompt string, and returns a top-level form to -evaluate. This procedure is called by the read phase of -@scheme[read-eval-print-loop]. The default prompt read handler prints -@litchar{> } and returns the result of +A parameter that determines a @deftech{prompt read handler}, which is +a procedure that takes no arguments, displays a prompt string, and +returns a top-level form to evaluate. The prompt read handler is +called by @scheme[read-eval-print-loop], and the handler typically +should call the @tech{read interaction handler} (as determined by the +@scheme[current-read-interaction] parameter) after printing a prompt. + +The default prompt read handler prints @litchar{> } and returns the +result of @schemeblock[ -(parameterize ((read-accept-reader #t)) - (read-syntax)) +(let ([in (current-input-port)]) + ((current-read-interaction) (object-name in) in)) +]} + + +@defparam[current-read-interaction proc (any/c input-port? -> any)]{ + +A parameter that determines the current @deftech{read interaction +handler}, which is procedure that takes an arbitrary value and an +input port and returns an expression read from the input port. + +The default read interaction handler accepts @scheme[_src] and +@scheme[_in] and returns + +@schemeblock[ +(parameterize ([read-accept-reader #t]) + (read-syntax _src _in)) ]} diff --git a/src/mzscheme/include/scheme.h b/src/mzscheme/include/scheme.h index 200d8a6eba..1b48bb7c8d 100644 --- a/src/mzscheme/include/scheme.h +++ b/src/mzscheme/include/scheme.h @@ -1168,6 +1168,7 @@ enum { MZCONFIG_PRINT_HANDLER, MZCONFIG_PROMPT_READ_HANDLER, + MZCONFIG_READ_HANDLER, MZCONFIG_READTABLE, MZCONFIG_READER_GUARD, diff --git a/src/mzscheme/src/cstartup.inc b/src/mzscheme/src/cstartup.inc index bd81f14a01..a5f636a222 100644 --- a/src/mzscheme/src/cstartup.inc +++ b/src/mzscheme/src/cstartup.inc @@ -1,79 +1,79 @@ { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,52,46,50,46,53,46,54,50,0,0,0,1,0,0,3,0,12,0, -16,0,21,0,28,0,41,0,48,0,53,0,58,0,62,0,69,0,72,0,78, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,52,46,50,46,53,46,55,50,0,0,0,1,0,0,3,0,12,0, +17,0,21,0,24,0,37,0,44,0,49,0,53,0,60,0,65,0,72,0,78, 0,92,0,106,0,109,0,115,0,119,0,121,0,132,0,134,0,148,0,155,0, 177,0,179,0,193,0,4,1,33,1,44,1,55,1,65,1,101,1,134,1,167, 1,226,1,36,2,114,2,180,2,185,2,205,2,96,3,116,3,167,3,233,3, 118,4,4,5,56,5,79,5,158,5,0,0,105,7,0,0,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,72,112,97,114,97,109,101,116,101,114,105,122,101,66,100,101,102,105,110, -101,64,119,104,101,110,64,108,101,116,42,63,97,110,100,66,108,101,116,114,101, -99,62,111,114,65,113,117,111,116,101,29,94,2,13,68,35,37,107,101,114,110, +101,114,101,45,115,116,120,64,108,101,116,42,63,108,101,116,62,111,114,72,112, +97,114,97,109,101,116,101,114,105,122,101,66,100,101,102,105,110,101,64,99,111, +110,100,63,97,110,100,66,117,110,108,101,115,115,64,119,104,101,110,66,108,101, +116,114,101,99,65,113,117,111,116,101,29,94,2,13,68,35,37,107,101,114,110, 101,108,11,29,94,2,13,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,44,76,0,0,95,159,2,15,36,36,159,2,14,36,36,159,2, -14,36,36,16,20,2,3,2,1,2,5,2,1,2,7,2,1,2,6,2,1, -2,8,2,1,2,9,2,1,2,10,2,1,2,4,2,1,2,11,2,1,2, -12,2,1,97,37,11,8,240,44,76,0,0,93,159,2,14,36,37,16,2,2, -2,161,2,1,37,2,2,2,1,2,2,96,11,11,8,240,44,76,0,0,16, -0,96,38,11,8,240,44,76,0,0,16,0,13,16,4,36,29,11,11,2,1, +36,11,8,240,47,75,0,0,95,159,2,15,36,36,159,2,14,36,36,159,2, +14,36,36,16,20,2,4,2,1,2,5,2,1,2,6,2,1,2,7,2,1, +2,3,2,1,2,9,2,1,2,8,2,1,2,10,2,1,2,11,2,1,2, +12,2,1,97,37,11,8,240,47,75,0,0,93,159,2,14,36,37,16,2,2, +2,161,2,1,37,2,2,2,1,2,2,96,38,11,8,240,47,75,0,0,16, +0,96,11,11,8,240,47,75,0,0,16,0,13,16,4,36,29,11,11,2,1, 11,18,16,2,99,64,104,101,114,101,8,31,8,30,8,29,8,28,8,27,93, -8,224,51,76,0,0,95,9,8,224,51,76,0,0,2,1,27,248,22,142,4, -195,249,22,135,4,80,158,39,36,251,22,80,2,16,248,22,95,199,12,249,22, -70,2,17,248,22,97,201,27,248,22,142,4,195,249,22,135,4,80,158,39,36, -251,22,80,2,16,248,22,95,199,249,22,70,2,17,248,22,97,201,12,27,248, -22,72,248,22,142,4,196,28,248,22,78,193,20,15,159,37,36,37,28,248,22, -78,248,22,72,194,248,22,71,193,249,22,135,4,80,158,39,36,251,22,80,2, -16,248,22,71,199,249,22,70,2,10,248,22,72,201,11,18,16,2,101,10,8, +8,224,54,75,0,0,95,9,8,224,54,75,0,0,2,1,27,248,22,143,4, +195,249,22,136,4,80,158,39,36,251,22,81,2,16,248,22,96,199,12,249,22, +71,2,17,248,22,98,201,27,248,22,143,4,195,249,22,136,4,80,158,39,36, +251,22,81,2,16,248,22,96,199,249,22,71,2,17,248,22,98,201,12,27,248, +22,73,248,22,143,4,196,28,248,22,79,193,20,15,159,37,36,37,28,248,22, +79,248,22,73,194,248,22,72,193,249,22,136,4,80,158,39,36,251,22,81,2, +16,248,22,72,199,249,22,71,2,9,248,22,73,201,11,18,16,2,101,10,8, 31,8,30,8,29,8,28,8,27,16,4,11,11,2,18,3,1,8,101,110,118, -49,50,54,57,51,16,4,11,11,2,19,3,1,8,101,110,118,49,50,54,57, -52,93,8,224,52,76,0,0,95,9,8,224,52,76,0,0,2,1,27,248,22, -72,248,22,142,4,196,28,248,22,78,193,20,15,159,37,36,37,28,248,22,78, -248,22,72,194,248,22,71,193,249,22,135,4,80,158,39,36,250,22,80,2,20, -248,22,80,249,22,80,248,22,80,2,21,248,22,71,201,251,22,80,2,16,2, -21,2,21,249,22,70,2,12,248,22,72,204,18,16,2,101,11,8,31,8,30, -8,29,8,28,8,27,16,4,11,11,2,18,3,1,8,101,110,118,49,50,54, -57,54,16,4,11,11,2,19,3,1,8,101,110,118,49,50,54,57,55,93,8, -224,53,76,0,0,95,9,8,224,53,76,0,0,2,1,248,22,142,4,193,27, -248,22,142,4,194,249,22,70,248,22,80,248,22,71,196,248,22,72,195,27,248, -22,72,248,22,142,4,23,197,1,249,22,135,4,80,158,39,36,28,248,22,55, -248,22,136,4,248,22,71,23,198,2,27,249,22,2,32,0,89,162,8,44,37, -43,9,222,33,39,248,22,142,4,248,22,95,23,200,2,250,22,80,2,22,248, -22,80,249,22,80,248,22,80,248,22,71,23,204,2,250,22,81,2,23,249,22, -2,22,71,23,204,2,248,22,97,23,206,2,249,22,70,248,22,71,23,202,1, -249,22,2,22,95,23,200,1,250,22,81,2,20,249,22,2,32,0,89,162,8, -44,37,47,9,222,33,40,248,22,142,4,248,22,71,201,248,22,72,198,27,248, -22,142,4,194,249,22,70,248,22,80,248,22,71,196,248,22,72,195,27,248,22, -72,248,22,142,4,23,197,1,249,22,135,4,80,158,39,36,250,22,81,2,22, -249,22,2,32,0,89,162,8,44,37,47,9,222,33,42,248,22,142,4,248,22, -71,201,248,22,72,198,27,248,22,72,248,22,142,4,196,27,248,22,142,4,248, -22,71,195,249,22,135,4,80,158,40,36,28,248,22,78,195,250,22,81,2,20, -9,248,22,72,199,250,22,80,2,3,248,22,80,248,22,71,199,250,22,81,2, -9,248,22,72,201,248,22,72,202,27,248,22,72,248,22,142,4,23,197,1,27, -249,22,1,22,84,249,22,2,22,142,4,248,22,142,4,248,22,71,199,249,22, -135,4,80,158,40,36,251,22,80,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,24,250,22,81,1,23,101,120, +49,50,51,56,49,16,4,11,11,2,19,3,1,8,101,110,118,49,50,51,56, +50,93,8,224,55,75,0,0,95,9,8,224,55,75,0,0,2,1,27,248,22, +73,248,22,143,4,196,28,248,22,79,193,20,15,159,37,36,37,28,248,22,79, +248,22,73,194,248,22,72,193,249,22,136,4,80,158,39,36,250,22,81,2,20, +248,22,81,249,22,81,248,22,81,2,21,248,22,72,201,251,22,81,2,16,2, +21,2,21,249,22,71,2,5,248,22,73,204,18,16,2,101,11,8,31,8,30, +8,29,8,28,8,27,16,4,11,11,2,18,3,1,8,101,110,118,49,50,51, +56,52,16,4,11,11,2,19,3,1,8,101,110,118,49,50,51,56,53,93,8, +224,56,75,0,0,95,9,8,224,56,75,0,0,2,1,248,22,143,4,193,27, +248,22,143,4,194,249,22,71,248,22,81,248,22,72,196,248,22,73,195,27,248, +22,73,248,22,143,4,23,197,1,249,22,136,4,80,158,39,36,28,248,22,56, +248,22,137,4,248,22,72,23,198,2,27,249,22,2,32,0,89,162,8,44,37, +43,9,222,33,39,248,22,143,4,248,22,96,23,200,2,250,22,81,2,22,248, +22,81,249,22,81,248,22,81,248,22,72,23,204,2,250,22,82,2,23,249,22, +2,22,72,23,204,2,248,22,98,23,206,2,249,22,71,248,22,72,23,202,1, +249,22,2,22,96,23,200,1,250,22,82,2,20,249,22,2,32,0,89,162,8, +44,37,47,9,222,33,40,248,22,143,4,248,22,72,201,248,22,73,198,27,248, +22,143,4,194,249,22,71,248,22,81,248,22,72,196,248,22,73,195,27,248,22, +73,248,22,143,4,23,197,1,249,22,136,4,80,158,39,36,250,22,82,2,22, +249,22,2,32,0,89,162,8,44,37,47,9,222,33,42,248,22,143,4,248,22, +72,201,248,22,73,198,27,248,22,73,248,22,143,4,196,27,248,22,143,4,248, +22,72,195,249,22,136,4,80,158,40,36,28,248,22,79,195,250,22,82,2,20, +9,248,22,73,199,250,22,81,2,4,248,22,81,248,22,72,199,250,22,82,2, +3,248,22,73,201,248,22,73,202,27,248,22,73,248,22,143,4,23,197,1,27, +249,22,1,22,85,249,22,2,22,143,4,248,22,143,4,248,22,72,199,249,22, +136,4,80,158,40,36,251,22,81,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,24,250,22,82,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,24,201,250,22,81,2,20,9,248, -22,72,203,27,248,22,72,248,22,142,4,196,28,248,22,78,193,20,15,159,37, -36,37,249,22,135,4,80,158,39,36,27,248,22,142,4,248,22,71,197,28,249, -22,175,8,62,61,62,248,22,136,4,248,22,95,196,250,22,80,2,20,248,22, -80,249,22,80,21,93,2,25,248,22,71,199,250,22,81,2,4,249,22,80,2, -25,249,22,80,248,22,104,203,2,25,248,22,72,202,251,22,80,2,16,28,249, -22,175,8,248,22,136,4,248,22,71,200,64,101,108,115,101,10,248,22,71,197, -250,22,81,2,20,9,248,22,72,200,249,22,70,2,4,248,22,72,202,100,8, +45,115,101,116,45,102,105,114,115,116,11,2,24,201,250,22,82,2,20,9,248, +22,73,203,27,248,22,73,248,22,143,4,196,28,248,22,79,193,20,15,159,37, +36,37,249,22,136,4,80,158,39,36,27,248,22,143,4,248,22,72,197,28,249, +22,176,8,62,61,62,248,22,137,4,248,22,96,196,250,22,81,2,20,248,22, +81,249,22,81,21,93,2,25,248,22,72,199,250,22,82,2,8,249,22,81,2, +25,249,22,81,248,22,105,203,2,25,248,22,73,202,251,22,81,2,16,28,249, +22,176,8,248,22,137,4,248,22,72,200,64,101,108,115,101,10,248,22,72,197, +250,22,82,2,20,9,248,22,73,200,249,22,71,2,8,248,22,73,202,100,8, 31,8,30,8,29,8,28,8,27,16,4,11,11,2,18,3,1,8,101,110,118, -49,50,55,49,57,16,4,11,11,2,19,3,1,8,101,110,118,49,50,55,50, -48,93,8,224,54,76,0,0,18,16,2,158,94,10,64,118,111,105,100,8,47, -95,9,8,224,54,76,0,0,2,1,27,248,22,72,248,22,142,4,196,249,22, -135,4,80,158,39,36,28,248,22,55,248,22,136,4,248,22,71,197,250,22,80, -2,26,248,22,80,248,22,71,199,248,22,95,198,27,248,22,136,4,248,22,71, -197,250,22,80,2,26,248,22,80,248,22,71,197,250,22,81,2,23,248,22,72, -199,248,22,72,202,159,36,20,105,159,36,16,1,11,16,0,83,158,42,20,103, +49,50,52,48,55,16,4,11,11,2,19,3,1,8,101,110,118,49,50,52,48, +56,93,8,224,57,75,0,0,18,16,2,158,94,10,64,118,111,105,100,8,47, +95,9,8,224,57,75,0,0,2,1,27,248,22,73,248,22,143,4,196,249,22, +136,4,80,158,39,36,28,248,22,56,248,22,137,4,248,22,72,197,250,22,81, +2,26,248,22,81,248,22,72,199,248,22,96,198,27,248,22,137,4,248,22,72, +197,250,22,81,2,26,248,22,81,248,22,72,197,250,22,82,2,23,248,22,73, +199,248,22,73,202,159,36,20,105,159,36,16,1,11,16,0,83,158,42,20,103, 144,69,35,37,109,105,110,45,115,116,120,2,1,11,11,11,10,36,80,158,36, 36,20,105,159,36,16,0,16,0,16,1,2,2,37,16,0,36,16,0,36,11, 11,39,36,11,11,11,16,10,2,3,2,4,2,5,2,6,2,7,2,8,2, @@ -81,17 +81,17 @@ 2,3,2,4,2,5,2,6,2,7,2,8,2,9,2,10,2,11,2,12,36, 46,37,11,11,11,16,0,16,0,16,0,36,36,11,11,11,11,16,0,16,0, 16,0,36,36,16,11,16,5,2,2,20,15,159,36,36,36,36,20,105,159,36, -16,0,16,1,33,32,10,16,5,2,5,89,162,8,44,37,53,9,223,0,33, -33,36,20,105,159,36,16,1,2,2,16,0,11,16,5,2,8,89,162,8,44, +16,0,16,1,33,32,10,16,5,2,10,89,162,8,44,37,53,9,223,0,33, +33,36,20,105,159,36,16,1,2,2,16,0,11,16,5,2,11,89,162,8,44, 37,53,9,223,0,33,34,36,20,105,159,36,16,1,2,2,16,0,11,16,5, -2,10,89,162,8,44,37,53,9,223,0,33,35,36,20,105,159,36,16,1,2, -2,16,1,33,36,11,16,5,2,12,89,162,8,44,37,56,9,223,0,33,37, -36,20,105,159,36,16,1,2,2,16,1,33,38,11,16,5,2,3,89,162,8, +2,9,89,162,8,44,37,53,9,223,0,33,35,36,20,105,159,36,16,1,2, +2,16,1,33,36,11,16,5,2,5,89,162,8,44,37,56,9,223,0,33,37, +36,20,105,159,36,16,1,2,2,16,1,33,38,11,16,5,2,4,89,162,8, 44,37,58,9,223,0,33,41,36,20,105,159,36,16,1,2,2,16,0,11,16, -5,2,11,89,162,8,44,37,53,9,223,0,33,43,36,20,105,159,36,16,1, -2,2,16,0,11,16,5,2,9,89,162,8,44,37,54,9,223,0,33,44,36, +5,2,12,89,162,8,44,37,53,9,223,0,33,43,36,20,105,159,36,16,1, +2,2,16,0,11,16,5,2,3,89,162,8,44,37,54,9,223,0,33,44,36, 20,105,159,36,16,1,2,2,16,0,11,16,5,2,6,89,162,8,44,37,55, -9,223,0,33,45,36,20,105,159,36,16,1,2,2,16,0,11,16,5,2,4, +9,223,0,33,45,36,20,105,159,36,16,1,2,2,16,0,11,16,5,2,8, 89,162,8,44,37,58,9,223,0,33,46,36,20,105,159,36,16,1,2,2,16, 1,33,48,11,16,5,2,7,89,162,8,44,37,54,9,223,0,33,49,36,20, 105,159,36,16,1,2,2,16,0,11,16,0,94,2,14,2,15,93,2,14,9, @@ -99,7 +99,7 @@ EVAL_ONE_SIZED_STR((char *)expr, 2018); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,52,46,50,46,53,46,54,64,0,0,0,1,0,0,13,0,18,0, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,52,46,50,46,53,46,55,64,0,0,0,1,0,0,13,0,18,0, 35,0,50,0,68,0,84,0,94,0,112,0,132,0,148,0,166,0,197,0,226, 0,248,0,6,1,12,1,26,1,31,1,41,1,49,1,77,1,109,1,115,1, 160,1,205,1,229,1,12,2,14,2,180,2,14,4,55,4,128,5,214,5,44, @@ -132,234 +132,234 @@ 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,5,0,27,20,14,159,80,159,37,51,38,250,80,159,40,52,38,249,22,27, -11,80,159,42,51,38,22,144,13,10,248,22,167,5,23,196,2,28,248,22,164, -6,23,194,2,12,87,94,248,22,181,8,23,194,1,27,20,14,159,80,159,38, -51,38,250,80,159,41,52,38,249,22,27,11,80,159,43,51,38,22,144,13,10, -248,22,167,5,23,197,2,28,248,22,164,6,23,194,2,12,87,94,248,22,181, +11,80,159,42,51,38,22,145,13,10,248,22,168,5,23,196,2,28,248,22,165, +6,23,194,2,12,87,94,248,22,182,8,23,194,1,27,20,14,159,80,159,38, +51,38,250,80,159,41,52,38,249,22,27,11,80,159,43,51,38,22,145,13,10, +248,22,168,5,23,197,2,28,248,22,165,6,23,194,2,12,87,94,248,22,182, 8,23,194,1,27,20,14,159,80,159,39,51,38,250,80,159,42,52,38,249,22, -27,11,80,159,44,51,38,22,144,13,10,248,22,167,5,23,198,2,28,248,22, -164,6,23,194,2,12,87,94,248,22,181,8,23,194,1,248,80,159,40,54,37, -197,28,248,22,78,23,195,2,9,27,248,22,71,23,196,2,27,28,248,22,128, -14,23,195,2,23,194,1,28,248,22,191,13,23,195,2,249,22,129,14,23,196, -1,250,80,158,43,49,248,22,144,14,2,19,11,10,250,80,158,41,49,248,22, -144,14,2,19,23,197,1,10,28,23,193,2,249,22,70,248,22,131,14,249,22, -129,14,23,198,1,247,22,145,14,27,248,22,72,23,200,1,28,248,22,78,23, -194,2,9,27,248,22,71,23,195,2,27,28,248,22,128,14,23,195,2,23,194, -1,28,248,22,191,13,23,195,2,249,22,129,14,23,196,1,250,80,158,48,49, -248,22,144,14,2,19,11,10,250,80,158,46,49,248,22,144,14,2,19,23,197, -1,10,28,23,193,2,249,22,70,248,22,131,14,249,22,129,14,23,198,1,247, -22,145,14,248,80,159,46,53,37,248,22,72,23,199,1,87,94,23,193,1,248, -80,159,44,53,37,248,22,72,23,197,1,87,94,23,193,1,27,248,22,72,23, -198,1,28,248,22,78,23,194,2,9,27,248,22,71,23,195,2,27,28,248,22, -128,14,23,195,2,23,194,1,28,248,22,191,13,23,195,2,249,22,129,14,23, -196,1,250,80,158,46,49,248,22,144,14,2,19,11,10,250,80,158,44,49,248, -22,144,14,2,19,23,197,1,10,28,23,193,2,249,22,70,248,22,131,14,249, -22,129,14,23,198,1,247,22,145,14,248,80,159,44,53,37,248,22,72,23,199, -1,248,80,159,42,53,37,248,22,72,196,27,248,22,168,13,23,195,2,28,23, -193,2,192,87,94,23,193,1,28,248,22,169,6,23,195,2,27,248,22,190,13, -195,28,192,192,248,22,191,13,195,11,87,94,28,28,248,22,169,13,23,195,2, -10,28,248,22,168,13,23,195,2,10,28,248,22,169,6,23,195,2,28,248,22, -190,13,23,195,2,10,248,22,191,13,23,195,2,11,12,250,22,145,9,76,110, +27,11,80,159,44,51,38,22,145,13,10,248,22,168,5,23,198,2,28,248,22, +165,6,23,194,2,12,87,94,248,22,182,8,23,194,1,248,80,159,40,54,37, +197,28,248,22,79,23,195,2,9,27,248,22,72,23,196,2,27,28,248,22,129, +14,23,195,2,23,194,1,28,248,22,128,14,23,195,2,249,22,130,14,23,196, +1,250,80,158,43,49,248,22,145,14,2,19,11,10,250,80,158,41,49,248,22, +145,14,2,19,23,197,1,10,28,23,193,2,249,22,71,248,22,132,14,249,22, +130,14,23,198,1,247,22,146,14,27,248,22,73,23,200,1,28,248,22,79,23, +194,2,9,27,248,22,72,23,195,2,27,28,248,22,129,14,23,195,2,23,194, +1,28,248,22,128,14,23,195,2,249,22,130,14,23,196,1,250,80,158,48,49, +248,22,145,14,2,19,11,10,250,80,158,46,49,248,22,145,14,2,19,23,197, +1,10,28,23,193,2,249,22,71,248,22,132,14,249,22,130,14,23,198,1,247, +22,146,14,248,80,159,46,53,37,248,22,73,23,199,1,87,94,23,193,1,248, +80,159,44,53,37,248,22,73,23,197,1,87,94,23,193,1,27,248,22,73,23, +198,1,28,248,22,79,23,194,2,9,27,248,22,72,23,195,2,27,28,248,22, +129,14,23,195,2,23,194,1,28,248,22,128,14,23,195,2,249,22,130,14,23, +196,1,250,80,158,46,49,248,22,145,14,2,19,11,10,250,80,158,44,49,248, +22,145,14,2,19,23,197,1,10,28,23,193,2,249,22,71,248,22,132,14,249, +22,130,14,23,198,1,247,22,146,14,248,80,159,44,53,37,248,22,73,23,199, +1,248,80,159,42,53,37,248,22,73,196,27,248,22,169,13,23,195,2,28,23, +193,2,192,87,94,23,193,1,28,248,22,170,6,23,195,2,27,248,22,191,13, +195,28,192,192,248,22,128,14,195,11,87,94,28,28,248,22,170,13,23,195,2, +10,28,248,22,169,13,23,195,2,10,28,248,22,170,6,23,195,2,28,248,22, +191,13,23,195,2,10,248,22,128,14,23,195,2,11,12,250,22,146,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,169,13,23,195,2,249,22,175,8,248,22,170,13,23,197,2,2, -20,249,22,175,8,247,22,188,7,2,20,27,28,248,22,169,6,23,196,2,23, -195,2,248,22,178,7,248,22,173,13,23,197,2,28,249,22,157,14,0,21,35, +28,28,248,22,170,13,23,195,2,249,22,176,8,248,22,171,13,23,197,2,2, +20,249,22,176,8,247,22,189,7,2,20,27,28,248,22,170,6,23,196,2,23, +195,2,248,22,179,7,248,22,174,13,23,197,2,28,249,22,158,14,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,169,6,195,248,22,176,13,195,194,27,248,22,144,7,23,195, -1,249,22,177,13,248,22,181,7,250,22,163,14,0,6,35,114,120,34,47,34, -28,249,22,157,14,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,163,14,0,19,35, +195,2,28,248,22,170,6,195,248,22,177,13,195,194,27,248,22,145,7,23,195, +1,249,22,178,13,248,22,182,7,250,22,164,14,0,6,35,114,120,34,47,34, +28,249,22,158,14,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,164,14,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,20,28,248,22,169,6,194,248,22,176, -13,194,193,87,94,28,28,248,22,168,13,23,195,2,10,28,248,22,169,6,23, -195,2,28,248,22,190,13,23,195,2,10,248,22,191,13,23,195,2,11,12,250, -22,145,9,23,196,2,2,21,23,197,2,28,248,22,190,13,23,195,2,12,248, -22,184,11,249,22,190,10,248,22,134,7,250,22,153,7,2,22,23,200,1,23, -201,1,247,22,23,87,94,28,28,248,22,168,13,23,195,2,10,28,248,22,169, -6,23,195,2,28,248,22,190,13,23,195,2,10,248,22,191,13,23,195,2,11, -12,250,22,145,9,23,196,2,2,21,23,197,2,28,248,22,190,13,23,195,2, -12,248,22,184,11,249,22,190,10,248,22,134,7,250,22,153,7,2,22,23,200, -1,23,201,1,247,22,23,87,94,87,94,28,28,248,22,168,13,23,195,2,10, -28,248,22,169,6,23,195,2,28,248,22,190,13,23,195,2,10,248,22,191,13, -23,195,2,11,12,250,22,145,9,195,2,21,23,197,2,28,248,22,190,13,23, -195,2,12,248,22,184,11,249,22,190,10,248,22,134,7,250,22,153,7,2,22, +6,2,2,92,49,80,159,44,37,38,2,20,28,248,22,170,6,194,248,22,177, +13,194,193,87,94,28,28,248,22,169,13,23,195,2,10,28,248,22,170,6,23, +195,2,28,248,22,191,13,23,195,2,10,248,22,128,14,23,195,2,11,12,250, +22,146,9,23,196,2,2,21,23,197,2,28,248,22,191,13,23,195,2,12,248, +22,185,11,249,22,191,10,248,22,135,7,250,22,154,7,2,22,23,200,1,23, +201,1,247,22,23,87,94,28,28,248,22,169,13,23,195,2,10,28,248,22,170, +6,23,195,2,28,248,22,191,13,23,195,2,10,248,22,128,14,23,195,2,11, +12,250,22,146,9,23,196,2,2,21,23,197,2,28,248,22,191,13,23,195,2, +12,248,22,185,11,249,22,191,10,248,22,135,7,250,22,154,7,2,22,23,200, +1,23,201,1,247,22,23,87,94,87,94,28,28,248,22,169,13,23,195,2,10, +28,248,22,170,6,23,195,2,28,248,22,191,13,23,195,2,10,248,22,128,14, +23,195,2,11,12,250,22,146,9,195,2,21,23,197,2,28,248,22,191,13,23, +195,2,12,248,22,185,11,249,22,191,10,248,22,135,7,250,22,154,7,2,22, 199,23,201,1,247,22,23,249,22,3,89,162,8,44,37,50,9,223,2,33,34, -196,87,94,28,28,248,22,168,13,23,194,2,10,28,248,22,169,6,23,194,2, -28,248,22,190,13,23,194,2,10,248,22,191,13,23,194,2,11,12,250,22,145, -9,2,6,2,21,23,196,2,28,248,22,190,13,23,194,2,12,248,22,184,11, -249,22,190,10,248,22,134,7,250,22,153,7,2,22,2,6,23,200,1,247,22, -23,32,37,89,162,8,44,40,55,2,23,222,33,38,28,248,22,78,23,197,2, -87,94,23,196,1,248,22,184,11,249,22,159,11,251,22,153,7,2,24,2,6, -28,248,22,78,23,203,2,87,94,23,202,1,23,201,1,250,22,1,22,186,13, -23,204,1,23,205,1,23,200,1,247,22,23,27,249,22,186,13,248,22,71,23, -200,2,23,197,2,28,248,22,181,13,23,194,2,27,250,22,1,22,186,13,23, -197,1,199,28,248,22,181,13,193,192,251,2,37,198,199,200,248,22,72,202,251, -2,37,197,198,199,248,22,72,201,87,94,87,94,87,94,28,28,248,22,168,13, -193,10,28,248,22,169,6,193,28,248,22,190,13,193,10,248,22,191,13,193,11, -12,250,22,145,9,2,6,2,21,195,28,248,22,190,13,193,12,248,22,184,11, -249,22,190,10,248,22,134,7,250,22,153,7,2,22,2,6,199,247,22,23,249, -22,3,32,0,89,162,8,44,37,49,9,222,33,36,195,27,247,22,146,14,251, +196,87,94,28,28,248,22,169,13,23,194,2,10,28,248,22,170,6,23,194,2, +28,248,22,191,13,23,194,2,10,248,22,128,14,23,194,2,11,12,250,22,146, +9,2,6,2,21,23,196,2,28,248,22,191,13,23,194,2,12,248,22,185,11, +249,22,191,10,248,22,135,7,250,22,154,7,2,22,2,6,23,200,1,247,22, +23,32,37,89,162,8,44,40,55,2,23,222,33,38,28,248,22,79,23,197,2, +87,94,23,196,1,248,22,185,11,249,22,160,11,251,22,154,7,2,24,2,6, +28,248,22,79,23,203,2,87,94,23,202,1,23,201,1,250,22,1,22,187,13, +23,204,1,23,205,1,23,200,1,247,22,23,27,249,22,187,13,248,22,72,23, +200,2,23,197,2,28,248,22,182,13,23,194,2,27,250,22,1,22,187,13,23, +197,1,199,28,248,22,182,13,193,192,251,2,37,198,199,200,248,22,73,202,251, +2,37,197,198,199,248,22,73,201,87,94,87,94,87,94,28,28,248,22,169,13, +193,10,28,248,22,170,6,193,28,248,22,191,13,193,10,248,22,128,14,193,11, +12,250,22,146,9,2,6,2,21,195,28,248,22,191,13,193,12,248,22,185,11, +249,22,191,10,248,22,135,7,250,22,154,7,2,22,2,6,199,247,22,23,249, +22,3,32,0,89,162,8,44,37,49,9,222,33,36,195,27,247,22,147,14,251, 2,37,196,197,198,196,32,40,89,162,44,42,59,2,23,222,33,41,28,248,22, -78,23,199,2,87,94,23,198,1,248,23,196,1,251,22,153,7,2,24,23,199, -1,28,248,22,78,23,203,2,87,94,23,202,1,23,201,1,250,22,1,22,186, -13,23,204,1,23,205,1,23,198,1,27,249,22,186,13,248,22,71,23,202,2, -23,199,2,28,248,22,181,13,23,194,2,27,250,22,1,22,186,13,23,197,1, -23,202,2,28,248,22,181,13,23,194,2,192,87,94,23,193,1,27,248,22,72, -23,202,1,28,248,22,78,23,194,2,87,94,23,193,1,248,23,199,1,251,22, -153,7,2,24,23,202,1,28,248,22,78,23,206,2,87,94,23,205,1,23,204, -1,250,22,1,22,186,13,23,207,1,23,208,1,23,201,1,27,249,22,186,13, -248,22,71,23,197,2,23,202,2,28,248,22,181,13,23,194,2,27,250,22,1, -22,186,13,23,197,1,204,28,248,22,181,13,193,192,253,2,40,203,204,205,206, -23,15,248,22,72,201,253,2,40,202,203,204,205,206,248,22,72,200,87,94,23, -193,1,27,248,22,72,23,201,1,28,248,22,78,23,194,2,87,94,23,193,1, -248,23,198,1,251,22,153,7,2,24,23,201,1,28,248,22,78,23,205,2,87, -94,23,204,1,23,203,1,250,22,1,22,186,13,23,206,1,23,207,1,23,200, -1,27,249,22,186,13,248,22,71,23,197,2,23,201,2,28,248,22,181,13,23, -194,2,27,250,22,1,22,186,13,23,197,1,203,28,248,22,181,13,193,192,253, -2,40,202,203,204,205,206,248,22,72,201,253,2,40,201,202,203,204,205,248,22, -72,200,27,247,22,146,14,253,2,40,198,199,200,201,202,198,87,95,28,28,248, -22,169,13,23,194,2,10,28,248,22,168,13,23,194,2,10,28,248,22,169,6, -23,194,2,28,248,22,190,13,23,194,2,10,248,22,191,13,23,194,2,11,12, -252,22,145,9,23,200,2,2,25,36,23,198,2,23,199,2,28,28,248,22,169, -6,23,195,2,10,248,22,157,7,23,195,2,87,94,23,194,1,12,252,22,145, +79,23,199,2,87,94,23,198,1,248,23,196,1,251,22,154,7,2,24,23,199, +1,28,248,22,79,23,203,2,87,94,23,202,1,23,201,1,250,22,1,22,187, +13,23,204,1,23,205,1,23,198,1,27,249,22,187,13,248,22,72,23,202,2, +23,199,2,28,248,22,182,13,23,194,2,27,250,22,1,22,187,13,23,197,1, +23,202,2,28,248,22,182,13,23,194,2,192,87,94,23,193,1,27,248,22,73, +23,202,1,28,248,22,79,23,194,2,87,94,23,193,1,248,23,199,1,251,22, +154,7,2,24,23,202,1,28,248,22,79,23,206,2,87,94,23,205,1,23,204, +1,250,22,1,22,187,13,23,207,1,23,208,1,23,201,1,27,249,22,187,13, +248,22,72,23,197,2,23,202,2,28,248,22,182,13,23,194,2,27,250,22,1, +22,187,13,23,197,1,204,28,248,22,182,13,193,192,253,2,40,203,204,205,206, +23,15,248,22,73,201,253,2,40,202,203,204,205,206,248,22,73,200,87,94,23, +193,1,27,248,22,73,23,201,1,28,248,22,79,23,194,2,87,94,23,193,1, +248,23,198,1,251,22,154,7,2,24,23,201,1,28,248,22,79,23,205,2,87, +94,23,204,1,23,203,1,250,22,1,22,187,13,23,206,1,23,207,1,23,200, +1,27,249,22,187,13,248,22,72,23,197,2,23,201,2,28,248,22,182,13,23, +194,2,27,250,22,1,22,187,13,23,197,1,203,28,248,22,182,13,193,192,253, +2,40,202,203,204,205,206,248,22,73,201,253,2,40,201,202,203,204,205,248,22, +73,200,27,247,22,147,14,253,2,40,198,199,200,201,202,198,87,95,28,28,248, +22,170,13,23,194,2,10,28,248,22,169,13,23,194,2,10,28,248,22,170,6, +23,194,2,28,248,22,191,13,23,194,2,10,248,22,128,14,23,194,2,11,12, +252,22,146,9,23,200,2,2,25,36,23,198,2,23,199,2,28,28,248,22,170, +6,23,195,2,10,248,22,158,7,23,195,2,87,94,23,194,1,12,252,22,146, 9,23,200,2,2,26,37,23,198,2,23,199,1,91,159,39,11,90,161,39,36, -11,248,22,189,13,23,197,2,87,94,23,195,1,87,94,28,192,12,250,22,146, +11,248,22,190,13,23,197,2,87,94,23,195,1,87,94,28,192,12,250,22,147, 9,23,201,1,2,27,23,199,1,249,22,7,194,195,91,159,38,11,90,161,38, -36,11,87,95,28,28,248,22,169,13,23,196,2,10,28,248,22,168,13,23,196, -2,10,28,248,22,169,6,23,196,2,28,248,22,190,13,23,196,2,10,248,22, -191,13,23,196,2,11,12,252,22,145,9,2,9,2,25,36,23,200,2,23,201, -2,28,28,248,22,169,6,23,197,2,10,248,22,157,7,23,197,2,12,252,22, -145,9,2,9,2,26,37,23,200,2,23,201,2,91,159,39,11,90,161,39,36, -11,248,22,189,13,23,199,2,87,94,23,195,1,87,94,28,192,12,250,22,146, -9,2,9,2,27,23,201,2,249,22,7,194,195,27,249,22,178,13,250,22,162, +36,11,87,95,28,28,248,22,170,13,23,196,2,10,28,248,22,169,13,23,196, +2,10,28,248,22,170,6,23,196,2,28,248,22,191,13,23,196,2,10,248,22, +128,14,23,196,2,11,12,252,22,146,9,2,9,2,25,36,23,200,2,23,201, +2,28,28,248,22,170,6,23,197,2,10,248,22,158,7,23,197,2,12,252,22, +146,9,2,9,2,26,37,23,200,2,23,201,2,91,159,39,11,90,161,39,36, +11,248,22,190,13,23,199,2,87,94,23,195,1,87,94,28,192,12,250,22,147, +9,2,9,2,27,23,201,2,249,22,7,194,195,27,249,22,179,13,250,22,163, 14,0,20,35,114,120,35,34,40,63,58,91,46,93,91,94,46,93,42,124,41, -36,34,248,22,174,13,23,201,1,28,248,22,169,6,23,203,2,249,22,181,7, -23,204,1,8,63,23,202,1,28,248,22,169,13,23,199,2,248,22,170,13,23, -199,1,87,94,23,198,1,247,22,171,13,28,248,22,168,13,194,249,22,186,13, -195,194,192,91,159,38,11,90,161,38,36,11,87,95,28,28,248,22,169,13,23, -196,2,10,28,248,22,168,13,23,196,2,10,28,248,22,169,6,23,196,2,28, -248,22,190,13,23,196,2,10,248,22,191,13,23,196,2,11,12,252,22,145,9, -2,10,2,25,36,23,200,2,23,201,2,28,28,248,22,169,6,23,197,2,10, -248,22,157,7,23,197,2,12,252,22,145,9,2,10,2,26,37,23,200,2,23, -201,2,91,159,39,11,90,161,39,36,11,248,22,189,13,23,199,2,87,94,23, -195,1,87,94,28,192,12,250,22,146,9,2,10,2,27,23,201,2,249,22,7, -194,195,27,249,22,178,13,249,22,167,7,250,22,163,14,0,9,35,114,120,35, -34,91,46,93,34,248,22,174,13,23,203,1,6,1,1,95,28,248,22,169,6, -23,202,2,249,22,181,7,23,203,1,8,63,23,201,1,28,248,22,169,13,23, -199,2,248,22,170,13,23,199,1,87,94,23,198,1,247,22,171,13,28,248,22, -168,13,194,249,22,186,13,195,194,192,249,247,22,136,5,194,11,249,80,159,38, -47,37,9,9,249,80,159,38,47,37,195,9,27,247,22,148,14,249,80,158,39, -48,28,23,195,2,27,248,22,186,7,6,11,11,80,76,84,67,79,76,76,69, -67,84,83,28,192,192,6,0,0,6,0,0,27,28,23,196,1,250,22,186,13, -248,22,144,14,69,97,100,100,111,110,45,100,105,114,247,22,184,7,6,8,8, -99,111,108,108,101,99,116,115,11,27,248,80,159,42,53,37,250,22,84,23,203, -1,248,22,80,248,22,144,14,72,99,111,108,108,101,99,116,115,45,100,105,114, -23,204,1,28,193,249,22,70,195,194,192,32,50,89,162,8,44,39,8,31,2, -18,222,33,51,27,249,22,155,14,23,197,2,23,198,2,28,23,193,2,87,94, -23,196,1,27,248,22,95,23,195,2,27,27,248,22,104,23,197,1,27,249,22, -155,14,23,201,2,23,196,2,28,23,193,2,87,94,23,194,1,27,248,22,95, -23,195,2,27,27,248,22,104,23,197,1,27,249,22,155,14,23,205,2,23,196, -2,28,23,193,2,87,94,23,194,1,27,248,22,95,23,195,2,27,27,248,22, -104,23,197,1,27,249,22,155,14,23,209,2,23,196,2,28,23,193,2,87,94, -23,194,1,27,248,22,95,23,195,2,27,27,248,22,104,23,197,1,27,249,22, -155,14,23,213,2,23,196,2,28,23,193,2,87,94,23,194,1,27,248,22,95, -23,195,2,27,250,2,50,23,215,2,23,216,1,248,22,104,23,199,1,28,249, -22,163,7,23,196,2,2,28,249,22,84,23,214,2,194,249,22,70,248,22,177, -13,23,197,1,194,87,95,23,211,1,23,193,1,28,249,22,163,7,23,196,2, -2,28,249,22,84,23,212,2,9,249,22,70,248,22,177,13,23,197,1,9,28, -249,22,163,7,23,196,2,2,28,249,22,84,23,210,2,194,249,22,70,248,22, -177,13,23,197,1,194,87,94,23,193,1,28,249,22,163,7,23,196,2,2,28, -249,22,84,23,208,2,9,249,22,70,248,22,177,13,23,197,1,9,28,249,22, -163,7,23,196,2,2,28,249,22,84,23,206,2,194,249,22,70,248,22,177,13, -23,197,1,194,87,94,23,193,1,28,249,22,163,7,23,196,2,2,28,249,22, -84,23,204,2,9,249,22,70,248,22,177,13,23,197,1,9,28,249,22,163,7, -23,196,2,2,28,249,22,84,23,202,2,194,249,22,70,248,22,177,13,23,197, -1,194,87,94,23,193,1,28,249,22,163,7,23,196,2,2,28,249,22,84,23, -200,2,9,249,22,70,248,22,177,13,23,197,1,9,28,249,22,163,7,23,196, -2,2,28,249,22,84,197,194,87,94,23,196,1,249,22,70,248,22,177,13,23, -197,1,194,87,94,23,193,1,28,249,22,163,7,23,198,2,2,28,249,22,84, -195,9,87,94,23,194,1,249,22,70,248,22,177,13,23,199,1,9,87,95,28, -28,248,22,157,7,194,10,248,22,169,6,194,12,250,22,145,9,2,13,6,21, +36,34,248,22,175,13,23,201,1,28,248,22,170,6,23,203,2,249,22,182,7, +23,204,1,8,63,23,202,1,28,248,22,170,13,23,199,2,248,22,171,13,23, +199,1,87,94,23,198,1,247,22,172,13,28,248,22,169,13,194,249,22,187,13, +195,194,192,91,159,38,11,90,161,38,36,11,87,95,28,28,248,22,170,13,23, +196,2,10,28,248,22,169,13,23,196,2,10,28,248,22,170,6,23,196,2,28, +248,22,191,13,23,196,2,10,248,22,128,14,23,196,2,11,12,252,22,146,9, +2,10,2,25,36,23,200,2,23,201,2,28,28,248,22,170,6,23,197,2,10, +248,22,158,7,23,197,2,12,252,22,146,9,2,10,2,26,37,23,200,2,23, +201,2,91,159,39,11,90,161,39,36,11,248,22,190,13,23,199,2,87,94,23, +195,1,87,94,28,192,12,250,22,147,9,2,10,2,27,23,201,2,249,22,7, +194,195,27,249,22,179,13,249,22,168,7,250,22,164,14,0,9,35,114,120,35, +34,91,46,93,34,248,22,175,13,23,203,1,6,1,1,95,28,248,22,170,6, +23,202,2,249,22,182,7,23,203,1,8,63,23,201,1,28,248,22,170,13,23, +199,2,248,22,171,13,23,199,1,87,94,23,198,1,247,22,172,13,28,248,22, +169,13,194,249,22,187,13,195,194,192,249,247,22,137,5,194,11,249,80,159,38, +47,37,9,9,249,80,159,38,47,37,195,9,27,247,22,149,14,249,80,158,39, +48,28,23,195,2,27,248,22,187,7,6,11,11,80,76,84,67,79,76,76,69, +67,84,83,28,192,192,6,0,0,6,0,0,27,28,23,196,1,250,22,187,13, +248,22,145,14,69,97,100,100,111,110,45,100,105,114,247,22,185,7,6,8,8, +99,111,108,108,101,99,116,115,11,27,248,80,159,42,53,37,250,22,85,23,203, +1,248,22,81,248,22,145,14,72,99,111,108,108,101,99,116,115,45,100,105,114, +23,204,1,28,193,249,22,71,195,194,192,32,50,89,162,8,44,39,8,31,2, +18,222,33,51,27,249,22,156,14,23,197,2,23,198,2,28,23,193,2,87,94, +23,196,1,27,248,22,96,23,195,2,27,27,248,22,105,23,197,1,27,249,22, +156,14,23,201,2,23,196,2,28,23,193,2,87,94,23,194,1,27,248,22,96, +23,195,2,27,27,248,22,105,23,197,1,27,249,22,156,14,23,205,2,23,196, +2,28,23,193,2,87,94,23,194,1,27,248,22,96,23,195,2,27,27,248,22, +105,23,197,1,27,249,22,156,14,23,209,2,23,196,2,28,23,193,2,87,94, +23,194,1,27,248,22,96,23,195,2,27,27,248,22,105,23,197,1,27,249,22, +156,14,23,213,2,23,196,2,28,23,193,2,87,94,23,194,1,27,248,22,96, +23,195,2,27,250,2,50,23,215,2,23,216,1,248,22,105,23,199,1,28,249, +22,164,7,23,196,2,2,28,249,22,85,23,214,2,194,249,22,71,248,22,178, +13,23,197,1,194,87,95,23,211,1,23,193,1,28,249,22,164,7,23,196,2, +2,28,249,22,85,23,212,2,9,249,22,71,248,22,178,13,23,197,1,9,28, +249,22,164,7,23,196,2,2,28,249,22,85,23,210,2,194,249,22,71,248,22, +178,13,23,197,1,194,87,94,23,193,1,28,249,22,164,7,23,196,2,2,28, +249,22,85,23,208,2,9,249,22,71,248,22,178,13,23,197,1,9,28,249,22, +164,7,23,196,2,2,28,249,22,85,23,206,2,194,249,22,71,248,22,178,13, +23,197,1,194,87,94,23,193,1,28,249,22,164,7,23,196,2,2,28,249,22, +85,23,204,2,9,249,22,71,248,22,178,13,23,197,1,9,28,249,22,164,7, +23,196,2,2,28,249,22,85,23,202,2,194,249,22,71,248,22,178,13,23,197, +1,194,87,94,23,193,1,28,249,22,164,7,23,196,2,2,28,249,22,85,23, +200,2,9,249,22,71,248,22,178,13,23,197,1,9,28,249,22,164,7,23,196, +2,2,28,249,22,85,197,194,87,94,23,196,1,249,22,71,248,22,178,13,23, +197,1,194,87,94,23,193,1,28,249,22,164,7,23,198,2,2,28,249,22,85, +195,9,87,94,23,194,1,249,22,71,248,22,178,13,23,199,1,9,87,95,28, +28,248,22,158,7,194,10,248,22,170,6,194,12,250,22,146,9,2,13,6,21, 21,98,121,116,101,32,115,116,114,105,110,103,32,111,114,32,115,116,114,105,110, -103,196,28,28,248,22,79,195,249,22,4,22,168,13,196,11,12,250,22,145,9, +103,196,28,28,248,22,80,195,249,22,4,22,169,13,196,11,12,250,22,146,9, 2,13,6,13,13,108,105,115,116,32,111,102,32,112,97,116,104,115,197,250,2, -50,197,195,28,248,22,169,6,197,248,22,180,7,197,196,32,53,89,162,8,44, +50,197,195,28,248,22,170,6,197,248,22,181,7,197,196,32,53,89,162,8,44, 39,53,70,102,111,117,110,100,45,101,120,101,99,222,33,56,32,54,89,162,8, -44,40,58,64,110,101,120,116,222,33,55,27,248,22,130,14,23,196,2,28,249, -22,177,8,23,195,2,23,197,1,11,28,248,22,190,13,23,194,2,27,249,22, -186,13,23,197,1,23,196,1,28,23,197,2,91,159,39,11,90,161,39,36,11, -248,22,189,13,23,197,2,87,95,23,195,1,23,194,1,27,28,23,202,2,27, -248,22,130,14,23,199,2,28,249,22,177,8,23,195,2,23,200,2,11,28,248, -22,190,13,23,194,2,250,2,53,23,205,2,23,206,2,249,22,186,13,23,200, +44,40,58,64,110,101,120,116,222,33,55,27,248,22,131,14,23,196,2,28,249, +22,178,8,23,195,2,23,197,1,11,28,248,22,191,13,23,194,2,27,249,22, +187,13,23,197,1,23,196,1,28,23,197,2,91,159,39,11,90,161,39,36,11, +248,22,190,13,23,197,2,87,95,23,195,1,23,194,1,27,28,23,202,2,27, +248,22,131,14,23,199,2,28,249,22,178,8,23,195,2,23,200,2,11,28,248, +22,191,13,23,194,2,250,2,53,23,205,2,23,206,2,249,22,187,13,23,200, 2,23,198,1,250,2,53,23,205,2,23,206,2,23,196,1,11,28,23,193,2, -192,87,94,23,193,1,27,28,248,22,168,13,23,196,2,27,249,22,186,13,23, -198,2,23,205,2,28,28,248,22,181,13,193,10,248,22,180,13,193,192,11,11, -28,23,193,2,192,87,94,23,193,1,28,23,203,2,11,27,248,22,130,14,23, -200,2,28,249,22,177,8,23,195,2,23,201,1,11,28,248,22,190,13,23,194, -2,250,2,53,23,206,1,23,207,1,249,22,186,13,23,201,1,23,198,1,250, +192,87,94,23,193,1,27,28,248,22,169,13,23,196,2,27,249,22,187,13,23, +198,2,23,205,2,28,28,248,22,182,13,193,10,248,22,181,13,193,192,11,11, +28,23,193,2,192,87,94,23,193,1,28,23,203,2,11,27,248,22,131,14,23, +200,2,28,249,22,178,8,23,195,2,23,201,1,11,28,248,22,191,13,23,194, +2,250,2,53,23,206,1,23,207,1,249,22,187,13,23,201,1,23,198,1,250, 2,53,205,206,195,192,87,94,23,194,1,28,23,196,2,91,159,39,11,90,161, -39,36,11,248,22,189,13,23,197,2,87,95,23,195,1,23,194,1,27,28,23, -201,2,27,248,22,130,14,23,199,2,28,249,22,177,8,23,195,2,23,200,2, -11,28,248,22,190,13,23,194,2,250,2,53,23,204,2,23,205,2,249,22,186, +39,36,11,248,22,190,13,23,197,2,87,95,23,195,1,23,194,1,27,28,23, +201,2,27,248,22,131,14,23,199,2,28,249,22,178,8,23,195,2,23,200,2, +11,28,248,22,191,13,23,194,2,250,2,53,23,204,2,23,205,2,249,22,187, 13,23,200,2,23,198,1,250,2,53,23,204,2,23,205,2,23,196,1,11,28, -23,193,2,192,87,94,23,193,1,27,28,248,22,168,13,23,196,2,27,249,22, -186,13,23,198,2,23,204,2,28,28,248,22,181,13,193,10,248,22,180,13,193, +23,193,2,192,87,94,23,193,1,27,28,248,22,169,13,23,196,2,27,249,22, +187,13,23,198,2,23,204,2,28,28,248,22,182,13,193,10,248,22,181,13,193, 192,11,11,28,23,193,2,192,87,94,23,193,1,28,23,202,2,11,27,248,22, -130,14,23,200,2,28,249,22,177,8,23,195,2,23,201,1,11,28,248,22,190, -13,23,194,2,250,2,53,23,205,1,23,206,1,249,22,186,13,23,201,1,23, +131,14,23,200,2,28,249,22,178,8,23,195,2,23,201,1,11,28,248,22,191, +13,23,194,2,250,2,53,23,205,1,23,206,1,249,22,187,13,23,201,1,23, 198,1,250,2,53,204,205,195,192,28,23,193,2,91,159,39,11,90,161,39,36, -11,248,22,189,13,23,199,2,87,95,23,195,1,23,194,1,27,28,23,198,2, +11,248,22,190,13,23,199,2,87,95,23,195,1,23,194,1,27,28,23,198,2, 251,2,54,23,198,2,23,203,2,23,201,2,23,202,2,11,28,23,193,2,192, -87,94,23,193,1,27,28,248,22,168,13,195,27,249,22,186,13,197,200,28,28, -248,22,181,13,193,10,248,22,180,13,193,192,11,11,28,192,192,28,198,11,251, +87,94,23,193,1,27,28,248,22,169,13,195,27,249,22,187,13,197,200,28,28, +248,22,182,13,193,10,248,22,181,13,193,192,11,11,28,192,192,28,198,11,251, 2,54,198,203,201,202,194,32,57,89,162,8,44,40,8,31,2,18,222,33,58, -28,248,22,78,23,197,2,11,27,248,22,129,14,248,22,71,23,199,2,27,249, -22,186,13,23,196,1,23,197,2,28,248,22,180,13,23,194,2,250,2,53,198, -199,195,87,94,23,193,1,27,248,22,72,23,200,1,28,248,22,78,23,194,2, -11,27,248,22,129,14,248,22,71,23,196,2,27,249,22,186,13,23,196,1,23, -200,2,28,248,22,180,13,23,194,2,250,2,53,201,202,195,87,94,23,193,1, -27,248,22,72,23,197,1,28,248,22,78,23,194,2,11,27,248,22,129,14,248, -22,71,23,196,2,27,249,22,186,13,23,196,1,23,203,2,28,248,22,180,13, -23,194,2,250,2,53,204,205,195,87,94,23,193,1,27,248,22,72,23,197,1, -28,248,22,78,23,194,2,11,27,248,22,129,14,248,22,71,23,196,2,27,249, -22,186,13,23,196,1,23,206,2,28,248,22,180,13,23,194,2,250,2,53,23, -15,23,16,195,87,94,23,193,1,27,248,22,72,23,197,1,28,248,22,78,23, -194,2,11,27,248,22,129,14,248,22,71,23,196,2,27,249,22,186,13,23,196, -1,23,209,2,28,248,22,180,13,23,194,2,250,2,53,23,18,23,19,195,87, -94,23,193,1,27,248,22,72,23,197,1,28,248,22,78,23,194,2,11,27,248, -22,129,14,248,22,71,195,27,249,22,186,13,23,196,1,23,19,28,248,22,180, +28,248,22,79,23,197,2,11,27,248,22,130,14,248,22,72,23,199,2,27,249, +22,187,13,23,196,1,23,197,2,28,248,22,181,13,23,194,2,250,2,53,198, +199,195,87,94,23,193,1,27,248,22,73,23,200,1,28,248,22,79,23,194,2, +11,27,248,22,130,14,248,22,72,23,196,2,27,249,22,187,13,23,196,1,23, +200,2,28,248,22,181,13,23,194,2,250,2,53,201,202,195,87,94,23,193,1, +27,248,22,73,23,197,1,28,248,22,79,23,194,2,11,27,248,22,130,14,248, +22,72,23,196,2,27,249,22,187,13,23,196,1,23,203,2,28,248,22,181,13, +23,194,2,250,2,53,204,205,195,87,94,23,193,1,27,248,22,73,23,197,1, +28,248,22,79,23,194,2,11,27,248,22,130,14,248,22,72,23,196,2,27,249, +22,187,13,23,196,1,23,206,2,28,248,22,181,13,23,194,2,250,2,53,23, +15,23,16,195,87,94,23,193,1,27,248,22,73,23,197,1,28,248,22,79,23, +194,2,11,27,248,22,130,14,248,22,72,23,196,2,27,249,22,187,13,23,196, +1,23,209,2,28,248,22,181,13,23,194,2,250,2,53,23,18,23,19,195,87, +94,23,193,1,27,248,22,73,23,197,1,28,248,22,79,23,194,2,11,27,248, +22,130,14,248,22,72,195,27,249,22,187,13,23,196,1,23,19,28,248,22,181, 13,193,250,2,53,23,21,23,22,195,251,2,57,23,21,23,22,23,23,248,22, -72,199,87,95,28,28,248,22,168,13,23,195,2,10,28,248,22,169,6,23,195, -2,28,248,22,190,13,23,195,2,10,248,22,191,13,23,195,2,11,12,250,22, -145,9,2,14,6,25,25,112,97,116,104,32,111,114,32,115,116,114,105,110,103, +73,199,87,95,28,28,248,22,169,13,23,195,2,10,28,248,22,170,6,23,195, +2,28,248,22,191,13,23,195,2,10,248,22,128,14,23,195,2,11,12,250,22, +146,9,2,14,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,168,13,23,196,2,10,28,248,22,169,6,23,196,2,28,248,22,190,13, -23,196,2,10,248,22,191,13,23,196,2,11,248,22,190,13,23,196,2,11,10, -12,250,22,145,9,2,14,6,29,29,35,102,32,111,114,32,114,101,108,97,116, +248,22,169,13,23,196,2,10,28,248,22,170,6,23,196,2,28,248,22,191,13, +23,196,2,10,248,22,128,14,23,196,2,11,248,22,191,13,23,196,2,11,10, +12,250,22,146,9,2,14,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,190,13,23,195,2,91,159,39,11,90,161,39,36,11,248,22,189, -13,23,198,2,249,22,175,8,194,68,114,101,108,97,116,105,118,101,11,27,248, -22,186,7,6,4,4,80,65,84,72,27,28,23,194,2,27,249,80,159,41,48, -38,23,197,1,9,28,249,22,175,8,247,22,188,7,2,20,249,22,70,248,22, -177,13,5,1,46,194,192,87,94,23,194,1,9,28,248,22,78,23,194,2,11, -27,248,22,129,14,248,22,71,23,196,2,27,249,22,186,13,23,196,1,23,200, -2,28,248,22,180,13,23,194,2,250,2,53,201,202,195,87,94,23,193,1,27, -248,22,72,23,197,1,28,248,22,78,23,194,2,11,27,248,22,129,14,248,22, -71,23,196,2,27,249,22,186,13,23,196,1,23,203,2,28,248,22,180,13,23, -194,2,250,2,53,204,205,195,87,94,23,193,1,27,248,22,72,23,197,1,28, -248,22,78,23,194,2,11,27,248,22,129,14,248,22,71,195,27,249,22,186,13, -23,196,1,205,28,248,22,180,13,193,250,2,53,23,15,23,16,195,251,2,57, -23,15,23,16,23,17,248,22,72,199,27,248,22,129,14,23,196,1,28,248,22, -180,13,193,250,2,53,198,199,195,11,250,80,159,39,49,37,196,197,11,250,80, -159,39,49,37,196,11,11,87,94,249,22,160,6,247,22,132,5,195,248,22,186, -5,249,22,179,3,36,249,22,163,3,197,198,27,28,23,197,2,87,95,23,196, -1,23,195,1,23,197,1,87,94,23,197,1,27,248,22,144,14,2,19,27,249, -80,159,41,49,37,23,196,1,11,27,27,248,22,182,3,23,200,1,28,192,192, -36,27,27,248,22,182,3,23,202,1,28,192,192,36,249,22,163,5,23,197,1, +28,28,248,22,191,13,23,195,2,91,159,39,11,90,161,39,36,11,248,22,190, +13,23,198,2,249,22,176,8,194,68,114,101,108,97,116,105,118,101,11,27,248, +22,187,7,6,4,4,80,65,84,72,27,28,23,194,2,27,249,80,159,41,48, +38,23,197,1,9,28,249,22,176,8,247,22,189,7,2,20,249,22,71,248,22, +178,13,5,1,46,194,192,87,94,23,194,1,9,28,248,22,79,23,194,2,11, +27,248,22,130,14,248,22,72,23,196,2,27,249,22,187,13,23,196,1,23,200, +2,28,248,22,181,13,23,194,2,250,2,53,201,202,195,87,94,23,193,1,27, +248,22,73,23,197,1,28,248,22,79,23,194,2,11,27,248,22,130,14,248,22, +72,23,196,2,27,249,22,187,13,23,196,1,23,203,2,28,248,22,181,13,23, +194,2,250,2,53,204,205,195,87,94,23,193,1,27,248,22,73,23,197,1,28, +248,22,79,23,194,2,11,27,248,22,130,14,248,22,72,195,27,249,22,187,13, +23,196,1,205,28,248,22,181,13,193,250,2,53,23,15,23,16,195,251,2,57, +23,15,23,16,23,17,248,22,73,199,27,248,22,130,14,23,196,1,28,248,22, +181,13,193,250,2,53,198,199,195,11,250,80,159,39,49,37,196,197,11,250,80, +159,39,49,37,196,11,11,87,94,249,22,161,6,247,22,133,5,195,248,22,187, +5,249,22,180,3,36,249,22,164,3,197,198,27,28,23,197,2,87,95,23,196, +1,23,195,1,23,197,1,87,94,23,197,1,27,248,22,145,14,2,19,27,249, +80,159,41,49,37,23,196,1,11,27,27,248,22,183,3,23,200,1,28,192,192, +36,27,27,248,22,183,3,23,202,1,28,192,192,36,249,22,164,5,23,197,1, 83,158,40,20,100,95,89,162,8,44,36,48,9,224,3,2,33,62,23,195,1, -23,196,1,27,248,22,148,5,23,195,1,248,80,159,39,54,37,193,159,36,20, +23,196,1,27,248,22,149,5,23,195,1,248,80,159,39,54,37,193,159,36,20, 105,159,36,16,1,11,16,0,83,158,42,20,103,144,67,35,37,117,116,105,108, 115,29,11,11,11,11,11,10,43,80,158,36,36,20,105,159,38,16,17,2,1, 2,2,2,3,2,4,2,5,2,6,2,7,2,8,2,9,2,10,2,11,2, @@ -375,7 +375,7 @@ 51,2,18,223,0,33,29,80,159,36,54,37,83,158,36,16,2,89,162,8,44, 37,56,2,18,223,0,33,30,80,159,36,53,37,83,158,36,16,2,32,0,89, 162,44,37,45,2,1,222,33,31,80,159,36,36,37,83,158,36,16,2,249,22, -171,6,7,92,7,92,80,159,36,37,37,83,158,36,16,2,89,162,44,37,54, +172,6,7,92,7,92,80,159,36,37,37,83,158,36,16,2,89,162,44,37,54, 2,3,223,0,33,32,80,159,36,38,37,83,158,36,16,2,32,0,89,162,8, 44,38,50,2,4,222,33,33,80,159,36,39,37,83,158,36,16,2,32,0,89, 162,8,44,39,51,2,5,222,33,35,80,159,36,40,37,83,158,36,16,2,32, @@ -387,9 +387,9 @@ 83,158,36,16,2,32,0,89,162,44,37,44,2,11,222,33,46,80,159,36,46, 37,83,158,36,16,2,83,158,39,20,99,96,2,12,89,162,44,36,44,9,223, 0,33,47,89,162,44,37,45,9,223,0,33,48,89,162,44,38,55,9,223,0, -33,49,80,159,36,47,37,83,158,36,16,2,27,248,22,151,14,248,22,180,7, -27,28,249,22,175,8,247,22,188,7,2,20,6,1,1,59,6,1,1,58,250, -22,153,7,6,14,14,40,91,94,126,97,93,42,41,126,97,40,46,42,41,23, +33,49,80,159,36,47,37,83,158,36,16,2,27,248,22,152,14,248,22,181,7, +27,28,249,22,176,8,247,22,189,7,2,20,6,1,1,59,6,1,1,58,250, +22,154,7,6,14,14,40,91,94,126,97,93,42,41,126,97,40,46,42,41,23, 196,2,23,196,1,89,162,8,44,38,48,2,13,223,0,33,52,80,159,36,48, 37,83,158,36,16,2,83,158,39,20,99,96,2,14,89,162,8,44,39,8,24, 9,223,0,33,59,89,162,44,38,47,9,223,0,33,60,89,162,44,37,46,9, @@ -400,12 +400,12 @@ EVAL_ONE_SIZED_STR((char *)expr, 6239); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,52,46,50,46,53,46,54,8,0,0,0,1,0,0,6,0,19,0, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,52,46,50,46,53,46,55,8,0,0,0,1,0,0,6,0,19,0, 34,0,48,0,62,0,76,0,118,0,0,0,53,1,0,0,65,113,117,111,116, 101,29,94,2,1,67,35,37,117,116,105,108,115,11,29,94,2,1,69,35,37, 110,101,116,119,111,114,107,11,29,94,2,1,68,35,37,112,97,114,97,109,122, 11,29,94,2,1,68,35,37,101,120,112,111,98,115,11,29,94,2,1,68,35, -37,107,101,114,110,101,108,11,97,36,11,8,240,178,76,0,0,98,159,2,2, +37,107,101,114,110,101,108,11,97,36,11,8,240,181,75,0,0,98,159,2,2, 36,36,159,2,3,36,36,159,2,4,36,36,159,2,5,36,36,159,2,6,36, 36,159,2,6,36,36,16,0,159,36,20,105,159,36,16,1,11,16,0,83,158, 42,20,103,144,69,35,37,98,117,105,108,116,105,110,29,11,11,11,11,11,18, @@ -420,7 +420,7 @@ EVAL_ONE_SIZED_STR((char *)expr, 346); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,52,46,50,46,53,46,54,65,0,0,0,1,0,0,11,0,38,0, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,52,46,50,46,53,46,55,65,0,0,0,1,0,0,11,0,38,0, 44,0,57,0,66,0,73,0,95,0,117,0,143,0,155,0,173,0,193,0,205, 0,221,0,244,0,0,1,31,1,38,1,43,1,48,1,53,1,58,1,67,1, 72,1,76,1,84,1,93,1,114,1,144,1,175,1,232,1,24,2,64,4,83, @@ -443,216 +443,216 @@ 100,117,108,101,45,110,97,109,101,45,114,101,115,111,108,118,101,114,29,94,2, 3,2,5,11,64,98,111,111,116,64,115,101,97,108,64,115,97,109,101,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,250,22,186,13, -23,197,1,23,199,1,249,80,159,43,39,38,23,198,1,2,22,252,22,186,13, -23,199,1,23,201,1,2,23,247,22,189,7,249,80,159,45,39,38,23,200,1, -80,159,45,36,38,87,94,23,194,1,27,250,22,139,14,196,11,32,0,89,162, -8,44,36,41,9,222,11,28,192,249,22,70,195,194,11,27,252,22,186,13,23, -200,1,23,202,1,2,23,247,22,189,7,249,80,159,46,39,38,23,201,1,80, -159,46,36,38,27,250,22,139,14,196,11,32,0,89,162,8,44,36,41,9,222, -11,28,192,249,22,70,195,194,11,27,250,22,186,13,23,198,1,23,200,1,249, -80,159,44,39,38,23,199,1,2,22,27,250,22,139,14,196,11,32,0,89,162, -8,44,36,41,9,222,11,28,192,249,22,70,195,194,11,87,94,28,248,80,159, -37,38,38,23,195,2,12,250,22,145,9,77,108,111,97,100,47,117,115,101,45, +67,105,103,110,111,114,101,100,249,22,14,195,80,159,38,46,38,250,22,187,13, +23,197,1,23,199,1,249,80,159,43,39,38,23,198,1,2,22,252,22,187,13, +23,199,1,23,201,1,2,23,247,22,190,7,249,80,159,45,39,38,23,200,1, +80,159,45,36,38,87,94,23,194,1,27,250,22,140,14,196,11,32,0,89,162, +8,44,36,41,9,222,11,28,192,249,22,71,195,194,11,27,252,22,187,13,23, +200,1,23,202,1,2,23,247,22,190,7,249,80,159,46,39,38,23,201,1,80, +159,46,36,38,27,250,22,140,14,196,11,32,0,89,162,8,44,36,41,9,222, +11,28,192,249,22,71,195,194,11,27,250,22,187,13,23,198,1,23,200,1,249, +80,159,44,39,38,23,199,1,2,22,27,250,22,140,14,196,11,32,0,89,162, +8,44,36,41,9,222,11,28,192,249,22,71,195,194,11,87,94,28,248,80,159, +37,38,38,23,195,2,12,250,22,146,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,91,159,42, -11,90,161,37,36,11,28,248,22,128,14,23,201,2,23,200,1,27,247,22,137, -5,28,23,193,2,249,22,129,14,23,203,1,23,195,1,200,90,161,39,37,11, -248,22,189,13,23,194,2,87,94,23,196,1,90,161,37,40,11,28,249,22,175, +11,90,161,37,36,11,28,248,22,129,14,23,201,2,23,200,1,27,247,22,138, +5,28,23,193,2,249,22,130,14,23,203,1,23,195,1,200,90,161,39,37,11, +248,22,190,13,23,194,2,87,94,23,196,1,90,161,37,40,11,28,249,22,176, 8,23,196,2,68,114,101,108,97,116,105,118,101,87,94,23,194,1,2,21,23, -194,1,90,161,37,41,11,247,22,147,14,27,89,162,44,37,50,62,122,111,225, +194,1,90,161,37,41,11,247,22,148,14,27,89,162,44,37,50,62,122,111,225, 7,5,3,33,28,27,89,162,44,37,52,9,225,8,6,4,33,29,27,249,22, 5,89,162,8,44,37,47,9,223,5,33,30,23,203,2,27,28,23,195,1,27, 249,22,5,89,162,8,44,37,53,9,225,13,11,9,33,31,23,205,2,27,28, -23,196,2,11,193,28,192,192,28,193,28,23,196,2,28,249,22,175,3,248,22, -72,196,248,22,72,23,199,2,193,11,11,11,11,28,23,193,2,87,98,23,202, +23,196,2,11,193,28,192,192,28,193,28,23,196,2,28,249,22,176,3,248,22, +73,196,248,22,73,23,199,2,193,11,11,11,11,28,23,193,2,87,98,23,202, 1,23,199,1,23,197,1,23,196,1,23,194,1,20,14,159,80,159,46,40,38, -250,80,159,49,41,38,249,22,27,11,80,159,51,40,38,22,137,5,28,248,22, -168,13,23,205,2,23,204,1,87,94,23,204,1,247,22,145,14,249,247,22,150, -14,248,22,71,195,206,87,94,23,193,1,27,28,23,197,1,27,249,22,5,83, +250,80,159,49,41,38,249,22,27,11,80,159,51,40,38,22,138,5,28,248,22, +169,13,23,205,2,23,204,1,87,94,23,204,1,247,22,146,14,249,247,22,151, +14,248,22,72,195,206,87,94,23,193,1,27,28,23,197,1,27,249,22,5,83, 158,40,20,100,94,89,162,8,44,37,51,9,225,14,12,10,33,32,23,203,1, -23,206,1,27,28,23,197,2,11,193,28,192,192,28,193,28,196,28,249,22,175, -3,248,22,72,196,248,22,72,199,193,11,11,11,87,95,23,203,1,23,200,1, +23,206,1,27,28,23,197,2,11,193,28,192,192,28,193,28,196,28,249,22,176, +3,248,22,73,196,248,22,73,199,193,11,11,11,87,95,23,203,1,23,200,1, 11,28,23,193,2,87,94,23,198,1,20,14,159,80,159,47,40,38,250,80,159, -50,41,38,249,22,27,11,80,159,52,40,38,22,137,5,28,248,22,168,13,23, -206,2,23,205,1,87,94,23,205,1,247,22,145,14,249,247,22,135,5,248,22, -71,195,23,15,87,94,23,193,1,20,14,159,80,159,47,40,38,250,80,159,50, -41,38,249,22,27,11,80,159,52,40,38,22,137,5,28,248,22,168,13,23,206, -2,23,205,1,87,94,23,205,1,247,22,145,14,249,247,22,135,5,199,23,15, +50,41,38,249,22,27,11,80,159,52,40,38,22,138,5,28,248,22,169,13,23, +206,2,23,205,1,87,94,23,205,1,247,22,146,14,249,247,22,136,5,248,22, +72,195,23,15,87,94,23,193,1,20,14,159,80,159,47,40,38,250,80,159,50, +41,38,249,22,27,11,80,159,52,40,38,22,138,5,28,248,22,169,13,23,206, +2,23,205,1,87,94,23,205,1,247,22,146,14,249,247,22,136,5,199,23,15, 0,17,35,114,120,34,94,40,46,42,63,41,47,40,46,42,41,36,34,32,35, -89,162,8,44,37,59,2,24,222,33,36,27,249,22,155,14,2,34,23,196,2, -28,23,193,2,87,94,23,194,1,249,22,70,248,22,95,23,196,2,27,248,22, -104,23,197,1,27,249,22,155,14,2,34,23,196,2,28,23,193,2,87,94,23, -194,1,249,22,70,248,22,95,23,196,2,27,248,22,104,23,197,1,27,249,22, -155,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,70,248,22, -95,23,196,2,27,248,22,104,23,197,1,27,249,22,155,14,2,34,23,196,2, -28,23,193,2,87,94,23,194,1,249,22,70,248,22,95,23,196,2,248,2,35, -248,22,104,23,197,1,248,22,80,194,248,22,80,194,248,22,80,194,248,22,80, -194,32,37,89,162,44,37,55,2,24,222,33,38,28,248,22,78,248,22,72,23, -195,2,249,22,7,9,248,22,71,195,91,159,38,11,90,161,38,36,11,27,248, -22,72,196,28,248,22,78,248,22,72,23,195,2,249,22,7,9,248,22,71,195, -91,159,38,11,90,161,38,36,11,27,248,22,72,196,28,248,22,78,248,22,72, -23,195,2,249,22,7,9,248,22,71,195,91,159,38,11,90,161,38,36,11,248, -2,37,248,22,72,196,249,22,7,249,22,70,248,22,71,199,196,195,249,22,7, -249,22,70,248,22,71,199,196,195,249,22,7,249,22,70,248,22,71,199,196,195, -27,27,249,22,155,14,2,34,23,197,2,28,23,193,2,87,94,23,195,1,249, -22,70,248,22,95,23,196,2,27,248,22,104,23,197,1,27,249,22,155,14,2, -34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,70,248,22,95,23,196, -2,27,248,22,104,23,197,1,27,249,22,155,14,2,34,23,196,2,28,23,193, -2,87,94,23,194,1,249,22,70,248,22,95,23,196,2,27,248,22,104,23,197, -1,27,249,22,155,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249, -22,70,248,22,95,23,196,2,248,2,35,248,22,104,23,197,1,248,22,80,194, -248,22,80,194,248,22,80,194,248,22,80,195,28,23,195,1,192,28,248,22,78, -248,22,72,23,195,2,249,22,7,9,248,22,71,195,91,159,38,11,90,161,38, -36,11,27,248,22,72,196,28,248,22,78,248,22,72,23,195,2,249,22,7,9, -248,22,71,195,91,159,38,11,90,161,38,36,11,27,248,22,72,196,28,248,22, -78,248,22,72,23,195,2,249,22,7,9,248,22,71,195,91,159,38,11,90,161, -38,36,11,248,2,37,248,22,72,196,249,22,7,249,22,70,248,22,71,199,196, -195,249,22,7,249,22,70,248,22,71,199,196,195,249,22,7,249,22,70,248,22, -71,199,196,195,87,95,28,248,22,179,4,195,12,250,22,145,9,2,17,6,20, +89,162,8,44,37,59,2,24,222,33,36,27,249,22,156,14,2,34,23,196,2, +28,23,193,2,87,94,23,194,1,249,22,71,248,22,96,23,196,2,27,248,22, +105,23,197,1,27,249,22,156,14,2,34,23,196,2,28,23,193,2,87,94,23, +194,1,249,22,71,248,22,96,23,196,2,27,248,22,105,23,197,1,27,249,22, +156,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,71,248,22, +96,23,196,2,27,248,22,105,23,197,1,27,249,22,156,14,2,34,23,196,2, +28,23,193,2,87,94,23,194,1,249,22,71,248,22,96,23,196,2,248,2,35, +248,22,105,23,197,1,248,22,81,194,248,22,81,194,248,22,81,194,248,22,81, +194,32,37,89,162,44,37,55,2,24,222,33,38,28,248,22,79,248,22,73,23, +195,2,249,22,7,9,248,22,72,195,91,159,38,11,90,161,38,36,11,27,248, +22,73,196,28,248,22,79,248,22,73,23,195,2,249,22,7,9,248,22,72,195, +91,159,38,11,90,161,38,36,11,27,248,22,73,196,28,248,22,79,248,22,73, +23,195,2,249,22,7,9,248,22,72,195,91,159,38,11,90,161,38,36,11,248, +2,37,248,22,73,196,249,22,7,249,22,71,248,22,72,199,196,195,249,22,7, +249,22,71,248,22,72,199,196,195,249,22,7,249,22,71,248,22,72,199,196,195, +27,27,249,22,156,14,2,34,23,197,2,28,23,193,2,87,94,23,195,1,249, +22,71,248,22,96,23,196,2,27,248,22,105,23,197,1,27,249,22,156,14,2, +34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,71,248,22,96,23,196, +2,27,248,22,105,23,197,1,27,249,22,156,14,2,34,23,196,2,28,23,193, +2,87,94,23,194,1,249,22,71,248,22,96,23,196,2,27,248,22,105,23,197, +1,27,249,22,156,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249, +22,71,248,22,96,23,196,2,248,2,35,248,22,105,23,197,1,248,22,81,194, +248,22,81,194,248,22,81,194,248,22,81,195,28,23,195,1,192,28,248,22,79, +248,22,73,23,195,2,249,22,7,9,248,22,72,195,91,159,38,11,90,161,38, +36,11,27,248,22,73,196,28,248,22,79,248,22,73,23,195,2,249,22,7,9, +248,22,72,195,91,159,38,11,90,161,38,36,11,27,248,22,73,196,28,248,22, +79,248,22,73,23,195,2,249,22,7,9,248,22,72,195,91,159,38,11,90,161, +38,36,11,248,2,37,248,22,73,196,249,22,7,249,22,71,248,22,72,199,196, +195,249,22,7,249,22,71,248,22,72,199,196,195,249,22,7,249,22,71,248,22, +72,199,196,195,87,95,28,248,22,180,4,195,12,250,22,146,9,2,17,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,87,94,23,193,1,12,27,27,250,22,145, -2,80,159,42,43,38,248,22,175,14,247,22,148,12,11,28,23,193,2,192,87, -94,23,193,1,27,247,22,129,2,87,94,250,22,143,2,80,159,43,43,38,248, -22,175,14,247,22,148,12,195,192,250,22,143,2,195,198,66,97,116,116,97,99, -104,251,211,197,198,199,10,28,192,250,22,144,9,11,196,195,248,22,142,9,194, -32,43,89,162,44,37,52,2,24,222,33,44,28,248,22,78,248,22,72,23,195, -2,249,22,7,9,248,22,71,195,91,159,38,11,90,161,38,36,11,27,248,22, -72,196,28,248,22,78,248,22,72,23,195,2,249,22,7,9,248,22,71,195,91, -159,38,11,90,161,38,36,11,248,2,43,248,22,72,196,249,22,7,249,22,70, -248,22,71,199,196,195,249,22,7,249,22,70,248,22,71,199,196,195,32,45,89, -162,8,44,37,55,2,24,222,33,46,27,249,22,155,14,2,34,23,196,2,28, -23,193,2,87,94,23,194,1,249,22,70,248,22,95,23,196,2,27,248,22,104, -23,197,1,27,249,22,155,14,2,34,23,196,2,28,23,193,2,87,94,23,194, -1,249,22,70,248,22,95,23,196,2,27,248,22,104,23,197,1,27,249,22,155, -14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,70,248,22,95, -23,196,2,248,2,45,248,22,104,23,197,1,248,22,80,194,248,22,80,194,248, -22,80,194,32,47,89,162,44,37,52,2,24,222,33,48,28,248,22,78,248,22, -72,23,195,2,249,22,7,9,248,22,71,195,91,159,38,11,90,161,38,36,11, -27,248,22,72,196,28,248,22,78,248,22,72,23,195,2,249,22,7,9,248,22, -71,195,91,159,38,11,90,161,38,36,11,248,2,47,248,22,72,196,249,22,7, -249,22,70,248,22,71,199,196,195,249,22,7,249,22,70,248,22,71,199,196,195, -32,49,89,162,8,44,37,55,2,24,222,33,50,27,249,22,155,14,2,34,23, -196,2,28,23,193,2,87,94,23,194,1,249,22,70,248,22,95,23,196,2,27, -248,22,104,23,197,1,27,249,22,155,14,2,34,23,196,2,28,23,193,2,87, -94,23,194,1,249,22,70,248,22,95,23,196,2,27,248,22,104,23,197,1,27, -249,22,155,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,70, -248,22,95,23,196,2,248,2,49,248,22,104,23,197,1,248,22,80,194,248,22, -80,194,248,22,80,194,28,249,22,175,6,194,6,1,1,46,2,21,28,249,22, -175,6,194,6,2,2,46,46,62,117,112,192,32,52,89,162,44,37,52,2,24, -222,33,53,28,248,22,78,248,22,72,23,195,2,249,22,7,9,248,22,71,195, -91,159,38,11,90,161,38,36,11,27,248,22,72,196,28,248,22,78,248,22,72, -23,195,2,249,22,7,9,248,22,71,195,91,159,38,11,90,161,38,36,11,248, -2,52,248,22,72,196,249,22,7,249,22,70,248,22,71,199,196,195,249,22,7, -249,22,70,248,22,71,199,196,195,32,54,89,162,8,44,37,55,2,24,222,33, -55,27,249,22,155,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249, -22,70,248,22,95,23,196,2,27,248,22,104,23,197,1,27,249,22,155,14,2, -34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,70,248,22,95,23,196, -2,27,248,22,104,23,197,1,27,249,22,155,14,2,34,23,196,2,28,23,193, -2,87,94,23,194,1,249,22,70,248,22,95,23,196,2,248,2,54,248,22,104, -23,197,1,248,22,80,194,248,22,80,194,248,22,80,194,32,56,89,162,8,44, -37,55,2,24,222,33,57,27,249,22,155,14,2,34,23,196,2,28,23,193,2, -87,94,23,194,1,249,22,70,248,22,95,23,196,2,27,248,22,104,23,197,1, -27,249,22,155,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249,22, -70,248,22,95,23,196,2,27,248,22,104,23,197,1,27,249,22,155,14,2,34, -23,196,2,28,23,193,2,87,94,23,194,1,249,22,70,248,22,95,23,196,2, -248,2,56,248,22,104,23,197,1,248,22,80,194,248,22,80,194,248,22,80,194, -27,248,2,56,23,195,1,192,28,249,22,177,8,248,22,72,23,200,2,23,197, -1,28,249,22,175,8,248,22,71,23,200,2,23,196,1,251,22,142,9,2,17, +197,28,24,193,2,248,24,194,1,195,87,94,23,193,1,12,27,27,250,22,146, +2,80,159,42,43,38,248,22,176,14,247,22,149,12,11,28,23,193,2,192,87, +94,23,193,1,27,247,22,130,2,87,94,250,22,144,2,80,159,43,43,38,248, +22,176,14,247,22,149,12,195,192,250,22,144,2,195,198,66,97,116,116,97,99, +104,251,211,197,198,199,10,28,192,250,22,145,9,11,196,195,248,22,143,9,194, +32,43,89,162,44,37,52,2,24,222,33,44,28,248,22,79,248,22,73,23,195, +2,249,22,7,9,248,22,72,195,91,159,38,11,90,161,38,36,11,27,248,22, +73,196,28,248,22,79,248,22,73,23,195,2,249,22,7,9,248,22,72,195,91, +159,38,11,90,161,38,36,11,248,2,43,248,22,73,196,249,22,7,249,22,71, +248,22,72,199,196,195,249,22,7,249,22,71,248,22,72,199,196,195,32,45,89, +162,8,44,37,55,2,24,222,33,46,27,249,22,156,14,2,34,23,196,2,28, +23,193,2,87,94,23,194,1,249,22,71,248,22,96,23,196,2,27,248,22,105, +23,197,1,27,249,22,156,14,2,34,23,196,2,28,23,193,2,87,94,23,194, +1,249,22,71,248,22,96,23,196,2,27,248,22,105,23,197,1,27,249,22,156, +14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,71,248,22,96, +23,196,2,248,2,45,248,22,105,23,197,1,248,22,81,194,248,22,81,194,248, +22,81,194,32,47,89,162,44,37,52,2,24,222,33,48,28,248,22,79,248,22, +73,23,195,2,249,22,7,9,248,22,72,195,91,159,38,11,90,161,38,36,11, +27,248,22,73,196,28,248,22,79,248,22,73,23,195,2,249,22,7,9,248,22, +72,195,91,159,38,11,90,161,38,36,11,248,2,47,248,22,73,196,249,22,7, +249,22,71,248,22,72,199,196,195,249,22,7,249,22,71,248,22,72,199,196,195, +32,49,89,162,8,44,37,55,2,24,222,33,50,27,249,22,156,14,2,34,23, +196,2,28,23,193,2,87,94,23,194,1,249,22,71,248,22,96,23,196,2,27, +248,22,105,23,197,1,27,249,22,156,14,2,34,23,196,2,28,23,193,2,87, +94,23,194,1,249,22,71,248,22,96,23,196,2,27,248,22,105,23,197,1,27, +249,22,156,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,71, +248,22,96,23,196,2,248,2,49,248,22,105,23,197,1,248,22,81,194,248,22, +81,194,248,22,81,194,28,249,22,176,6,194,6,1,1,46,2,21,28,249,22, +176,6,194,6,2,2,46,46,62,117,112,192,32,52,89,162,44,37,52,2,24, +222,33,53,28,248,22,79,248,22,73,23,195,2,249,22,7,9,248,22,72,195, +91,159,38,11,90,161,38,36,11,27,248,22,73,196,28,248,22,79,248,22,73, +23,195,2,249,22,7,9,248,22,72,195,91,159,38,11,90,161,38,36,11,248, +2,52,248,22,73,196,249,22,7,249,22,71,248,22,72,199,196,195,249,22,7, +249,22,71,248,22,72,199,196,195,32,54,89,162,8,44,37,55,2,24,222,33, +55,27,249,22,156,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249, +22,71,248,22,96,23,196,2,27,248,22,105,23,197,1,27,249,22,156,14,2, +34,23,196,2,28,23,193,2,87,94,23,194,1,249,22,71,248,22,96,23,196, +2,27,248,22,105,23,197,1,27,249,22,156,14,2,34,23,196,2,28,23,193, +2,87,94,23,194,1,249,22,71,248,22,96,23,196,2,248,2,54,248,22,105, +23,197,1,248,22,81,194,248,22,81,194,248,22,81,194,32,56,89,162,8,44, +37,55,2,24,222,33,57,27,249,22,156,14,2,34,23,196,2,28,23,193,2, +87,94,23,194,1,249,22,71,248,22,96,23,196,2,27,248,22,105,23,197,1, +27,249,22,156,14,2,34,23,196,2,28,23,193,2,87,94,23,194,1,249,22, +71,248,22,96,23,196,2,27,248,22,105,23,197,1,27,249,22,156,14,2,34, +23,196,2,28,23,193,2,87,94,23,194,1,249,22,71,248,22,96,23,196,2, +248,2,56,248,22,105,23,197,1,248,22,81,194,248,22,81,194,248,22,81,194, +27,248,2,56,23,195,1,192,28,249,22,178,8,248,22,73,23,200,2,23,197, +1,28,249,22,176,8,248,22,72,23,200,2,23,196,1,251,22,143,9,2,17, 6,26,26,99,121,99,108,101,32,105,110,32,108,111,97,100,105,110,103,32,97, -116,32,126,101,58,32,126,101,23,200,1,249,22,2,22,72,248,22,85,249,22, -70,23,206,1,23,202,1,12,12,247,192,20,14,159,80,159,40,45,38,249,22, -70,248,22,175,14,247,22,148,12,23,197,1,20,14,159,80,159,40,40,38,250, -80,159,43,41,38,249,22,27,11,80,159,45,40,38,22,161,4,23,196,1,249, -247,22,136,5,23,198,1,248,22,58,248,22,172,13,23,198,1,87,94,28,28, -248,22,168,13,23,196,2,10,248,22,187,4,23,196,2,12,28,23,197,2,250, -22,144,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,145,9,2,17,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,68,23,196, -2,249,22,175,8,248,22,71,23,198,2,2,3,11,248,22,180,4,248,22,95, -196,28,28,248,22,68,23,196,2,249,22,175,8,248,22,71,23,198,2,66,112, +116,32,126,101,58,32,126,101,23,200,1,249,22,2,22,73,248,22,86,249,22, +71,23,206,1,23,202,1,12,12,247,192,20,14,159,80,159,40,45,38,249,22, +71,248,22,176,14,247,22,149,12,23,197,1,20,14,159,80,159,40,40,38,250, +80,159,43,41,38,249,22,27,11,80,159,45,40,38,22,162,4,23,196,1,249, +247,22,137,5,23,198,1,248,22,59,248,22,173,13,23,198,1,87,94,28,28, +248,22,169,13,23,196,2,10,248,22,188,4,23,196,2,12,28,23,197,2,250, +22,145,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,146,9,2,17,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,69,23,196, +2,249,22,176,8,248,22,72,23,198,2,2,3,11,248,22,181,4,248,22,96, +196,28,28,248,22,69,23,196,2,249,22,176,8,248,22,72,23,198,2,66,112, 108,97,110,101,116,11,87,94,28,207,12,20,14,159,80,159,37,52,38,80,158, -37,50,90,161,37,36,10,249,22,162,4,21,94,2,25,6,18,18,112,108,97, +37,50,90,161,37,36,10,249,22,163,4,21,94,2,25,6,18,18,112,108,97, 110,101,116,47,114,101,115,111,108,118,101,114,46,115,115,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,87,94,23,193,1,27,89,162, 8,44,37,46,79,115,104,111,119,45,99,111,108,108,101,99,116,105,111,110,45, -101,114,114,223,5,33,42,27,28,248,22,55,23,198,2,27,250,22,145,2,80, -159,43,44,38,249,22,70,23,203,2,247,22,146,14,11,28,23,193,2,192,87, -94,23,193,1,91,159,38,11,90,161,38,36,11,27,248,22,61,23,202,2,248, +101,114,114,223,5,33,42,27,28,248,22,56,23,198,2,27,250,22,146,2,80, +159,43,44,38,249,22,71,23,203,2,247,22,147,14,11,28,23,193,2,192,87, +94,23,193,1,91,159,38,11,90,161,38,36,11,27,248,22,62,23,202,2,248, 2,43,248,2,45,23,195,1,27,251,80,159,47,53,38,2,17,23,202,1,28, -248,22,78,23,199,2,23,199,2,248,22,71,23,199,2,28,248,22,78,23,199, -2,9,248,22,72,23,199,2,249,22,186,13,23,195,1,28,248,22,78,23,197, -1,87,94,23,197,1,6,7,7,109,97,105,110,46,115,115,249,22,128,7,23, -199,1,6,3,3,46,115,115,28,248,22,169,6,23,198,2,87,94,23,194,1, -27,27,28,23,200,2,28,249,22,175,8,23,202,2,80,158,43,47,80,158,41, -48,27,248,22,181,4,23,202,2,28,248,22,168,13,23,194,2,91,159,39,11, -90,161,39,36,11,248,22,189,13,23,197,1,87,95,83,160,38,11,80,158,45, +248,22,79,23,199,2,23,199,2,248,22,72,23,199,2,28,248,22,79,23,199, +2,9,248,22,73,23,199,2,249,22,187,13,23,195,1,28,248,22,79,23,197, +1,87,94,23,197,1,6,7,7,109,97,105,110,46,115,115,249,22,129,7,23, +199,1,6,3,3,46,115,115,28,248,22,170,6,23,198,2,87,94,23,194,1, +27,27,28,23,200,2,28,249,22,176,8,23,202,2,80,158,43,47,80,158,41, +48,27,248,22,182,4,23,202,2,28,248,22,169,13,23,194,2,91,159,39,11, +90,161,39,36,11,248,22,190,13,23,197,1,87,95,83,160,38,11,80,158,45, 47,23,204,2,83,160,38,11,80,158,45,48,192,192,11,11,28,23,193,2,192, -87,94,23,193,1,27,247,22,137,5,28,23,193,2,192,87,94,23,193,1,247, -22,145,14,27,250,22,145,2,80,159,44,44,38,249,22,70,23,204,2,23,199, +87,94,23,193,1,27,247,22,138,5,28,23,193,2,192,87,94,23,193,1,247, +22,146,14,27,250,22,146,2,80,159,44,44,38,249,22,71,23,204,2,23,199, 2,11,28,23,193,2,192,87,94,23,193,1,91,159,38,11,90,161,38,36,11, -248,2,47,248,2,49,23,203,2,250,22,1,22,186,13,23,199,1,249,22,84, -249,22,2,32,0,89,162,8,44,37,44,9,222,33,51,23,200,1,248,22,80, -23,200,1,28,248,22,168,13,23,198,2,87,94,23,194,1,28,248,22,191,13, -23,198,2,23,197,2,248,22,80,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,175, -8,248,22,71,23,200,2,2,25,27,250,22,145,2,80,159,43,44,38,249,22, -70,23,203,2,247,22,146,14,11,28,23,193,2,192,87,94,23,193,1,91,159, -39,11,90,161,38,36,11,27,248,22,95,23,203,2,248,2,52,248,2,54,23, -195,1,90,161,37,38,11,28,248,22,78,248,22,97,23,203,2,28,248,22,78, -23,194,2,249,22,157,14,0,8,35,114,120,34,91,46,93,34,23,196,2,11, -10,27,27,28,23,197,2,249,22,84,28,248,22,78,248,22,97,23,207,2,21, -93,6,5,5,109,122,108,105,98,249,22,1,22,84,249,22,2,32,0,89,162, -8,44,37,44,9,222,33,58,248,22,97,23,210,2,23,197,2,28,248,22,78, -23,196,2,248,22,80,23,197,2,23,195,2,251,80,159,49,53,38,2,17,23, -204,1,248,22,71,23,198,2,248,22,72,23,198,1,249,22,186,13,23,195,1, -28,23,198,1,87,94,23,196,1,23,197,1,28,248,22,78,23,197,1,87,94, -23,197,1,6,7,7,109,97,105,110,46,115,115,28,249,22,157,14,0,8,35, -114,120,34,91,46,93,34,23,199,2,23,197,1,249,22,128,7,23,199,1,6, -3,3,46,115,115,28,249,22,175,8,248,22,71,23,200,2,64,102,105,108,101, -249,22,129,14,248,22,133,14,248,22,95,23,201,2,27,28,23,201,2,28,249, -22,175,8,23,203,2,80,158,44,47,80,158,42,48,27,248,22,181,4,23,203, -2,28,248,22,168,13,23,194,2,91,159,39,11,90,161,39,36,11,248,22,189, +248,2,47,248,2,49,23,203,2,250,22,1,22,187,13,23,199,1,249,22,85, +249,22,2,32,0,89,162,8,44,37,44,9,222,33,51,23,200,1,248,22,81, +23,200,1,28,248,22,169,13,23,198,2,87,94,23,194,1,28,248,22,128,14, +23,198,2,23,197,2,248,22,81,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,176, +8,248,22,72,23,200,2,2,25,27,250,22,146,2,80,159,43,44,38,249,22, +71,23,203,2,247,22,147,14,11,28,23,193,2,192,87,94,23,193,1,91,159, +39,11,90,161,38,36,11,27,248,22,96,23,203,2,248,2,52,248,2,54,23, +195,1,90,161,37,38,11,28,248,22,79,248,22,98,23,203,2,28,248,22,79, +23,194,2,249,22,158,14,0,8,35,114,120,34,91,46,93,34,23,196,2,11, +10,27,27,28,23,197,2,249,22,85,28,248,22,79,248,22,98,23,207,2,21, +93,6,5,5,109,122,108,105,98,249,22,1,22,85,249,22,2,32,0,89,162, +8,44,37,44,9,222,33,58,248,22,98,23,210,2,23,197,2,28,248,22,79, +23,196,2,248,22,81,23,197,2,23,195,2,251,80,159,49,53,38,2,17,23, +204,1,248,22,72,23,198,2,248,22,73,23,198,1,249,22,187,13,23,195,1, +28,23,198,1,87,94,23,196,1,23,197,1,28,248,22,79,23,197,1,87,94, +23,197,1,6,7,7,109,97,105,110,46,115,115,28,249,22,158,14,0,8,35, +114,120,34,91,46,93,34,23,199,2,23,197,1,249,22,129,7,23,199,1,6, +3,3,46,115,115,28,249,22,176,8,248,22,72,23,200,2,64,102,105,108,101, +249,22,130,14,248,22,134,14,248,22,96,23,201,2,27,28,23,201,2,28,249, +22,176,8,23,203,2,80,158,44,47,80,158,42,48,27,248,22,182,4,23,203, +2,28,248,22,169,13,23,194,2,91,159,39,11,90,161,39,36,11,248,22,190, 13,23,197,1,87,95,83,160,38,11,80,158,46,47,23,205,2,83,160,38,11, 80,158,46,48,192,192,11,11,28,23,193,2,192,87,94,23,193,1,27,247,22, -137,5,28,23,193,2,192,87,94,23,193,1,247,22,145,14,12,87,94,28,28, -248,22,168,13,23,194,2,10,248,22,191,7,23,194,2,87,94,23,199,1,12, -28,23,199,2,250,22,144,9,67,114,101,113,117,105,114,101,249,22,153,7,6, +138,5,28,23,193,2,192,87,94,23,193,1,247,22,146,14,12,87,94,28,28, +248,22,169,13,23,194,2,10,248,22,128,8,23,194,2,87,94,23,199,1,12, +28,23,199,2,250,22,145,9,67,114,101,113,117,105,114,101,249,22,154,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,71,23,199,2,6,0,0,23,202,1,87,94,23,199,1,250,22, -145,9,2,17,249,22,153,7,6,13,13,109,111,100,117,108,101,32,112,97,116, -104,126,97,28,23,198,2,248,22,71,23,199,2,6,0,0,23,200,2,27,28, -248,22,191,7,23,195,2,249,22,132,8,23,196,2,36,249,22,131,14,248,22, -132,14,23,197,2,11,27,28,248,22,191,7,23,196,2,249,22,132,8,23,197, +198,2,248,22,72,23,199,2,6,0,0,23,202,1,87,94,23,199,1,250,22, +146,9,2,17,249,22,154,7,6,13,13,109,111,100,117,108,101,32,112,97,116, +104,126,97,28,23,198,2,248,22,72,23,199,2,6,0,0,23,200,2,27,28, +248,22,128,8,23,195,2,249,22,133,8,23,196,2,36,249,22,132,14,248,22, +133,14,23,197,2,11,27,28,248,22,128,8,23,196,2,249,22,133,8,23,197, 2,37,248,80,159,42,54,38,23,195,2,91,159,39,11,90,161,39,36,11,28, -248,22,191,7,23,199,2,250,22,7,2,26,249,22,132,8,23,203,2,38,2, -26,248,22,189,13,23,198,2,87,95,23,195,1,23,193,1,27,28,248,22,191, -7,23,200,2,249,22,132,8,23,201,2,39,249,80,159,47,55,38,23,197,2, -5,0,27,28,248,22,191,7,23,201,2,249,22,132,8,23,202,2,40,248,22, -180,4,23,200,2,27,27,250,22,145,2,80,159,51,43,38,248,22,175,14,247, -22,148,12,11,28,23,193,2,192,87,94,23,193,1,27,247,22,129,2,87,94, -250,22,143,2,80,159,52,43,38,248,22,175,14,247,22,148,12,195,192,87,95, -28,23,208,1,27,250,22,145,2,23,197,2,197,11,28,23,193,1,12,87,95, +248,22,128,8,23,199,2,250,22,7,2,26,249,22,133,8,23,203,2,38,2, +26,248,22,190,13,23,198,2,87,95,23,195,1,23,193,1,27,28,248,22,128, +8,23,200,2,249,22,133,8,23,201,2,39,249,80,159,47,55,38,23,197,2, +5,0,27,28,248,22,128,8,23,201,2,249,22,133,8,23,202,2,40,248,22, +181,4,23,200,2,27,27,250,22,146,2,80,159,51,43,38,248,22,176,14,247, +22,149,12,11,28,23,193,2,192,87,94,23,193,1,27,247,22,130,2,87,94, +250,22,144,2,80,159,52,43,38,248,22,176,14,247,22,149,12,195,192,87,95, +28,23,208,1,27,250,22,146,2,23,197,2,197,11,28,23,193,1,12,87,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,175,14,247, -22,148,12,249,22,3,83,158,40,20,100,94,89,162,8,44,37,55,9,226,12, +25,248,22,23,23,197,2,80,159,53,45,38,23,196,1,27,248,22,176,14,247, +22,149,12,249,22,3,83,158,40,20,100,94,89,162,8,44,37,55,9,226,12, 11,2,3,33,59,23,195,1,23,196,1,248,28,248,22,17,80,159,50,46,38, 32,0,89,162,44,37,42,9,222,33,60,80,159,49,59,37,89,162,44,36,51, -9,227,13,9,8,4,3,33,61,250,22,143,2,23,197,1,197,10,12,28,28, -248,22,191,7,23,202,1,11,28,248,22,169,6,23,206,2,10,28,248,22,55, -23,206,2,10,28,248,22,68,23,206,2,249,22,175,8,248,22,71,23,208,2, -2,25,11,250,22,143,2,80,159,50,44,38,28,248,22,169,6,23,209,2,249, -22,70,23,210,1,27,28,23,212,2,28,249,22,175,8,23,214,2,80,158,55, -47,87,94,23,212,1,80,158,53,48,27,248,22,181,4,23,214,2,28,248,22, -168,13,23,194,2,91,159,39,11,90,161,39,36,11,248,22,189,13,23,197,1, +9,227,13,9,8,4,3,33,61,250,22,144,2,23,197,1,197,10,12,28,28, +248,22,128,8,23,202,1,11,28,248,22,170,6,23,206,2,10,28,248,22,56, +23,206,2,10,28,248,22,69,23,206,2,249,22,176,8,248,22,72,23,208,2, +2,25,11,250,22,144,2,80,159,50,44,38,28,248,22,170,6,23,209,2,249, +22,71,23,210,1,27,28,23,212,2,28,249,22,176,8,23,214,2,80,158,55, +47,87,94,23,212,1,80,158,53,48,27,248,22,182,4,23,214,2,28,248,22, +169,13,23,194,2,91,159,39,11,90,161,39,36,11,248,22,190,13,23,197,1, 87,95,83,160,38,11,80,158,57,47,23,23,83,160,38,11,80,158,57,48,192, -192,11,11,28,23,193,2,192,87,94,23,193,1,27,247,22,137,5,28,23,193, -2,192,87,94,23,193,1,247,22,145,14,249,22,70,23,210,1,247,22,146,14, -252,22,129,8,23,208,1,23,207,1,23,205,1,23,203,1,201,12,193,87,96, +192,11,11,28,23,193,2,192,87,94,23,193,1,27,247,22,138,5,28,23,193, +2,192,87,94,23,193,1,247,22,146,14,249,22,71,23,210,1,247,22,147,14, +252,22,130,8,23,208,1,23,207,1,23,205,1,23,203,1,201,12,193,87,96, 83,160,38,11,80,158,36,50,248,80,159,37,58,38,249,22,27,11,80,159,39, -52,38,248,22,160,4,80,159,37,51,38,248,22,136,5,80,159,37,37,37,248, -22,139,13,80,159,37,42,37,83,160,38,11,80,158,36,50,248,80,159,37,58, +52,38,248,22,161,4,80,159,37,51,38,248,22,137,5,80,159,37,37,37,248, +22,140,13,80,159,37,42,37,83,160,38,11,80,158,36,50,248,80,159,37,58, 38,249,22,27,11,80,159,39,52,38,159,36,20,105,159,36,16,1,11,16,0, 83,158,42,20,103,144,66,35,37,98,111,111,116,29,11,11,11,11,11,10,38, 80,158,36,36,20,105,159,37,16,23,2,1,2,2,30,2,4,72,112,97,116, @@ -669,12 +669,12 @@ 39,36,11,11,11,16,2,2,19,2,20,16,2,11,11,16,2,2,19,2,20, 38,38,37,11,11,11,16,0,16,0,16,0,36,36,11,11,11,11,16,0,16, 0,16,0,36,36,16,0,16,15,83,158,36,16,2,89,162,44,37,45,9,223, -0,33,27,80,159,36,59,37,83,158,36,16,2,248,22,188,7,69,115,111,45, +0,33,27,80,159,36,59,37,83,158,36,16,2,248,22,189,7,69,115,111,45, 115,117,102,102,105,120,80,159,36,36,37,83,158,36,16,2,89,162,44,38,8, 24,2,2,223,0,33,33,80,159,36,37,37,83,158,36,16,2,32,0,89,162, -8,44,37,42,2,8,222,192,80,159,36,42,37,83,158,36,16,2,247,22,132, -2,80,159,36,43,37,83,158,36,16,2,247,22,131,2,80,159,36,44,37,83, -158,36,16,2,247,22,66,80,159,36,45,37,83,158,36,16,2,248,22,18,74, +8,44,37,42,2,8,222,192,80,159,36,42,37,83,158,36,16,2,247,22,133, +2,80,159,36,43,37,83,158,36,16,2,247,22,132,2,80,159,36,44,37,83, +158,36,16,2,247,22,67,80,159,36,45,37,83,158,36,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,83,158, 36,16,2,11,80,158,36,47,83,158,36,16,2,11,80,158,36,48,83,158,36, 16,2,32,0,89,162,44,38,8,25,2,15,222,33,39,80,159,36,49,37,83, diff --git a/src/mzscheme/src/fun.c b/src/mzscheme/src/fun.c index 6b8221c809..bdb8ddc437 100644 --- a/src/mzscheme/src/fun.c +++ b/src/mzscheme/src/fun.c @@ -178,6 +178,7 @@ static Scheme_Object *call_with_values(int argc, Scheme_Object *argv[]); Scheme_Object *scheme_values(int argc, Scheme_Object *argv[]); static Scheme_Object *current_print(int argc, Scheme_Object **argv); static Scheme_Object *current_prompt_read(int, Scheme_Object **); +static Scheme_Object *current_read(int, Scheme_Object **); static Scheme_Object *write_compiled_closure(Scheme_Object *obj); static Scheme_Object *read_compiled_closure(Scheme_Object *obj); @@ -546,6 +547,11 @@ scheme_init_fun (Scheme_Env *env) "current-prompt-read", MZCONFIG_PROMPT_READ_HANDLER), env); + scheme_add_global_constant("current-read-interaction", + scheme_register_parameter(current_read, + "current-read-interaction", + MZCONFIG_READ_HANDLER), + env); scheme_install_type_writer(scheme_unclosed_procedure_type, write_compiled_closure); @@ -8859,6 +8865,15 @@ current_prompt_read(int argc, Scheme_Object **argv) 0, NULL, NULL, 0); } +static Scheme_Object * +current_read(int argc, Scheme_Object **argv) +{ + return scheme_param_config("current-read-interaction", + scheme_make_integer(MZCONFIG_READ_HANDLER), + argc, argv, + 2, NULL, NULL, 0); +} + Scheme_Object * scheme_default_print_handler(int argc, Scheme_Object *argv[]) { @@ -8885,11 +8900,8 @@ Scheme_Object * scheme_default_prompt_read_handler(int argc, Scheme_Object *argv[]) { Scheme_Config *config; - Scheme_Object *port; - Scheme_Object *inport; - Scheme_Object *name; - Scheme_Object *stx; - Scheme_Cont_Frame_Data cframe; + Scheme_Object *port, *reader; + Scheme_Object *inport, *name, *a[2]; config = scheme_current_config(); port = scheme_get_param(config, MZCONFIG_OUTPUT_PORT); @@ -8898,11 +8910,36 @@ scheme_default_prompt_read_handler(int argc, Scheme_Object *argv[]) scheme_write_byte_string("> ", 2, port); scheme_flush_output(port); - name = ((Scheme_Input_Port *)inport)->name; - if (inport == scheme_orig_stdin_port) scheme_flush_orig_outputs(); + name = (Scheme_Object *)scheme_port_record(inport); + name = ((Scheme_Input_Port *)name)->name; + + reader = scheme_get_param(config, MZCONFIG_READ_HANDLER); + + a[0] = name; + a[1] = inport; + return _scheme_apply(reader, 2, a); +} + +Scheme_Object * +scheme_default_read_handler(int argc, Scheme_Object *argv[]) +{ + Scheme_Config *config; + Scheme_Object *name = argv[0]; + Scheme_Object *inport = argv[1]; + Scheme_Object *stx; + Scheme_Cont_Frame_Data cframe; + + if (!SCHEME_INPORTP(inport)) + scheme_wrong_type("default-read-interaction-handler", + "input port", + 1, + argc, + argv); + + config = scheme_current_config(); config = scheme_extend_config(config, MZCONFIG_CAN_READ_READER, scheme_true); scheme_push_continuation_frame(&cframe); diff --git a/src/mzscheme/src/schminc.h b/src/mzscheme/src/schminc.h index be24448358..5270588a38 100644 --- a/src/mzscheme/src/schminc.h +++ b/src/mzscheme/src/schminc.h @@ -13,7 +13,7 @@ #define USE_COMPILED_STARTUP 1 -#define EXPECTED_PRIM_COUNT 980 +#define EXPECTED_PRIM_COUNT 981 #define EXPECTED_UNSAFE_COUNT 65 #define EXPECTED_FLFXNUM_COUNT 53 diff --git a/src/mzscheme/src/schpriv.h b/src/mzscheme/src/schpriv.h index 09ce487800..8aa474cc19 100644 --- a/src/mzscheme/src/schpriv.h +++ b/src/mzscheme/src/schpriv.h @@ -1930,6 +1930,7 @@ Scheme_Object *scheme_default_eval_handler(int, Scheme_Object *[]); Scheme_Object *scheme_default_compile_handler(int, Scheme_Object *[]); Scheme_Object *scheme_default_print_handler(int, Scheme_Object *[]); Scheme_Object *scheme_default_prompt_read_handler(int, Scheme_Object *[]); +Scheme_Object *scheme_default_read_handler(int argc, Scheme_Object *[]); extern Scheme_Object *scheme_default_global_print_handler; diff --git a/src/mzscheme/src/schvers.h b/src/mzscheme/src/schvers.h index 4c3f6ce609..abdea6a6b0 100644 --- a/src/mzscheme/src/schvers.h +++ b/src/mzscheme/src/schvers.h @@ -13,12 +13,12 @@ consistently.) */ -#define MZSCHEME_VERSION "4.2.5.6" +#define MZSCHEME_VERSION "4.2.5.7" #define MZSCHEME_VERSION_X 4 #define MZSCHEME_VERSION_Y 2 #define MZSCHEME_VERSION_Z 5 -#define MZSCHEME_VERSION_W 6 +#define MZSCHEME_VERSION_W 7 #define MZSCHEME_VERSION_MAJOR ((MZSCHEME_VERSION_X * 100) + MZSCHEME_VERSION_Y) #define MZSCHEME_VERSION_MINOR ((MZSCHEME_VERSION_Z * 1000) + MZSCHEME_VERSION_W) diff --git a/src/mzscheme/src/thread.c b/src/mzscheme/src/thread.c index 108c7cf79d..dc5f3e3c1a 100644 --- a/src/mzscheme/src/thread.c +++ b/src/mzscheme/src/thread.c @@ -6699,17 +6699,22 @@ static void make_initial_config(Scheme_Thread *p) } { - Scheme_Object *ph, *prh; + Scheme_Object *ph; ph = scheme_make_prim_w_arity(scheme_default_print_handler, "default-print-handler", 1, 1); init_param(cells, paramz, MZCONFIG_PRINT_HANDLER, ph); - prh = scheme_make_prim_w_arity(scheme_default_prompt_read_handler, - "default-prompt-read-handler", - 0, 0); - init_param(cells, paramz, MZCONFIG_PROMPT_READ_HANDLER, prh); + ph = scheme_make_prim_w_arity(scheme_default_prompt_read_handler, + "default-prompt-read-handler", + 0, 0); + init_param(cells, paramz, MZCONFIG_PROMPT_READ_HANDLER, ph); + + ph = scheme_make_prim_w_arity(scheme_default_read_handler, + "default-read-interaction-handler", + 2, 2); + init_param(cells, paramz, MZCONFIG_READ_HANDLER, ph); } init_param(cells, paramz, MZCONFIG_PORT_COUNT_LINES, scheme_false);