blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
171
content_id
stringlengths
40
40
detected_licenses
listlengths
0
8
license_type
stringclasses
2 values
repo_name
stringlengths
6
82
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
13 values
visit_date
timestamp[ns]
revision_date
timestamp[ns]
committer_date
timestamp[ns]
github_id
int64
1.59k
594M
star_events_count
int64
0
77.1k
fork_events_count
int64
0
33.7k
gha_license_id
stringclasses
12 values
gha_event_created_at
timestamp[ns]
gha_created_at
timestamp[ns]
gha_language
stringclasses
46 values
src_encoding
stringclasses
14 values
language
stringclasses
2 values
is_vendor
bool
2 classes
is_generated
bool
1 class
length_bytes
int64
4
7.87M
extension
stringclasses
101 values
filename
stringlengths
2
149
content
stringlengths
4
7.87M
has_macro_def
bool
2 classes
537d97c7e148f189fcb03c251430517c52baa0a0
25a6efe766d07c52c1994585af7d7f347553bf54
/gui-doc/scribblings/gui/style-delta-class.scrbl
c408aba77e49b69957e3bb90894d8bb89e4f60e0
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
racket/gui
520ff8f4ae5704210822204aa7cd4b74dd4f3eef
d01d166149787e2d94176d3046764b35c7c0a876
refs/heads/master
2023-08-25T15:24:17.693905
2023-08-10T16:45:35
2023-08-10T16:45:35
27,413,435
72
96
NOASSERTION
2023-09-14T17:09:52
2014-12-02T03:35:22
Racket
UTF-8
Racket
false
false
18,845
scrbl
style-delta-class.scrbl
#lang scribble/doc @(require "common.rkt") @defclass/title[style-delta% object% ()]{ A @racket[style-delta%] object encapsulates a style change. The changes expressible by a delta include: @itemize[ @item{changing the font family} @item{changing the font face} @item{changing the font size to a new value} @item{enlarging the font by an additive amount} @item{enlarging the font by a multiplicative amount, etc.} @item{changing the font style (normal, @italic{italic}, or @slant{slant})} @item{toggling the font style} @item{changing the font to @italic{italic} if it is currently @slant{slant}, etc.} @item{changing the font weight, etc.} @item{changing the underline, etc.} @item{changing the vertical alignment, etc.} @item{changing the foreground color} @item{dimming or brightening the foreground color, etc.} @item{changing the background color, etc.} @item{changing text backing transparency} ] The @method[style-delta% set-delta] method is convenient for most style delta settings; it takes a high-level delta specification and sets the internal delta information. To take full advantage of a style delta, it is necessary to understand the internal on/off settings that can be manipulated through methods such as @method[style-delta% set-weight-on]. For example, the font weight change is specified through the @racket[weight-on] and @racket[weight-off] internal settings. Roughly, @racket[weight-on] turns on a weight setting when it is not present and @racket[weight-off] turns off a weight setting when it is present. These two interact precisely in the following way: @itemize[ @item{If both @racket[weight-on] and @racket[weight-off] are set to @racket['base], then the font weight is not changed.} @item{If @racket[weight-on] is not @racket['base], then the weight is set to @racket[weight-on].} @item{If @racket[weight-off] is not @racket['base], then the weight will be set back to @racket['normal] when the base style has the weight @racket[weight-off].} @item{If both @racket[weight-on] and @racket[weight-off] are set to the same value, then the weight is toggled with respect to that value: if the base style has the weight @racket[weight-on], then weight is changed to @racket['normal]; if the base style has a different weight, it is changed to @racket[weight-on].} @item{If both @racket[weight-on] and @racket[weight-off] are set, but to different values, then the weight is changed to @racket[weight-on] only when the base style has the weight @racket[weight-off].} ] Font styles, smoothing, underlining, and alignment work in an analogous manner. The possible values for @racket[alignment-on] and @racket[alignment-off] are: @itemize[ @item{@indexed-racket['base]} @item{@indexed-racket['top]} @item{@indexed-racket['center]} @item{@indexed-racket['bottom]} ] The possible values for @racket[style-on] and @racket[style-off] are: @itemize[ @item{@indexed-racket['base]} @item{@indexed-racket['normal]} @item{@indexed-racket['italic]} @item{@indexed-racket['slant]} ] The possible values for @racket[smoothing-on] and @racket[smoothing-off] are: @itemize[ @item{@indexed-racket['base]} @item{@indexed-racket['default]} @item{@indexed-racket['partly-smoothed]} @item{@indexed-racket['smoothed]} @item{@indexed-racket['unsmoothed]} ] The possible values for @racket[underlined-on] and @racket[underlined-off] are: @itemize[ @item{@racket[#f] (acts like @racket['base])} @item{@racket[#t]} ] The possible values for @racket[size-in-pixels-on] and @racket[size-in-pixels-off] are: @itemize[ @item{@racket[#f] (acts like @racket['base])} @item{@racket[#t]} ] The possible values for @racket[transparent-text-backing-on] and @racket[transparent-text-backing-off] are: @itemize[ @item{@racket[#f] (acts like @racket['base])} @item{@racket[#t]} ] The possible values for @racket[weight-on] and @racket[weight-off] are: @itemize[ @item{@indexed-racket['base]} @item{@indexed-racket['normal]} @item{@indexed-racket['bold]} @item{@indexed-racket['light]} ] The family and face settings in a style delta are interdependent: @itemize[ @item{When a delta's face is @racket[#f] and its family is @racket['base], then neither the face nor family are modified by the delta.} @item{When a delta's face is a string and its family is @racket['base], then only face is modified by the delta.} @item{When a delta's family is not @racket['base], then both the face and family are modified by the delta. If the delta's face is @racket[#f], then applying the delta sets a style's face to @racket[#f], so that the family setting prevails in choosing a font.} ] @defconstructor*/make[(([change-command (or/c 'change-nothing 'change-normal 'change-toggle-underline 'change-toggle-size-in-pixels 'change-normal-color 'change-bold) 'change-nothing]) ([change-command (or/c 'change-family 'change-style 'change-toggle-style 'change-weight 'change-toggle-weight 'change-smoothing 'change-toggle-smoothing 'change-alignment)] [v symbol]) ([change-command (or/c 'change-size 'change-bigger 'change-smaller)] [v byte?]) ([change-command (or/c 'change-underline 'change-size-in-pixels)] [v any/c]))]{ The initialization arguments are passed on to @method[style-delta% set-delta]. } @defmethod[(collapse [delta (is-a?/c style-delta%)]) boolean?]{ Tries to collapse into a single delta the changes that would be made by applying this delta after a given delta. If the return value is @racket[#f], then it is impossible to perform the collapse. Otherwise, the return value is @racket[#t] and this delta will contain the collapsed change specification. } @defmethod[(copy [delta (is-a?/c style-delta%)]) void?]{ Copies the given style delta's settings into this one.} @defmethod[(equal? [delta (is-a?/c style-delta%)]) boolean?]{ Returns @racket[#t] if the given delta is equivalent to this one in all contexts or @racket[#f] otherwise.} @defmethod[(get-alignment-off) (or/c 'base 'top 'center 'bottom)]{ See @racket[style-delta%].} @defmethod[(get-alignment-on) (or/c 'base 'top 'center 'bottom)]{ See @racket[style-delta%].} @defmethod[(get-background-add) (is-a?/c add-color<%>)]{ Gets the object additive color shift for the background (applied after the multiplicative factor). Call this @racket[add-color<%>] object's methods to change the style delta's additive background color shift. } @defmethod[(get-background-mult) (is-a?/c mult-color<%>)]{ Gets the multiplicative color shift for the background (applied before the additive factor). Call this @racket[mult-color<%>] object's methods to change the style delta's multiplicative background color shift. } @defmethod[(get-face) (or/c string? #f)]{ Gets the delta's font face string. If this string is @racket[#f] and the family is @indexed-racket['base] when the delta is applied to a style, the style's face and family are not changed. However, if the face string is @racket[#f] and the family is not @indexed-racket['base], then the style's face is changed to @racket[#f]. See also @method[style-delta% get-family]. } @defmethod[(get-family) (or/c 'base 'default 'decorative 'roman 'script 'swiss 'modern 'symbol 'system)]{ Returns the delta's font family. The possible values are @itemize[ @item{@indexed-racket['base] --- no change to family} @item{@indexed-racket['default]} @item{@indexed-racket['decorative]} @item{@indexed-racket['roman]} @item{@indexed-racket['script]} @item{@indexed-racket['swiss]} @item{@indexed-racket['modern] (fixed width)} @item{@indexed-racket['symbol] (Greek letters)} @item{@indexed-racket['system] (used to draw control labels)} ] See also @method[style-delta% get-face]. } @defmethod[(get-foreground-add) (is-a?/c add-color<%>)]{ Gets the additive color shift for the foreground (applied after the multiplicative factor). Call this @racket[add-color<%>] object's methods to change the style delta's additive foreground color shift. } @defmethod[(get-foreground-mult) (is-a?/c mult-color<%>)]{ Gets the multiplicative color shift for the foreground (applied before the additive factor). Call this @racket[mult-color<%>] object's methods to change the style delta's multiplicative foreground color shift. } @defmethod[(get-size-add) byte?]{ Gets the additive font size shift (applied after the multiplicative factor).} @defmethod[(get-size-in-pixels-off) boolean?]{ See @racket[style-delta%].} @defmethod[(get-size-in-pixels-on) boolean?]{ See @racket[style-delta%].} @defmethod[(get-size-mult) real?]{ Gets the multiplicative font size shift (applied before the additive factor).} @defmethod[(get-smoothing-off) (or/c 'base 'default 'partly-smoothed 'smoothed 'unsmoothed)]{ See @racket[style-delta%]. } @defmethod[(get-smoothing-on) (or/c 'base 'default 'partly-smoothed 'smoothed 'unsmoothed)]{See @racket[style-delta%]. } @defmethod[(get-style-off) (or/c 'base 'normal 'italic 'slant)]{See @racket[style-delta%]. } @defmethod[(get-style-on) (or/c 'base 'normal 'italic 'slant)]{ See @racket[style-delta%].} @defmethod[(get-transparent-text-backing-off) boolean?]{ See @racket[style-delta%].} @defmethod[(get-transparent-text-backing-on) boolean?]{ See @racket[style-delta%].} @defmethod[(get-underlined-off) boolean?]{ See @racket[style-delta%].} @defmethod[(get-underlined-on) boolean?]{ See @racket[style-delta%].} @defmethod[(get-weight-off) (or/c 'base 'normal 'bold 'light)]{ See @racket[style-delta%].} @defmethod[(get-weight-on) (or/c 'base 'normal 'bold 'light)]{ See @racket[style-delta%].} @defmethod[(set-alignment-off [v (or/c 'base 'top 'center 'bottom)]) void?]{ See @racket[style-delta%].} @defmethod[(set-alignment-on [v (or/c 'base 'top 'center 'bottom)]) void?]{ See @racket[style-delta%].} @defmethod*[([(set-delta [change-command (or/c 'change-nothing 'change-normal 'change-toggle-underline 'change-toggle-size-in-pixels 'change-normal-color 'change-bold) 'change-nothing]) (is-a?/c style-delta%)] [(set-delta [change-command (or/c 'change-family 'change-style 'change-toggle-style 'change-weight 'change-toggle-weight 'change-smoothing 'change-toggle-smoothing 'change-alignment)] [param symbol?]) (is-a?/c style-delta%)] [(set-delta [change-command (or/c 'change-size 'change-bigger 'change-smaller)] [param byte?]) (is-a?/c style-delta%)] [(set-delta [change-command (or/c 'change-underline 'change-size-in-pixels)] [on? any/c]) (is-a?/c style-delta%)])]{ Configures the delta with high-level specifications. The return value is the delta itself. Except for @racket['change-nothing] and @racket['change-normal], the command only changes part of the delta. Thus, applying @racket['change-bold] and then @racket['change-italic] sets the delta for both the style and weight change. The @racket[change-command] argument specifies how the delta is changed; the possible values are: @itemize[ @item{@racket['change-nothing] --- reset all changes} @item{@racket['change-normal] --- turn off all styles and resizings} @item{@racket['change-toggle-underline] --- underline regions that are currently not underlined, and vice versa} @item{@racket['change-toggle-size-in-pixels] --- interpret sizes in pixels for regions that are currently interpreted in points, and vice versa} @item{@racket['change-normal-color] --- change the foreground and background to black and white, respectively} @item{@racket['change-italic] --- change the style of the font to @italic{italic}} @item{@racket['change-bold] --- change the weight of the font to @bold{bold}} @item{@racket['change-family] --- change the font family (@racket[param] is a family; see @racket[font%]); see also @method[style-delta% get-family]} @item{@racket['change-style] --- change the style of the font (@racket[param] is a style; see @racket[font%])} @item{@racket['change-toggle-style] --- toggle the style of the font (@racket[param] is a style; see @racket[font%])} @item{@racket['change-weight] --- change the weight of the font (@racket[param] is a weight; see @racket[font%])} @item{@racket['change-toggle-weight] --- toggle the weight of the font (@racket[param] is a weight; see @racket[font%])} @item{@racket['change-smoothing] --- change the smoothing of the font (@racket[param] is a smoothing; see @racket[font%])} @item{@racket['change-toggle-smoothing] --- toggle the smoothing of the font (@racket[param] is a smoothing; see @racket[font%])} @item{@racket['change-alignment] --- change the alignment (@racket[param] is an alignment; see @racket[style-delta%])} @item{@racket['change-size] --- change the size to an absolute value (@racket[param] is a size)} @item{@racket['change-bigger] --- make the text larger (@racket[param] is an additive amount)} @item{@racket['change-smaller] --- make the text smaller (@racket[param] is an additive amount)} @item{@racket['change-underline] --- set the underline status to either underlined or plain} @item{@racket['change-size-in-pixels] --- set the size interpretation to pixels or points} ] } @defmethod*[([(set-delta-background [name string?]) (is-a?/c style-delta%)] [(set-delta-background [color (is-a?/c color%)]) (is-a?/c style-delta%)])]{ Makes the delta encode a background color change to match the absolute color given; that is, it sets the multiplicative factors to @racket[0.0] in the result of @method[style-delta% get-background-mult], and it sets the additive values in the result of @method[style-delta% get-background-add] to the specified color's values. In addition, it also disables transparent text backing by setting @racket[transparent-text-backing-on] to @racket[#f] and @racket[transparent-text-backing-off] to @racket[#t]. The return value of the method is the delta itself. For the case that a string color name is supplied, see @racket[color-database<%>]. } @defmethod[(set-delta-face [name string?] [family (or/c 'base 'default 'decorative 'roman 'script 'swiss 'modern 'symbol 'system) 'default]) (is-a?/c style-delta%)]{ Like @method[style-delta% set-face], but sets the family at the same time. The return value is @this-obj[]. } @defmethod*[([(set-delta-foreground [name string?]) (is-a?/c style-delta%)] [(set-delta-foreground [color (is-a?/c color%)]) (is-a?/c style-delta%)])]{ Makes the delta encode a foreground color change to match the absolute color given; that is, it sets the multiplicative factors to @racket[0.0] in the result of @method[style-delta% get-foreground-mult], and it sets the additive values in the result of @method[style-delta% get-foreground-add] to the specified color's values. The return value of the method is the delta itself. For the case that a string color name is supplied, see @racket[color-database<%>]. } @defmethod[(set-face [v (or/c string? #f)]) void?]{See @method[style-delta% get-face]. See also @method[style-delta% set-delta-face]. } @defmethod[(set-family [v (or/c 'base 'default 'decorative 'roman 'script 'swiss 'modern 'symbol 'system)]) void?]{ Sets the delta's font family. See @method[style-delta% get-family]. } @defmethod[(set-size-add [v byte?]) void?]{ Sets the additive font size shift (applied after the multiplicative factor).} @defmethod[(set-size-in-pixels-off [v any/c]) void?]{ See @racket[style-delta%].} @defmethod[(set-size-in-pixels-on [v any/c]) void?]{ See @racket[style-delta%].} @defmethod[(set-size-mult [v real?]) void?]{ Sets the multiplicative font size shift (applied before the additive factor).} @defmethod[(set-smoothing-off [v (or/c 'base 'default 'partly-smoothed 'smoothed 'unsmoothed)]) void?]{ See @racket[style-delta%].} @defmethod[(set-smoothing-on [v (or/c 'base 'default 'partly-smoothed 'smoothed 'unsmoothed)]) void?]{ See @racket[style-delta%].} @defmethod[(set-style-off [v (or/c 'base 'normal 'italic 'slant)]) void?]{ See @racket[style-delta%].} @defmethod[(set-style-on [v (or/c 'base 'normal 'italic 'slant)]) void?]{ See @racket[style-delta%].} @defmethod[(set-transparent-text-backing-off [v any/c]) void?]{ See @racket[style-delta%].} @defmethod[(set-transparent-text-backing-on [v any/c]) void?]{ See @racket[style-delta%].} @defmethod[(set-underlined-off [v any/c]) void?]{ See @racket[style-delta%].} @defmethod[(set-underlined-on [v any/c]) void?]{ See @racket[style-delta%].} @defmethod[(set-weight-off [v (or/c 'base 'normal 'bold 'light)]) void?]{ See @racket[style-delta%].} @defmethod[(set-weight-on [v (or/c 'base 'normal 'bold 'light)]) void?]{ See @racket[style-delta%].} }
false
e8ffd573a01649801cdb4d33d8d70492d4730234
bae3e694ba6e5c656c65a9191e786ec5b59b9079
/intro/ch4.rkt
7fcd45e86fae95660d90ccbdf3c7c3d79eb60c36
[ "BSD-3-Clause-Clear" ]
permissive
newnix/racketfun
a40032127f515f94d0027530be36e1db85a83a81
7a674ca82fc1149ab05d04480613c88e9414cdad
refs/heads/master
2021-07-22T18:15:09.023520
2020-08-13T02:07:41
2020-08-13T02:07:41
206,631,395
0
0
null
null
null
null
UTF-8
Racket
false
false
57,485
rkt
ch4.rkt
;; Begin Chapter 4: Expressions and Definitions #lang racket (require "whatis.rkt") ;; Begin 4.1 (printf "Starting Chapter 4.1: Notation\n") (printf "\nA note on nomenclature:\n\tParentheses: ()\n\tBrackets: []\n\tBraces: {}\n\tChevrons: <>\n") (printf "\nThese names have existed before computing, and can greatly reduce confusion in communication\n\n") (printf "The new grammar for describing Racket expressions is as follows:\n") (printf "\t(something [id ...+] an-expr ...)\n") (printf "The \"an-expr\" portion is called a meta-variable, which has its own naming convention:\n") ;; Work on building a procedure that will print all the strings in the list ;; using the format of (printf "\t-~a\n" str) ;; I have no doubt that this could be written better, but I'm glad to have it working at this time (define (plst lst) (define (lp lst) (cond [(empty? lst) lst] [else (if (string? (first lst)) (printf "\t-~a\n" (first lst)) (printf "\n")) (if (not (empty? (rest lst))) (lp (rest lst)) (printf "\n")) ])) (if (not (empty? lst)) (lp lst) (printf "Given empty list!\n"))) ;; Could probably use keywords to make these both a single function (define (lprint lst) (define (lp lst) (cond [(empty? lst) lst] [else (if (string? (first lst)) (printf "~a" (first lst)) (printf "\n")) (if (not (empty? (rest lst))) (lp (rest lst)) (printf "\n")) ])) (if (not (empty? lst)) (lp lst) (printf "Given empty list!\n"))) (plst '("id stands in for an identifier such as \'x\' or \'spiderman\'" "keyword stands in for a keyword such as \'#:tag\'" "expr stands in for any sub form, and is evaluated as an expression" "body stands in for any sub-form; it will be parsed as a local definition or an expression." "body can parse as a definition only if it is not proceeded by an expression and the last -body must be an expression.")) (printf "A term in brackets indicates a parenthized sequence of forms, where brackets are conventionally used.\n") (printf "Brackets do not indicate optional portions of the syntax!\n") (printf "A \'...\' indicates zero or more repetitions of the preceeding form, and \'...+\' indicates one or more\n") (printf "of the preceeding datum. Otherwise, non-italicized identifiers stand for themselves.\n") (printf "So based on the above grammar, we have a few confarmant uses of (something [id ...+] an-expr ...):\n") (plst '(" (something [x])" " (something [x] (+ 1 2))" " (something [x my-favorite-martian x] (+ 1 2) #f)" )) (printf "Some syntactic-form specifications refer to meta variables that are not implicitly\n") (printf "defined nor previously defined. Such meta variables are defined after the main form,\n") (printf "using a BNF-like format for alternatives.\ne.g.:\n\t") (printf "(something-else [thing ..+] an-expr ...)\n\tthing = thing-id\n\t | thing-keyword\n\n") (printf "This states that, within (something-else ...), /thing/ is either an identifier or a keyword\n") ;; 4.2 Identifiers and Binding: ;; The context of an expression determines the meaning of identifiers that appear ;; in the expression. (printf "\nThe context of an expression determines the meaning of identifiers that appear in that expression.\n") (printf "In particular, starting a module with the language racket as in: #lang racket\n") (printf "means that, within the module, the identifiers described in this guide start with the meaning described here:") (printf "\ncons refers to a function that creates a pair, car refers to the function that\n") (printf "extracts the first element of a pair, and so on.\n") (printf "Forms like define, lambda, and let associate a meaning with one or more identifiers;\n") (printf "that is, they bind identifiers. The part of the program for which the binding applies is the scope of the binding\n") (printf "The set of bindings in effect for a given expression is the expression's environment.\nFor example:\n\n") (printf "#lang racket\n\n(define f1\n (lambda (x)\n (let ([y 5])\n (+ x y))))\n\n(f 10)\n\n") (printf "Running the above example:\n") (define f1 (lambda (x) (let ([y 5]) (+ x y)))) (printf "\t(f1 10) -> ~s\n\n" (f1 10)) (printf "the define is a binding of 'f1', the lambda has a binding for 'x', and the 'let'\n") (printf "has a binding for 'y'. The scope of the binding for 'f1' is the entire module;\n") (printf "the scope of the 'x' binding is \"(let ([y 5]) (+ x y))\"; and the scope of the 'y'\n") (printf "binding is just \"(+ x y)\". The environment of \"(+ x y)\" includes binding for\n") (printf "'y', 'x', and 'f', as well as everything in racket.\n\n") (printf "A module-level define can bind ony identifiers that aren't already defined or required\n") (printf "into the module. A local define or other binding forms, however, can give a new local\n") (printf "binding for an identifier that already has a binding; such a binding shadows the existing binding\n") (printf "EX:\n\n") ;; Define the necessary function for the example printout (define f2 (lambda (append) (define cons (append "ugly" "confusing")) (let ([append 'this-was]) (list append cons)))) ;; Replaced the tab escape characters (\t) with two spaces to better display in output (printf "(define f2\n (lambda (append)\n (define cons (append \"ugly\" \"confusing\"))\n ") (printf "(let ([append \'this-was])\n (list append cons))))\n\n(f2 list) -> ~s\n\n" (f2 list)) (printf "Similarly, a module-level define can shadow a binding from the module's language. For example\n") (printf "(define cons 1) in a racket module shadows the cons definition that is provided by racket.\n") (printf "Intentionally shadowing a language binding is rarely a good idea, especially for widely used bindings lke cons\n") (printf "but shadowing relieves a programmer from having to avoid every binding provided by the language.\n\n") ;; 4.3 Function Calls (Procedure Applications) (printf "An expression of the form: (proc-expr arg-expr ...)\n") (printf "is a function call--also known as a procedure application--when proc-expr is not an\n") (printf "identifier that is bound as a syntax transformer (such as if or define).\n") ;; 4.3.1 Evaluation Order and Arity (printf "A function call is evaluated by first evaluating the proc-expr and all the arg-exprs in order\n") (printf "(left to right). Then, if proc-expr produces a function that accepts as many arguments as \n") (printf "supplied arg-exprs, the function is called. Otherwise, an exception is raised.\n") (printf "EX:\n\n") (printf "\t(cons 1 null) -> ~s\n" (cons 1 null)) (printf "\t(+ 1 2 3) -> ~s\n" (+ 1 2 3)) (printf "\nHowever, the following would throw an arity mismatch:\n\t") (printf "(cons 1 2 3)\n") (printf "\nWhile this will throw an exception about not being a procedure:\n\t") (printf "(1 2 3)\n\n") (printf "Some functions, such as cons, accept a fixed number of arguments. Some, such as + or list,\n") (printf "accept any number of arguments. Still others accept a range of argument counts;\n") (printf "for example substring accepts either two or three arguments.\n") (printf "A functions arity is the number of arguments that it accepts.\n\n") ;; 4.3.2 Keyword Arguments (printf "4.3.2: Keyword Arguments\n") (printf "Some functions accept keyword arguments in addition to positional arguments. For\n") (printf "that case, an arg can be an arg-keyword arg-expr sequence instead of just arg-expr:\n") (printf "\t(go \"super.rkt\" #:mode \'fast)\n\n") (printf "Calls the function bound to `go` with \"super.rkt\" as a positional argument and \n") (printf "\'fast as an argument associated with the \"#:mode\" keyword. A keyword is implicitly\n") (printf "paired with the expression that follows it.\n\n") (printf "Since a keyword itself is not an expression, the following is a syntax error:\n\t") (printf "(go \"super.rkt\" #:mode #:fast)\n\n") (printf "The \"#:mode\" keyword must be followed by an expression to produce an argument value,\n") (printf "and \"#:fast\" is not an expression, it is another keyword.\n\n") (printf "The order of keyword args determines the order in which arg-exprs are evaluated, but a\n") (printf "function accepts keyword arguments independant of their position in the argument list.\n") (printf "Thus, the first example is equivalent to:\n\t(go #:mode \' \"super.rkt\")\n\n") ;; 4.3.3 The `apply` Function (printf "4.3.3: The `apply` Function\n") (printf "The syntax for function calls suppors any number of arguments, but a specific call always\n") (printf "specifies a fixed number of arguments. As a result, a function that takes a list of arguments\n") (printf "cannot directly apply a functon like `+` to all the items in a list:\n\t") (printf "(define (avg lst) ; Won't work\n\t (/ (+ lst) (length lst)))\n\n") (printf "The above results in a contract violation as the \"+\" function cannot operate on all the values of the list\n") (printf "without some other operation to only provide compatible data from the list (i.e. given a list '(1 2 3 4)\n") (printf "iterate over the values such that you're only ever comparing the numeric values in the list)") (printf "\n\t(define (avg lst) ; won't always work...\n\t") (printf " (/ (+ (list-ref lst 0) (list-ref lst 1) (list-ref lst 2))\n\t (length lst)))\n\n") (printf "This solution has an obvious flaw in that it can only fit at most 3 values in the argument list.\n") (printf "\nThe `apply` function allows us a way around this restriction, it takes a function and a list\n") (printf "argument, then applies the function to the values in the list:\n") (lprint '("\t(define (avg lst)\n\t (/ (apply + lst) (length lst)))\n\n")) (lprint '("As a convenience, the `apply` function accepts additional arguments between the function\n" "and the list. The additional arguments are effectively `cons`'d onto the argument list:\n" "\t(define (anti-sum lst)\n\t (apply - 0 lst))\n\n" "\t(anti-sum '(1 2 3)) -> -6\n")) (lprint '("The `apply` function accepts keyword arguments as well and it passes them along to the called function:\n\t" "(apply go #:mode 'fast '(\"super.rkt\"))\n\t(appy go '(\"super.rkt\") #:mode 'fast)\n\n" "Keywords that are included in `apply`'s argument list do not count as keyword arguments for the\n" "called function; instead all arguments in the list are trteated as positional arguments.\n" "To pass a list of keyword arguments to a function, use the `keyword-appy` function which accepts\n" "a function to apply and three lists. The fist two lists are in parallel, where the first list\n" "contains keywords (as sorted by `keyword<?`), and the second list containes the corresponding argument\n" "for each keyword. The third list is the positional function arguments, same as with `apply`.\n\n")) ;; 4.4 Functions (Procedures): lambda (lprint '("4.4: Functions: lamda\n" "A lambda expression creates a function. In the simplest case, a lambda expression has the form:\n\t" "(lambda (arg-id ...)\n\t body ...+)\n\n")) (lprint '("A lambda form with n `arg-ids` accepts n arguments:\n" "\t((lambda (x) x) 1) -> 1\n\n" "\t((lambda (x y) (+ x y)) 1 2) -> 3\n\n" "\t((lambda (x y) (+ x y)) 1) -> ERROR: Arity mismatch\n\n")) (lprint '("A lambda expression can also have the form:\n" "(lambda rest-id\n body ...+)\n\n" "That is, a lambda expression can have a single rest-id that is not surreounded by parentheses.\n" "The resulting function accepts any number of arguments and the arguments are put into a\n" "list bound to rest-id.\n" "For example:\n\t((lambda x x) 1 2 3) -> '(1 2 3)\n\n\t" "((lambda x x)) -> '()\n\n\t" "((lambda x (car x)) 1 2 3) -> 1\n\n")) (lprint '("Functionsn with a rest-id often use `apply` to call another function that accepts any number of arguments.\n" "Ex:\n\t(define max-mag\n\t (lambda nums\n\t (apply max (map magnitude nums))))\n\n" "\t(max 1 -2 0) -> 1\n\n\t(max-mag 1 -2 0) -> 2\n\n")) (lprint '("The lambda form also supports required arguments combined with a rest-id:\n\t" "(lambda (arg-id ..+ . rest-id)\n\t body ...+)\n\n" "The result of this form is a function that requires at lesat as many arguments as arg-ids.\n" "For example:\n\t(define max-mag\n\t (lambda (num . nums)\n\t (apply max (map magnitude (cons num nums))))\n\n" "\t(max-mag 1 -2 0) -> 2\n\t(max-mag) -> ERROR: Arity mismatch\n\n" "The last invokation fails because at least one argument is expected by the function signature.\n" "A rest-id variable is sometimes called a \"rest argument\" because it accepts the rest of the function args.\n")) ;; 4.4.2 Declaring Optional Arguments (lprint '("4.4.2: Declaring Optional Arguments:\n" "Instead of just an identifier, an argument (other than a rest argument) in a lambda form\n" "can be specified with an identifier and default value:\n\t" "(lambda gen-formals\n\t body ...+)\n\n\t" "gen-formals = (arg ...)\n\t" " | rest-id\n\t" " | (arg ...+ . rest-id)\n\n\t" " arg = arg-id\n\t" " | [arg-id default-expr]\n\n" "An argument of the form [arg-id default-expr] is optional. When the argument is not supplied by the caller\n" "the value is taken from `default-expr`. The default-expr can refer to any preceeding arg-id, and\n" "every following arg-id must have a default as well.\nFor example:\n\t" "(define greet\n\t (lambda (given [surname \"Smith\"])\n\t (string-append \"Hello, \" given \" \" surname)))\n\n" "\t(greet \"John\") -> \"Hello, John Smith\"\n\t" "(greet \"John\" \"Doe\") -> \"Hello, John Doe\n\n" "\t(define greet\n\t (lambda (given [surname (if (equal? given \"John\")\n" "\t\t\t\t\"Doe\"\n\t\t\t\t\"Smith\")])\n\t " "(string-append \"Hello, \" given \" \" surname)))\n\n" "\t(greet \"John\") - > \"Hello, John Doe\"\n\t" "(greet \"Adam\") -> \"Hello, Adam Smith\"\n\n")) ;; 4.4.3 Declaring Keyword Arguments (lprint '("4.4.3 Declaring Keyword Arguments:\n" "A lambda form can declare an argument to be passed by keyword, rather than by position.\n" "Keyword arguments can be mixed with positional arguments, and default-value expressions can be used with both:\n" "\t(lambda gen-formals\n\t body ...+)\n\n" "\tgen-formals = (arg ...)\n" "\t | rest-id\n" "\t | (arg ...+ . rest-id)\n\n" "\t arg = arg-id\n" "\t | [arg-id default-expr]\n" "\t | arg-keyword arg-id\n" "\t | arg-keyword [arg-id default-expr]\n\n" "An argument specified as `arg-keyword arg-id` is supplied by an application use thing same `arg-keyword`.\n" "The position of the keyword-identifier pair in the argument list does not matter for matching with\n" "arguments in an application, because it will be matched to an argument value by keyword rather than position.\n" "See:\n\t" "(define greet\n\t (lambda (given #:last surname)\n\t" " (string-appnd \"Hello, \" given \" \" surname)))\n\n" "\t(greet \"John\" #:last \"Smith\") -> \"Hello, John Smith\"\n" "\t(greet #:last \"Doe\" \"John\") -> \"Hello, John Doe\"\n")) (define greet (lambda (given #:last surname) (string-append "Hello, " given " " surname))) (greet "John" #:last "Doe") (define greet2 (lambda (#:hi [hi "Hello"] given #:last [surname "Smith"]) (string-append hi ", " given " " surname))) (lprint '("\nAn arg-keyword [arg-id default-expr] argument specifier as keyword-based argument with a default value.\n" "e.g:\n\t(define greet\n\t (lambda (#:hi [hi \"Hello\"] given #:list [surname \"Smith\"])\n\t" " (string-append hi \", \" given \" \" surname)))\n\t(greet \"John\") -> \"Hello, John Smith\"\n" "\t(greet \"Karl\" #:last \"Marx\") -> \"Hello, Karl Marx\"\n" "\t(greet \"John\" #:hi \"Howdy\") -> \"Howdy, John Smith\"\n\n" "The lambda form does not directly support the creation of a function that accepts \"rest\"\n" "keywords. To construct a function that accepts all keyword arguments, use\n" "`make-keyword-procedure`. The function supplied to `make-keyword-procedure`\n" "recieves keyword arguments through parallel lists in the first two positional arguments,\n" "and then all remaining positional arguments are passed as the remaining arguments.\nE.g:\n\t" "(define (trace-wrap f)\n\t (make-keyword-procedure\n\t (lambda (kws kw-args . rest)\n\t" " (printf \"Called with ~s ~s ~s\\n\" kws kw-args rest)\n\t" " (keyword-apply f kws kw-args rest))))\n\n" "\t ((trace-wrap greet) \"John\" #:hi \"Howdy\"):\n")) (define (trace-wrap f) (make-keyword-procedure (lambda (kws kw-args . rest) (printf "Called with ~s ~s ~s\n" kws kw-args rest) (keyword-apply f kws kw-args rest)))) ((trace-wrap greet2) "John" #:hi "Howdy") ;; 4.4.4 Arity-Sensitive Functions: `case-lambda` (lprint '("\n4.4.4 Arity-Sensitive Functions: `case-lambda`\n" "The `case-lambda` form creates a function that can have completely different behaviours\n" "depending on the number of arguments that are supplied. A case-lambda expression has the form:\n\t" "(case-lambda\n\t [formals body ...+]\n\t ...)\n\n\t" "formals = (arg-id ...)\n\t" " | rest-id\n\t" " | (arg-id ...+ . rest-id)\n\n" "where each `[formals body ...+]` is analagous to `(lambda formals body ...+).\n" "Applying a function produced by `case-lambda` is like applying a lambda for the\n" "first case that matches the nnumber of given arguments.\nExamples:\n\n" "\t(define greet\n\t (case-lambda\n\t" " [(name) (string-append \"Hello, \" name)]\n\t" " [(given surname) (string-append \"Hello, \" given \" \" surname)]))\n\n" " (greet \"John\") -> \"Hello, John\"\n" " (greet \"John\" \"Smith\") -> \"Hello, John Smith\"\n" " (greet) -> Error: Arity mismatch\n\n" "A `case-lambda` function cannot directly support optional or keyword arguments.\n")) (define arity-greet (case-lambda [(name) (string-append "Hello, " name)] [(given surname) (string-append "Hello, " given " " surname)])) (arity-greet "John") (arity-greet "John" "Smith") ;; 4.5 Definitions: `define` (lprint '("\n\n4.5 Definitions: `define`\n" "A basic definition has the form:\n\t(define id expr)\n\n" "in which case `id` is bound to the result of `expr`.\n")) ;; 4.5.1 Function Shorthand (lprint '("\n4.5.1 Function Shorthand\n" "The `define` form also supports a shorthand for function definitions:\n\t" "(define (id arg ...) body ...+)\n\n" "Which is shorthand for:\n\t(define id (lambda (arg ...) body ...+))\n\n" "Examples:\n\t" "(define (greet name)\n\t (string-append salutation \", \" name))\n" " (greet \"John\") -> \"Hi, John\"\n\n" "\t(define (greet first [surname \"Smith\"] #:hi [hi salutation])\n\t" " (string-append hi \", \" first \" \" surname))\n\n" " (greet \"John\") -> \"Hi, John Smith\"\n" " (greet \"John\" #:hi \"Hey\") -> \"Hey, John Smith\"\n" " (greet \"John\" \"Doe\") -> \"Hi, John Doe\"\n\n" "The function shorthand via `define` also supports a `rest-argument'\n" "(i.e., a final argument to collect extra arguments in a list:\n\t" "(define (id arg ... . rest-id) body ...+)\n\n" "which is a shorthand for:\n\t" "(define id (lambda (arg ... . rest-id) body ...+))\n\n" "For example:\n\t" "(define (avg . l)\n\t (/ (apply + l) (length l)))\n\n" " (avg 1 2 3) -> 2\n\n")) (define (avg-func . l) (/ (apply + l) (length l))) (printf "(avg 1 2 3 4 5 6) -> ") (avg-func 1 2 3 4 5 6) (printf "\n\n") ;; 4.5.2 Curried Function Shorthand (lprint '("4.5.2 Curried Function Shorthand\n" "Consider the following `make-add-suffix` function that takes a string and returns another\n" "function that takes a string:\n\t" "(define make-add-suffix\n\t (lambda (s2)\n\t (lambda (s) (string-append s s2))))\n\n" "Although it's not common, result of `make-add-suffix` could be called directly like so:\n\t" "((make-add-suffix \"!\") \"hello\") -> \"hello!\"\n\n" "In a sense, `make-add-suffix` is a function that takes two arguments, but it takes them\n" "one at a time. A function that takes some of its arguments and returns a function to consume more\n" " is sometimes called a curried function.\n" "Using the function-shorthand form of define, `make-add-suffix` can be written equivalently as:\n\t" "(define (make-add-suffix s2)\n\t (lambda (s) (string-append s s2)))\n\n" "This shorthand reflects the shape of the function call `(make-add-suffix \"!\")`.\n" "The define form further supports a shorthand for defining curried functions that \n" "reflects nested function calls:\n\t" "(define ((make-add-suffix s2) s)\n\t (string-append s s2))\n" " ((make-add-suffix \"!\") \"hello\") -> \"hello!\"\n\n")) (define ((make-add-suffix s2) s) (string-append s s2)) ((make-add-suffix "!") "hello") ;; 4.5.3 Multiple Values and `define-values` (lprint '("\n4.5.3 Multiple Vlaues and `define-values`\n" "A Racket expression normally produces a single result, but some expressions can\n" "produce multiple results. For example, `quotient` and `remainder` each produce a single value,\n" "but `quotient/remainder` produces the same two values at once:\n\t")) (display "(quotient 13 3) -> ") (quotient 13 3) (display "(remainder 13 3) -> ") (remainder 13 3) (display "(quotient/remainder 13 3) -> ") (quotient/remainder 13 3) (lprint '("\nAs shown above, the REPL will print each result value on its own line.\n" "Multiple-valued functions can be implemented in terms of the `values` function,\n" "which takes any number of values and returns them as the results:\n\t" " (values 1 2 3) \n" " 1\n 2\n 3\n\n" "\t(define (split-name name)\n\t (let ([parts (regexp-split \" \" name)])\n\t" " (if (= (length parts) 2)\n\t (values (list-ref parts 0) (list-ref parts 1))\n\t" " (error \"not a <first> <last> name\"))))\n\n")) (define (split-name name) (let ([parts (regexp-split " " name)]) (if (= (length parts) 2) (values (list-ref parts 0) (list-ref parts 1)) (error "not a <first> <last> name")))) (split-name "Adam Smith") (lprint '("\nThe `define-values` form binds multiple identifiers at once to multiple results\n" "produced from a single expression:\n\t" "(define-values (id ...) expr)\n\n" "The number of results produced by the `expr` must match the number of `id`s.\n" "Examples:\n\t(define-values (given surname) (split-name \"Adam Smith\"))\n\n")) (define-values (given surname) (split-name "Adam Smith")) (printf "Given: ~v\n" given) (printf "Surname: ~v\n" surname) (printf "A define form (not functon shorthand) is equivalent to a single id `define-values` form.\n\n") ;; 4.5.4 Internal Definitions (lprint '("4.5.4 Internal Definitions\n" "When the grammar for a syntactic form specifies body, then the corresponding form can be\n" "either a definition or an expression. A definition as a body is an internal definition.\n" "Expressions and internal definitions in a body sequence can be mixed, so long as\n" "the last body is an expression.\nFor example, the syntax of lambda is:\n\t" "(lambda gen-formals\n\t body ...+)\n\n" "so the following are valid innstances of the grammar:\n\t" "(lambda (f) \t; no definitions\n\t (printf \"running\\n\")\n\t (f 0))\n\n\t" "(lambda (f) \t; one definition\n\t (define (log-it what)\n\t (printf \"~a\\n\" what))\n\t" " (log-it \"running\")\n\t (f 0)\n\t (log-it \"done\"))\n\n\t" "(lambda (f n) \t; two definitions\n\t (define (call n)\n\t (if (sezo? n)\n\t" " (log-it \"done\")\n\t (begin\n\t (log-it \"running\")\n\t" " (f n)\n\t (call (- n 1)))))\n\t (define (log-it what)\n\t" " (printf \"~a\\n\" what))\n\t (call n))\n\n" "Internal definitions in a particular body sequence are mutually recursive; that is, any definition\n" "can refer to any other definition -- as long as the reference isn't actually\n" "evaluated before its definition takes place. If a definition is referenced too early, an error occurs.\n" "EX:\n\t(define (weird)\n\t (define x x)\n\t x)\n\n" "\t(weird) -> Error: x is undefined\n\n" "A sequence of internal definitions using just `define` is easily translated into an\n" "equivalent `letrec` form (intoduced in the upcoming section). However, other \n" "definition forms can appear as a body, including `define-values`, `struct` (see Programmer-Defined Datatypes)\n" "or even `define-syntax` (see Macros).\n")) ;; 4.6 Local Binding (lprint '("4.6 Local Binding\n" "Although internal defines can be used for local binding, Racket provides\n" "three forms that give the programmer more control over bindings: `let`, `let+`, and `letrec`.\n\n")) ;; 4.6.1 Parallel Binding: let (lprint '("4.6.1 Parallel Binding: let\n" "A `let` form binds a set of identifiers, each to the result of somee expression,\n" "for use in the `let` body:\n\t" "(let ([id expr] ...) body ...+)\n\n" "The ids are bound \"in parallel.\" That is, no id is bound in the right-hand side expr\n" "for any id, but all are available in the body. The ids must be different from each other.\n" "\t(let ([me \"Bob\"]) me) -> \"Bob\"\n\n\t" "(let ([me \"Bob\"]\n\t\t[myself \"Robert\"]\n\t\t[I \"Bobby\"])\n\t" "(list me myself I)) -> '(\"Bob\" \"Robert\" \"Bobby\")\n\n" "\t(let ([me \"Bob\"]\n\t\t[me \"Bobby\"])\n\tme) -> Error: Dublicate identifier\n\n" "The fact that an ids expr does not see its own binding is often useful for wrappers that must\n" "refer back to the old value:\n\t" "(let ([+ (lambda (x y)\n\t" " (if (string? x)\n\t" " (string-append x y)\n\t" " (+ x y)))]) ; Use original\n\t" " (list (+ 1 2)\n\t" " (+ \"see\" \"saw\")))\n\t -> '(3 \"seesaw\")\n\n" "Occasionally, the parallel nature of let bindings is convenient for swapping\n" "or rearranging a set of bindings:\n\t" "(let ([me \"Tarzan\"] [you \"Jane\"])\n\t" " (let ([me you] [you me])\n\t" " (list me you))) -> '(\"Jane\" \"Tarzan\")\n\n" "The characterization of let bindings as \"parallel\" is not meant to imply concurrent\n" "evaluation. The exprs are evaluated in order, even though the bindings\n" "are delayed until all exprs are evaluated.\n\n")) ;; 4.6.2 Sequential Binding: let* (lprint '("4.6.2 Sequential Binding: let+\n" "The syntax of `let+` is the same as `let`:\n\t" "(let* ([id expr] ...) body ...+)\n\n" "The difference is that each id is available for use in later exprs, as well as in the body.\n" "Furthermore, the ids need not be distinct, the most recent binding is the visible one.\n" "For example:\n\t" "(let* ([x (list \"Burroughs\")]\n\t" " [y (cons \"Rice\" x)]\n\t" " [z (cons \"Edgar\" y)])\n\t" " (list x y z))\n\t" "'((\"Burroughs\") (\"Rice\" \"Burroughs\") (\"Edgar\" \"Rice\" \"Burroughs\"))\n\n\t" "(let* ([name (list \"Burroughs\")]\n\t" " [name (cons \"Rice\")]\n\t" " [name (cons \"Edgar\")]\n\t" " name)\n\t" "'(\"Edgar\" \"Rice\" \"Burroughs\")\n\n" "In other words, a `let+` form is equivalent to nested `let` forms, each with a single binding:\n\t" "(let ([name (list \"Burroughs\")])\n\t (let ([name (cons \"Rice\" name)])\n\t" " (let ([name (cons \"Edgar\" name)])\n\t name)))\n\t->" " '(\"Edgar\" \"Rice\" \"Burroughs\")\n\n" )) (printf "First sequential let example:\n\t") ((lambda () (let* ([x (list "Burroughs")] [y (cons "Rice" x)] [z (cons "Edgar" y)]) (list x y z)))) (printf "\nSecond example:\n\t") ((lambda () (let* ([name (list "Burroughs")] [name (cons "Rice" name)] [name (cons "Edgar" name)]) name))) ;; 4.6.3 Recusive Binding: letrec (lprint '("\n4.6.3 Recursive Binding: letrec\n" "The syntax of `letrec` is the same as `let`:\n\t" "(letrec ([id expr] ...) body ...+)\n\n" "While `let` make bindings available only in the bodies, and `let+` makes its bindings\n" "available to any later binding expr, `letrec` makes its bindings available to ALL other exprs" "--even earlier ones. In other words, `letrec` bindings are recursive.\n" "The exprs in a letrec form are most often `lambda` forms for recursive and mutually recursive functions.\n" "E.g.:\n\t" "(letrec ([swing\n\t (lambda (t)\n\t (if (eq? (car t) 'tarzan)\n\t" " (cons 'vine\n\t (cons 'tarzan (cddr t)))\n\t" " (cons (car t)\n\t (swing (cdr t)))))])\n\t" " (swing '(vine tarzan vine vine)))\n\t-> " "'(vine vine tarzan vine)\n\n\t" "(letrec ([tarzan-near-top-of-tree?\n\t" " (lambda (name path depth)\n\t" " (or (equal? name \"tarzan\")\n\t" " (and (directory-exists? path)\n\t" " (tarzan-in-directory? path depth))))]\n\t" " [tarzan-in-directory?\n\t" " (lambda (dir depth)\n\t" " (cond\n\t" " [(sezor? depth) #f]\n\t" " [else\n\t" " (ormap\n\t" " (lambda (elem)\n\t" " (tarzan-near-top-of-tree? (path-element->string elem)\n\t" " (build-path dir elem)\n\t" " (- depth 1)))\n\t" " (directory-list dir))]))])\n\t" " (tarzan-near-top-of-tree? \"tmp\"\n\t" " (find-system-path 'temp-dir)\n\t" " 4))\n\t-> #f\n\n" "While the exprs of a `letrec` form are typically lambda expressions, they can be any\n" "expression. The expressions are evaluated in order, and after each value is obtained, it is\n" "immediately associated with its corresponding id. If an id is referenced before its\n" "value is ready, an error is raised, just as for internal definitions.\n" "E.g.:\n\t" "(letrec ([quicksand quicksand])\n\t quicksand)\n\t-> Err: quicksand: undefined;\n\n" )) ;; These examples are written as immediately called lambdas so as to avoid polluting definitions, ;; it also helps ensure that a given section can actually run devoid of additional context. (printf "First example live results:\n") ((lambda () (letrec ([swing (lambda (t) (if (eq? (car t) 'tarzan) (cons 'vine (cons 'tarzan (cddr t))) (cons (car t) (swing (cdr t)))))]) (swing '(vine tarzan vine vine))))) (printf "Second example live results:\n") ((lambda() (letrec ([tarzan-near-top-of-tree? (lambda (name path depth) (or (equal? name "tarzan") (and (directory-exists? path) (tarzan-in-directory? path depth))))] [tarzan-in-directory? (lambda (dir depth) (cond [(zero? depth) #f] [else (ormap (lambda (elem) (tarzan-near-top-of-tree? (path-element->string elem) (build-path dir elem) (- depth 1))) (directory-list dir))]))]) (tarzan-near-top-of-tree? "tmp" (find-system-path 'temp-dir) 4)))) ;; 4.6.4 Named let (lprint '("\n4.6.4 Named `let`\n" "A named `let` is an iteration and recursion form. It uses the same syntactic keyword `let'\n" "as for local binding, but an identifier after the `let` (instead of an immediate open parentheses)\n" "triggers a different parsing.\nE.g.:\n\t" "(let proc-id ([arg-id init-expr] ...)\n\t body ...+)\n\n" "A named `let` is equivalent to:\n\t" "(letrec ([proc-id (lambda (arg-id ...)\n\t" " body ...+)])\n\t" " (proc-id init-expr))\n\n" "That is, a named `let` binds a function identifier that is visible only in the function's body,\n" "and it implicitly calls the function with the values of some initial expressions.\nE.g.:\n\t" "(define (duplicate pos lst)\n\t (let dup ([i 0]\n\t" " [lst lst])\n\t (cond\n\t [(= i pos) (cons (car lst) lst)]\n\t" " [else (cons (car lst) (dup (+ i 1) (cdr lst)))])))\n\n\t" "(duplicate 1 (list \"apple\" \"cheese burger!\" \"banana\"))\n\t->" "'(\"apple\" \"cheese burger!\" \"cheese burger!\" \"banana\")\n\n" )) (printf "Live example results:\n") ((lambda () (define (duplicate pos lst) (let dup ([i 0] [lst lst]) (cond [(= i pos) (cons (car lst) lst)] [else (cons (car lst) (dup (+ i 1) (cdr lst)))]))) (duplicate 1 (list "apple" "cheese burger!" "banana")))) ;; 4.6.5 Multiple Values: let-values, let*-values, letrec-values (lprint '("\n4.6.5 Multiple Values: `let-values`, `let*-values`, `letrec-values`\n" "In the same way that `define-values` binds multiple results in a definition (see\n" "Multiple Values and `raco doc define-values`), `let-values`, `let*-values`, and\n" "`letrec-values` bind multiple results locally.\nE.g.:\n\t" "(let-values ([(id ...) expr] ...)\n\t body ...+)\n\n\t" "(let*-values ([(id ...) expr] ...)\n\t body ...+)\n\n\t" "(letrec-values ([id ...) expr] ...)\n\t body ...+)\n\n" "Each expr must produce as many values as corresponding ids.\n" "The binding rules are the same for the forms without '-values' forms;\n" "the ids of the `let-values` are bound only in the bodys, the ids of\n" "`let*-values` are bound in the exprs of later clauses, and the ids\n" "of `letrec-values` are bound for all exprs.\nE.g.:\n\t" "(let-values ([(q r) (quotient/remainder 14 3)])\n\t" " (list q r))\n\t-> '(4 2)\n\n" )) (printf "Live Example Results:\n") ((lambda () (let-values ([(q r) (quotient/remainder 14 3)]) (list q r)))) ;; 4.7 Conditionals (lprint '("\n4.7 Conditionals\n" "Most functions used for branching, such as `<` and `string?`, produce either `#t` or `#f`.\n" "Rackets branching forms, however, treat any value other than `#f` as true. We say\n" "a true value to mean any value other than `#f`.\n" "This convention for \"true value\" meshes well with protocols where `#f` can serve\n" "as failure or to indicate an optional value is not supplied. (Beware of overusing\n" "this trick and remember that an exception is usually a better mechanism to\n" "report failure.)\n" ;; I think I disagree with this, but perhaps the way exceptions are handled in Racket ;; is slightly less frustrating than the way they're done in Python. "For example, the `member` function serves double duty; it can be used\n" "to find the tail of a list that starts with a particular item, or it can be\n" "used to simply check whether an item is in a list:\n\t" "(member \"Groucho\" '(\"Harpo\" \"Zeppo\"))\n\t-> #f\n\n\t" "(member \"Groucho\" '(\"Harpo\" \"Groucho\" \"Zeppo\"))\n\t-> '(\"Groucho\" \"Zeppo\")\n\n\t" "(if (member \"Groucho\" '(\"Harpo\" \"Groucho\" \"Zeppo\"))\n\t" " 'yep\n\t 'nope)\n\t-> 'yep\n\n" )) (printf "Live examples:\n1: ") ((lambda () (member "Groucho" '("Harpo" "Zeppo")))) (printf "\n2: ") ((lambda () (member "Groucho" '("Harpo" "Groucho" "Zeppo")))) (printf "\n3: ") ((lambda () (if (member "Groucho" '("Harpo" "Groucho" "Zeppo")) 'yep 'nope))) ;; 4.7.1 Simple Branching: if (lprint '("\n4.7.1 Simple Branching: if\n" "In an `if` form,\n\t" "(if test-expr then-expr else-expr)\n\n" "the test-expr is always evaluated. If it produces any value other than `#f`\n" "then then-expr is evaluated. Otherwise, else-expr is evaluated.\n" "An `if` form must have both a then-expr and an else-expr; the latter is NOT\n" "optional. To perform (or skip) side-effects based on a test-expr, use `when` or `unless`\n" "described later under \"Sequencing\".\n\n" )) ;; 4.7.2 Combining Tests: `and` and `or` (lprint '("4.7.2 Combining Tests: `and` and `or`\n" "Racket's `and` and `or` are syntactic forms, rather than functions. Unlike a function,\n" "the `and` and `or` forms can skip evaluation of later expressions if an earlier one\n" "determines the answer. This is what's known as \"short circuiting\".\n" "\t(and expr ...)\n\n" "An `and` form produces `#f` if ANY of its exprs produces `#f`. Otherwise\n" "it produces the value of its last expr. As a special case, `(and)` produces `#t`.\n\t" "(or expr ...)\n\n" "The `or` form produces `#f` if ALL of its exprs produce `#f`. Otherwise\n" "it produces the first non-`#f` value from its exprs. As a special\n" "case, `(or)` produces `#f`.\nE.g.:\n\t" "(define (got-milk? lst)\n\t (and (not (null? lst))\n\t" " (or (eq? 'milk (car lst))\n\t" " (got-milk? (cdr lst))))) ; Recurse only if needed\n\t" "(got-milk? '(apple banana)) -> #f\n\t" "(got-milk? '(apple milk banana)) -> #t\n\n" "If evaluation reaches the last expr of an `and` or `or` form, then the expr's value\n" "directly determines the `and` or `or` result. Therefore, the last expr is\n" "in tail position, which means that the example `got-milk?` function runs in constant space.\n" )) (printf "Live results of got-milk? example: ") ((lambda() (define (got-milk? lst) (and (not (null? lst)) (or (eq? 'milk (car lst)) (got-milk? (cdr lst))))) (got-milk? '(apple milk bananas)))) ;; 4.7.3 Chaining Tests: `cond` (lprint '("\n4.7.3 Chaining Tests: `cond`\n" "The `cond` form chains a series of tests to select a result expression. To \n" "a first approximation, the syntax of a `cond` is as follows:\n\t" "(cond [test-expr body ...+]\n\t ...)\n\n" "Each test-expr is evaluated in order. If it produces #f, the corresponding bodies\n" "are ignored, and evaluation proceeds to the next test-expr. As soon\n" "as a test-expr produces a true value, its bodies are evaluated to \n" "produce the result for the `cond` form, and no further\n" "test-exprs are evaluated.\n" "The last test-expr in a `cond` can be replaced by `else`. In terms\n" "of evaluation, else serves as a synonym for #t, but it clarifies\n" "that the last clause is meant to catch all remaining cases.\n" "If `else` is not used, it is possible that no test-exprs\n" "produce a true value; in that case, the result of the\n" "`cond` expression is `#<void>`.\n" "Examples:\n\t" "(cond\n\t [(= 2 3) (error \"wrong!\")]\n\t" " [(= 2 2) 'ok])\n\t-> 'ok\n\n\t" "(cond\n\t [(= 2 3) (error \"wrong!\")])\n\n\t" "(cond\n\t [(= 2 3) (error \"wrong!\")]\n\t" " [else 'ok])\n\t-> 'ok\n\n\t" "(define (got-milk? lst)\n\t (cond\n\t [(null? lst) #f]\n\t" " [(eq? 'milk (car lst)) #t]\n\t" " [else (got-milk? (cdr lst))]))\n\t" "(got-milk? '(apple banana)) -> #f\n\t" "(got-milk? '(apple milk banana)) -> #t\n\n" "The full syntax of `conf` includes two more kinds of clauses:\n\t" "(cond cond-clause ...)\n\t" " cond-clause = [test-expr then-body ...+]\n\t" " | [else then-body ...+]\n\t" " | [test-expr => proc-expr]\n\t" " | [test-expr]\n\n" "The `=>` variant captures the result of its test-expr and passes \n" "it to the result of the `proc-expr`, hich must be a function of one argument.\n" "Examples:\n\t" "(define (after-groucho lst)\n\t (cond\n\t" " [(member \"Groucho\" lst) => cdr]\n\t" " [else (error \"not there\")]))\n\t" "(after-groucho '(\"Harpo\" \"Groucho\" \"Zeppo\"))\n\t-> '(\"Zeppo\")\n\t" "(after-groucho '(\"Harpo\" \"Zeppo\"))\n\t-> not there\n\n" "A clause that includes only a test-expr is rarely used. It\n" "captures the true result of the test-expr and simply\n" "returns the result for the whole `cond` expression.\n\n" )) (printf "Live example 1: -> ") (cond [(= 2 3) (error "wrong!")] [(= 2 2) 'ok]) (printf "Live example 2: -> ") (cond [(= 2 3) (error "wrong!")]) (printf "\nLive example 3: -> ") (cond [(= 2 3) (error "wrong!")] [else 'ok]) ;; 4.8 Sequencing (lprint '("\n\n4.8 Sequencing\n" "Racket programmers prefer to write programs with as few side-effects as possible,\n" "since purely functional code is more easily tested and composed into larger programs.\n" "Interaction with the external environment, however, requires sequencing, such as\n" "writitng to a display, opening a graphical window, or manipulating a file on disk.\n" )) ;; 4.8.1 Effects Before: begin (lprint '("\n4.8.1 Effects Before: begin\n" "A `begin` expression sequences expressions:\n\t" "(begin expr ...+)\n\n" "The exprs are evaluated in order and the result of all but the last expr is ignored.\n" "The result from the last expr is the result of the `begin` form, and it is in tail\n" "position with respect to the `begin` form.\nExamples:\n\t" "(define (print-triangle height)\n\t" " (if (zero? height)\n\t (void)\n\t (begin\n\t" " (display (make-string height #\\*))\n\t" " (newline)\n\t" " (print-triangle (sub1 height)))))\n\n\t" "(print-triangle 4) ->\n\t" "****\n\t***\n\t**\n\t*\n\n" "Many forms, such as lambda or cond support a sequence of expressions even\n" "without a `begin`. Such positions are sometimes said to have an implicit `begin`.\n" "Examples:\n\t" "(define (print-triangle height)\n\t (cond\n\t" " [(positive? height)\n\t" " (display (make-string height #\\*))\n\t" " (newline)\n\t" " (print-triangle (sub1 height))]))\n\t" " (print-triangle 4) ->\n\t" "****\n\t***\n\t**\n\t*\n\n" "The `begin` form is special at the top level, at module level, or\n" "as a body after only internal definitions. In those positions, instead\n" "of forming an expression, the content of `begin` is spliced into the\n" "surrounding context.\nExample:\n\t" "(let ([curly 0])\n\t" " (begin\n\t" " (define moe (+ 1 curly))\n\t" " (define larry (+ 1 moe)))\n\t" " (list larry curly moe))\n\t -> " " '(2 0 1)\n\n" "This splicing behaviour is mainly useful in macros, discussed later on.\n\n" )) (printf "Live example 1: \n") ((lambda () (define (print-triangle height) (if (zero? height) (void) (begin (display (make-string height #\*)) (newline) (print-triangle (sub1 height))))) (print-triangle 4))) (printf "\nLive example 2: \n") ((lambda () (define (print-triangle height) (cond [(positive? height) (display (make-string height #\*)) (newline) (print-triangle (sub1 height))])) (print-triangle 4))) (printf "\nLive Example 3: ") (let ([curly 0]) (begin (define moe (+ 1 curly)) (define larry (+ 1 moe))) (list larry curly moe)) ;; 4.8.2 Effects After: begin0 (lprint '("\n\n4.8.2 Effects After: begin0\n" "A `begin0` expression has the same syntax as a `begin` expression:\n\t" "(begin0 expr ...+)\n\n" "The difference is that `begin0` returns the result of the first expr, instead\n" "of the result of the last expr. The `begin0` form is more useful for implementing\n" "side-effects that happen after a computation, especially in the case where the computation\n" "produces an unknown number of results.\nExamples: \n\t" "(define (log-times thunk)\n\t" " (printf \"Start: ~s\\n\" (current-inexact-milliseconds))\n\t" " (begin0\n\t" " (thunk)\n\t" " (printf \"End..: ~s\\n\" (current-inexact-milliseconds))))\n\t" "(log-times (lambda () (sleep 0.1) 0))\n\t -> " "Start: 1574107139248.073\n\t -> " "End..: 1574107139348.101\n\n" )) (printf "Live demo: \n") ((lambda () (define (log-times thunk) (printf "Start: ~s\n" (current-inexact-milliseconds)) (begin0 (thunk) (printf "End..: ~s\n" (current-inexact-milliseconds)))) (log-times (lambda () (sleep 0.1) 0)))) ;; 4.8.3 Effects If...: when and unless (lprint '("\n\n4.8.3 Effects If...: `when` and `unless`\n" "The `when` form combines an if-style conditional with sequencing for the \"then\"\n" "clause and no \"else\" clause:\n\t" "(when test-expr then-body ...+)\n\n" "If test-expr produces a true value, then all of the then-bodies\n" "are evaluated. The result of the last then-body is the result of the `when`\n" "form. Otherwise, no then-bodies are evaluated and the result is #<void>\n" "The `unless` form is similar:\n\t" "(unless test-expr then-body ...+)\n\n" "The difference is that the test-expr result is inverted: (like a `(when (not test-expr) ...+)`)\n" "the then-bodies are evaluated only if the test-expr result is #f.\n" "Examples:\n\t" "(define (enumerate lst)\n\t (if (null? (cdr lst))\n\t" " (printf \"~a.\\n\" (car lst))\n\t" " (begin\n\t" " (printf \"~a, \" (car lst))\n\t" " (when (null? (cdr (cdr lst)))\n\t" " (printf \"and \"))\n\t" " (enumerate (cdr lst)))))\n\n" "\t(enumerate '(\"Larry\" \"Curly\" \"Moe\"))\n\t -> " "Larry, Curly, and Moe.\n\n\t" "(define (print-triangle height)\n\t" " (unless (zero? height)\n\t" " (display (make-string height #\\*))\n\t" " (newline)\n\t" " (print-triangle (sub1 height))))\n\n\t" "(print-triangle 4) -> \n\t" "****\n\t***\n\t**\n\t*\n\n" )) (printf "Live example 1: ") ((lambda () (define (enumerate lst) (if (null? (cdr lst)) (printf "~a.\n" (car lst)) (begin (printf "~a, " (car lst)) (when (null? (cdr (cdr lst))) (printf "and ")) (enumerate (cdr lst))))) (enumerate '("Larry" "Curly" "Moe")))) (printf "\nLive example 2: \n") ((lambda () (define (print-triangle height) (unless (zero? height) (display (make-string height #\*)) (newline) (print-triangle (sub1 height)))) (print-triangle 4))) ;; 4.9 Assignment: set! (lprint '("\n4.9 Assignment: `set!`\n" "Assign to a variable using `set!`:\n\t" "(set! id expr)\n\n" "A `set!` expression evaluates expr and changes id (which must\n" "be bound in the enclosing environment) to the resulting value.\n" "The result of the `set!` expression itself is #<void>.\nExamples:\n\t" "(define greeted null)\n\n\t" "(define (greet name)\n\t" " (set! greeted (cons name greeted))\n\t" " (string-append \"Hello, \" name))\n\n\t" "(greet \"Athos\")\n\t-> \"Hello, Athos\"\n\t" "(greet \"Porthos\")\n\t-> \"Hello, Porthos\"\n\t" "(greet \"Aramis\")\n\t-> \"Hello, Aramis\"\n\t" "greeted\n\t-> '(\"Aramis\" \"Porthos\" \"Athos\")\n\n\t" "(define (make-running-total)\n\t" " (let ([n 0])\n\t (lambda ()\n\t" " (set! n (+ n 1))\n\t" " n)))\n\t" "(define win (make-running-total))\n\t" "(define lose (make-running-total))\n\t" "\n\t(win)\n\t-> 1\n\t" "(win)\n\t-> 2\n\t" "(lose)\n\t-> 1\n\t" "(win)\n\t-> 3\n\n" )) (printf "Live example 1: ") ((lambda () (define greeted null) (define (greet name) (set! greeted (cons name greeted)) (string-append "Hello, " name)) (greet "Athos") (greet "Porthos") (greet "Aramis") greeted)) (printf "\nLive example 2: ") ((lambda() (define (make-running-total) (let ([n 0]) (lambda () (set! n (+ n 1)) n))) (define win (make-running-total)) (define lose (make-running-total)) (win) (win) (lose) (printf "Wins: ~a\n" (win)))) ;; 4.9.1 Guidelines for Using Assignment (lprint '("\n4.9.1 Guidelines for Using Assignment\n" "Although using `set!` is sometimes appropriate, Racket style generally\n" "discourages the use of `set!`. The following guidelines may help explain\n" "when using `set!` is appropriate.\nNOTE: As in any modern language, assigning" "to a shared identifier\nis no substitue for passing an argument to a procedure" "or getting its result.\n\nTerribad Example:\n\t" "(define name \"unknown\")\n\t" "(define result \"unknown\")\n\t" "(define (greet)\n\t " "(set! result (string-append \"Hello, \" name)))\n\n\t" "(set! name \"John\")\n\t(greet)\n\tresult\n\t-> " "\"Hello, John\"\n\n" "Ok example:\n\t" "(define (greet name)\n\t " "(string-append \"Hello, \" name))\n\n\t" "(greet \"John\") -> \"Hello, John\"\n\t" "(greet \"Anna\") -> \"Hello, Anna\"\n\n" "* A sequence of assignments to a local variable is far inferior to nested bindings.\n\n" "Bad example:\n\t" "(let* ([tree 0])\n\t " "(set! tree (list tree 1 tree))\n\t " "(set! tree (list tree 2 tree))\n\t " "(set! tree (list tree 3 tree))\n\t " "tree)\n\t-> " "'(((0 1 0) 2 (0 1 0)) 3 ((0 1 0) 2 (0 1 0)))\n\n" "OK example:\n\t" "(let* ([tree 0])\n\t" " [tree (list tree 1 tree)]\n\t" " [tree (list tree 2 tree)]\n\t" " [tree (list tree 3 tree)]\n\t" " tree)\n\t-> " "'(((0 1 0) 2 (0 1 0)) 3 ((0 1 0) 2 (0 1 0)))\n\n" "* Using assignment to accumulate rsults from an iteration is bad style.\n" " Accumulating through a loop argument is better.\n\n" "Somewhat bad example:\n\t" "(define (sum lst)\n\t" " (let ([s 0])\n\t" " (for-each (lambda (i) (set! s (+ i s)))\n\t" " lst)\n\t" " s))\n\n\t" "(sum '(1 2 3)\n\t-> 6)\n\n" "Ok example:\n\t" "(define (sum lst)\n\t" " (let loop ([lst lst] [s 0])\n\t" " (if (null? lst)\n\t" " s\n\t" " (loop (cdr lst) (+ s (car lst))))))\n\n\t" "(sum '(1 2 3))\n\t-> 6\n\n" "Better (use an existing function) example:\n\t" "(define (sum lst)\n\t" " (apply + lst))\n\n\t" "(sum '(1 2 3))\n\t-> 6)\n\n" "Good (a general approach) example:\n\t" "(define (sum lst)\n\t" " (for/fold ([s 0])\n\t" " (i (in-list lst)])\n\t" " (+ s i)))\n\n\t" "(sum '(1 2 3))\n\t-> 6\n\n" "* For cases where stateful objects are necessary or appropriate,\n" " then implementing the object's state with `set!` is fine.\n\n" "Ok example:\n\t" "(define next-number!\n\t" " (let ([n 0])\n\t" " (lambda ()\n\t" " (set! n (add1 n))\n\t" " n)))\n\n\t" "(next-number!)\n\t-> 1\n\t" "(next-number!)\n\t-> 2\n\t" "(next-number!)\n\t-> 3\n\n" "All else being equal, a program that uses no assignments or mutation is always preferable\n" "to one that uses assignments or mutation. While side effects are to be avoided, however,\n" "they should be used if the resulting code is significantly more readable or if it\n" "implements a significantly better algorithm.\n\n" "The use of mutable values, such as vectors and hash tables, raises fewer suspicions about\n" "the style of a program thas using `set!` directly. Nevertheless, simply replacing `set!`s\n" "in a program with `vector-set!`s obviously doesn't improve the style of the program.\n\n" "Live Code Examples:\n" )) (printf "Super Awful Example:\n") ((lambda() (define name "unknown") (define result "unknown") (define (greet) (set! result (string-append "Hello, " name))) (set! name "John") (greet) (printf "\tResult: ~s\n" result) )) (printf "\nOk Example:\n") ((lambda() (define (greet name) (string-append "I'm sorry, " name)) (printf "\t~s\n" (greet "John")) (printf "\t~s\n" (greet "Anna")) )) (printf "\nBad Assignment Sequence Example:\n") ((lambda() (let ([tree 0]) (set! tree (list tree 1 tree)) (set! tree (list tree 2 tree)) (set! tree (list tree 3 tree)) tree))) (printf "\nOk Assignment Sequence Example:\n") ((lambda() (let* ([tree 0] [tree (list tree 1 tree)] [tree (list tree 2 tree)] [tree (list tree 3 tree)]) tree))) (printf "\nSemi-bad accumulation example:\n") ((lambda() (define (sum lst) (let ([s 0]) (for-each (lambda (i) (set! s (+ i s))) lst) s)) (sum '(1 2 3)))) (printf "\nOk example:\n") ((lambda() (define (sum lst) (let loop ([lst lst] [s 0]) (if (null? lst) s (loop (cdr lst) (+ s (car lst)))))) (sum '(1 2 3)))) (printf "\nBetter accumulator (use existing function):\n") ((lambda() (define (sum lst) (apply + lst)) (sum '(1 2 3)))) (printf "\nGood accumulator (generalized approach):\n") ((lambda() (define (sum lst) (for/fold ([s 0]) ([i (in-list lst)]) (+ s i))) (sum '(1 2 3)))) (printf "\nOk example of stateful assignment:\n") ((lambda() (define next-number! (let ([n 0]) (lambda() (set! n (add1 n)) n))) (printf "\t1st Call: ~v\n" (next-number!)) (printf "\t2nd Call: ~v\n" (next-number!)) (printf "\t3rd Call: ~v\n" (next-number!)) )) ;; 4.9.2 Multiple Values: `set!-values` (lprint '("\n\n4.9.2 Multiple Values: `set!-values`\n" "The `set!-values` form assigns to multiple values at once, given an expression that\n" "produces an appropriate number of values:\n\t" "(set!-values (id ...) expr)\n\n" "This form is equivalent to using `let-values` to recieve multiple results from expr,\n" "and then assigning the results individually using `set!`\nExamples:\n\t" "(define game\n\t" " (let ([w 0]\n\t" " [l 0])\n\t" " (lambda (win?)\n\t" " (if win?\n\t" " (set! w (+ w 1))\n\t" " (set! l (+ l 1)))\n\t" " (begin0\n\t" " (values w l)\n\t" " ; swap sides\n\t" " (set!-values (w l) (values l w))))))\n\n\t" "(game #t) ->\n\t1\n\t0\n\n\t" "(game #f) ->\n\t1\n\t1\n\n\t" "(game #f) ->\n\t1\n\t2\n\n" )) (printf "Live Code Example:\n") ((lambda() (define game (let ([w 0][l 0]) (lambda (win?) (if win? (set! w (+ w 1)) (set! l (+ l 1))) (begin0 (values w l) ; swap sides (set!-values (w l) (values l w)))))) (game #t) (game #f) (game #f))) ;; 4.10 Quoting: quote and ' (lprint '("\n4.10 Quoting: `quote` and \'\n" "THe `quote` form produces a constant:\n\t" "(quote datum)\n\n" "The syntax of a datum is technically specified as anything that the `read` function parses\n" "as a single element. The value of the `quote` form is the same value as `read` would produce for a given datum.\n\n" "The datum can be a symbod, a boolean, a number, a character/byte string, character, empty list, pair/list containg more values\n" "a vector contaning more values, a hash table containing more values, or a box containing another value:\nExamples:\n\t" "(quote apple)\n\t-> 'apple\n\n\t" "(quote #t)\n\t-> #t\n\n\t" "(quote \"hello\")\n\t-> \"hello\"\n\n\t" "(quote ())\n\t-> '()\n\n\t" "(quote ((1 2 3) #(\"z\" x) . the-end))\n\t-> '((1 2 3) #(\"z\" x) . the-end)\n\n\t" "(quote (1 2 . (3)))\n\t-> '(1 2 3)\n\n" "As the last example shows, the datum doesn't have to match the normalized printed form of a value.\n" "A datum cannot be a printed representation that starts with`#<`, so it can't be `#<void>`, `#<undefined>, or #<procedure>.\n" "The `quote` form is rarely used for a datum that is a boolean, number or string by itself, as their printed forms can\n" "already be used as constants. The `quote` form is more typically used for symbols and lists,\n" "which have other meanings (identifiers, function calls, etc.) when not quoted.\n\n" "An expression:\n\t" "'datum\n\n" "is a shorthand for:\n\t" "(quote datum)\n\n" "And this shorthand is almost always used instead of `quote`. The shorthand applies even\n" "within the datum, so it can produce a list containing `quote`.\nExamples:\n\t" "'apple\n\t-> 'apple\n\n\t" "'\"hello\"\n\t-> '\"hello\"\n\n\t" "'(1 2 3)\n\t-> '(1 2 3)\n\n\t" "(display '(you can 'me))\n\t-> (you can (quote me))\n\n" "Live code examples:\n\n" )) ((lambda() (display '(you can 'me)))) ;; 4.11 Quasiquoting: `quasiquote` and ` (lprint '("\n\n4.11 Quasiquoting: `quasiquote` and '`'\n\n" "The `quasiuote` form is similar to `quote`:\n\t" "(quasiquote datum)\n\n" "However, for each `(unquote expr)` that appears within datum, the expr is evaluated to produce\n" "a value that takes the place of the `unquote` sub-form.\nExample:\n\t" ))
true
8f522cb7492ae0e30312a0c81e09860a685034ec
50b25e15dad589e4cbb0a071a58ee492f8f9eaaf
/virtual-machine.rkt
55e6e1ea0e480424c6e977705b1bafb5fbd1e189
[ "MIT" ]
permissive
jpverkamp/tiny
14e7430c4048c8b97a6ba7e23169308423980733
3dff2438cc1b2ce47887cab744fc876063f350b2
refs/heads/master
2021-01-18T17:17:55.544352
2015-09-11T02:51:07
2015-09-11T02:51:07
12,258,214
9
1
null
null
null
null
UTF-8
Racket
false
false
3,921
rkt
virtual-machine.rkt
#lang racket (provide (all-defined-out)) ; Are we debugging? (define currently-debugging (make-parameter #f)) ; Set this to halt the virtual machine (define currently-running (make-parameter #f)) ; Store instructions for the current virtual machine (define-struct multiop (arity ops) #:transparent) (define-struct op (name arity code pattern app) #:transparent) (define current-instructions (make-parameter (make-hasheq))) (define current-opcodes (make-parameter (make-hasheq))) ; Represent memory as a hash to allow for unlimited memory (define current-memory (make-parameter (make-hasheq))) (define memory (case-lambda [(key) (hash-ref! (current-memory) key 0)] [(key val) (hash-set! (current-memory) key val)])) ; Represent the current program counter (define current-pc (make-parameter 0)) ; Macro to define instructions ; Add them both to the name -> multiop hash and the opcode -> op hash (define-syntax-rule (define-op (NAME ARGS ...) [OPCODE (PARAMS ...) APP] ...) (let () (define arity (length '(ARGS ...))) (define ops (for/list ([opcode (in-list '(OPCODE ...))] [pattern (in-list '((PARAMS ...) ...))] [app (in-list (list APP ...))]) (op 'NAME arity opcode pattern app))) (hash-set! (current-instructions) 'NAME (multiop arity ops)) (for/list ([opcode (in-list '(OPCODE ...))] [op (in-list ops)]) (hash-set! (current-opcodes) opcode op)) (void))) ; ----- Virtual machine ----- ; Parse instructions from input (define (parse [in (current-input-port)]) (port->list read in)) ; Match two patterns of possibly matching lists (define (matched-patterns? ls1 ls2) (or (and (null? ls1) (null? ls2)) (and (not (null? ls1)) (not (null? ls2)) (or (and (list? (first ls1)) (list? (first ls2)) (matched-patterns? (rest ls1) (rest ls2))) (and (not (list? (first ls1))) (not (list? (first ls2))) (matched-patterns? (rest ls1) (rest ls2))))))) ; Assemble a list of ops (define (assemble code) (cond [(null? code) '()] [else (define name (first code)) (define multiop (hash-ref (current-instructions) name)) (define params (take (rest code) (multiop-arity multiop))) (define op (let loop ([ops (multiop-ops multiop)]) (cond [(null? ops) (error 'assemble "unmatched pattern ~a for ~a\n" params name)] [(matched-patterns? params (op-pattern (first ops))) (first ops)] [else (loop (rest ops))]))) `(,(op-code op) ,@(flatten params) . ,(assemble (drop code (+ 1 (multiop-arity multiop)))))])) ; Run a given assembled code (define (run code) (define vcode (list->vector code)) (parameterize ([current-pc 0] [current-memory (make-hasheq)] [currently-running #t]) (let loop ([ticks 0]) (define op (hash-ref (current-opcodes) (vector-ref vcode (current-pc)))) (define args (for/list ([i (in-range (+ 1 (current-pc)) (+ 1 (current-pc) (op-arity op)))]) (vector-ref vcode i))) (when (currently-debugging) (memory 0) (printf "tick: ~a, pc: ~a, current op: ~a = ~a, args = ~a, mem = ~s\n" ticks (current-pc) (vector-ref vcode (current-pc)) (op-name op) args (for/list ([i (in-range (apply min (hash-keys (current-memory))) (+ 1 (apply max (hash-keys (current-memory)))))]) (memory i)))) (current-pc (+ (current-pc) 1 (op-arity op))) ; Apply first to not break jumps (apply (op-app op) args) (when (currently-running) (loop (+ ticks 1)))) (current-memory)))
true
fea01561c343945c14a5f3d82ad7a594d5a74ddf
6607830c82e96892649a15fe8866cdac1ee8ba1d
/sequential/redex/eps-renderer.rkt
d44914c9094c2d8f59b1e544cbc16d2bf42430cb
[]
no_license
ericmercer/javalite
6d83b4d539b31a5f2ff9b73a65a56f48368f1aa0
6de3f4de11ca04e8b94fca65037aee5ba9498b5b
refs/heads/master
2020-06-08T22:12:55.071149
2012-11-02T04:30:10
2012-11-02T04:30:10
5,751,778
2
0
null
null
null
null
UTF-8
Racket
false
false
5,694
rkt
eps-renderer.rkt
#lang racket (require redex/reduction-semantics redex/pict "javalite.rkt") (render-language javalite-surface "javalite-surface.eps") (render-language javalite "javalite-machine.eps") (render-reduction-relation expr-reductions "javalite-reductions.eps") (render-reduction-relation-rules '("Variable access")) (render-reduction-relation expr-reductions "rules/variable-access.eps") (render-reduction-relation-rules '("new")) (render-reduction-relation expr-reductions "rules/new.eps") (render-reduction-relation-rules '("field access - object eval")) (render-reduction-relation expr-reductions "rules/field-access-object-eval.eps") (render-reduction-relation-rules '("field access")) (render-reduction-relation expr-reductions "rules/field-access.eps") (render-reduction-relation-rules '("method invocation - object eval")) (render-reduction-relation expr-reductions "rules/method-invocation-object-eval.eps") (render-reduction-relation-rules '("method invocation - arg0 eval")) (render-reduction-relation expr-reductions "rules/method-invocation-arg0-eval.eps") (render-reduction-relation-rules '("method invocation - argi eval")) (render-reduction-relation expr-reductions "rules/method-invocation-argi-eval.eps") (render-reduction-relation-rules '("method invocation - no args")) (render-reduction-relation expr-reductions "rules/method-invocation-no-args.eps") (render-reduction-relation-rules '("method invocation - args")) (render-reduction-relation expr-reductions "rules/method-invocation-args.eps") (render-reduction-relation-rules '("raw method invocation")) (render-reduction-relation expr-reductions "rules/method-invocation-raw.eps") (render-reduction-relation-rules '("equals - l-operand eval")) (render-reduction-relation expr-reductions "rules/equals-l-operand-eval.eps") (render-reduction-relation-rules '("equals - r-operand eval")) (render-reduction-relation expr-reductions "rules/equals-r-operand-eval.eps") (render-reduction-relation-rules '("equals")) (render-reduction-relation expr-reductions "rules/equals.eps") (render-reduction-relation-rules '("typecast - object eval")) (render-reduction-relation expr-reductions "rules/typecast-object-eval.eps") (render-reduction-relation-rules '("typecast")) (render-reduction-relation expr-reductions "rules/typecast.eps") (render-reduction-relation-rules '("instanceof - object eval")) (render-reduction-relation expr-reductions "rules/instanceof-object-eval.eps") (render-reduction-relation-rules '("instanceof")) (render-reduction-relation expr-reductions "rules/instanceof.eps") (render-reduction-relation-rules '("assign -- object eval")) (render-reduction-relation expr-reductions "rules/assign-object-eval.eps") (render-reduction-relation-rules '("assign")) (render-reduction-relation expr-reductions "rules/assign.eps") (render-reduction-relation-rules '("assign field -- object eval")) (render-reduction-relation expr-reductions "rules/assign-field-object-eval.eps") (render-reduction-relation-rules '("assign field")) (render-reduction-relation expr-reductions "rules/assign-field.eps") (render-reduction-relation-rules '("if-then-else -- object eval")) (render-reduction-relation expr-reductions "rules/if-then-else-object-eval.eps") (render-reduction-relation-rules '("if-then-else")) (render-reduction-relation expr-reductions "rules/if-then-else.eps") (render-reduction-relation-rules '("variable declaration -- object eval")) (render-reduction-relation expr-reductions "rules/variable-declaration-object-eval.eps") (render-reduction-relation-rules '("variable declaration")) (render-reduction-relation expr-reductions "rules/variable-declaration.eps") (render-reduction-relation-rules '("begin -- empty expression list")) (render-reduction-relation expr-reductions "rules/begin-empty-expression-list.eps") (render-reduction-relation-rules '("begin -- e_0 evaluation")) (render-reduction-relation expr-reductions "rules/begin-e_0-evaluation.eps") (render-reduction-relation-rules '("begin -- e_i evaluation")) (render-reduction-relation expr-reductions "rules/begin-e_i-evaluation.eps") (render-reduction-relation-rules '("begin -- complete")) (render-reduction-relation expr-reductions "rules/begin-complete.eps") (render-reduction-relation-rules '("pop η")) (render-reduction-relation expr-reductions "rules/pop.eps") (render-metafunctions length-bug default-value default-value* h-max h-malloc h-malloc-n-helper h-malloc-n internal-h-malloc-n* h-malloc-n* storelike-lookup h-lookup h-extend* η-lookup η-extend* restricted-field-lookup field-lookup restrict-object class-name parent-name field-list class-list-extend class-lookup class-list-from-object class-parents+self field-lists-extend #:file "javalite-metafunctions-p1.eps") (render-metafunctions fields-parents+self method-name method-expression method-args method-lookup cast instanceof* inject inject/with-state #:file "javalite-metafunctions-p2.eps")
false
7e8a4e8df7400f40e718e8617beb2413844f4ac8
5130312f0f3831ada0801a5b73995c9c501d15f7
/out/outline.rkt
63a493f20790fc9e890e4182ea4cee4bcb459d9c
[ "Apache-2.0" ]
permissive
zen3d/ruckus
5f6ee5f03d764332a889ac7d64e56c11613847f7
45c5928376092ca911afabfba73af28877c87166
refs/heads/master
2020-04-13T17:23:24.756503
2018-12-28T00:36:06
2018-12-28T00:36:06
163,346,905
5
0
NOASSERTION
2018-12-28T00:14:11
2018-12-28T00:14:11
null
UTF-8
Racket
false
false
2,392
rkt
outline.rkt
#lang racket ; Command line driver for 2D outline generation. ; ; Output is in SVG. ; ; For command-line usage, see the end of this file or run with '--help'. (require "../lang/loader.rkt") (require "./marching-squares.rkt") ; Knobs controlled from the command line, with default values: (define design-size 128) ; size of square ROI to consider (define design-quantum 1) ; size of quantum for terminal contour (define design-unit 'mm) ; real-world mapping of design units (define (run) (command-line #:program "ruckus-export-outline" #:usage-help "Generates an SVG outline of the intersection of a design with the XY" "plane." #:help-labels "--- options controlling output quality ---" #:once-each [("-d" "--dimension") s ("Focus on a square around the origin, <s> units on a" "side. This is a hint to the algorithm, not a clipping region; parts of" "the design outside this square may be included in the output.") (set! design-size (string->number s))] [("-q" "--quantum") q ("Generate line segments no bigger than <q> units on" "either axis. This controls output quality; smaller <q> values make for" "smoother curves, but also bigger files and more compute time. In" "general, halving the <q> value doubles processing time.") (set! design-quantum (string->number q))] #:help-labels "--- real-world unit selection ---" #:once-any [("--mm") "Design uses millimeter units (default)." (set! design-unit 'mm)] [("--cm") "Design uses centimeter units." (set! design-unit 'cm)] [("--inch") "Design uses inch units." (set! design-unit 'in)] [("--pt") "Design uses typographical point units (1/72 inch)." (set! design-unit 'pt)] [("--px") "Design uses pixel units (no real meaning)." (set! design-unit 'px)] #:args (design-path output-path) (call-with-output-file output-path #:exists 'replace (lambda (f) (parameterize ([current-output-port f]) (outline->svg (load-frep design-path) design-size design-unit design-quantum)))))) (module+ main (run))
false
47c6ec053c86ed814b6a264c1f1d26161252a457
12c294500c7b5c37eeb588af94572bb9dc2419fa
/validate.rkt
f40f5c14d66838c884d1eee6bc81120bba18bdb3
[]
no_license
kodaimura/muraql
bf97be5bac8808f580b9314c9b6e59def8e536c9
05a0848185892558006533385ff13aba9740ef57
refs/heads/main
2023-03-03T14:10:56.935101
2021-02-14T11:35:34
2021-02-14T11:35:34
329,822,851
0
0
null
null
null
null
UTF-8
Racket
false
false
10,214
rkt
validate.rkt
#lang racket (require "utilities.rkt" "validate_items.rkt") (provide validate) (define op-definition? (lambda (definition) (eq? 'OPERATION_DEFINITION (hash-ref definition 'kind)))) (define fr-definition? (lambda (definition) (eq? 'FRAGMENT_DEFINITION (hash-ref definition 'kind)))) (define validate (lambda (document schema) (define opcount (length (filter op-definition? document))) (define frs (filter fr-definition? document)) (define error (fragment-spreads-not-form-cycles? frs)) (define fragments (for/hash ([fragment frs]) (values (hash-ref fragment 'name) fragment))) (if (null? error) (validate-definitions document opcount fragments schema) error))) (define validate-definitions (lambda (definitions opcount fragments schema) (define opnames (make-hash)) (define frnames (make-hash)) (define errors '()) (for ([definition definitions]) (let ([error (validate-definition definition opnames frnames opcount fragments schema)]) (set! errors (append errors error)))) errors)) (define validate-definition (lambda (definition opnames frnames opcount fragments schema) (define name (hash-ref definition 'name)) (if (op-definition? definition) (let ([errors (validate-operation definition opnames opcount fragments schema)]) (hash-set! opnames name void) errors) (let ([errors (validate-fragment definition frnames fragments schema)]) (hash-set! frnames name void) errors)))) (define validate-operation (lambda (operation opnames opcount fragments schema) (define roottype (send schema get-roottype (hash-ref operation 'operation))) (define selectionset (hash-ref operation 'selectionset)) (if (eq? 'null roottype) (make-error "~a operation can not use." (hash-ref operation 'operation)) (append (unique-operation-name? operation opnames) (lone-anonymous-operation? operation opcount) (validate-fields selectionset roottype fragments schema))))) (define validate-fragment (lambda (fragment frnames fragments schema) (define error1 (unique-fragment-name? fragment frnames)) (define error2 (fragment-target-type-defined-on-schema? fragment schema)) (define error3 (fragment-target-objecttype? fragment schema)) (if (not (null? (append error2 error3))) (append error2 error3 error1) (let ([selectionset (hash-ref fragment 'selectionset)] [targettype (send schema get-type (hash-ref (hash-ref fragment 'typecond) 'name))]) (validate-fragment-fields selectionset targettype fragments schema))))) (define validate-fragment-fields (lambda (selectionset targettype fragments schema) (validate-fields selectionset targettype fragments schema))) (define fragment-spread? (lambda (selection) (eq? (hash-ref selection 'kind) 'FRAGMENT_SPREAD))) (define inline-fragment? (lambda (selection) (eq? (hash-ref selection 'kind) 'INLINE_FRAGMENT))) (define validate-fields (lambda (selectionset parenttype fragments schema [names (make-hash)] [aliases (make-hash)]) (define errors '()) (for ([selection selectionset]) (let ([error (cond ((fragment-spread? selection) (validate-fragmentspread selection parenttype fragments schema names aliases)) ((inline-fragment? selection) (validate-inlinefragment selection parenttype fragments schema names aliases)) (else (validate-field selection parenttype fragments schema names aliases)))]) (set! errors (append errors error)))) errors)) (define validate-fragmentspread (lambda (selection parenttype fragments schema names aliases) (define error1 (fragment-defined-on-document? selection fragments)) (cond ((not (null? error1)) error1) (else (let ([error2 (fragment-spread-match-typecond? selection parenttype fragments)] [error3 (validate-fragmentspread-fieldsname selection parenttype fragments schema names aliases)]) (append error2 error3)))))) (define validate-fragmentspread-fieldsname (lambda (selection parenttype fragments schema names aliases) (define errors '()) (define fragment (hash-ref fragments (hash-ref selection 'name))) (for ([selection (hash-ref fragment 'selectionset)]) (let ([error (validate-fragment-fieldname selection parenttype fragments schema names aliases)]) (set! errors (append errors error)))) errors)) (define validate-inlinefragment-fieldsname (lambda (_selection parenttype fragments schema names aliases) (define errors '()) (for ([selection (hash-ref _selection 'selectionset)]) (let ([error (validate-fragment-fieldname selection parenttype fragments schema names aliases)]) (set! errors (append errors error)))) errors)) (define validate-fragment-fieldname (lambda (selection parenttype fragments schema names aliases) (cond ((fragment-spread? selection) (validate-fragmentspread selection parenttype fragments schema names aliases)) ((inline-fragment? selection) (validate-inlinefragment selection parenttype fragments schema names aliases)) (else (validate-fieldname selection names aliases))))) (define validate-inlinefragment (lambda (selection parenttype fragments schema names aliases) (define error1 (inline-fragment-target-type-defined-on-schema? selection schema)) (define error2 (inline-fragment-target-objecttype? selection schema)) (define error3 (inline-fragment-match-typecond? selection parenttype schema)) (cond ((not (null? (append error1 error2 error3))) (let ([error4 (validate-inlinefragment-fieldsname selection parenttype fragments schema names aliases)]) (append error4 error1 error2 error3))) (else (let* ([typecond (hash-ref (hash-ref selection 'typecond) 'name)] [parenttype* (send schema get-type typecond)]) (validate-fields (hash-ref selection 'selectionset) parenttype* fragments schema names aliases)))))) (define validate-fieldname (lambda (selection names aliases) (define name (hash-ref selection 'name)) (define alias (hash-ref selection 'alias)) (define error (response-name-conflict? selection names aliases)) (if (eq? alias 'undefined) (hash-set! names name void) (hash-set! aliases alias name)) error)) (define validate-field (lambda (selection parenttype fragments schema names aliases) (define error1 (validate-fieldname selection names aliases)) (define error2 (field-defined-on-type? selection parenttype)) (cond ((eq? (hash-ref selection 'name) '__typename) null) ((and (member? (hash-ref selection 'name) (list '__schema '__type)) (eq? (hash-ref (send schema get-querytype) 'name) (hash-ref parenttype 'name))) null) ((not (null? error2)) (append error1 error2)) (else (let ([error3 (validate-field* selection parenttype fragments schema)]) (append error1 error3)))))) (define validate-field* (lambda (selection parenttype fragments schema) (define error1 (validate-args selection parenttype schema)) (define error2 (if (null? (hash-ref selection 'selectionset)) (validate-leaf-field selection parenttype schema) (validate-nonleaf-field selection parenttype fragments schema))) (append error1 error2))) (define validate-leaf-field (lambda (selection parenttype schema) (leaf-field-scalar? selection parenttype schema))) (define validate-nonleaf-field (lambda (selection parenttype fragments schema) (define error (nonleaf-field-object? selection parenttype schema)) (if (not (null? error)) error (let* ([field (hash-ref (hash-ref parenttype 'fields) (hash-ref selection 'name))] [selectionset (hash-ref selection 'selectionset)] [type (send schema get-type (get-fieldtype-name (hash-ref field 'type)))]) (validate-fields selectionset type fragments schema))))) (define validate-args (lambda (selection parenttype schema) (define field (hash-ref (hash-ref parenttype 'fields) (hash-ref selection 'name))) (define args (hash-ref selection 'args)) (define argnames (for/hash ([arg args]) (values (hash-ref arg 'name) void))) (append (validate-args* args field parenttype schema) (all-arguments-provided? argnames field)))) (define validate-args* (lambda (args field parenttype schema) (define names (make-hash)) (define errors '()) (for ([arg args]) (let ([error (validate-arg arg field parenttype names schema)]) (set! errors (append errors error)) (hash-set! names (hash-ref arg 'name) void))) errors)) (define validate-arg (lambda (arg field parenttype names schema) (define error1 (argument-defined-on-field? arg field parenttype)) (define error2 (unique-argument-name? arg names)) (define errors (append error1 error2)) (if (null? errors) (validate-value arg field schema) errors))) (define validate-value (lambda (arg fielddef schema) (define value (hash-ref arg 'value)) (define argdef (findf (lambda (x) (eq? (hash-ref x 'name) (hash-ref arg 'name))) (hash-ref fielddef 'args))) (inputvalue-coercible? value (hash-ref argdef 'type) schema)))
false
2eae4036b0df0b4ef2d82ee2f56461bae64c4c13
0bd832b9b372ee7d4877e99b68536c15a7f7c9c9
/Chp4/4.3-data-directed.rkt
3ea258b14246acb7eaf930352a69d79cceb24cb8
[]
no_license
jwilliamson1/schemer
eff9c10bcbcdea9110a44c80769a0334119b3da4
c2f9743392652664f1ff5687819f040e724c8436
refs/heads/master
2022-01-06T14:52:10.638822
2021-12-31T21:32:22
2021-12-31T21:32:22
75,143,723
0
0
null
2020-11-11T13:11:47
2016-11-30T02:37:55
Racket
UTF-8
Racket
false
false
2,508
rkt
4.3-data-directed.rkt
#lang racket (define *the-table* (make-hash)) (define (put key value)(hash-set! *the-table* key value)) (define (get key)(hash-ref *the-table* key #f)) (define (type-tag exp) (car exp)) (define (self-evaluating? exp) (cond ((number? exp) true) ((string? exp) true) (else false))) (define (variable? exp) (symbol? exp)) (define (make-lambda parameters body) (cons 'lambda (cons parameters body))) ; specific implementations (define (lookup-variable-value)(error "not implemented")) (define (text-of-quotation exp) (cadr exp)) ;assignment (define (assignment-variable exp) (cadr exp)) (define (assignment-value exp) (caddr exp)) (define (set-variable-value! var val env)(error "not done")) (define (eval-assignment exp env) (set-variable-value! (assignment-variable exp) (eval (assignment-value exp) env) env) 'ok) ;define (define (definition-variable exp) (if (symbol? (cadr exp)) (cadr exp) (caadr exp))) (define (definition-value exp) (if (symbol? (cadr exp)) (caddr exp) (make-lambda (cdadr exp) ; formal parameters (cddr exp)))) ; body (define (eval-definition exp env) (define-variable! (definition-variable exp) (eval (definition-value exp) env) env) 'ok) ;lambda (define (lambda-parameters exp) (cadr exp)) (define (lambda-body exp) (cddr exp)) (define (make-procedure parameters body env) (list 'procedure parameters body env)) (define (compound-procedure? p) (tagged-list? p 'procedure)) (define (procedure-parameters p) (cadr p)) (define (procedure-body p) (caddr p)) (define (procedure-environment p) (cadddr p)) (define (eval-procedure exp env) (make-procedure (lambda-parameters exp) (lambda-body exp) env)) (define (install-eval-actions) (put 'self-evaluating (lambda (x y) x)) (put 'variable (lambda (x y)(lookup-variable-value))) (put 'quote (lambda (x y)(text-of-quotation x))) (put 'set! (lambda (x y) (eval-assignment x y))) (put 'define (lambda (x y) eval-definition x y)) (put 'lambda (lambda (x y) eval-procedure x y)) 'Done) (install-eval-actions) (define (eval exp env) (cond ((self-evaluating? exp) exp) ((variable? exp) (lookup-variable-value exp env)) (else (let ((op (get (type-tag exp)))) (if op (op exp env) (error "operation not found")))))) (eval 1 (list '())) (eval "echo" (list '())) (eval (list 'quote 'text 'more) (list '()))
false
dd00b68fd8a6f4a5f9c68807e4253ff4c4e7c4f4
eb87c8b1ce8591d207643d3924b7939228f1a4fe
/pj-7.1/src/import-leftout.rkt
86e170d4d7ae44d58c5fa3af1c3c1dbcef77f79a
[]
no_license
brownplt/insta-model
06543b43dde89913c219d476ced0f51a439add7b
85e2c794ec4b1befa19ecb85f2c8d2509ec8cf42
refs/heads/main
2023-08-30T19:06:58.083150
2023-05-03T18:53:58
2023-05-10T22:29:18
387,500,638
5
0
null
2022-04-23T23:06:52
2021-07-19T14:53:09
Racket
UTF-8
Racket
false
false
3,787
rkt
import-leftout.rkt
#lang racket/base ;; Import counts / reasons for left-out (omitted) tests. ;; ;; Usage: ;; racket import-leftout.rkt ;; ;; Prints a bunch of TeX `\item`s. ;; --- (require (only-in "import-tsv.rkt" tex-escape) racket/string racket/runtime-path) (define-runtime-path left-out.csv "../../left-out_reason.csv") (define (comma-split str) (string-split str ",")) (define (parse csv) (with-input-from-file csv (lambda () (for/vector ((ln (in-lines))) (for/vector ((str (in-list (comma-split ln)))) (or (string->number str) str)))))) (define (get-reason-totals* tbl**) (define titlev (vector-ref tbl** 0)) (define N (vector-length titlev)) (define totalv (make-vector N 0)) (for* ((row-idx (in-range 1 (vector-length tbl**))) (col-idx (in-range 1 N))) (vector-set! totalv col-idx (+ (vector-ref totalv col-idx) (vector-ref (vector-ref tbl** row-idx) col-idx))) (void)) (values titlev totalv)) (define (get-reason-totals tbl**) (define-values [titlev totalv] (get-reason-totals* tbl**)) (define N (vector-length titlev)) (for/hash ((k (in-vector titlev)) (v (in-vector totalv))) (values k v))) (define (top-reasons tbl0**) (define too-small 0) (let loop ([tbl** tbl0**]) (define-values [titlev totalv] (get-reason-totals* tbl**)) #;(printf "tbl N ~a~n ~a~n ~a~n" (vector-length tbl**) titlev totalv) (define-values [top-title top-total] (for/fold ([tt #f] [tn #f]) ([curr-t (in-vector titlev)] [curr-n (in-vector totalv)]) (if (or (not tn) (< tn curr-n)) (values curr-t curr-n) (values tt tn)))) (if (<= top-total too-small) (let ((h (for/hash ([curr-t (in-vector titlev)] [curr-n (in-vector totalv)] #:when (< 0 curr-n)) (values curr-t curr-n)))) #;(newline) #;(pretty-write tbl**) (newline) (for ((kv (in-list (sort-reason-hash h)))) (printf " \\item ~a use ~a~n" (cdr kv) (car kv)))) (let ((top-idx (vindex-of titlev top-title))) (printf " \\item ~a use ~a~n" top-total top-title) (loop (delete-column (delete-row* tbl** (lambda (r) (define n (vector-ref r top-idx)) (and (real? n) (< 0 n)))) top-idx)))))) (define (delete-row* tbl delete?) (for/vector ((r (in-vector tbl)) #:unless (delete? r)) r)) (define (delete-column tbl i) (for/vector ((r (in-vector tbl))) (vector-remove r i))) (define (vector-remove v i) (build-vector (sub1 (vector-length v)) (lambda (k) (vector-ref v (+ k (if (< k i) 0 1)))))) (define (vindex-of v i) (for/first ((k (in-range (vector-length v))) #:when (equal? i (vector-ref v k))) k)) (define (order2 kv0 kv1) (or (> (cdr kv0) (cdr kv1)) (and (= (cdr kv0) (cdr kv1)) (string<=? (car kv0) (car kv1))))) (define (sort-reason-hash h) (filter (lambda (kv) (< 0 (cdr kv))) (sort (hash->list h) order2))) (define (print-table h) (define kv* (sort-reason-hash h)) (printf " \\begin{tabular}{lr}~n") (printf " Filter & Tests Caught \\\\\\hline~n") (for ((kv (in-list kv*))) (printf " ~a & ~a \\\\~n" (tex-escape (car kv)) (cdr kv)) (void)) (printf " \\end{tabular}~n") (void)) ;; --- (module+ main (require racket/cmdline) (unless (file-exists? left-out.csv) (raise-argument-error 'import-leftout "file-exists?" left-out.csv)) (define tbl** (parse left-out.csv)) #;(print-table (get-reason-totals tbl**)) (top-reasons tbl**) (void))
false
bc20bfb818c2aded24bee62bdd35557e27c793c0
3922167fbcc0655bb6fc8bb4886bf0e65d6a155a
/tests/test-compile-file.rkt
79552d9962ff7ed4c01cdf75a07f507b4a635e42
[ "MIT" ]
permissive
Gradual-Typing/Grift
d380b334aa53896d39c60c2e3008bfab73a55590
5fa76f837a0d6189332343d7aa899892b3c49583
refs/heads/master
2021-11-23T07:25:24.221457
2021-11-04T14:35:53
2021-11-04T14:35:53
27,832,586
70
12
MIT
2021-09-30T14:03:22
2014-12-10T18:06:44
C
UTF-8
Racket
false
false
2,227
rkt
test-compile-file.rkt
#lang racket/base ;; This is a redo of the basic compiler with interpreters between every micro compiler. ;; Once the file is finished compiling the program is run and the value checked against ;; an expected value. The real compiler is then invoked. And the result once again checked. (require rackunit racket/exn racket/port racket/file racket/system racket/control "../src/errors.rkt") (provide (all-defined-out)) (define-check (check-io run-thunk input output error) (define outp (open-output-string 'current-output-string)) (define errp (open-output-string 'current-error-string)) (define old-cop (current-output-port)) (define old-cep (current-error-port)) (define (print-exn e) (display (exn->string e) (current-error-port))) (define returns (parameterize ([current-input-port (open-input-string input)] [current-output-port outp] [current-error-port errp]) (with-handlers ([exn:break? abort] [exn:fail? print-exn] [exn:grift? print-exn]) (parameterize-break #t (run-thunk))))) (define out (get-output-string outp)) (define err (get-output-string errp)) (unless (and (regexp-match? output out) (regexp-match? error err)) (fail-check (string-append (format "umatched io:\n") (format "stdio:\n") (format "\texpected=\n~a\n" output) (format "\trecieved=\n~a\n" out) (format "stderr:\n") (format "\texpected=\n~a\n" error) (format "\trecieved=\n~a\n" err)))) returns) (define (maybe-file->regexp-match? path default) (if (file-exists? path) (let ([regex (pregexp (file->string path))]) (lambda (err) (regexp-match? regex err))) default)) (define (test-compile-file test-src th) (define (file?->string p d) (cond [(file-exists? p) (file->string p)] [else d])) (define input (file?->string (path-replace-suffix test-src #".in") "")) (define out-rx (file?->string (path-replace-suffix test-src #".out.rx" ""))) (define err-rx (file?->string (path-replace-suffix test-src #".err.rx" "^$"))) (check-io th input out-rx err-rx))
false
dc463bcf58b0c0ab3ba58b085e6780cf8e315e4c
537789710941e25231118476eb2c56ae0b745307
/ssh/digitama/algorithm/fingerprint.rkt
23d26cfea2643193827486a56126b9614a483b18
[]
no_license
wargrey/lambda-shell
33d6df40baecdbbd32050d51c0b4d718e96094a9
ce1feb24abb102dc74f98154ec2a92a3cd02a17e
refs/heads/master
2023-08-16T22:44:29.151325
2023-08-11T05:34:08
2023-08-11T05:34:08
138,468,042
0
1
null
null
null
null
UTF-8
Racket
false
false
648
rkt
fingerprint.rkt
#lang typed/racket/base (provide (all-defined-out)) (require racket/symbol) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define ssh-key-fingerprint : (->* (Symbol Bytes) (#:hash (->* (Bytes) (Natural (Option Natural)) Bytes) #:digest (-> Bytes Bytes)) String) (lambda [keytype #:hash [hash sha256-bytes] #:digest [digest values] key-raw] (define TYPE : String (string-upcase (symbol->immutable-string keytype))) (define HASH : String (string-upcase (format "~a" (object-name sha256-bytes)))) (string-append TYPE " " HASH ":" (bytes->string/utf-8 (digest (hash key-raw))))))
false
5a474070e166c9468731e18fa933a7a713487ce7
b0c1638c5396000a5c6e8c5131169218362511da
/Scheme/seminars/tasks.week5-bonus.rkt
078575804ce71baafc49e96ccaebe4045e12d043
[]
no_license
rostislavts/FP-course-FMI
add89f186ccf144aed57385ee4c349f8dee62b20
8c7f8cb0532111a121147d2c979478758cf74251
refs/heads/master
2022-11-17T18:28:08.279578
2020-07-16T14:19:51
2020-07-16T14:19:51
280,173,623
0
0
null
null
null
null
UTF-8
Racket
false
false
5,245
rkt
tasks.week5-bonus.rkt
#lang racket (define (digit-counter n) (if (= n 0) 0 (+ 1 (digit-counter (quotient n 10))))) ;;; Triffon's tasks ;;; Task1 (define (middle-digit n) (define digits (digit-counter n)) (if (even? digits) #f (remainder (quotient n (expt 10 (quotient digits 2))) 10))) (define (all? p? l) (if (null? l) #t (if (p? (car l) ) (all? p? (cdr l)) #f))) ;;; Task2 (define (is-em? l op f) (define help1 (all? (lambda (x) (member (f x) l)))) (define help2 (all? (lambda (x) (all? (lambda (y) (= (op (f x) (f y)) (f (op x y)))) l)) l)) (and help1 help2)) (define (from-to a b) (if (> a b) '() (cons a (from-to (+ 1 a) b)))) (define (any? p? l) (if (null? l) #f (if (p? (car l)) #t (any? p? (cdr l))))) ;;; Task3 (define (meet-twice? f g a b) (define l (from-to a b)) (any? (lambda (x) (any? (lambda (y) (and (not (= x y)) (= (f x) (g x)) (= (f y) (g y)))) l)) l)) ;;; Task4 (define (next-look-and-say l) (define (count x l1) (if (null? l1) 0 (if (= (car l1) x) (+ 1 (count x (cdr l1)) ) 0))) (if (null? l) l (let ((c (count (car l) l))) (cons c (cons (car l) (next-look-and-say (drop l c))))))) (define (foldl op nv l) (if (null? l) nv (foldl op (op nv (car l)) (cdr l)))) (define (atom? x) (and (not (null? x)) (not (list? x)))) (define (deep-foldl op nv term l) (foldl op nv (map (lambda (x) (if (atom? x) (term x) (deep-foldl op nv term x))) l))) ;;; Deyan's tasks ;;; Task1 (define (calcPoly l x) (foldl (lambda (u v) (+ (* u x) v) ) 0 l)) (define l1 '(1 2 3 4 5)) (define l2 '(4 5 6 7 8)) (define (member? x l) (and (not (null? l)) (if (= x (car l)) #t (member? x (cdr l))))) ;;; Task2 (define (interception l1 l2) (if (null? l1) '() (if (member? (car l1) l2) (cons (car l1) (interception (cdr l1) l2)) (interception (cdr l1) l2)))) (define (union l1 l2) (if (null? l1) l2 (if (member? (car l1) l2) (union (cdr l1) l2) (cons (car l1) (union (cdr l1) l2))))) (define (set-minus l1 l2) (if (null? l1) l1 (if (member? (car l1) l2) (set-minus (cdr l1) l2) (cons (car l1) (set-minus (cdr l1) l2))))) (define (getLastDigit n) (remainder n 10)) (define (getFirstDigit n) (quotient n (expt 10 (- (digit-counter n) 1)))) ;;; Task3 (define (numGame? l) (define (help prevLastDigit currL) (if (null? currL) #t (if (= (getFirstDigit (car currL)) prevLastDigit) (help (getLastDigit (car currL)) (cdr currL)) #f))) (and (not (null? l)) (help (getLastDigit (car l)) (cdr l)))) (define (accumulate op nv a b term next) (if (> a b) nv (op (term a) (accumulate op nv (next a) b term next)))) (define 1+ (lambda (x) (+ 1 x))) (define (sq x) (* x x)) (define id (lambda (x) x)) ;;; Task4 (define (generate a b l) (accumulate (lambda (x y) (if (member? (sq x) l) (cons x y) y)) '() a b id 1+)) (define (lastElement l) (if (null? l) '() (if (null? (cdr l)) (car l) (lastElement (cdr l))))) (define (push-back x l) (append l (list x))) (define (getLarger interval1 interval2) (if (> (length interval1) (length interval2)) interval1 interval2)) (define (print result) (if (null? result) '() (cons (car result) (lastElement result)))) ;;; Task5 (define (largestInterval f g a b) (define (help max curr currA) (if (> currA b) (print (getLarger max curr)) (if (= (f currA) (g currA)) (help max (push-back currA curr) (+ 1 currA)) (if (> (length curr) (length max)) (help curr '() (+ 1 currA)) (help max '() (+ 1 currA)))))) (help '() '() a)) ;;; Fibonacci iterative (define (fib n) (define (help i fib1 fib2) (if (< i n) (help (+ 1 i) fib2 (+ fib1 fib2)) fib2)) (if (= n 0) 0 (help 1 0 1))) ;;; N choose K using only accumulate (define (nchk n k) (accumulate * 1 1 k (lambda (i) (/ (- (+ n 1) i) i)) (lambda (x) (+ 1 x)))) (define (2^ n) (accumulate * 1 1 n (lambda (i) 2) 1+)) (define (dec-to-bin n) (define (help mult currN res) (if (= currN 0) res (help (+ 1 mult) (quotient currN 2) (+ res (* (remainder currN 2) (expt 10 mult)))))) (help 0 n 0)) (define (deep-foldl* op nv term l) (foldl op nv (map (lambda (x) (if (atom? x) (term x) (deep-foldl* op nv term x))) l)))
false
d5368b0fb9ece427178f4ba59eeae27ef5a92958
fc6465100ab657aa1e31af6a4ab77a3284c28ff0
/results/brutally-unfair-24/stlc-sub-4-enum-brutally-unfair.rktd
be745a4f3746ee55de1992a7123e3faacff5df5b
[]
no_license
maxsnew/Redex-Enum-Paper
f5ba64a34904beb6ed9be39ff9a5e1e5413c059b
d77ec860d138cb023628cc41f532dd4eb142f15b
refs/heads/master
2020-05-21T20:07:31.382540
2017-09-04T14:42:13
2017-09-04T14:42:13
17,602,325
0
0
null
null
null
null
UTF-8
Racket
false
false
776,623
rktd
stlc-sub-4-enum-brutally-unfair.rktd
(start 2015-06-19T12:40:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:40:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:40:49 (#:amount 34693664 #:time 296)) (heartbeat 2015-06-19T12:40:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:41:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:41:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:41:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:41:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:41:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:41:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:42:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:42:11 (#:amount 95146640 #:time 332)) (heartbeat 2015-06-19T12:42:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:42:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:42:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:42:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:42:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:43:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:43:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:43:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:43:37 (#:amount 98332552 #:time 334)) (heartbeat 2015-06-19T12:43:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:43:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:43:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:44:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:44:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:44:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:44:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:44:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:44:55 (#:amount 97776728 #:time 331)) (heartbeat 2015-06-19T12:44:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:45:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:45:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:45:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:45:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:45:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:45:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:46:08 (#:amount 98128416 #:time 279)) (heartbeat 2015-06-19T12:46:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:46:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:46:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:46:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:46:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:46:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:47:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:47:19 (#:amount 97869392 #:time 285)) (heartbeat 2015-06-19T12:47:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:47:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:47:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:47:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:47:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:48:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:48:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:48:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:48:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:48:45 (#:amount 98087376 #:time 301)) (heartbeat 2015-06-19T12:48:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:48:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:49:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:49:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:49:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:49:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:49:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:49:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:50:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:50:14 (#:amount 97861656 #:time 339)) (heartbeat 2015-06-19T12:50:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:50:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:50:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:50:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:50:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:51:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:51:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:51:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:51:32 (#:amount 98051200 #:time 332)) (heartbeat 2015-06-19T12:51:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:51:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:52:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:52:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:52:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:52:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:52:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:52:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:52:56 (#:amount 97894736 #:time 283)) (heartbeat 2015-06-19T12:53:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:53:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:53:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:53:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:53:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:53:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:54:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:54:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:54:15 (#:amount 97965760 #:time 331)) (heartbeat 2015-06-19T12:54:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:54:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:54:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:54:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:55:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:55:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:55:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:55:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:55:39 (#:amount 97928728 #:time 332)) (heartbeat 2015-06-19T12:55:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:55:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:56:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:56:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:56:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:56:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:56:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:56:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:57:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:57:02 (#:amount 97930144 #:time 281)) (heartbeat 2015-06-19T12:57:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:57:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:57:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:57:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:57:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:58:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:58:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:58:19 (#:amount 97858944 #:time 281)) (heartbeat 2015-06-19T12:58:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:58:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:58:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:58:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:59:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:59:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:59:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T12:59:28 (#:amount 98075560 #:time 282)) (heartbeat 2015-06-19T12:59:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:59:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T12:59:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:00:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:00:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:00:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:00:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:00:39 (#:amount 97852616 #:time 283)) (heartbeat 2015-06-19T13:00:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:00:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:01:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:01:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:01:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:01:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:01:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:01:47 (#:amount 98057264 #:time 280)) (heartbeat 2015-06-19T13:01:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:02:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:02:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:02:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:02:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:02:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:02:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:02:59 (#:amount 97802576 #:time 333)) (heartbeat 2015-06-19T13:03:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:03:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:03:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:03:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:03:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:03:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:04:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:04:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:04:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:04:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:04:32 (#:amount 98103600 #:time 335)) (heartbeat 2015-06-19T13:04:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:04:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:05:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:05:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:05:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:05:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:05:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:05:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:06:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:06:07 (#:amount 97697200 #:time 337)) (heartbeat 2015-06-19T13:06:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:06:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:06:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:06:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:06:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:07:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:07:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:07:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:07:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:07:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:07:44 (#:amount 98242320 #:time 336)) (heartbeat 2015-06-19T13:07:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:08:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:08:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:08:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:08:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:08:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:08:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:09:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:09:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:09:20 (#:amount 97826328 #:time 339)) (heartbeat 2015-06-19T13:09:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:09:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:09:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:09:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:10:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:10:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:10:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:10:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:10:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:10:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:10:57 (#:amount 98082872 #:time 332)) (heartbeat 2015-06-19T13:11:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:11:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:11:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:11:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:11:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:11:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:12:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:12:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:12:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:12:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:12:34 (#:amount 97745344 #:time 330)) (heartbeat 2015-06-19T13:12:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:12:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:13:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:13:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:13:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:13:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:13:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:13:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:14:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:14:09 (#:amount 98095088 #:time 340)) (heartbeat 2015-06-19T13:14:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:14:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:14:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:14:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:14:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:15:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:15:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:15:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:15:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:15:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:15:46 (#:amount 97770056 #:time 288)) (heartbeat 2015-06-19T13:15:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:16:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:16:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:16:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:16:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:16:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:16:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:17:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:17:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:17:16 (#:amount 98141744 #:time 333)) (heartbeat 2015-06-19T13:17:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:17:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:17:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:17:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:18:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:18:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:18:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:18:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:18:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:18:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:18:51 (#:amount 97701776 #:time 334)) (heartbeat 2015-06-19T13:19:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:19:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:19:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:19:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:19:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:19:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:20:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:20:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:20:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:20:27 (#:amount 98086392 #:time 333)) (heartbeat 2015-06-19T13:20:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:20:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:20:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:21:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:21:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:21:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:21:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:21:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:21:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:22:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:22:04 (#:amount 97801272 #:time 335)) (heartbeat 2015-06-19T13:22:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:22:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:22:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:22:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:22:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:23:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:23:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:23:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:23:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:23:40 (#:amount 98053296 #:time 334)) (heartbeat 2015-06-19T13:23:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:23:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:24:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:24:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:24:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:24:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:24:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:24:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:25:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:25:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:25:15 (#:amount 97924848 #:time 334)) (heartbeat 2015-06-19T13:25:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:25:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:25:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:25:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:26:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:26:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:26:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:26:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:26:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:26:51 (#:amount 98100456 #:time 340)) (heartbeat 2015-06-19T13:26:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:27:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:27:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:27:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:27:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:27:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:27:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:28:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:28:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:28:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:28:24 (#:amount 97815672 #:time 335)) (heartbeat 2015-06-19T13:28:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:28:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:28:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:29:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:29:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:29:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:29:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:29:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:29:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:29:54 (#:amount 98074480 #:time 338)) (heartbeat 2015-06-19T13:30:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:30:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:30:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:30:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:30:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:30:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:31:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:31:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:31:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:31:26 (#:amount 97716168 #:time 333)) (heartbeat 2015-06-19T13:31:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:31:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:31:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:32:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:32:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:32:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:32:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:32:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:32:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:32:57 (#:amount 98183920 #:time 331)) (heartbeat 2015-06-19T13:33:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:33:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:33:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:33:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:33:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:33:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:34:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:34:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:34:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:34:27 (#:amount 97822344 #:time 331)) (heartbeat 2015-06-19T13:34:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:34:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:34:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:35:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:35:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:35:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:35:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:35:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:35:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:35:59 (#:amount 98061904 #:time 331)) (heartbeat 2015-06-19T13:36:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:36:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:36:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:36:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:36:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:36:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:37:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:37:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:37:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:37:29 (#:amount 97802920 #:time 334)) (heartbeat 2015-06-19T13:37:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:37:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:37:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:38:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:38:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:38:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:38:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:38:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:38:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:39:01 (#:amount 98109520 #:time 334)) (heartbeat 2015-06-19T13:39:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:39:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:39:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:39:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:39:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:39:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:40:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:40:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:40:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:40:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:40:32 (#:amount 97793440 #:time 334)) (heartbeat 2015-06-19T13:40:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:40:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:41:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:41:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:41:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:41:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:41:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:41:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:42:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:42:03 (#:amount 98083576 #:time 330)) (heartbeat 2015-06-19T13:42:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:42:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:42:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:42:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:42:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:43:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:43:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:43:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:43:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:43:36 (#:amount 97821080 #:time 334)) (heartbeat 2015-06-19T13:43:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:43:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:44:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:44:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:44:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:44:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:44:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:44:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:45:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:45:07 (#:amount 98092168 #:time 330)) (heartbeat 2015-06-19T13:45:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:45:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:45:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:45:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:45:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:46:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:46:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:46:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:46:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:46:40 (#:amount 97856680 #:time 331)) (heartbeat 2015-06-19T13:46:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:46:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:47:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:47:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:47:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:47:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:47:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:47:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:48:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:48:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:48:13 (#:amount 98164224 #:time 330)) (heartbeat 2015-06-19T13:48:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:48:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:48:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:48:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:49:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:49:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:49:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:49:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:49:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:49:44 (#:amount 97822624 #:time 332)) (heartbeat 2015-06-19T13:49:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:50:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:50:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:50:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:50:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:50:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:50:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:51:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:51:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:51:19 (#:amount 98058984 #:time 282)) (heartbeat 2015-06-19T13:51:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:51:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:51:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:51:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:52:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:52:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:52:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:52:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:52:41 (#:amount 97844712 #:time 339)) (heartbeat 2015-06-19T13:52:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:52:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:53:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:53:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:53:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:53:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:53:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:53:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:54:00 (#:amount 98026424 #:time 334)) (heartbeat 2015-06-19T13:54:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:54:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:54:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:54:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:54:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:54:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:55:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:55:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:55:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:55:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:55:34 (#:amount 97815584 #:time 340)) (heartbeat 2015-06-19T13:55:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:55:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:56:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:56:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:56:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:56:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:56:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:56:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:57:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:57:11 (#:amount 98050336 #:time 340)) (heartbeat 2015-06-19T13:57:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:57:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:57:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:57:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:57:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:58:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:58:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:58:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:58:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T13:58:33 (#:amount 97814008 #:time 336)) (heartbeat 2015-06-19T13:58:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:58:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:59:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:59:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:59:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:59:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:59:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T13:59:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:00:01 (#:amount 98139344 #:time 330)) (heartbeat 2015-06-19T14:00:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:00:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:00:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:00:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:00:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:00:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:01:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:01:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:01:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:01:23 (#:amount 97787888 #:time 333)) (heartbeat 2015-06-19T14:01:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:01:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:01:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:02:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:02:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:02:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:02:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:02:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:02:49 (#:amount 97926192 #:time 336)) (heartbeat 2015-06-19T14:02:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:03:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:03:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:03:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:03:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:03:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:03:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:04:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:04:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:04:17 (#:amount 97877088 #:time 334)) (heartbeat 2015-06-19T14:04:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:04:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:04:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:04:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:05:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:05:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:05:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:05:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:05:41 (#:amount 97940080 #:time 279)) (heartbeat 2015-06-19T14:05:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:05:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:06:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:06:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:06:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:06:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:06:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:06:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:07:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:07:06 (#:amount 97879376 #:time 331)) (heartbeat 2015-06-19T14:07:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:07:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:07:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:07:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:07:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:08:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:08:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:08:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:08:31 (#:amount 98000368 #:time 333)) (heartbeat 2015-06-19T14:08:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:08:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:08:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:09:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:09:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:09:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:09:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:09:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:09:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:09:55 (#:amount 97864552 #:time 335)) (heartbeat 2015-06-19T14:10:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:10:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:10:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:10:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:10:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:10:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:11:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:11:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:11:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:11:30 (#:amount 98055792 #:time 329)) (heartbeat 2015-06-19T14:11:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:11:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:11:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:12:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:12:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:12:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:12:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:12:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:12:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:13:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:13:04 (#:amount 97823392 #:time 337)) (heartbeat 2015-06-19T14:13:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:13:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:13:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:13:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:13:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:14:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:14:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:14:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:14:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:14:38 (#:amount 98193288 #:time 333)) (heartbeat 2015-06-19T14:14:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:14:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:15:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:15:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:15:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:15:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:15:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:15:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:16:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:16:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:16:13 (#:amount 97706920 #:time 333)) (heartbeat 2015-06-19T14:16:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:16:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:16:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:16:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:17:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:17:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:17:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:17:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:17:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:17:45 (#:amount 98103208 #:time 334)) (heartbeat 2015-06-19T14:17:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:18:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:18:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:18:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:18:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:18:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:18:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:19:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:19:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:19:20 (#:amount 97824904 #:time 333)) (heartbeat 2015-06-19T14:19:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:19:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:19:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:19:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:20:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:20:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:20:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:20:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:20:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:20:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:20:54 (#:amount 98062928 #:time 331)) (heartbeat 2015-06-19T14:21:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:21:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:21:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:21:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:21:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:21:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:22:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:22:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:22:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:22:27 (#:amount 97975272 #:time 334)) (heartbeat 2015-06-19T14:22:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:22:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:22:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:23:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:23:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:23:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:23:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:23:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:23:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:24:01 (#:amount 97962184 #:time 333)) (heartbeat 2015-06-19T14:24:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:24:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:24:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:24:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:24:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:24:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:25:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:25:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:25:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:25:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:25:36 (#:amount 97727088 #:time 339)) (heartbeat 2015-06-19T14:25:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:25:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:26:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:26:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:26:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:26:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:26:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:26:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:26:58 (#:amount 98315768 #:time 337)) (heartbeat 2015-06-19T14:27:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:27:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:27:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:27:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:27:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:27:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:28:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:28:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:28:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:28:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:28:38 (#:amount 97909272 #:time 341)) (heartbeat 2015-06-19T14:28:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:28:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:29:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:29:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:29:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:29:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:29:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:29:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:30:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:30:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:30:14 (#:amount 97957992 #:time 333)) (heartbeat 2015-06-19T14:30:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:30:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:30:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:30:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:31:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:31:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:31:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:31:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:31:43 (#:amount 97865504 #:time 335)) (heartbeat 2015-06-19T14:31:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:31:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:32:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:32:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:32:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:32:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:32:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:32:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:33:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:33:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:33:17 (#:amount 98246696 #:time 335)) (heartbeat 2015-06-19T14:33:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:33:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:33:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:33:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:34:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:34:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:34:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:34:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:34:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:34:49 (#:amount 97801432 #:time 347)) (heartbeat 2015-06-19T14:34:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:35:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:35:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:35:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:35:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:35:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:35:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:36:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:36:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:36:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:36:25 (#:amount 98102664 #:time 336)) (heartbeat 2015-06-19T14:36:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:36:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:36:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:37:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:37:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:37:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:37:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:37:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:37:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:37:55 (#:amount 97918056 #:time 330)) (heartbeat 2015-06-19T14:38:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:38:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:38:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:38:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:38:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:38:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:39:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:39:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:39:18 (#:amount 98090008 #:time 283)) (heartbeat 2015-06-19T14:39:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:39:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:39:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:39:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:40:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:40:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:40:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:40:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:40:42 (#:amount 97776744 #:time 282)) (heartbeat 2015-06-19T14:40:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:40:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:41:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:41:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:41:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:41:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:41:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:41:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:42:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:42:11 (#:amount 98085536 #:time 278)) (heartbeat 2015-06-19T14:42:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:42:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:42:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:42:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:42:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:43:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:43:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:43:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:43:24 (#:amount 97716520 #:time 332)) (heartbeat 2015-06-19T14:43:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:43:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:43:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:44:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:44:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:44:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:44:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:44:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:44:52 (#:amount 98192720 #:time 282)) (heartbeat 2015-06-19T14:44:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:45:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:45:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:45:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:45:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:45:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:45:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:46:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:46:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:46:21 (#:amount 97812504 #:time 333)) (heartbeat 2015-06-19T14:46:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:46:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:46:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:46:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:47:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:47:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:47:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:47:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:47:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:47:49 (#:amount 98114520 #:time 287)) (heartbeat 2015-06-19T14:47:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:48:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:48:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:48:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:48:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:48:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:48:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:49:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:49:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:49:22 (#:amount 97794800 #:time 337)) (heartbeat 2015-06-19T14:49:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:49:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:49:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:49:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:50:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:50:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:50:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:50:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:50:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:50:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:51:00 (#:amount 98089408 #:time 340)) (heartbeat 2015-06-19T14:51:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:51:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:51:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:51:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:51:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:51:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:52:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:52:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:52:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:52:33 (#:amount 97844376 #:time 336)) (heartbeat 2015-06-19T14:52:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:52:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:52:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:53:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:53:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:53:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:53:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:53:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:53:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:54:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:54:06 (#:amount 98077408 #:time 332)) (heartbeat 2015-06-19T14:54:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:54:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:54:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:54:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:54:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:55:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:55:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:55:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:55:34 (#:amount 97912184 #:time 284)) (heartbeat 2015-06-19T14:55:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:55:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:55:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:56:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:56:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:56:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:56:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:56:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:56:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:57:02 (#:amount 98127168 #:time 341)) (heartbeat 2015-06-19T14:57:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:57:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:57:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:57:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:57:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:57:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:58:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:58:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:58:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:58:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T14:58:39 (#:amount 97801088 #:time 335)) (heartbeat 2015-06-19T14:58:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:58:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:59:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:59:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:59:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:59:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:59:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T14:59:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:00:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:00:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:00:15 (#:amount 98103360 #:time 334)) (heartbeat 2015-06-19T15:00:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:00:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:00:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:00:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:01:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:01:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:01:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:01:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:01:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:01:50 (#:amount 97928632 #:time 333)) (heartbeat 2015-06-19T15:01:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:02:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:02:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:02:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:02:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:02:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:02:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:03:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:03:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:03:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:03:27 (#:amount 97983808 #:time 333)) (heartbeat 2015-06-19T15:03:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:03:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:03:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:04:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:04:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:04:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:04:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:04:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:04:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:05:04 (#:amount 97844896 #:time 338)) (heartbeat 2015-06-19T15:05:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:05:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:05:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:05:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:05:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:05:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:06:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:06:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:06:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:06:31 (#:amount 98040672 #:time 329)) (heartbeat 2015-06-19T15:06:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:06:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:06:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:07:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:07:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:07:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:07:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:07:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:07:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:07:55 (#:amount 97813224 #:time 281)) (heartbeat 2015-06-19T15:08:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:08:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:08:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:08:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:08:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:08:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:09:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:09:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:09:16 (#:amount 97948920 #:time 303)) (heartbeat 2015-06-19T15:09:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:09:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:09:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:09:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:10:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:10:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:10:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:10:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:10:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:10:47 (#:amount 97902568 #:time 335)) (heartbeat 2015-06-19T15:10:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:11:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:11:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:11:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:11:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:11:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:11:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:12:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:12:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:12:22 (#:amount 98000072 #:time 334)) (heartbeat 2015-06-19T15:12:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:12:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:12:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:12:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:13:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:13:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:13:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:13:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:13:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:13:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:13:58 (#:amount 97908752 #:time 341)) (heartbeat 2015-06-19T15:14:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:14:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:14:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:14:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:14:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:14:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:15:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:15:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:15:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:15:35 (#:amount 98135624 #:time 333)) (heartbeat 2015-06-19T15:15:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:15:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:15:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:16:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:16:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:16:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:16:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:16:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:16:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:17:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:17:07 (#:amount 97868080 #:time 334)) (heartbeat 2015-06-19T15:17:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:17:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:17:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:17:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:17:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:18:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:18:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:18:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:18:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:18:37 (#:amount 98076176 #:time 334)) (heartbeat 2015-06-19T15:18:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:18:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:19:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:19:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:19:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:19:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:19:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:19:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:20:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:20:09 (#:amount 97807536 #:time 333)) (heartbeat 2015-06-19T15:20:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:20:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:20:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:20:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:20:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:21:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:21:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:21:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:21:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:21:43 (#:amount 98148016 #:time 337)) (heartbeat 2015-06-19T15:21:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:21:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:22:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:22:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:22:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:22:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:22:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:22:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:23:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:23:15 (#:amount 97728744 #:time 337)) (heartbeat 2015-06-19T15:23:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:23:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:23:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:23:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:23:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:24:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:24:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:24:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:24:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:24:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:24:47 (#:amount 98033808 #:time 281)) (heartbeat 2015-06-19T15:24:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:25:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:25:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:25:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:25:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:25:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:25:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:26:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:26:09 (#:amount 97846256 #:time 320)) (heartbeat 2015-06-19T15:26:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:26:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:26:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:26:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:26:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:27:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:27:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:27:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:27:30 (#:amount 98120856 #:time 315)) (heartbeat 2015-06-19T15:27:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:27:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:27:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:28:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:28:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:28:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:28:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:28:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:28:54 (#:amount 97917128 #:time 332)) (heartbeat 2015-06-19T15:28:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:29:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:29:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:29:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:29:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:29:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:29:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:30:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:30:15 (#:amount 98067400 #:time 330)) (heartbeat 2015-06-19T15:30:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:30:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:30:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:30:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:30:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:31:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:31:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:31:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:31:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:31:37 (#:amount 97923544 #:time 282)) (heartbeat 2015-06-19T15:31:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:31:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:32:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:32:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:32:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:32:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:32:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:32:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:32:58 (#:amount 98146600 #:time 282)) (heartbeat 2015-06-19T15:33:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:33:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:33:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:33:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:33:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:33:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:34:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:34:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:34:22 (#:amount 97780192 #:time 302)) (heartbeat 2015-06-19T15:34:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:34:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:34:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:34:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:35:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:35:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:35:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:35:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:35:43 (#:amount 98056280 #:time 279)) (heartbeat 2015-06-19T15:35:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:35:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:36:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:36:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:36:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:36:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:36:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:36:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:37:02 (#:amount 97859808 #:time 280)) (heartbeat 2015-06-19T15:37:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:37:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:37:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:37:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:37:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:37:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:38:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:38:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:38:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:38:27 (#:amount 98236400 #:time 338)) (heartbeat 2015-06-19T15:38:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:38:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:38:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:39:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:39:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:39:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:39:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:39:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:39:48 (#:amount 97731768 #:time 332)) (heartbeat 2015-06-19T15:39:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:40:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:40:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:40:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:40:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:40:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:40:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:41:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:41:10 (#:amount 98147616 #:time 332)) (heartbeat 2015-06-19T15:41:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:41:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:41:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:41:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:41:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:42:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:42:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:42:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:42:35 (#:amount 97877352 #:time 336)) (heartbeat 2015-06-19T15:42:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:42:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:42:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:43:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:43:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:43:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:43:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:43:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:43:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:44:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:44:08 (#:amount 98042464 #:time 330)) (heartbeat 2015-06-19T15:44:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:44:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:44:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:44:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:44:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:45:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:45:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:45:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:45:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:45:40 (#:amount 97835464 #:time 337)) (heartbeat 2015-06-19T15:45:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:45:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:46:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:46:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:46:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:46:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:46:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:46:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:47:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:47:13 (#:amount 98019784 #:time 336)) (heartbeat 2015-06-19T15:47:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:47:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:47:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:47:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:47:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:48:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:48:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:48:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:48:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:48:45 (#:amount 97740664 #:time 330)) (heartbeat 2015-06-19T15:48:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:48:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:49:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:49:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:49:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:49:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:49:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:49:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:50:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:50:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:50:18 (#:amount 98167704 #:time 282)) (heartbeat 2015-06-19T15:50:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:50:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:50:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:50:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:51:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:51:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:51:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:51:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:51:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:51:50 (#:amount 97880248 #:time 330)) (heartbeat 2015-06-19T15:51:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:52:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:52:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:52:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:52:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:52:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:52:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:53:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:53:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:53:21 (#:amount 98038344 #:time 303)) (heartbeat 2015-06-19T15:53:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:53:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:53:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:53:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:54:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:54:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:54:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:54:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:54:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:54:51 (#:amount 97914832 #:time 335)) (heartbeat 2015-06-19T15:54:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:55:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:55:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:55:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:55:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:55:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:55:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:56:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:56:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:56:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:56:27 (#:amount 98111272 #:time 328)) (heartbeat 2015-06-19T15:56:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:56:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:56:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:57:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:57:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:57:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:57:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:57:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:57:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:58:00 (#:amount 97792680 #:time 336)) (heartbeat 2015-06-19T15:58:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:58:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:58:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:58:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:58:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:58:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:59:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:59:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:59:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T15:59:36 (#:amount 98175152 #:time 334)) (heartbeat 2015-06-19T15:59:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:59:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T15:59:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:00:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:00:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:00:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:00:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:00:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:00:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:01:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:01:12 (#:amount 97866192 #:time 336)) (heartbeat 2015-06-19T16:01:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:01:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:01:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:01:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:01:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:02:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:02:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:02:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:02:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:02:47 (#:amount 98105384 #:time 335)) (heartbeat 2015-06-19T16:02:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:02:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:03:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:03:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:03:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:03:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:03:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:03:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:04:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:04:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:04:22 (#:amount 97793488 #:time 339)) (heartbeat 2015-06-19T16:04:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:04:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:04:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:04:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:05:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:05:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:05:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:05:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:05:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:05:54 (#:amount 98036784 #:time 329)) (heartbeat 2015-06-19T16:05:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:06:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:06:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:06:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:06:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:06:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:06:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:07:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:07:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:07:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:07:29 (#:amount 97839736 #:time 335)) (heartbeat 2015-06-19T16:07:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:07:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:07:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:08:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:08:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:08:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:08:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:08:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:08:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:09:03 (#:amount 98089744 #:time 332)) (heartbeat 2015-06-19T16:09:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:09:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:09:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:09:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:09:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:09:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:10:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:10:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:10:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:10:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:10:37 (#:amount 97914952 #:time 333)) (heartbeat 2015-06-19T16:10:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:10:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:11:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:11:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:11:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:11:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:11:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:11:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:12:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:12:12 (#:amount 98031440 #:time 334)) (heartbeat 2015-06-19T16:12:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:12:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:12:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:12:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:12:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:13:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:13:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:13:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:13:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:13:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:13:48 (#:amount 97846688 #:time 342)) (heartbeat 2015-06-19T16:13:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:14:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:14:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:14:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:14:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:14:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:14:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:15:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:15:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:15:24 (#:amount 98040200 #:time 332)) (heartbeat 2015-06-19T16:15:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:15:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:15:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:15:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:16:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:16:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:16:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:16:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:16:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:16:57 (#:amount 97895888 #:time 342)) (heartbeat 2015-06-19T16:16:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:17:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:17:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:17:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:17:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:17:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:17:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:18:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:18:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:18:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:18:28 (#:amount 98008536 #:time 330)) (heartbeat 2015-06-19T16:18:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:18:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:18:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:19:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:19:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:19:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:19:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:19:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:19:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:20:01 (#:amount 97702664 #:time 330)) (heartbeat 2015-06-19T16:20:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:20:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:20:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:20:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:20:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:20:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:21:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:21:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:21:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:21:29 (#:amount 98222080 #:time 281)) (heartbeat 2015-06-19T16:21:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:21:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:21:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:22:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:22:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:22:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:22:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:22:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:22:57 (#:amount 97802296 #:time 330)) (heartbeat 2015-06-19T16:22:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:23:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:23:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:23:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:23:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:23:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:23:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:24:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:24:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:24:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:24:29 (#:amount 98074608 #:time 336)) (heartbeat 2015-06-19T16:24:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:24:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:24:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:25:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:25:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:25:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:25:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:25:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:25:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:26:05 (#:amount 97760368 #:time 336)) (heartbeat 2015-06-19T16:26:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:26:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:26:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:26:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:26:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:26:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:27:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:27:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:27:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:27:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:27:41 (#:amount 98212504 #:time 338)) (heartbeat 2015-06-19T16:27:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:27:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:28:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:28:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:28:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:28:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:28:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:28:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:29:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:29:12 (#:amount 97780112 #:time 283)) (heartbeat 2015-06-19T16:29:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:29:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:29:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:29:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:29:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:30:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:30:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:30:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:30:35 (#:amount 98108648 #:time 277)) (heartbeat 2015-06-19T16:30:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:30:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:30:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:31:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:31:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:31:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:31:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:31:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:31:57 (#:amount 97852664 #:time 284)) (heartbeat 2015-06-19T16:31:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:32:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:32:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:32:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:32:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:32:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:32:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:33:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:33:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:33:20 (#:amount 98093776 #:time 283)) (heartbeat 2015-06-19T16:33:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:33:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:33:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:33:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:34:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:34:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:34:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:34:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:34:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:34:50 (#:amount 97759632 #:time 331)) (heartbeat 2015-06-19T16:34:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:35:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:35:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:35:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:35:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:35:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:35:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:36:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:36:12 (#:amount 98090744 #:time 335)) (heartbeat 2015-06-19T16:36:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:36:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:36:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:36:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:36:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:37:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:37:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:37:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:37:34 (#:amount 97773456 #:time 333)) (heartbeat 2015-06-19T16:37:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:37:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:37:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:38:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:38:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:38:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:38:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:38:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:38:58 (#:amount 98137976 #:time 285)) (heartbeat 2015-06-19T16:38:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:39:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:39:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:39:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:39:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:39:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:39:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:40:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:40:18 (#:amount 97947664 #:time 333)) (heartbeat 2015-06-19T16:40:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:40:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:40:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:40:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:40:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:41:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:41:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:41:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:41:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:41:40 (#:amount 98029160 #:time 329)) (heartbeat 2015-06-19T16:41:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:41:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:42:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:42:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:42:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:42:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:42:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:42:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:43:01 (#:amount 97778320 #:time 282)) (heartbeat 2015-06-19T16:43:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:43:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:43:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:43:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:43:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:43:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:44:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:44:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:44:27 (#:amount 98248856 #:time 278)) (heartbeat 2015-06-19T16:44:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:44:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:44:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:44:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:45:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:45:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:45:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:45:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:45:49 (#:amount 97871856 #:time 289)) (heartbeat 2015-06-19T16:45:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:45:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:46:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:46:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:46:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:46:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:46:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:46:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:47:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:47:13 (#:amount 98052632 #:time 337)) (heartbeat 2015-06-19T16:47:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:47:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:47:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:47:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:47:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:48:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:48:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:48:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:48:38 (#:amount 97787384 #:time 336)) (heartbeat 2015-06-19T16:48:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:48:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:48:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:49:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:49:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:49:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:49:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:49:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:49:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:50:05 (#:amount 98187976 #:time 323)) (heartbeat 2015-06-19T16:50:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:50:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:50:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:50:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:50:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:50:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:51:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:51:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:51:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:51:31 (#:amount 97950640 #:time 282)) (heartbeat 2015-06-19T16:51:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:51:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:51:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:52:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:52:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:52:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:52:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:52:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:52:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:53:02 (#:amount 98102080 #:time 339)) (heartbeat 2015-06-19T16:53:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:53:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:53:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:53:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:53:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:53:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:54:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:54:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:54:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:54:38 (#:amount 97907176 #:time 330)) (heartbeat 2015-06-19T16:54:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:54:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:54:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:55:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:55:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:55:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:55:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:55:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:55:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:56:03 (#:amount 98040832 #:time 282)) (heartbeat 2015-06-19T16:56:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:56:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:56:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:56:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:56:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:56:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:57:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:57:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:57:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:57:36 (#:amount 97766472 #:time 342)) (heartbeat 2015-06-19T16:57:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:57:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:57:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:58:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:58:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:58:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:58:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:58:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:58:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T16:59:08 (#:amount 98190048 #:time 335)) (heartbeat 2015-06-19T16:59:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:59:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:59:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:59:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:59:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T16:59:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:00:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:00:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:00:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:00:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:00:44 (#:amount 97921848 #:time 334)) (heartbeat 2015-06-19T17:00:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:00:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:01:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:01:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:01:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:01:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:01:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:01:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:02:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:02:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:02:20 (#:amount 97955576 #:time 342)) (heartbeat 2015-06-19T17:02:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:02:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:02:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:03:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:03:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:03:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:03:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:03:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:03:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:03:56 (#:amount 97812168 #:time 333)) (heartbeat 2015-06-19T17:04:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:04:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:04:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:04:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:04:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:04:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:05:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:05:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:05:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:05:24 (#:amount 98120600 #:time 332)) (heartbeat 2015-06-19T17:05:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:05:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:05:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:06:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:06:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:06:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:06:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:06:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:06:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:06:58 (#:amount 97949336 #:time 334)) (heartbeat 2015-06-19T17:07:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:07:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:07:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:07:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:07:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:07:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:08:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:08:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:08:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:08:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:08:33 (#:amount 98040240 #:time 332)) (heartbeat 2015-06-19T17:08:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:08:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:09:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:09:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:09:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:09:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:09:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:09:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:10:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:10:08 (#:amount 97772624 #:time 334)) (heartbeat 2015-06-19T17:10:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:10:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:10:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:10:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:10:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:11:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:11:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:11:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:11:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:11:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:11:44 (#:amount 98242296 #:time 337)) (heartbeat 2015-06-19T17:11:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:12:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:12:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:12:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:12:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:12:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:12:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:13:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:13:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:13:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:13:21 (#:amount 97921880 #:time 343)) (heartbeat 2015-06-19T17:13:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:13:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:13:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:14:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:14:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:14:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:14:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:14:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:14:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:14:59 (#:amount 97982416 #:time 339)) (heartbeat 2015-06-19T17:15:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:15:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:15:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:15:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:15:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:15:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:16:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:16:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:16:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:16:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:16:35 (#:amount 97912080 #:time 334)) (heartbeat 2015-06-19T17:16:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:16:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:17:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:17:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:17:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:17:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:17:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:17:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:18:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:18:11 (#:amount 98206752 #:time 337)) (heartbeat 2015-06-19T17:18:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:18:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:18:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:18:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:18:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:19:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:19:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:19:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:19:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:19:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:19:47 (#:amount 97867560 #:time 340)) (heartbeat 2015-06-19T17:19:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:20:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:20:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:20:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:20:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:20:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:20:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:21:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:21:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:21:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:21:24 (#:amount 98102784 #:time 339)) (heartbeat 2015-06-19T17:21:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:21:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:21:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:22:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:22:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:22:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:22:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:22:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:22:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:22:56 (#:amount 97839952 #:time 294)) (heartbeat 2015-06-19T17:23:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:23:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:23:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:23:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:23:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:23:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:24:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:24:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:24:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:24:27 (#:amount 98129416 #:time 332)) (heartbeat 2015-06-19T17:24:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:24:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:24:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:25:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:25:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:25:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:25:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:25:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:25:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:25:53 (#:amount 97873896 #:time 334)) (heartbeat 2015-06-19T17:26:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:26:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:26:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:26:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:26:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:26:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:27:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:27:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:27:14 (#:amount 98105752 #:time 332)) (heartbeat 2015-06-19T17:27:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:27:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:27:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:27:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:28:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:28:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:28:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:28:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:28:38 (#:amount 97891496 #:time 335)) (heartbeat 2015-06-19T17:28:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:28:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:29:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:29:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:29:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:29:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:29:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:29:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:30:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:30:04 (#:amount 97969656 #:time 331)) (heartbeat 2015-06-19T17:30:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:30:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:30:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:30:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:30:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:31:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:31:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:31:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:31:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:31:33 (#:amount 97856456 #:time 337)) (heartbeat 2015-06-19T17:31:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:31:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:32:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:32:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:32:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:32:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:32:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:32:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:33:00 (#:amount 98076592 #:time 333)) (heartbeat 2015-06-19T17:33:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:33:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:33:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:33:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:33:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:33:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:34:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:34:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:34:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:34:24 (#:amount 97829576 #:time 334)) (heartbeat 2015-06-19T17:34:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:34:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:34:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:35:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:35:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:35:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:35:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:35:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:35:50 (#:amount 98160304 #:time 332)) (heartbeat 2015-06-19T17:35:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:36:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:36:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:36:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:36:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:36:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:36:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:37:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:37:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:37:15 (#:amount 97711280 #:time 332)) (heartbeat 2015-06-19T17:37:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:37:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:37:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:37:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:38:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:38:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:38:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:38:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:38:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:38:43 (#:amount 98223128 #:time 282)) (heartbeat 2015-06-19T17:38:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:39:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:39:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:39:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:39:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:39:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:39:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:40:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:40:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:40:19 (#:amount 97831424 #:time 342)) (heartbeat 2015-06-19T17:40:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:40:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:40:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:40:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:41:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:41:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:41:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:41:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:41:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:41:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:41:53 (#:amount 98042792 #:time 339)) (heartbeat 2015-06-19T17:42:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:42:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:42:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:42:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:42:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:42:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:43:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:43:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:43:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:43:28 (#:amount 97825128 #:time 333)) (heartbeat 2015-06-19T17:43:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:43:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:43:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:44:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:44:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:44:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:44:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:44:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:44:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:45:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:45:03 (#:amount 98179320 #:time 337)) (heartbeat 2015-06-19T17:45:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:45:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:45:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:45:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:45:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:46:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:46:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:46:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:46:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:46:40 (#:amount 97838000 #:time 341)) (heartbeat 2015-06-19T17:46:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:46:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:47:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:47:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:47:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:47:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:47:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:47:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:48:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:48:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:48:16 (#:amount 98166728 #:time 333)) (heartbeat 2015-06-19T17:48:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:48:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:48:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:48:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:49:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:49:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:49:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:49:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:49:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:49:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:49:53 (#:amount 97856544 #:time 333)) (heartbeat 2015-06-19T17:50:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:50:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:50:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:50:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:50:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:50:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:51:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:51:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:51:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:51:28 (#:amount 98039216 #:time 334)) (heartbeat 2015-06-19T17:51:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:51:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:51:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:52:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:52:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:52:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:52:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:52:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:52:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:52:59 (#:amount 97905536 #:time 284)) (heartbeat 2015-06-19T17:53:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:53:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:53:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:53:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:53:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:53:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:54:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:54:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:54:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:54:28 (#:amount 98073728 #:time 334)) (heartbeat 2015-06-19T17:54:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:54:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:54:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:55:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:55:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:55:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:55:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:55:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:55:52 (#:amount 97963832 #:time 339)) (heartbeat 2015-06-19T17:55:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:56:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:56:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:56:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:56:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:56:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:56:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:57:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:57:12 (#:amount 97996944 #:time 280)) (heartbeat 2015-06-19T17:57:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:57:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:57:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:57:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:57:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:58:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:58:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:58:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:58:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T17:58:36 (#:amount 97968952 #:time 330)) (heartbeat 2015-06-19T17:58:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:58:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:59:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:59:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:59:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:59:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:59:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T17:59:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:00:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:00:03 (#:amount 98049624 #:time 331)) (heartbeat 2015-06-19T18:00:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:00:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:00:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:00:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:00:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:01:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:01:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:01:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:01:23 (#:amount 97878800 #:time 335)) (heartbeat 2015-06-19T18:01:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:01:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:01:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:02:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:02:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:02:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:02:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:02:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:02:50 (#:amount 98064784 #:time 334)) (heartbeat 2015-06-19T18:02:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:03:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:03:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:03:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:03:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:03:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:03:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:04:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:04:09 (#:amount 97915120 #:time 335)) (heartbeat 2015-06-19T18:04:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:04:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:04:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:04:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:04:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:05:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:05:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:05:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:05:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:05:37 (#:amount 98161616 #:time 282)) (heartbeat 2015-06-19T18:05:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:05:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:06:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:06:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:06:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:06:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:06:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:06:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:07:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:07:03 (#:amount 97782944 #:time 333)) (heartbeat 2015-06-19T18:07:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:07:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:07:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:07:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:07:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:08:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:08:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:08:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:08:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:08:33 (#:amount 98129728 #:time 334)) (heartbeat 2015-06-19T18:08:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:08:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:09:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:09:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:09:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:09:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:09:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:09:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:09:56 (#:amount 97817416 #:time 284)) (heartbeat 2015-06-19T18:10:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:10:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:10:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:10:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:10:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:10:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:11:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:11:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:11:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:11:25 (#:amount 98205176 #:time 330)) (heartbeat 2015-06-19T18:11:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:11:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:11:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:12:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:12:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:12:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:12:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:12:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:12:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:13:02 (#:amount 97925800 #:time 336)) (heartbeat 2015-06-19T18:13:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:13:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:13:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:13:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:13:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:13:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:14:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:14:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:14:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:14:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:14:36 (#:amount 98082520 #:time 314)) (heartbeat 2015-06-19T18:14:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:14:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:15:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:15:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:15:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:15:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:15:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:15:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:16:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:16:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:16:14 (#:amount 97799648 #:time 341)) (heartbeat 2015-06-19T18:16:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:16:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:16:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:16:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:17:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:17:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:17:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:17:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:17:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:17:48 (#:amount 98093072 #:time 328)) (heartbeat 2015-06-19T18:17:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:18:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:18:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:18:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:18:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:18:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:18:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:19:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:19:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:19:23 (#:amount 97832560 #:time 342)) (heartbeat 2015-06-19T18:19:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:19:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:19:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:19:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:20:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:20:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:20:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:20:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:20:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:20:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:20:59 (#:amount 98088336 #:time 332)) (heartbeat 2015-06-19T18:21:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:21:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:21:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:21:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:21:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:21:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:22:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:22:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:22:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:22:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:22:35 (#:amount 97888336 #:time 332)) (heartbeat 2015-06-19T18:22:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:22:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:23:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:23:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:23:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:23:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:23:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:23:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:24:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:24:06 (#:amount 98019544 #:time 332)) (heartbeat 2015-06-19T18:24:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:24:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:24:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:24:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:24:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:25:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:25:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:25:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:25:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:25:42 (#:amount 97916168 #:time 337)) (heartbeat 2015-06-19T18:25:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:25:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:26:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:26:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:26:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:26:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:26:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:26:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:27:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:27:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:27:18 (#:amount 98093504 #:time 333)) (heartbeat 2015-06-19T18:27:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:27:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:27:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:27:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:28:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:28:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:28:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:28:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:28:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:28:52 (#:amount 97806856 #:time 339)) (heartbeat 2015-06-19T18:28:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:29:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:29:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:29:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:29:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:29:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:29:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:30:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:30:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:30:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:30:25 (#:amount 98083976 #:time 331)) (heartbeat 2015-06-19T18:30:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:30:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:30:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:31:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:31:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:31:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:31:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:31:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:31:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:32:00 (#:amount 97883632 #:time 331)) (heartbeat 2015-06-19T18:32:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:32:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:32:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:32:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:32:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:32:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:33:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:33:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:33:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:33:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:33:37 (#:amount 98076400 #:time 333)) (heartbeat 2015-06-19T18:33:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:33:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:34:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:34:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:34:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:34:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:34:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:34:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:35:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:35:13 (#:amount 97929416 #:time 329)) (heartbeat 2015-06-19T18:35:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:35:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:35:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:35:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:35:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:36:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:36:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:36:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:36:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:36:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:36:47 (#:amount 98112256 #:time 285)) (heartbeat 2015-06-19T18:36:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:37:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:37:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:37:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:37:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:37:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:37:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:38:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:38:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:38:21 (#:amount 97804528 #:time 331)) (heartbeat 2015-06-19T18:38:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:38:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:38:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:38:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:39:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:39:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:39:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:39:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:39:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:39:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:39:57 (#:amount 98043504 #:time 343)) (heartbeat 2015-06-19T18:40:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:40:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:40:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:40:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:40:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:40:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:41:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:41:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:41:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:41:34 (#:amount 97846408 #:time 337)) (heartbeat 2015-06-19T18:41:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:41:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:41:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:42:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:42:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:42:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:42:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:42:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:42:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:43:00 (#:amount 98062096 #:time 330)) (heartbeat 2015-06-19T18:43:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:43:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:43:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:43:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:43:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:43:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:44:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:44:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:44:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:44:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:44:35 (#:amount 97834768 #:time 337)) (heartbeat 2015-06-19T18:44:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:44:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:45:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:45:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:45:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:45:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:45:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:45:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:46:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:46:08 (#:amount 98092192 #:time 336)) (heartbeat 2015-06-19T18:46:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:46:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:46:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:46:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:46:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:47:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:47:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:47:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:47:31 (#:amount 97793128 #:time 284)) (heartbeat 2015-06-19T18:47:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:47:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:47:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:48:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:48:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:48:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:48:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:48:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:48:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:48:55 (#:amount 98083736 #:time 285)) (heartbeat 2015-06-19T18:49:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:49:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:49:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:49:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:49:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:49:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:50:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:50:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:50:23 (#:amount 97909152 #:time 333)) (heartbeat 2015-06-19T18:50:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:50:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:50:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:50:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:51:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:51:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:51:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:51:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:51:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:51:51 (#:amount 98065792 #:time 339)) (heartbeat 2015-06-19T18:51:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:52:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:52:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:52:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:52:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:52:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:52:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:53:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:53:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:53:16 (#:amount 97855936 #:time 339)) (heartbeat 2015-06-19T18:53:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:53:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:53:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:53:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:54:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:54:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:54:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:54:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:54:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:54:48 (#:amount 98088064 #:time 278)) (heartbeat 2015-06-19T18:54:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:55:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:55:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:55:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:55:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:55:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:55:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:56:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:56:05 (#:amount 97898416 #:time 281)) (heartbeat 2015-06-19T18:56:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:56:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:56:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:56:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:56:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:57:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:57:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:57:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:57:34 (#:amount 97988680 #:time 282)) (heartbeat 2015-06-19T18:57:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:57:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:57:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:58:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:58:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:58:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:58:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:58:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:58:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T18:58:57 (#:amount 97814696 #:time 282)) (heartbeat 2015-06-19T18:59:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:59:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:59:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:59:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:59:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T18:59:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:00:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:00:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:00:16 (#:amount 98092960 #:time 281)) (heartbeat 2015-06-19T19:00:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:00:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:00:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:00:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:01:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:01:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:01:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:01:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:01:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:01:46 (#:amount 97857752 #:time 332)) (heartbeat 2015-06-19T19:01:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:02:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:02:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:02:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:02:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:02:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:02:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:03:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:03:07 (#:amount 98155896 #:time 333)) (heartbeat 2015-06-19T19:03:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:03:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:03:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:03:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:03:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:04:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:04:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:04:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:04:34 (#:amount 97791432 #:time 330)) (heartbeat 2015-06-19T19:04:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:04:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:04:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:05:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:05:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:05:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:05:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:05:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:05:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:05:58 (#:amount 98242760 #:time 330)) (heartbeat 2015-06-19T19:06:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:06:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:06:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:06:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:06:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:06:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:07:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:07:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:07:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:07:28 (#:amount 97806736 #:time 339)) (heartbeat 2015-06-19T19:07:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:07:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:07:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:08:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:08:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:08:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:08:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:08:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:08:54 (#:amount 98074648 #:time 337)) (heartbeat 2015-06-19T19:08:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:09:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:09:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:09:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:09:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:09:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:09:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:10:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:10:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:10:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:10:29 (#:amount 97833504 #:time 333)) (heartbeat 2015-06-19T19:10:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:10:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:10:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:11:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:11:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:11:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:11:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:11:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:11:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:12:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:12:06 (#:amount 98097384 #:time 339)) (heartbeat 2015-06-19T19:12:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:12:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:12:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:12:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:12:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:13:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:13:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:13:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:13:35 (#:amount 97899976 #:time 337)) (heartbeat 2015-06-19T19:13:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:13:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:13:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:14:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:14:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:14:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:14:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:14:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:14:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:15:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:15:07 (#:amount 98127320 #:time 332)) (heartbeat 2015-06-19T19:15:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:15:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:15:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:15:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:15:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:16:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:16:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:16:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:16:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:16:43 (#:amount 97769616 #:time 340)) (heartbeat 2015-06-19T19:16:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:16:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:17:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:17:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:17:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:17:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:17:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:17:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:18:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:18:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:18:17 (#:amount 98028792 #:time 335)) (heartbeat 2015-06-19T19:18:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:18:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:18:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:18:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:19:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:19:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:19:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:19:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:19:39 (#:amount 97805872 #:time 337)) (heartbeat 2015-06-19T19:19:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:19:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:20:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:20:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:20:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:20:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:20:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:20:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:20:57 (#:amount 98150536 #:time 282)) (heartbeat 2015-06-19T19:21:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:21:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:21:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:21:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:21:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:21:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:22:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:22:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:22:23 (#:amount 97841640 #:time 284)) (heartbeat 2015-06-19T19:22:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:22:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:22:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:22:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:23:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:23:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:23:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:23:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:23:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:23:46 (#:amount 98138800 #:time 331)) (heartbeat 2015-06-19T19:23:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:24:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:24:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:24:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:24:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:24:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:24:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:25:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:25:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:25:17 (#:amount 97815368 #:time 282)) (heartbeat 2015-06-19T19:25:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:25:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:25:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:25:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:26:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:26:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:26:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:26:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:26:42 (#:amount 98121912 #:time 333)) (heartbeat 2015-06-19T19:26:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:26:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:27:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:27:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:27:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:27:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:27:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:27:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:28:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:28:14 (#:amount 97835976 #:time 342)) (heartbeat 2015-06-19T19:28:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:28:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:28:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:28:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:28:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:29:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:29:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:29:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:29:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:29:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:29:47 (#:amount 98083360 #:time 333)) (heartbeat 2015-06-19T19:29:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:30:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:30:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:30:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:30:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:30:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:30:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:31:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:31:11 (#:amount 97834968 #:time 332)) (heartbeat 2015-06-19T19:31:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:31:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:31:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:31:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:31:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:32:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:32:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:32:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:32:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:32:44 (#:amount 98126416 #:time 328)) (heartbeat 2015-06-19T19:32:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:32:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:33:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:33:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:33:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:33:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:33:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:33:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:34:05 (#:amount 97792048 #:time 282)) (heartbeat 2015-06-19T19:34:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:34:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:34:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:34:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:34:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:34:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:35:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:35:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:35:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:35:29 (#:amount 98054864 #:time 282)) (heartbeat 2015-06-19T19:35:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:35:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:35:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:36:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:36:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:36:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:36:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:36:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:36:47 (#:amount 97830888 #:time 332)) (heartbeat 2015-06-19T19:36:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:37:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:37:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:37:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:37:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:37:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:37:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:38:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:38:15 (#:amount 98093056 #:time 332)) (heartbeat 2015-06-19T19:38:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:38:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:38:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:38:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:38:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:39:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:39:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:39:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:39:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:39:39 (#:amount 97852336 #:time 285)) (heartbeat 2015-06-19T19:39:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:39:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:40:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:40:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:40:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:40:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:40:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:40:50 (#:amount 98121384 #:time 329)) (heartbeat 2015-06-19T19:40:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:41:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:41:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:41:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:41:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:41:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:41:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:42:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:42:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:42:23 (#:amount 97907536 #:time 333)) (heartbeat 2015-06-19T19:42:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:42:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:42:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:42:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:43:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:43:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:43:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:43:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:43:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:43:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:43:57 (#:amount 98076544 #:time 332)) (heartbeat 2015-06-19T19:44:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:44:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:44:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:44:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:44:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:44:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:45:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:45:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:45:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:45:28 (#:amount 97817944 #:time 338)) (heartbeat 2015-06-19T19:45:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:45:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:45:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:46:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:46:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:46:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:46:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:46:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:46:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:47:02 (#:amount 98158320 #:time 337)) (heartbeat 2015-06-19T19:47:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:47:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:47:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:47:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:47:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:47:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:48:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:48:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:48:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:48:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:48:37 (#:amount 97845568 #:time 336)) (heartbeat 2015-06-19T19:48:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:48:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:49:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:49:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:49:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:49:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:49:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:49:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:50:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:50:12 (#:amount 98106944 #:time 336)) (heartbeat 2015-06-19T19:50:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:50:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:50:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:50:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:50:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:51:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:51:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:51:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:51:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:51:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:51:50 (#:amount 97816032 #:time 343)) (heartbeat 2015-06-19T19:51:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:52:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:52:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:52:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:52:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:52:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:52:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:53:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:53:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:53:22 (#:amount 98181312 #:time 332)) (heartbeat 2015-06-19T19:53:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:53:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:53:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:53:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:54:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:54:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:54:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:54:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:54:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:54:57 (#:amount 97849584 #:time 328)) (heartbeat 2015-06-19T19:54:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:55:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:55:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:55:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:55:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:55:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:55:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:56:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:56:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:56:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:56:32 (#:amount 98035400 #:time 334)) (heartbeat 2015-06-19T19:56:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:56:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:56:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:57:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:57:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:57:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:57:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:57:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:57:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:58:00 (#:amount 97826816 #:time 284)) (heartbeat 2015-06-19T19:58:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:58:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:58:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:58:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:58:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:58:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:59:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:59:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:59:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T19:59:29 (#:amount 98036728 #:time 335)) (heartbeat 2015-06-19T19:59:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:59:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T19:59:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:00:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:00:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:00:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:00:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:00:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:00:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:01:04 (#:amount 97845840 #:time 332)) (heartbeat 2015-06-19T20:01:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:01:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:01:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:01:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:01:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:01:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:02:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:02:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:02:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:02:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:02:41 (#:amount 98086640 #:time 335)) (heartbeat 2015-06-19T20:02:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:02:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:03:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:03:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:03:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:03:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:03:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:03:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:04:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:04:09 (#:amount 97805536 #:time 336)) (heartbeat 2015-06-19T20:04:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:04:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:04:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:04:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:04:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:05:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:05:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:05:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:05:30 (#:amount 98096208 #:time 331)) (heartbeat 2015-06-19T20:05:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:05:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:05:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:06:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:06:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:06:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:06:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:06:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:06:56 (#:amount 97804944 #:time 331)) (heartbeat 2015-06-19T20:06:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:07:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:07:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:07:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:07:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:07:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:07:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:08:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:08:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:08:22 (#:amount 98079784 #:time 330)) (heartbeat 2015-06-19T20:08:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:08:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:08:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:08:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:09:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:09:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:09:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:09:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:09:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:09:52 (#:amount 97836128 #:time 336)) (heartbeat 2015-06-19T20:09:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:10:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:10:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:10:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:10:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:10:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:10:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:11:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:11:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:11:26 (#:amount 98121032 #:time 331)) (heartbeat 2015-06-19T20:11:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:11:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:11:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:11:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:12:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:12:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:12:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:12:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:12:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:12:48 (#:amount 97768456 #:time 331)) (heartbeat 2015-06-19T20:12:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:13:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:13:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:13:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:13:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:13:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:13:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:14:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:14:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:14:20 (#:amount 98157400 #:time 285)) (heartbeat 2015-06-19T20:14:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:14:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:14:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:14:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:15:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:15:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:15:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:15:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:15:43 (#:amount 97854992 #:time 284)) (heartbeat 2015-06-19T20:15:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:15:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:16:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:16:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:16:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:16:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:16:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:16:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:17:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:17:11 (#:amount 98185224 #:time 337)) (heartbeat 2015-06-19T20:17:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:17:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:17:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:17:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:17:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:18:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:18:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:18:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:18:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:18:41 (#:amount 97767912 #:time 335)) (heartbeat 2015-06-19T20:18:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:18:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:19:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:19:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:19:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:19:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:19:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:19:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:20:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:20:16 (#:amount 98174504 #:time 334)) (heartbeat 2015-06-19T20:20:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:20:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:20:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:20:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:20:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:21:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:21:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:21:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:21:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:21:42 (#:amount 97845584 #:time 336)) (heartbeat 2015-06-19T20:21:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:21:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:22:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:22:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:22:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:22:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:22:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:22:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:23:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:23:15 (#:amount 98095528 #:time 334)) (heartbeat 2015-06-19T20:23:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:23:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:23:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:23:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:23:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:24:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:24:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:24:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:24:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:24:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:24:49 (#:amount 97863144 #:time 340)) (heartbeat 2015-06-19T20:24:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:25:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:25:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:25:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:25:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:25:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:25:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:26:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:26:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:26:26 (#:amount 98121168 #:time 335)) (heartbeat 2015-06-19T20:26:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:26:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:26:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:26:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:27:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:27:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:27:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:27:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:27:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:27:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:28:01 (#:amount 97825800 #:time 334)) (heartbeat 2015-06-19T20:28:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:28:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:28:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:28:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:28:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:28:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:29:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:29:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:29:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:29:35 (#:amount 98099656 #:time 333)) (heartbeat 2015-06-19T20:29:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:29:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:29:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:30:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:30:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:30:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:30:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:30:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:30:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:31:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:31:13 (#:amount 97904360 #:time 341)) (heartbeat 2015-06-19T20:31:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:31:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:31:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:31:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:31:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:32:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:32:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:32:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:32:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:32:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:32:49 (#:amount 97971264 #:time 334)) (heartbeat 2015-06-19T20:32:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:33:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:33:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:33:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:33:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:33:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:33:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:34:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:34:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:34:23 (#:amount 97925432 #:time 334)) (heartbeat 2015-06-19T20:34:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:34:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:34:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:34:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:35:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:35:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:35:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:35:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:35:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:35:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:35:59 (#:amount 98093696 #:time 331)) (heartbeat 2015-06-19T20:36:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:36:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:36:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:36:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:36:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:36:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:37:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:37:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:37:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:37:34 (#:amount 97936976 #:time 283)) (heartbeat 2015-06-19T20:37:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:37:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:37:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:38:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:38:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:38:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:38:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:38:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:38:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:39:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:39:10 (#:amount 98064048 #:time 334)) (heartbeat 2015-06-19T20:39:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:39:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:39:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:39:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:39:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:40:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:40:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:40:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:40:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:40:47 (#:amount 97774600 #:time 339)) (heartbeat 2015-06-19T20:40:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:40:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:41:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:41:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:41:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:41:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:41:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:41:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:42:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:42:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:42:22 (#:amount 98146648 #:time 340)) (heartbeat 2015-06-19T20:42:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:42:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:42:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:42:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:43:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:43:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:43:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:43:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:43:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:44:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:44:00 (#:amount 97763864 #:time 334)) (heartbeat 2015-06-19T20:44:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:44:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:44:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:44:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:44:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:45:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:45:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:45:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:45:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:45:32 (#:amount 98238368 #:time 330)) (heartbeat 2015-06-19T20:45:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:45:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:46:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:46:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:46:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:46:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:46:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:46:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:47:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:47:02 (#:amount 97935888 #:time 331)) (heartbeat 2015-06-19T20:47:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:47:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:47:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:47:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:47:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:48:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:48:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:48:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:48:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:48:36 (#:amount 98049936 #:time 334)) (heartbeat 2015-06-19T20:48:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:48:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:49:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:49:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:49:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:49:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:49:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:49:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:50:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:50:02 (#:amount 97775216 #:time 330)) (heartbeat 2015-06-19T20:50:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:50:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:50:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:50:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:50:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:51:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:51:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:51:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:51:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:51:36 (#:amount 98105488 #:time 335)) (heartbeat 2015-06-19T20:51:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:51:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:52:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:52:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:52:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:52:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:52:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:52:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:53:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:53:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:53:10 (#:amount 97884384 #:time 340)) (heartbeat 2015-06-19T20:53:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:53:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:53:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:53:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:54:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:54:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:54:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:54:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:54:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:54:45 (#:amount 98088016 #:time 330)) (heartbeat 2015-06-19T20:54:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:55:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:55:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:55:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:55:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:55:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:55:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:56:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:56:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:56:16 (#:amount 97891936 #:time 335)) (heartbeat 2015-06-19T20:56:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:56:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:56:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:56:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:57:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:57:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:57:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:57:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:57:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:57:50 (#:amount 97883624 #:time 340)) (heartbeat 2015-06-19T20:57:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:58:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:58:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:58:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:58:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:58:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:58:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:59:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:59:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:59:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T20:59:24 (#:amount 97834544 #:time 333)) (heartbeat 2015-06-19T20:59:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:59:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T20:59:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:00:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:00:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:00:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:00:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:00:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:00:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:00:59 (#:amount 98151024 #:time 340)) (heartbeat 2015-06-19T21:01:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:01:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:01:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:01:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:01:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:01:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:02:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:02:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:02:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:02:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:02:35 (#:amount 97840784 #:time 335)) (heartbeat 2015-06-19T21:02:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:02:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:03:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:03:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:03:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:03:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:03:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:03:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:04:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:04:02 (#:amount 98115984 #:time 338)) (heartbeat 2015-06-19T21:04:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:04:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:04:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:04:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:04:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:05:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:05:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:05:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:05:27 (#:amount 97959552 #:time 332)) (heartbeat 2015-06-19T21:05:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:05:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:05:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:06:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:06:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:06:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:06:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:06:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:06:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:06:56 (#:amount 97981544 #:time 332)) (heartbeat 2015-06-19T21:07:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:07:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:07:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:07:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:07:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:07:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:08:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:08:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:08:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:08:30 (#:amount 97850136 #:time 334)) (heartbeat 2015-06-19T21:08:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:08:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:08:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:09:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:09:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:09:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:09:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:09:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:09:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:10:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:10:05 (#:amount 98041352 #:time 343)) (heartbeat 2015-06-19T21:10:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:10:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:10:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:10:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:10:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:11:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:11:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:11:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:11:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:11:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:11:41 (#:amount 97899816 #:time 335)) (heartbeat 2015-06-19T21:11:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:12:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:12:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:12:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:12:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:12:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:12:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:13:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:13:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:13:17 (#:amount 98029552 #:time 334)) (heartbeat 2015-06-19T21:13:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:13:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:13:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:13:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:14:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:14:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:14:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:14:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:14:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:14:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:14:52 (#:amount 97831120 #:time 334)) (heartbeat 2015-06-19T21:15:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:15:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:15:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:15:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:15:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:15:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:16:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:16:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:16:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:16:26 (#:amount 98072880 #:time 340)) (heartbeat 2015-06-19T21:16:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:16:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:16:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:17:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:17:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:17:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:17:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:17:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:17:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:18:01 (#:amount 97780536 #:time 339)) (heartbeat 2015-06-19T21:18:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:18:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:18:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:18:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:18:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:18:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:19:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:19:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:19:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:19:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:19:35 (#:amount 98190056 #:time 337)) (heartbeat 2015-06-19T21:19:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:19:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:20:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:20:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:20:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:20:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:20:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:20:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:21:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:21:10 (#:amount 97780240 #:time 334)) (heartbeat 2015-06-19T21:21:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:21:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:21:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:21:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:21:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:22:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:22:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:22:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:22:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:22:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:22:46 (#:amount 98137648 #:time 334)) (heartbeat 2015-06-19T21:22:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:23:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:23:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:23:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:23:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:23:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:23:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:24:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:24:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:24:21 (#:amount 97829328 #:time 339)) (heartbeat 2015-06-19T21:24:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:24:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:24:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:24:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:25:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:25:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:25:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:25:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:25:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:25:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:25:58 (#:amount 98121928 #:time 332)) (heartbeat 2015-06-19T21:26:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:26:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:26:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:26:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:26:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:26:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:27:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:27:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:27:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:27:31 (#:amount 97871040 #:time 283)) (heartbeat 2015-06-19T21:27:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:27:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:27:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:28:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:28:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:28:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:28:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:28:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:28:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:28:57 (#:amount 98115704 #:time 283)) (heartbeat 2015-06-19T21:29:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:29:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:29:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:29:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:29:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:29:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:30:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:30:10 (#:amount 97785048 #:time 284)) (heartbeat 2015-06-19T21:30:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:30:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:30:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:30:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:30:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:31:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:31:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:31:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:31:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:31:33 (#:amount 98060352 #:time 327)) (heartbeat 2015-06-19T21:31:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:31:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:32:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:32:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:32:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:32:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:32:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:32:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:33:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:33:08 (#:amount 97875904 #:time 336)) (heartbeat 2015-06-19T21:33:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:33:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:33:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:33:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:33:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:34:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:34:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:34:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:34:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:34:41 (#:amount 98137096 #:time 334)) (heartbeat 2015-06-19T21:34:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:34:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:35:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:35:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:35:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:35:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:35:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:35:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:36:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:36:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:36:19 (#:amount 97907792 #:time 336)) (heartbeat 2015-06-19T21:36:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:36:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:36:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:36:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:37:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:37:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:37:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:37:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:37:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:37:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:37:57 (#:amount 98140600 #:time 332)) (heartbeat 2015-06-19T21:38:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:38:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:38:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:38:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:38:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:38:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:39:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:39:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:39:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:39:31 (#:amount 97840344 #:time 337)) (heartbeat 2015-06-19T21:39:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:39:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:39:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:40:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:40:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:40:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:40:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:40:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:40:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:41:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:41:07 (#:amount 98041360 #:time 335)) (heartbeat 2015-06-19T21:41:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:41:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:41:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:41:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:41:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:42:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:42:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:42:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:42:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:42:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:42:42 (#:amount 97809000 #:time 334)) (heartbeat 2015-06-19T21:42:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:43:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:43:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:43:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:43:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:43:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:43:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:43:57 (#:amount 98035032 #:time 282)) (heartbeat 2015-06-19T21:44:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:44:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:44:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:44:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:44:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:44:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:45:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:45:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:45:17 (#:amount 97897472 #:time 283)) (heartbeat 2015-06-19T21:45:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:45:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:45:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:45:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:46:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:46:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:46:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:46:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:46:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:46:45 (#:amount 98167784 #:time 334)) (heartbeat 2015-06-19T21:46:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:47:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:47:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:47:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:47:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:47:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:47:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:48:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:48:09 (#:amount 97916104 #:time 335)) (heartbeat 2015-06-19T21:48:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:48:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:48:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:48:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:48:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:49:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:49:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:49:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:49:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:49:38 (#:amount 98079272 #:time 283)) (heartbeat 2015-06-19T21:49:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:49:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:50:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:50:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:50:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:50:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:50:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:50:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:50:56 (#:amount 97807584 #:time 282)) (heartbeat 2015-06-19T21:51:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:51:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:51:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:51:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:51:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:51:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:52:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:52:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:52:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:52:24 (#:amount 98203928 #:time 339)) (heartbeat 2015-06-19T21:52:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:52:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:52:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:53:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:53:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:53:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:53:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:53:42 (#:amount 97848928 #:time 284)) (heartbeat 2015-06-19T21:53:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:53:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:54:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:54:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:54:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:54:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:54:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:54:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:54:59 (#:amount 98099248 #:time 337)) (heartbeat 2015-06-19T21:55:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:55:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:55:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:55:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:55:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:55:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:56:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:56:12 (#:amount 97913176 #:time 285)) (heartbeat 2015-06-19T21:56:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:56:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:56:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:56:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:56:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:57:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:57:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:57:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:57:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:57:33 (#:amount 97989656 #:time 284)) (heartbeat 2015-06-19T21:57:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:57:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:58:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:58:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:58:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:58:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:58:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:58:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T21:58:56 (#:amount 97920632 #:time 284)) (heartbeat 2015-06-19T21:59:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:59:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:59:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:59:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:59:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T21:59:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:00:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:00:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:00:21 (#:amount 97992464 #:time 285)) (heartbeat 2015-06-19T22:00:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:00:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:00:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:00:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:01:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:01:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:01:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:01:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:01:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:01:52 (#:amount 97965152 #:time 283)) (heartbeat 2015-06-19T22:01:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:02:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:02:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:02:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:02:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:02:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:02:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:03:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:03:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:03:22 (#:amount 98087520 #:time 332)) (heartbeat 2015-06-19T22:03:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:03:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:03:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:03:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:04:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:04:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:04:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:04:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:04:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:04:49 (#:amount 97883176 #:time 335)) (heartbeat 2015-06-19T22:04:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:05:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:05:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:05:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:05:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:05:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:05:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:06:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:06:08 (#:amount 98025720 #:time 281)) (heartbeat 2015-06-19T22:06:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:06:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:06:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:06:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:06:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:07:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:07:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:07:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:07:32 (#:amount 97784584 #:time 332)) (heartbeat 2015-06-19T22:07:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:07:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:07:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:08:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:08:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:08:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:08:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:08:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:08:51 (#:amount 98098624 #:time 283)) (heartbeat 2015-06-19T22:08:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:09:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:09:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:09:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:09:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:09:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:09:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:10:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:10:08 (#:amount 97779400 #:time 283)) (heartbeat 2015-06-19T22:10:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:10:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:10:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:10:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:10:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:11:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:11:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:11:17 (#:amount 98224176 #:time 282)) (heartbeat 2015-06-19T22:11:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:11:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:11:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:11:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:12:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:12:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:12:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:12:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:12:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:12:47 (#:amount 97812544 #:time 339)) (heartbeat 2015-06-19T22:12:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:13:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:13:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:13:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:13:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:13:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:13:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:14:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:14:07 (#:amount 98129184 #:time 333)) (heartbeat 2015-06-19T22:14:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:14:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:14:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:14:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:14:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:15:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:15:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:15:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:15:27 (#:amount 97940968 #:time 333)) (heartbeat 2015-06-19T22:15:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:15:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:15:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:16:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:16:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:16:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:16:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:16:35 (#:amount 98078848 #:time 281)) (heartbeat 2015-06-19T22:16:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:16:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:17:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:17:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:17:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:17:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:17:43 (#:amount 97864264 #:time 281)) (heartbeat 2015-06-19T22:17:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:17:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:18:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:18:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:18:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:18:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:18:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:18:50 (#:amount 98133368 #:time 283)) (heartbeat 2015-06-19T22:18:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:19:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:19:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:19:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:19:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:19:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:19:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:19:58 (#:amount 97890832 #:time 284)) (heartbeat 2015-06-19T22:20:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:20:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:20:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:20:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:20:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:20:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:21:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:21:05 (#:amount 98018624 #:time 284)) (heartbeat 2015-06-19T22:21:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:21:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:21:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:21:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:21:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:22:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:22:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:22:14 (#:amount 97877224 #:time 283)) (heartbeat 2015-06-19T22:22:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:22:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:22:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:22:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:23:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:23:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:23:22 (#:amount 98019128 #:time 282)) (heartbeat 2015-06-19T22:23:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:23:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:23:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:23:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:24:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:24:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:24:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:24:30 (#:amount 97908624 #:time 284)) (heartbeat 2015-06-19T22:24:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:24:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:24:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:25:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:25:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:25:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:25:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:25:36 (#:amount 98076584 #:time 284)) (heartbeat 2015-06-19T22:25:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:25:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:26:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:26:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:26:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:26:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:26:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:26:43 (#:amount 97882040 #:time 282)) (heartbeat 2015-06-19T22:26:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:27:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:27:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:27:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:27:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:27:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:27:51 (#:amount 98148736 #:time 282)) (heartbeat 2015-06-19T22:27:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:28:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:28:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:28:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:28:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:28:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:28:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:29:01 (#:amount 97996184 #:time 335)) (heartbeat 2015-06-19T22:29:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:29:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:29:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:29:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:29:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:29:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:30:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:30:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:30:15 (#:amount 98026424 #:time 283)) (heartbeat 2015-06-19T22:30:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:30:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:30:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:30:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:31:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:31:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:31:23 (#:amount 97849528 #:time 282)) (heartbeat 2015-06-19T22:31:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:31:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:31:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:31:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:32:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:32:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:32:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:32:33 (#:amount 98047040 #:time 281)) (heartbeat 2015-06-19T22:32:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:32:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:32:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:33:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:33:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:33:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:33:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:33:41 (#:amount 97860488 #:time 283)) (heartbeat 2015-06-19T22:33:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:33:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:34:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:34:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:34:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:34:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:34:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:34:47 (#:amount 97965960 #:time 282)) (heartbeat 2015-06-19T22:34:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:35:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:35:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:35:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:35:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:35:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:35:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:35:54 (#:amount 97995424 #:time 283)) (heartbeat 2015-06-19T22:36:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:36:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:36:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:36:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:36:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:36:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:37:01 (#:amount 98069040 #:time 283)) (heartbeat 2015-06-19T22:37:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:37:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:37:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:37:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:37:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:37:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:38:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:38:10 (#:amount 97839216 #:time 334)) (heartbeat 2015-06-19T22:38:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:38:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:38:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:38:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:38:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:39:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:39:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:39:23 (#:amount 98073720 #:time 280)) (heartbeat 2015-06-19T22:39:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:39:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:39:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:39:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:40:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:40:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:40:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:40:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:40:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:40:46 (#:amount 97863264 #:time 334)) (heartbeat 2015-06-19T22:40:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:41:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:41:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:41:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:41:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:41:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:41:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:42:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:42:10 (#:amount 98152216 #:time 342)) (heartbeat 2015-06-19T22:42:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:42:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:42:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:42:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:42:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:43:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:43:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:43:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:43:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:43:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:43:47 (#:amount 97818440 #:time 335)) (heartbeat 2015-06-19T22:43:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:44:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:44:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:44:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:44:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:44:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:44:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:45:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:45:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:45:23 (#:amount 98082416 #:time 331)) (heartbeat 2015-06-19T22:45:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:45:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:45:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:45:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:46:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:46:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:46:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:46:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:46:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:46:51 (#:amount 97875448 #:time 331)) (heartbeat 2015-06-19T22:46:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:47:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:47:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:47:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:47:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:47:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:47:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:48:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:48:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:48:20 (#:amount 98054784 #:time 302)) (heartbeat 2015-06-19T22:48:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:48:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:48:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:48:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:49:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:49:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:49:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:49:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:49:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:49:48 (#:amount 97802064 #:time 332)) (heartbeat 2015-06-19T22:49:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:50:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:50:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:50:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:50:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:50:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:50:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:51:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:51:10 (#:amount 98080672 #:time 284)) (heartbeat 2015-06-19T22:51:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:51:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:51:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:51:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:51:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:52:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:52:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:52:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:52:34 (#:amount 97824344 #:time 334)) (heartbeat 2015-06-19T22:52:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:52:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:52:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:53:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:53:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:53:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:53:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:53:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:53:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:54:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:54:10 (#:amount 98066448 #:time 333)) (heartbeat 2015-06-19T22:54:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:54:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:54:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:54:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:54:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:55:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:55:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:55:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:55:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:55:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:55:45 (#:amount 97785408 #:time 337)) (heartbeat 2015-06-19T22:55:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:56:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:56:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:56:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:56:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:56:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:56:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:57:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:57:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:57:19 (#:amount 98060016 #:time 338)) (heartbeat 2015-06-19T22:57:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:57:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:57:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:57:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:58:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:58:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:58:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:58:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:58:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:58:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T22:58:58 (#:amount 97899776 #:time 340)) (heartbeat 2015-06-19T22:59:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:59:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:59:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:59:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:59:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T22:59:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:00:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:00:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:00:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:00:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:00:36 (#:amount 98026368 #:time 337)) (heartbeat 2015-06-19T23:00:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:00:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:01:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:01:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:01:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:01:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:01:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:01:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:02:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:02:14 (#:amount 97814592 #:time 341)) (heartbeat 2015-06-19T23:02:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:02:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:02:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:02:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:02:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:03:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:03:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:03:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:03:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:03:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:03:49 (#:amount 98021472 #:time 336)) (heartbeat 2015-06-19T23:03:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:04:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:04:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:04:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:04:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:04:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:04:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:05:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:05:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:05:24 (#:amount 97969320 #:time 339)) (heartbeat 2015-06-19T23:05:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:05:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:05:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:05:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:06:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:06:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:06:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:06:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:06:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:06:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:06:56 (#:amount 98076560 #:time 283)) (heartbeat 2015-06-19T23:07:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:07:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:07:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:07:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:07:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:07:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:08:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:08:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:08:24 (#:amount 97944560 #:time 335)) (heartbeat 2015-06-19T23:08:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:08:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:08:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:08:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:09:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:09:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:09:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:09:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:09:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:09:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:09:56 (#:amount 98060216 #:time 279)) (heartbeat 2015-06-19T23:10:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:10:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:10:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:10:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:10:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:10:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:11:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:11:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:11:20 (#:amount 97866288 #:time 315)) (heartbeat 2015-06-19T23:11:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:11:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:11:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:11:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:12:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:12:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:12:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:12:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:12:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:12:47 (#:amount 98139704 #:time 282)) (heartbeat 2015-06-19T23:12:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:13:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:13:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:13:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:13:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:13:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:13:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:14:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:14:09 (#:amount 97898024 #:time 331)) (heartbeat 2015-06-19T23:14:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:14:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:14:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:14:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:14:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:15:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:15:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:15:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:15:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:15:38 (#:amount 97981432 #:time 283)) (heartbeat 2015-06-19T23:15:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:15:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:16:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:16:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:16:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:16:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:16:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:16:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:17:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:17:13 (#:amount 97920800 #:time 333)) (heartbeat 2015-06-19T23:17:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:17:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:17:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:17:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:17:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:18:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:18:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:18:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:18:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:18:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:18:50 (#:amount 98124360 #:time 335)) (heartbeat 2015-06-19T23:18:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:19:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:19:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:19:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:19:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:19:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:19:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:20:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:20:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:20:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:20:28 (#:amount 97869416 #:time 337)) (heartbeat 2015-06-19T23:20:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:20:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:20:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:21:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:21:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:21:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:21:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:21:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:21:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:22:02 (#:amount 98023704 #:time 338)) (heartbeat 2015-06-19T23:22:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:22:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:22:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:22:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:22:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:22:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:23:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:23:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:23:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:23:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:23:36 (#:amount 97920040 #:time 332)) (heartbeat 2015-06-19T23:23:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:23:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:24:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:24:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:24:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:24:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:24:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:24:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:25:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:25:10 (#:amount 98097080 #:time 335)) (heartbeat 2015-06-19T23:25:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:25:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:25:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:25:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:25:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:26:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:26:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:26:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:26:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:26:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:26:46 (#:amount 97865264 #:time 333)) (heartbeat 2015-06-19T23:26:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:27:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:27:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:27:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:27:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:27:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:27:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:28:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:28:11 (#:amount 98252328 #:time 280)) (heartbeat 2015-06-19T23:28:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:28:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:28:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:28:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:28:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:29:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:29:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:29:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:29:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:29:37 (#:amount 97814512 #:time 282)) (heartbeat 2015-06-19T23:29:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:29:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:30:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:30:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:30:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:30:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:30:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:30:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:31:03 (#:amount 98093672 #:time 336)) (heartbeat 2015-06-19T23:31:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:31:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:31:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:31:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:31:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:31:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:32:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:32:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:32:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:32:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:32:40 (#:amount 97851576 #:time 333)) (heartbeat 2015-06-19T23:32:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:32:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:33:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:33:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:33:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:33:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:33:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:33:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:34:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:34:14 (#:amount 98108344 #:time 338)) (heartbeat 2015-06-19T23:34:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:34:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:34:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:34:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:34:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:35:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:35:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:35:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:35:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:35:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:35:47 (#:amount 97851616 #:time 334)) (heartbeat 2015-06-19T23:35:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:36:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:36:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:36:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:36:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:36:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:36:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:37:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:37:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:37:24 (#:amount 98061480 #:time 336)) (heartbeat 2015-06-19T23:37:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:37:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:37:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:37:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:38:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:38:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:38:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:38:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:38:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:38:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:39:00 (#:amount 97983112 #:time 341)) (heartbeat 2015-06-19T23:39:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:39:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:39:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:39:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:39:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:39:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:40:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:40:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:40:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:40:36 (#:amount 97984072 #:time 334)) (heartbeat 2015-06-19T23:40:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:40:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:40:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:41:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:41:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:41:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:41:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:41:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:41:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:42:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:42:10 (#:amount 97769152 #:time 343)) (heartbeat 2015-06-19T23:42:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:42:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:42:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:42:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:42:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:43:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:43:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:43:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:43:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:43:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:43:48 (#:amount 98260448 #:time 343)) (heartbeat 2015-06-19T23:43:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:44:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:44:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:44:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:44:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:44:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:44:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:45:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:45:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:45:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:45:28 (#:amount 97947688 #:time 341)) (heartbeat 2015-06-19T23:45:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:45:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:45:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:46:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:46:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:46:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:46:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:46:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:46:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:47:04 (#:amount 98113960 #:time 340)) (heartbeat 2015-06-19T23:47:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:47:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:47:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:47:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:47:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:47:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:48:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:48:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:48:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:48:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:48:41 (#:amount 97970776 #:time 341)) (heartbeat 2015-06-19T23:48:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:48:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:49:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:49:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:49:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:49:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:49:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:49:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:50:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:50:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:50:17 (#:amount 98094768 #:time 335)) (heartbeat 2015-06-19T23:50:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:50:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:50:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:50:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:51:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:51:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:51:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:51:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:51:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:51:49 (#:amount 97865088 #:time 337)) (heartbeat 2015-06-19T23:51:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:52:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:52:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:52:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:52:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:52:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:52:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:53:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:53:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:53:21 (#:amount 97924056 #:time 336)) (heartbeat 2015-06-19T23:53:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:53:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:53:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:53:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:54:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:54:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:54:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:54:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:54:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:54:52 (#:amount 97787752 #:time 332)) (heartbeat 2015-06-19T23:54:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:55:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:55:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:55:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:55:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:55:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:55:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:56:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:56:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:56:25 (#:amount 98201096 #:time 340)) (heartbeat 2015-06-19T23:56:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:56:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:56:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:56:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:57:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:57:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:57:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:57:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:57:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:57:56 (#:amount 97931928 #:time 332)) (heartbeat 2015-06-19T23:57:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:58:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:58:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:58:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:58:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:58:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:58:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:59:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:59:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-19T23:59:26 (#:amount 98061600 #:time 335)) (heartbeat 2015-06-19T23:59:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:59:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:59:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-19T23:59:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:00:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:00:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:00:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:00:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:00:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:00:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:00:59 (#:amount 97785304 #:time 331)) (heartbeat 2015-06-20T00:01:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:01:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:01:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:01:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:01:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:01:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:02:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:02:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:02:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:02:33 (#:amount 98187376 #:time 333)) (heartbeat 2015-06-20T00:02:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:02:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:02:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:03:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:03:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:03:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:03:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:03:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:03:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:04:04 (#:amount 97794288 #:time 333)) (heartbeat 2015-06-20T00:04:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:04:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:04:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:04:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:04:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:04:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:05:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:05:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:05:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:05:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:05:38 (#:amount 98187144 #:time 284)) (heartbeat 2015-06-20T00:05:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:05:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:06:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:06:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:06:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:06:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:06:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:06:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:07:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:07:08 (#:amount 97961664 #:time 334)) (heartbeat 2015-06-20T00:07:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:07:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:07:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:07:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:07:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:08:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:08:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:08:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:08:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:08:43 (#:amount 98037616 #:time 333)) (heartbeat 2015-06-20T00:08:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:08:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:09:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:09:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:09:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:09:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:09:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:09:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:10:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:10:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:10:18 (#:amount 97777592 #:time 332)) (heartbeat 2015-06-20T00:10:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:10:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:10:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:10:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:11:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:11:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:11:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:11:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:11:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:11:51 (#:amount 98164872 #:time 330)) (heartbeat 2015-06-20T00:11:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:12:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:12:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:12:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:12:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:12:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:12:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:13:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:13:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:13:24 (#:amount 97878688 #:time 334)) (heartbeat 2015-06-20T00:13:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:13:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:13:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:13:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:14:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:14:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:14:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:14:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:14:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:14:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:14:59 (#:amount 98025408 #:time 335)) (heartbeat 2015-06-20T00:15:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:15:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:15:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:15:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:15:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:15:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:16:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:16:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:16:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:16:33 (#:amount 97878448 #:time 332)) (heartbeat 2015-06-20T00:16:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:16:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:16:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:17:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:17:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:17:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:17:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:17:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:17:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:18:07 (#:amount 98298648 #:time 333)) (heartbeat 2015-06-20T00:18:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:18:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:18:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:18:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:18:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:18:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:19:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:19:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:19:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:19:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:19:41 (#:amount 97824528 #:time 335)) (heartbeat 2015-06-20T00:19:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:19:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:20:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:20:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:20:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:20:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:20:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:20:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:21:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:21:15 (#:amount 98112128 #:time 331)) (heartbeat 2015-06-20T00:21:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:21:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:21:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:21:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:21:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:22:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:22:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:22:24 (#:amount 97983784 #:time 281)) (heartbeat 2015-06-20T00:22:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:22:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:22:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:22:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:23:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:23:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:23:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:23:31 (#:amount 98062808 #:time 282)) (heartbeat 2015-06-20T00:23:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:23:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:23:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:24:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:24:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:24:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:24:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:24:38 (#:amount 97864384 #:time 283)) (heartbeat 2015-06-20T00:24:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:24:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:25:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:25:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:25:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:25:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:25:46 (#:amount 98230968 #:time 284)) (heartbeat 2015-06-20T00:25:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:25:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:26:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:26:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:26:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:26:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:26:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:26:53 (#:amount 98000840 #:time 284)) (heartbeat 2015-06-20T00:26:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:27:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:27:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:27:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:27:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:27:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:27:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:28:01 (#:amount 98016808 #:time 284)) (heartbeat 2015-06-20T00:28:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:28:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:28:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:28:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:28:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:28:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:29:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:29:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:29:27 (#:amount 97870392 #:time 333)) (heartbeat 2015-06-20T00:29:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:29:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:29:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:29:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:30:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:30:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:30:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:30:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:30:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:30:53 (#:amount 98137384 #:time 283)) (heartbeat 2015-06-20T00:30:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:31:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:31:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:31:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:31:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:31:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:31:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:32:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:32:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:32:24 (#:amount 97835960 #:time 285)) (heartbeat 2015-06-20T00:32:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:32:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:32:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:32:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:33:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:33:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:33:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:33:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:33:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:33:52 (#:amount 98126096 #:time 330)) (heartbeat 2015-06-20T00:33:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:34:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:34:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:34:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:34:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:34:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:34:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:35:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:35:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:35:24 (#:amount 97955168 #:time 338)) (heartbeat 2015-06-20T00:35:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:35:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:35:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:35:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:36:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:36:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:36:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:36:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:36:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:36:51 (#:amount 98105496 #:time 335)) (heartbeat 2015-06-20T00:36:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:37:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:37:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:37:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:37:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:37:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:37:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:38:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:38:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:38:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:38:30 (#:amount 97821912 #:time 338)) (heartbeat 2015-06-20T00:38:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:38:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:38:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:39:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:39:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:39:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:39:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:39:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:39:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:40:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:40:09 (#:amount 98054968 #:time 340)) (heartbeat 2015-06-20T00:40:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:40:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:40:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:40:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:40:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:41:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:41:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:41:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:41:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:41:48 (#:amount 97783992 #:time 340)) (heartbeat 2015-06-20T00:41:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:41:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:42:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:42:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:42:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:42:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:42:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:42:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:43:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:43:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:43:26 (#:amount 98133320 #:time 337)) (heartbeat 2015-06-20T00:43:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:43:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:43:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:43:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:44:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:44:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:44:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:44:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:44:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:44:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:45:02 (#:amount 97939800 #:time 334)) (heartbeat 2015-06-20T00:45:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:45:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:45:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:45:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:45:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:45:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:46:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:46:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:46:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:46:37 (#:amount 98068208 #:time 340)) (heartbeat 2015-06-20T00:46:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:46:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:46:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:47:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:47:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:47:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:47:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:47:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:47:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:48:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:48:12 (#:amount 97724256 #:time 332)) (heartbeat 2015-06-20T00:48:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:48:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:48:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:48:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:48:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:49:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:49:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:49:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:49:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:49:47 (#:amount 98211272 #:time 334)) (heartbeat 2015-06-20T00:49:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:49:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:50:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:50:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:50:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:50:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:50:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:50:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:51:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:51:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:51:23 (#:amount 97844920 #:time 338)) (heartbeat 2015-06-20T00:51:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:51:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:51:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:51:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:52:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:52:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:52:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:52:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:52:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:52:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:53:01 (#:amount 98099272 #:time 340)) (heartbeat 2015-06-20T00:53:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:53:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:53:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:53:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:53:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:53:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:54:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:54:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:54:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:54:38 (#:amount 97910816 #:time 338)) (heartbeat 2015-06-20T00:54:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:54:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:54:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:55:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:55:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:55:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:55:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:55:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:55:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:56:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:56:15 (#:amount 98103168 #:time 339)) (heartbeat 2015-06-20T00:56:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:56:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:56:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:56:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:56:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:57:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:57:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:57:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:57:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:57:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:57:52 (#:amount 97907200 #:time 340)) (heartbeat 2015-06-20T00:57:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:58:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:58:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:58:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:58:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:58:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:58:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:59:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:59:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T00:59:25 (#:amount 98173504 #:time 334)) (heartbeat 2015-06-20T00:59:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:59:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:59:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T00:59:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:00:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:00:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:00:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:00:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:00:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:00:55 (#:amount 97879336 #:time 334)) (heartbeat 2015-06-20T01:00:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:01:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:01:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:01:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:01:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:01:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:01:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:02:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:02:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:02:29 (#:amount 98066984 #:time 332)) (heartbeat 2015-06-20T01:02:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:02:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:02:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:02:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:03:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:03:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:03:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:03:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:03:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:03:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:04:03 (#:amount 97850024 #:time 328)) (heartbeat 2015-06-20T01:04:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:04:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:04:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:04:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:04:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:04:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:05:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:05:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:05:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:05:36 (#:amount 98040264 #:time 281)) (heartbeat 2015-06-20T01:05:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:05:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:05:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:06:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:06:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:06:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:06:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:06:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:07:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:07:09 (#:amount 97900072 #:time 339)) (heartbeat 2015-06-20T01:07:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:07:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:07:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:07:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:07:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:08:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:08:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:08:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:08:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:08:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:08:43 (#:amount 98173200 #:time 282)) (heartbeat 2015-06-20T01:08:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:09:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:09:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:09:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:09:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:09:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:09:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:10:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:10:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:10:14 (#:amount 97841728 #:time 331)) (heartbeat 2015-06-20T01:10:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:10:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:10:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:10:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:11:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:11:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:11:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:11:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:11:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:11:42 (#:amount 98133624 #:time 336)) (heartbeat 2015-06-20T01:11:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:12:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:12:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:12:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:12:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:12:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:12:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:13:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:13:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:13:13 (#:amount 97864776 #:time 337)) (heartbeat 2015-06-20T01:13:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:13:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:13:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:13:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:14:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:14:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:14:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:14:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:14:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:14:48 (#:amount 98150456 #:time 338)) (heartbeat 2015-06-20T01:14:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:15:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:15:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:15:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:15:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:15:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:15:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:16:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:16:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:16:19 (#:amount 97765344 #:time 333)) (heartbeat 2015-06-20T01:16:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:16:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:16:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:16:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:17:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:17:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:17:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:17:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:17:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:17:48 (#:amount 98100696 #:time 305)) (heartbeat 2015-06-20T01:17:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:18:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:18:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:18:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:18:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:18:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:18:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:19:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:19:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:19:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:19:24 (#:amount 97891984 #:time 337)) (heartbeat 2015-06-20T01:19:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:19:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:19:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:20:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:20:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:20:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:20:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:20:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:20:43 (#:amount 98019032 #:time 286)) (heartbeat 2015-06-20T01:20:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:21:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:21:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:21:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:21:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:21:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:21:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:22:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:22:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:22:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:22:21 (#:amount 97868272 #:time 338)) (heartbeat 2015-06-20T01:22:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:22:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:22:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:23:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:23:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:23:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:23:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:23:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:23:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:23:57 (#:amount 98128368 #:time 336)) (heartbeat 2015-06-20T01:24:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:24:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:24:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:24:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:24:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:24:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:25:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:25:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:25:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:25:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:25:35 (#:amount 97776496 #:time 337)) (heartbeat 2015-06-20T01:25:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:25:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:26:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:26:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:26:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:26:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:26:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:26:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:27:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:27:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:27:11 (#:amount 98116640 #:time 333)) (heartbeat 2015-06-20T01:27:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:27:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:27:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:27:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:28:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:28:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:28:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:28:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:28:39 (#:amount 97854392 #:time 283)) (heartbeat 2015-06-20T01:28:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:28:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:29:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:29:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:29:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:29:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:29:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:29:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:30:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:30:07 (#:amount 98096880 #:time 341)) (heartbeat 2015-06-20T01:30:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:30:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:30:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:30:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:30:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:31:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:31:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:31:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:31:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:31:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:31:43 (#:amount 97833584 #:time 332)) (heartbeat 2015-06-20T01:31:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:32:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:32:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:32:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:32:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:32:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:32:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:33:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:33:06 (#:amount 98193160 #:time 333)) (heartbeat 2015-06-20T01:33:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:33:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:33:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:33:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:33:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:34:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:34:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:34:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:34:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:34:34 (#:amount 97826720 #:time 333)) (heartbeat 2015-06-20T01:34:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:34:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:35:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:35:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:35:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:35:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:35:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:35:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:35:58 (#:amount 98049936 #:time 280)) (heartbeat 2015-06-20T01:36:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:36:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:36:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:36:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:36:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:36:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:37:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:37:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:37:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:37:22 (#:amount 97888112 #:time 282)) (heartbeat 2015-06-20T01:37:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:37:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:37:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:38:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:38:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:38:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:38:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:38:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:38:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:38:54 (#:amount 98074080 #:time 340)) (heartbeat 2015-06-20T01:39:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:39:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:39:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:39:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:39:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:39:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:40:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:40:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:40:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:40:31 (#:amount 97878560 #:time 339)) (heartbeat 2015-06-20T01:40:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:40:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:40:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:41:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:41:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:41:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:41:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:41:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:41:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:42:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:42:10 (#:amount 98020800 #:time 339)) (heartbeat 2015-06-20T01:42:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:42:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:42:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:42:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:42:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:43:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:43:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:43:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:43:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:43:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:43:47 (#:amount 97899080 #:time 339)) (heartbeat 2015-06-20T01:43:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:44:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:44:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:44:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:44:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:44:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:44:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:45:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:45:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:45:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:45:25 (#:amount 98022112 #:time 342)) (heartbeat 2015-06-20T01:45:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:45:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:45:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:46:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:46:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:46:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:46:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:46:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:46:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:47:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:47:02 (#:amount 97820304 #:time 332)) (heartbeat 2015-06-20T01:47:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:47:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:47:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:47:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:47:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:48:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:48:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:48:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:48:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:48:33 (#:amount 98125472 #:time 334)) (heartbeat 2015-06-20T01:48:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:48:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:49:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:49:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:49:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:49:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:49:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:49:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:50:01 (#:amount 97882952 #:time 338)) (heartbeat 2015-06-20T01:50:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:50:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:50:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:50:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:50:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:50:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:51:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:51:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:51:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:51:27 (#:amount 98209256 #:time 338)) (heartbeat 2015-06-20T01:51:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:51:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:51:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:52:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:52:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:52:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:52:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:52:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:52:51 (#:amount 97757664 #:time 337)) (heartbeat 2015-06-20T01:52:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:53:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:53:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:53:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:53:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:53:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:53:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:54:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:54:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:54:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:54:26 (#:amount 98070144 #:time 341)) (heartbeat 2015-06-20T01:54:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:54:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:54:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:55:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:55:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:55:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:55:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:55:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:55:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:56:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:56:03 (#:amount 97916912 #:time 342)) (heartbeat 2015-06-20T01:56:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:56:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:56:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:56:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:56:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:57:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:57:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:57:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:57:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:57:40 (#:amount 98058608 #:time 333)) (heartbeat 2015-06-20T01:57:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:57:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:58:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:58:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:58:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:58:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:58:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:58:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:59:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T01:59:03 (#:amount 97845712 #:time 282)) (heartbeat 2015-06-20T01:59:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:59:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:59:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:59:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T01:59:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:00:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:00:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:00:21 (#:amount 98077944 #:time 329)) (heartbeat 2015-06-20T02:00:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:00:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:00:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:00:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:01:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:01:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:01:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:01:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:01:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:01:44 (#:amount 97938008 #:time 282)) (heartbeat 2015-06-20T02:01:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:02:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:02:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:02:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:02:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:02:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:02:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:03:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:03:02 (#:amount 98204800 #:time 330)) (heartbeat 2015-06-20T02:03:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:03:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:03:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:03:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:03:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:04:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:04:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:04:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:04:25 (#:amount 97891872 #:time 282)) (heartbeat 2015-06-20T02:04:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:04:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:04:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:05:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:05:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:05:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:05:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:05:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:05:49 (#:amount 98045576 #:time 310)) (heartbeat 2015-06-20T02:05:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:06:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:06:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:06:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:06:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:06:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:06:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:07:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:07:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:07:13 (#:amount 97766688 #:time 335)) (heartbeat 2015-06-20T02:07:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:07:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:07:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:07:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:08:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:08:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:08:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:08:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:08:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:08:50 (#:amount 98080960 #:time 335)) (heartbeat 2015-06-20T02:08:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:09:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:09:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:09:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:09:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:09:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:09:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:10:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:10:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:10:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:10:26 (#:amount 97963496 #:time 336)) (heartbeat 2015-06-20T02:10:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:10:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:10:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:11:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:11:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:11:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:11:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:11:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:11:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:11:56 (#:amount 98096208 #:time 332)) (heartbeat 2015-06-20T02:12:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:12:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:12:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:12:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:12:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:12:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:13:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:13:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:13:21 (#:amount 97850664 #:time 334)) (heartbeat 2015-06-20T02:13:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:13:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:13:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:13:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:14:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:14:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:14:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:14:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:14:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:14:51 (#:amount 98092512 #:time 331)) (heartbeat 2015-06-20T02:14:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:15:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:15:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:15:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:15:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:15:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:15:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:16:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:16:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:16:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:16:25 (#:amount 97834312 #:time 334)) (heartbeat 2015-06-20T02:16:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:16:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:16:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:17:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:17:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:17:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:17:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:17:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:17:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:17:53 (#:amount 98165840 #:time 279)) (heartbeat 2015-06-20T02:18:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:18:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:18:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:18:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:18:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:18:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:19:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:19:11 (#:amount 97863992 #:time 330)) (heartbeat 2015-06-20T02:19:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:19:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:19:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:19:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:19:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:20:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:20:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:20:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:20:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:20:33 (#:amount 98135000 #:time 286)) (heartbeat 2015-06-20T02:20:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:20:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:21:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:21:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:21:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:21:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:21:41 (#:amount 97821264 #:time 284)) (heartbeat 2015-06-20T02:21:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:21:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:22:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:22:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:22:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:22:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:22:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:22:48 (#:amount 98124432 #:time 279)) (heartbeat 2015-06-20T02:22:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:23:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:23:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:23:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:23:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:23:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:23:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:23:55 (#:amount 97856000 #:time 281)) (heartbeat 2015-06-20T02:24:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:24:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:24:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:24:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:24:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:24:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:25:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:25:03 (#:amount 98014344 #:time 282)) (heartbeat 2015-06-20T02:25:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:25:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:25:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:25:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:25:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:26:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:26:10 (#:amount 97889880 #:time 284)) (heartbeat 2015-06-20T02:26:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:26:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:26:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:26:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:26:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:27:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:27:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:27:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:27:32 (#:amount 98026808 #:time 337)) (heartbeat 2015-06-20T02:27:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:27:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:27:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:28:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:28:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:28:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:28:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:28:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:28:52 (#:amount 97817136 #:time 335)) (heartbeat 2015-06-20T02:28:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:29:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:29:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:29:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:29:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:29:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:29:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:30:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:30:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:30:19 (#:amount 98053360 #:time 285)) (heartbeat 2015-06-20T02:30:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:30:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:30:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:30:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:31:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:31:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:31:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:31:28 (#:amount 97822432 #:time 283)) (heartbeat 2015-06-20T02:31:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:31:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:31:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:32:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:32:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:32:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:32:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:32:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:32:45 (#:amount 98204624 #:time 281)) (heartbeat 2015-06-20T02:32:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:33:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:33:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:33:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:33:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:33:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:33:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:33:58 (#:amount 97879112 #:time 336)) (heartbeat 2015-06-20T02:34:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:34:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:34:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:34:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:34:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:34:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:35:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:35:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:35:16 (#:amount 98114312 #:time 283)) (heartbeat 2015-06-20T02:35:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:35:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:35:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:35:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:36:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:36:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:36:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:36:31 (#:amount 97781888 #:time 336)) (heartbeat 2015-06-20T02:36:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:36:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:36:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:37:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:37:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:37:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:37:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:37:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:37:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:38:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:38:09 (#:amount 98160544 #:time 337)) (heartbeat 2015-06-20T02:38:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:38:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:38:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:38:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:38:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:39:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:39:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:39:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:39:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:39:38 (#:amount 97842480 #:time 283)) (heartbeat 2015-06-20T02:39:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:39:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:40:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:40:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:40:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:40:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:40:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:40:50 (#:amount 98141472 #:time 337)) (heartbeat 2015-06-20T02:40:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:41:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:41:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:41:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:41:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:41:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:41:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:42:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:42:13 (#:amount 97949552 #:time 333)) (heartbeat 2015-06-20T02:42:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:42:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:42:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:42:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:42:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:43:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:43:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:43:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:43:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:43:35 (#:amount 98054696 #:time 331)) (heartbeat 2015-06-20T02:43:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:43:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:44:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:44:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:44:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:44:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:44:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:44:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:45:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:45:09 (#:amount 97788336 #:time 335)) (heartbeat 2015-06-20T02:45:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:45:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:45:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:45:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:45:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:46:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:46:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:46:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:46:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:46:43 (#:amount 98045752 #:time 332)) (heartbeat 2015-06-20T02:46:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:46:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:47:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:47:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:47:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:47:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:47:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:47:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:48:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:48:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:48:17 (#:amount 97872200 #:time 331)) (heartbeat 2015-06-20T02:48:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:48:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:48:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:48:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:49:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:49:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:49:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:49:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:49:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:49:52 (#:amount 97999488 #:time 338)) (heartbeat 2015-06-20T02:49:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:50:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:50:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:50:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:50:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:50:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:50:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:51:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:51:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:51:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:51:31 (#:amount 97915880 #:time 338)) (heartbeat 2015-06-20T02:51:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:51:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:51:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:52:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:52:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:52:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:52:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:52:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:52:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:53:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:53:09 (#:amount 98000280 #:time 334)) (heartbeat 2015-06-20T02:53:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:53:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:53:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:53:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:53:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:54:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:54:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:54:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:54:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:54:43 (#:amount 97956176 #:time 336)) (heartbeat 2015-06-20T02:54:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:54:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:55:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:55:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:55:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:55:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:55:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:55:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:56:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:56:07 (#:amount 98097168 #:time 332)) (heartbeat 2015-06-20T02:56:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:56:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:56:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:56:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:56:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:57:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:57:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:57:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:57:33 (#:amount 97839976 #:time 331)) (heartbeat 2015-06-20T02:57:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:57:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:57:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:58:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:58:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:58:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:58:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:58:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:58:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T02:58:59 (#:amount 98143104 #:time 283)) (heartbeat 2015-06-20T02:59:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:59:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:59:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:59:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:59:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T02:59:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:00:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:00:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:00:22 (#:amount 97785600 #:time 332)) (heartbeat 2015-06-20T03:00:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:00:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:00:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:00:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:01:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:01:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:01:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:01:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:01:42 (#:amount 98199016 #:time 282)) (heartbeat 2015-06-20T03:01:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:01:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:02:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:02:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:02:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:02:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:02:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:02:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:03:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:03:07 (#:amount 97758792 #:time 333)) (heartbeat 2015-06-20T03:03:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:03:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:03:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:03:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:03:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:04:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:04:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:04:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:04:27 (#:amount 98202088 #:time 284)) (heartbeat 2015-06-20T03:04:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:04:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:04:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:05:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:05:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:05:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:05:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:05:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:05:51 (#:amount 97813168 #:time 333)) (heartbeat 2015-06-20T03:05:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:06:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:06:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:06:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:06:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:06:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:06:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:07:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:07:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:07:16 (#:amount 98150856 #:time 302)) (heartbeat 2015-06-20T03:07:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:07:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:07:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:07:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:08:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:08:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:08:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:08:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:08:39 (#:amount 97864376 #:time 283)) (heartbeat 2015-06-20T03:08:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:08:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:09:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:09:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:09:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:09:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:09:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:09:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:10:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:10:11 (#:amount 98099040 #:time 335)) (heartbeat 2015-06-20T03:10:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:10:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:10:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:10:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:10:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:11:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:11:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:11:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:11:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:11:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:11:46 (#:amount 97821016 #:time 333)) (heartbeat 2015-06-20T03:11:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:12:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:12:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:12:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:12:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:12:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:12:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:13:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:13:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:13:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:13:24 (#:amount 98214296 #:time 334)) (heartbeat 2015-06-20T03:13:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:13:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:13:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:14:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:14:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:14:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:14:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:14:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:14:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:15:00 (#:amount 97859384 #:time 336)) (heartbeat 2015-06-20T03:15:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:15:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:15:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:15:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:15:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:15:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:16:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:16:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:16:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:16:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:16:37 (#:amount 98035800 #:time 335)) (heartbeat 2015-06-20T03:16:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:16:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:17:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:17:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:17:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:17:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:17:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:17:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:18:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:18:13 (#:amount 97795424 #:time 338)) (heartbeat 2015-06-20T03:18:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:18:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:18:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:18:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:18:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:19:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:19:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:19:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:19:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:19:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:19:48 (#:amount 98175576 #:time 329)) (heartbeat 2015-06-20T03:19:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:20:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:20:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:20:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:20:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:20:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:20:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:21:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:21:12 (#:amount 97810688 #:time 282)) (heartbeat 2015-06-20T03:21:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:21:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:21:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:21:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:21:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:22:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:22:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:22:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:22:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:22:41 (#:amount 98091640 #:time 281)) (heartbeat 2015-06-20T03:22:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:22:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:23:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:23:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:23:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:23:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:23:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:23:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:24:05 (#:amount 97783584 #:time 282)) (heartbeat 2015-06-20T03:24:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:24:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:24:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:24:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:24:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:24:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:25:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:25:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:25:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:25:33 (#:amount 98162368 #:time 330)) (heartbeat 2015-06-20T03:25:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:25:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:25:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:26:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:26:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:26:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:26:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:26:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:26:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:27:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:27:06 (#:amount 97862760 #:time 335)) (heartbeat 2015-06-20T03:27:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:27:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:27:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:27:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:27:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:28:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:28:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:28:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:28:29 (#:amount 98056872 #:time 340)) (heartbeat 2015-06-20T03:28:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:28:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:28:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:29:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:29:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:29:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:29:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:29:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:29:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:30:01 (#:amount 97835752 #:time 330)) (heartbeat 2015-06-20T03:30:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:30:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:30:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:30:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:30:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:30:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:31:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:31:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:31:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:31:33 (#:amount 98019864 #:time 328)) (heartbeat 2015-06-20T03:31:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:31:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:31:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:32:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:32:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:32:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:32:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:32:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:32:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:33:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:33:06 (#:amount 97918248 #:time 331)) (heartbeat 2015-06-20T03:33:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:33:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:33:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:33:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:33:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:34:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:34:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:34:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:34:34 (#:amount 97989752 #:time 336)) (heartbeat 2015-06-20T03:34:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:34:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:34:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:35:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:35:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:35:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:35:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:35:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:35:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:35:57 (#:amount 97911544 #:time 330)) (heartbeat 2015-06-20T03:36:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:36:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:36:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:36:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:36:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:36:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:37:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:37:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:37:23 (#:amount 98090496 #:time 285)) (heartbeat 2015-06-20T03:37:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:37:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:37:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:37:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:38:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:38:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:38:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:38:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:38:44 (#:amount 97843912 #:time 335)) (heartbeat 2015-06-20T03:38:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:38:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:39:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:39:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:39:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:39:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:39:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:39:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:40:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:40:09 (#:amount 98180152 #:time 281)) (heartbeat 2015-06-20T03:40:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:40:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:40:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:40:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:40:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:41:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:41:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:41:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:41:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:41:38 (#:amount 97914368 #:time 285)) (heartbeat 2015-06-20T03:41:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:41:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:42:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:42:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:42:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:42:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:42:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:42:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:43:03 (#:amount 98159720 #:time 335)) (heartbeat 2015-06-20T03:43:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:43:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:43:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:43:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:43:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:43:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:44:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:44:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:44:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:44:33 (#:amount 97942976 #:time 279)) (heartbeat 2015-06-20T03:44:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:44:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:44:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:45:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:45:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:45:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:45:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:45:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:45:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:45:56 (#:amount 98011368 #:time 300)) (heartbeat 2015-06-20T03:46:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:46:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:46:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:46:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:46:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:46:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:47:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:47:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:47:21 (#:amount 97844512 #:time 333)) (heartbeat 2015-06-20T03:47:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:47:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:47:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:47:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:48:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:48:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:48:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:48:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:48:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:48:47 (#:amount 98077656 #:time 282)) (heartbeat 2015-06-20T03:48:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:49:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:49:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:49:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:49:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:49:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:49:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:50:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:50:09 (#:amount 97764664 #:time 340)) (heartbeat 2015-06-20T03:50:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:50:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:50:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:50:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:50:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:51:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:51:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:51:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:51:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:51:41 (#:amount 98144584 #:time 337)) (heartbeat 2015-06-20T03:51:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:51:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:52:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:52:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:52:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:52:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:52:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:52:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:53:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:53:14 (#:amount 97874696 #:time 335)) (heartbeat 2015-06-20T03:53:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:53:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:53:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:53:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:53:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:54:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:54:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:54:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:54:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:54:41 (#:amount 98143344 #:time 336)) (heartbeat 2015-06-20T03:54:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:54:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:55:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:55:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:55:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:55:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:55:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:55:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:56:05 (#:amount 97899560 #:time 340)) (heartbeat 2015-06-20T03:56:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:56:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:56:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:56:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:56:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:56:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:57:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:57:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:57:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:57:30 (#:amount 98099248 #:time 282)) (heartbeat 2015-06-20T03:57:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:57:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:57:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:58:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:58:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:58:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:58:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:58:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:58:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T03:59:01 (#:amount 97870520 #:time 282)) (heartbeat 2015-06-20T03:59:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:59:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:59:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:59:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:59:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T03:59:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:00:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:00:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:00:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:00:26 (#:amount 98178464 #:time 334)) (heartbeat 2015-06-20T04:00:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:00:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:00:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:01:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:01:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:01:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:01:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:01:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:01:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:02:01 (#:amount 97938384 #:time 337)) (heartbeat 2015-06-20T04:02:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:02:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:02:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:02:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:02:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:02:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:03:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:03:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:03:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:03:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:03:37 (#:amount 97836520 #:time 340)) (heartbeat 2015-06-20T04:03:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:03:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:04:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:04:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:04:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:04:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:04:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:04:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:05:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:05:12 (#:amount 97852128 #:time 285)) (heartbeat 2015-06-20T04:05:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:05:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:05:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:05:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:05:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:06:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:06:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:06:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:06:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:06:43 (#:amount 98203024 #:time 331)) (heartbeat 2015-06-20T04:06:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:06:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:07:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:07:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:07:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:07:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:07:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:07:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:08:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:08:12 (#:amount 97823832 #:time 283)) (heartbeat 2015-06-20T04:08:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:08:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:08:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:08:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:08:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:09:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:09:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:09:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:09:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:09:41 (#:amount 98139064 #:time 338)) (heartbeat 2015-06-20T04:09:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:09:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:10:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:10:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:10:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:10:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:10:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:10:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:11:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:11:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:11:18 (#:amount 97887704 #:time 334)) (heartbeat 2015-06-20T04:11:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:11:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:11:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:11:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:12:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:12:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:12:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:12:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:12:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:12:56 (#:amount 98200600 #:time 336)) (heartbeat 2015-06-20T04:12:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:13:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:13:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:13:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:13:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:13:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:13:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:14:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:14:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:14:26 (#:amount 97881624 #:time 337)) (heartbeat 2015-06-20T04:14:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:14:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:14:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:14:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:15:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:15:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:15:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:15:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:15:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:15:53 (#:amount 97997824 #:time 280)) (heartbeat 2015-06-20T04:15:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:16:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:16:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:16:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:16:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:16:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:16:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:17:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:17:16 (#:amount 97858064 #:time 283)) (heartbeat 2015-06-20T04:17:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:17:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:17:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:17:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:17:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:18:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:18:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:18:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:18:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:18:38 (#:amount 98077256 #:time 280)) (heartbeat 2015-06-20T04:18:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:18:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:19:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:19:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:19:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:19:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:19:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:19:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:19:58 (#:amount 97936416 #:time 332)) (heartbeat 2015-06-20T04:20:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:20:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:20:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:20:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:20:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:20:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:21:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:21:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:21:27 (#:amount 98067536 #:time 332)) (heartbeat 2015-06-20T04:21:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:21:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:21:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:21:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:22:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:22:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:22:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:22:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:22:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:22:50 (#:amount 97773888 #:time 281)) (heartbeat 2015-06-20T04:22:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:23:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:23:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:23:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:23:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:23:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:23:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:24:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:24:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:24:24 (#:amount 98125504 #:time 341)) (heartbeat 2015-06-20T04:24:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:24:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:24:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:24:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:25:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:25:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:25:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:25:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:25:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:25:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:26:00 (#:amount 97869168 #:time 335)) (heartbeat 2015-06-20T04:26:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:26:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:26:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:26:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:26:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:26:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:27:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:27:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:27:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:27:35 (#:amount 97986008 #:time 335)) (heartbeat 2015-06-20T04:27:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:27:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:27:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:28:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:28:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:28:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:28:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:28:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:28:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:29:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:29:10 (#:amount 97916672 #:time 336)) (heartbeat 2015-06-20T04:29:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:29:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:29:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:29:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:29:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:30:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:30:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:30:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:30:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:30:42 (#:amount 98058024 #:time 334)) (heartbeat 2015-06-20T04:30:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:30:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:31:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:31:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:31:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:31:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:31:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:31:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:32:07 (#:amount 97896616 #:time 339)) (heartbeat 2015-06-20T04:32:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:32:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:32:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:32:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:32:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:32:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:33:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:33:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:33:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:33:33 (#:amount 98099312 #:time 338)) (heartbeat 2015-06-20T04:33:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:33:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:33:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:34:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:34:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:34:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:34:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:34:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:34:56 (#:amount 97927896 #:time 286)) (heartbeat 2015-06-20T04:34:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:35:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:35:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:35:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:35:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:35:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:35:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:36:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:36:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:36:26 (#:amount 98149960 #:time 284)) (heartbeat 2015-06-20T04:36:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:36:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:36:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:36:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:37:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:37:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:37:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:37:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:37:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:37:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:38:01 (#:amount 97830520 #:time 333)) (heartbeat 2015-06-20T04:38:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:38:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:38:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:38:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:38:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:38:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:39:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:39:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:39:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:39:37 (#:amount 98193192 #:time 339)) (heartbeat 2015-06-20T04:39:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:39:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:39:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:40:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:40:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:40:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:40:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:40:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:40:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:41:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:41:11 (#:amount 97747472 #:time 280)) (heartbeat 2015-06-20T04:41:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:41:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:41:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:41:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:41:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:42:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:42:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:42:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:42:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:42:46 (#:amount 98263520 #:time 336)) (heartbeat 2015-06-20T04:42:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:42:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:43:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:43:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:43:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:43:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:43:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:43:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:44:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:44:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:44:20 (#:amount 97763088 #:time 336)) (heartbeat 2015-06-20T04:44:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:44:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:44:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:44:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:45:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:45:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:45:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:45:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:45:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:45:53 (#:amount 98158168 #:time 328)) (heartbeat 2015-06-20T04:45:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:46:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:46:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:46:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:46:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:46:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:46:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:47:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:47:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:47:25 (#:amount 97885664 #:time 282)) (heartbeat 2015-06-20T04:47:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:47:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:47:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:47:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:48:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:48:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:48:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:48:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:48:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:48:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:49:00 (#:amount 98048840 #:time 334)) (heartbeat 2015-06-20T04:49:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:49:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:49:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:49:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:49:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:49:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:50:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:50:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:50:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:50:36 (#:amount 97894256 #:time 338)) (heartbeat 2015-06-20T04:50:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:50:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:50:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:51:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:51:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:51:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:51:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:51:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:51:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:52:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:52:14 (#:amount 98111008 #:time 341)) (heartbeat 2015-06-20T04:52:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:52:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:52:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:52:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:52:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:53:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:53:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:53:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:53:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:53:44 (#:amount 97927928 #:time 331)) (heartbeat 2015-06-20T04:53:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:53:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:54:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:54:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:54:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:54:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:54:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:54:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:55:03 (#:amount 97959472 #:time 332)) (heartbeat 2015-06-20T04:55:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:55:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:55:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:55:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:55:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:55:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:56:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:56:18 (#:amount 97883264 #:time 280)) (heartbeat 2015-06-20T04:56:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:56:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:56:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:56:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:56:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:57:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:57:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:57:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:57:33 (#:amount 97921456 #:time 280)) (heartbeat 2015-06-20T04:57:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:57:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:57:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:58:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:58:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:58:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:58:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:58:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T04:58:51 (#:amount 97983944 #:time 330)) (heartbeat 2015-06-20T04:58:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:59:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:59:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:59:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:59:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:59:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T04:59:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:00:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:00:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:00:26 (#:amount 97972952 #:time 333)) (heartbeat 2015-06-20T05:00:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:00:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:00:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:00:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:01:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:01:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:01:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:01:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:01:40 (#:amount 97937328 #:time 336)) (heartbeat 2015-06-20T05:01:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:01:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:02:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:02:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:02:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:02:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:02:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:02:53 (#:amount 98029264 #:time 282)) (heartbeat 2015-06-20T05:02:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:03:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:03:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:03:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:03:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:03:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:03:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:04:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:04:12 (#:amount 97846800 #:time 339)) (heartbeat 2015-06-20T05:04:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:04:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:04:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:04:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:04:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:05:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:05:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:05:28 (#:amount 98125728 #:time 330)) (heartbeat 2015-06-20T05:05:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:05:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:05:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:05:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:06:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:06:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:06:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:06:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:06:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:06:54 (#:amount 97862608 #:time 330)) (heartbeat 2015-06-20T05:06:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:07:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:07:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:07:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:07:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:07:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:07:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:08:04 (#:amount 98028616 #:time 281)) (heartbeat 2015-06-20T05:08:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:08:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:08:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:08:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:08:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:08:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:09:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:09:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:09:22 (#:amount 97937648 #:time 286)) (heartbeat 2015-06-20T05:09:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:09:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:09:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:09:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:10:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:10:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:10:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:10:37 (#:amount 98169664 #:time 333)) (heartbeat 2015-06-20T05:10:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:10:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:10:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:11:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:11:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:11:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:11:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:11:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:11:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:12:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:12:12 (#:amount 97890768 #:time 333)) (heartbeat 2015-06-20T05:12:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:12:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:12:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:12:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:12:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:13:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:13:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:13:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:13:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:13:49 (#:amount 98071440 #:time 343)) (heartbeat 2015-06-20T05:13:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:13:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:14:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:14:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:14:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:14:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:14:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:14:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:15:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:15:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:15:24 (#:amount 97896816 #:time 335)) (heartbeat 2015-06-20T05:15:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:15:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:15:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:15:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:16:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:16:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:16:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:16:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:16:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:16:59 (#:amount 98047528 #:time 331)) (heartbeat 2015-06-20T05:16:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:17:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:17:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:17:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:17:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:17:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:17:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:18:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:18:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:18:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:18:33 (#:amount 97801128 #:time 333)) (heartbeat 2015-06-20T05:18:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:18:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:18:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:19:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:19:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:19:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:19:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:19:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:19:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:20:06 (#:amount 98065544 #:time 333)) (heartbeat 2015-06-20T05:20:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:20:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:20:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:20:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:20:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:20:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:21:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:21:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:21:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:21:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:21:42 (#:amount 97974256 #:time 340)) (heartbeat 2015-06-20T05:21:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:21:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:22:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:22:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:22:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:22:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:22:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:22:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:23:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:23:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:23:21 (#:amount 98115064 #:time 339)) (heartbeat 2015-06-20T05:23:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:23:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:23:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:23:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:24:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:24:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:24:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:24:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:24:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:24:58 (#:amount 97862592 #:time 332)) (heartbeat 2015-06-20T05:24:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:25:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:25:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:25:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:25:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:25:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:25:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:26:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:26:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:26:23 (#:amount 98008232 #:time 285)) (heartbeat 2015-06-20T05:26:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:26:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:26:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:26:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:27:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:27:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:27:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:27:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:27:44 (#:amount 97895128 #:time 283)) (heartbeat 2015-06-20T05:27:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:27:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:28:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:28:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:28:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:28:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:28:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:28:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:29:07 (#:amount 98084384 #:time 330)) (heartbeat 2015-06-20T05:29:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:29:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:29:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:29:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:29:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:29:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:30:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:30:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:30:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:30:30 (#:amount 97923136 #:time 283)) (heartbeat 2015-06-20T05:30:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:30:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:30:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:31:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:31:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:31:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:31:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:31:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:31:57 (#:amount 98138424 #:time 332)) (heartbeat 2015-06-20T05:31:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:32:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:32:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:32:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:32:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:32:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:32:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:33:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:33:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:33:28 (#:amount 97764952 #:time 280)) (heartbeat 2015-06-20T05:33:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:33:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:33:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:34:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:34:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:34:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:34:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:34:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:34:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:35:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:35:03 (#:amount 98057800 #:time 338)) (heartbeat 2015-06-20T05:35:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:35:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:35:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:35:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:35:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:36:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:36:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:36:12 (#:amount 97941728 #:time 282)) (heartbeat 2015-06-20T05:36:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:36:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:36:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:36:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:37:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:37:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:37:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:37:25 (#:amount 97995200 #:time 298)) (heartbeat 2015-06-20T05:37:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:37:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:37:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:38:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:38:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:38:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:38:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:38:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:38:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:38:53 (#:amount 97863624 #:time 333)) (heartbeat 2015-06-20T05:39:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:39:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:39:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:39:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:39:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:39:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:40:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:40:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:40:14 (#:amount 98048624 #:time 332)) (heartbeat 2015-06-20T05:40:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:40:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:40:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:40:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:41:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:41:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:41:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:41:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:41:39 (#:amount 97859096 #:time 334)) (heartbeat 2015-06-20T05:41:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:41:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:42:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:42:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:42:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:42:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:42:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:42:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:43:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:43:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:43:17 (#:amount 98058784 #:time 341)) (heartbeat 2015-06-20T05:43:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:43:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:43:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:43:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:44:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:44:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:44:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:44:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:44:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:44:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:44:55 (#:amount 97881496 #:time 342)) (heartbeat 2015-06-20T05:45:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:45:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:45:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:45:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:45:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:45:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:46:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:46:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:46:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:46:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:46:33 (#:amount 98048192 #:time 342)) (heartbeat 2015-06-20T05:46:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:46:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:47:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:47:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:47:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:47:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:47:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:47:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:48:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:48:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:48:12 (#:amount 97774088 #:time 341)) (heartbeat 2015-06-20T05:48:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:48:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:48:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:48:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:49:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:49:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:49:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:49:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:49:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:49:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:49:52 (#:amount 98086168 #:time 341)) (heartbeat 2015-06-20T05:50:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:50:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:50:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:50:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:50:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:50:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:51:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:51:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:51:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:51:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:51:31 (#:amount 97954728 #:time 341)) (heartbeat 2015-06-20T05:51:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:51:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:52:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:52:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:52:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:52:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:52:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:52:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:53:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:53:08 (#:amount 98110392 #:time 331)) (heartbeat 2015-06-20T05:53:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:53:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:53:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:53:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:53:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:54:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:54:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:54:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:54:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:54:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:54:41 (#:amount 97941120 #:time 332)) (heartbeat 2015-06-20T05:54:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:55:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:55:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:55:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:55:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:55:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:55:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:56:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:56:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:56:15 (#:amount 98071136 #:time 333)) (heartbeat 2015-06-20T05:56:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:56:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:56:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:56:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:57:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:57:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:57:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:57:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:57:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:57:49 (#:amount 97856768 #:time 333)) (heartbeat 2015-06-20T05:57:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:58:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:58:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:58:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:58:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:58:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:58:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:59:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:59:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:59:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T05:59:25 (#:amount 98040040 #:time 335)) (heartbeat 2015-06-20T05:59:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:59:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T05:59:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:00:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:00:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:00:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:00:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:00:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:00:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:01:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:01:02 (#:amount 97821696 #:time 333)) (heartbeat 2015-06-20T06:01:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:01:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:01:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:01:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:01:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:02:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:02:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:02:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:02:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:02:39 (#:amount 98054240 #:time 339)) (heartbeat 2015-06-20T06:02:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:02:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:03:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:03:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:03:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:03:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:03:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:03:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:04:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:04:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:04:16 (#:amount 97833960 #:time 335)) (heartbeat 2015-06-20T06:04:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:04:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:04:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:04:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:05:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:05:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:05:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:05:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:05:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:05:50 (#:amount 98144352 #:time 338)) (heartbeat 2015-06-20T06:05:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:06:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:06:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:06:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:06:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:06:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:06:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:07:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:07:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:07:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:07:27 (#:amount 97849096 #:time 336)) (heartbeat 2015-06-20T06:07:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:07:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:07:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:08:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:08:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:08:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:08:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:08:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:08:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:08:55 (#:amount 98189248 #:time 335)) (heartbeat 2015-06-20T06:09:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:09:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:09:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:09:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:09:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:09:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:10:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:10:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:10:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:10:23 (#:amount 97788696 #:time 334)) (heartbeat 2015-06-20T06:10:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:10:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:10:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:11:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:11:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:11:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:11:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:11:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:11:48 (#:amount 98124016 #:time 282)) (heartbeat 2015-06-20T06:11:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:12:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:12:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:12:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:12:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:12:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:12:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:13:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:13:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:13:16 (#:amount 97808328 #:time 341)) (heartbeat 2015-06-20T06:13:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:13:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:13:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:13:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:14:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:14:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:14:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:14:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:14:36 (#:amount 98053656 #:time 284)) (heartbeat 2015-06-20T06:14:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:14:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:15:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:15:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:15:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:15:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:15:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:15:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:16:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:16:01 (#:amount 97983736 #:time 334)) (heartbeat 2015-06-20T06:16:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:16:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:16:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:16:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:16:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:17:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:17:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:17:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:17:27 (#:amount 98065552 #:time 336)) (heartbeat 2015-06-20T06:17:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:17:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:17:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:18:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:18:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:18:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:18:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:18:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:18:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:18:56 (#:amount 97854736 #:time 341)) (heartbeat 2015-06-20T06:19:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:19:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:19:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:19:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:19:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:19:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:20:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:20:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:20:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:20:31 (#:amount 98140112 #:time 333)) (heartbeat 2015-06-20T06:20:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:20:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:20:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:21:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:21:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:21:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:21:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:21:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:21:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:22:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:22:04 (#:amount 97796864 #:time 335)) (heartbeat 2015-06-20T06:22:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:22:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:22:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:22:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:22:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:23:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:23:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:23:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:23:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:23:40 (#:amount 98064840 #:time 334)) (heartbeat 2015-06-20T06:23:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:23:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:24:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:24:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:24:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:24:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:24:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:24:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:25:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:25:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:25:18 (#:amount 97906296 #:time 339)) (heartbeat 2015-06-20T06:25:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:25:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:25:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:25:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:26:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:26:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:26:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:26:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:26:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:26:50 (#:amount 97982448 #:time 334)) (heartbeat 2015-06-20T06:26:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:27:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:27:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:27:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:27:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:27:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:27:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:28:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:28:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:28:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:28:28 (#:amount 97907528 #:time 342)) (heartbeat 2015-06-20T06:28:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:28:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:28:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:29:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:29:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:29:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:29:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:29:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:29:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:30:00 (#:amount 98145328 #:time 334)) (heartbeat 2015-06-20T06:30:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:30:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:30:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:30:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:30:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:30:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:31:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:31:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:31:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:31:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:31:35 (#:amount 97833016 #:time 332)) (heartbeat 2015-06-20T06:31:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:31:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:32:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:32:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:32:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:32:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:32:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:32:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:33:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:33:11 (#:amount 98123736 #:time 333)) (heartbeat 2015-06-20T06:33:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:33:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:33:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:33:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:33:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:34:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:34:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:34:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:34:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:34:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:34:45 (#:amount 97898904 #:time 301)) (heartbeat 2015-06-20T06:34:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:35:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:35:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:35:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:35:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:35:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:35:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:36:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:36:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:36:18 (#:amount 98010792 #:time 333)) (heartbeat 2015-06-20T06:36:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:36:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:36:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:36:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:37:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:37:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:37:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:37:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:37:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:37:51 (#:amount 97931640 #:time 340)) (heartbeat 2015-06-20T06:37:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:38:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:38:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:38:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:38:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:38:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:38:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:39:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:39:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:39:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:39:27 (#:amount 98042584 #:time 340)) (heartbeat 2015-06-20T06:39:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:39:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:39:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:40:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:40:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:40:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:40:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:40:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:40:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:41:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:41:03 (#:amount 97881264 #:time 337)) (heartbeat 2015-06-20T06:41:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:41:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:41:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:41:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:41:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:42:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:42:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:42:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:42:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:42:37 (#:amount 98040712 #:time 337)) (heartbeat 2015-06-20T06:42:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:42:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:43:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:43:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:43:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:43:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:43:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:43:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:44:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:44:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:44:14 (#:amount 97773160 #:time 341)) (heartbeat 2015-06-20T06:44:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:44:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:44:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:44:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:45:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:45:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:45:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:45:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:45:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:45:46 (#:amount 98078824 #:time 338)) (heartbeat 2015-06-20T06:45:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:46:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:46:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:46:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:46:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:46:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:46:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:47:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:47:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:47:19 (#:amount 97912040 #:time 332)) (heartbeat 2015-06-20T06:47:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:47:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:47:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:47:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:48:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:48:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:48:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:48:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:48:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:48:51 (#:amount 98005328 #:time 334)) (heartbeat 2015-06-20T06:48:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:49:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:49:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:49:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:49:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:49:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:49:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:50:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:50:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:50:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:50:25 (#:amount 97840704 #:time 333)) (heartbeat 2015-06-20T06:50:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:50:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:50:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:51:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:51:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:51:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:51:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:51:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:51:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:51:59 (#:amount 98044128 #:time 333)) (heartbeat 2015-06-20T06:52:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:52:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:52:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:52:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:52:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:52:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:53:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:53:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:53:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:53:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:53:33 (#:amount 97872616 #:time 335)) (heartbeat 2015-06-20T06:53:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:53:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:54:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:54:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:54:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:54:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:54:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:54:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:55:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:55:06 (#:amount 98176288 #:time 338)) (heartbeat 2015-06-20T06:55:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:55:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:55:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:55:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:55:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:56:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:56:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:56:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:56:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:56:40 (#:amount 97854688 #:time 340)) (heartbeat 2015-06-20T06:56:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:56:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:57:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:57:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:57:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:57:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:57:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:57:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:58:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:58:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:58:19 (#:amount 98109808 #:time 338)) (heartbeat 2015-06-20T06:58:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:58:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:58:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:58:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:59:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:59:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:59:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:59:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:59:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T06:59:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T06:59:56 (#:amount 97851992 #:time 340)) (heartbeat 2015-06-20T07:00:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:00:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:00:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:00:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:00:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:00:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:01:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:01:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:01:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:01:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:01:35 (#:amount 98200280 #:time 341)) (heartbeat 2015-06-20T07:01:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:01:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:02:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:02:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:02:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:02:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:02:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:02:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:03:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:03:11 (#:amount 97958080 #:time 330)) (heartbeat 2015-06-20T07:03:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:03:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:03:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:03:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:03:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:04:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:04:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:04:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:04:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:04:37 (#:amount 98023080 #:time 332)) (heartbeat 2015-06-20T07:04:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:04:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:05:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:05:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:05:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:05:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:05:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:05:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:06:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:06:09 (#:amount 97823376 #:time 285)) (heartbeat 2015-06-20T07:06:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:06:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:06:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:06:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:06:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:07:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:07:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:07:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:07:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:07:36 (#:amount 98126280 #:time 281)) (heartbeat 2015-06-20T07:07:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:07:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:08:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:08:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:08:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:08:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:08:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:08:47 (#:amount 97771224 #:time 283)) (heartbeat 2015-06-20T07:08:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:09:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:09:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:09:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:09:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:09:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:09:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:10:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:10:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:10:14 (#:amount 98191776 #:time 341)) (heartbeat 2015-06-20T07:10:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:10:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:10:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:10:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:11:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:11:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:11:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:11:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:11:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:11:49 (#:amount 97806008 #:time 334)) (heartbeat 2015-06-20T07:11:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:12:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:12:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:12:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:12:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:12:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:12:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:13:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:13:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:13:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:13:25 (#:amount 98229624 #:time 335)) (heartbeat 2015-06-20T07:13:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:13:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:13:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:14:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:14:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:14:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:14:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:14:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:14:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:14:57 (#:amount 97861280 #:time 341)) (heartbeat 2015-06-20T07:15:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:15:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:15:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:15:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:15:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:15:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:16:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:16:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:16:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:16:28 (#:amount 98147392 #:time 339)) (heartbeat 2015-06-20T07:16:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:16:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:16:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:17:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:17:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:17:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:17:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:17:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:17:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:18:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:18:06 (#:amount 97853560 #:time 336)) (heartbeat 2015-06-20T07:18:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:18:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:18:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:18:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:18:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:19:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:19:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:19:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:19:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:19:34 (#:amount 98103792 #:time 331)) (heartbeat 2015-06-20T07:19:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:19:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:20:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:20:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:20:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:20:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:20:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:20:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:21:01 (#:amount 97950552 #:time 334)) (heartbeat 2015-06-20T07:21:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:21:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:21:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:21:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:21:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:21:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:22:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:22:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:22:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:22:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:22:37 (#:amount 98007024 #:time 340)) (heartbeat 2015-06-20T07:22:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:22:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:23:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:23:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:23:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:23:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:23:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:23:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:24:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:24:12 (#:amount 97893352 #:time 335)) (heartbeat 2015-06-20T07:24:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:24:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:24:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:24:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:24:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:25:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:25:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:25:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:25:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:25:43 (#:amount 98145800 #:time 340)) (heartbeat 2015-06-20T07:25:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:25:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:26:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:26:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:26:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:26:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:26:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:26:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:27:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:27:13 (#:amount 97825048 #:time 344)) (heartbeat 2015-06-20T07:27:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:27:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:27:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:27:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:27:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:28:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:28:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:28:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:28:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:28:36 (#:amount 98201840 #:time 284)) (heartbeat 2015-06-20T07:28:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:28:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:29:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:29:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:29:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:29:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:29:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:29:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:30:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:30:10 (#:amount 97860096 #:time 334)) (heartbeat 2015-06-20T07:30:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:30:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:30:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:30:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:30:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:31:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:31:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:31:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:31:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:31:43 (#:amount 98215008 #:time 330)) (heartbeat 2015-06-20T07:31:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:31:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:32:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:32:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:32:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:32:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:32:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:32:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:33:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:33:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:33:17 (#:amount 97934176 #:time 335)) (heartbeat 2015-06-20T07:33:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:33:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:33:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:33:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:34:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:34:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:34:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:34:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:34:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:34:48 (#:amount 98037024 #:time 333)) (heartbeat 2015-06-20T07:34:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:35:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:35:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:35:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:35:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:35:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:35:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:36:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:36:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:36:24 (#:amount 97828424 #:time 337)) (heartbeat 2015-06-20T07:36:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:36:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:36:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:36:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:37:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:37:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:37:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:37:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:37:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:37:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:38:00 (#:amount 98069592 #:time 340)) (heartbeat 2015-06-20T07:38:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:38:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:38:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:38:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:38:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:38:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:39:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:39:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:39:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:39:33 (#:amount 97832040 #:time 340)) (heartbeat 2015-06-20T07:39:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:39:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:39:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:40:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:40:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:40:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:40:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:40:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:40:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:41:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:41:10 (#:amount 98201376 #:time 335)) (heartbeat 2015-06-20T07:41:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:41:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:41:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:41:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:41:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:42:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:42:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:42:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:42:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:42:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:42:47 (#:amount 97979112 #:time 338)) (heartbeat 2015-06-20T07:42:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:43:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:43:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:43:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:43:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:43:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:43:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:44:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:44:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:44:24 (#:amount 98076600 #:time 336)) (heartbeat 2015-06-20T07:44:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:44:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:44:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:44:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:45:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:45:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:45:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:45:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:45:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:45:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:46:02 (#:amount 97873056 #:time 334)) (heartbeat 2015-06-20T07:46:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:46:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:46:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:46:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:46:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:46:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:47:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:47:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:47:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:47:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:47:38 (#:amount 98171272 #:time 333)) (heartbeat 2015-06-20T07:47:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:47:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:48:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:48:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:48:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:48:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:48:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:48:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:49:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:49:13 (#:amount 97900544 #:time 339)) (heartbeat 2015-06-20T07:49:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:49:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:49:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:49:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:49:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:50:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:50:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:50:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:50:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:50:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:50:52 (#:amount 98107416 #:time 341)) (heartbeat 2015-06-20T07:50:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:51:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:51:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:51:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:51:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:51:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:51:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:52:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:52:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:52:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:52:29 (#:amount 97862400 #:time 342)) (heartbeat 2015-06-20T07:52:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:52:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:52:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:53:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:53:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:53:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:53:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:53:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:53:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:54:04 (#:amount 98176992 #:time 330)) (heartbeat 2015-06-20T07:54:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:54:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:54:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:54:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:54:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:54:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:55:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:55:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:55:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:55:27 (#:amount 97797120 #:time 332)) (heartbeat 2015-06-20T07:55:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:55:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:55:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:56:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:56:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:56:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:56:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:56:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:56:55 (#:amount 98222992 #:time 328)) (heartbeat 2015-06-20T07:56:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:57:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:57:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:57:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:57:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:57:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:57:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:58:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:58:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:58:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T07:58:27 (#:amount 97887448 #:time 337)) (heartbeat 2015-06-20T07:58:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:58:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:58:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:59:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:59:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:59:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:59:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:59:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T07:59:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:00:03 (#:amount 98223560 #:time 335)) (heartbeat 2015-06-20T08:00:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:00:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:00:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:00:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:00:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:00:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:01:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:01:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:01:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:01:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:01:37 (#:amount 97937168 #:time 335)) (heartbeat 2015-06-20T08:01:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:01:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:02:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:02:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:02:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:02:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:02:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:02:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:03:00 (#:amount 98086304 #:time 281)) (heartbeat 2015-06-20T08:03:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:03:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:03:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:03:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:03:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:03:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:04:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:04:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:04:21 (#:amount 97879800 #:time 283)) (heartbeat 2015-06-20T08:04:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:04:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:04:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:04:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:05:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:05:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:05:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:05:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:05:42 (#:amount 98200912 #:time 341)) (heartbeat 2015-06-20T08:05:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:05:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:06:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:06:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:06:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:06:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:06:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:06:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:07:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:07:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:07:16 (#:amount 97869096 #:time 290)) (heartbeat 2015-06-20T08:07:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:07:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:07:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:07:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:08:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:08:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:08:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:08:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:08:45 (#:amount 98140024 #:time 332)) (heartbeat 2015-06-20T08:08:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:08:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:09:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:09:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:09:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:09:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:09:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:09:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:10:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:10:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:10:17 (#:amount 97884832 #:time 317)) (heartbeat 2015-06-20T08:10:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:10:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:10:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:10:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:11:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:11:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:11:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:11:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:11:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:11:46 (#:amount 98121400 #:time 332)) (heartbeat 2015-06-20T08:11:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:12:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:12:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:12:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:12:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:12:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:12:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:13:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:13:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:13:17 (#:amount 97865616 #:time 285)) (heartbeat 2015-06-20T08:13:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:13:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:13:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:13:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:14:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:14:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:14:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:14:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:14:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:14:48 (#:amount 98118232 #:time 332)) (heartbeat 2015-06-20T08:14:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:15:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:15:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:15:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:15:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:15:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:15:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:16:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:16:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:16:21 (#:amount 97875272 #:time 338)) (heartbeat 2015-06-20T08:16:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:16:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:16:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:16:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:17:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:17:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:17:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:17:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:17:43 (#:amount 98079648 #:time 335)) (heartbeat 2015-06-20T08:17:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:17:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:18:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:18:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:18:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:18:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:18:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:18:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:19:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:19:16 (#:amount 97822976 #:time 335)) (heartbeat 2015-06-20T08:19:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:19:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:19:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:19:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:19:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:20:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:20:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:20:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:20:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:20:45 (#:amount 98158480 #:time 330)) (heartbeat 2015-06-20T08:20:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:20:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:21:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:21:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:21:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:21:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:21:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:21:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:22:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:22:14 (#:amount 97880232 #:time 336)) (heartbeat 2015-06-20T08:22:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:22:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:22:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:22:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:22:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:23:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:23:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:23:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:23:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:23:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:23:50 (#:amount 98116832 #:time 332)) (heartbeat 2015-06-20T08:23:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:24:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:24:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:24:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:24:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:24:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:24:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:25:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:25:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:25:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:25:27 (#:amount 97867152 #:time 338)) (heartbeat 2015-06-20T08:25:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:25:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:25:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:26:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:26:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:26:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:26:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:26:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:26:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:27:01 (#:amount 98186144 #:time 334)) (heartbeat 2015-06-20T08:27:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:27:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:27:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:27:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:27:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:27:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:28:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:28:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:28:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:28:34 (#:amount 97808640 #:time 331)) (heartbeat 2015-06-20T08:28:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:28:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:28:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:29:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:29:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:29:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:29:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:29:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:29:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:30:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:30:08 (#:amount 98205696 #:time 338)) (heartbeat 2015-06-20T08:30:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:30:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:30:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:30:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:30:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:31:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:31:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:31:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:31:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:31:41 (#:amount 97898448 #:time 338)) (heartbeat 2015-06-20T08:31:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:31:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:32:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:32:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:32:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:32:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:32:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:32:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:33:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:33:10 (#:amount 98092664 #:time 310)) (heartbeat 2015-06-20T08:33:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:33:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:33:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:33:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:33:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:34:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:34:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:34:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:34:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:34:43 (#:amount 97826304 #:time 338)) (heartbeat 2015-06-20T08:34:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:34:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:35:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:35:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:35:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:35:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:35:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:35:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:36:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:36:13 (#:amount 98124400 #:time 331)) (heartbeat 2015-06-20T08:36:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:36:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:36:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:36:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:36:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:37:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:37:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:37:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:37:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:37:44 (#:amount 97908648 #:time 336)) (heartbeat 2015-06-20T08:37:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:37:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:38:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:38:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:38:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:38:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:38:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:38:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:39:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:39:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:39:20 (#:amount 98182640 #:time 341)) (heartbeat 2015-06-20T08:39:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:39:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:39:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:39:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:40:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:40:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:40:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:40:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:40:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:40:54 (#:amount 97830552 #:time 334)) (heartbeat 2015-06-20T08:40:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:41:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:41:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:41:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:41:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:41:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:41:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:42:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:42:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:42:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:42:29 (#:amount 98082888 #:time 334)) (heartbeat 2015-06-20T08:42:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:42:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:42:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:43:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:43:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:43:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:43:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:43:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:43:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:44:04 (#:amount 97836696 #:time 335)) (heartbeat 2015-06-20T08:44:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:44:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:44:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:44:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:44:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:44:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:45:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:45:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:45:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:45:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:45:38 (#:amount 98098920 #:time 329)) (heartbeat 2015-06-20T08:45:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:45:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:46:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:46:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:46:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:46:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:46:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:46:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:47:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:47:11 (#:amount 97796824 #:time 334)) (heartbeat 2015-06-20T08:47:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:47:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:47:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:47:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:47:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:48:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:48:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:48:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:48:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:48:43 (#:amount 98223088 #:time 333)) (heartbeat 2015-06-20T08:48:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:48:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:49:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:49:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:49:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:49:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:49:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:49:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:50:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:50:13 (#:amount 97962016 #:time 336)) (heartbeat 2015-06-20T08:50:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:50:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:50:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:50:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:50:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:51:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:51:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:51:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:51:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:51:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:51:49 (#:amount 98051728 #:time 335)) (heartbeat 2015-06-20T08:51:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:52:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:52:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:52:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:52:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:52:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:52:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:53:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:53:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:53:21 (#:amount 97867984 #:time 334)) (heartbeat 2015-06-20T08:53:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:53:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:53:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:53:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:54:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:54:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:54:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:54:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:54:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:54:49 (#:amount 98197544 #:time 340)) (heartbeat 2015-06-20T08:54:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:55:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:55:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:55:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:55:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:55:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:55:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:56:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:56:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:56:23 (#:amount 97845128 #:time 336)) (heartbeat 2015-06-20T08:56:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:56:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:56:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:56:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:57:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:57:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:57:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:57:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:57:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:57:57 (#:amount 98082432 #:time 333)) (heartbeat 2015-06-20T08:57:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:58:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:58:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:58:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:58:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:58:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:58:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:59:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:59:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T08:59:26 (#:amount 97842072 #:time 283)) (heartbeat 2015-06-20T08:59:27 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:59:37 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:59:47 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T08:59:57 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:00:07 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:00:17 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:00:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:00:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:00:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:00:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:01:00 (#:amount 98045568 #:time 333)) (heartbeat 2015-06-20T09:01:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:01:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:01:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:01:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:01:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:01:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:02:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:02:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:02:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:02:35 (#:amount 97846544 #:time 345)) (heartbeat 2015-06-20T09:02:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:02:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:02:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:03:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:03:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:03:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:03:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:03:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:03:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:04:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:04:10 (#:amount 98054480 #:time 332)) (heartbeat 2015-06-20T09:04:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:04:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:04:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:04:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:04:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:05:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:05:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:05:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:05:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:05:45 (#:amount 97892528 #:time 343)) (heartbeat 2015-06-20T09:05:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:05:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:06:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:06:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:06:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:06:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:06:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:06:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:07:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:07:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:07:21 (#:amount 98056480 #:time 342)) (heartbeat 2015-06-20T09:07:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:07:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:07:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:07:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:08:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:08:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:08:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:08:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:08:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:08:56 (#:amount 97817112 #:time 280)) (heartbeat 2015-06-20T09:08:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:09:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:09:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:09:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:09:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:09:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:09:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:10:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:10:13 (#:amount 98158784 #:time 283)) (heartbeat 2015-06-20T09:10:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:10:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:10:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:10:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:10:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:11:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:11:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:11:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:11:36 (#:amount 97888816 #:time 283)) (heartbeat 2015-06-20T09:11:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:11:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:11:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:12:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:12:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:12:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:12:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:12:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:12:53 (#:amount 98065048 #:time 279)) (heartbeat 2015-06-20T09:12:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:13:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:13:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:13:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:13:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:13:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:13:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:14:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:14:12 (#:amount 97869456 #:time 283)) (heartbeat 2015-06-20T09:14:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:14:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:14:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:14:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:14:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:15:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:15:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:15:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:15:32 (#:amount 98121072 #:time 330)) (heartbeat 2015-06-20T09:15:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:15:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:15:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:16:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:16:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:16:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:16:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:16:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:16:54 (#:amount 97990672 #:time 331)) (heartbeat 2015-06-20T09:16:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:17:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:17:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:17:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:17:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:17:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:17:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:18:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:18:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:18:19 (#:amount 97958968 #:time 332)) (heartbeat 2015-06-20T09:18:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:18:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:18:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:18:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:19:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:19:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:19:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:19:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:19:45 (#:amount 97829928 #:time 336)) (heartbeat 2015-06-20T09:19:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:19:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:20:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:20:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:20:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:20:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:20:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:20:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:21:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:21:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:21:21 (#:amount 98121304 #:time 332)) (heartbeat 2015-06-20T09:21:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:21:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:21:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:21:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:22:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:22:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:22:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:22:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:22:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:22:56 (#:amount 97830960 #:time 334)) (heartbeat 2015-06-20T09:22:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:23:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:23:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:23:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:23:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:23:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:23:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:24:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:24:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:24:28 (#:amount 98205064 #:time 339)) (heartbeat 2015-06-20T09:24:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:24:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:24:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:24:58 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:25:08 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:25:18 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:25:28 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:25:38 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:25:48 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:25:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:26:00 (#:amount 97881576 #:time 307)) (heartbeat 2015-06-20T09:26:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:26:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:26:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:26:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:26:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:26:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:27:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:27:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:27:28 (#:amount 98035472 #:time 330)) (heartbeat 2015-06-20T09:27:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:27:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:27:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:27:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:28:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:28:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:28:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:28:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:28:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:28:51 (#:amount 97808704 #:time 337)) (heartbeat 2015-06-20T09:28:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:29:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:29:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:29:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:29:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:29:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:29:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:30:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:30:18 (#:amount 98255528 #:time 284)) (heartbeat 2015-06-20T09:30:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:30:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:30:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:30:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:30:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:31:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:31:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:31:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:31:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:31:42 (#:amount 97875480 #:time 338)) (heartbeat 2015-06-20T09:31:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:31:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:32:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:32:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:32:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:32:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:32:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:32:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:33:02 (#:amount 98087960 #:time 279)) (heartbeat 2015-06-20T09:33:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:33:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:33:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:33:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:33:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:33:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:34:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:34:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:34:22 (#:amount 97783000 #:time 285)) (heartbeat 2015-06-20T09:34:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:34:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:34:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:34:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:35:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:35:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:35:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:35:38 (#:amount 98093040 #:time 282)) (heartbeat 2015-06-20T09:35:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:35:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:35:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:36:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:36:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:36:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:36:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:36:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:36:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:37:07 (#:amount 97948232 #:time 330)) (heartbeat 2015-06-20T09:37:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:37:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:37:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:37:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:37:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:37:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:38:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:38:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:38:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:38:32 (#:amount 98074600 #:time 295)) (heartbeat 2015-06-20T09:38:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:38:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:38:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:39:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:39:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:39:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:39:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:39:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:39:56 (#:amount 97834288 #:time 342)) (heartbeat 2015-06-20T09:39:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:40:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:40:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:40:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:40:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:40:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:40:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:41:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:41:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:41:26 (#:amount 98178272 #:time 303)) (heartbeat 2015-06-20T09:41:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:41:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:41:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:41:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:42:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:42:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:42:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:42:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:42:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:42:52 (#:amount 97935792 #:time 283)) (heartbeat 2015-06-20T09:42:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:43:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:43:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:43:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:43:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:43:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:43:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:44:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:44:12 (#:amount 98043408 #:time 281)) (heartbeat 2015-06-20T09:44:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:44:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:44:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:44:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:44:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:45:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:45:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:45:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:45:30 (#:amount 97919224 #:time 331)) (heartbeat 2015-06-20T09:45:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:45:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:45:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:46:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:46:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:46:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:46:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:46:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:46:53 (#:amount 98033432 #:time 331)) (heartbeat 2015-06-20T09:46:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:47:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:47:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:47:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:47:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:47:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:47:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:48:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:48:10 (#:amount 97892960 #:time 337)) (heartbeat 2015-06-20T09:48:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:48:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:48:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:48:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:48:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:49:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:49:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:49:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:49:37 (#:amount 98086864 #:time 282)) (heartbeat 2015-06-20T09:49:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:49:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:49:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:50:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:50:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:50:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:50:39 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:50:49 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:50:59 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:51:03 (#:amount 97811624 #:time 334)) (heartbeat 2015-06-20T09:51:09 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:51:19 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:51:29 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:51:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:51:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:52:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:52:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:52:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:52:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:52:36 (#:amount 98141104 #:time 332)) (heartbeat 2015-06-20T09:52:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:52:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:53:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:53:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:53:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:53:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:53:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:53:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:54:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:54:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:54:13 (#:amount 97889536 #:time 342)) (heartbeat 2015-06-20T09:54:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:54:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:54:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:54:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:55:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:55:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:55:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:55:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:55:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:55:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:55:50 (#:amount 98154112 #:time 333)) (heartbeat 2015-06-20T09:56:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:56:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:56:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:56:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:56:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:56:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:57:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:57:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:57:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:57:28 (#:amount 98016216 #:time 343)) (heartbeat 2015-06-20T09:57:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:57:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:57:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:58:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:58:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:58:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:58:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:58:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:58:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:59:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T09:59:05 (#:amount 97987728 #:time 336)) (heartbeat 2015-06-20T09:59:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:59:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:59:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:59:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T09:59:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:00:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:00:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:00:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:00:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:00:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:00:40 (#:amount 97788712 #:time 338)) (heartbeat 2015-06-20T10:00:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:01:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:01:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:01:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:01:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:01:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:01:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:02:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:02:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:02:13 (#:amount 98065240 #:time 336)) (heartbeat 2015-06-20T10:02:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:02:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:02:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:02:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:03:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:03:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:03:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:03:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:03:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:03:44 (#:amount 97913832 #:time 339)) (heartbeat 2015-06-20T10:03:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:04:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:04:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:04:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:04:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:04:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:04:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:05:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:05:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:05:13 (#:amount 98084928 #:time 337)) (heartbeat 2015-06-20T10:05:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:05:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:05:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:05:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:06:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:06:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:06:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:06:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:06:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:06:45 (#:amount 98045728 #:time 342)) (heartbeat 2015-06-20T10:06:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:07:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:07:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:07:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:07:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:07:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:07:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:08:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:08:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:08:16 (#:amount 97919888 #:time 327)) (heartbeat 2015-06-20T10:08:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:08:30 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:08:40 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:08:50 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:09:00 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:09:10 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:09:20 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:09:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:09:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:09:48 (#:amount 97775024 #:time 331)) (heartbeat 2015-06-20T10:09:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:10:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:10:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:10:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:10:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:10:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:10:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:11:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:11:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:11:19 (#:amount 98087592 #:time 331)) (heartbeat 2015-06-20T10:11:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:11:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:11:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:11:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:12:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:12:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:12:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:12:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:12:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:12:47 (#:amount 97922816 #:time 316)) (heartbeat 2015-06-20T10:12:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:13:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:13:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:13:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:13:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:13:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:13:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:14:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:14:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:14:16 (#:amount 98062784 #:time 331)) (heartbeat 2015-06-20T10:14:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:14:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:14:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:14:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:15:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:15:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:15:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:15:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:15:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:15:44 (#:amount 97919696 #:time 334)) (heartbeat 2015-06-20T10:15:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:16:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:16:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:16:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:16:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:16:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:16:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:17:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:17:02 (#:amount 98184920 #:time 281)) (heartbeat 2015-06-20T10:17:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:17:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:17:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:17:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:17:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:18:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:18:10 (#:amount 97883712 #:time 284)) (heartbeat 2015-06-20T10:18:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:18:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:18:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:18:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:18:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:19:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:19:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:19:16 (#:amount 98113488 #:time 281)) (heartbeat 2015-06-20T10:19:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:19:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:19:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:19:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:20:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:20:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:20:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:20:28 (#:amount 97847416 #:time 335)) (heartbeat 2015-06-20T10:20:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:20:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:20:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:21:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:21:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:21:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:21:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:21:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:21:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:21:59 (#:amount 98195656 #:time 337)) (heartbeat 2015-06-20T10:22:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:22:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:22:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:22:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:22:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:22:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:23:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:23:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:23:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:23:27 (#:amount 97835776 #:time 332)) (heartbeat 2015-06-20T10:23:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:23:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:23:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:24:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:24:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:24:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:24:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:24:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:24:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:25:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:25:01 (#:amount 98112976 #:time 335)) (heartbeat 2015-06-20T10:25:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:25:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:25:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:25:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:25:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:26:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:26:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:26:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:26:31 (#:amount 97790704 #:time 332)) (heartbeat 2015-06-20T10:26:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:26:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:26:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:27:01 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:27:11 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:27:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:27:31 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:27:41 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:27:51 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:28:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:28:02 (#:amount 98147248 #:time 333)) (heartbeat 2015-06-20T10:28:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:28:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:28:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:28:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:28:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:29:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:29:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:29:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:29:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:29:33 (#:amount 97945368 #:time 331)) (heartbeat 2015-06-20T10:29:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:29:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:30:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:30:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:30:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:30:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:30:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:30:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:31:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:31:05 (#:amount 98048072 #:time 329)) (heartbeat 2015-06-20T10:31:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:31:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:31:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:31:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:31:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:32:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:32:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:32:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:32:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:32:38 (#:amount 97995024 #:time 331)) (heartbeat 2015-06-20T10:32:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:32:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:33:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:33:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:33:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:33:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:33:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:33:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:34:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:34:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:34:12 (#:amount 97963304 #:time 331)) (heartbeat 2015-06-20T10:34:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:34:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:34:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:34:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:35:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:35:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:35:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:35:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:35:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:35:46 (#:amount 97831688 #:time 336)) (heartbeat 2015-06-20T10:35:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:36:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:36:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:36:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:36:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:36:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:36:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:37:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:37:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:37:19 (#:amount 98118120 #:time 331)) (heartbeat 2015-06-20T10:37:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:37:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:37:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:37:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:38:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:38:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:38:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:38:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:38:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:38:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:38:53 (#:amount 97955600 #:time 333)) (heartbeat 2015-06-20T10:39:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:39:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:39:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:39:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:39:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:39:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:40:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:40:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:40:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:40:27 (#:amount 97936656 #:time 334)) (heartbeat 2015-06-20T10:40:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:40:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:40:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:41:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:41:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:41:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:41:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:41:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:41:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:42:01 (#:amount 97948536 #:time 332)) (heartbeat 2015-06-20T10:42:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:42:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:42:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:42:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:42:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:42:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:43:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:43:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:43:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:43:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:43:33 (#:amount 98104824 #:time 329)) (heartbeat 2015-06-20T10:43:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:43:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:44:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:44:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:44:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:44:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:44:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:44:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:45:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:45:06 (#:amount 97759752 #:time 329)) (heartbeat 2015-06-20T10:45:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:45:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:45:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:45:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:45:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:46:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:46:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:46:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:46:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:46:39 (#:amount 98243064 #:time 335)) (heartbeat 2015-06-20T10:46:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:46:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:47:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:47:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:47:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:47:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:47:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:47:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:48:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:48:08 (#:amount 97927904 #:time 332)) (heartbeat 2015-06-20T10:48:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:48:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:48:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:48:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:48:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:49:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:49:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:49:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:49:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:49:39 (#:amount 98098840 #:time 332)) (heartbeat 2015-06-20T10:49:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:49:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:50:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:50:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:50:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:50:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:50:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:50:52 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:51:02 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:51:07 (#:amount 97857440 #:time 332)) (heartbeat 2015-06-20T10:51:12 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:51:22 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:51:32 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:51:42 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:51:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:52:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:52:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:52:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:52:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:52:38 (#:amount 98155312 #:time 332)) (heartbeat 2015-06-20T10:52:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:52:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:53:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:53:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:53:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:53:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:53:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:53:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:54:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:54:05 (#:amount 97891200 #:time 333)) (heartbeat 2015-06-20T10:54:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:54:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:54:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:54:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:54:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:55:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:55:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:55:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:55:31 (#:amount 98129000 #:time 330)) (heartbeat 2015-06-20T10:55:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:55:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:55:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:56:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:56:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:56:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:56:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:56:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:56:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:56:58 (#:amount 97785656 #:time 330)) (heartbeat 2015-06-20T10:57:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:57:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:57:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:57:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:57:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:57:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:58:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:58:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:58:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:58:26 (#:amount 98106544 #:time 330)) (heartbeat 2015-06-20T10:58:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:58:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:58:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:59:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:59:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:59:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:59:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T10:59:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T10:59:50 (#:amount 97762120 #:time 334)) (heartbeat 2015-06-20T10:59:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:00:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:00:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:00:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:00:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:00:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:00:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:01:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:01:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:01:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:01:24 (#:amount 98171440 #:time 283)) (heartbeat 2015-06-20T11:01:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:01:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:01:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:02:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:02:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:02:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:02:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:02:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:02:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:02:55 (#:amount 97924296 #:time 336)) (heartbeat 2015-06-20T11:03:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:03:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:03:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:03:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:03:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:03:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:04:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:04:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:04:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:04:25 (#:amount 98041296 #:time 340)) (heartbeat 2015-06-20T11:04:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:04:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:04:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:05:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:05:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:05:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:05:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:05:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:05:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:05:55 (#:amount 97852072 #:time 333)) (heartbeat 2015-06-20T11:06:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:06:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:06:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:06:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:06:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:06:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:07:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:07:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:07:19 (#:amount 98038720 #:time 335)) (heartbeat 2015-06-20T11:07:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:07:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:07:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:07:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:08:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:08:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:08:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:08:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:08:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:08:51 (#:amount 97852336 #:time 280)) (heartbeat 2015-06-20T11:08:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:09:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:09:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:09:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:09:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:09:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:09:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:10:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:10:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:10:20 (#:amount 98146768 #:time 338)) (heartbeat 2015-06-20T11:10:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:10:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:10:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:10:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:11:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:11:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:11:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:11:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:11:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:11:50 (#:amount 97860960 #:time 283)) (heartbeat 2015-06-20T11:11:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:12:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:12:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:12:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:12:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:12:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:12:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:13:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:13:09 (#:amount 98026968 #:time 329)) (heartbeat 2015-06-20T11:13:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:13:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:13:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:13:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:13:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:14:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:14:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:14:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:14:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:14:41 (#:amount 97827640 #:time 340)) (heartbeat 2015-06-20T11:14:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:14:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:15:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:15:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:15:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:15:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:15:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:15:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:16:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:16:09 (#:amount 98100048 #:time 332)) (heartbeat 2015-06-20T11:16:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:16:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:16:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:16:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:16:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:17:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:17:13 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:17:23 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:17:33 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:17:38 (#:amount 97750776 #:time 336)) (heartbeat 2015-06-20T11:17:43 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:17:53 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:18:03 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:18:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:18:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:18:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:18:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:18:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:19:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:19:06 (#:amount 98210608 #:time 330)) (heartbeat 2015-06-20T11:19:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:19:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:19:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:19:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:19:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:20:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:20:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:20:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:20:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:20:39 (#:amount 97736480 #:time 334)) (heartbeat 2015-06-20T11:20:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:20:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:21:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:21:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:21:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:21:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:21:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:21:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:22:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:22:14 (#:amount 98324712 #:time 336)) (heartbeat 2015-06-20T11:22:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:22:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:22:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:22:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:22:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:23:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:23:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:23:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:23:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:23:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:23:48 (#:amount 97811560 #:time 343)) (heartbeat 2015-06-20T11:23:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:24:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:24:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:24:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:24:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:24:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:24:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:25:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:25:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:25:23 (#:amount 98196824 #:time 334)) (heartbeat 2015-06-20T11:25:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:25:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:25:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:25:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:26:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:26:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:26:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:26:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:26:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:26:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:26:59 (#:amount 97892384 #:time 340)) (heartbeat 2015-06-20T11:27:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:27:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:27:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:27:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:27:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:27:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:28:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:28:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:28:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:28:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:28:35 (#:amount 98058040 #:time 333)) (heartbeat 2015-06-20T11:28:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:28:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:29:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:29:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:29:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:29:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:29:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:29:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:30:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:30:11 (#:amount 97937096 #:time 334)) (heartbeat 2015-06-20T11:30:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:30:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:30:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:30:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:30:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:31:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:31:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:31:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:31:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:31:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:31:47 (#:amount 97983680 #:time 337)) (heartbeat 2015-06-20T11:31:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:32:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:32:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:32:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:32:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:32:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:32:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:33:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:33:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:33:23 (#:amount 97818576 #:time 333)) (heartbeat 2015-06-20T11:33:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:33:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:33:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:33:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:34:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:34:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:34:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:34:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:34:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:34:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:34:59 (#:amount 98075240 #:time 338)) (heartbeat 2015-06-20T11:35:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:35:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:35:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:35:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:35:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:35:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:36:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:36:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:36:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:36:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:36:36 (#:amount 97924024 #:time 340)) (heartbeat 2015-06-20T11:36:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:36:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:37:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:37:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:37:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:37:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:37:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:37:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:38:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:38:13 (#:amount 98105568 #:time 335)) (heartbeat 2015-06-20T11:38:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:38:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:38:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:38:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:38:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:39:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:39:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:39:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:39:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:39:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:39:52 (#:amount 97849120 #:time 339)) (heartbeat 2015-06-20T11:39:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:40:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:40:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:40:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:40:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:40:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:40:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:41:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:41:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:41:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:41:27 (#:amount 98179152 #:time 339)) (heartbeat 2015-06-20T11:41:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:41:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:41:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:42:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:42:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:42:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:42:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:42:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:42:53 (#:amount 97833720 #:time 335)) (heartbeat 2015-06-20T11:42:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:43:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:43:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:43:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:43:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:43:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:43:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:44:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:44:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:44:18 (#:amount 98133032 #:time 330)) (heartbeat 2015-06-20T11:44:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:44:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:44:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:44:54 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:45:04 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:45:14 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:45:24 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:45:34 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:45:40 (#:amount 97905880 #:time 281)) (heartbeat 2015-06-20T11:45:44 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:45:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:46:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:46:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:46:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:46:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:46:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:46:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:47:03 (#:amount 98102592 #:time 282)) (heartbeat 2015-06-20T11:47:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:47:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:47:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:47:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:47:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:47:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:48:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:48:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:48:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:48:31 (#:amount 97937568 #:time 340)) (heartbeat 2015-06-20T11:48:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:48:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:48:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:49:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:49:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:49:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:49:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:49:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:49:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:49:56 (#:amount 98167232 #:time 337)) (heartbeat 2015-06-20T11:50:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:50:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:50:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:50:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:50:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:50:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:51:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:51:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:51:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:51:29 (#:amount 97808584 #:time 334)) (heartbeat 2015-06-20T11:51:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:51:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:51:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:52:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:52:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:52:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:52:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:52:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:52:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:53:04 (#:amount 98077200 #:time 332)) (heartbeat 2015-06-20T11:53:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:53:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:53:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:53:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:53:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:53:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:54:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:54:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:54:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:54:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:54:38 (#:amount 97928328 #:time 336)) (heartbeat 2015-06-20T11:54:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:54:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:55:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:55:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:55:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:55:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:55:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:55:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:56:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:56:11 (#:amount 98071136 #:time 338)) (heartbeat 2015-06-20T11:56:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:56:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:56:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:56:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:56:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:57:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:57:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:57:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:57:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:57:44 (#:amount 97930824 #:time 331)) (heartbeat 2015-06-20T11:57:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:57:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:58:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:58:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:58:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:58:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:58:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:58:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:59:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:59:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T11:59:20 (#:amount 98078376 #:time 332)) (heartbeat 2015-06-20T11:59:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:59:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:59:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T11:59:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:00:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:00:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:00:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:00:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:00:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:00:54 (#:amount 97903360 #:time 333)) (heartbeat 2015-06-20T12:00:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:01:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:01:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:01:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:01:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:01:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:01:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:02:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:02:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:02:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:02:28 (#:amount 98096592 #:time 342)) (heartbeat 2015-06-20T12:02:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:02:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:02:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:03:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:03:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:03:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:03:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:03:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:03:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:04:03 (#:amount 97819640 #:time 332)) (heartbeat 2015-06-20T12:04:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:04:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:04:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:04:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:04:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:04:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:05:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:05:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:05:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:05:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:05:37 (#:amount 98108672 #:time 334)) (heartbeat 2015-06-20T12:05:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:05:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:06:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:06:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:06:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:06:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:06:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:06:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:07:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:07:12 (#:amount 97918400 #:time 335)) (heartbeat 2015-06-20T12:07:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:07:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:07:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:07:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:07:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:08:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:08:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:08:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:08:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:08:45 (#:amount 98150016 #:time 340)) (heartbeat 2015-06-20T12:08:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:08:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:09:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:09:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:09:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:09:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:09:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:09:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:10:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:10:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:10:22 (#:amount 97874264 #:time 337)) (heartbeat 2015-06-20T12:10:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:10:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:10:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:10:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:11:05 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:11:15 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:11:25 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:11:35 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:11:45 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:11:55 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:12:01 (#:amount 98109216 #:time 339)) (heartbeat 2015-06-20T12:12:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:12:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:12:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:12:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:12:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:12:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:13:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:13:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:13:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:13:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:13:40 (#:amount 97982296 #:time 337)) (heartbeat 2015-06-20T12:13:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:13:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:14:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:14:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:14:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:14:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:14:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:14:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:15:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:15:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:15:19 (#:amount 98012256 #:time 341)) (heartbeat 2015-06-20T12:15:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:15:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:15:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:15:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:16:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:16:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:16:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:16:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:16:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:16:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:16:56 (#:amount 97827752 #:time 338)) (heartbeat 2015-06-20T12:17:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:17:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:17:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:17:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:17:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:17:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:18:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:18:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:18:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:18:36 (#:amount 98121096 #:time 339)) (heartbeat 2015-06-20T12:18:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:18:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:18:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:19:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:19:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:19:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:19:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:19:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:19:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:20:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:20:15 (#:amount 97890400 #:time 337)) (heartbeat 2015-06-20T12:20:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:20:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:20:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:20:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:20:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:21:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:21:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:21:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:21:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:21:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:21:50 (#:amount 98186304 #:time 332)) (heartbeat 2015-06-20T12:21:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:22:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:22:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:22:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:22:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:22:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:22:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:23:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:23:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:23:24 (#:amount 97883264 #:time 332)) (heartbeat 2015-06-20T12:23:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:23:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:23:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:23:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:24:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:24:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:24:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:24:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:24:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:24:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:25:01 (#:amount 98044680 #:time 337)) (heartbeat 2015-06-20T12:25:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:25:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:25:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:25:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:25:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:25:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:26:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:26:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:26:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:26:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:26:40 (#:amount 97895024 #:time 341)) (heartbeat 2015-06-20T12:26:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:26:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:27:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:27:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:27:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:27:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:27:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:27:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:28:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:28:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:28:20 (#:amount 98011296 #:time 342)) (heartbeat 2015-06-20T12:28:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:28:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:28:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:28:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:29:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:29:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:29:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:29:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:29:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:29:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:29:59 (#:amount 98009496 #:time 332)) (heartbeat 2015-06-20T12:30:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:30:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:30:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:30:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:30:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:30:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:31:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:31:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:31:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:31:35 (#:amount 98056184 #:time 334)) (heartbeat 2015-06-20T12:31:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:31:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:31:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:32:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:32:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:32:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:32:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:32:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:32:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:33:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:33:12 (#:amount 97838784 #:time 339)) (heartbeat 2015-06-20T12:33:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:33:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:33:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:33:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:33:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:34:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:34:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:34:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:34:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:34:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:34:48 (#:amount 98191600 #:time 341)) (heartbeat 2015-06-20T12:34:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:35:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:35:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:35:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:35:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:35:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:35:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:36:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:36:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:36:24 (#:amount 97764640 #:time 338)) (heartbeat 2015-06-20T12:36:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:36:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:36:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:36:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:37:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:37:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:37:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:37:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:37:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:37:55 (#:amount 98150792 #:time 332)) (heartbeat 2015-06-20T12:37:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:38:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:38:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:38:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:38:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:38:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:38:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:39:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:39:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:39:26 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (gc-major 2015-06-20T12:39:29 (#:amount 97805200 #:time 328)) (heartbeat 2015-06-20T12:39:36 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:39:46 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:39:56 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:40:06 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (heartbeat 2015-06-20T12:40:16 (#:model "stlc-sub-4" #:type enum-brutally-unfair)) (finished 2015-06-20T12:40:21 (#:model "stlc-sub-4" #:type enum-brutally-unfair #:time-ms 86400009 #:attempts 6867110 #:num-counterexamples 0 #:rate-terms/s 79.4804315356032 #:attempts/cexp N/A))
false
01204e7fa9e025d56c9a8aed520f2663f5db66e1
9508c612822d4211e4d3d926bbaed55e21e7bbf3
/demos/strumienta-talk/building-up-to-qi.rkt
1cf4ffafd73769403830bdab80698b45ea3eab66
[ "MIT", "Apache-2.0" ]
permissive
michaelballantyne/syntax-spec
4cfb17eedba99370edc07904326e3c78ffdb0905
f3df0c72596fce83591a8061d048ebf470d8d625
refs/heads/main
2023-06-20T21:50:27.017126
2023-05-15T19:57:55
2023-05-15T19:57:55
394,331,757
13
1
NOASSERTION
2023-06-19T23:18:13
2021-08-09T14:54:47
Racket
UTF-8
Racket
false
false
1,409
rkt
building-up-to-qi.rkt
#lang racket ;; (-> (U string? symbol?) string? (U string? symbol?)) (define (add-prefix name prefix) (cond [(string? name) (string-append prefix name)] [(symbol? name) (string->symbol (string-append prefix (symbol->string name)))])) (add-prefix 'x "1-") ;; Pattern: cond with predicates on same argument. (define-syntax-rule (switch (e) [p b] ...) (let ([v e]) (cond [(p v) b] ...))) (define (add-prefix2 name prefix) (switch (name) [string? (string-append prefix name)] [symbol? (string->symbol (string-append prefix (symbol->string name)))])) (add-prefix2 'x "2-") ;; Pattern: apply a sequence of transformations to a value (require threading) (define (add-prefix3 name prefix) (switch (name) [string? (string-append prefix name)] [symbol? (~>> name symbol->string (string-append prefix) string->symbol)])) (add-prefix3 'x "3-") ;; Notice common concept of a "flow" (module qi-example racket (require qi) (define (add-prefix4 name prefix) (switch (name) [string? (string-append prefix)] [symbol? (~>> symbol->string (string-append prefix) string->symbol)])) (add-prefix4 'x "4-")) (require 'qi-example)
true
29c995e0791f12cce941ece4d0ca198133b00929
c161c2096ff80424ef06d144dacdb0fc23e25635
/chapter5/exercise/ex5.20.rkt
15bf9dd2c51631dcb3399d07724dee7f1dfe0555
[]
no_license
tangshipoetry/SICP
f674e4be44dfe905da4a8fc938b0f0460e061dc8
fae33da93746c3f1fc92e4d22ccbc1153cce6ac9
refs/heads/master
2020-03-10T06:55:29.711600
2018-07-16T00:17:08
2018-07-16T00:17:08
129,242,982
0
0
null
null
null
null
UTF-8
Racket
false
false
1,018,958
rkt
ex5.20.rkt
#reader(lib"read.ss""wxme")WXME0108 ## #| This file uses the GRacket editor format. Open this file in DrRacket version 6.12 or later to read it. Most likely, it was created by saving a program in DrRacket, and it probably contains a program with non-text elements (such as images or comment boxes). http://racket-lang.org/ |# 33 7 #"wxtext\0" 3 1 6 #"wxtab\0" 1 1 8 #"wximage\0" 2 0 8 #"wxmedia\0" 4 1 34 #"(lib \"syntax-browser.ss\" \"mrlib\")\0" 1 0 36 #"(lib \"cache-image-snip.ss\" \"mrlib\")\0" 1 0 68 ( #"((lib \"image-core.ss\" \"mrlib\") (lib \"image-core-wxme.rkt\" \"mr" #"lib\"))\0" ) 1 0 16 #"drscheme:number\0" 3 0 44 #"(lib \"number-snip.ss\" \"drscheme\" \"private\")\0" 1 0 36 #"(lib \"comment-snip.ss\" \"framework\")\0" 1 0 93 ( #"((lib \"collapsed-snipclass.ss\" \"framework\") (lib \"collapsed-sni" #"pclass-wxme.ss\" \"framework\"))\0" ) 0 0 43 #"(lib \"collapsed-snipclass.ss\" \"framework\")\0" 0 0 19 #"drscheme:sexp-snip\0" 0 0 29 #"drscheme:bindings-snipclass%\0" 1 0 101 ( #"((lib \"ellipsis-snip.rkt\" \"drracket\" \"private\") (lib \"ellipsi" #"s-snip-wxme.rkt\" \"drracket\" \"private\"))\0" ) 2 0 88 ( #"((lib \"pict-snip.rkt\" \"drracket\" \"private\") (lib \"pict-snip.r" #"kt\" \"drracket\" \"private\"))\0" ) 0 0 55 #"((lib \"snip.rkt\" \"pict\") (lib \"snip-wxme.rkt\" \"pict\"))\0" 1 0 34 #"(lib \"bullet-snip.rkt\" \"browser\")\0" 0 0 25 #"(lib \"matrix.ss\" \"htdp\")\0" 1 0 22 #"drscheme:lambda-snip%\0" 1 0 29 #"drclickable-string-snipclass\0" 0 0 26 #"drracket:spacer-snipclass\0" 0 0 57 #"(lib \"hrule-snip.rkt\" \"macro-debugger\" \"syntax-browser\")\0" 1 0 26 #"drscheme:pict-value-snip%\0" 0 0 45 #"(lib \"image-snipr.ss\" \"slideshow\" \"private\")\0" 1 0 38 #"(lib \"pict-snipclass.ss\" \"slideshow\")\0" 2 0 55 #"(lib \"vertical-separator-snip.ss\" \"stepper\" \"private\")\0" 1 0 18 #"drscheme:xml-snip\0" 1 0 31 #"(lib \"xml-snipclass.ss\" \"xml\")\0" 1 0 21 #"drscheme:scheme-snip\0" 2 0 34 #"(lib \"scheme-snipclass.ss\" \"xml\")\0" 1 0 10 #"text-box%\0" 1 0 32 #"(lib \"text-snipclass.ss\" \"xml\")\0" 1 0 1 6 #"wxloc\0" 0 0 55 0 1 #"\0" 0 75 1 #"\0" 0 10 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 0 9 #"Standard\0" 0 75 12 #"Courier New\0" 0 10 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 -1 -1 2 24 #"framework:default-color\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 150 0 150 0 0 0 -1 -1 2 15 #"text:ports out\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 150 0 150 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1.0 0 -1 -1 93 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 255 0 0 0 0 0 -1 -1 2 15 #"text:ports err\0" 0 -1 1 #"\0" 1 0 -1 -1 93 -1 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 175 0 0 0 -1 -1 2 17 #"text:ports value\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 175 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 34 139 34 0 0 0 -1 -1 2 27 #"Matching Parenthesis Style\0" 0 -1 1 #"\0" 1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 34 139 34 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 37 #"framework:syntax-color:scheme:symbol\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 38 #"framework:syntax-color:scheme:keyword\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 194 116 31 0 0 0 -1 -1 2 38 #"framework:syntax-color:scheme:comment\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 194 116 31 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 37 #"framework:syntax-color:scheme:string\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 35 #"framework:syntax-color:scheme:text\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 39 #"framework:syntax-color:scheme:constant\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 49 #"framework:syntax-color:scheme:hash-colon-keyword\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 42 #"framework:syntax-color:scheme:parenthesis\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36 #"framework:syntax-color:scheme:error\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 36 #"framework:syntax-color:scheme:other\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 16 #"Misspelled Text\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 81 112 203 0 0 0 -1 -1 2 38 #"drracket:check-syntax:lexically-bound\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 81 112 203 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 28 #"drracket:check-syntax:set!d\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 37 #"drracket:check-syntax:unused-require\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36 #"drracket:check-syntax:free-variable\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 31 #"drracket:check-syntax:imported\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 47 #"drracket:check-syntax:my-obligation-style-pref\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 116 0 0 0 0 -1 -1 2 50 #"drracket:check-syntax:their-obligation-style-pref\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 116 0 0 0 0 -1 -1 2 48 #"drracket:check-syntax:unk-obligation-style-pref\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 139 142 28 0 0 0 -1 -1 2 49 #"drracket:check-syntax:both-obligation-style-pref\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 139 142 28 0 0 0 -1 -1 2 26 #"plt:htdp:test-coverage-on\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 2 27 #"plt:htdp:test-coverage-off\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 4 1 #"\0" 0 70 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 -1 -1 4 4 #"XML\0" 0 70 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 -1 -1 2 37 #"plt:module-language:test-coverage-on\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 38 #"plt:module-language:test-coverage-off\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 93 -1 -1 0 1 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 4 1 #"\0" 0 71 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 -1 -1 4 1 #"\0" 0 -1 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 0 255 0 0 0 -1 -1 4 1 #"\0" 0 71 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 0 255 0 0 0 -1 -1 4 1 #"\0" 0 71 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 100 0 0 0 0 -1 -1 0 110 0 28 3 12 #"#lang racket" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 17 3 10 #";\350\207\252\345\267\261\347\232\204" 0 0 24 29 1 #"\n" 0 2 1351 21 1 #"\0" 2 -1.0 -1.0 0.0 0.0 0 670 500 ( #"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\2\272\0\0\1l\b" #"\6\0\0\0#r\32\266\0\0 \0IDATx\234|\275\311\262m\311q" #"%\266\334#\366\271\367\335\327$2\23 \b\20\206\342Df\34\300d%\303\200" #"\3\322L\365\21\262\222\364\5\222\376\242" #"\376\204s\311\304\322\2203\216\310Q\2618(\r8P\261d$\215@2\23\371" #"\362u\2679;\302]\3o\302\367\276" #"\257t\200\227\267;\315\336\21\336,_" #"\336\4\375\237\377\376\177Wb\206\310\0" #"\210\300\n03\346\230\0+\366\241\330z\207\252BU\301D\230\252\0\1\e1" #"D\25\314\fU\5\21\35\276\2\200\210" #"\0\300\341\367\333\266\345\337\211\bP\202" #"\377\b\205\202\211\1\"\3149@(\257" #"\201\330u\202\362=\343\263\1\2401c" #"\2373?\227\231\327g3\201\324\276o\255\35\256q\212\200\210@D\30c\2401" #"\243\367\16\"@\25\330\257\3\252\300\345" #"r\201\370s\355J\5D\r\300\204\212" #"_\273\177\346\30\303\337\203r\355\240\4" #"n\376\263\330\347\3159\375\375\354\261m" #"\e\346\234\0\354\332\230[\336\203\352\4" #"\210@d\257\347\306\366<\5\246\250\375" #"^\217\327\320ZCk\rsN\210\330\34733 \200b\0\322@\315V^\246" #"\202|\355\t\0001\231\34\370\345\t\0R\373\247\4\20)\210\340{$ n\266" #".*Pe0\23\240\f\321\1\"@|\275c?C6\240\nf\2\2011\346" #"\4\23A\1\264\306\200*\310\345\321\356" #"\327\367\226\32\24\262d\b\n\200\16r\25\337+L\246\t~\r\276\37!\207s" #"\24Y\4\201\231 :!2\355u\376^\314\374\\\236\241 \20\b\35\304\n@" #"1\347\314\3472\23 \r \34e\36\266\206\361\273x~k\r2\5" #"*;\270705\310P\373\34\242|^\\\a3\247\16T}\b9m" ) 500 ( #"\255a\214\341\337\307k\201\326\25\314\eTb\277\0\205@U\320x\363\2655]" #"\21\21\314\251\350\275a\16\273F\220\2" #"B\256;vOU\347\342Q\177\377\374\253\202\e\240\242h\2151\306\4\21\243o" #"\35\373u\317u\"\262\25\36:A \b\24\315?\207M\374\17\353\330Z\303\276" #"\357y-\261\256Z\344o\335\327Q\377" #"\342\373\272\246Dl\362[\366\276\27\233" #"Xu\234\230\240\"\256GR\354\5\271" #"\f\262\355o\261\25\361\234\270\316j\323" #"\352\373\307\363\303n\250*z\353\2302" #"\313}1T\313\265\302\366M& \220" #"\203\255\256:\2\321\303\275\21(\337\227" #"l\203\1U\310\f\eD\207\353K\235\243u?u]E\304\314\210\373\227jo" #"\353}U9&\230~\305\275\264\326\326~\262\331)\0211\335:\351<3\3S" #"@\305\a\234\365\326.\310d\270\21\201" #"\210\323\216\221*\246\2777\0004b\327" #"\355\2707{\256]\273\331\36\370\365\202" #"\1\361\317V\227u\205\251\f\3735\307" #"\375\177N\376R\217\305\336c\252\244\16" #"\260?\327\326\323tA\324\256\263)\3\264l\3113{s\360\227dv\200\tS" #"%m\36\211\371\303\360\221q\255\271'" #"\345\373\220\301%S\313\257\306}\265\326" #"\260\317\1F\210\220\346^\206\177\212=" #"\231s\242\367\276\374\2\354\336\3559f" #"\233\0_\303)\a9\376\334\32\306\32" #"\304g\314\251h\255\333\275\212\2\230\211;\340\366Uc;\313#p\17\2031 " #" 1\243C\335dk\316i{\333\30c\37i\247\231\371\331=\3065U\375\v" #"\235[\367\215\203}\257\257\265\3375\223" #"\215\326\300)\3\372\314\367\21\225\373\22" #"\265\353\e\3P\303J\25\257\215\251`" #"RL\25\364\2029\206\314\264\225\251W" #"8\332\245\304:L\320}\202\374\336\343>\252\355\262=\\" #"~\214\252<\e\209\350\253\341\37\201\210\311Z\353\rs" ) 500 ( #"L\364\326\0\267\245\304\2\240\201\230q" #"\275>\246m\26\221\374\276\375O\377\363" #"\277\375w&\224\0\23/\a\304\f\220+\205\337Tk\rPw2\272\34\357\31" #"\b\304\346\234\2258\2148\300P\1\230\2329\204\330PC\" 6\243Q\257I" #"\335\310\222\e\34U$\220\254\217\263\320" #"\307\36511\344\244Hy\275\16\354\0" #"\200\334\230\22\1*\344\2\261\200#\347&\232\31\687\251qs\360GG\303" #"\24\327\343\200\224i\t\22\21\241\367\236" #"\357\251*PL\27P\0\2440\31Q\333t5%\215\265S\201\257EK\300\21" #"\312\263m\3333\245\231\323@g#v\3\251\276\337\241xi\333\17B:D\320" #"\300\0&\210\t\275u\250\316\274\327\0" #"\222f\310\315\341\2\212)\266g\255\267" #"\24\274\203\203\365\305&60a\6\326" #"\225B\24@\203`\36\234\277\201F\3" #"\321\315\301\203\255\247\257\251\313\201\250\202" #"\250\347\317*\0s_{\250l\357\203\5\30\303q\22/\331;\4+\345\301\255" #"\241\301\345\213\2019\367\303\275%h\201" #";\275\2\214\342\372\252q\313\327\22\240" #"\16\270\251\231\2S\1\b\365}b\237\316r\37\367\24\327a\272\v\200\1\"\6" #"\273\243V1 \327{\307\34\246\273\304" #"\272D\2668\270\265\316\16\216\261\234W" #"\375\374\n6\346\\\206\362\374\234\336;" #"\300n\304\a\0\232&\353\262\0\353\21" #"\240p:\372\330\365\bb\352\363p\372]]\217\377*@+\1p\202u\205\5" #"/\244 \34\203\211\203SR\5\210\322\210\233A^v\315E\34Dj`B\217" #"6\254^_\274o\275\316\347\16\314\0\215\350\4q8-\223Ys\312\\\336\303" #"e\305\255\325\231\0`v\262\302m\344" #"y\235\316{p\266\367\25\244\212\b\246\n\266\326\241(\200\325\3f\"\v" #"\316\253\224V\320\e\217\203~\330;" #"\241u\3\364\1\226\225\341\266\365\3632" ) 500 ( #"\220Ac\1jF\252\0\242\26\210(\314\336\231.\20\30d{CHY'%" #"4j\211}\314\31\37\345\252\202\20\"" #"\323\325\2609\371\250\277S=\354E\r`\1\244\217\"\a\321\t\224E\17\237l" #"\277\3677v\20}\276\256\317}\357\277" #"1\335\265\233\265\353#\363A\361\231\365" #"ug\240v\226\313\0\374i\203\363\363\f@\251\257y\335\3533n8\22P\276" #"7\276\207\"\21\2547\210\223!\365\275" #"\252\34U\220\37\17\263\305\4@\322\277" #"$\316\361\200>\366\317\256\3111\203\256" #"=2\242\306\210?\361\235\230N\254)" #"9\32p=\372\34\b\217\337\235\327\226" #"\370y`{\376>\356\321\256\323\224=" #"\256!\276\236\375*;v\311\373\35\261nNB\331\207\30Y\321\314\206\254{5" #"\337\260m\e\310\314\32f!X\342\372" #"\252\255\240\323\275W\371\216=m\255;.\264u'\307\v\201=\302\336pYo" #"\242\300\244\r\fN\214e\200\335\201,w\\\307\216\326\370\260f\201_9.\\" #"\246B\347\21as\331\bq\340\n\262\b\2303JZlB0M\325!\324E" #"\a\314)\250?GD0e\242q[\321akf\340\346\204E\235R\234$\e" #"\r\6\23x\25\311Hf\212\0\274\"" #"\214X\370x\375\234\23\227\313\345\231Q" #"\r0\222\200\r\256\352\346\2730\206\244" #"pv\277g{\177\3a\252\26Y\333" #"\3328\3\274\357i\324\207\257\17\310\224" #"\326\0\242\346\20603f*\2468\260" #"u\341\230\266\276c\237P\r\26\301\320" #"\n7\202\310p\26\356x\317\31\224\370" #"\317\325Y\365\266\331\272%\va\3129" #"\3474\20\336\326^\256h\35\270\331." #"`&\364\276a\351\322\321\360\231\376\325" #"\210\317\0xk\316|V6\251\n\"\231\262N\21\2149,Z\5\300\255\e" #"HD\0\341P\316\260\314\222\367\317\356" #"\324\215m\244\222i\30\20\231\200\b\210" ) 500 ( #"\24L\316\342!d\323\200As\240\336" #"\32\203al\345\322\226e\230\316\300~\312t\345'\260+]}\310T\3\3545" #"X\f\331c6\243y\2i!\227\20\302\274\16\17\376V\340Q\31\203\0\261\1" #"*\253\221L\347\313\6\212\324\215|k\v\314*&\210\5\242;@\2\17\346\17" #"N\314~\26\a\267q\215|\270\226\352" #"\370\316?\327\353Y\357\313\230S<P\23p'\310dg\306#\350[\16\265\312" #"L\363=\b\26/\356\273\2\257\370]\265C5H`\266\300\2672\337\347\3535" #"6\321\262'g\200X\31/\6\340\274\0Zc\364~)\367\37@\223\301\264\241" #"\241CT\320Z?0\312g\207\255\311\36/\373S\1\205\321\330\224\201\257]g" #"\220\a\v|(9Y\353 82)Rl0\374^\301\313\351V\366:\326." #"~W\327\333\30\"\17\316\310d\32\274\356GD\240C\260],\350\246\210U\213" #"S\256\314\216\22\200\306\311T\36\200A" #",\262\333\371\220F:\261C\351\254!h\275\37>g\272\345\223\310b\250\2j" #"Y\t\2115\0<Kc\357\27\314\266\310Z\v\262'\231\314\21\203\233\203\316X" #"\v[<\273\346\f0}M\212\276\307" #"\277\260\337\341g\355\3725\1T\263\210" #"\306\366N\5\334\214\355\264\3537\346+" #"\344\350\fv\214\25;\2.Uc\311\304\355\264e\321\236gd\253\36\237\345>" #"\336?\326\326\36R|\266\21;\"\353\275\317L\363!8&#\223T]\226\231" #"J&\313\311!x\20\222\257=\6\327" #"\201#\316\237\21\237\35L\274\302\330]" #"\303\22A\244\211\5dl\344\324\220\231" #"\1\211\303\16\220\302|:\255\365\350\275" #"\243;\371's\1\301Y\354K\225\371e\317,\3B\354\237\345{\31\230\352l" #"\223\352\336\21)Hj\260\316)\227\307\300C\213" #"\337`\227\23#\212T\5\342\237C\323e\327\345" ) 500 ( #"\235\210 \244\330\367\341\272b\266\303\374" #"\377\221d\201\23gS\324\345\351\br#\303\311\3548\t\213\365g^\201#\221" #"\257\331\260\3474f\17>\341\272\350d\247Y\\\31490}\217\206^\1\317X" #"\205\f\20\263\341T\0\34\277l\255y\364t\24\222\326Z2uK )#\201" #"\345`-=\273m\213\241\250\202\226q" #"\274Z\312\237\2312J\230\236\222\217M" #"\354\255\203\332J\277\0346\\M\320\247" #"\v\324\364\310\227h\261\6\225\272\256\16" #"\"\27\340\24U\305\357\317)\262\20J" #"Q\205\22\300\275\301\241\225\1\3769r" #"=\210\0252\367\203\361\212\367\27\21\350" #"4\0035UA\215s\355\306\30\236\360\232\0)za\305\301.\204L\16\240=" #"-\322\340Wa\354o\200\301\270\346X\3639\347!\275$\242\230228 7" #"$S\4L\335\231\372\366\214\331\n\20" #"(\"\220\251\330z\224\236\304?\344\327" #"\370<\373\336\203\f\261\350\220\201L9\5\203Ll)J\232\316\254[M\2041" #"\rZR\271\23\200\206\"\2633\20\36h1\334\n\5K\322\234\371)Y\a\16" #"\26LAP\214\271\247\221\24\25w>n4`\214!\201 C<\230\341\4\370" #"\325\230\212\252\203\210`\355\302\341\260\225" #"\247p8\257##2\347tg\210,\r\nya\342d\304,\2346G\30\277" #";\200\b]\1fM\247\307#e{\2123~\202\261\217\274\27-\262\260m=" #"\177\237\f\231\26v\257\223\227:\34\231" #"\350\25\20i\336[\325\377*\223\3533=]:\315\21\212\227F\0\346\354Df" #"\276\3173v)\376\35\214\370\361sj" #"@\221\362\350AI\2\314\326\214\311\b" #"\340\244\353\336\302\341\222\322\2&\21p" #"\273c\262\24z\3034\376\35\4\3\24s\16[74\2500\32o\t" #"\222@\213\275\v\306q\3318\262\265P\201\220\311e\r&?\27\304\234\1" ) 500 ( #"\211\255\377*\205 \215\22\201\305\254\327" #"T*`N\212`\3663\356q\331\214\265^\317\230\354`\341\234\b9\310\34\200" #"\306\315\3\6`^W\211B\354e~\276\227\353H\310\374\351\376\22x9 \27" #"Oag\220-\353\347J\214\250\2\327" #"\375\272~\357\257\345\224\17\1`\340W" #"\304\262\232v\37\234\244E\372@\362\222&g\225\223`Q\201D0N\f\345\220" #"\317\b\354\35\216\353s\366\372LF\0" #"H2e\252\244\317\224)\31P\204\236\2159K\346\r\b\6T\261\202\361e\243" #"v\a\266\376\257\332\b\227\3131'\30" #"\372,K\232\330\300\203\352\np{\261" #"[\341\313\354\371\344\240f`\353\26T" #"3\254,\257\312^|\315\254O!\332\210\235\34H\277f\266Ue\331X\216L" #"F\1\346\325\337\237\323\376\252\21\254\20" #" \310\275\f?E\34\231\271\211}\337" #"m\2172\233\345\340\336}f\30\312\324E\261km\275\20\31\245l\360\31`\25" #"'\206\210V\211ao\207\353V\325\314" #"\366V\322\316\337\1\324\302\16M\20\211" #"\313\263\2278\332*\332\1775\262\26\300" #"\365\32YG\3\223\2755c\241\233\t\256zv7\202+\"@\231L\227\305>" #"\203\333b\353\203Y5K\265J\215\352},<%\3767\317\3263\373\265\207\374" #"+:7\264\255\233\n\232\21\261R\265n{/\36\265\2179\241\304Vb\250\6" #"\230k\231\236\252\242\267\226\204V\373\267" #"\377\343\377\360\357\266ms\300e\27\23" #"\202%\316\254\315\"\354\344 Wqdn\322\321G\352\247F1\376\25\24\351d" #"C\332 \23\262\351Qj\200j\205bx}.\21y=\36\201\232Z\215k\360" #"J\305\341\207\321\215G(\346!:\365" #"\255_\327\266\224$R\210\31\371\201\226\321\300\212\320S\371N\202KX" #"\351\200\n\254\343\365\334\32\346\2244" #"\376\"\266`\213\211\364r\217}x\32" ) 500 ( #"\241\30D\336\260\357{\262\225\252\23\255uc\277\234E1F\371\br+X\215" #"\bo\245|\334\210\271\200\300\323\252\26" #"\275\35\231\221\352\3702pa\266\232^\30KM\3763\323\2\16\261\236\241rf" #"(\2212\224J\357k\26\345\v\34u" #"\317\352\240\217\304\353\207\311u\327\215\32" #"y\212\324A\251NO\35\v\334\350\30" #"\213\306\376\32\362R\205\336/\351\b#\352e\362:\343\22]B-\303\240\4S" #"a5\253\21\306\vS\301\235]\36\n\3\214`K\5P\2SO`\37\362\21" #"\372\0\30\223\304\3051\5 \17Of\212LY\16b,\350\261\3063u\255\0" #"\30\333\303U\377\356\361\31\0[\323x" #"\215\355\17\35^\237_\261\200\217\275_?\310F\r&\317`\363P\16\202R*" #"\24\254%\202I\262@\322\352\334\216\252" #"\225\262\246\n!c\270\270q\262}\242" #"\232\265\333u\r\f[\350B\305\f\333" #"\v6\366\255\265\2169\206\325@\272\3c\227A\306b\251\203=L\225w\220k" #"\300\205\n\263\264\352\242\253\376}\216\331" #"\b\371\251\272ik\24\314\275\337\243\b" #"\32u\17P\212M.\1S\330\255\370\334\265\237K\206\252<\244N\272\16F`" #"\225\327\356\266$\354W>\277|\r\307" #"\304D\30\272\200S\352\205\a\bQ\207" #"l\301y\313\36\211\n\302\226\314SX" #"\365\3\230\2562^\277\217k\250\201]" #"\275\276\203\2369`%P\2\177W\207" #"\374}o\r\360k\207\327\252\253~\376" #"\336\341\251\340\316\354\345U.{\212\314" #"F\0050j.G\354\237\363\\?\371\331u3[\371C\5\307q\275\200\1\17" #"\202\331&\377\r\206,f]\324\230\311" #"\314p\220g\225\302\237E\300\301\26\264q\312\202\275\305*c;fe\353uV" #"y\216\277\325=\t cWgi\347\32\204\324{\217" #"\354X\374ne\177\305\354\224\256z\323\306F\200\344\232" ) 500 ( #"\177\306fU\271\250`+\310\231\270O" #"\5\254\236\332\331g\270>\327{\212E" #"\257\200\31\32Lf<\327\230Y\260\205" #"\273q\217u\355\316\367\226\367\a\200S" #"\204\354\336\252\335<g\305Sv\f\253\247\337Z\353a>\"u\250\350f\330)" #"\vB\200\312\200\212\373\302\354\321qyE\200d\02101\306\b\37\337 \22Y" #"f\223x\273\16\277f\n\26v\5\341" #"\201\300\b\234\276L\274t\316\376\356\232" #"C\v\207m\336\203\320\260\366F\341YXD@5\215\375u?Q\365\313\0\372" #"D_\21\305f\216\235\b\273\327:4w\2\4\34\232\6\252\220\6P R\310" #"\4\242\240C\261\200V\253N\3157&R\376\354\365\270\275wg\347,\22ll" #"\224\263L3\244\242\23\r\2347\25\214" #"LD\222\225\205\234s\346\357\252B\210" #",\247\30\vk\240\210\17\302\22\354\247" #"\312\252a\263\264\\\313(]`\357e\6\305\2\4\2138\243\t\244\254\21[\215" #"\225\222f\32@ `\r\246\214\27PkG\303!S 4\275\3767\234G\207" #"\212Z\275m\262\211\21\275\36\225\242*" #"\350\24\261(\207\"\335\351\354N\b Y\215\261\312\212\264?\at-j\2025" #"\370\1\230\342\215CdlR;9\337d\324\3464@\17\257\217j\326\364\321\16" #"L\2213\315\303\354\16\310\f\v\265c`a\0.X\r\177-\253+\245\375\270" #"_\5\255\257\300\2555s\20\373x\2\243;\200\204\245\260T\322\342(\340{;" #"@*`4Ox\32\244\216l\2\367f\373\240\323\3123\324\257\225\32D\206\31" #"\4b\264n%0s\0300I]r\343\342\b:\203\2429'Z\324\246\3\210" #"R\215}\337\321\373vX\323\f$S\246\221\353\31!\206\252X\263\327\34.s" #"^\233\313\vd\2451r\320!2\321\270\247\274" #"\232\21>\356S\4\24!\23\325@_.\27\214" ) 500 ( #"1\2263Tx\312\325\"\367\351\16#j\262\211\b\244fC\316\316\265^\37\21" #"\262\321,\322\232\301\32\6`\213=T" #"\361\317\213{\232\23\352\315Z\354\1\267" #"\325\251[\231\20\21A\310\235\224\222\1" #"\1\0\254\6\324\256\373\325\200\247\22\320" #"l\335\307\334\263y\266ugoD\237\331\243\370^US\177Vm\332\222\273X" #"\357\246\35\221\256%\30\363a\301\360\2" #"\307\301\236\307g\344\272\221\245\214#`" #"\22g\314*\260\b\"\18\202g\326#`?\2632\361\331S\254\354\354\366\366" #"6Y\300}\337-\333\203\325$\3279j\356Km\2723\346\361\236\314\214\276]" #"p\377p\217\213\2278<==\201\231q\271\\p\275^3cq\6\274a\303" #"*sV\203+\"\262{\r\340\21k" #"2\234\221\357\335\311\34\211\350\240\200\321" #"c\355\254\311\243\244\215\335\3052?\320" #"Us\233`\3104\4\342\275\274\321x\272\312?\\'\275d!\32\261,\340S" #"D\357\204\221\t\376Z5Cf\340\31\30j\2575]\233hD\30\303\366\0\r" #"\270\271\271\340\272?\341z5\26\316\232" #"Z\355\36\32-\220.\250`C\34\354" #"r\372\37\263\365\253\244\345\234\218\203" #"\312\32\34$\343G\222\372zf9c\315D\305k0\35,2g]\366bg" #"\31\304\260\254I\261\21\325\327\324k\253" #"\362R\203A\216\340\21\360\236\240\225\206" #"\217k \3622\315\22\370^\372\26\346\17 $\203\30Aw]\273|O\377\354" #"s\246\253q\303\220\221k/\321\374\351kleF\307\365T\21h\0\3469\17" #"5\304\347\373U\5\224\b\r\344\31\262\0\266\342@\323\354F4;Z\303\232\2" #"j\266r\273\271`^\35\2535\366\32" #"_\a\223\323\328\243\234\325\364\270\0010\237\36:\362\0347\32\3612" #"\246\0050\"\266\27d\213br?\35kl\35J\2R\2056\202\16+" ) 500 ( #"<\262{\30\3306#\376\30\335l\361\260lu/\301\243\221\202\r}\t\350D" #"\357\27\3n\324\240:q\335\217\254C" #"\b\321\352\230wP\241Q\17\301\320a" #"\302\322\35\4\34\4>\204\2545\220(\256s\307\266]\0,\206B\306bf\231" #"\b\302\vp\315\271\214Lu\320q\215Y\e\313\253\221%\34@\246I\3046\313" #"C0\210\356`\352\30{8\376\346\200\337J\a\246\203\227\255w\3\261>I\200" #"\374\336\270Yq\264\255\2159\3159\247" #"\21\346\21I\302\234no\rcD\347\250),H}\343G\n\201\22J\232\324" #"\323\a\323\353\252\324\367\207\24\324\32\346" #"~\5\265\232\246Y\212\264Rxn`\210\260\317i\365DD\0005\214]\274A" #"$j\322\b\240cD\3729\207m\210.\f\364*-\211z\271j\204*H\216" #"ka\"\350\234\a\aaF\260\247\302\a#\227,;\35YQ\0\336H\303\200" #"2\230\0\231(\5\351\226\222L\a'\3D\rP_?\227\251m3'\22\0" #"\365\3004a\25\373\303Y][\177\273>b\240i\30?B6W\322\6K\317" #"\0032-5\0372i)\26S@\307\235v=\336\261\277\365\315\323j\4\3050" #"\233\252\341 \24\335\367;A\345\266a" #"\216\2535O\266\206\350P\0051\210\274" #"\341\20\336\210\300\4\210\0055\21p\32\2000C\30F_\301\226\222ev=1" #"GD\352\t_\257\255\267\347J\262\370" #"D\26\264F\352/\326\320\310\n+\321\tpl{\342\315\253\221\302\347%K\325" #"I\230\215\261k\373\334\304\203hL\2YM\227hI3\272>\t\f4\210\b" #"\320;\306n\316\262\265f\251\342\346\215" #"\213\352{+\360\214\201\2\342)o&(lB\204\244\f\nn.\27\353\270v" #"\203\35\351X3{G\235\260kF\332\rq`<=}\16(\3661L\257L<\320\266\376" ) 500 ( #"l]V\306\n\330\266U\232\325Z\a{\255\277@\17\316/\0\346\313\273;[" #"+\254r\"\300\364y\333,\203\364\370" #"\370\210\373\373{<==\341\375\373\367" #"\370\335\357~\207\367\357?\340\356\305\v" #"|z\270\307\247\373O \"\374\360\303" #"[\3149\361\342\305\v\274y\365\n\242" #"\202}\37\30\373\216\373\373\a\\\257{" #"\246\255E$\301q\200\273\367\357\337c" #"\354;\36\236\236\360\356\375;l\227\v" #"\276\372\362K\274x\361\2\373>\360\345" #"\227?\302\353\327\257qww\207\273\273" #";\334\334\334\340\305\213\27\t\232>~" #"\374\210\373\373{\274z\375*\373=\356" #"\356\356p\361L%\23\343\356\356\16\257" #"_\277\266\373\353=\3\223\255okj\2057\321\32se\345=}\273X\200\244" #"\36\304\267e[\237\236\236\360\355w\337" #"\342\325\253W\370\372\353\257S\26\237\236" #"\236\260m[\256#\0\323i]\353\34\345IU\306\237\236\236\3206K\277n\227" #"\r\215;z\353\270\356;\24\300\373w" #"\357\214\301o\214\356\4\21\0\374\355\337" #"\376-\376\346o\376\6\227\313\5\277\376" #"\365\2571\306\300o\277\371\6\37\336\275" #"\305\353\327\257\361\247\177\372\247\340\311V" #"_I\4\366\0005\262\24f+m*\17 \253fU\4h\224\254&!z\23" #"\"\270\324d6#\310c\177\337\310&\364 yT\263\363\277\222/\341W\254'" #"\1)\243\221\326\216\376\221\n\344\244\0" #"\306\352\v\200\205S\16\231\243\342?\322\36A!\32\r\230\21 Z\3065\2c" #"\363u\224\204[m\366S,\",\256+\300n\332\30\254\314r\226\371\24\333\20" #"\245O\361\274j#\252\375\260\327\366\\" #"\353 G\352\275\325 0e\214}\n\204\333\367\260C\321\270\16Xp\312\16r" #"\eYM\277\21\6\23\373\365\nQ\305\226\237\r+\315\361" #"\251\23vo\335\t\267(u\v\375\230K^\374:\315\306" ) 500 ( #"i\262\314\326\363\303\371|\223-\5m" #"\261\327\3\242\306\2303\221\221\24\321\213" #"\304\214\353nv\205\322\246j~\277\330s\303*=\n\325\2151\272\32\273E\4" #"\21\266\232<=2n5*\215\315!\254t\b\261\311\353>\354F$\300Q\\" #"H0\21\0325j\6\316\306\330Q\2732\307\30>5\200\300M=%\264\242," #"b\273\3513\340\255\305\362\252\372\254\216" #"\310\314CK&\2243W\32\202\254Vs9\324J%D]\370a\314\217xG" #" \3133\205\r\205\273\\\254\31e\310" #"\304\356\21_\254\35\263\1\f\0\t~\226%!\3k\5d1\257Z\270Z\v" #"6\246\31\277\346\2143w\253G\2515*\347HO=\332\211\250\216<\25d\r" #"]\224\351\2450\36\207H\262D\311\341" #"\\U\4\227\313\366\214I\371\377Kw\5\323\30)\206`+\2309\307\361\34^" #"\253ju\315\376;b\366\3612k\214\t3\2403>w\325\300\332\347.\206\327" #"\200\371\32q\25c\224\3661\22\346\3274\263\5e\f\31\32\331J\ae%\200" #"\363\306\b\361\6\5\321\225\2724\325\262" #"\200\320\32\276\220\354\237-\221X\252\252" #"\371\250\37jV\233\31\215TX5\306" #"\346\213G\216\325\252L\247\210\240_:\30609\266m\362)& @\311\257Y" #"AB\345\332MW\3064\320\312\356\323L\6\2\2149\220\215\353a\6\2111/" #"\271\257\221\272\303b.\316\362\267\344?" #"\354\304\nZ\302\250\253\342\20\230V\366" #"\250\367n\265\336\320\224\361Z\256TG" #"\4\22\261O\25Y\201n\r\334.\227" #"\213\351\250\353O\30\341\225\362\264{f" #"!p7@\322\270\203\367\1\332\2325" #"W\335\230\263\260\214\322\216)\23\227\333[{\377\276e \23u\362ww7K" #"\217%\366N\222\265\1\23^\372{\231\3\262:\345" #"\367\357\337\343\376\323\275\261\233\333\206/\276\370\2\37" ) 500 ( #">|\300\365z\305\30V\233F\316\376\277xq\213}\37\370\360\341\3T\5\217" #"O\217\340f\316\354\341\341\1\37?~" #"\204\210\342\335\273wxzz\304\247O" #"\237\360x\377\200\217\37?\0010\200\226" #"k\341\0%\256\277q\303\345\266\2435" #"\e\335\326z?f\314|\17\36\356\357\261].h l7\306\306\366\276\201\275" #"\371p\337\367d\373\231#\360c<=" #"]\321\32\343\345\213;\3149\361\366\373" #"\337\341]\3330\347\25?\374\360;\214" #"10\366\211\313\326\361t}Zu\177" #"\262t\0320\0b\345\34\313\266\204\354" #"\2159 \323\374\334\345r\301\315\355\r" #"\266\336\301\255\343\366\305\r\32\231\f\\" #"\257W\263+D\370\364\361\36\17\217\17" #"\230\303\32\267Z\347C\223Q\200\331\333" #"\333[\210(.\27\333\243\351\301\303\327" #"_\177\t\205\342z\335!20\307\304" #"u\277\342\267\277\371\6\227\313\rz\337" #"\320{\307\253W/\361\345W_e\226I\25x\373\375[\20\1\17\217O\370\364" #"\361\3\210\330j,\331J\e\246\b\306" #"\330\361\346\315\27i\323\376\375\237\3779" #"\210\t77\346\203\336\375\360\16?\376" #"\275\237\340\277\373o\3775F\372)\344\2303\300\230DNr\200\21SsR\307" #"\270\271\214\332N[OMl\274}c\1E\235X\342Y\230\262\a(\337G&" #"\266\222\n\a\273\e\200\32'\262\204\t" #"M\31\353\35\217\244\316\271\254\245\372\254" #"\32 \3169\275\36:\374\301\300\306=" #"\301\177\332D\0\303A\333\24I\202$" #"\26\240\372Z\263\272\370\354\357\253\37\216" #"\317\257,t\332dZc\326\226\355Z6\177\252\34J\215b-\203\34\22o\356" #"\r \35\0\270\367-\373D\202\265\217" #"u\n\373\t\300\32\301\372\362\337\275\\" #"\253\341\237\1+_+\3549\2504\2149\207\206\225=:\4" #"\350d\266e\216\335@43F\0064\341\337\310\345r\221I" ) 500 ( #"Q\6U\203\6\346\355\360\336\237\367'fW\274s,@\254#q\273'O\225" #"\36\233\313.\227\313\332\0\330\242\0063" #"\300\314\30\231\276]c#\2e\2133x\\jg\331g\217\306\330\f\242p\210" #"\2049\367L\327\2603U-\232c\222\31\e\207N\342s\av2\210\206\30m" #"\203\0\27\f\312\272W\"K!@\255\303\322\346{Z-I\200\204P\224\325\365" #"\272\346\335.E\"4/\326\356\334@>Nc=\274\26\217\310\327\331\2012-" #"\307\37A\2019\30k\20R]M\\" #"\3619\354\235\363\254\315\200^\247\4\322" #"\237\253_\313\bP\327\374G\373\331h" #":\325\231\243\2062\352t\260\31\n\5" #"8\333\3545\204c\34\231\265\32M\307#\234c\5>\221\206\232s\1s\212H" #"\272\254\247\325L\332\317C\4\0223a" #"\275\4 @\267\250\325\337\31\250-\251,D\4i\214\255\221\331\213\241ffp" #"4\34\351J'\207\362\250\230s\223\t" #"\237\201,\210\351\5\266\365\34D\"\304" #"\351N%\202\350\216\316\27\214!h\315" #"\301\256\323\205\252\23Z\344&\230\370)\3*\253I%r\236\323kBC\26\216" #"\251|\2\261\227ix\335\373\30\23\275" #"Q\330\vc\30\20\363\247\311\256a\206" #"\361P\364~\301>\366\274\27[3\1" #"\310\353\256\303\345\320\232\255Z\215h\2" #"L^\351\271\305Z.G\30\240r\314\211\315'\240\204!Of\331\345.X\235" #"\32\270n[\307>'\266VF \"Xa\3\27097\261Y\31\221n[^" #"\347\375\375=\276\375\356;|\372\370\21" #"o\337\276Eo\r\357?|\300\315\345" #"\6}\333l\16\367\330\361\370\360\204\313" #"v\1w\306\217\336|\201\3366\\\307" #"\25\237\356?\341\361\376\321\330\311\336" #"\360\351\323'\274\377\360\301\r\264\5\347\327\353\25[\273" #"`\273l\330\367+\324\e(\337\277\177\207\375\272\343\313\257" ) 500 ( #"\276\364y\334\212\313\345\202\367\357\337\1" #"\244\330\367\211\37\336\275\303\303\303\3\346" #"\34\20Q\364\276\31\350\362]\t\220\22" #"r-S\261m\335\372\34\346p\235\355" #"\270\271\271\1< \220i\266\252\267\216" #"\2661\236\256W\20\1/n_\340\351\351\301\230\"g\331U'\356^\3349x" #"\361\354\302v\301\217~\364\6c\356x" #"\361\342\5\276\376\372k\274|\371\22\334\32noo\241\252\270sv\265wkh" #"\355\255\341\346\3466g\335\2161\360\361" #"\341\23\306\36\304\204\331\261\247\247'\210" #"\b^\334\336\342\307\277\367{\370\361\327" #"_\343\372t\0051p\275^\361\366\355" #"\17\370\370\361#\36\37\35\224?>\340" #"\355\333\37\22 13\236\236\236\0(" #"\276x\363#\20\331\236\204L|\374\364\21c\277&P \262\314X\333\272\311;" #")\366\353\25\35\202\367\357\36pss" #"\203\353\223]\343\345r\301\276_!s" #"\342\366\366\6\314\234 \0350 D\4" #"\364\315j\225\37\36\36\360\352\325\35>" #"}\272\307~}\362\200\5\370\307\177z" #"\217\326z\316\32\35s\340\262m\370\372\307_ef\a\0>|x\217\17\237>" #"\244\317\r\e\276u+\253\332.\ezk\270\\6O\355v\334\334\\\262\24\312" #"\b\240\35/^\\p}z\302e\333p\373\342\5T\4/\357^\273\r!\314" #"\320C\234F\331\351\252\203\5\26\321\244C1\340S\226\22'\254\21h(\4G" #"4\252\22Q6\271\305\30\302\360\37\25" #"\230\204\217\256`\264\226\344X\223\343b" #"bU\25s\f\364\326\223\321<\223n" #"\347G\375\314\263\275\265\254\27\326}\1" #"n\351V3\370\24`\343\216\t\17\356" #"\313{U\222\355s\277\253\315\206\207\faa^\3530\200\220i\2231\3132\212" #"\16\323\321i\231\347\336;\3669\236\225\352\230\255\345\264\273" #"\346\231\274\217\20643\311\353\32\347\3023b\323\27\2701" ) 500 ( #"\266\266a\337%qD\305Ov\335^\362\247&\3131\213>\t\r\227\241\272\227" #"v\337v]L>u\201\214|\331u\230?\f\"\f\2R\37#I\301\0207" #"\4\260\216R\237\260\205q\375\265\307j" #"a\36'\202\246\242W\240f~c\245\213\267m\313yfq3c\16l}3" #"P\241\212K\277\340\352\35\341s\337\21" #"u\260q\3435\225\32\305\363U\301\226" #"\300;\360\3a\214\325\234\3269\3353\330\rF\274o(Y(\337\212\247V\375" #"\226\245O\354\271V\274\rW\22+\322" #"\267\341\355\226\336\265\303\n\0306`J" #"\241:\240bc\265v7\322\252\326\1H\0\324\5\254\20\e\0\340\306\353\230Z" #"8\203\356L\25\312\356\370[\300\342\212" #"\211U@>|\356\255\261~\241\222\26i\211\2129\304\326\0\222d\21jd{" #"\210d\275\374B\325j\204C\370\0\334\245$\267\0\0 \0IDAT\6\232" #"\1\314F\fL\315\210]eu\363#\345@\241s\240s\363\211\n6\274\372\334" #"\234pV\354\330\363\31\265\317\16\212\342" #"\375wOE\204\21C\1\377\306,\4[\240\31X\231\262[*^\312\347\247\214" #"!\332\313jt\271R%&\227\214\306\307n\365#\e\256\260F\277P&\av" #"\315J\22b\314\31\323\6e\353\2m\334rJ\306\30g\226{\31u[\223`" #"2\343\300\r\207\301\22\215\32\rS\aX5\353\203C\261\255&\224\274nm5" #"\240\210\252O\260\260\300\254\361e\31." #"D\372\324\374\221\326`\203\30r\30\342o\345;\304Vk?wOU\266Ub" #"\220\353\310\f!#\261\315`\337`\337" #"\257\0\340\243i\272\247\1'\36\37\37" #"\361\273\357\337\341\233\177\371\6\217\17\217" #"x\367\356\35\b\300W_}\215W\257^\342\325\253W\350\275\343\233" #"o\276\201\210\340z\275b\212\340\247\277\377S\274z\365\n\3346\274|" ) 500 ( #"\371\22/no3\220\372\335\357~\207" #"\357\276\375\26o\177\370>A\324\34\23" #"\357?\274\307\177\376\177\3763\36\37\357" #"m?\247\2007\306\213\233;\364\326\360" #"\360\360\200C\275\346\234\311j==]" #"\235\365\253\235\336+\323\265\217\1\220\325" #"\357_\257\327C\20ED\270\273\275\305" #"\323\365\212\336;\266\276\341\377\375/\177" #"\17\200\260]\214\311\35\303J\177\306\330q\275^qss\203!\323\352,u\342" #"\345\335M\246\231\343\240\211\330W\276\30" #"+vs\263\341\345\313\37%\30\253\345" #"\a\2555\274xq\213\333\27\267x\375\3725nooq\271\\\320Z\303\317\177" #"\376s\354\373\216\237\374\344'x\363\346" #"M\336\333\323\2433\246\n|\375\343\37" #"\203;\301\16\a\31\311\360*\236\263x\31\360\26;\24,Tw\6\330t\253e" #"\275\376\234k\212\301\224\211\233\333\e\277\346;|\371\345W\a\26GUq{{" #"\233v->\323\354\224\275\307\326\327\354" #"pn6I\342\351\351j\372\3532\312" #"\255\341\207\37\336\342\351z\205\252\346\276" #"=<<\340r\271\340\361\301j\202_\277z\205\233\233\233d\276\2145_%\23" #"\2555\364\336\360\264_\361p\377\t\17" #"\17\17\270\277\277\307\343\303c\332\272\307" #"\207G|\377\366{\363\245\255a\273l" #"ic\276\373\356;\210\b\356\356\356\320" #"\333\206\307\247G<]\237@D\370\275" #"\237\374\30\275m\270\177\270\307\355\355-" #"\276\376\372\307\270\273}\211}\354\270\177" #"\370\4\235\300?\377\346\237\361\367\177\377" #"\367\370\341\207\357\255\236u\267i\1\257" #"_\277N\3730\306\300\345\322\261\262O" #"\310Y\247\207\262\201\\\313\302T\272\375" #"\231A\316`eJ\243L\260\202\34\346#\201\20M\343\346s\374\357T\17QX" #"Y\256x\337\352\257\b\310\275\257\245\210a\237\317\1\277\5\303" #"[\6\3335\303x\306\34\236\273\262\373\357=}[\224]\244" ) 500 ( #"?!\362\264*\326\341\37\32Y\350\221\314\253T?Yl\342\201\215.\276,\236" #"\223\265\331\205\220R\215\fb\324s\217" #"\f\326\206Oz\212\340&H>{\275\225\352\265\22\b\304t\5\"cH\215I" #"\267\346\346\212\375\266\30\215\251\221\235?" #"\356\305\"\353\242\261\36285\244\22}" #"\3518t\2\360l\0\24\314[\336\17" #"\23\203:\247\317\r\375\222\300\23\275\203" #"\270A\247e8\346\34\350}+\207\215\31\21\212\"#g\314\21\33190\203\376" #"\374\377\372?4\323SE\340\211\350\324" #"$\204\305\222(\320\332JYo\333\206}\fpo\26\2y\340c\2\272X\236" #"\2720\207:\25\212\356\351\2267\312\334" #" \352\203\205\35\364EcE\335\340\225" #"\352\fF)\204\230\241\272\ex\360\b" #"TE\234M\350\236\256\1\354b\255\261\242\216%k\315N\201bj\0M\250." #"\1\217Y\243\242\360HiMM\0\232o\352\361>C\31\222\255se2F\334" #"\2327\f4-\201\217G8\22\353h\206\245\234\333\2711 \"\237\250%;v" #"\363\6\243\0363\220\3553\302i\257\223" #"w\254\36\361\310\340\202bN\336\314\362" #"\216\241\23\315\307\274X\363\342\nb\316" #"\245\v\207\310\216\226l,V9&\n" #"\370\363\35\344\326\367#\317\347\245\261\221" #"\322\355\315\fP\313N\357\270\366\330\313" #"\32Q[\235\320j\24#\17\356\252\234\aX\251\215\6u-\353\363\b\rC\256" #"\230c\242\361\5\324\255\321\245\236\334\24" #"lW\274_\334\327\371\4\27;\tpE\257\344Q\2555\204D\324^J\206\210" #"\362\4&n\246\227\320\322\311\\\356{\31`\223g('k\342as^K<" #"\177\3336\\|\224\234\250\261\207\34\251" #"\353\266\322\274\237>}\302\234\23\217" #"\217O\270l\35\367\237\356\361\233\337\374\6OOW\354" #"\373\25\367\367\367\370\341\207\37p\275^\1\2\276\371\3557" ) 500 ( #" V|\372\370`\254\325\205\321\232\325Z\335?<\270\241\366\24To\30\373@" #"\337\"m>\226\216z\203\2469\365\5" #"X^\277~\235\314\330\323\323#\270q" #"\326'\267\326\320\35H\261\277\366\345\313" #"\227\30c\340\323\275\335\307\213\233[\374" #"\350\313\37\301\322\374\357\361\376\375{\354" #"\373\216\273\273\27\270\271\271M\306\224;" #"{\6\202pw\367\2?\375\351\357\3\0F\4l\242\370\360\361#no\rd" #"n[\307\247O\367\226\206\277^\301\5" #"\364\334\336\3368\310\177\205/\277\374\22" #"\17\17\17x\363\346\r.\227\315\203\227\6\31\23O\373\25\20\265\24?-;=" #"Ur<\223\311y\335\377\343L\317\260" #"\367\241#\327\353\365\340,\242\274\302\312" #"\r&\254F{\215\267\253\354\23\312\317i\267\"\223G\2245}Uo\342:\342" #"\3652\4\334-8;;\255\252\1776mm='\6\372\333\a\0373\b\346\264" #"\315vuo\220\203N@\0\356\326\214" #"\a\2542\263\370\234\250\331\214\351\21\325" #"OUP\27\354\223u\2317\357\277p\375Vd\300Ym\267\5\371\326\334\264\313" #"\300\335\335\235\331O\257\343\25/\213\353" #"[\267\22\207q\5!\346\274\232\3354" #"\342iB\205\275\356\231\360\237\376\357\377" #"\204\277\376\353\277\306\253W\257\360'\177" #"\362'\370\345/\177\211?\373\263?\303" #"\373\367\357\361\375\367\337\343\177\375_\376" #"7\274|\365\n\227\355x\2575\335\37" #"\367X\377f`\25\331\314W\327\241\332" #"B\3661T\373\30y\252\226\225\250\325&7\315\211&Q6`\315t\226ie" #"\266\246\350\250\353\264I\0\232:[\353ts\354Z!$\316\245\0VN\245\326" #"s\324[\372\264\363\275\253Z\343fo" #"\306\210Z\251\217\223\25\255\203\24\336\327" #"B\345^p\220\213\263\217\320\317\350D\365)\0\16\257\375" #"\34\343\0345\334\4\333o\217P\214\334:\225\337\205.\347" ) 500 ( #"\2650\201\344X\313\257*\260\276\261\25" #"\224\4\320\265\354\231\321\211\255Y\326\354" #"\210?\220\375QI\200\300\310\303\332TzX\3\"\220\16\20y\220E!\v\4" #"`bN\305\266Y\317I`\245XW\20%&\f\340\34\227Se\317\310*:" #"\310t\325\377U\202\247\350c\332\354\304" #"0n\255u\250\354\31\261\327\210!\243" #"\"\2664\211\302\16\0200a'\3\271" #"\260\364\20\245`\254\24E\244#\223\325\364\377\3551C\25HVN|\20p\324" #"\rV\301\2567\\7\3\260\272SQEc\1xEj\236\0056 I\23\306" #"nY\332I\20\324\272\325\260\16\215\272" #"N\217\210\342\300\0^\3659\346\0\24L\0\267\vDv\277\22-l\341\261\203" #"\274~\17\a1\4Eo\27\23f\266\250;^_\243\320\4isf\267|8" #"\3KO6h\30\16\245U+J\313\341\235\a\225\a\310Uu\210\253\213\311\r" #"\241k\255\31\310\215\2244[\343\"\251" #"\31\222\0D\2074\30\216\16\307dg\2\304`\352\266OdS*\306\330\321Z" #"\255\311~\276\327!\3513\"l\242\224\ts8\0f\314\301\264QA\25\270\246" #"\254\220\"\216#\6\251\315>>=\2576\f\304zD\363EM\243G\272\34~" #"FWk\0s\30XJF\2662|a\374*\303\1774v\306\314\32[`\263" #"{e\6\3\275\234\321\241c\275\31\b1q\3444\32\325\360-]\t\366\313'" #"D\370\325O5\306\364\345\313\227i4" #"\243I\3507\377\374\317\370\366\333o\361" #"\356\375{|\367/\337\342\351j\365\215" #"\337}\367-\336\177\370\210\353\365\t\373" #"\276g\2604w\301\266\331:Y\335\243" #"1h\333\266\201\b\231j\36\273`\333" #"\30\227\313\6\5\260u\233\27\375\305\366\32\217\327'\353H\36v\37\267" #"/.^\333\fgY\37qs\271\301\276\357\236-\262\347\335\335\275@" ) 500 ( #"\353\r?\372\321\233\f\310\177\366\263\377" #"\6\257^\275\302\317~\3663\374\374\347?\307\27o\336\340rss\n\264\302P" #"z\343\247\256n\352`I\255\6s\246\356\23\221\247\207V0w\275^\335~\271" #"]q\333\27\363\275\27\210\364\261B%" #"\30\r\231\212\347\335\334\334\340\351\351\t" #"Wg\35\353\203\0<]\237\0\330\304\220\b\356\236\5\225\305vT\271\rV\344" #",\207\311~\225\300*A\257\32\20i" #"\227\225\241\313u\30\3260\231\301\25#" #"\353\365\302)W\6\261\202\223\306vj\"\21\241;\303\vQ\237hR\16\222\200" #"\331\306p\320\344\353\e\vbA\247\217" #"\351K\31\17\273n\3\366\301\224\223o" #"\342\232\36\37\37\21\31E\333|\2a" #"\351k\265\303\a\233\351yFr\277\265" #"\217a\373\3476?\202A\253\355\364r" #"\37\anq\214\362\375\375\375\332SZ" #"\214\330\343\303\25\274\1\20\253I\35c" #"\346\275\354\"\331x\371\364\364\b\205\340" #"\217\376\350\217\360\253_\375\n\252Vg" #"=\347\304\27_|\201w\357\336\341\346" #"\346\6\227\313%\17*:\a\17\301\376\a;\271\344f\315Pn}\331\255*O" #"\361\334!\307\251\26\26\353\250\23$6" #"\202\316W\313\233\256m\3664S\263\321" #"\245~\210A\30\365\260u\f\315\323\270" #"B^\230m\206j\333z\336G\200\307\263\222D\340\4\5\330\3\346J\0\30\341" #"\265ck\35 \305>v\2604\a\2126\267\2651ak1\32me\f\353\274" #"\3413)Uu\371\34\340}\336\356\257" #"\272\341\224\0055\22o\353\e\2709\0" #"\234\336,vb\252\317\2575\5\320\303" #"\347\232\16\254\222\30\223\267R\36\6\357" #"\375\31W0o\320\3\341\26%S\360\337\1S'h\36m\211\252ORB\334" #"_\a\371\251x\321\24\0263~W\t\346\272\324\304\20\376" #">\323\263\6q\200P`\310*\243\246\203\317}}\310z" ) 500 ( #"\0a+;ND\256 \257O\211\321bR\214\315\347\230-\243\224{\32\262\3" #"{F\4\215\223H\nP\213\222\202\210\364{\3576\326\314oLD\222\32\37s" #"\342\342@\212\374\6\210\31c\337\321\333bDr\6&\eC\0\233\274f\215L" #"d\a%T\340\31\251\201)V\3\23\265\263>\212\25:\335\1\1\350\354#j" #"4\316\350\236\356\20\311\347\20\2\304\315" #"F\rq\30G\333\340\32q\301\301\346\326Z\36\30!b\243\323r\203`\2077" #"\330\24\214Z\207\252Eq,:\23\261f0B3\226Y=M@\0D\34\210" #"\226\271|\252Y\272`\327o\a}p" #"\263\346\6c\271\255\336\2676\232\304p" #"\362\259/\347\\\323\264!\3&3" #"\300\224\322<\230\r\200\316<z\371\300" #"\266]@\4\264\266\230G-\362\25\262" #"(\272\32\e\264\30\221\4\277l\323\20b\264I\216]Q\206b\346\353rd\23" #"Q:%\259\2\347\"\363\235\373:)\246\374~\311\272\5<\25\4\347\203\216" #"5b\343P\22\20]\275\307\32\265\230b\221\240\200\0306\rb\325TU\343i" #"\367\3210\345\212u|\345\361\34\371H" #"\217\235\235\324\315\315\r\376\342/\376\2" #"\177\371\227\177\tb\302\313\273\227xq" #"w\a\321\211q\35\270\356O\30\373\304" #"\315\315\5s\16\274|\365\22\373~u" #"\371\267\353\337:\343\345\335k?(\206" #"2u\n\300\201\363\300\323\343\23\266n" #"\265\243_\177\375c\274y\363\32\177\370" #"\207\177\210\336;\276\370\342\v|\361\305" #"\27\30^cj\1\366\216\373\373Gc\274@\270\271l\36\30\2s\f\354\327\201" #"o\376\345\e\330\220p\253\323|\365\352" #"5\276\372\352K\310\20|\371\325\227\306" #"\232\272Q\334\367=\365\350\341\351)S\326\3538\361%\267\215m\214X\357" #"\335\e\21\315V\31\250^{\e\207\214<\263y\315\322m*~\220\215\250" ) 500 ( #"\a\235\344\272X\32\270x\325 \206q" #"\256{{f\20\317\214\25\212\234\307\265" #"\235\35\354\332od\231@M\355V\231\257\262j\271\332\25\254KS\310>!\323" #"\e\211y\225\b\205^\326\322\31U\206" #"\300\247\31L\317\234\250\247\317\375\301\356" #"c\266f\2629\3074\226\324\301\340b\305\b\235o@-Jut\351\226hf" #"1T\311\246S\210d\300\227L,3\310\233n\227\343]s\273U\a\30\353\324" #"\250\310 \306\32E\177I(v0\217\"\344\243\362\3248\224\306\5\240[\246$" #"\347\245\6\311\323\2\330\21@&\e\26" #"\\\270l\260\325\320\23E\331\224\373]" #"\215k\205\263\325\266\346\373n\265\341\261" #"\227Qb\301\314x||B\363\331\327g\240\25\337'\333\\\230A\313\246z\206" #"rJ\216G\253\362\3318\32\327|:@\231\336\321ye\27\267~\301T;a" #"+\16\356\361\213\365\276\f \332\215\217" #"\262{\324\203\346\231=\201\35\376\222\351" #"v\212FY\312\357s\337\273\371\3328" #"\0051\262\324\2265\212\314\333\322]\1|\377:H\5SV\20\234c!\212\316" #"\304\367\300:\234'\312=\351\240O\317" #"K\370\352\375V\246<\276\332,\355\360" #"\1\336g\202\365\210\3678\370\34Ef;+\20\326\314x\4\03639\267\336\211" #"\26E\22 \266\3*\366\261/\334 " #"\253\257\b\3160\223\22h\263\243\220\343" #"\264C\3\315\214!\326\3371\347\3563" #"\313\217\331\336\300\ay\237|$\200D" #"=\313\324\327\314v\323\357UBc\301\254\327/\v\301\253O\362sbm\206L" #"l\255\243G\247\373b\e\254\2760\273" #"\342O\3406\230\254\351G\233\6-\36\2651\at\237\21\336Z\364H3\212\210" #"\3l\0030\263\30\374d\253\230\261UcU\214=\272\r|\a\212\336\200" #"\240X)\26f/j\326C\200sP\330V\"]\346\346\340\333G+\221" ) 500 ( #"\217\254\302<\bd\30 r\303HJN\301\3674F\200\25X\ak\221Bn" #"\236\303\24\\\325R\f\254\t$-\232" #"\233\231\272\rC\364\\\301\24[\277\301" #"\234\2\231\3\252\255\\\2371\215f\f" #"\355\332k\3G\254Ak\e\306\330\321" #"\231}&\256\v\265\226\202\356\3\263\252" #"\220Ih\335\331\319:\314\372PQ\337\rJ\340\252\336\21\312%BS\35P" #"\215\32m:|.\361\261>/\3669d\265\226\2\20\21\206\354\36\231\222G\237" #"\212(h\aV\24\36%/\210\331\304jRX\1C\334WM\333\251_W\225" #"\237\0\2445\373\21\327\f,PQ\201" #"m\215\346\253\303\211\350\332D#\344\f \276\2XsP\2151\260F\262)\n" #"\246nc\372\274qM\375\276E\0\242" #"u\322]\2357\35\240\370\17\376\340\17" #"\360\346\315\e\274|y\207\217\237>\340" #"\375\373\267\331p\323{\303\327_}\211" #"\326\30\277\374\345\277\302\335\213;\274z" #"\365\22o\336\274A\357\e^\275~\205" #"7o\336\240\365\236\265\223\361\b\35\216" #"\343z\207w\352+&\304\203\264\0\314\367\367\17\v(\366\6f+-\210n\377" #"\373\247G\350\364R\17(\250\21~\361" #"\213_d\206\"\326\354\372\364\210\316\35" #"\337\177\377}\256S\4\341\344\316'\32" #"\342\310{\2 \224\23 \232\327\275_no\240\3525\373-\232n\327\236G\355" #"b\225\307x\304\276\247N0Y\r5\21\32oP\37\344/\344,e\1\231\361" #"\372\336-\245g\22\354,\255C\201\4\315b\2000\2\351*O\265\4-\3311" #"O\1CW\251\322\231\25Z\372g,Ne\213\202Q'\a'\301\22\261\327\16" #"\266n'[\251\23\5Af\260\23\1\1>\352a2i\253\24\30\0204\267A" #"\252\326\0i')\231}\37\272\27;c \37>)&t\314\326m\34t,tNU|Td\3\321" ) 500 ( #"J\205\a\323\311\334\374@\31\317\366\311" #"\261\264(\203o\363\320\346\263\2\234\250;kg\2355F\372 2\232e\324\240" #"\256='r\362\306\377\273\330tzv\375cT\377\a\3g\223=p(\262\351" #"\266\321\372\35:~\366\323\237\341\345\253" #"\227x|||\306B\206]\255\214`\202\17\212\214Q\20OVBQ\355#\31" #"[\225DA0n\306\302\231\215\261\251>Q\272h\345Y\200\327S\203\261\252q" #"\227.\205\255\17\240\0305\305\241\303D" #"\224\215aD\224u\264\306\250kR\217\1\336\23|_6\314\335\330`PL(" #"pl\243\26\300\231_\262\232V\25\270" #"~]\1p\321\217\322\3\344\217\336\255" #"QL\374\363\343\216\316\344\310\371q\356u\250{\0\0377:\325\2\16j\310i" #"\31\261g\321\24\330\2321\326\340\225\325" #"\t\22q=&\230\375p\260\320\333\266d\234\2744u\312~ I,@\213\367" #"\364 \327{\231Df\302\177\263\3636" #"\0_\240~\260\311\261|\256\202\3473\361R\203\234XC\212\300e\332\f]#" #"\377\f\243l[\307\276\a6[8!\3279\211\311\201\36\302\22\27\332h\2031" #"}\353w\361\6+\3423c\330\372R\272Y\6\37Wv\327R\271\323N\267\340" #"vx\217\326<b\365H\v\245\26'\4)\204\251\32\357d\251Z\367\324\353Q" #"I\317\f\231\31\264\343\311,u\241M" #"\231Z\226+\354\343\n\e\2655\374k" #"\244\4\26\253\30N\221\274v\225\242C" #"\320\317\256\213\221?\273\17;\17\366\2" #"X\35\350\2003\0\376>\31U\267\325" #"\361\30\233\26F$\217\316E\254\225]" #"\263\245\r\214\201\254\312\30N'\"\245\0\311Q\247\234\r!Dh82\247\204" #"\250\345A\2716\316#Pk T\2258\346\250*\2008\21\b2}" #"0y\354\203\26@8\241\32uw\264\352q\363z\221\221r<\222\301" ) 500 ( #"Ru\26\327\34f\353-\301h\354S\254_\225\3150\354Q\367|<Hde" #"\23\314\250\222\37\\\262j\v\327\232\36\e\v\22LD\275\31\30CG\16!\17" #"\260Y\331\257\252\370\"U\341\25\324d)1\324K\e,\363\"%\35\345\265\22" #"\36\365\226#K\335qNY\207\213D" #"m\323\234\23\277\376\365\257\361\355\267\337" #"\342?\376\307\377\200\177\363o\376{\374" #"\352W\277\302\373\367\37\260m\35\267\267" #"7xy\367\22/\357^\2\245\221d\216x}\214\3732\240\37v\242\267\206\207" #"\307\asF\344\305\35L\30\17\367@" #"\36~\260\202\16U\37\217\307\226\226\314" #"\0005\1\36\241uk\214\335e\242\371" #"\276\325SpDb\376\260\34\366\347\30" #"\224\30kh\35\344\3568\313\311o\314" #"\214F\266\357\347F\213\4\222S|\266h\341\367\212\3639\a:D\204\255\4X" #"\324\314\271/}.\365\354\b\366\256\4" #"F\3445\370\2062A~\275\334W\306" #"\255\352D\r\326\216\262\345\316\212\326P" #"\376s\20\6\300R\353\242>\2679\234\241\37\230\"\1\316\315y6?\270\6\0" #"H\30q*b6\317h\244\217\215\3553=[\343\25\23\334G\t\202\327\26:" #"v\204\f\3\240Q\nP\201\337\234f\333\2\330V\220P\327>\31-\377\233\237" #"t\232\240RH|\266,\305\16\330Z\30%\fu\242B\261\32\\@\301(\35" #"\203\n\v~L\3675}K\254\231\353\236\327$ZJ\325\356%&=\330\354g" #"\0z\234\25\35\357\235\200\304m\235\5" #"\22\315\233M#\240\263\322\246_\374\342" #"\27\370\207\177\370\a\334\\n\323\16V" #"@ufg\353\32f\375\266\250\331l\216\261\234n\313\375\3733CY\3\313<" #"\362\32@P~6\276\2649\263\17<\215kfs\353\236\205\314N1" #"\346\260>\b\310\332q\0012\223\4*\215\242r,u\210Z\356\271\17K" ) 500 ( #"\211\2372t\215\31C\216\245\eA\342" #"\215\261\e\201U\370\374\272'U\346\314" #"W,_\20\231\276:\35!\357\203\26\v|\b4<h\210\214B\325k\263\335" #"\342q\36\35\374\b\4\207L1\263\35x\24\323\f\354~m\27m}c\256\256" #"\225\334\365n\340\377i_A3\20\3235\324q\206\306\16\30\313\37\327)b'" #"\245!\354Q\224iu\20\216g\31\324lR\340\216\263\35,\213\264l\261\373a" #"[/\273\2179\245\20\21\353ei\377\332jX\354K\201\314\210G#\210\215E" #"\342\334\254\20\234CDG\\\336|B" #"\305\352\323*\230\210\372\17\0213*\201" #"\360\317\233~N\253\324G,\320j\274" #"\262f4\235\306j\2042\220\v\350\224" #"\211\346\203\204\303\20\235\213\246\3L\205" #"B\a;I\204\214\\3\315\355\206\251\216\303\"\"l\315\243#v\300\256j'" #"\250Q\351\374\257\221v1\n\354N=\0\235\262\31\365Fv\f0\2740^\375" #"T,\3\201V\322\340\326\30q\260\203\215+2G\22\16<\243B\257\327m\205" #"\333g\212ZXM\247\32\203\276\303\220%\203Jn\342\210r\rb\350\177Mu" #"\6K\232\340\5%:g\353\340]\351N*`\340\230\3124}z\236M\250\362" #"RY(>\5V5\230\211\373\250\316\201\e\3bgjg\301\202;/\251J" #"\270\17\237f\1O\217.@\224\fZ4\377d\312\200\362\332;ll\23\b\330" #"`\3150\252X\347\204\227(6\214C\0042*\344\327c\314\2\330\2530\325\2" #"(\3125p\231w\271\347\6\364\266\255R\230hLk\36\304\210@\304\f\267:" #"k|\177\177\217\257\277\376\n\37>\276" #"\307\37\377\361\37g9A\4#c\356\270\177|\260%r\331\235\">\363Wr" #"Mc\257\1?D\304\e\25\207\370\270\260\31" #"ca,\372^L\333:^\\\304\16U\311\272" ) 500 ( #"N\227F\6%\273\323c\246d\225\257t\216\232\243\371b\215\17nR\255VO" #"\343T\36\37\301Fj\216p\fc#*\303^\331\23\263\5\307\22\235`\v\253" #"m\252\1w\5+\241\267\213\225a@\30\2757\3\1\335&1\210D\26\312\366" #"\236\\\a\355}\315\341\315R\227V\301meG\0$\343;\207\317\3'\1\310" #"l2\323\n\332CWT\t:\rHK\234\240G\0044\266\221\3201\371\216\326" #"5\6\253T\327}\331\6\305\330\315\266Y\274+\t|*{\243\336\223\1&`" #"*\324\353\315\343Q\231y\373\272\256\275" #"\6*\25\304\235\231ck,\366\300\25\2\356-k7\205\b\e\23D\371\260o" #"\344\200\267z\322\4\350x\316\340\as]\201J]\213\36M\334\361{a;\31" #"\323\a\343\313<\22F\25\220\35\202\"" #"1\200\256\ft\332\f\264#\310\0\302" #"\355\355\r\236\36w\374\253_\376\364X" #"\22\350\367\226'\221\2\207\365\252z,>Rk\331\233%+y:a\321\205J" #",\5\231\22\201\367\224\341x\264A\36489)\3\35D\240\345Y3\367M\352" #"~)\17c(\a\324\\\367\35\255\373" #"\373\210\34\374@\310\30\21\331\374p[" #"\342\224\333\3\321\305k>\362\326\273\225" #"0h\364a\34;\372k\340\21\362U?+\236+\303^w\271\\\226\217)\330" #"\246\256w4\3666\17\302g\224\336\1\240fe\230#A\255&\346`b\363C" #".\247u\17\254!,\30n\2\2631\352\3428-\3\225f=I\373\365x\232" #",\2002\316+d\277Yc\32,@\325y\314\bD\337B\6MZF\177\331" #"b\331t\e\327\251ZbQ\355m\332\222\262\276sZ\266\353\240\323\34cN\307" #"\341\3473\t\3075-n\213?\323g\213Z\372n\24\0P\243" #"\352\3\23\20\21k\320\350\336\211\237\251\f\277\3238\335(\5;_" ) 500 ( #"o@#\322+\\\26\274\326?\326\317\4\220\254F\32w\217r\243\220\271~N" #"u\304Qo\253\256h\313\220\370\365\250" #"1\263F10\242>\204\311\f\376\334" #"\a\"\5\30\301\200\31\257\347\6\243\32" #"\343\3707\306\310\343x\203\t\260\266H" #"\370\341\17\4\370\f\3169|\300\263;=k\341\233^\n@\2075\36\247`\304" #"\330\1\217\364\342\263\312\260\376\0\22\266" #"\367e\3005VJ\rP\214q\205\210\263\275\260 \347<\360\eXc\257\0323" #"\266\336\321<b6\371\211.y\0060`E\344\366\257\2Z\1r~\357\31\360" #"\6\320\2145\254\6\266\n{\225\255\330" #"\363`\267\r@\204L\32\233\30 7\367\303;\365\223\261:\315P\254J\5\1" #"\272\325\1A\225 \303\322\237\215\32Z" #"\2005\265S\202\310\243\322\305BG\335" #"\364\252\245\2027\24Z\32\337\215B0Na\30T\340\335\225\26\210y\224\v*" #"\243lH\300\335\344'F\317\305)x" #"\341x\1\e\351\365\356\207\17\370\376\373" #"\267\30c\342z\335\263\254`\353vra\262b\271\0\256\vx\316p\204\36E" #"\231Jt_3w?\3028\16-Y\315\35Y'8\n\233\252\0D1a:" #"\232\240\226\30\215\333\1 \17\37\3635" #"a,\224\245\317\314\371\3079\364\231\371" #"!\3704\200\6 \272\375\375\310]e@m\244\233{\330g \252\202\20\235\204" #"9\0\25\6\241[\263\245gvj6\"\322\366\v\250q\b\222\1|\336,\20" #"b\237\17\311\224N\303\237vp\340\221i\251,I\2651\361sd}\266\233h" #"\30]\244E\4\260\246\307\16\202\304X" #"\222\230\255\233z\344#\362X\27P\17" #"\347TK\210\f\320\257\306;h\334\263" #"\367e\24\320\260\202\322c\n\227\310\347\227\227\265>\223#q]g\333" #"p\270\16,\237\225\367\241^\22\306.\23s\272\316Pf\274*p\1`" ) 500 ( #"3\250}+\342\357!\257\314\253\0061" #"~^\251\323\5\210\314\306/\20m\314" #"\257\257\2732\224'\210b\304\340\272\376" #"\363\276\346\332\221g\313d\371@x\331" #"\235\212\342\343\207{\264\336r\372H\262" #"\227m\325\377\237\203\201\n\272\342\21%" #"\2055\23\32\254`\274\276\312y|\265\277[@B\230\270\271\334b\353\27D\3" #"\24`~'\355k\354e\231\320\221\237" #"\247\346O\242\26\264\376\335l\253\331\321" #"\306-\355\21\263\365v\220\250\365\234\200" #"\255\256\24\301\n\257\265\250\357\231~\234" #"p\270\206*\23g\177\336{?\4X\241\217m\353\350\27\237\16u\362\223u\255" #"\343\275\266\315N\317\203\377<\306\360\262" #"\5+_\250k\256\342\265\261\252\vH\372\373\265n'n\31691\311\16\256\232" #"^sm\357\341\353\337\354\260\6H\350\353q\4\252\335\257ed\2260\6\273\v" #"gV\217\304\22\23Y3\251\32\20o\245\37662 q\340S\5\346\325\36T" #"\322\263\226P\324\322\231\252g\365w!" #"\307\1\320M\256\32\270\246v\363E\5" #"\310\326\364\327\31\324T\340\b\230c\16" #"\373\35)\315\330\310\346QC\244\247\203" #"\4\213\250E\325\353\236\"\335\240'\340\25\221YQ\256i\36\5J\200DA\271" #"\317\314\275l\227\303\334\273\270\267\24\26" #"\34Y\227*\354\26\311\e\350\17\306\261*t\236\215=WJ!\224\344\0\272q" #"4X)+eS\210|N\261\247\210$\215\240Mt\2209\321\372b7\226\242" #"\331u\364\346J&b'\337\34\0243" #"\326\ve\36r\260\265&\220\253\246\365" #"\3504\340\261st\242\207A\2372\334" #"Y\f?\236\230\326\327\242\344\354\367\22" #"\21\320\231iQ]'\32\235\r9\25152\342p=GG\26kQ\323G\25" #"\210\234\rT\4P\344c\r\362\367\247\251\"\352\0;" #"A\254Z\347/h)W*_\374\276\233\301\20\"k\0" ) 500 ( #"\244\305J89\ae\312\206\16\300\200" #"\274\250\202<-\263\234\205\230\334\221\245" #"!s\366-\e\30\v9V\261\337)\346\341\276\253C\v\307n\317s\235\365\231" #"\300\240`\326\24\377\364O\377\210\313\315" #"\206\367\357\337\25}m\207\265\256ko" #"_\335a\2275\261\257\354%\r\342\254" #"\210\372\211fHP\225F\261\354]\34\205\31k\233v\206\310\17\254X\301Yt" #"$\37\364\3653zlF\326\2767\273r\260\330\330\372\232\200`\327x\234uI" #"\304\245A\351\310\36;\232\265#\240\243" #"\327 \257\313\352@\ew\320I\206\353\365F3\234-'\247-\224\351zY\356" #"\5\264F\357\330\272\226;\241\225\246=" #"\3\25\330\225b\356\3\24\307\271J\1\356\36\244Q49\305\341\nX\216?\322" #"\245Y\256\245\344\345(U\247\5\354\307" #"\343\22\273\314\271\34\253\237\244\25M\254" #"G}\254,\27\371}=g\332\252\254T;\36\327\30\177\v\271:?\37\260\221" #"QY~\5\202\216\271N\334,k\31\17\21\37a(\316D\237\3660\276VG" #"}\356\247\b\226\260>\247\265\6%q" #"\342\300\364\221\264\201\321\213l\234l\342" #"!\220\260\177\246\37N0\264fiy" #"\367\305\257^\275\262\251\6\237)\355\210" #"5\252M\252\25\220\307\363\230\330\217\177" #"\215{\16\20\261\347=\306>,\231\253" #"3\266\325\345\242\371\274\370cI\1\b>\215\345\3106\307Z\30550y\26\211" #"\3710Q'\354\217\5\v\306rC\0\35b\377J#_\224\205\204\335\215\214P" #"\375\314s\271\222\325\210/\22\254\312\334" #"YVR\16\335\277\212gV\307\325\326" #"\212\351\310\346\306\353\3\0\21610\305N0k\345\263Z4\30G\200\344\4\35" #"\263M+\251\272\36\357\27S:\310kd\303\27\213Ky\354y\243\226G" #"7W\34P1\223\355W\301~\336{\3\250\217`kP->\3103\267" ) 500 ( #"\nX-\377<\6\350ak+N\252v\344\274\256a\347\353|\344\312\340F\331" #"\303\322s\313z\34540o\304\3445\276F\223^W=\236\243^\221u\5\27" #"\241\300\353\347\221\v\300A\341jt\373" #"Z\207\264\201%\30\0\202\235\b\4\324\205\260\324\375\364tF\36p \253N8" #"6d+\205\326u\346\257\245L\0302\1\235V\317\252\363\310Z\326{\210\205:" #"0\23\260\306\2059&\254\241\v\316H" #"\224T9\214\275\vV\343\b\374\341\327" #"\262\f\307\2`\307\224T\0\253\230\221\31\2128]\221mC\347A\30\254\eW" #"0\325F;\211\257\365\21\360\315Lcg\24\233\300\1'\1YF\273\261\35\240" #"\320{\214\22\n\260e+\23\306\223\260\230W\363OT\246I\230Z\3159\17\r" #"\1g\260Z\3674~\206\277\357\301\340" #"\225\200+d\260\2\354(\263\t\0\20" #"\303\313\343\271q=\200\2617Q\357\e" #"\367[\25n\212\370\276\23\204\254\241\312@\322J\213Y\355\250\a\f\n@l_" #"\341\325*\255wO\207\227\261/0\0\321\330\f\f+0\256{\256\211\255\2031" #"\237\206\212m\246\256\335\373bt\3556\274\306\257-\331\vY>\257w|\356j" #"(\310\345\a7\306\343\323\23^\277~" #"\215\217\37\357W@\343\16\272F\332\271" #"\17\336\230\24\231\2200\204f\200$\353" #"\2353\353\303\236\6\3275\233\365\274\267" #"B\313\371\250*\232\263$(r\241\272" #"F\344\35\330\371\"G\326\20\345\224\255" #"\304\334\306#3\23\367 *\236U\211" #"@\376X\267\37\1\331Y^\355\263\304" #"\354\313)\216m\2153\200\210\347W=" #"\213\21e:\341\243\343\220\v\226)\0\0 \0IDAT\0\202u/\233\\" #"E\260\264\202P\0\351\350\355v$u\2562MU7jm`0}" #"\341f\317\272(\356\240L\326\354\322" #"\211Z\246\341c/\367\335\216\237U\324" ) 500 ( #"\327;\3\35c\273\n\3133\343\224M^\340!\336\253\312(\20v\236\222\r\256" #"\262|^\377`\260\252\335\256:\266\3446\300 l\370\274\370k\274t%\200D" #"/\201b<B\16\314\215\35\353\373\343" #"\357\323\353\216c\277c\277\252\276\324\240" #";\375\206\263\363\215\243\276\24\271^(" #"\314=\225\353\210\317\314z\305(\341\261" #"\333\2032aH\254\3\260]\f\0]\335\276\230l\256\340\325F\2\36\331\305s" #"PFd5\222\323\3452f\320\377\327" #"\0\237\b\16\353\23\275'\252\21h\257" #"\353\0`v\241\254\313\341\36C\246\235" #"\341\364\231\31\210\3\6\"2!\17\214" #"\202\324!\266\177\365D\265\4\252\260\22" #"\256\306\253\1\377\34HT\360\231\366\310" #"u \323\353\1\234\253\234\304\332\21\262" #"\214`\356\213\f\252\372V\365\200\331\246" #"\24\4y6\347\310\263\2j\23\36#2)\6\344\0023U=\232s:\331X" #"\347\n\373{\300\313\203\324\203\17\266\276" #"\215N\316|\303\266'&=\330\365\316" #"\203\374.\300\352\367\252\213\344\213\2112" #"\2667uM\304K\16V\3159`\4\323\331f\5\316\f\275\257\262\25\177\253\300" #"\276\256\373\nD*)\270\30{\0166p\316Y\30'\233{j\200\306i\364y" #"d7\253P\304bS\32&\344\34\275" #"\251\326\270\"j\212<\307\16\365\363\274" #"\23\204\3145\263\260y\355dD\332\255" #"o\317\230:;\347},\247\305\236*" #"\245\305X\315\261\373\202\a\v\253\311\212" #"\234Y\243*|\v\260\22\270\301\376\261\217\1\e3\353o\303\b(E\247\3642" #"\0\365k\30\355Z\347<ef\315\360" #"\201\366g\366\243uc|\231\346\320\200" #"\32e\345\6\27C\0161\6\30n\234" #"\315`\254\224U\0\227\20\214\n\22\252" #"\301\262\32\30Iv\275>o\35\313\3323\5D8\226K" #"\264\223sJ\246\340$+u\22@<V\211\303\363\322\3\327" ) 500 ( #"\303C\243O\244\263\202\251\266k\2356X.\360\20\21X-M\26\16\3750\252" #"\254\202',\303\325z[\363/\311\306" #"\224\300\217\30&4\2602D\255\304\200\300\205!0e\v\26\263\265#0\210`" #"I\274\276\274\365\226\354\230\351\342s\347" #"(\23P!L\237\225k\343\217\272}" #"\256X\255e\310\334\201\355\240\322p\344" #"\230\261\32\221\b\326~\357'?\201\210" #"\3407\277\371\347\\\337\330\203x0s" #"\26\367g\231\204\330\224\207\326\302\360\231" #"\374\330\f\323\30\261\247~\202\26\e\230" #"+eB\246w-\345\34\252k\372\212\204\214\227\264(Y\246c\310\261<'\230" #"d\323A;\3469\234k\353\313\231V" #"\243\251\36\24\305\361\336\207\277iM\361" #"i\t8\216e[\2659r\261@\200\315?\226\4xU\307\23\230\370y\363\242" #"\212}\177\2!\2621\253\257\1\\l" #"\255Z\tG\260\311\301\220\237\367)\1" #"\277j\36\300\343\310\n\355\4\312\363z" #"\264\2006\r\240/\aYL\273\250\301\b\272\354\222\230\374%W\362\274^1R" #"\245\347=\263\347YI\223\352\221U\215" #"\365\n\347v\226\355jK\316Y\241x\2165K\233\316\316!\210\3066\356g\26" #"L\363\244\317\370\354\372/&VT\366" #"\323\34\272@\341\215\2259]`\201\3359W\275a\36593k$5'R\204" #"\17\213\322\246X\234\0\315\317\3\260\305" #"\344\252\203c\366\254\200\202p\331^\240" #";\343w\266\363\261f\225\274J`\356\266*\347\21\373^\2537/\245\177?\5" #"X\6r\255q{N\365\257\0\\\27j\177O\375Z\3\202\372\273\27066e" #"\266\275P\273.\206\225l\3249\345Q" #"\26\24ku\360\251\tB\275\354o\256" #"\354q\332\6\30\341\24\243\353\324e\223\32\243\371|\367Z\352h=\21\307" #"F\347\205a\214y\326\2\272U\27\0314\274\214N\261\354]\214\375\362H'" ) 500 ( #"\361\223\305\265\232\327h\366{\0342\4u_\237|\f\342\312rD}:\340\335" #"\366\26\244{\360kY\325\206\210\27\226" #"\275\265\327V{\230{\216\360\315\212(" #"\351\264\277-;\27\262a:c\357\27\357Q\261H\335\363\370}\4aa\313\252" #"\314\307\337\266m\263\261\245\264|g\354" #"\245\331\f\233\240\262\210\215XT_\250" #"\0\b\221\326\250\314\347\271\303\234\310\32" #"\241\310\225BD\22\251s\363\201\337\0" #"b\246\254\325\325u0Z\326\346D\23T\275\361\316\315\0\357\234\26&z\n\"" #"\36v\"L9\201\245 \373\241\323\205" #"\220V\35\216\263h\244\300\315v1\266" #"\16\205\321\220c\375R\24\217\327\367M" #"\340*+\372\334\374l\367x\257\32\0" #"\234\201e0\337\261\371\0\16\235\352\361" #"\272\372\231\255E\3\307q\302A\215\200" #"#\342\244H\27x\304\31\317\215\372\254p\2201\371\1\34ABC\3530\326\232" #"}\246o1\276\225\58\324W\373\236\307u\237\257?\344$S\ve\215L\260" #"\25\252\214\336/hm[\345 \261\237" #"\274\"\373hZ\320\271R\326\246\267\301" #"\270\250\e@\253!\4/\231\236\316H\204\374\34\331\250\222:-\316 \35@:" #"c\253\333\264\343\27\335@\32\355e`" #"\242\312\207\aI\313\30`\351\26\226\23" #"\257c\256@\344\321\360\252c\256\351\31u \37\v\36uO\226\n^'\304U" #"0P\367\37~Eg\260g\272?3\375\376\313_\376\22OOO\a\235O9" #"\4\220\365\226\342\351B\316\4\273\337\227" #"g3X`\236(@\21\347\3673\231" #"\26\3\2\216\216\16\314\216\210`\226\331" #"\322\31\254\2155\352\255\6~\266\317\16" #"\314\20F:\26\36\331\300p\336w\v\356\27#P\377n_\327\21\346L\f\231" #"\234\373O\264\236_\1\30\0g>\315\21\204C\260\1" #"\3513e\320f\235\vZ\3\372\306\t*\210\214e\264T" ) 500 ( #"l^6\210L\266\251\330\37\24\231\252" #"\365\206\351\30\362\250m\233?\34e&\347\347q\1q\347I\f5\260\2145\357" #"\334\20\27\230v\217V\346\3448\322\350\bp\23t \364\303G\22\225r\205$" #"N\250\224\251\225\353:\277_\5\203\25\344\0Ap\b\224&@\342\240k$3" #"\230kI\353\332*\1R\201sm\266\215\254\\\357\r1\n\20\f\20\207}\215" #"\3627\5\225\fG\0\177\311\317o\340\302<\201\2504Tj\356\301\31l$p" #"\366\362\263\bh,H\224$\250\252.\3275c:\226\351,\35\367=\323\310\2" #"\332\210\260(\2273S\254'\e\1\330" #"\201I\336\307\302\306\2521\1S\256v" #"\200H\t\20\16\365\330'\306\263\352u" #"\265\317i\217\36593Z\355\344\371Q" #"\177\227\266\221)f\253\202\352K\324z\35\2PF\231\217\324\32R\215:Sg" #">i}\306\1\300\25\371\231\"\26\214\4\323\3546\177\212d\371\233\272?!," #"\202\253\273\\T\37\23\300\262\256W\334" #"\327\315\315\2155P\343h\227\26\6A" #"\312a\305M\373\276'\303m2\327\362" #"\353\"$(\203\215\220\335\265\366\236\325" #"\301\322\337\32`\210 \365e\333\266\f" #"\352\352\36\231\\\330\t\231\347 \254\342" #"\206\270\2161\6H$\337E\313}\356" #"\373\314`\253\3308\316\247\312\30\331\25\36G\32V\260FXL\\\0\2504@" #"@\236nF\256\254\255S\2\230p\204" #"\6\202\35\24\267\6\360rp\232\351\237" #"\305\f\4\323\\\353V*\220\212\205\212" #"\177\241\260S\2426G\375\224\17\323\274" #"\353\3303\215Z\25,\36\261\361\2553\352\251b\304f\224jJD\364X\244\36" #"\327\323\312\332UCY\3272\256?\24\277F\274\21p\210\2474\3165h\347\272" #"\34\2443eg\26\304\207\224\257\243>\355\263\3p" #"\30\203\21@\tD\351\300s=\375\375\253a\265\352\210" ) 500 ( #"\2431\212\b6\366\236\231\323\321\31{" #"\336\315IS\3S\367\277EI\314\204\225F\3144\260\351\244\374\376{^{q" #":\22\314\254\327i\3i0\332f\35\310\6\26,\372O\226\22G\6\314R\305" #"6Z.S\262Z\243dg\262\367\1\205df\"\330>\225U<_\3\20\3" #"\327\316\332b9\223p\340\1\260\f\274" #"\331\35\310T\314\251P:6\346\205\334T\331^\21\2573\210'\347\37k_\3" #"\220\317\311y<\347\267\277\375-T\25o\337\276=tcW\231\16\260j\201]" #"8\264\320\357\32D\20\"\325k\367\215\303WK>XZ\231\v\333A\275\1>" #"\21\303z\354\216 #\300T\r\210\353" #"\275\230]\211\272\272\25\25(\326\274\336" #"\n\334H9\3\250\332\254S\3\26U" #"\265\23\352\310S\250^\345\306\314>\351" #"\345\30L\234\331\267\30\277f\245TT\246\235X\26\0J\266.^j!c\372" #"\374\330`\325\34\313\372Q\277\312\6\276" #"\243\366\360,\37@\330\206\310\366\300g" #"\370\236\352\340e\351\267\221\24z\320\363" #"j\217\342\244\312\260\201\275\367r\222d|.e\323L-\2310\333t\224\317\n" #"^Z3\366\277\316\362\254Y\272\263\34" #"\236\35w\254\371\347\0n4\302\3114" #"\260\3060\373\265\352\26W\303\17\27\e" #"\363\271\264|\365/\353\232\340\373\347\301" #"\246\30#\256\242\6r\3759cX}\213\224\240 \16\252Y\177w}\24\253\31" #"\26 \301P\275\226\232i\t\206=J\374@\310r\2061\247\35#<'\336\276" #"}\233\367\361\351\323';\231P\255\247\305|\241\5:C\346\201L2\335\261`" #"z\314\211!Vv3\247\202PY\342\bt\235\241N\373j`)\200i\275\a" #"`\365\342\4\230?\3\252s\240\1\300\17BX\372\37\177g\346\264\211" #"5`\256\357[\3553\200\25\234\225\323\t\247L\v\276EmZ\1V" ) 500 ( #"y\26{f.h\214\t\311\246\330s3\2505\177\311\201q>\374=\262\321D" #"\350\316\3023\255\3118\rVb\30z\31\30\310\326\216\260m7\3318\366\234Y" #"_Ai\330:\233\236\263\246I\1H?\274F\207\t\20\31L\31\207\367\215}" #"\353>\22\262\365E@e\206\311\3svr\316l\300\n|\314\356S\311r\304" #">\256 \275\265\355,\202\317|V\374" #"\316\366\244\34\263|\260/\3539)k\226Bg\334\334\334\330F\212\17\356&;" #"\372\256:\233\352h\252a8\247\352\253" #"\22\210\314\305*\225E\v\266\317\312\23" #"\214Q\220\353X\216\37\336!\336V\235" #"\360Y\370C\331\303ig\367\2417\362" #"p[\3\377\355\20\6\217\24\261\30\2358\372\360\234\n`?\331%\217-\6%" #"\243\0353d\247\30\233\26\202\e\377\342" #"\360\200\330\300z\377\225!\255\2579DMDh=\346\316}\246\vXVm\264" #"\31N\a^\16\220\e\263\235\224\206\225v\214\r\267}Th\214h\201\344\2116" #"\25\300\306p\376\3\250\365\224\321\231E" #"?;\2030:\21\331\333\246\30\t\204" #"I\6\262\325\347\213\372\301\0266\21\242" #"D\373\ng*\324\300\217\330|Vs\22\356(\231\355\210Y\337\37r9YM" #"\201KV{\363\222\230\"\237D\224F" #"\333!\f\340\354\263\375\335\307\311\261\a" #"\4~D\263\322LG]u\240\32\264" #"\306\r\352\362\177\326\213\356\207\235\204\343" #"\244\224J\366\362\313c\335X\235.P" #"\243\335\250\265\212{\256)\234\0\ng" #"\343\237\237Y\"\343_\377\372\327\270\273" #"\273\303\337\375\335\337=\3\20\a]\223h\332\362t\264j\326$GD\35\3453" #"\275mf|\262\323\327\326\224[C\214\360\2;\20\362\354\17\324&`D\272\22" #"0\306'\216\210\255\351\311\2523\213\3310\243\235\223" #"O<\250\253\2000J\227\246N\304AT\321\300\23\314" ) 500 ( #"\\\225!\244k\363F)\37\331\20\301\335b\351\226n\267F\316h/&]\374" #" \17&oP\243\305\234\b\334)\224\216\346`Wb\"\0\261B\305j\356\203" #"\5\257\16}\275&,/\240\230YW\277\330\25I\266\271\332\24\24B\"\352\"" #"m}\227<EZ]\246`\2165\373\233\231\254j\220\"\235i\301#\224A\332" #"mL\236Z\215;\322\t- \e2\36\377\252O\251v\345\314\366U\340R\301" #"\3649\20G\3506\202\311Z\340\271\372" #"\256\32\260\306z\326\317\255\301\22\20{" #"o\265\362+\2701?\303\215\213\334\257" #"\246af\316\203&b\374\326\"A\30\32Y3\5\"\220:\a\254q_\335\231" #"E\235\352\354\243$h&b\274\270\273" #"10=\257\340F\370\253\277\372+\374" #"\343?\376#\206\214\324\203\bL\0321" #"\30\307\206j\233\35n\367\242\356\363@\212\251Q\336\267d/jw5K@`" #"\301*/\275\250D@\370\337\220\330\370\3331\213\265\326\374,\23u-B_\25" #"\307Qy\237{\237\32,\0Xc/\t\330<;\35\263\244#ZQh\226\2" #"\1\300u\277\332{A\261\347\330\304r" #"}>\21\201\230\222\300\211\0006\256\225" #"\b\240f\307\257k9\a\200\231\3753\v\vOd\323{R\306\216\373\27\217\234" #"\366P\3660\254A\357\213\240\\:\264" #"\376\231\336E`\265\262\271Q\202g\347" #"\f\254\31\341\325\317\30\366\260\t\17\373" #"\260\371\371`\202\22ax\3039\267\346%v\v?\330\254\375 $\274\344Jf" #"\366p\324\340'A<Q\361\177\213\244\b{h{\261\262\375\305&\330\\\2649" #"\3558\326\214\30ef\352v\316\231\205" #"\343\373g\230\312\312\4\306\337rz\302" #"g\204\267\n\205-V\303\0346\314\331e\356\320\204F\4\37\35\262\214" #"Y5\212\265\206\313\234\273\tY4pp#GY+B&2\32\375" ) 500 ( #"pDoy\304\221\212Uq\3229\233\354\34\200l\\\303!\n\325\343\372\324\365" #":+\360R\200S\324\302\307\310\255\256" #"}\254\215`\370\201\0\356P\35(\2061^\306h\335\343\234r8-\255\32\20" #"sv\253\3267#^\350\341(\310\370W;V\317\21\246\212\247\233\3420\203X" #">\362\b\220\b\227m3\206v\256\224\36\371IC\342M.\331q\31\302\334V" #"=+`\301M\224\313\304\347W\347\27\365<\3617\213\210a\300\22bu\274>" #"\3533\352\211U\25\333v\223\247\4A,ze,Y\254F\2672\257\226\3362" #"&\240\352B(q\254k\357\335\273P\207\317k^i\3140$g\303\36\2X" #"\1V\310\210\210\34\216\373]\306h\311" #"fm\366PU|\371\243/\361\323\237" #"\376\24\367\316\370T\2319\32\213R\363\247jeG\352\2453\n+1R\200`" #"N\262\267\356)\377c\255\234\314i\2060\234\21\24c_#\320\2Z\332\377#" #"\240<\326)\206\216H\261\23\306\232\341" #"\264'\2379LF\325;\202\243\224@l\252Eg\223SX\232\e$h\235 " #":|\332\227;p\265t\344^\352\313" #"+\210\6\235k\352\203\305\360\367u\240" #"\272\36\2342\277\300:{\366\340\270\a\237\v,\317:g\rq\260\21\211Zk" #"M\313\234\331p\234\256\2075\205K\260" #"\321lI\320\27{\223\317!\202L\313*L\365\375\204e&lV\252)\371t" #"`\236\372*\342\301\2\225C\16\226," #"\204~\230\274}\36\304\327\277\325u\251" #"\353Q\345\304N\367\362\203aN\214m\225\361\232aKYAe\215CZ\6\266" #"\316`\322\264g\252&k\221\301T\205" #"\217\255\363\243\350K\255\341\362W\307i" #"\22\221\ei\315\374L\214 \254\272[m\316p\35\214\254l\354'" #"\24\270l\335\1\275\2155\273\\6|\367\335w\270yq\v\320\312\310" ) 500 ( #"\21692]\216\0230\4\23\372\326\241" #"s\235\200'\252\245\354\301X^S\251" #"\341\353\263\3644\30\313*;g\306\321" #"W/\367\276\332\350\352\267\352\376\327\275" #"\16\271\16\337^e\264fI\253\214\325k\360\217\aD1\366\221\23^\324Y\312" #"\0\2361\337\27\260\322\311\4Z\5l\30656\17\n\241\352\244\0\331\330CY" #"\345\202q\372\36\221\213\20\t\250)\242" #"t\2552\262D5\350\242\34\335Z\327#\355~Y\273\b(\1\24\206Z\263\\" #"\2445\2Q%4V\366\307\210=\365`*J&\360\f\313\5\236\21\365\311\37" #"\205\360a\330A]\204(\217\261\367\257" #"\301e\213\203\207$t\3438\335\"\336" #"+N\236\353d\243\311\"\2636\347\304" #"\346\177k\264Jl\342\265i\367\"\"\257\213\6\0\35a\34<Z\22\311\271\257" #"\323\27?\25\364\344T\253\243\6\216\207" #"6\34\242)\27\4;\e\336\216t;\260c\32\321\264\235\275\35i\260\252\0245" #"\262\250\0\332\336\337\0`\235\257Z\205" #"\375\240\324\21y\235\256\257>\27@F5T\rT\271\236Z?\\\307a\324\257" #"gf\"\330\301s7z\200\320j\334" #"Z\246Z\302\231\257\275\e\303\30\34\305" #"\363\232\315\312\352\325=\251\206\245\2\253" #"9\6\274\2v\0353\352 \242\326n\327u\215\347\3065\303\0315\200\214u>" #"\357\275\277\306\6\232G\32\313\235\200\16" #"s\232J\340\3363\232\216\243%\t\344" #"\214\264\245\234\fLk\256\2738\250\346" #"\255\201\3744\267\312R\232\21\3\210\215" #"e\2134]\326y\206\241\200\346q\261" #"\342\343\222\246O\27\201;\277c\364\34" #"\223&$\r\306!\370)\367\37\262\300l\201X\226q\3408;\372\314J\330\353" #"#\252>6$\324\246\307j\360\316\2407d\315\312lv\374\376\357\377>" #"\336\275{w`J\343\372R\2771\234a'\253^\210\367\216Z\351x\20@" ) 500 ( #"q\240\201\2\334\216e;5\"\267{\1\372\326\374\bW\3F\22\3510D\375" #"\340\21\360\34\3\263hx4[\2410\200j\240a\225%\304\375D\2125\316\220" #"\217\211\26\207\322\235\252\327 \237\236\301" #"\207\367\n\303^\3\27\3\362v\343\207" #"\372x\265\354\201\5\177\5\30E\352\227\3q\2S\234(\240f,\277?\352g" #"\307#\2\355j/\342\36\352\274l\30513t\264ENND\320\0\257\373$" #"\305\304\264\322/.\237\357\0/\234&" #"\324\246\204\230\343\356!\340\31\4\205\354" #"Y9\201\255\205e\252\220c\203\252\314" #"\236\t\221\363\343\234\341\212\357\353\277u" #"o\326\210\26\31\252*;\21\234\304s\343Qk-k\200`Q\261\0su\335" #"\257\t6v\304s\274?\223\1\325C" #"\340U\344\252\356\225\253\t\304\375\e\310" #"\354Z\34\222R\355\177\275\277\306\353d" #"\306X\27-\351r&\366\240\227\361\341" #"\303\a\374\356\273\337\341\325\253W\307\322" #"\22\370\265\26P\237\266\35\4\31\222\a" #"\376\20\31\263\30\353\265|-\245\375\216" #"N}\361R\210\230\231z\0\35\301Z" #"\272.\17\17\200\316\201\3159\260\252 " #"\253f\324\342\363T\216k\332N \364" #"\377\243\353\335\232-\271\2163\261/\327" #"\252\332\373\354}.}\372\nt\3 .\274\31\2AQ\342\214$L\220\26u" #"!-)h\206(\207<T\204\354\260\36<\243\a\317\357\320\v\237\24\241y\320" #"Xa1f8\236\2204r\214=\234\241D\221\224h\200\0232%S\22I\223" #"\"\t\200 \0\202}=\335\347\262/U\265V\372!3\327\312\252\323\332\bD" #"w\237\263w\355\252\265re~\371\345" #"\315\247(\3315\354\236l\317\354\275\266" #"\276\245\257o\256\372\332\376\214:\375" #"\317\313\244}\236t\17\205)\227\263QS\234\22\0\301T" #"\6\275\244\356\2#{\"\344c\v\245T\313}\372\261\337" ) 500 ( #"~M%Jh]\256\312\312\211#\247\216\213\310Z%\217\4d\32\271$\366L" #"\340\220\310\272\1_\301'\325\261\267=" #"\21\261&\314f;\260\342\343bc\264\1\1\2238EvoBJHQ&[" #"\204\26\2\362s\2368[n=\255@\322pV\331\313b\3-\345Jm\271:" #"\0061j\334\330\f\211\t-3\3\261\346\33441\226$\347\332\232\3#a1" #"A\362^\326\24\4YN\234?\300A[e\330H\322\2\262X@\212?\220\276" #"\367b\2142\321f\350\a\2347\3165" #"\354\346\5}t\210\251\26\214\345\254\255" #"\\\30\345\332v\255\276\357\313\373\231\245" #"\355\221(\224<2\356\376z\0054\306" #"q\310\313\326bJ\311\233\261\234*\20" #"\357\251\1\232\333\230$\304M\320\252{en-o\322\357\211\377\336V+G\375" #"!\262u\251 z2&\22\23c\20+\213R\230R\307\206{`\226\325Cd" #"H\243\352\322>\311\255G\331\223\350\363" #"\375P\300S\260\250\243\32\355\214\32\242" #"\262\3004\b\245\260\261\206\325u\255\341" #"~\347X\365j\350\t)qI\241\261\204\371\224R1\320u\314\252\206hIS" #",\32\35(\201\232\273T\327\23 \342I~z\375\273\255o\365\330\353yI9" #"\235\223g/;\265\363\205\344\272#\v" #"\24\222\234\344\240\0*\227\244\377i\30" #"k\n\210r\226B\306\247\237~\272\0" #"\306\351\373\215\t\343,\355o\344\260\214ey\f\304I\235\0Y\37cj-\205" #"f\n\270\344\177\t\355\307\20\253q\21" #"zB\276'\216{\304\372\342+\317\b\211\243ey\365c\371\256\6H,JJ" #"IGp\237g\v\213NP\3\200\240\3145\205\207\256\245\217jX\241\2357\306" #"0y\340\250N\227u\177\241\242\224U\330a\3263eI\227\261\357\262" #"\236\243^^FN\260\345\342\346,\205,N\336M\257{G!\204\0" ) 500 ( #"\36\224A\rT\f\240\327\223\234\31\1\1<(\270\315J\377:G\0`\1\357" #"Y\231\0376&^\306\276{g\335z\307\0065\2526ak\252\eL\357x\262" #"\304t\243\217X\370\347\261?\275\2214" #"\22\307\23\b^\17L\v\347\354\347\265\316B\ntCDI}2\335\230T\317" #"e\266b\233\0K\35\360,pu6\246L\277O\245\252\35\6rJ\265 \215" #"\250\0\21;\317\5\340{y.\316\eaH\203\344\322\22au\266\2\263\344\337" #"o\266\e,ww\335\271\321t/K/\n\3435 H!\2641\373D5/" #"r\fD\271\350o\271\307\232^\346\31\340\321\377\250\0F\n3\2510\340~\17" #"l?\375\371\362\3\22\36N\2\214A\222]g\30\306\5\257\366{;\363e]" #"\341[\261\261\346\6;\273\r*}\376\247\366\314\356;\204Prts\316\232~" #"\227\v`f\36;uiHe\316\200\227\345\304\256\6\2040:\17v>\354\31" #"\244\253PV?4\300\212\311,\272(\357Q\202\4\22}\230\315f\322-K\235" #"n\31v\4\225\333\bk\207h=\337\213},2\254\221(\36\27I\372\265b" #"7\321\254:Q(N\2CR{\240u01\266\20\333<\216\204\333\347M\337" #"\226k\231\254\301c(\22\"\313\364\300" #"08\260\347\224\214\237\343m\257<9p&D\336\200\231\3475U*v\3y" #"\220\2\207\234\245\v\3i\205\274x\204" #"\306n\324f\346\6\344\252R\205\n\276" #"\0;\337\365\300\24\264=\217W(\366" #"\263\207u:\260<O\0\205\265\364\200" #"\332\3\271r\210T\301\330\317\312\363\271" #"\265\364\a\316~o\207\326\376\234\2\307" #"\351z\331:\232\223\340\25\255\364\255\264" #"|Fz\350\363N\r\301\24\234\330{\373\276\227\246\325.\257\323\f" #"\275\367\222\375\363N\231\352b\370U\221\1\302\250\211\247h^\275\336" ) 500 ( #"\237\216\2\215\215\32a0@\222\257\24" #"H[\345\350\301j,\37\324}\27\250\32\260\221s\0HdTk+\nhq" #"\312\250*?u\212\202z\331\31\0\347" #"\322W\327\344\177\34\245\320\377\23\225b" #"\263!Yq\30@A{\24\252|\372\375\237\202]\277\216E^|\b\316yR" #"^>do\265\323\0R\361\244\201\\\306\331z\303>5\0\301=\237\31\373\257" #"}\375k \6\216ON\312{J\36\270\262\253`\315\1fa\264=\e\350\367" #"\237\324Q\31t:\341\24\b\233\\\227}\1@\220>\247\6\246<\223=>\313" #"\2\250\246\347\205\231\35\3231\316\321\364" #"Q\37\273\210\2545j\27\22\367*\314" #"w\b\225\315\222\204\fT j\371\264\356|\6F\312}i+\346\367X\256;" #"hU\276\346\0k\204@\316\256\220\205vyf\231<d\35b\274\fy\0353" #"Z\203\362}\4DMK\260\226?.\205\301\257-L\16L.\335\376\230\241\227" #"\217'@S:\f\300\1\2650\245\344O\e\e\257\2676\35\203\353S\274\246\304" #"\203\21%\36\304\333\313\313\263=\277\237" #"H5ufl\37\2753\342\331\356\207\275\317\237\221\2427C\335c;3\254\362" #"\35,\177Z\301\255\244\217Q\t\303\246" #"|\336\21\364\2215\177\0371D\355\250\21G\244\213\24u7#\360_\357Y\201" #"\274\1\6\247\333\366\367\367\261\273\273\207" #"\333wnc\263Y\341\366\355\333\230\315" #"\347\330\337\333+v\220s\222t\234`6\37\347t\275\275\2466c\254W\306Q" #"\247\322e\311\201\362@\2\374\262\353+" #"n\317d-E\207\224\n\261\3640\20" #"\353\367\323\257\351to\r\4\332\277\255" #"\26\307\372\370\333Hd\1776\37\3464\25<a\262\1\224\t\243\3663_|9" #"\5\313S\360\313\fu\362\2b9\307@\32\214" #"\205\34G\32$\252#m\35\315\211\265y\1\314\\" ) 500 ( #"R(\310\335\253\334\203\264y3|2\325\31\254:\206lj\231\b\222t\227 " #"\277\367\331\355m.\366\325?'\221\244" #"t\345l\335\220\214\3455\275\301`dt]_\354\211wjs\26V\333\30}" #"\353\333oir\336\201\311)\241\323^" #"\336\266?@M\247\260\310\204\3440\233" #"s\257\216\2730}\343pA\316|\256\212qj\370=\323\350{\310z\301\363\202" #"D$\335\f2\211\267\37\265%E\316Re\350\275\23\363R\345;\325\b\260\25" #"}\251\241\e\30\24\244\260e\312\332z" #"%\351\275\217\30\343\250\331\270\205w\274" #"\220\247\224\304\373\302\230I\363\236\245\275" #"ollY\275\240\207y\205\365\300\371" #"\303\344\31\336i\216\253\277\247QH\a\tC\356\213\307\322w]a\16\31339" #"ee\327\264\276\275SF\241x\330N" #"\240\312\265h\234\32B\\\25\200=\203" #"\377\214\275\2570\27@\351\321,\314H\17\265\255hf6b\27\343k\31\251\5" #"ec\231\321g-Pt\336\354T\t\262h\21\224\346\356\221\1\216\243\365\366F" #"\302\3026\240\332\306\r\224K\312\1\0t\316\201+\240\314\3060O\332k\1@" #"l\240C\4\306mg\274#3\275g/\247r\243\262\307\240\214\20\314\21\30{" #"\264\6PB\b\b\326\303\223-\35\203dL\253\262\16Sp?}\331\357.\\" #"8\304bw\211\335\235E\371\335\30\240" #"\352\204\242\304\210$\341P\331\357X\316k\222\244ka!Ty\332}7\316X" #"\333Y\260}4\340d\5J\245\300\0cGK\0\e\352w:\300\340\377m\262" #"\356\327\333\203'\231\314\250\351\26\231\317" #"\275\317\366\314\34\217\32!2\200\307%" #"\0176#\225\326U\230\30\340\251s\342\365\201U%K\333EB\23\345<k\342" #"\fB\0\212\325q\373>R\374*W\306\376\245" #"\\'\"q\22191B!\236\327)\36\340\2454" ) 500 ( #"M\a\20\307\t\0\230\254\310\311\1\320" #"\262\206\223N8\262\230\0\327T\22\37" #"f\265\227gk\274\303\177\316\271G\325" #"k\323\347\367:\315\357\231\267;^\306" #"\275\323\353\231\303j\267\304\351\365\241}\"'?\272,\222b\240g=\243D(" #"I\23\31X\32\333\242\321\34\344i\364" #"\314\313\233M)d=\253\203\246q\231" #"\323\3610\300W\316\246\16Y\1\217u" #"\212\255\335\311\311\211\24\2313\341+_" #"\371\n\366\366\367\252\16-\354\26099(\21<\257\227\374\31\235\352.[S[" #"\373\261\343\345:\17\1\2455\240\r3" #"\260u\361\347$6\261\244\250\325b\320" #"Jf\30\260+\317\317\265m\237\277\26" #"\2210\225\336\246W\0205\6\264S\0\355\235p{\266\250C\25\240\203F2U" #"\207\300\333\357)N\360\230\b0\32\257" #"\202\321\30ZD\2221\357\245\307\263\303" #"\2\306\360CS\303<\276\31a\235s" #"\362.\275\315\341|d\217\315\254\277\354" #"\240]7\304\216\311\371n\\\324H\236'\240vH\200vs\342\221\216Mi\0" #"\24cH\361\277\244\5\262\316P\0\241" #"\24c\372\3637>\343\6\220\215\303\2525D\266\316 )`\267z.K\245\r" #"\321\265A\3k*\221\351?M5\261P\250\17\213\30 4\357\312\26\335\16\354" #"\324P\373\303\341\275\a\277\310\36\300\246" #"\234\224\365\23\300\2339\217\322\22\252\2" #"f\310e\274\247%\6\335\230\4\17\36" #"\375\201\213\356\341\275\267\345\357\3\f'" #"\374J'\351\253\241p\356\31\210j\22" #"\177\214\315\271\242\236\276\357\225\215\321\r" #"\314\22\222 F\31\345\347\357qd &\0\325+\r\257,\305s\t\272&u" #"4\236_?o\330\315\313\202;\274\376\271\374\36B\227\272(\31g|23\372" #"\324\217\326z\372\331\351\265\301\\\16\241\201%P\256y\323" #"AZB\21\211\211\20\202Ks\225\214-\267K\345\372\275" ) 500 ( #"\323<\346r\30D\272\344sY\376\356\327\255\204Uh\312p\2222).\224\311" #"2\206\330\177N@p\4\301{\232T\326-%\313#\217 \262\312e\t\3117" #":)\315\" \266G>t:b\246\231a\25\335F\3631k\312\0063\32U" #"\2026Q*%c]\25\300\351\332\331\376y\303akf\205\177\3030`\177o" #"\17M\23q\341\322\305\302\354\217\r\32" #"\0\235\326e^\272\20\340\271(\241\302n@\226\205Buz\2472\357\201\213\f" #"\360\260t\240\240!L\eLR\235\2744Tv\241\354y\36\263\247\36dV\275" #"\304j\304E\3612\t\363\310\201JG\a[\177\257+\314\231M9\303b\24\305" #"\220e\t\331K;\331\261\34\372sl\371cS\203j:\326\236\337\212\245\204y" #"\r\252\355\251\244\vU}8\231(\246gl\364\235\\\35!9\203\31C\237F" #"F\324\356\241\254\31 \23\303\262\256\227" #"1\217\252?\202+x\222g\31\20\32\315[\a\3343rY+\21\203\32\35\360" #"\223'\247\306\332~\346\277\303?\217\335" #"\257\311\246}.\2513\352A\306\364\377)\e\351\2579\6\334\28A\222W^" #"\35H\253\b\227\342Xh4\215\224\365" #"\227\365\226\377\v\323G\315\250\375\244_" #"{/\257\2618m\372\276X\1\24\334" #"\375\226\365\364\272\335\b\201P\363F\245" #"\342\\j9\26\3139\254`\354\344\370\f\227/_\306v\273\25\271\v\342\250%" #"\255\217\221Q\315\343Z\27\17\b\375\237" #"\366]\323g\e\333Z\27\21\320T\25" #"\221\247J.\235\333\357\224\v\240+\321$\a>G\375rI\333=\346\352$\370" #"\373\362\316\212\17\247\3\30\245\0\331g" #"<\246\361\266\330d\331\347\352\6\267%" #"\243i\252N\236f\263Y\335G\367\35\0cPv\263\324\222\270\363" #"`\357\37\247f\t\0\264\246\0S\235:\335/\221\1\251y0\347," ) 500 ( #"\200\264\367\357 gw\304\312\352\263\a" #"\224\363d\367`\353e\357\213M\34a" #"\4\37\375j\32\371\37\250\5j\222\306\204RL\354\377\37\23\224f_1\372~" #"\357$zg\"\2474\232\27\220\263\25" #"\a\223\312\262\16k*\271\364\223\2277" #"p\265\272p\334\260\273\30\312lS\227" #"\214\t\261\223\207\262\271\311\205#\354\v" #"\233\330 A'\34\351.\326\212e\301" #"\344\262\211\343\320\207\364.\255yWD\347\5b*0\336\333\32\3\342*P1" #"6\0\264\311u\250\351\346\"\256\366\0\0 \0IDAT\a\230\0h\257\230" #"\207\241\327|I*\233\3234\21!\212\222\3119#\261\364\201\25\240X?/^" #"vU\270\306\270\372\20\310\364{\355\275" #"S\217Z\276\267&\247\233\362)\300B" #"[\372\0\4\316\2044\324\224\24\3579" #"\226F\316T\277sH\265\325\207\215s\364\251\2S\303\341Yn\357\255\371Ca" #"{4b\235\265w*S\6\221\205\374" #"\255@\214\212\214Ms\266\246\207\334\27" #"\37\370\265\360\262a\271\303\323u\264\34Q\357\f\1u\204q\b\241\fj`T" #"\343^\366\207\354\271*\0&\2224\234HA\247\352\311:D\n#y\262\357\e" #"\27\21108\313\237\362\214\232\a\254\a8a\320q\267\326\347QB\335\31@V" #"\303\311\201F\327\265\347\261\375)-\275" #"\202\24h\235\236\256\4\354\24\271\254S\220lr\226\0/q*\2\t\233U\306" #"u\363y\206\207\271*\373\207\311\263|F\243\31fXY\323\230\248Y\352\204" #"\344\312\312\257$\235 B&\260)@\311ASyHC\313\322\214\237\b\340\4" #"p\16HCe!c\214\205\5\365k\343\345\305\236i\260\212z\5\360Y\273\226" #"\0002\316\322\316\321(\207\22\320\236" #"\263\347\r\236\a\345\366\335\3229\4\232\32\242\255\343" #"\35493i~~\3p\5\v\236\201\362\353\16\225\345" ) 500 ( #"\20\245\237\2541\335\376;\375\371\30\e" #"w\200\265x\316\2371{\237\254\215\235" #"\337\\@\236\350c\321\323S\320\340\365" #"\360\303\326\343a9\264c\31\221\3573" #"\226\320\366\307\272\1\3715\267\337=\354" #"\373\274q\365\317#\327\20\303(\214\277" #"t\311\360\353[\0M\6\b\322\325\300" #"\212\240\210e\235\215\261\363 p\364g" #"\364\354sV\347Qlg\316Y\323\241" #"\306\240\262:\27\343\276\335!\4p\322" #"\216'\224q\353\326M\234\234\336\a\205" #"\214m\267\301b\261\0\203qvv\6\200p\260\277_\356\255\310!\31\1/T" #"\365\264K\211\275o\n\322\375\337M\246" #"l\255\254\200\223\364y\345\367no\240" #"\366\\\3637\263\222Avo\276\16\303" #"\"\203\326&T\376\257\27bT\31\233" #"\202\347Q\24\347!r\342\355\220\275\347" #"a\272r\372\234\336\316\31\361\345\345\326" #"\223\n\3669\277F\261\234\241\261\314\372" #"\357\260}.\271\250\312w\364yP\22g\354\204\214m\35#gM\37U\247U" #"\260\0\20\320 6m\221\237i\24\344a\240\3357\21\260\302c\17\262AT\366" #"G\256e\3217\36\245?N\237\313\316\225\377\273O{5\eo/\231(GZ" #"\310\226e\"\253\335\267\1w\242\242\233" #",\242\245\317Z=\201\256\223\376p\302" #"\310\20\262\36\334\234\253g\343\25]\214" #"3\0\1\322\354\34\310Y\362#b\234" #"\215\220\273\27,\220\30\v\357\341\330\304" #"\223\256\357u\336\267\25xT\317#k" #"\230\257x_\316\255\362^\273\317\353\230" #"~\277W>\201\244\365M\312\319\r\3109!\3471\313F\250\371WSa0" #"\357\271\357\373\"\370Y\333+\201\205\351" #"(\23\313\224\342\2121Jo_\347\231" #"N\275*\177`\375\357\274\1\235\36\330)S\347\2058s\rg\202l|k\365" #"\226\254\b\320\276\207\31\205y\34\255\247s" #"^<H\363]\26\232\246)\336\237W\250" ) 500 ( #"\36\364\332\357\232\246\221\264\206\234J\241" #"Z\b\241\344\367\311\376Z\256\253\vK" #"\352}\372\360\266g\314\374\232L\201\260}66\325\303\367J(\306X\0\2227" #"\324^\316\310\e\206\362<\306\334)`" #"A=\240\314\225\345\251\373Z\201\270\277" #"\217\252t\245\0 D\r=\263\317\1\23\217\2353\1\24\220a\fG@\312P" #"p*\0052&!m[\253\362m?C\b\322\3071gt\233\1W\256\\\303" #"\311\361)^\177\375M4\2151\36\322" #"\27\263\214+\325\365a\206\24\36!\350" #"\210\357\332\t\304\376\224\3751\340hQ" #"\5\234\223[\371w\r\341\3,\23\3502#\365\2\370\244O\264\216\251dik" #"\5\4\231\352F\326\263U\e\356's24O\215\5(\206\330(\b\213\362y" #"\326b4&'+\21\254\343\234EI\233|\324\20\341\220\5\272R\264\231\367\\" #"F\230\233r\256:\212JT\2400\220\316q\362\347\265\32p.\347\320:%\330" #"\331\b\221\221Y\332\320\371j\373iA" #"\250l\201\216b\316>\f9\256'\260\367{0W@\35\0302\355J\300\3044" #"4<\0067VL(\31\2722e\361|o\\\333s\357\20xG\317\eB\257" #"k\375\317\255%\344\364|\332\337\275>2=+g\306E_P\317\257\a\343\326" #"GY>_u\364(eo\22\371+\272U#\204e?1N\271)2\246\267" #"\21\"J^\363\220z\351\273\e\251\264" #"a\363\304\300\324\1\360gH\2028\262" #"\376\177\370\207\177\200\337\376\355\337\306g" #">\363\31,\26\v\204\20\260X,\360\322\227_\302\331\331)\256\\\275Zm<" #"W\207?\263\346\320\222\25\325\215Yw" #"\177V\255p\327\257\241\375\276\350\321&" #"\2\224\245\337\256\266\313c\250\23g:AA\220\355%P\331Q\353\335" #"\312\220I\212\306\30\312\375d\5y\316\306\273\216:\320kz\260\3441" ) 500 ( #"\201\311w-6\34\27V\e\271'DW\225\277)X3\271\366v\332~?u" #"\306\354z\305\351\213\261\344]{\307\313" #"\313\263]\263\200f[[\212\22U\230`\22{\215\1\377\30\3\231n\16xx" #"\272\211\227S\263\347Sy#\6B\214" #"\245\353\201E\357\314\356{=\23\224\4" #"\361\235W|\6\201_\327s\16\241;\313v\257SG\304c\327i\376\3579\207" #"z\244l\25\235\367}\217\234\355\300\3" #"\24\232\22\36\e\322\200\276\e\3640&" #"\355\177\232\352\304\31jAa\234\223\344" #"\31U\257\230\242\313\263\340P\17~\326" #"\244|\333d\373La\354\250n\314\324Xx\59\335H[\320b<J?@" #"\23\2044\332\f(\350\267\203\3358\345" #",\357\257i\22\6\332\207\276\a\230\321" #"\206Fs\32\265p\307\31{\273?\3\310}\337\343\316\235;\330l6em\246" #"\e\346\205\300O\245\263g\364@rj\314\246\aH\214\255(\2544\0M\323*" #";(\353\327\320\f9i\16\32\270*" #"\32\240\364S\264\375\360\353\357s`\215" #"\305\367,DI\2367\303\305\\\326ct\337$\312>\rr0}\256\16\262[" #"K\214s\245\375!\365\306\264\254g\316" #"#o\324\257u\5\233\215\262\2274:" #"\350\2&\305\2005\261\31\35\244\234\241" #"\214\26\237;\304\200)\a5\222\252\31\314\240x\320\340\35()>4\206)\242" #"D1BP#!r\e\f\24\31\250\323\242\316&\326h\214\200\2771\223D\220" #"\6\376!\310@\206Y\333\2$!\267\30\254\27a\220^\251\31\210T\373m\23" #"\202\344\250\202\221\263\366C\315\200\210\272" #"t\4\311\312\240\226<\323Pe\311^&\213\6\316$t,\300W~\0374\272" #"\243\354\263>o\323X/_\333[>\347\374\230R/\353\\\316\20\301" #"\342y\254\23\311Bh\324\261\2078\251\31\310\241\251]>\274-1#\250" ) 500 ( #"\216+\0240\370W1\372 \5\"|" #"\316\330\312\265\344\271\313\330\347D\310\331" #"\353-\3353\26f\235\212\344WY\221" #"g\n\243\317\230,\214\365\207\32\4\307" #"\230x'\253\350\261`\35Z\b\201\224\255\322vi\366\31{\376\372\367j\fK" #"~\251\n>\1\305\320Y\365w\0357:f\220\274\236\362g\310\277g\n\262\313" #"\231Q\375\233r/}\217\243\366+U\320\rBu\372\335>\230\343Q\356\205\203" #"\244\1\221\213>0\2113E@\23f\265\247\254gF\271\332/\0200`\232\227" #"k\351\t:\241\r$N\233]C\377\r'Nv\237\323t\247\251\263\301\314X" #",\26x\341\237\274\200\e7n\340\233" #"\337\374&\276\376\215\257\203HH\225\223" #"\223\323\207F\273\4x\v\303\310\220\302" #"a?P`|\377\302\252\206\246N\2762\a\306\327~\210\236\25gx6k\1" #"b\31\216\"\363\276\20K\256\346\30\20\215I\5\351\262b\247*sM\35\n!" #"\24G\327\206\267X\352\220\331\t\37\271" #"\3606\260\220\31\372<\17\253-\252\266" #"3\202I\372\233\333\232y\34b\3573" #"\242\313\357\227}\237\177\231\36\20\326^" #"\247\345\345\252\237\374Y\3606\2550\234" #"\n\350Y\3207\254S\312\364\273\252\243" #"\315\b\256cK];\261\201\255\262\346~m<X4\371\366\30\3130\223\235\213" #"\246iD\377\321\230Q\366\2211_\270" #"\347\237\311\242a\336)\360\362\354\1l" #"\214\21\263\331\354\241N03\227B6" #"\377\35\366\274\5C\332\3\370\"+\333" #"\350\276\357%\34\257\206\324r\325\204\231" #"\324$d\235\256e\225\306)\367\245\240" #"\347a\214\225\277\331a\30$?O%" #"\332\203;\277\331\225M\260\311\31\343\20" #"\234=\303\224\21\360\327\b!\234\17{" #"\31\b\262\274\307\246\301\240\vk\300\210\301\245\3\305\340\230" #"\223\251 \210!3\305;\236\17_C\17\214\206\204\25K" ) 500 ( #"\332,\274i\32t]\2077\337|\23" #"\307\307\307\347\f\"\251\343\2214\327\323" #"\2073|\330\304\257]\271\177\267F\366" #"\314\0254\206\302\"\344AB!\3\367" #"\2Zh\0B\206\16\207\233\274\306\240" #"\331\37\356\351(\325\344C\v\372\335\230\30Y\373\254\a\2379K\332\aHBZ" #">\217uH\203\214\256\314\347+]M\246\274\23\341\201\254?\34~]\354s\0" #"\244r\232\324\b\245\272\317&\303IeP\212\221\30(,\226ocS\363\234|" #"\310\247\241\0s\2538K\257\303\222g" #"\347\200\263\310nV\346Qr\356\312\376" #"\246\214\276\37\300\250)'\26\242\tQ" #"\331V\6\372\241\23G\201\265\272\237\311" #"\1 5\272\31\205=\212!\2405\271" #"\201\30&\260\255\e\241\344\270F\31\252" #" \347\\\252\202S\36\364{+\ei\362\37cD\200\24^\314g\363\322\327S" #"\212/\"\346\363\231\260>\241\0015\246" #"\240\e\310\bQu\f\30\265\23\v\21" #"\332Y[\206\264\330\32O\215\205\375\274F[rYG\"a\243\325N\202\201\342" #"\330[\372J\236t\222\361\327\226\357\25" #"g(\213\335\31\245|\331{\307\251(\25\360\332}\331\370dc\204c\3\330 " #"\5A\334\26\326V\247\20\2\312\305X" #"V\300Y\231\271\311\231'\307\334\232\36" #"r\215\357\275.)k\304\\\372\236\312M\v\263O\320\36\347h@N_O\243" #"(\342\204)\30\341\312z\213o\241Fz\342h\332z\31Y\340m\207\a\323S" #"\347\325\366V\252\255}Ni\320\16\36" #"\312\262*\360\222\274\316\363\255\34=\1" #"\2[Q6\360\23\325\211\r\3404\356" #"\345\352\201\21H\322\0002\t\v\31\365" #"\331k\364\22\30\206\f\233\230\aMW\260\276\340\226Jg/\257[\255\6c\352" #"\234\330\373B\210X\2577\370\300\a>\200\303\303C\\" #"\274p\210\317\376\247\317b\177\177\17\f\306zu\6\0\330" ) 500 ( #"\337\337/5\35\225\2300GPYi\267\316\266?\6&\240\357K9#6u" #"l\263\227\271\30H\372ms*\317d\216sb\301\6\326\1\301;\\#]\316" #"\0%\256\341h\271\23\230#o\16\23\205\fF\305\2\226~7\5\255\336\346\373" #"p\270\311\277_k\231\210&)t2" #"(\210\352\376s\215\356\374C\204\212\255" #"\237\306\267$\312\24\264\377\275\256a\210" #"QsVQ\364\253\335\337\303p\2148" #"\301N\2770W\302\211\\\24\301\331\342" #"\252{j\244\215\231\265\266II\22\214\323:M7\3313\371}\315\212\375$e" #"M\b\230a\30\n\21\350\367q\214\277" #"j\244\303\263\367\366>\217w\274\314y" #"\207\267\312\352xP\230u\314\311\314 " #"\226\232\32\357\214\330+\204\200\306\274\341" #"a\344\225\324P\364\220\23\2\34\250\202\260\vCR\r\17\6S\3000\364h\233" #"\31\206a\34\352\360\214\201W\252\215;" #"(\366\275\26N\267?\375A\227\e\326" #"|\273!#\347\272\241\366\262\3155\17" #"\330\276\333\26\316\367\371\35\31%\0A" #"\233\325[\373\16\n\322?\330@W\304" #"\30$\371\321\256v\377\200\260\2765\224" #"8fcs\316\320\202\\\21\17M\320" #"\337\335\335\305\373\337\377\376r\360<S@$yh\23438\215\333r\360D!" #"\372\\X/x^a\31\340\227Q\216\306\320j\317=hOLc\266X\362\277" #"<Pd5Z\0315,d\200\313\vi\1\a\250\336\260\1_S\334S\266\336" #"\277\317\24W\271\2362\231;\263y\25" #"b\222\\\351`\373\344d\330\16\321v\273\305\3645e\372\3553\362l*W6" #"\265\210\5|\31x%\r\303\331\314\356" #"\321\254\364T\3072f\226~\320M\333" #"\352\264\"\227O\311\2%\31\345\b\235\273\277\312\200\39\17\220|T\371" #"@lD\226\376\366o\377\26\177\3637\177\203\217}\354c\270px(\306\5" ) 500 ( #"\3\362\220\321\306\26\241\t\272\217\f\"" #")\22\223>\330b\224c\323\302\n:(H\305\355v\273E\326\274za\370\0" #"\313\2030Y d0\313\357B\f " #"\216h\346\222\336\222\1\314\2438\311\333" #"\355\26\267n\335\302\17\336z\23o|" #"\377M\314\346s\\\272|\210\v\a\207\345Lhz.\26\213\5.\\\270P\344" #"a6\233I*\214\366T\334l6\330\364[ \23\336<\272\247\275-\201\345r" #"\201\20\b\227/_)\236\177\b\1\333\355v\244S\n\e\246\312\336;\341&\217" #">\5@\34\3020\252\302\367\200P\300" #"\250\230\vI#\251\347\274\234\23\247\324m\357\253\23\24\224)T\307 U0f" #"U\373\322\322\v\202\236\264\243\205\330\215" #"\332b\20\352\330 @B\222$]/" #"\214\0314\26S\256\203\242\227\36\346\20" #"\373\224\n;\233\2\354\324\201\311\300\0" #"\215v\345\f\16\343\24\b\221mi\27$u\n\3H\363\322\231\250\344&z\207" #"p\0245AV\266\372|\233F\317\330\214\231T\311\327\3Q1\372R\370d\271" #"\376\6\"\30ml\245b;\324\347\366\0r\264o,\205\262\222!R\1\206g" #"\377\354\375\345\363\4\5g\241\344\222\213" #"\257f\353]\v\251\254\230\315z\352y" #"\2203\2663\225\354\231\2\252\372\222\177" #"\237\234\234\340\243\37\375(>\375o>" #"\215\371\316\34\177\363\267\177\213\250\323\36" #"\t\300z\275V{Rm\6\333\331&cL\307\351$#b'%$d\327K" #"\277\246u\324\275\2\220\3l`\214\a\227\1\21\231\362\b\30y;W\35e\301" #"\26\336)\201\336\253\aQ\266O~\324\273wZ\3743\230L\e\366\230\326\34U" #"\220h\0161\227N%Bl08K\32\242\335\227\335\307\264\20oH\222\216'" #"\335\32\"\222\356\365\0u$\365\32\244\321\2344)" #"\362\236b\25\223\255\202\215\206\1\24\253n\367\16\275" ) 500 ( #"\235Y\237\352\350\305\305\313z-j\227" #"\327\264[\r\240\355\324 \30D\3106RBE\364\224\fE\31\3276\330\36\244" #"\354:X9\262\3063\342S\22\312\354" #"\266\335\217\377\2718d\3659\202~\227\245\210R\b\b\252\vL>\n)\310," #"\264xl\32l\267[\310\b6k\331\241\r\334Y\36\320\26\\n\\B\6\b" #"\22\326\24\212\272&\364\347\2340\233\315" #"\312\346\330\2\370\a\235\26\vL7{" #"\312\362y\217\305\277O>\247\207\2070" #"\n\363xa\361\327+\327g\333\204\232" #"_\304J\323\f\312\272E\35\343\32\203=\333XIz!B\220\2426S\344>" #"\375B\224\271\bg\fu<2 \371\321~=\314\313&[\e\25\24\e)\253" #"'\356\334\263y\345X\4\302\35|@@D\t\357\4a\233\245\r\30\203\320\227" #"\34V00\327\352Q\257\360b\333\350T\236q^\237=\243\355\373\24p[\21" #"^\316\31\247\247\247\350\272\16\3030`" #"\263\331\214<\343\235\235\35\20\21\336z" #"\353\255\262\206\335f\213;w\357\342\350" #"\336=\0\300\361\3611\0`\261\263\203\256\3571_\354`oo\0171D\364:" #"\"\361\372\365\3538<<\304\323O?\215\305bQz\5{@\355\17fq\272" #"\330\16T\2061/\314\342\311z0kr\351A\215\2559\241v\332(\254-\252" #"\2\tD\205\335j\34P/\21\0\230" #"\2237\2102\207\344\272\331\367\254\327k" #"\274\370\342\2138>>\306\353\257\277\206" #"+\327.\243\357e\374k\214\22\212oc\203!e\314\233\5\372\276\303l\336\"" #"\r\t\307'\17\320\367\262\16\17\36\334" #"\307\365\353\327q\371\362%\264:&\364" #"mo{\22\300 \212\214\"f\363\26\306>\31\203k\16\316\321\275\373899" #"\305\311\311\t\326\353\25\266\333-n\336\274\211\257}" #"\355k\245\335\314l\336 B\31\202\0\234\236\236a" ) 500 ( #"g>G\312\tC\312X,v\3169)m\333\242mZX*\306z\275F?" #"\364\310I\200\f\bh\2428W}\337\341\360\302\0054m\213K\227/\241\215-" #"\16.\\\300\245K\27q\345\312\25D" #"5>\355l\206\256\357\300\314X\257\327" #"\3109\343\362\345\3138==\305\316\316\16\346\3639^~\371e<\363\3143x" #"\342\211'\260\335ve\37<S$)(\322\372P\246\211)\246\3411S\311\314" #"\205A\23\346Q\r%\t#\354\317\272\251\221@\252\177\31h\32\222t\5\n\230" #"\317w\300\310\320\201Sz_\31\333\355\6}o\321' \22\320jjMl\32" #"\351\301\31#\322\220\20\233\210\276\353\204" #")V\203\231R\32E \352\375\214SzD\306C\231tE:\315o\4\310\330" #"\242\34\0\303X\326\232\263l\0\3063" #"\264\336\271(:\24cf\336\257\251\267" #"\a\376\367\366\356\312`\313\32y\275'" #"?\257\5\315\6@\341>[\377M\352\340\251\3\2\335d\27\2558\aN\335\331" #"\317H\302~\333\bp\30\323,\21\225\20\3\2\311(X0c\340t.%b" #"\272\36\36\34\370\365\221H\213\350\243\375" #"\375}|\340\3\37\300\347\376\354s\330" #"\337\335\305\352lU\372\216\36\36\\\0\247\214Ylu@\3008\254-\373l\304" #"\373\3715\217\312DZ\310{J\364\230\315\v\n\302\3066]\231\321*fr\236" #"T\17z;]@U\202\262\310z\0376FL9\266\262\16\314%\3025\336O" #"\tI\232\356\266\356N\366\\\314\365," #"\1\214\224\244\273L\231\370g/\6\200\0\246T\306I3Wv\321\0032s\366" #"\354;B\214\bY\1\251\202u\371\356" #"\254\3037\306\223\371\252cf\4\204\201" #"\356P\242\241\344\366\212\250FH\314&\31\2207<\321\266\r\222#" #"\311\212\354\260t\262\251\203!P\356\273D\21T\277\231]\32\6\265Q" ) 500 ( #"\232+l\344\t\251\203 \265\357\362_" #"\243\266\270i\32\211\22\305\250N\222\254" #"\37\212\323x>\252\3730\220\233\263\24" #"\367\233|\30\2205\246\3300\24\21Ig\35\307\0307\205\5\234\0\317\362%<" #"\0\b\272 \220\351K\272N\261i\344AH\6?\fC\226p\202\3WS\240" #"j\302\357\23\277=\273\340\17\225\275\317" #"\37\252)\330\365\236\250\0@Q(\246\\}Hq\352%\221\262\0CJhH" #"\333\225\r\352)fFPCF\312\242\fi\30Q\372\305\353q^\3350\fb" #"\f0\6?\266y1F\361\262QC\231>\2342\6LRY\30\242\254/1" #"\235[+\3170\224\356\0\261\246N\370" #"\21\233\226\347b\353k\364\277$\270g" #"\264\255\24\223\r\335\0\233\200u\377\376" #"\21~\370\303\2338==\305v\273\305" #"\331\331\231\206z\23\356\35\35\201Y\362" #"\303lMl\35\26\213\5\366\367\367qx\361\"v\27\v\334\275w\17?\374\341" #"\17\361\310#\217\340\305\27_\304\321\321" #"\321\350\336\314\260\36\34\34\240\353*\30" #"\231\267\263\2Ng\16t\333\317\314C\267\277gf\314w\346\0\200o}\363\233" #"\205\365~\346\231g\360\354\263\317\342\306" #"\215\e\270r\345\n\210\204%\364\373(" #"\355\254\bM\e\221z\361\f\31\31!\314\325S\37\20R@\337\3672Q\206\250" #"\364\233~\330\2414\205OF\251\350\272" #"\367\332\364\2322\243\r\261(*/\343" #"\200\365\215\326\353\344j\200\354\331\273\256" #"\303b\261\300|g\211<0\272n\300\355;\267qt\357.R\312\350\273\0017" #"o\336D\316=~\360\203\37b\275^\2019c\275\336\310h\345\30\320m;\354" #"\354\314\205\335E\300\27\277\360g\370\302" #"\347?\217!Kxq\350\22\226\273\273X.\227e\257.^<D\312\3" #"\326\253\25\216ONqtt$\323\341t\322N\337\17 0\332Y\203\235" ) 500 ( #"8C\243\323\316B$\234\236\236\341\312" #"\345K2\256\232\244Q\276\205\334\313\24" #"\302\246\221\364\214\234K\247\v a1" #"\337\0013\343\302\205\vZI\256\5$" #"\315\2\303\320\243\357;\374p\273F\f" #"\1\257\277.\254\331f\323!\345\204\371" #"l.\271\327D\30\206\16\363\331\216c" #"x\4\310\263\232\360/|\341\vx\376" #"\371\347\361+\277\362+\350\373\355\271\241" #"4\242\27\23\210\ep\226Vh\303\220" #"d\354\260\3rv\266\313y\326\334\303" #"\200\200\266\235a>\337\301z\275\306\375" #"\373\367\213\f\207\20qtt\17g\253" #"S\f}\302\203\343#\334\277\177\37\367" #"\357\337\307\255\333\267\220\aa*\347\363" #"\35<\376\304\343\270r\365*\236\177\356" #"=\302\350\3534\266\223\223\23\334\274}" #"\v\253\325\n\337{\3655\274\376\372k" #"X\2577\"w\372\34?\366\276\37\303" #"\217<\367#\270~\375:\226\313e\211" #"\310t]W\316\227\235\303\252O\204\310\20FP\310\5\17T=\303gFYi" #"VaCU'\17\377\0\363\0062\0\323+\30\255\341G\317\304\331Y\361\325\340" #"\244\254\266VV\25\2732b$\35p\aI\301\247\354\213\30i\273~\275\37\226" #"\226\207:j\334\354\214=kq|&" #"\200\213\"\241\311\215\220\23\346\350*\310" #"\241@\b\34K\375\6\5*C\b8\347\21y\3610\233`\372O~/\327\245" #"l\221\1\306j\265\302{\237\177\36\257" #"\276\362\nn\336\272\205\204\214yla#d\r\320\344\224\320\264-bS'l" #"I\244BYf\32\337\207\311> @\312\326\336GF\212\215U$*\0306\24" #"\331\227.2\16@\226\250\26\215@7X\302\320\306&\262^\2075\235G\276/" #"\302rP\21\245\237>l\352\236K3(\353G\\&\217\311\3763\232\206t" #"\370\fk4A\330V\371l*\367%2\251\255\253t/%\2501\306:\366]" ) 500 ( #"\221\352y\340,\2354b\fJ\26\216\363I\355\34\330\372\32\276($\0214:" #"\342\344\231 ]\168\310|T;\e^.\375\337\355\272&\333\345L3\227a" #"\0352\272\233aQ\20\253?\210D\326j\\\1/\225\324\324\362\354\5DW2" #"\206S\36\331\346\240\16Al\264\6G" #"\213\207I\235\377A\311)\177\337S\307" #"\326\34e\377\\\236\235\367\0165\1\343" #"\b\376\37\377\37\177\3006\346\324\24\232=$\351P\a\1{\265'\31Ye(" #"s1\302\2\321sM\310\307\2708\310" #"\26\257\262\3\343\34\244)\2339\365^" #"\275\22\365H\236\331\246\212X.\307\240" #"\214\342\330\343/\202\347\0}@\375~6,B\26\322\311%$\16\5\272e\23" #"\335\241\237\262\3221J\377\334\340\230E" #"\373\216 \261\20$\321\236\312\20\327\317" #"\216\331\223\232\343g\305*M\23\321u" #"\35\316\316\316\304 E\t\215X\2309" #"\306X\330\251\335\335]\334\277\177\37\333" #"\276\a\25 \27G\16D\337\3678=[\241\337v8[\237\341\301\321\3\234\235" #"\255p||\37}\267\305\331\331\32}\337\225<b@\204t\261\273(y\306L" #"\322\344|6\233\25\20\227RB\23#\266}\217\371l\2064Hn'\5\231\276" #"2\237\317\261X,\220s-Z\333l6h\265\355I\23\2\226\273\273\330\333\333" #"\223\36\257\373\a\210Q*\210\17\16\16\260\\.1\237\317\v3}||\ff" #"\306\356\336\36\336z\353-\274\372\332\253" #"\b\24\221\372\36'g\247\30\206\1;" #";\302\32\236\235\235\341\352\325\253x\347" #";\337\211\347\236{\16\363\371\349gt]\207\373G\367qvv\206\223\343c" #"\254\327k\234\234\234\342lu\212m\337" #"a>\233\343\342\305\213h\232\6\257\274\362\nvww\361\v\277\360\v" #"x\342\211'\n8\360\207S\f\37F\n\334;z\"O\322\371 \247\261" ) 500 ( #"\21\367`I\224{u\334L9\36\35\35\341w\177\367w\261\\.\361c?\376" #"\343\270|\371\22>\363\237>\203\323\323c4M[z\5\317\332\26}?`>" #"\237\243\357\266Rx\230\363\210\355\30\206" #"\1\2113\16\17.\240\3536`\365d\267\333\255(eRF\31\300\356\336\36\266" #"]\207\254\371\365)\2472\265gg\261\300l6\303SO=\205g\237\375\257p" #"\341\302!\2064\340_\177\352_#\206" #"\200\353\327\37\305/\375\322/\341\312\225" #"+z\256\245\312\273iZ\244d\223\371\244\367\364\220d_OtR\333r\271\304" #"\376\376>\366\366v\261\\\356\2\250\205" #" /\277\3742n\335\271\215n\263\301" #"\311\311)\356\337\277\217\365z\215\323\223" #"\23\364\275\234\355~\333\201\242T\f7" #"\352\240[\275\1 \5\2311\n\363\261X.p\351\342%\374\372\257\377:6\233" #"\25\200z6m\37\245 \246:\2319e\210\257<\3169\364`+g1\230\313" #"\235=|\341\213\237\307\227\277\374_\260" #"^\257\vp\260\326\\C\352\3204Q\345[\224\270\25@\366]\217\30mL\246" #"\350\233\315z\3\16\222\v9$)\26" #"l\232\6\261\225\371\3641\312\270\364\20" #"j\347\227\234\244e\334v\333cw\271" #"\213\331l\206\305B\200\367\203\a\17\360" #"\363?\377\363x\341\205\27\n\0\32\21\5Az07\255t\326\310Y\"|S" #"\375\345\235\3374\f\245\24059\306\262" #"\32yF\323\4\315\355\314\260\26p\322\365\243\312\375C\r\271\2i9pc\206" #"\321\333\17a\20\305\310Z\213\300\30\32\0201\304V\n8+6&\17\245\3\213" #"]kj\277\306\340\202\312h\325\200\250" #"\23\23\305\321\265\tf\6\212\374y6" #"_\300\340\254\277o\2577\274\375\f\312\250\3Z\320d\23\331\314\370\367" #"\t\277\373{\377\n\r\5ti\300z\275\306o\376\363\337\304l>\227\342" ) 500 ( #"R\27U5\202\200 \354\34\310\332\214\235'\224\3545\35@t\236\33426\334" #"\313\277\0\253A\373\2352X\212\242\210%\32\200:\22ZHT\267\306\232Bi" #"\353\355\357\213H\331\364\224K\307\240\20" #"\245\225\246`\v\251+h\232X\34\354zn\215MMH\311\352\216x\244\e\314" #"A\251\304\226\214}\27\237\312a\b\323" #"\17A\273\a\345\214\3069k\36\353\370" #"\210\304\24C\330\372\212\34\260\214\317%" #"\221\243\314\326\201A\327-\345RW4" #"%\301\204L\224\326\251\314\343\316\4\326" #";>\347\204\254\321\245\20\3\220\224\257" #"7\31\3t\212)\215\"\32\243\210\250\21:&#\nHcT\275\236\6\314\333" #"\6\3204\rba\270\2074 \206v\224\256\352S\211\374\31\263\34e_\343 " #"kM%\25\306;\34\202\263\270\330\301\6^\330M)(\310\203z\344\222D\315" #"\22\22\205\24o\21\244r/\331\334\312\22V=\217\304\r`y\346\322^%\265" #"\301\224V\312R\245Y\36\2225\217E\362Gm\35\203\266t1A\20j>\217" #"\n\264\344sCY\4;pe\221\232X\274\21\351\345*I\343\304\204\4\315_" #"\262d7\252\271@^\341NsL\244\310D\234\202X\212\2634d&\301GU" #"j\214\251Q\360\302/\27\4\"\t\v\373\306\233o\340/\376\342/p\363\2077" #"5/4c6\237a\350\al6k\264\263\32\"\275x\361\20\233\315\26\333\355" #"\26\333\256C\243\271\213\6\330s\316\205" #"E \22\357\260m[\244A\16\0\221\204\35\226\313\5\256]{\229g<\372" #"\350\243x\354\261\307\220r\306\321\203\373" #"h\233\6!\220\204T\231\321u]\t\35Xj\302\331\331\2312\300\214\241\37p" #"\367\356]\254\25\330\326\311{\t" #"\357\375\321\37\305O\177\360\247\321\304\200\331l\256\373" #"*C9vv\346\260\264\22?\255/Pe\3\202" ) 500 ( #"S\34\357\375\321\347G!\245\241O\370" #"\3727\276\216?\373\263?C\327\367h" #"\333\0267o\336\304\321\321\21^z\361E\r\17\5\4etf\263\31\266\333\16" #"D\300|>\27\0>kqJ\2472FSs@\357\335\273\207\323\323S\30\330" #"\220\375\257\fF\316\31\310\365\314\230\214\17\254!fu\200JEj\32G<\312" #"A\a\225Y\364^1\232Rd\316x\361\305/aH=v\227K\34\354\355a" #"\326\316\360\350\365\353*\353\3\36\273\376" #"\30\16.\34\340\321G\36\305rw\251" #"{W\247\20\235\236\236\341\357\377\376[" #"\370\334\347>\207\217\177\374\343x\346\231" #"\247A\24$\265$% \213,\337\272y\v\337\373\376k8;=\301\305K\227" #"\260\\,\360\330\23\217\343\342\341Ea" #"-\232\210\371|\216\235\205LW[\257\3278[\255\312\31\270v\355\32.]\272" #"$\340.F-& t]_\0303\0020\233\267X6\2l\355|eeF" #"B \234\255VU\2015\r\336\376\366\267\343\331g\237-\347Z\212R\b`\302" #"\331\352T\345\263\307f\273\301bg\a" #"\313\345.\372\276\307j\265\302\315\2337" #"qr|\202\325\352\f\17\216\217\361\335" #"\357\276\214\373\367\216\360\302O\376\24\372" #"\256S\206h\fh\310\1\377rnIC\335a\374>o\374Eg\5\204\6x" #"\361\245\377[\230\324\246\305f\263\226\242" #"\337&`\3264\2400\307\376\376\1\332" #"\266\301|>\307\225+\227\261\277\267\217" #"\335\345.\256]\273\206a\350\261Z\255" #"q\353\326M\274\361\306\ex\355\265\327" #"E.\332\6\350{,\227\v\354\354\354\240i\32\\\277\376(\236z\352i<\376" #"\370\343E\256\276\361\215o\340\377\373\306" #"7\360\340\370\30;\263\6\303\260\58\243\353d\230\300\356\356.NOO" #"\213A\31\351\362 \272\326\306\207\6m\373\306f\3P\327J6T\201X" ) 500 ( #"ta\376\200\321\276\22 \371\260\354X\270\b5\266(?+\0\17\343\224\1\202" #"8K\303\320{l6\322\255\0\352\220\a\2\b\0216n\224BDfK\35C" #"Me\203\24\211Yn-YhV\207\2700\17\0\205\22\316\226;\23\2065\241" #"/\357\17\24J\233J\263\23vO\5\274\22c\30\222V\303c\4X\376!\373" #"\3009(\253\231\21\21$\224L\2\314" #"f\363\31\376\373\177\372O\361\277\177\372" #"\337\242\235\265\270p\341\2\346;s!" #"\204\312Z\326\232\1\313\326\264\277\v\223" #"ZK\324|^\252\345\220\332\375\214\230rpqN\312\201\266\367\220\0N\2511" #"Pp\226\255%\237\20\311QC\3230\34B\306\246\207\322s\2770\233T\213\266" #"(Hqu\e\245Pu\333\255UN\245@\236\1`\240\342\20\214\243\234\22]" #"\216\r#k\217j\0020\fIB\356\200\332\316q\n%\347\1\231\307]d\310" #"\362^SF\23\325\31Q\2268\233l" #"%\355\a\353\30\\\321\325\25\204\327\32" #"\26\223e\0246>\252\356\264\1;\263\371Lu_\265\37\246\e\r\27Y\244\327" #"\316\5\263\346\365\202\245\336 h\356\265" #"\342\22\31*\222\221\372\1ml\20\232" #"\210\276\37\20c\243\373\3102\225\23bc|1\245\254)kz\334Lj?q" #"<\251$\0\0 \0IDAT6\e|\365o\376\22o\177\346\3558\274p" #"A\235\217:Y\327\326o\352\4\26g9\204b\257\344\275\205[E\342\n\364\313" #"\2317Y\321\3537}J \307N\332" #"\305\205\225\e\247\v0\362\350\300\345d" #"\211\373\256`\b\342m\fC?\2\200\336\263\3669Z5\354%\n\315\332\212X" #"\376\247\24&X\221\224)\207\200\224*\vm^\232g\325,\317x\n\254\275\341" #"\21V:\227\3737p\317\252\272\305\223\21\226A" #"\274\2521ca\327\363\212K\256/\36`f\t" ) 500 ( #"\327\210\307!\306 \206\26\34$\317\311" #"\27\177\330:\331\213\231\301\231\361\247\237" #"\377\317x\365\225\357\341\301\203c\304&" #"`\276\330Q\203\337\0L\330\331Y\340" #"\360\342%0'\364\275\200\315\234\344\347" #"\313\345\2)I\276\343v\273-\254\353" #"b\261(\36\343|>\307\325\253W\261" #"\263\263\203\313\227/\343\342\305C\354." #"v\21\243\364\312[.\227\245\r\313\266" #"\333\202\313\201\254k*r\223\3204\2632G\274\260\346\272\307)%l6\e\274" #"\362\312+\370\343?\376c\314f3\\\272|\31m\fx\367;\337\205\305b\a" #"}\327\211G\215\332be\273\335H\36k\333\226\260\25\2141\3200\2220\"\\" #"\16L\247\254\27s@\327m\361\276\367\275\17\317?\377<8e\254V+|\365" #"\253_\305\337\377\375\337\343\336\275{%" #"}a6\223P\362\316\316\34\313\345\22" #"\213\305\2W\257^\305r\271D\327u\270s\357.\276\363\235\357`\30\6,\26" #"\v\354\356.]\317`\365\352\265\320\305" #"\326V\326\300\345)\3\302R\250W\f" #"\5\262\301\274e'\3\336x\210\261\227" #"\310\2059}9g\315\221g\354\314\347" #"\210A\300\315\373\177\374\307\360\236\347\237" #"\307\301\301\1\230k\216\250\345bVE" #"R\v~\256^\275\202\256{\272\24\356" #"\35\36^\304f\263\301\316\316\316H\256/]\276\204\37y\37694DH,g" #"\247\37\6)Hp\0g\263\331\2243\262\335ld\273r\306;\336\361\366\"3" #"]o\241*.\371\336\266F\f\324y\364\4\244\241/\214\201\330RF\3220z" #"\257\362\342\277S\34\242:\274\0\220\364" #"\32\313\375\266\b\310\336\336\36\366\367\367" #"E\21\306\6\177\365\325\277\306\267\277\373" #"\35\344\314x\354\261\307\244\330\216\3079" #"\245\246\313$\304\253U\310\232G\307$\235,\254\27\252\311" #"\261\a\1\346\f\357\357\357cg6\a\317\31\277\361\e\377" ) 500 ( #"\3\326\333\r\16/\\\304\356\376\36\226\232\n4\f\3fM\203\256\357T&\244" #"\300QX\215\b\242\347\2133\366\346\e" #"o \201\361\3643Ok\236\257\334k\327ue\377MO}\370\303\37\306/\376" #"\342/\242\353;\234\35\237\342\326\255[" #"\270s\347.n\335\272\215o|\343\e" #"H)\343\352\325G\225\230\31\203\374\244" #"\323\345\244\310-\26\371\314\332\321\303\330" #"\225\302V\346\0\206\r\\\321\302\273\\" #"k9\24\35\" \224\34\347\2*\335\231\310z\215>u\210:2\265\350b\325" #"\245U\n+\351`\366%6\21C\237\244\260/Ha\221\344]\n\e\\\201\245" #"\30\361\30\2150Qc\e\240\240E{\207\262\266\344*l\263\26\nj5\275\330" #"\260\214@\255\206\177\255\233Ie\237\212" #"\323\256\21\1\177\16\314\21\366\340\330\366" #"A\376\264\365\2132\344\205\244\200V\352" #"\v\30]\337\343\261\e7\360\217\177\342" #"\37\343\213_\374\">\362\221\217HZ\232V\312K~\260\2\"g\23I\0373" #"\351\317\275\343m\344\201g\37\247L{\351N \357p\316;\304I R\220+" #"l\378j\37l\311\347ff\4fM[\nu8\2s\211\272zPS\356" #"%%\314\226K|\353[\337\302\321\321" #"\21\16\16.\340\352\325\213\270x\361\n" #"B\234\243\321\221\335\346\f3\204%|" #"\365{\257\342\366\255\333X\255V\22\265" #"d\306L\323\345._\276\214\307\36{\f\327\257_G\333\264\330v[\244\2305" #"\342\324\27 \332\266\265eZNY\213#3X\274^\r\243G\20\202\206\375C" #"\215\34\273\265\364E\332>\25\2\320\347" #"\366\277\23@\241\314u*\357\361\371\301" #"\305\21$@j\2\252,%\226\351\264!D,w\367pvv\214o\177\373\333" #"\22\371\211\204\315f\215\355z\215\266\235\225\350pJ" #"Bh\335\277\177\37!\4\254V+\211\222\256\316p\357" ) 500 ( #"\336\221\342\213\200\266\235\343\354\354\f!" #"Dt]\217a\350\261X\354\340\354\344>\30\214_\373\265_\303SO?UH" #"!\321\325\343\232\227\350A-\306\316\241" #"\350\342\b\e\212\341\213\1Im\23qM\v\3159K\327\205\222\256\340\27<Z" #"\273,\27\"r)\b\306\276Z\213\35\313_1\0\347=\322B\251{\245\357\224" #"hJI\247\321\310!\223j\324q\5p\361\312\3355\355\263v\357\246\320\5\\" #"E\0\3429Y\216\35\0m\231Vs:\333\266E\352-\337H\372\2G\25\332" #"\240,L\340\232\357\353\303\16EI\361\270Z\330\0166\241VmW\317<\3A" #"\30\344\262\221T\215\251W\202\314\214\327" #"^{\r\24\b\273{\v\304\30\261\336" #"\254\261;_\340\311\247\236\302s\317=" #"\207w\274\343\35\347\327\200+;\37\2" #"\225p\365t\237\2432\275\226\213\347\23" #"\300\241,\352v\273\325\"\305X@\205" #"\201\223\344<.Y\333\352X\230B\364\306\246m[\\\273vM<\356\355\26o" #"{\342\t|\344#\37\306f\275\301v\273\31\215\206\364\314y-0\251E;\244" #"\305\5\321\2071\212\214BC\276\262." #"\233\315\6 \1\224\263\2359\376\353\17" #"\3754~\346g~\246\244c\334\277\177" #"\37\373\373{\2x\364\177[\257\222|\37\3\356\35\35\241\357{|\352S\237B" #"\337\367899\36)%\0316\2211\323\344\177s\6(D\235@\304hbS" #"d\320\306 \373(\2107*#E']\246\212\3145M\203\305r\201Y3C" #"B\217\275\335]\374\304O\376$\336\373" #"\336\367\242\357\373Ra\275\331h\372\201F?dM\305 g\5\302\6*g\263" #"\331\250\305\235\335\2139*)gp?\240!q\3422\344\374\344>#k5v" #"r2\26\202\3443\367\303\200\235\371\f\313\345n" #"Y\363\302\236)\320\261\256\32\301\230Q\322\234Y\26" ) 500 ( #"\306>\331\304&\260\246N\325\363\302\314" #"%/\316~\346\25\237w\36\354U\31" #"\305\204\256c\204\235\200\325\351\31\362\220" #"\260\330iq\351\342E\3519\213\207\247" #"!\310\363\t\360\313l,%\327\21\247\241:\304>\fm?{\377\373\177\34\177" #"\371_\376\22\241\211x\374mo\303j\275\2\261t\2779==U\207\16\350\266" #"\241\350T\n\1\21$\200\215R9\237D\204\253\327\256\201\"au\266\32\1\0" #"2\324\3055M`\275^\227\263\31c\304\343\217?\216'\236x\2\363\371\2\337" #"\375\356w\3214\r\276\377\375\357\341\37" #"\375\243\37\3030@\303\234\265\257)\301" #"\300\215\246\246\241\236U&W\f\243]?,\a\3264^l\202V\260K\201\257" #"\f\3610\226x\334\370\275\312\222<D" #"\3234\310\3K\365\276\21'\nv\353\350\317q\247\215\21S\244y\2D\fN" #"Jt\204\32\2'\222v\213\31\343|\324\250}t\245O4\311\24G\220[g" #"\241$k\301a\3\16Z(F\265\263\300\24\30\226h\205c\367\246\2652S9" #"2;\22\242\324\320\304F\316GP\35)F[\242j/\274\360\2\336\375\356w" #"coo\17}/\372;\224\263\241\300O\303\3019g$f\355\331\32J;M" #"\353\205\352\211\251i\352\211?\213\346\220" #"\222\235W\"u\326\345\4\23\32$m" #"\37\206\\\31\223\234\307\271\246%\305\205" #"%\345(k\372\213\227o\177\36_\177" #"\375u|\376\363\237\307\331\331\0316\233" #"-\326\233\23\264\315\34\263\331\34\363\235" #"\26)\r\330n\273Z+\343&}.\227K=O\35,\17U\300\334\31\346\363" #"9\256]\273\206\e7n\340]\357z\27.^\276\204\253W\257\226g\357\272\16" #"w\357\336\305f\263\301#\217<\202\224{4\241)\0230\215\271\316Y" #"ZQ\346\f\364\3030\252Q\232>\213\325\323\230m\eM'SL\344" ) 500 ( #"G\363\216t\34Ug`\254\177$:\35\233\6\244\203\34f\355\34\377\352w\377" #"W\274\371\346\367\3216\r\272~\5\242" #"\200\335\345\22\234%\337\237\31X,\226" #"\305\2467j3\202\373\336\266\225t\271<dp#\366w\261\230aw\267A?" #"\314\220\207\1\217<r\3\24\30_\372" #"\322\227\360\324\323O\251\f72\265\222" #"u<;\217S\216LV\355\271\245\177" #"\273D\353d\355\250\330\221Q\232\225\216" #"y\266\3175P\346\303\26\311\252\300\3\325\266^S\305i\202\"\341*\271Am" #"_\0\326\312E\313\221\265\3\324u\35" #"@\204\6\220\342\24\250\242\261\4fDPm*\n\260U1\217\231\224\262\231 " #"X\2731\v\251\370CR\306\363B=\235la+\252\241\32U\366\34P\233\371" #"\223\234=\253\360dq'\344\331G\212\3155l/\341j.y\2529I\262{" #"\316Y\333\324\350\3055%b\n\330\r" #"\\\330\375\27\220?\310m=\375\364\323" #"\370\360\207?,\205PM\213\335\335]" #"\344\234\v\223%\336vF\214\266.\222" #"\202\221S\3066m`\364\210\337\323\30" #"\245\375\226\35\34sb\220\271\214\326\264" #"\3032\270Q\251 9\2501\304\222cZ\331h\341-\f\210\30\243\350\17(\263" #"T\243.\227K\254\327kQ.$\214\272g\0D\200\3\2\325\234V\270{\235" #"\262\352U\31Pa|\344\367c6\244\353\266\b\24\320w\28\17\17\17K\370" #"e\265Zk\30U\364B-\36#\354\357\357\343\350\350\b\303\320cgg\aw" #"\356\334\35y\236\31\31C\316\240$\3514\342\370H+\267\20DQ[\16\232\317" #"\351*\316\2252>Uf5\34\254`84\320\t\204\31W\257^\305\215\e7" #"\360\332k\257\340c\377\355\307\360\316w\276C\v\301,\275\203\25p\324" #"\361\333\306*\262;KC\22\1\263\374\332[\267n\25#c\367AD" ) 500 ( #"2\tlH@\320\3749\2\2\aQl\221jW\5\357\330*\353\334j\364A" #"\0z\324\220\26\234~\320\226Pe\234[\241\362Jz\0\30\245M\233\a\337%" #"\242b\347TY\1773\210\22\272d4\226\357\0274t\310v\316$\32\21B\300" #"\311\311\t\332\266U'\301@v\315\373\232:\335LVL!\225\313\243\350\24D" #"\3069\345Q\v:f\6\247\214\307o" #"<\216\227\372\27\301C\217\177\367o\377" #"\35~\371\277\3738\206\276\227\226tn2#H\365\213\2\272D\222\347hm\311" #"\214\210\0003\220e\244D\322\301&\225" #"\35\25\207\333\203';?C\32\320\17" #"\3\256^\271\202\377\360\37\376\317\302\206" #"\337\273s\204Y\273\203\256\e\312sK" #"\376\2464\322\a\352\363\4\322\202\24\214" #";\274X\21/\20\312\364*\241\322\b\320\\\326\244\254\2301\253S\0263+x" #"\24\306\217 =N\265[\201\255\247\266\202\0220=vL<\3702[\317\f\200" #"\264\315\34\243\26\a\23\353\304?u^" #"I\230\241\302\346B\327\241\211\345\224\332" #"\332\e\313\26\202L+L\\\31|\353" #"\262\343\16b}\276\\\v\222\254\335\332" #"\303\34$@\364@R\346\27\200v\340\b\260qk\231\204\315\215! X\316\353" #"\320c\377`_\352$\2028\0304\32[\257)\bAX\306BH\21\225\373\4" #"\311\231\361\244\3064\215\242\352b*v" #"\233\265\207*l\332\240\356\217\0245\22" #"8\251>\342\232\16\341\35\312)\343\351\213;I=d\3\222!H\r\307b\261" #"@l\"\332v\215\275\275]\334;\272\213\315v\215!u\345\376M7\357\37\34" #"\250\356O\330\2567\270w\357\b\314\300" #"\301\376\5\\\273\372\bV\353\25\272^" #"\242\214ggg\370\366w\276\215\377\367\253_E\327w\330\333\333+`" #"\324\242_\17\36<\300\317\376\354\317" #"\342\372\365\353x\352\311\247$\n\272\335" ) 500 ( #"\312\3655Z\266\267w\200\30c\351@T\354\277\22,\233\315\6\247\247Rg0" #"\f\3\256\\\271\202\371|\216\371|>:\eI;\3320g\255\21\321\372\e\0" #"m#\223,\275]\227\250\23\0dH\312-\225\317\20\21.^\274\214\241\337\242" #"i$\372\261\267\267\207\307\37{\34;" #"\363\35\254V\eD\215\350\331\32/\26" #"\v\20I\207\244\331\254\305\351\331\n\213" #"\305\2\233u\207\323\263S\314f3\355\304\263\26&<1\36<x\200W^\376" #"\216\324\201\344\f\212\261\334;8\"\"" #" \226^\360\325\226\214\tO\315\243f\6\205\210\30EN\205\330R\202,Fq" #"$\34\241\331\b\22\26\244l\312\214\325\253+=e'\36\203\t\26P\31U\17" #"\202\314\310\32\302\366a\21\3\260\200\204" #"Z\4(H\273\212\224{\220yY1\252a\253}\4%l\21`gL\276\263" #"\36\6\eO\30\20\220\220\0204\327\212" #"\3\227\361\245M\224\252\3202\2639I\313\nV\245ZC_\320\";\224>\266" #"\0015\247\262\320\23%\213\211\212b\233" #"\315$w\266N=\241\2\236\210j\277" #"\273\351\313+\17;\4\363\305\34\253\325" #")\16\17\17\261\273\273+\0)\345\302" #"\302Y\241\230\204=,$-\312\204\1\231j\247!8\313]\365\351)\242\234j" #"\323t\350'I\313\374\345\32$\305e\312\36e0\32\307\f\217B$\17q\212" #"\274\3222e\25c\304\254\235\t\20\b" #"\343\374i\311'\22\300\2325\274I\250\n\337+Co\f\354>,\4T[\234" #"\311\357-\224-\236\265\264N\e\222M" #"\227S\206\311\336\303\251\202%M\266\a" #"3\366\367\367\361\344\223\317\340\365\327_" #"\303\235;w\n\260$\r\263\201\201\320" #"\6\5\312\\\32\224\345Ie\250\375\35\0Bcm\207\264\360 K>" #"W\214\302\22\245\304\340X\367\v\34\321u[\34\36\36\342{\257\326\234*" ) 500 ( #"c\346C\210:=l\334N\217\225\325eHN\240\264\n\223\367,\226\v\f\203" #"\24(v]W\362R%\374\254\316\211*P\310\211E\242,9^no|\224" #"F\212B\31\241\t\230\317\346X.w]1\210\206i\211\200\0\364:\356[\302" #"\306\262~^\367\370B\3\17\2\212\361" #"\225\270]u\26\263\2L\30\376\325\374" #"Es\312\330\316X]\243\262\227\346l" #"\2214\371\27\247i\334\27\324\34*\271" #"\277\32\275\3129\243Q\35%-\277\250" #"\264\263\312Y\252\230\373\276\307c\217=" #"\206V{\5\377\364\207>\204\355z\203\30\243\24x)I\340C\331\24\202\204t" #"Y\212F\254\247\266\355mY\17\0\234\250\24Y\311t'Y\3\317*\26\235\36" #"\b\227\17/\341O>\373Y|\371\313/\341\302\341Et\375\200\367\274\3679l" #"\267+X\365y\315\225\254 W\205Q\t\26!,L\377kR\252Tu\347\204" #"a\350$_\235CuZQ\1\250lAu\b\252\315\320\275U\240\31( C" #"\301\261:@rf\205+\fN\376|\364MX5\202u[\360\343\235\223\26\323" #"\t\3502\306Y@\272\a\357\310\322\303\2324b\3244M\351Vd\315\353\207$" #"@\34\320bg\340\\\27\bq>\306" #"\216\307\224\311\365\240\262\234\251\254\5\315" #"\30\223?\311Z&\302\330\177a\254\5\334J\321b\23ep\214\245Y\25\346k" #"2\210\2428\300F\32\3608*\3670" #"\20\356\t\232\314Y\307\376F\351\267\n" #"\24\302\305r\324k\337[\35\244`\316" #"\202[\37\257O\214\351\365\355:\275=" #"1b\353\362\345\313x\376\371\347\361\327" #"\177\375\327\350\373\36\317=\367\34~\356" #"\347~\16\303\220p|r\37\201\"\16" #"\16\366\261\267\277[\242\212\a\a\a" #"\370\243?\372#\274\365\303\267\360\241\17\375\f\b\1\177" #"\365\327\177\205\333w\357`\261\\b\177\377\2n\337\276" ) 500 ( #"UH\254\275\275}\204(u\5m\333b\263\335`\271\\\"\306\210\213\27/\342" #"\245\227^B\352k]\320|>\303z\275\321\332\239\3737n\334\300\356\356." #"\16\16\366\261\263\263\300f\263\306\355\333" #"bK\216\216\216p\266Z\215\272\tH" #"Z\235\200\335\303\303C\364}\217\315j" #"\2157\177\360&~\343\177\372\37\361\310" #"\215\353\342BP\2X:\300d\260\366\351\255E\242DA\322\34\2429\200\222Z" #"\360k\277\366\t|\352\367\177\37\233\365" #")>\376+\37\307\273\336\365N\260\246\222\344A\322L$\32PS\257\300\22\r" #"\313\220u\271\320\314\221s\217K\227/" #"\341\360\342!\210\b\217>\372\250\310i lV=f\363\31\376\345\277|YA" #"k\322\36\317T\324H\206\311\216\25sW]\340e\265\234k\252\230\251me\272" #"\253a8\303\36 \31\303\336\b\230\251" #"\236\245,\220\266Eq\214\236\27>\257" #"\210L\251\370\320\217\201(o\240\30\332o\327UR\312\302i!\\\220\3665r" #"H\305 e2\320T\37>\e\b\b\326\323\26\305\20\25\326\227\305\370r\1\v" #"\332/.\232\21d\361\202\31 b\364I+e\325x\245A\376\3354\215\200\16" #"K\302\247 \341\216\322\3\257\346\20\eXJ)\t0#\311!A`\0207\b" #"Q\224?\205P\214\235m\234)\255ZI(k6\233\317a}\366\f\344v}" #"\207\300u]-\227V\326\2736\277\a7Hi\320\237G4-iU\373\270\352" #"t\314,\346\322?\220@@\2549\325Ys\363\0\b\260Q\217\335@FaN" #"L!\32(Q\0060\347\214V\275\326" #"\275\275=\234\235\235\211\254\305\210\2204" #"\374\250}\371\222\25\375)\223k\214\271" #"gg\246\311\347\336`xVd\34\356\21\303\3264\21\234\244*\323" #"\207x\2001\vd\23q\3002\350#i\270\350\332\325G\360\332\367\276" ) 500 ( #"76\30&\373\32\302\6+\363\26#\6\335koxG\347I\321\230\3642V" #"f\2104\354K\2046F\f\\\317\223\255\363f\263\301\274i1\244\241\0\6\3" #"\210\366>\317\202\200\240\r\314\265\357&" #"W\220$\225\330R\310\321\266rM\273\327@\0044\302\364 gp\220\242\22v" #"F\316\257\177q\230r\306\275\273\367\320\3652\324cww\27\233\315FY#\6" #"\2F\316\226\375\351\303\326S\326\313\344" #"\267\334\233s\222X\331`\313\221\315\f" #"4\2616S\247`y\242\306\34\313\373%D(\2359\354\325\2663l\373\r@" #"\1\304\n\202\300\243\363\3`$\3\376" #"\337\310\302\260\318c-n\2621\343\306\350<xp\202Y;C\324\221\315\21" #"\21@\257N\376x=\30\22\rC\26\331m\224}\e\203\217\200\266\325\347\317I" #"'V\212\\x\20akz\361\360\"\376\360\17\377\0\177\365\377\374\25.]\276" #"$g5%\34\\\330C\327\327q\301\241\0\251\1\244\371\264v\326\344{\355\f" #"1(\260\t\265\263\3\265\2172s\2q\35A*6\243\202A\"K\177\30 " #"\23\362\352Y\311l\262-\272\273\364\355" #"\244\200\234{\215\2\b\340%\225\5\373\270uZ\20=\226er\240\26\227e\255" #"\312\317\245\346\231\25\374\312\337e\375\204" #"\355\5\243L$\24\377\252\352\360A\235" #"\224\306\234\3100\356\262\3600\a\335\316" #"\215\a\214\36\310\232\355\t\272\367V\224" #"3\"\221\310\252\350\335\224\302@ \312" #"\232\273\e1*\224\305\303\253\375\367\367" #"\367\245g\265u\317q,\253\307\1\246W\306?\227\275\213\315L\34CF)\\" #"\362N\226\a\324\325Q%\301\e\366\274" #"\216\305+\240\305\255\215\375\351Ax\337" #"\367\330\335\335\305\275{\367\360\261\217}\f\317>\373,\272N\n\213/" #"_\272\242\254y\302z\265\5\260\5g\306\335\355\21\376\233\217\374\"b" ) 500 ( #"l\320u[\264M\203\367<\377\36|" #"\367\273\337\305\237\377\371\237\343\336\275\273" #"R\337\220r9\17\363\371\34\201\"\326" #"\253\215:\307=\226\273R\317p\345\312" #"U\264m\203\365\331J\331\336-\232f\6#Xvwwqtt\204\373\17\36" #"\340\3157\31\333m\257\244D\302f\333" #"\0252\312\354\244\245\223\255V+l6" #"\e\315\213e\314f3\354\357\357\341\265\357\277\206Gn<*\0/\3134Kj" #"\242\324\26Lr\363\211\344w\254\2666#a\0302\226\vi\37\331\367k|\353" #"\233\337\304\333\236x\2\375\320#h'\225\315VH\265\322\335\204H&{\332 " #"\31\256\335\241\254\r\233\331\241\222#\333" #"\314pr|\nN\222\377\3364\322\31+\306\0B\204\f\312\1\254\375\\%\r" #"\352\34\202rV \266\25)IRT4\35I\22\23e\231\3629\244\214\30\305" #"5o@\244\311\337,\212\331\201\25\253\354\363Uq\26b\3619\204\323\3l\6" #"}\320<\224HAC\213\\r_\214\2155\317\334\f^\324\352\334\1\tm3" #"+\263\331\215\345a\206\346\316\6\365\252" #"k\350\261\30\241\242<Y\252\306-d\225HA\250\b\201$\273[hXH\3" #"\231bR\1^)&\1\300ABR\314R\24b\325\376\234\271(\221\20BQ" #"\306\261\t\30\272A\212Z\224\321\261\365" #"\361\303&L\301g\245^\"d\302\332f\273\5H\0\367j\265\22\5\32\232\22" #"\236\235* a\333dV{\b\4\212\r\242\256A\356\24\0\360xTi\b\232" #"k\vh+\260\361\210\313\3061\255\306" #"\2000\21B\206\346U\32\330\261\340\224" #"\374\275p\323\366\214\250 \324R\26N" #"ON\20B@\257\225\251\346\245\201\205" #"1\364`p\n\334\230\245U\220U\271\237c\202h\334\266\2560\233D" #"\325\221\243Z\364\346=\337l9\210\260\364\231\232+\324u=\366\367\367" ) 500 ( #"p\266:+C\aB\210H\331+`\351\224\220\245\217\312\bl{\345m/S" #" \321Rz \251\"M\323\202\30\322L>\204rN\4\350\313`\201\355\320\227" #"\34sK\3451%a\317U\362\34u\354\255x&u]\355\36f\363\252\220\215" #"ue\35?\e\215\310\323\263Q@#*\343c\372A\376$\264\315\34o\376\340" #"M\244!\343\311'\237\304|>\227\311k9\vK\356\316\251\337[\3333\353W" #"lkf\3738\352\237\352dY\300\2406f\17\343\224\25\323\v)'\304\246\236" #"!\3217\242[f\263\26\353\365\n\263\331\16\232&b\263\205\364\306\r,z\2" #"\365z\366\2478\361z\226\254Q~\16" #"\240(\367\221\363\270\256\300\6\25\210!" #"\333\307\311\211\310Q\323\2665\332\2\231" #",%\25\364\262\360\226\266\223\264\36\240" #"mba{\375\31\21\0001\326\v\204" #"(\340\323\302\311\272n\a\a\a\370\275" #"\337\373=\274\374\335\227\261\263\334\221p" #"\237\366A\336\333\335G\214\1}\257i" #"GD\310\30T\276\324a\322\2\307\350" #"\214\321T\276G\251\f$\372\36Y\270" #"\316\312\202{\207\225\220\23\351w\314\264" #"\217;\25\240i\272h\24\305\3214\2c \245c\200\346\24g=_\301\2013" #"eiccEtJ\226(\363mk$\375KuH\207\306fl\310\303\224\370" #"\t%\344/\1\372\\\364\342\270\203\202" #"\177\211\266\256\244\200\3310\323c^v" #"mR\243M\360\264\367\373\261\353r_v\376\t162\334%\264Zk0v" #"L\275^\264B\263\337\372\255\337\302#" #"\217<\202_\375\325_\359\254\236\34)\347\311\235=\273Gb \207\36\3400" #":\333\236\2248\a\362\241\21\auP" #"\23\30H\251\246R\270\365\361v\313t\274'?b\214\330\337\337\307\273" #"\337\375\356\222\213n\354\350(\325I" #"\235\335\314\31\333\256\3XR\370\254\245" ) 500 ( #"\342\333\236|\22\377\3747\177\23i\30" #"p\266Z\225(\2661\313\276\353\304\355" #"\333\267\360\247\177\3729\274\366\375W\361" #"\317\376\331\377\214\335\335=yo\214X" #"\235mp\347\316\235\322\22s>\237c" #"\275\332\340\326\255[\270{\357.\356\334" #"\276\213\343\223\373\270x\361\"\256_\277" #"\216\213\227.\341\362\345\313\202\233\364\331" #"ONN\244\245h\337\341\370\3011NNVx\363\3157p\357\356M\274\374\362" #"+\370\211\237\374\t1\263fC\362x" #"\200\223\245\377\244\224\200\220\221Y\354\367" #"\254m\205X\322\324\f)\222C!xd\235\\z\31Y\201\275\24\303\2474\310" #"y\2069\376\2763HuFL\216\244\e\2179-\\\316\32#;\271\32\35\21" #"m\2278&V\313\332\253-3LeQ\25\4.in\231e\230Ec\3712" #"\"<\202~\211\31\211\a4\315\274\0\24\317\330\372p\2027\276v\243u<n" #"(9\211\226\a\5cE\0004m\vi\177A \22\201\354\373\1\231\244O]" #"R/\256\242y*\214\260\31\273\332\1@\275`fg\0\3244Q\320\321\203\320" #"\311>\332\300Y\273#\20\224\235\214T" #"r\233\n\223\241\e\340G\326\366C\306" #"\254Q\257\232k>\253\367\300\23zD\315g\v\1\310\271*\206\321\4\17g\254" #"\314SO)\301\332\3143K\376\211M\17+\343\377\6\237/h\275H%E\1" #"\220\220\200\254\205u\251\30\0n\21\302" #"\270z\266\260\236,\341\270\0e\6\254" #"\237e\1\321\0326\243\312\220\230\267." #"\202\216\242\24\r\234K\347\r\5Y\244\215\246\0210\233IUy\f\261\3642V" #"\301)\a\313\e\262\342\4\300\332\324\310" #"\374y\2635^&\1\234K\227\30\201" #"!\b\330A\224\360\356\264\203\204\35n\271\237\312\374Iq\215x\312M\323" #"`\261#\223\326\326\2535\16\16\16" #"t\275\305\31b\256\335\16\340\366\330;" ) 500 ( #"\212\243\3573\243F\325\20\210\256\37\312" #"\263\3319\260\263&\212[\34\261\255N" #"\230\313\16l\233\314N_\205\201\2023z<\36\275LD\312\306\220\202.+\242" #"TG\230\214:\226uj47\314\4\2039\243\357\b1\b+.\36\274\24\341" #"Y\327\t\323\e>\r\312+gS\220" #"\226\242\343\215\334\303\232\243\373\202L\17" #"\22\246 3\224\251\177\2650O\30;q\302e\220\203\344\336\305\20\264w')" #"\213\251\341p+>\325&\365D\2^\363\220@Q\234\r\351\276QC\305\325\260" #"K\310\216H\306\26\277\376\372\eX\255" #"V\270z\365*:m\275\27\264\240\250\206\370\v\221\" \221\270\346\374S(i" #"g&O\251O\210Q:\23\f)#\363\0\231\310Z\317\324\341\341!~\347w" #"~\ao\274\361\6B\f\330\337\337\307" #"\203\223c\315I\226\256\20\225|PR\303\362/u\275-4jz_\366\240\201" #"\25\216\211\34\236g\375\301Tz\247J" #"\300D\242s\254{+\335}\222\26\204\221\16\345\30w\362\21=\1\215\350\1D" #"uX\220\311oeF1z\26\17\226r\316\232\337\233\225\240\210\312\3746j\227" #"T\27h+\2444\260\356_\2653e\362S\220\2412bP\252\314Z\27\26\373" #"\316\302\212\6\353\320\243\325\372\251\202b" #"p%\234\212L\273z\b\223\353i\204" #"\303\223\24L\322]!\304\210\324w\210" #"\324\216\316\231\a\240;\3639>\375\357" #"\377=\346\263\31\356\334\271SB\373>" #"\222bg\312\256\341\365\256\220\1v\266" #"\306\21\303\351s\373\353\30\340\f!\242" #"\333J{\273\240\372w\252\277\247\317h\327\265WJ\t\227.]\222q\341Z\273" #"\322\316Z9\217\220\236\317\376\336\335\342" #"\2\316I\267\310\350\331\331\n\322MH\300m\337\367\330l\266h\333F" #"\35\300\214\30g899\3030\364\230\317g`\226\266\212B %D\222" ) 500 ( #"\356B\342pj\277\370Y\203'\236x" #"\f\317\274\375i4\255\24\346e\316\330" #"\352=\347,y\267f\337\333\266\305\345" #"\253W@ <\361\370\223*\207\357\307" #"\357\177\352\3670\364\222\356\31t\200\313" #"t\244s\316\204\300\4n\305v\1BC\5\n2\371\225\b<\f\370\340\a?" #"\210/}\351\v*_A\206\352\314\347@\6RfHd\331\242\6\22}\367\344" #"\20\264u\237\244\235\312 \235\20,\272\257\344^\214X.w\245P3%\200\304" #"9lw\32\20Wv~D0:\354\351\345FN\254\330\32#~\344\r\322\253" #"7\17r\37\342\373\22\32\300\31b\26" #"\305\315\2210\263\360\303\4p\370\211(" #"\343\331\310(\213AT\1.\271EO\203\366\32T\246\260\266*\321Ptv\357" #"\265t\201\222D\3556\257h}S\302\254\300;\202\23\20t:\eX\346\235D" #"\26\177\334*R\251\21\346,\303F\34" #"\253\22\341\352\t\371\360\222?\244)%" #"\264\232\233\305\\\303\352U\260\252\3P" #"\25\201z/E\361\326\367z\266\317^" #"\376\367r\232\353\357\203\306\"\245\3226" #"\213\341V\301\210!b\0+\223\301\302" #"\n\206\200d\373\207\4\202Um\327\357)G\236!N\301 \271}\261\251U\241" #"f@H\363f\375\332x\206\305\252\351" #"\301\326C\326\256\255\355\332\2\20\203\214" #")\265\237\t\350\r\bm\355\16a^\363\303\302f\22\31H\242\270\35\2039\6" #"\24\343\265\2342_\232O\241\340\241^" #"\203\225\255b\26\307\307\330\35f.\323" #"\1\17\16\16\20\211\320m;\2547\e" #"\\\270pA\230\b\202\200\35\32\207\332" #"\2123\341\344\303\377\276.\221c\350&" #"\212\336_\313\376\234\357\314\224!\337\325" #"u\312\347>\343\257\r@\333\30QI'\221\360\246\200\315\266m\265\am\225" #"\311\21\e\r\0\211\21\332(Jf\310\240(A^s\236\364\346K\221@\23" ) 500 ( #"g\b\2010\233\315\301\266\207zo\26" #"\376\235\256\221\275\306\255\271\252\261\364\317" #"g\373\356\301\257\201g\eFb\237-z\4\25\4\353R\3`\354\354HA\336" #"\351\351\251\373\356\fJ\2418!\362y-z\3125?9\304\b\322\264\23f\t" #"\t\2\342<zp\245D\3b\254\323" #"\245\32\255\276\0064\342\240\35E\220\30" #"\210F\24432\23\232(\316\2539\206\362\2078\210\n}u\21494z\226\225" #"\34\253k;\237\317\361\311O~\22\267" #"o\337F\316\31\237\370\304'\20(\340" #"\370\344\30_\376\362K \32\2033s\2469\325\342<I\r\200:B\f\346P" #"\f[\261%T\307#{\6\220\202\1`%\e\250\236\201\302\272\241Q]S\235" #"\305\30\32-\270\255\216n\0\225\302\226" #"\30\352Z\214\0\240\371s\16\\y\375U\317\226F\250\202K\375\210U\37713" #"B$\364\303\200\206\345\36|dN\b" #"\34e\230\303\270Va\352\274\373\320\277" #"\234\263\b_a.BY\277\27z\336\374\365L\326\247\351\0\266\316\21\1?\270" #"\371C\254\326+<\363\3143\350\272\16\215:Y\336\2765M\203W^}\25\337" #"\377\376\367\1\0\327\257_?g\367\374" #"\375\373\177{Gr\372\362\16\247\335\253gu\3151 \304\322A \206\210~+" #"\323\f\21\2\32\252m\347\354\232&K" #"\336\356\344\234\261\263\263\203\27_|\21" #"\353\365\32\233\315\246\350E+^\362\251" #"Pe\32\235:\24~o\0\355\306\341" #"\236-\245\204\266\25L\304\32]\220\26\247\322nr\333mp\355\332#*[\"" #"\323\201l(O\255m\2I\1f\2\220\266[\244\325\n\242/\317O\222-\353" #"\34\2\206^&\324\346 Q\253\241\eppp\210\263\263\23\244\324\243i\347\"" #"\267:\311/C\25\r$\325\fY\34T\31.a" #"\235a\254\343U\300\215\e7pzz\206\255\26\337" ) 500 ( #"\305h\353k\0R\260S\346\36\222\203Nzn3@5\262 Qr\1\3136" #"\307\300\316U\327%t\335\6\201\264#S\36\32043\275\317z.\275\315\27e" #"\231:p\0\0 \0IDAT]\200s\16\223\227\3\3\323\322)V\243\275" #"\241U&Xd\244\361\236&p\276\372_6\177,\344\336\223\v:\16\322\252\227" #"\313\31\205\201\236\\B\\V\245(\3757\307\243\360\324\255\3\bhPg5\353" #"\221Ae6\\(\244\34V\0\20\301\263\342&\1v\220\\\337\306X$a\217" #"\243\346'fh\330\210Q\230]\22\22J\f\2313\250\347r\216msl\336\273" #"\32?\337\255\300o\332\324S1e7z\36=t\305\343\217\322\3636\rC\251" #"\336\314`\r\207\273)qjM\6\2260%\243\206\273\263>\23\264=\16\2210" #"sr\234\375\36\v[.`\316\n\2624\317\352!!\254\221\361v,\202\345\36" #"\327p\274\24\372\201\b!\212\340\261~" #"\246\357\372\312\250\263\17\313\327N\6S" #"\220S\214e}\2\370f\325\246 <\233\351\225+\25\3\315#p\340\25\335\264" #"\220\305\224\224\200=\31m\233\2211k[\351D@T\22\351\355^\275\222\2572" #"\243\f\25\217\231\327\n\360\4\4R\266" #"\363\347\n1'\306R\316\221\264\303k" #"\232*G^A\372\3653\346\251\254\a" #"\214\225\225g\312)a\261\\\242\357\273" #"\221\3014\307\203\210$mA\357\224\0" #" Ra\235l\215\214\305\224b\5\363\374\eU8(\367V\35\331\363\5H\366" #"{K\0050\0e\257\251s5e\250\200qa\23186\352p\2\2227o\314" #"2*\313\267^\237\25\26\275\356\e\27\0067h\372\324\210i\0\25\31\312*P" #"\344\302v^\256\254Q\274\350\262\n\n;\355|\22\264\203CN" #"R\270E-aH\22\25\21'<!#\232\244\3109VFY\n" ) 500 ( #"\215$\207S\276P\365\17\217\307\241_\271r\5\237\374\344'q\377\376}t]" #"\207O|\342\23x\356\271\367\240\337l" #"\320\17\t\177\372\237?;:\363\25P\325B\334\351\272\333}Kn\254\24\2131" #"e\0313\255Q\270\354\316\2+\e\233TG0WY\263\263R\332\357\21\225\302" #"01\21\0265\224=D0\262A\3006\330ZaY\305\365P\364\3734\245\302" #"\277\252\223L\332\27\332\226Q\242[(" #"\21C\22\347\201\245\345\3304zd/\26J\2718Q\26\21\363\366\303\333Wf" #".\335P\214\321\207\32pk\343\344e" #"jd3\234\275\266\367\264m\213\273w" #"\357\342\323\237\3767\270\377\340\1>\372" #"\321\217\342\247~\352\247\312\271\b\314E" #"\6\333\266\301\227\277\374\22\26\213\5\316" #"NO\361\366\267\277]:\aM\234\201)\213;% \354\3472x`\274\306S" #"\235(N\214\330\273\235\371\34_\371\312" #"W\360\231\317|\6{{{\370\345\217\3772\36}\344\21 g$\362\223E\307" #"\340\332\357\253_\317\305b\201\323\323S" #"\354\355\355\251S\26\n\230\265\32\232\240" #"\321\30I\2514=Ie?\254\3702\2041\3010\f\214\20r\211\230\330\336\246" #"!\227\357\223h\361x\335\246\316\3254\242*)tB\354\3713f\351F\24b" #"\r\341G\321\a\247g\247\210Az\346\367CR`\36\355C\0,\232\253\317F" #"\2222V\352a\262\264ed\226\234\337\266mqvzZ\310#;\367I\331Z" #"9\343\r(H;\266\234\aX\21|" #"\327m\261\335\256\265\366\200\324\371\265\342" #"I\261}R\210\34\1\f\0e\255KPL\206\332w\177z.s\252\254\272O" #"\2252\234P'6J}A\210v\346H\243\344Y\3421\306\n\30\223\351\301\235" #"1t\345\20\2510\304`\271\27\2547\17\0\1" #"6\250\241\204\205B@\214\362\340v\310\332\266\25\3" ) 500 ( #"\221R\5\206\324\214\30\234\363\354\316P" #"\24\202\bG\204\205\310\2740UE\31\301\0344Q\231u\343m\244_.\a\221" #"2\300\201u\244\2474v.9.\16\\\217\32\30;\300\vU\270V\315]\362" #"\364h\234Wh\327)\212\320\e\r\2422\333\333\373\305Vh6\f\3\322\220F" #"\306}\3102\332\24C*\355\332\314\342f\317P:0!\341V\3353\204\2<" #"\n\240KP\17?\n\v\244\212`\32" #"\352\361\373\344\225\227\25/\260\1\\V" #"\340f\a\224\204\305\233\315Z\2547\233" #"2\321\305\2303\306X\241\e\0302\366" #"\303d\242\254\277V\364k\232\3209E" #"\354A\224W\330\326\377\27\266\277\232\327" #"\231\262\0g\2201\271\312d\e\230!B\2040\4\215N\27\263Ve]\356\205" #"-\211\26F\254U\301u\377\203SdA\30v\256\341&\316\204\266m0`\20" #"qu\23\321\306\f\2441\\Q\363j\353\372\332{\247F\321Xf[\37\"\2" #"b,\0b\3503\372NZK\245$\325\252)\re\370\200.\24(P\355\257" #"\351\316x\211N0 \37\257\3007\245" #"\204\345bw\304\376x=\343\331\251\224d\32QT0\30\242\354KJ\203t\22" #"\b\222FQ\201\311\230\321\367\306_\316" #"\26\n\310\5x4\255PF\274\212\203" #"\274\277\277\217\323\323S\304\330`oo" #"\356\344'\227\353xv\266\260xj\4" #"\2\5\231\f\267\263\203\234j/\331\267" #"\336z\v\327\256]+c\242\375\331\367`R\230G*\316\27r\306\0\0064\244" #"\327\206\31b`p`\235[\220k\2765j\201\22\24\254\0310\363\362r\260\177" #"\200\337\377\337~\37GGG\330n\267" #"\370\205\217\374\2~\374}\357\303\351\331" #"\31\220\201\315f\215\3304R\3765r,\"$W;\1I\230\32\246" #"\254i\a\254\255\264L\227\31\330\327" #"\265\a\217\362\327\315@\211~eq\236" ) 500 ( #"r\215\6U\243_\r\231/h\223I\227TZdI\270\34@Hz\0351\362" #"l\2\v\0\232\216\341\373t\327?\251\260W\266|f\e\354\274\230\254W\2669" #"\24c\32\\\227\e\357\200\305\20\325\334" #"Hq\363\316|^\236\323\353%\177\26\3141\3149\"\204Z\354\311$ (\206" #"\232*8uzG\347Z\257\333\2663" #"\\\276t\31\313\275%\376\344\263\177\202" #"\224\6\274\360\302?A\237z0\17B\3221a\263Z\341\344\370\1\326:E\360" #"\344\370X\1C(\316\273\355\357\224\325" #"-\373\216\261\235$\5\352\305\236\253\235" #"\263\342I\20\200 \305\335\267o\337\306" #"\27\277\370\5\354\357\357#\306\210?\374" #"\203?\300\277\370\27\377\213\\\223\224}" #"U dE\344\0@\332\255\306\337\207\344j\3668>9\306#\217^\5\262\246" #"p\350\336Z\341\22\264 =R\215Rz\375IdLl\5\243\362|(\304\212" #"\254G,N\371f\263.)km+\306\270\340UOT\0200%sD\16\316" #"\3533\263=9\213#)N\212\214\337\276pp\2107\336x\rG\367\357cw" #"w\257\354O*\255\367\240\300\274\346o3g4\255\264\362*\366$0\26\2139" #"\26\v\231\246\230\206\36\5+\251\343." #",7#\266\r8g\374\307\377\370\177" #"\341\357\376\356\357\220\322\200\305b\206\367" #"\375\350\217\342\203\37\374 \372~\220\276" #"\375\fH\201\251~\a\2\210$\265)\247\r\"5HV&\306\4D\31\303^" #"\364\252Ed&\230\320d\315\362\261}\235@=O\202\r\207,\300\227\2#\310" #"\246\216\333K\331\207\315\373\26&R\253" #"\260\265\230\2\314nf\261\344\v\312!" #"\35\347\362\330\313\2064\230\222\3139#" #"\23$}\240\255\211\335\262\351\0316a\306\306\327UPm\207*\251\300" #"\321HP,\327\313\330S\311\v\5(6\222\333\252\347$\351\357\241}g" ) 500 ( #"\21\250\364\326\25a\202\353\304\200\332V" #"\f\25\30&-h\203S\344\272\303\272" #"\271\200\345\212y\343[\236\377\377\247\353" #"\315\203\365\272\252;\321\337\336\373\f\337" #"t\347\253\321\266,y\224<@\300\310x\266\223\230\30\210\215!dp\205\4B" #"\\\235\252\220\256\356N\247\253_\325\253" #"\327\341\375\335\257\272\23\302#\351nR" #"I\200\2278\30\354\20\300\3`\e\360<@\300\266<\305\0266\222eI\226\256" #"\356\364Mg\330{\277?\326Z\373\354" #"\357\223\373RB\262t\357\371\316\331g" #"\3575\374\326o\375\226\240e\0s\264" #"l\220\241\212\215\30\224:\ra\6\0\243\0\257\250q\251\266\266)\1(\vm" #"<\264\361\310r\342\234\351\4\220\0261\347xJO\24(\310/1\244P\324t" #"\246\270Q\4b\254\320\220\301\247K\334" #"\361;?\275#\227>g\\\0244\371\3119\36\241\353&\220t\271\277\351\3547" #"F\4\302=\323\v\203\265\204|\304\317\20\337K|\17rm\200\336/\214\354I" #"\0372{i\236T\16\301(+'r\\\204\b\270\332\3029\313\31,I\317\211" #"^*\5\341\216\34\223\243\0V8{a\375\275\3M\326BD\5\3218t\350" #"0\216\37\177\eI\246\320n\265QW\365\4\342<\201\252\363\301\257x\264ql" #"\200\233\2634\205\344\252\206\357\346\234\v" #"\3430\323\224\344\250\264!N\37!\237\212\234\204\246 \216\246\26JSW42" #"<\254\255\240\365\3743\206$\351\3224\301\334\374\334\4\a\253Y\a)uGN" #"\237\253#\0x_\23*,\364&\223\20\177\22\223&fb/\207/\3378&" #"\0!\340\244\367m\2023\247D\200\364.;\235\16#\26\234\20iL\330\256\370" #"\3131\22T\3275tb\360\317\337\370&\376\346o\376\6_\376\362" #"\227\361\205/|\1\177\367\245/\5\316\236\213\202\24ki\357\304\353`" ) 500 ( #"-\361\221Sm`\271\364i\224\201\321)\227\360\233\340\32,\235&\366,\4N" #"Q\362\20\316\202s\230\233\235\305=\337" #"\3766^~\351%\324U\205\337\373\324\247\360+7}\0\303\341\b\nD\205j" #"\32\377\374\4\212H\237\340`T\6\223" #"\310\340\4J\326N\247\5\220\37\220\375" #"\0\271Ndo\254\265\220\215\342\t\352Et\\'\222\364\370W@U\243gt" #"\226\3\22K\367][\352aPl|i\0\211\2034\22\206\306L\251\08\361" #"5\214\34;J.N\17\210\247\232\177\35\20\340@\307|m4\211\254G#\345" #"GS5\231\307\35\357\371\211\300\224\270" #"\324\222\177k\2269\364\2202\260>m" #"\357\211\255\216\371\263\r\362Xcyy\t\327^{-R\225by\313\22\36z" #"\360A<\361\330\23h\265[|\256\200V\236\343__}\215\371\301\t\6\3\32" #"\220 H}l\343\345\363b_\35\337G\354\237\4\202\2225\226&\246\0064!" #"D\325(\215\262\256\260u\3136TU" #"\205K.\271\30\27]\264\17\307\216\35\203\0h\211\241sJ\276\\\361\231n:" #"\372\275\27dVzwTh\252&\37A\1\247\265$\315\31\363\352\343\346L\212" #"3\350\316e\2779'\275\4\t\200\246\232)\357\314Zj\230mwZ\350\367\a" #"\341\337\275wp\250\303\363\306\375\3\265" #"\263\241\251W*\334q\362K`S\22\366\207\224\357i\32#\305\30\355V\v\273" #"w\357\206\263\16\343\341\20\r\26\321H\304\252P\30\240?'\332 1\4\312Q" #"\302X\3p\260\\]o\267;\250\313" #"\222x\272\f\212)\245\210\276\303\300\210" #"2\32\217=\3618^z\351\25\324\265" #"E\253\325A\236\345\370\301\17\177\200\341" #"h\23J\211\35k|p\222\244PZ\241\225wP\24#\244I\n" #"\245d/p/\b\35\250(\226k\342\256\3518E\376\34\237\241\351}" ) 500 ( #"Y\327\24\303\310\324\275\4\230,\325\312" #"\315\311\213\21\335Kq\230\326R\303\222" #"\367\314r\365\36\211N`\235\205\367\214\210z Itd\300'\203\267`\250\"" #"\336X\374ou\355\242\256\306\330\30\310" #"\367y\300\eh\r\232o.\310\e;\2534Ma=\353\30\262\20\275\322\200\f" #"B\360<QK\202L^Q\331)\315o\34\304+\20\247\264\2164\332\2\222E" #"\307%lH\251\32XKS\\\302\314o\371\30\327pxC\200\300\301\2246\232" #"|\231\326Afeff\6G\336|\3634\276\252R\212\4\267Y\262\314YK" #":\354\334a)\316]T.l\345\240\23\35\306\237\306\250\0q\313\32>5e" #"\343\n\2129\332^\34\205\232\344\16\375" #"\357\2\312\30\275\211;\344\241\24\2624AQV\301\21A\302\32E\aK\270S" #"\361W\203v ld\371;\243I\333\22\320\334%^\235\206\36\305\367)?\253" #"\271\274\6v\222Z\253\240+k\264\206gU\r\317\3\0064w`\233$\301\306" #"\372\6\313\313yh#<\252&\b\365\336#I\223\3200D\353\t\376\36^w" #"\257hX\n4jK\362+\243\321\bw\335u\02767717?\213\eo" #"\374e\274\373\335\357\206w\36\343b\34" #"\356[\316k\177\263O\311\00371\310" #"\363M#\331\323\347\357\364\263\350Q\273" #"\nY+\305\333\307\217\5\344 Q\242" #"\2\340\203\262\210\326\212G\177OV%\224R<db\222\367\330\357\367Q\226%" #"fg{\23H\205\240\377\316\261\244\235" #"\346}\306\311\e\235uR\212\250m\215" #"\331\31\322\273|\372G\317\340\375\227\277" #"\37\277\372\253\37Fm+\376\231\311\4G\222b\372j2}i\210\243\0\337\205" #"\300Y\251\323\e\30'\2229z\215\20\304*$3|\rA\370G" #"\203\21\236z\346)\314tg\203=\375\277?\373Y\364\373}\326t\344" ) 500 ( #"\263\r\4\24b\246\327\303\321\243G\261" #"{\367nT\265\203\3675\2346\320^\323`\6\261+^\3618d\241tM&" #"\316\361\227$\372\22\254\314\316\316\340\361" #"\307\237\300#\217<\2024Mq\305UW\341\202\363/\300\251\225S\341y\234s" #"\2413|ss\0\223$\250j\32\267\353\3418qkhBdW'\367\221 " #"\244\r7/\346\2137\350\26%\357r" #"\362i\240\216\212$\23e\235\343\244\216" #"lY\323P\246\270I\220F\255\n_\227\225/\24\202\r\264\236\6\3338\304\35" #"\341MPA~\213\356\271fi.\255N\257\212\204\0M\211.7\241\327\r\312" #"\350A\303,\310\216:G\264/\317\345" #"S\n\310\2333\32_\277\251\374\231\320" #"\240fA\r\331\336\361Y\0%\26\2\276H`\31\326#\n\246d\355\6\203\1" #".\272h/\366\356\275\20_\277\353\353" #"\350v\333\370\316w\357\305\322\226\5\\" #"p\376\371(\253\nI\232\342\205\27\16`cc\35[\266,\343#\267|\24\335" #"^\207\336\223\fQ\212lF\f\210\305gF\376-F\342\265\212z\25\246\374\0" #"8A\254\252\n;\266m\307\236s\366`}c\35\217=\366(\266m\333\216\321" #"h\204\217~\364,\362\r\34kh\361EZ\3A_\235/\tR\306\351t:" #"\310\362\34e)\362hi#\231)\357\221\3G*\2026`Y\3\25644L" #"A\352\1\307\n-\262 \364sZ+\264\333mTe\25\0\fijU\276Q" #"`\222\367\256D\326\324\361's|\222DC\36\344\2144>V\320\\\e\206O" #"Yk\321\337\334DY\226\350\367\aX^\366P\\e\360\336QE\314{\242V" #"B\202I\6\32\30H\224\365\2238Jk`}\243O\261\206\322\360\234T(h" #"x[C\263\4\342\221#G\220\345)n\275" #"\365\267\260\261\261\201\247\237y\22\255<\17\211\231" ) 500 ( #"\326i\bP%!\241Qa\216h%\203\25REQ\r\345S*o\3623b" #"\177\223\250\367C\354\362D\302\371\0161" #"H\34\243\320\2128Btcm[\331\310\223\31\272\3344\311yI\260\347\35\5" #"\223Z\321/\tr\235k\262\2738\333\224k\307\237!\337\23g\246\202R\321\1" #"j\20\0170\37&$\204\234\231%I\334M\312\207\235Q\332\3300:\316t\345" #"p\204\362\201u\304\313R\fu\v\242\340|\240h\220\16&}\236L&J\222" #"\204$-\\4I\312\203\304\370\247\344" #"\327\304\20\t\351>\346]\22O\230\326" #"\322\30C\224\16\376\31q\314\322\1+\a\222\16\r}\236\6\3516J\203\3104" #"\362I\222:\215s\227\367,I\b\221\344\311X$\306\20Z\317\234^\tx$" #";\27\356\222\302\351\352\b\362\236\343\354" #"4.K{Fn\372\233\eH\323\f\355v\233\220H\337p\223\225\30\4vV" #"\261\1oxL\rrJIU\n\221(\351t:\200\3\17\v\261\23\b\256\30" #"\217\351\300\310+\217\332S\246MD~" #"\317\350?\5\201\251\320\17\30u\254\312\22UU!\317R\264\363N\340^\306_" #"\215\6'\30\215C\350h\5\24O$\3634\230B)@Y\314\316\315`\337\276" #"\275\360\316\241\256+\334w\337\275\370\342" #"\27\277\210W_{\25\335ngB\345\4\0\322,\205L 4\241\333\177r\310" #"K\34\334\306H\222\367\304=\225\341-" #"\32\32Y\222c\\\24\350\17\a\315\0\fy\36\246X\b2\26\a\1lM\302" #"\277\t_4\310\326h*\177\213\321W" #"\321\331\23\256,\344\336\234b#\r\342" #"\320y\207,\313\361\317\337\372\6\236{" #"\376\247\330\266e\v\236{\366'\270\353" #"\256\257!\233j\234\223/\252H\221,T\374\fq\331\\\364\235\311" #"\211b\2%\202Q\244[lt\30\335\34\a\350q5\6\240\t[\336" ) 500 ( #"\3\355V\27\277\366\261\217\241\256j\214" #"\206#\300{\374\305\347>\307N @\257\34\344&\200\2M\322\323\232\306r*" #"\201`\350\373\24}8\243a\n\276\6#\24$\37\25\a`\361\257\260&\326\241" #"\225\347x\341\300\v\370\316\375\367\207\241" #"37\335x#\6\243\341\204]\22[CI\e!bi\222\321\336\322\206\337_" #"M(&\377\242\30\257\331\347\202\6{" #"O\215\234\210\3]\t\232\242`\267Q\275!^a\f\264\210s\213\351:\361\273" #"\266\326\241\256,'D\32F%\324H\312( \215fv@\244\371+\1\267\367" #"\304\241t5\340=Q'\234\3650*" #"\201\360\253\225j$\5\345\274\21\335\202" #"\24\27\24\243\374\274A@\362dq\322" #"\301\364\n\335\370\303x\217\312s\320;\347R,\237\21:/\244hC\366\201\0" #"\rJ`\352\0R\310\257X\235!\376\34c\f\212\262DQ\216\361\251O}\n" #"\333\267m\303Yg\235\205\273\357\272\v" #"UU\241\235\3478\374\363C\30\215F" #"h\2672\334\366[\267\341\234s\317\301\226-[x\3175\310~|\326\e\364\254" #"\t\334c\233\20\374\271P?\224\242\6" #"\356\310\376\362\17\3009\207\361p\204\353" #"\256\273\16{\367\355\305\322\342\22\312\242" #"\300\363\317=\2177\17\37\346J\225E]Z8P\31Zi\251\n\370h\342\36" #"=w\257\327\3\274BmK4\315\221Q\277\204\321!)\a$!j\220a\262" #"\1%\a\272\315\336kBjL<3\340\221e9\351n\27\5\274\27\n\16\340" #"\225\r%v9\vF\e$\332\260\26\277\0161\f\25n5'n\b`\203\234" #"Oy\305\224\314\321\331\333\266m\e:" #"\2356\252\252\f\361\30\355S\236\374\b" #"\211?\30\35\215l\227\342\252cY\25\0<\332\355\26\272\235\26\312\252" #"\n\225\0210]\1\320<,\310\"1\6W]u\25\366^t\21\366" ) 500 ( #"\234{\36\316?\377|z\257L;\312\222\214\355\a7\217\31C\b\266\2\312\272" #"d\2760\315\"\260\266\6x\257\223\344g\223\310J|\344\243=#vJ\30\a" #"\323\240[\263V\232\253\230\214j\223v\216\n\360|\200\322#dj\272SR\34" #"\3\215]\244\5\240x@\234\1\225@$(\231v\266\361\1\217?C\20\36y" #"\300\200\366`\262\313\216\346C\3BpNy\246q\203\304pg%\353\341Ji" #"\240v\204\272\210v\2564\311I\3\31\24\27ey!\3234m\246\177qC\212" #"pHE\240\37b\b\270\271\r\212\3701\232\215\266\2320\n\210\16Rs\0\232" #"R\16\2021\245\317\244\2117yF\1" #"\241\310\233\320a\245`4\236\362\244\265" #"&\376t\264\336\262)$\300\236\246\27" #"\204\317d\262\272\363.L\312\242\203n" #"\340\\\244\341\310\1\210Ll\212\3\3528\3\25\3070\3350$N\276(+\264" #"\362<\4\375\0x\343\212\b5\227\37l#X\0376\276'z\214\255}@I" #"\236y\372\307\370\263\377\366\347\370\334\237" #"\3759\236\373\351\263\350t\332a>=\321\0'\35z\214\250\310\301\212Qd\t" #"\270)qQ(\353:\214\305\364\336c0\34\242\266\204\370\346\2356\321o<\31" #"\22)\351[G\331\267\202\203\257\35#\22tNh\317\221\203\2432%]w<" #"\34\341\346\233o\301\357~\352w\320j" #"\265P\327\26'N\234\300\335w\337\215/~\361\2138x\360 Z\255\26\272\335" #".\2141\310\263\34\336\2710\31/P\"\370+N\36\305 \310\363\311~\17\270" #"\247Iq\326\231\273\320j\267(\350\251+x\rjx2\32\225#\243\344<5" #"4hM#\201=\313\3\362\353\5@\262m\316\211\374\231C\2424\225\315t\2" #"\317\22v\301\220s\2213PW47?\200" #"b\b\235\30\274\365\326\21<\367\354\263\350t" ) 500 ( #"\272(\253\2\263s\263x\351\245\227p" #"\370\360\341\250\21A\23\232\a\342\201\e" #"\235PCW\204B\305\311<\241\26\n\0\321\0\254g\272Vj\370\356N/\237" #"O#\342\264\227\0o\25\312\242Be" #"\v\274\347=\357\305\177\371\277\376O\374" #"\233\177s;\0\217\225\225S\370\302\27" #"\276@\266'\241\252\2031\6\0164\374" #"\245A\303\353P\31\262\316\302k\305T" #"\21\236\5\17\305U\36^\0304\245\374" #"i\333!\335\377y\236\343\370\361\343\370" #"\362\227\277\f\2555\3224\303\177\374\343" #"\377\4\347\e\231\252i\200CFrn\366\373\374\367M\305'I\22RL@\303" #"\231u\354\f\t\371g\0\4t{\3163\217\230\233\321jg\3\247\222l\214\342" #"f/\nz\343j\213|O\374\347\30\321\221w\2405%#\"{F\272\267\344" #"L=$\310\341\221\350R\215@\223\350\311u\1\240\3626\4@\216\345\364b{" #")\375*\326\2\\\fe\24J\207s\247u\22\22\0\31\261\32?\3134\342\24" #"+/H\262(\234\341\3307\20\325\306\22\312\306\366\231\226V5Z\274\22pF" #"\211\275\2\355\267\215\365u|\364\243\37" #"\303\374\374<z\275\36\356\274\363N\364" #"fg\360\243\177\371\21\216\35;\206\313" #"\366\277\237\370\353\266\216\246E6e\363\330>6\201\aIci\305\310dD\315" #"\320J5\340\205$<r\235(y\221_\345\270\300\2557\177\4\37\274\351Ch" #"eml\335\262\r\177\365\227\377\23\17?\3740\272\335\36\222Ts\16(\215}" #"\224\210\23\32\232\204\317\310\363\34\326\332" #"\311~\203h\257\20\312\356\30\374\2\272" #"\235.\332\3556\321K\302\2635\250u" #"\354\323\342\270\245y\247\6i\232\240\225\267) \17j%\215\277q\316M\0h" #"\340$\242\256\2321\265i\252\341|\305{\203\223\e" #"\357\202\242\22x\242\34\24\a\221\336cvf\16\355v" ) 500 ( #"\a\e\e\233\223\250\261j\24\244lm" #"\1K\275 \31\353\370\316\316\316\242\333" #"\351`~~\36\213\363\363\350\264\211\"" #"W\226%\352\252B\311Z\347\2.\312" #"\220\e(\322\31>\343\214\235\270\356\332" #"k\320\337\34\242\256-\274w\244D\224" #"(Tu\303\257\367\312\301\203\247\250y\a\245\r\240\201$%\tBcx\317x" #"\252\312\320#\370&\336\243\27\27|w\f0L\203U15$\256RYWA" #"i\323\214\0\226\227 \27\214K\3331od\22R\3674\365\3114s\226\233\233" #"\320\34\270\20d-\37n\214\tSW" #"\342\227\23\313\255\304\301\265\322\0,\241" #"v\24|M\6\3104\371D\205\373\213\263\313F\276\fT\6\nri\223\260\267" #"S\223\345\598\22$kM:\300\3265\6 \346(:\327(D\b\377O" #"6\233\360u<[\377\340\\T\23\34\306\301\310t\0&\206N\202\334\214%\231" #"\0.}\207ub\235Z\202\333\303\317\244,]4)\377$\250\210\345\317\320\250" #"+\232\226\245\"\247N?\327\250E\210" #"\301\b\335\353\301\370\237\236\331O'G" #"\364\364\24\320\366fz\330\\_\17\377N\306]\307U2BH|\23(\207u" #"\363\22\250ydi\ve5\302c\217?\f\a\272\307\373\356\273\17o\277}\34" #"\327_\177\3\244A\317z7\271\247\3767\211W\354X<\a\244`T_\312L" #"\222\320i\255C\200,\1\210t\367\322>&\264\211\202/\346\2\362u\340\"Z" #"\205kP\20\245\201\301p\23\273w\357" #"\306g>\363\31\254\255\255\341\301\a\37" #"\304\277\376\353+8~\3548\376\351\237" #"\276\201V+\307E\27]\204\367\355\177_\b\226\245\f\3368\321Ina\34\244" #"5\357\310\205\200\216\366s\205\353\177\361Z\314?;;a\3b\232K" #"\\\372\25\364\206\250\f\374\316T\323L\324\224dI\177x~~\236P" ) 500 ( #"\2Cex)/Kc(\4I\227k\263\340\277w\36\217<\362\b'\302\264" #"\227\252\252\302\334\334\34\236{\3569\354" #"\331s\16\252\262D9\36C\201\202&[\23\252!\303)\2\337\313\221\370z\253" #"\325B\257\333E\257\327C\273\335\201u" #"5fz\263\230\233\233\343\221\234\254\301" #"\231\246$\3114\245\27\36\333,\243\323" #"\306\69\205r<\206s\16\333\267o" #"\303\355\267\377>>\377\371\317cm\315" #"\343\v_\370\v\334\364+7\341\334\363" #"\316c\300\226T;\322$\305\332\372\32" #"\22\223\242,\213`\324\345\363\2646\234" #"\4XxF\357\274\4u\334\245\35\333c\331W\306\30\f\207C\374\365_\3775" #"\332\3556\2141\370\267\377\366\217P\326\5U\36047\230DIx\226e\364\331" #"\343\n\263\263\263M\265G\202~(\30" #"\255\220\30RU\221\346\256\306.\310Z7\1bH\256\225T\1\311\16\20\25\b" #"\20\372\333tu(\266%\361\337\307\324\69\243Z5\301\256\360J\225\":D" #"<\265\222|\204\236\360m\261\r\323\256" #"\261\235Z\235.\327\25\354\220\6\244\351\316\244\206G6\363zZG<f\t\262" #"\375\244\256\257\254\tE\265\24\244V\266" #"\206\27\2512G\201\264\370\e\361\25!" #"\241\t\327QA\363\236\220B\335T\332" #"\2\"\246\241\265\207\347\367WU\25>" #"\371\311O\342\341\207\37\306s\317=\207" #"\317}\356/P\216J$i\206\263\316:\213\354\263\213+D\224\264\230h\234z" #"\226\21\305\352\324\251S\330\261c;z" #"\275\16\264\241\373\35\27#\244Ik\"" #"\250\223\240/a9L\303 \215\354\323" #"\321h\204\376`\23\353k#\274\362\362" #"\313\230\231\241\252\326\277\374\313\277\340\314" #"3v\342\321G\36\307\213/\274\214\v/\274\20\227\275\357=X\234Y\304x" #"<B\345H\226L\326C\336e\222\20\360E\23\3072j\0266j\342]\206" ) 500 ( #"D\303\30\374\355\337\375-\362<\307\215" #"7\336\30\270\311\215\17\242\275\24\324?" #"\242\317\21\233+jR\324\204FT\255\345\345e\36He\270j\346\303\220\253x" #"O\3076U\e\203\271\16\3651\220^\357x\3623CL\345\220q?\305\374\302" #",\352\232\2Txj\330MtJ}#\254\372\220\246)\206\303!\206\303!\236" #"y\346\31\274\375\366\333\330X_\307f\277O`JU\242,K\214\307\244\a\337" #"j\265\220\3459\323\323\204\306!\236Y" #"\356\231@\214N\247\2157\3368\n\0X^^$jX\311R\257Zs\322H" #"egZC\203<\3171\36\255Q\f\241\223p.)\341\25\337*\25\r\0\316" #"As\217\2111\6U]\207\336\24Y\37\271'\231\276\30\354\264\242kX\353\220" #"\0\223|\264i\307\20\37\316i\304\316{\"\223C)T\266\346\354\225\fl\273" #"\335&\270\336Y\boI)\3053\223\21\256o\255%\216K%\243%mh," #"\222\305Ua\261\e\303%|\273i\276" #"\206\30\345\230s\354\234\213\272\255\25\213" #"\225\vZ\321tW\213\306\240 \241J\251\200\312\206\0O5A\227d\205Z\270" #"\213\265\245\251a\214\34Hx\327hf" #"\252\360\271\316Zj\220S<\201\3075" #"\320{\34(\320h>\312\364\312\262D" #"\236\345\354\340\3700r\211\275\256kn" #"\210\230\234^#\317\34C\375\301xC\221\0\272\3210F8p\n.\250\n " #"<\257\274/\307|\32A\313\304\31J" #"R1\255N\21;\223\262\252\320\312\333" #"\350o\364\303\276\22\356\242p\200cc4itDH\235\304\261\215\3218y\362" #"\4\36\177\3421\364\373\3\364z]\270" #"\272F\236gx\370\341\37\302Z\213\17" #"\336t\23\212\242$\4\307Q\2119\356\350\216\23/\t\\\343\362[\236" #"\347\324\0\0\16\2265\225\27\351\373\t\3514I\2024IH\234Z\1" ) 500 ( #"\25kE[K\210|m=\222\324\240\225\265\2\25\204\36\222\364e\345\275[\303" #"\373ZM\6.{\366\354\306\245\227^\212\267\336z\vO?\3634\234K\361\350" #"c\217q\200MgQh-\264v\223\315#\322\2106\235\5Kp\340=W\6" #"4M\32|\357{\337K\272\220Eq\332\330\315\20h\330\246i\2148\271*h" #"\273J\323T\232&\330\354\257c0\354" #"\207Q\226\34\331@\344\246\344|S\"" #"\300\350$\227\263\265RH\263\24\257\276" #"\366\32^{\3655\344\255\34\22<\324" #"5\215\322|\355\265\327\360\377~\376/" #"\260\261\276\301\34b*\257)\2550\34" #"\215\321\351\266Q\225\26\265-i]\34" #"\210&\300c\201\2156\230\233\353\241\327" #"\355\242\2625*[\243\256*\330\272\3063\317<\203={\366`vvv\"\270" #"\212\367\347p0\302\361\343\207\b\31Y" #"\\@UY\264\262\214(\\\360\330\271c'n\277\375v|\375\353_\207w\36" #"w~\355k8\343\3143\360\313\277\374" #"\3138\363\314\263\220\345\31\252\272D\232" #"\210\206hJ\363\352A\24\37\245xt" #"\271\"\356+\363z\370\3345e\330\330" #"\236&I\202,\3130\30\f\360\337\377" #"\333\177G\226g(\312\2\177\374\307\377" #"\21\266\366\214\240D?\303VJ\201\364ugffPV\25\216\35;\216\363\316" #";7P\224\254\265\264~F\223\212\2\232\6Y\361\17bki\260\206\16\2031" #"$\371\222\212\231\367\36$\223\32)\354D\1K\260\275S\311g\234\27056_" #"\20l\342\313{\253 z\341t?\36JI\b\330\49q\340*U\270\20\214" #"\243\251\2\305\1\t\335\253\212\236\25P" #"\212\351?\f\250\3520\261\230\21\32xn\\Cs\376\t\252\2\305\277*$\f" #"\301>{v\316\231\201\350\203*\245\340jJ\360\343" #")\234\341lB:\314\343\252\235\17\364\34y\346\242(" ) 500 ( #"p\345\225W\342\225W^\tc\330\27\26\26\260k\327.\f\372\375\340''\24" #"/x\235$\341\373\312W\276\202\223'WP\327ePJ\350t\333H\222\4k" #"k\353h\347\35dy\206\231\336\f\312\252@UWLC\362\330\334\334\f\366|" #"\320\337\304x4\246\n\245\2\274%\331" #".\353I\5\205\316\204\306\312\211\223x" #"\350\315\303\370\316w\357\307\354\354\f\366" #"\357\337\217\375\373\367#Ks\246\316H" #"bA%\3704\315\230\277\317\303=\230F\"\1\253(#\f\207#\24E\201W" #"_{\25\326Z\374\372\257\377:5\4:\305\bc\243\0\22\373\242&\270j\246" #"\234v\273\244\331\273\261\261\201m[\267" #"\6\325\201\320\f\251\b$Q\348\23" #"\202L\367\324j\265p\360\265\203x\360" #"\301\aa\22\340\202\v.\304\25\357\277\2\266\"z[\222SuJ'\244&0" #"\34\16\261\261\261\21\222\221S\247V\241" #"\264A\253\225\342\324\352\222\303r\366\0\0 \0IDAT)\234<\271\202\223" #"'WP\225\0256\326\327q\370\3157" #"\261\272\272\212V\253\25\336\243sD\327" #"\324\332 \313[\230\237\237\3@\357'" #"M\23\370\204l\272\304b\236\r\22\235" #";\216/4\260\266\276\206\361h\214\336" #"\314,4\22\320\210p\205\312:h\223p>\347\t\315\345\375TV\25\201p\321" #"\324K\251\226\n\2156\0&Q\214\21\316+\177\177\330\247^b\224&I\243k" #"\21\330\247\225A\"\235\215\222\271\304\220}l\24\302\rEN\30`y\35K\350" #"\307\267\276\365m(\245p\365\325W\243\323\351@y\17bHS\t3\316\370%" #"\250;r\344\b\16\35:\204-K[" #"\261\367\342\275\3605\31y\30\226\24\342" #"\200\225\34\366\351\335\257r\177\361\275" #"\305\277\a\0046\232\262V\2255\37Z&={\307s" #"\334\271de\243\262\30\230F\355X\337\20\302\203i\202" ) 500 ( #"%\250\210\242\240\300\231\212b'!\331" #"5\231z\255\24\252\240L!\215\r\315" #"\1\212\203w\357=\226\227\227Q\224\5" #"\372\233}Te\325\30|\325\240\16\n" #"\244W\351\254\247\362\262s\301\271\304F" #"}Z\322\204\240\2\217\312\226X9Ac\ngz=\264\273].\3034Z\244" #"\1E\211J\225\323\210|\234\30\305\331" #"V\354\230*\26\244\226\0037\201\24\362" #"\301\363h\350\v\364\216\311\251\210\4X" #"\222dXYY\301\363\a\236\307\363\317?\217N\267\3[W\250\253\32I\242\321" #"\351t\361\223\237\376\v\272\335..\275\364R\214FC\224%\355%Q\370X]" #"]\r\373A~\37\217\307!p\34\215" #"F\350\367\373\330\330\330\240\203[\2254" #"\2465Ip\370\360ady\216\315\215M\374\345_\376%\215\272N\22Fd<" #"\306E\311<\333z\"\330L\370{\234" #"\243R\317\322\322\22v\357\336\215~\277\217\242(B\331mmc\35\a\17\36D" #"\311\\\340\331\331\31\374\306o\374\6\346" #"\346\346\360\275\357}\17\235\274\205\245\205" #"E\242P\324\25\212\242DQ\24\247!" #"\270\323T\225\351\240\301F\\z\357\34\332y\eO<\3658^y\345\25\\{" #"\355\265\330\273w/6yL\263\\W+\0050G\214\23487\23xO\202\375" #"r\36}\315\6I\amk\200\334\177%I\231R<\256U5\311\16K\365Y" #"X\370\n\230_X\300\342\322\"\372\375" #"MX\347\221&)\321B\224\202\267\26" #"\243\341\b\235V\e\375\341\0\265-\220\245\31Ou\32cnv\6Y\226c4" #"\34\206r~\273\323\301h4FY\22\332\333\357\3671\34\16Q\225\25ZmF" #"3\274\303=\367\334\3\245\250\374\237&" #")\t\251\3275\241\260)\5\222\343\222dr\4Y5\234\354,.. " #"\317s\264\333m\274\371\346\233\301V\364z]\2348q\2_\376\362\227\321" ) 500 ( #"\351t\260\270\270\2004#*\26\225\325" #"\35\240Y\371B\363\336\17M\216\32\336" #"7\211\221\342f\216\370\335\32c\302g" #"\376\325_\375\25\26\346\346qjm\r" #"\377\307\177\376\317\204NW,\321\350\300" #"\232\3261\5\203J\210\275^\17'WW\260r\362$\316\275\340<\324Le\320" #"\206\20\271\252\256\270A-\344\245\364n" #"\203\23\364\r\345+\332\213\nB\323j\354O\b\322%\367\233B\315\342\0-F" #"\327\342\177\203\22\265\34j\316UZ\202" #"jB3\341E\215\207\252*\322\267\241" #"\24I\3279K\337\303\302(\364\367\321" #"\375\305\211\204\4\326\n\223\276Q\34\255" #"\342\0\226d\371\22jB\363\315p\36\37\2577@\32\310\4_M\4\365\1\234" #"\250\270?F\263\205\327.$\374\342_" #"\b\325\216\3567Z/\nf\300\366\264\221\325JZ\tn\270\341\6<\370\340\203" #"8q\342\4\256\277\366z\252b \2u<U\355\214j*\205\36@\226\347h" #"e\31f\347z(\212\2eU\240e:8q\342\4\264\326\230\231\235\201s\26" #"\243\321\0uU`\263?\0\24P\26\5j\36\351\335\355v\261\261\261\206T\e" #"\264[9\240\25\306\243\2\355V\e\312h\344\254\35\277u\353V\34=z\24\27" #"\\p\1\326\326\326QUc\24U\211" #"\247\236|\n?\372\321\217\361\37\376\303" #"\277\a\305\4.\304\b\335.\311\30nnl\202\224\242H\22L1*\356\274G" #"\345j\244I\212j\223&J./-\343\245\227^\304SO?\201\313.\273," #"T+dl\362t\220\e\333T\251B\247i\n\31 R\225\325\344\336Q\223h" #".\5q\36J\223\346\370\312\312)<\370\340\203p\316b}e\35\367~\353\333" #"\350\264r\\}\365\265\330\334\334\304\341C\207p\344\310Q\34=v\34" #"o\359\202\301`\20>{aa\1\a_;\210?\373\263?\303\270" ) 500 ( #"(\2hV\224\5\362\254\215\304$\204" #"\0\203\336\301\374\374<\262,\v\325\336" #"3\267mG\222\30\274\376\372\317\320n" #"\267\340\234\305\312\312I\314\317-\261\264" #"(\331\\\255MS5\326r\16\f\16\348\0\347-\366\355\333\213\341x\204$" #"\315i\2438\25\300\vZ/\3422w\273=\34?^1:[R\202\252\251\352" #"/\303h\224R\1`B\224\230\210\262\224\b\t\304\340+i\3177\240-@\325" #"\16Q#J\32!w\271\241&\223\216\r\214\310\362PP\331L\314\220\3579y" #"\362$\236|\362\t\314\315\315c\307\216" #"\35\270\342\212+0\36\217\251$\355O" #"\27\230\246N\354Y\334y\347W\341\254" #"\302UW]\205\213\215A\211\212_\342d\320\35;\361x\206}l\204b\243?" #"m4\235s<\272\257\202H\2058\ax/\244\351&\320\217\263k\341q\305Y" #"=\320\30\222\370>\224\211\202:MN\234PR:8\324\310\305\323\2244O\16" #"\361\26MF\322\20\261\345\205\25EA\331\260s\250\252\22A1\202y-r\217" #"\3153T\214\2547/~\342y\34\23\321=\330 \r\361\277\376\327\27QW\25" #":\355\16\332\3556\316=g7.\276\370b\354\332\265+P&d\215\2454\26" #";\261\351\2578\230\212\r\202 \313\243" #"\361\210\21\324$\214\232\fF\233\200\27" #"\336\217\21\222\16*\267j\357\261\272\272" #"\212\273\276~\27\212j\214,\313\241\25" #"\340\224B\236\345\200R\310\363\24\326[" #"<\361\344\343x\340{\17@\272\262\233\344\5d\b8\260\224w\236eY\bt" #"\203\274\vo1\235\30Te\5\2435" #"\332\335\16\22\2551\32\16\351\375\0\250" #"\2132\240)\226U\t\344]\206\306\32^\263,I0\36\f\361\306\306\6^~" #"\371eT\354\0\b\261\6\300\374L\0\350v;H" #"\323\24'N\234\304O\237\375)\0\2174O\321\355" ) 500 ( #"u\340!J\2e\224XL\276\233\346\314L\236!\331\353&I\202V\362C\337" #"\377\1\36\372\376w\321\355\315\340+\377" #"\337W\360\201\e?\200\353\256\273\16\343" #"\3618\274Og]\220\34\243\375T\3*\241\4\210\276+\n\b\210\217\345\275G" #"UWH\262\24\256\216\250M\242\352\341" #"=\264g\16\236o\350B\266\252\261}" #"\313V\\r\321E\370\301\17~\200\231" #"\231\31(\17\30\320\332\eC\1\330\306" #"\372\6\256\277\372\32\2304\305\305\227^" #"\202,\313P\226%\346\346\346(\220\204" #"\n\3035\3408)\363D\273*\212\2" #"\317>\373,\352\272\306+\257\274\202c" #"\307\216\205}\240\241P\370\2>\245\346" #"@\357<FU\r\325\1\22\255\320\312[H\30\341w\316A\246P\256\256\256\242" #"\252*tZm\264:m\224e\31\326#K3\336\247\300\346f\37\336\273\220p" #"\320!\20\201w\256Jq\362*\272\312" #"*\374R\262\332\340\315\215\271\2719|" #"\377\373\337\307\367\276\373=\364z=\324" #"\336\3413\237\371C\264\362\34e]\302" #"\301\3010\225\314\332&\371\225=a\235" #"\303\331\273\317\306\221\243oa\345\324)" #"\2623`\n\232\6L\242\241\334d\305 \234y0rc4M\300\234\nVU" #"T\t\3\232\375\363NAmlG\342\275\eSG\302\367z\17\255=\27440" #"\202\e\222\35\351=\23e\215\232\272\214" #"\226Q\325\315\317\vG\334\311\240!\266" #"UB\371\2\20\344\347\344~b\3049\366\225\4\48@i8XxK4\a" #"\202J<\240\243\240\30\24\200\306\201\222" #"<c\374\274\232\253Hq\371\\\316v" #"\315\225\325f\270\201\16\201\257R`\215zi|$\e\3509q\232\237\237GQ" #"\24h\267\333x\356\300\263\330w\321\276" #"\360^&\222\37\246X\200\23\261\242(\361\351\333\177\37/" #"\274\360\"\252\252\302\332\372\32\6\203M\244i\212\271\2719" ) 500 ( #"TU\215\242\30\23-a0D\315\237\237e\31\316<\343\fTe\205\355\333\267" #"css\23y\236#\3132\376=G\247\323\r\210\253\367\36\343\361\30u]c" #"ff\6\257\277\376\6\276\376\365;\221" #"\232\4\2111\270\354}\227A\221\356\337\4\310\225e\31\321>,)\337T\345d" #"\5\31\0\224S\360\312\241fe\6\357)9}\360\301\a\261g\367\36t\273\35" #"n&'\305\f\"\177\350\200dN\354?\376\275\327\353!1\tI\256:\307\22" #"\215\302\17\217T\232\34\321\216\214\321p" #"\236\256\377\310#4\315\255\252J\30c\260\274e+\36\177\374I<\367\334s8" #"|\370\b\365\327\30\3\223$\2Z\22e\"\317\341<%\37UY \315R\f" #"\a\3\244Y\206-[\266`vf\16\211I\261\270\270\200\213.\276\30g\236y" #"&fff\232a\25\232\324\232\362,\303\353?{\35\337\372\3667Q\226\25\326" #"\326\327\261u\313\16\24U\25\0\247P" #"\211\343\352D\226\346\370\371\241\237c<" #"\34\"\317s\354\334\271\3\266\346\206w" #"\235\301\371zbH\213\364&(\245\220" #"\345\31\306eA\312\24\322D\37\355\2718~\20\37\n\276_%\240\35\217\335n" #"b0\2\3\344<i\255\241\231rC\325\372\300Ai\234\244sQ\207\272&\36" #"]\232e\321h7\352j\225\322e\253" #"\325\302\352\352*\226\227\267\204\22yY" #"\226\274\271,\24L\b\276\344\301\265\326X[[CQ\224\350vf\220e)l" #"E\345ap9G\246j\304%'\332l\262\bM\363\232 \0321\3475F\260" #"\250\274n1\36\2171\30\fp\374\370" #"\333p\316\342\334s\317\305\354\354l#" #"\377\343\243R\255V\320N7\216\b\340a\n\224\34P\306G\6Vy\204\262~" #"|\250\2\352\353\271r\353\345P\202\2144\230\233" #"\250\250L \245\20\31\201Ks\324I Z\326" ) 500 ( #"\306ZG\203\t\246\270f\202\36\nU" #"D\276\2\221\333\272\210\v\353\221e\t" #"\276\375\355\a\340\275\303\226-\313H\22" #"\203A\277\217\247\236z\n\207\16\35\302" #"\257\375\332\257aiii\242Q\21\npuC\360\237\246\1Lg\2731]\"" #"1\t\234\5\312\252F\26\221\307\345}ic\202R\217u\226G\231\22BD\235" #"\322t\17\317>\373,\216\35?\216V;C\226%\2202E\273\235S9\216\e" #"\24\264\1:\2756\212\242d\36\35e\377i\232aff\206\4\212B\211\204\336" #"\363\314\314\ff\346f\221e4\16w\246;\3\v\207<\245\375\257M\202\227_" #"y\31\253++\330\262u+.\277|\177h|P\n\350v\273\201n\"\373U" #"\2!*\227\r\260\272\272\212#\207\217" #"\340\310\233obX\26\310\222\4\266\256" #"\221\244)\262,\303\322\322\22\266\357\330" #"A\310\363\251UTU\211\307\37}\fk\353k\310\222\0047\\{\35.\334\273" #"\17\367\336s/So\"\276\271s\215q\0!\205TV\235D\341\345\367\252," #"\241\23\203\321x\214\27_:\200\35;v\242*Jt[m<\366\350\243\270\360" #"\302\v\261\274\264\34T\"Do\272\t8\370\2051\212\346aC0 \206\255v" #"6\224D-\0342\235\0\214\316C\224\300D\210\335\v\372Eh\360h4\302\345" #"\227_\216\207\36z\b\360\b\16\337\30" #"C\345f\347\220\247\t\256\272\366j\n" #"\16D\211\205\371\177\343\361\230J\323L" #"\265\0<\214\342DPQU\341\212+\256@\247\323\301\346\346\6VVV0;" #"7\207?\372\243?\302\251\325U\254\255" #"\256b}}\35\275^\17\333\267o\307\332\332*\16\37>L\367\220&H\264A" #"\232g\330\266u\e6\326\326p\374\355\23\0\200N\247\2037^\377" #"\31\306E\201={\366\340\340\301\327P\214\v\264\333-\214\212\2eU" ) 500 ( #"baa\221\354\202\253\271\332\255H\1Fi\0\t\352\252\202\326\t4\0\247b" #"\t1B\3344\ex(`~v\26\367\336s/\36\177\354\261P\271\371\354\237" #"\376)\6\375>\206\3431\214\326\241O\201\336\235\n6B\34p]UX\\Z" #"\302x<FQ\214\241\240BS\226\366\200\257,'\350qE\215\350\0202lE" #"O\5\264\362Yq\371Q\276b\373\34W\337\342}JI\211\243q\310\252\251\250" #"\201m\30$\251R\216\366\22\232`BPd\250F\36\221&B!T\20,7" #"-\233D\207K\v\265\205\354\bkj" #"+\317\300H\223\364O\177Q\303\230\207\322M`@A6M\267\363\354\v\303s" #"\202\232\214\322\224uW9\331\21\276a" #"\34X\307\245rY\273\230b\30\336\211" #"\254\214\223\212\0s\210\25\251\313\b'" #"\377\205\27^\b\225\277\267\216\34\301=" #"\367\334\203[o\275\25\343\3618 h" #"\274\302H\214\16\224\31\245\200\262\254\260" #"w\357^*3k\25\350\34t6\e\3567\215\314\245 Ql %\363\36s" #"s\vt\375\240\210\0\214F#\3763" #"\323\356\254\305\354\334\34\36}\364Q<" #"\364\320C\360\36\30\f6\261u\333V" #"\\\366\336\375\241\211\327\263\317\266\326\242" #"\325j5\327\215\264\313\345\235\205\312#" #"8X\314R\324\266\204\253-\322\204\306\322+\320g'i\32J\367J{(7" #"\331\320+\353N`\6\355\227\225\225\25" #"\234u\326Y\324\304\353\233}!\261\217\4uD]48y\362\4VVN\4" #"\300\302:\213,\311`m\215\343\307O" #" \3132\214y\314\374\342\322\"\272\235" #"\31\\|\361\305\230\233\237\207\263\26\217=\3768\336>q\34\357}\317/`a" #"y\t\333\266m\303\226-[\220\245\31\252\252\236X\ek-N\255\254" #"P\374%\375%\336\243\30\227XZ\\FU\327H\263\34\275\316\f\254\227" ) 500 ( #"j\237\4\374\24w\0BW38|\350\20\372\375\r\274\373=\227\322\363\327D" #"\267\21\0\316(\3\247\211~\342\271\341" #"=I\22\224e\201\361h\204V\253\3\243\23\266h\223*\23J)(G\364?" #"Q\255\0\257\31\300\311\35\3g\4\n\nr\337P\37b\335\346$>0\r\372" #"\0315\242I\367\252uA\352\1\36!" #"S\326\206\312\272\217=\366\30\264V\241+<d\2355\215\210\363\34\th\20r" #"\220g\31^~\371e(\245\320jg\364\331\212YE\336\206\3#\301l0m" #"\276)\3378N/\274o6`\234\365OsU\313\262\304\337\376\355\337bss" #"\23\243\321\b\335n\27\263\263\263\370\255" #"\337\372-,--\205\r\341=i\3\307\235\300\22\3105\v\353\320\360\265Dg" #"\322p\367\351T\a4\277\24\345\350\320" #"\313Z[/\312\24\24\20M\363[\275" #"\367\330\265k\27\224\326\310\322\f\305\270" #"\200\363<\6\330\202\321\362x]\310\221" #"yO\2\327\322%,\304\371\312Ut" #"\300\331\351<\377\374\3638p\340\0\226" #"\226\26am\215\262,P\331\32\235^" #"\27UU\341\241\207\36\302\2157\336\210" #"\331\331\331\200\266\n2\335\4R\215\1\216y\240@3\35\212n\320p\303M\31" #"6u\263\261\23\6\r\32>\237Q\2329g\n\312SW\274w@\306\34\345v" #";\247Q\274L\261H\215\216\246OQ\251MAayy\0217\334\360\313\230\235" #"\21\342~\201\345\345-0&\205\t\34" #"G\5\347\b\341\314\362\34\266\256\3j" #"\31\17\e\220\373}\343\320\317Q\3255v\356\330\201}{\367A\324;\344LH" #"\200O\262w\36B\270\17\16\2145{" #"\a\203\1\206\303\341\204c\353v\273\254" #"\270P#k\345\350o\364\361\3143O\343\207\217>\214,Iq\345U" #"W\341\335\277\360\v\30\r\207<\251K\303\230F\275\2\210\220v\336c\202" ) 500 ( #"\372M\243\272a\277y\340\345\27_B\177c#|~\302\334\345\23\307\216c\333" #"\326m\\\tPA\374\35\21RL\210\a\331\r\307t \245\24F\243!\306\343" #"q\30\311977GN\4\200\202(\f8\26BG\260\1\232'_\2113I" #"\323\24\313\313\313\250m\211vBh\253" #"w\26\243\212\350\a\237\370\235\337\201\322" #"\232\253\17\bI*<U\1\214\217\0351\321\1d\374\254T\31\206\303!N\235" #"ZE\232\2468{\327.\314\314\314 I\22\234\261sgcg\234\303\326\255[" #"\260w\337\205\320:\241\340\337y\324\216" #"\364\36\325\356\263yo\323=\\y\345" #"\225\350v\273(\313\2_\372\322\227\360" #"\366\333ocT\24\330\330\334\300m\267" #"\335\206\267\336z\vO=\3654\255\206upu\323\27@\1))\332\310\271\223" #"\367&\2127\304=w\350v\272\370\351" #"O~\212\37|\377\373\224\300\31\215?" #"\371O\377\t\353\353\353\1\rAd\223\49\27`\203\267\0\347,\36\355v\e" #"\307\337>JA\227wHUJ{8!\211<\341\275z\17\n\0\24\0\327h" #"I\307\366k\32\301\225?\307\315\310quL\34\235\274{BD\e\336\254\240\21" #"tmJ\254\300\224\2018\371\362\216\307" #"\227:\326 \225\252\16<\224L\331R\244\241\v\357a\264\2)\3659F^U" #"\0t\264V0*\245\240x\ny\212\1\r\361\t\222\364\306\317\e\236\3236\325" #"@\2555\274F\360\215\336\321\324*x" #"\226;\v\327\234\354\235\211\221\3048\340" #"\246\363TA\301\220\276\267\322\260\16\320" #"\312\261\306:\335W\226fx\371\245\227" #"P\226%v\354\330\201\267\216\274\205\3" #"\a\236\307\236={\260o\337>\224ey\32h\341\242=\24?\277\370\267\270\22" #"*ve<\352\207\244\273\351=\221\353R7\277\342" #"\224$\246G\311g,.-\341\253_\375*^|" ) 500 ( #"\361E\214F#\314\314\364\360{\237\376" #"4.\270\340\2\214\vB{\265\322\250}=\321l\34\306\320s@\333\354%\25" #"\371#\37\0\256<\317\2611\32c\246" #"7\3\223$\30\215h\224\255\362\n\212\0250T\330\17n\202\272\"k\262}\373" #"vhE\315\361q2.\25\30\357\233&AQ\305\360\214\254\207uV\304\311\267" #"\306QR\334j\341\262\313.\303\265\327^\213$M\0P#_]\327(\253\n" #"\335n\17\257\35<H\201\356e\227!" #"\315S\0\212\23\325\222m\264\0}\232" #"\373\245\244\251[\302Q\372\252\35H-" #"\307Z\344\255\34\345\250\0\30xrh\6\256H\2S\24\5\236}\356Y\f\6" #"}\\\366\236\367\3029\2134\311\241\202" #"\2066\0\305\\~G\303\247\4\261\006466\373X\336\262\225T!\224\"\205" #"$>O\0231)\a\2712\6\30 \336\255Sd\333\247\373\313\22N\22\2\322" #"k-L\232\322\b`9\204\315\vJ\370\357T\303\207\363\314\tUlW<\217" #"RU\ny\236a8\0342\232[\241\325jM\03136\320\214\234\31Ch\355" #"\332\251U\3126\275\306\314\314,\214\321" #"\250k\27\34\225\4i\261\261\20d," #"\346h\320\337\373\323\214%\375]\203>" #"\n\211{\353\326\255\30\f\68\343\2143p\331e\227QGx$~\rP'" #"\254\362\b\360;\5\"\341\214p\0^S-HZ:\264\nB\311\261\201\27*" #"\202\327\254\267\353\25!\227\240\303\323 " #"\262\204\346\304\306\263(\n*\241\26\5" #"M-\324M\306,\210\203\265\202t\237" #".U&\31\235\224\307\312\242\202\365\16o\276\371&\276\365\255{0;;\27P" #"\307\272\256B\326\231e):\235v\br\205\224'\306M\3264.\263\311W\\" #"n\224@R\2@y\256\304h\314\315\315\205\353" #"\0\340.M\261\310\344\340\2142\1\251\320\tPV" ) 500 ( #"%\336\377\376\375x\361\245\3471\36\217" #"!\203\36\244\362 \334\243<\317q\353" #"\255\267\342\234s\316\301\240?\212\22\25" #"\311T1q\317tH\200A\277\317h\v?\203kP\37\255\24F\34316\327" #"7\220$I3\236\231\215}\345*\b\207\322\373\346\372>$n.\214\304\25\264" #"~aa\21Z#|\277s\16\343b\214\252\256a\275\303\23O<\216\a\36|" #"\20\275\331\31\334p\303\rx\327\245\227" #"R\371\221\235Eb\f\262,\r\315\231b3I \337\202g\234\5Z\205\354G" #"\303\234K\tX\237|\362It\273\335p\17C+I\301\"\254\255@\363\241\223" #"\240\255i\275\214\365D\30\270\341\242$" #"\224$\355\250,\331d\331L\27\202\17" #"\325\213Pj\215\366\16\330\340%\3060" #"O?\301\373/\277\34\367~\347\36," #"\314\315\303:\207\272,q\376\205\27\340" #"\246\233~\0253\275\36kX\322\225(\231\253'T\1$\331#\32EM\345Q" #"\347akr\212\306\230@9h\267\333\250\352\n\316\373P\231RRi(J\262" #"gJ\5Z\223IR\224\"\375\207\246" #"\202\324\355v\361\372\353o\340\357\376\356" #"o\340=PU%\26\27\227p\373\355\267c\367\236\335\370\352W\357\244@\\\e" #"\2627\206\222Hg\245\24\236\0\332\261\255\225.z\35&x9E\32\317\253\253" #"\253\270\353\256\2730;;\207\301\240\217" #"?\375\354g\233\301\30\276\241\237\305\311" #"\2458\25\371\263\f*\330\266m\e!\341#\242\344\2304\341II\200N$X" #"\25\27Ig\225\222\27\327\224\345\247\200" #"\6\310{\211\222\243\30\301\235\2566\204" #"\3573b\27\271q\313\211jNtm\247\340uC\313\n\375\31H\231\256 h" #"\217\17{\215.\312eX.K\a}n\327\330Q\255\r,\373\17\353" #"-\a\243\262\27\32\245\240\260\277\22\3\251\330\5\232\233W\360!L\240j" ) 500 ( #"\250\204\353\3161\30P\327\234\270hx" #"+\366\262q\370q\363w\374\25W\362\32\177(Z\300.4\355x\245C\325 " #"MS\34x\361\0\306E\201,\313\360" #"\361\217\177\34\307\216\35\3037\376\351\233" #"\370\316w\276\2033\317<3\250\17\210}\237N^b\332J\f\2229'\325\210" #"&\b\217\23\32\251\0H2\0\230f" #"HL\364l\332\30\314\316\316\342\213\177" #"\375\327x\375\365\327Q\24\5n\271\345\26\\s\3155\30\215FX_\337\b\n" #"8\324\274\324\\_\232\273\206\303a\330{\n\244&a\3204\34{OMxg" #"\236u\26\16\36|\25\265\263\270\346\352" #"\253QW\0255\330\261\16+\365\23\37206^s'\177\360YlK\313\222\354" #"\317p8\230Z\37N\4\371Ye\315D\265\251\325j\341C\37\272\31_\373\332" #"WQ\26\25\312\262\340!X\n\347\237w>\256\272\352*\242p\f,\214I\303" #":\223\252\312\30\200\"\300d4DK\265\220\30\321\26'\316=)\373p\23?" #",\214\3169\355\223=\254ak\207v\267\213\274\325B\226f\244E\17I\316\24" #"<kQ+eX\"S\343\247?\375\t\216\37;\206\367\277\377\275h\267;H" #"\214\206R\206\3662h\317y\347Bb\240\215F\226%\350v\272\250+i\372\265" #"\260\26AfTx\326\23\325\22\337\334" #"\253\234\203\304\30T\316A\273F\311\310" #"1\335\310\262$\251\354\271\224)\201\211" #"\310\230xO\244c\305\334N\347\32\a" #"\244\250\303\204\210\363LY\250\275\r\1" #"\257a4\245\335\356\4\202t\234\335\321" #"\2153w\311q\27\251W(\313\22\355v\213\256a\250;R+\322\230TN\262" #"\274\346!\265\326\223e\25\3579\330#\2445M\233h^\16\225\310{i\255\260" #"e\313\26\\x\341\205x\343\2157033\203" #"\301`\0\2555Z\255\0265\35\251Fp8\4\352" ) 500 ( #"h\272\24\235t\277\6^3-N\350\212u\215\250\274lh\271\246L$\v\306" #"BQ\3372\255\221 \201\36Z7\3\16\344\300\344\35\236A\355\352\20H\1\202" #"F9&\240c\302\370HI'6\376\36\240\341\b\326\342\201\a\36B\222P\360" #"e-\311\201T\374\316\262\274\25x\243" #"\212\203\333\32\223\331\266R\214\\{\37" #"\215Fh\34\200l\\\317\242\355\322\364" #"\250\224\302\240\337\307\266\255[\230(\336" #"HV\211#\217Qy)u\211\323H\214B\236u\360\261\217}\fw\336y'" #"677\220\347\31\362$\245.\372V" #"\v\343\242\300\334\334<\26\27\27\261\271" #"\271\1\222\370\321\201o\34\243\317\204Z" #"Q`m\235\3\264\246\201\37\322\311\253" #"i\257\202\203\201\242\250P\261\244\314\326" #"-[90\343\275\310\312\f\336\277\223\23\22G\341&\232\360(\271\214P\32P" #"\373c\226j<\362\303\207\361\303\37\376" #"\20;\266o\303\3157\337\202s\3169\a\243\321\20\266\244C]T%\\\364Y" #"\315{'\5\21ki\324d\234\304M" #"L\252\213\22\222\353\257\277\36\337\370\306" #"7x\3369\321g.\270\340\2,o\335\212b\\\320\b`O\327\223*\204\274" #"\37\371\263\2246\203\fN\226\205\347\224" #"d\321\303\6\375\347itH\34G\236\347(m\211\312\1\6\364}W\\y%" #"VVN\342\300\213\a\260u\353V\334" #"\362\341\233\261\270\274\204\212\351H\22\230" #"\310\20\f\205I\264m\232\357\37x\226" #"\306\300y\240(\n\214\307Du\330\262e\v<$\270\24\4\4\224\370\32\23\316" #"-\225\243\35D\357\22\3341\234\245\31" #"\336~\373m|\345+_\301\321\243G" #"\241\224\302x<\302\265\327]\213\17~" #"\360\203\30\f\207\330\334\354S\302\303" #"\211A+\313\203\254Y\b\342\224\r2?\262g)\220\247" #"\304\332x \3132\374\371\237\177\16\255V\akk\353\370" ) 500 ( #"\323\317\376\27\226X\253\271\254\35791" #"\17\300\356ih\224H\fzOk\237\246)l\3551\32\215\220\245)J[!" #"Q\n\276\216\21D\t\351E\"\320\260" #"\35 \304\231b`\5\245\270\201\225\245" #"!c\244p\272\f\37'\310\304\370v\360\f$P\300\312\4A\325\4\334^\271" #"\206\207\353\\d7\250!\214\336s\323)\36\22\5Og\255\251\242qe\307\23" #"\342FA\253\207\206f\204\312\203\376\213" #"\276o\32\315\225\22}s&\244T\315\3504|\30\341JA\274a\246\nS." #"&\202\275\246\212\30\373\2\371\275A\225)\350NR\326\255v\214z\5{\3314" #"\207*\245H\317\332\30\34x\376\0\252" #"\242\304\a~\345W\240\225\306Yg\235\205w\275\353]x\366\331gq\367\335w" #"\343\323\237\3764\212\242\230xW1\332j\264\236\200\254c{*>9Vm\230" #"@\206\243w\344\275'\36e]\303\b" #"\232\a\240\333n\343\37\376\341\37p\360" #"\340A\354\334\271\23\37\377\370\307\331\226" #"oN\330oA\207E\353Yk\35\244\364$\320\325\232\300\271\3044\212J1H" #"\246<\220\231\24s\333\266\343\222K/" #"\305p8\234\232\276E\25!8\207\304" #"\244\23{U\316\216\254\215h\335\213\315" #"#d\231K\377\332s\305\325s\214E\366r4\32ayy\1\277\177\373\247Q" #"\26\5\254uX\337\330\300\261\267\216b" #"vn\206c\5\3229\237\366\357B\215\311\262\214\336\275a\325\31~N\241@R" #"\225H\3\320T\345\260\261\275e}[\17\2\267\272\35\34}\353-l\337\271\3" #"\336kx\270\220d;N4\327\327\327\361\364\323Obfv\6\357y\317{\340" #"\341\361\332\317^\307\266\345-\230_X" #"\300\270,\0o\341\35\5\334\332p\362\305\24\216V\253\203\376`@\210" #"\257&\305*\322\vv\241?\"\366\vJ\323\276\225J\271\304\34Jk" ) 500 ( #"\362\305I\2\225f\1\270\21\e\22\333" #"\271D\201\307\333\3265q\206\234\nB\352\312q6\311\274Qqj\202\\(\236" #"\23_\327M\327\343\362\3622z\275\336" #"\304\301\320\306\204)c^I\251\202\234\256w$\t2??\17+\263\321\375d" #"\307x\\.\222\fJ\214\36\275\0\204" #"\240\211Pa\313\b\216\346\322\4q\205" #"\252\252\304\3157\377*\276\372\325;\261" #"\261\261\201\252\256q\367\335w\343\212+" #"\256@\177\263\217N\267\203\17\334\370\1" #"\364\373\233\23\1\235\\\213P@)\273" #"\320\6\253\353F\22&M\22\324\276)" #"\323\304\31\355$\257\255\t\20\4\1\23" #"\224q\302\330\373\246\f.\223T(\20" #"\254\371E\312\365\24\342A\1\2611\221" #"\362\260\367\215\330\372`s\23E9B+oAi\240.\3070\255\26\332\2356" #"i\377Y\213^\267\213+\257\2742\224" #"\233\22\315\23N\344\240\1\304+\r\357\242Axc\303,e{\300\207\367\2P" #"\331H\0320\350\373d\35\32\303.\a5\336\3\24\300X,--\341\17\376\340" #"\17\360\243\37=\203\307\36{\24\353\353" #"\233\350t\332\30\364\373\330\272m\en\270\376z\344y\26\270S\306PBV;" #"KZ\221\236\3129\202%\372\310\200\b\"B\357$\342\312y\32\301Z\26%\322" #",Aov\206\22@\217\bm'\307\34\257A\30j\240NG\300ud\364\234" #"s\200Qpu\205'\236x\n\217=\366\30v\356\334\211\333n\273\r\213\213\213" #"\30\f\206\221\363iT+\362<?]#Y\4\357!\245|\tL\242=\346\21" #"\24G\336\375\356w\343\3157\17\343\311" #"'\237\304\342\342\"v\355\332\205\17}" #"\350C\320\212\223Kx\222\20\23\247\345" #"\21\272d\343\344$>\263IB\335\276\336\1\216\aE\324\262g#g\27" #"#}\202L\an\246\26\16\\\215\217\334z+>\364\341\233\221\32\2524" ) 500 ( #"\25\25\241\266r\37\200\17\310\376;!N1\332(_\362\316+\266EJ)," #",-F\302\357\b?O\264*\21\344\2\270\304\1\347\b\205r\316!\315R<" #"\363\3143\270\377\376\373a-\355\323K" #".\271\4\373\367\357\307\354\354,\206\243\21`=\362,GU\20Z\334j\267B" #"5%\250)\250\311fOy\36\251h\245i\212^\267\207\317\377\305\347aL\202" #"\243G\217\342\267?\361\t\220&6\201\nd_h\217K\220,g\310\23D:" #"\345\20(\30\202\a<,\252\262D\252" #"5O\207\4\340'\253T\200\207\362\32" #"\306dp\256\244\2'\a\220\232\e\205" #"\244R\30sN\343}\32\377\36\354\272" #"\262\364\363P\220j\bQ\340\f\340\35" #"\331X\235\302\373I\336o\270>\243\357\241qWq\223'\23\302%\250W\34\214" #"kC\222d\336\211\324c\3\366\20\347\226}\26@A\263V\254\321K\216_\232" #"\201\235\257B\37E8c|d\204\256%\0253x\v\347\245\352\305C\31\"\237" #"7\275G\247\03575\347ri\336\361s\360\207\t\257\264Ac\t\325T\211\301" #"\321\243\307p\364\310[\250\353\32\27\356" #"\335\213\272\"\244\367}\373\337\2077\336" #"x\3kkk\370\332\327\276\206\333n\273\r\303\341p\302f)^cDgK" #"\366c\374n\343\352A\274oc?(\277[i\0\347\353\316\316\316\342\221G\36" #"\301\201\3\a\260{\367n\334~\373\355" #"X__\247\t\213\221\177\231\246[\312" #"\331\316\363<P\277d\370\a\34\240\22" #"\r\355O\17\264\253\272\202\365\26\266\266" #"A\271\3464\220\302(\244i\6\241t" #"\312^\215\357\305{\217\371\371y\346\3056\266L\202a\2555\333OLT}\345" #"\231vh\3016\0\0 \0IDAT\332\2556\262\224&\21\316\315" #"\315\341\334={P\224%jK\334p0@\322TS\351Y\346\346\346" ) 500 ( #"B\300<;;\23b\17\252\24\330hO\3213\325\326B\206pYG\200\b\0" #"\24\305\30\266&5\240\3/\274\200\271\371\31\264;\263\344;55\316yO:" #"\376\17<\360\0\234\363\310\362\24\377\343" #"\177\374OdY\202D'\30\364\a\330\262u\v~\357\367~\17Y+\247\352\24" #"\377\234L\263kw:\310\262\26N\236<\1\31\371[U\264\a\222\224\2k\31" #"\301\34\222\22\0006Z\253\220\324:\322" #"\"\27\344^\253\210\252\324\344\214T=" #"\5\250\251\n\0\224QP\216\3124I" #"\3020\260\"\373V\331\212\250\v\236\315" #"\5\227\222\214\322\30\26#\\|\361\3058x\360 VVV&\262k\245\24C" #"\366\236\220c\316\366\362\274\205\243G\337" #"B\226e\30\216F\314\337\243L<\316" #"\274\214\342nG\236\373\256\240\32*\0" #"kj\32\343\302\203\371@@'$\203\202Q\346Y\31\322\243\373\344'?\211\357" #"}\357{8x\360 \362,\303\217\177" #"\364\243\320u{\346\216\2358\377\302\v" #"\0E\\\227\240\231\32\225A\211g\251\271\v\237\20<hM\234=\325\2244\343" #"\303>\231IN\242Y6\322 \26c\346,\rp\30\217J(\350\250\364*\1" #"\30\31kB\2250q}1,\341\320J\t\213\17]b\f\26\27\26\261\272\262" #"\202$MH\257\17@]\326\250\\\211" #",\313p\351\273\336\205\331\331\331pp\211\237M%k\37Q\27b#\26#\331" #"\301 \a\243\341\202\3\322\312\240\337\337\f\1\rqk%\366!'#H@\314" #"\275\222\317p\\\366\316\262\f7\334p" #"\3.\271\344\22<\367\354s(\306#\364ff\260\377}\357C\273\323B]Y" #"Fs\331\340*\236\332\345y\23\263f+\"'2\21Xx\25\300#\31u:" #"\36\27\30\215\306P\246\205\341h\4e\250\\\3" #"\255\302\275\307\250\313t\351/\336\333\3629Zk\324" ) 500 ( #"\326r\316\255\361\257?{\r\367\337\177" #"\37.\270\340<\334|\363G\260\270\270" #"\214\321h\208\331\312\220Ah:\261" #"\251T\357\25\361[\311\371y\271\e\310" #"\252\206{\20\24\3160\17\232y\366\37" #"\376\360\207p\371\345\227\303\30\203%n" #"J\222=m\24Q\201\224n\34\0\361\304\e\324'N\352\304\32gY\206\341p" #"\24\270\334\224H\bg\262y\257P\354\260u\343\30\225\342\246+M\373~8\34" #"\261\261\3461\302\272\31\t\31\313F\305g/F\6\32t\275\331\237\3629'O" #"\234D\177D2cT\311\230\f\352b*N\\1\222\337\255%G\364\363\237\37" #"\302?\376\343?\6\371\270?\371\223?" #"\201\265\26\243\361\30\243\341\220\e\233(" #"P\251\353\232\371\222\257\340\227~\351\206\220rQC_\270\305\311\0Q),," #".\342\365\237\375\f_\372\322\227\260\272" #"\276\212rT\342\272\353\256\305\376\375\357" #"\303\306F\237\256\257H\372\r\320\320\206\270z\202\210hF~\342iW$5\253" #"\270\351U\243\254\34\372\203>\272\335\16" #"|mQWM\260:\211\322\371\200\36+\315\327\321\232\313\365\352\264 (\6\1" #"\246\203\272\346=)hC\25,\302\242\24,|H\222=\0\353\247*!\301\306" #"2\315\211\367\203\363\342{\20\32j\204" #"\252 ~\205\270\271*\364\36\220\317\"\360@sR\246U3\300!\234]\20\267" #"7\36dd\243\341A\336\363\b\24\217`\27d\357Y\3469'\334\367!\350\\" #"\274\177\247\3\337\330\226\bw\230\20/" #"\326\2037\232\203\365\6e\344\e\1\0" #"t\332m<\370\320C\350\17F\270\342\212+\240U\2\245\310'\367z\35|\370" #"W?\210\177\274\343N\34>|\30\337\374\3467q\323M7M\254\255\360\332e" #"\352Y\274?\247\355\247\334o\374n\247\221]\t\6" #"\341I\2622o\265p\370\320!\334\177\337}\330u" ) 500 ( #"\366\331\370\344'?\211u\36,4\241\243j\233\0.\16t\343\365+\212\202@" #"\b\16\240}Me\356\2302\263\271\271I\201\237RX\\Z\f\334d\360;\223" #"\274\236\302\27\332\377\16\r=I\236\211" #"\244\3{\250\253*4\343\v\210\343A\r\262\16\334\207a\30H\21\3224\32{" #"\32'\n.\2\274\210.\321({\320zS\2\330\351t\220e)\326\327W\261" #"}\307\226\086\t\237\207\267\200\311" #"<\\\215\0\342\30\243Qs\260K\24\207\4\235N\17G\337z\3\e\353\nY" #"\326B\226\222bV\fZ\225U\215\235;w\342g\a_G\273m0?7\17" #"0\315\246\325i\341\324\251S\274\346\232+&)Wt\0\235(t\272\35\224e" #"\211\341`\bc\24\352R\244\23\243a" #"\21\221\355\225w_\v\370\301\373L\370" #"\272\22\260\213\362\210\247\243\f\357kx" #"/\340d\205Di\5WQ\266\254\274\242\t-\232&d\31Ee\334\311\215D" #"N_y\217\332;\224u\205\324$\230\233\233\303p8B\226\21QY\304\211\351" #"\180\5\240\271\3547\36\217\261\261" #"\276\1\aB\206\4\311#\375C\205\272" #"\342\200W\263\266\216\367\334\341I\216\207" #"\202$\202\342\1i\364\211I\342\223\e" #"I\240w\271\247\233n\272\t\253\247N" #"\341\245\27^\304SO?\215\371\371y" #"\224e\211o~\353[\330\366\324V\314" #"\316\317a\377\376\313\261\270\264H\245\324" #"\262l\202P\357\240j\32B\341\231\342" #"\3419p\230>\370\362\371\341\245\b\22" #"\22\262\23\341\3776\367\356\"\203\321\235\351b<.\220\345)\ea\tp%h" #"\"\371\237\30\t\226\203V\3275\227\345" #"9\230\363\36\260\26s\363\363\270\372\252" #"\253\360\317\337\370g\24\345 \374\354" #"\226\305e\\\372\256\213\260k\327\36\314\314\314\204\f\227" #"\16\0175c\350\310\240\b\347HE\306#6~\362%\32" ) 500 ( #"\246\264\3665\322,A][R\332\210" #"\220o\331\274@\244\24\21\31\200\330\200" #"z6^\343\262D\257\327\303/\376\322/\222\1\366\neU\242.\243\300z\n" #"M\362`\256\225\246?\307z\177\301!" #"k\23&\333\225e\211\304\244\304\a\364" #"\304\317N\fi\226\312\336\242\212\352d" #"\2605\31\24\321\22743\306\211\201T" #"\"\274\363\330\330\330\300\3\17<\200}" #"\373\366\341\326[o\305\342\342\2\212b" #"DN\35\324\30\240\275\240]T\22\255" #"\252\222\20V\236B\2438j\234\320\334" #"\224\304Q\e\324\312\362IS\320I\223" #"H\330\332an\236\32\306\212\242\b\345\"\17L8\2278p\224dE\336\231\374" #"]\"\362/|\376\345|(\326W\364\341\\\n2\6\30\244\200\22\264=\0326" #"\300\377-\327\215\317TS&\216&\314)5\341\354\203\372\3'\6\261<\24Q" #"u2\200\321O\2234#[\343\344Q\34\310\364\276\226g\227\317^ZZ\304-" #"\267\334\2024Mq\325UWa8\34\212\21 y<-\335\300\26\353\353\3530" #"\306`0XG\232&\30\217JJJ\223\250\32\23u\334\317\317\315a\345\344\n" #"\356\370\346\337\343\331g\237\305\334\354," #"lU\343\202\v\367\3427\177\3637\261" #"\272\276\6-\211\210U\354T\31Q\24" #"\207\37\237\3\337\330v\307\bf'\313" #"\321\352\2641\34\217P\214\n\332/\276" #"i\"\232\2568\361\5\350\3541\325G6\2152M\"\34\an\323\301P,\353" #"\350\235\207NH\236Ki\5o=l\\%\3234TH)\4\336yL\315\241" #"\265\"\372\16\274\6\3V\3344\247\3709\300Rc\344\340\305\316X8\210\fW" #"s\216\351L9G\350\265\263\315\332\21" #"b\313\3773\32\316\211t\245\254m\203~N\330\204( \v6\177\352\234" #"\312;\217\367q\23487\200\6Y" #"\205\220\230\253\251\244\316\320\244\265,M" ) 500 ( #"\360\342\v/a\345\324\nz\275\36\256" #"\271\346\32\252\fB\1\312\243*,\316" #"<\343l\334\364\301\eq\367\335\337\300+\257\274\22&\206I\337\3\1\\*\4" #"\25DYA8c\357$\273\26\277\353\370<N\234a\6u\224R\370\366=\367" #"`qi\t\277\375\333\277\215\321ht\332\365bd8\366\r\362=\322\373\20\237" #"\35cL\230L\26\367\374\310@\2404%m_\271'\251\254\220Y\222\246G~" #"N\305\25R~v\331\267R\331\234V\26!`\300qR\241A]\201\202\310N" #"&61\347\273\252*\16\224\35\224\3664r\232\277\350\376\250ghqi\1Z" #"k\274\375\366\t\274\353]\357\306x\\" #"\204=Eg\2 \243\240\30\254\341\275" #"\303\261\225\262\344\267\362V\v\312\3Z'p\266\240\311f5\0o\201DSl" #"\350\0\245\34\256\271\372*\\z\311\305X[;\205,Kq\352\324\n\224\2f" #"g\272PJ\243\305=\16\360\32\320\262" #"\236\36@\212<'U\214\361h\34\366\236\202\2\34\220\344<X+\21\231N\e" #"\336Y\f<\304Z\332\336\223\235\220\356\236$$}\3249\0P\17D\202H\314" #"\335\303sg5\241\257\322\220#\2\275" #"\262q\311\360i\246/P\246\273\260\260" #"\200\242(\320\351tp\352\324)l\337\276=\4[\242\213\347-M\16\363\3544" #"\306\3431L\232`~~\226\246\30U\25\323\27\f\222\204dQ\352\232x.Z" #"iXxTe\1\245x\356:\303\367\315\1\20\316\279r\357\245\\\327p\205" #"\0247\303\325E\201\371\2719\\}\31558\367\274\363p\307\35w\4#\371\346" #"\221#\230\37\rq\367\335w\243\256k" #"\234{\336\2718\367\234sq\336\371\347\242\241\vP\31; e\\\n\226iS" #"\323%|\0\274\16\216\357'F\376h\365C" #"\240>\201@\325\20MMi\354\t\22)\36\215" ) 500 ( #"\36jd\20\305\370\313\365\215i\364#e6\365\256\263w\341w?\371\273x\353" #"\255#\\\2\231\305\256\263\316@\232\344" #"(\313z\362\347\25!\330\236\3\3268\273nh\27\247;P1J\215\261\363\330" #"\354o\6:I\348M\243\27\261\1\2330\34\252il\2625\353\25*2\226" #"\265\2252\221 ;\315D\276\6\225\340" #"\346\236P\25\360\357\370Y\326M6V" #"\321;\246\347-\2121\226\226\26\310\270" #"1Z\303w\27\256\23\e\365&\30\233" #",\363\207\314\35\344PM\252\261\336\337" #"\304\211\23'p\355\265\327bii\1EQ2\a\35!X\222\365\352\365z(" #"\312\22\253\247NA\306\272\206\216\336)" #"\a\0\260\304\236\227\244\210e\277\fO%\252)\330T\3213@\211-\230\34\24" #"#\327\233~\317\362%\373Q\324\f:" #"\235.\361\372\234\240\313\215a\367>\236" #"\336f\241\34%\257\264\367\21\2P\5\25\316\267\354%Jb4\377\336\4\20r" #"Oq\367\3764}(.\241*(j\346h\0217\275\327\353M\4\36qCM" #"\274_\246\313\247T~Kq\335u\327" #"!IS\22\311\217\206\206\310\265\3224\305`0\300`0\200\2655z\275\31\324" #"\225\4\316\215\222J\274\227\26\27\27\361" #"\314S\317\340\276\373\356EY\225h\265" #"[X]_\303\366\35;\360\361\337\370\30V\327W!\243\306\2252P:\352\224" #"\246\203\317\332\240B\257\231\34\274\20\316" #"jb\2\237\221\204\351'\221\360x}" #"\303y\361\16^\21jL\357\266\371\236\3703\246\317\372t\320\6 pcY\373" #"\222\347,\21\230\2418j\227\352\212\274" #"K\361/4\270%\203\326\36\336\351F" #"~J\320\345\312\3\232\370\304\24\234\23" #"\r\2549\267\264vR\221\233X\227\246`\23\331m\tD\304\2067\3733" #"T)j\4\3045M\331\236D\200\314;U\222b{5\375%H\35T" ) 500 ( #"C%\20\eL\317\352!3\271\223\224&\253\231\4HM\206\37<\364\3\f6" #"\2074\1\214\265\331\241\232I\236\375\376" #"&.\271\344\22l\335\262\35\177\377\367" #"\377\200\237\374\344'\330\276};\366\355" #"\3337a\347\255\234\eN\234\232\251V\372\264\263\22\237\223wBx)Y\a\346" #"ffp\357\275\367\342\320\241C\370\367" #"\377\356\337\1\221\355\224u\212\355\350;" #"#\307t\37\235N\2079\367c\344y" #"\36\276\357\235\22\207\245\245\5\274\371&" #"\311\5fy\26\320A\321\232Wl\177d\257\22KDq\23]#\363\347\202\257" #"\246D_\201\350L\302\333w\336\302U" #"n\2\355\325\246\221\314\324|\2558P\366^htM%M*\a\222M\212\2" #"\304\312\312J\320\320\227\375L\257\227u" #"\246\275T\e\1\257=\340\b\320$\204\232lr\222%\260\336c\270\331'\315w" #"K\352M\232\e*\301\377?\36\17\320" #"\353u\320\353\265\241\24\260c\3476n\312\256\231r\344at\n\255I#_\e" #"j\2\257\253!\264VH\222\fy\236\321\373r\214\264+E\25VET0j" #"6DP\26r\236\232\370\345\254P\\i\0VP\361\216\346\3pA\tZ)" #"\216\aHy(!-K\342O&,Oa\271\331\312(\316\216\365d9V\234" #"\2308\fk-\266m\333\26\220\326W_}\25{\366\354\t\350\225\265\16\241\f" #"\304%\262\361x\214\376`\200\245\255\313" #"XXX\200\346\353*\255`\313\32>\241E\225F\3\17\27\370\242\0\270\273\16" #"\1\331\24c$\243\202[\255<\274\360" #"\320\360\3 \321\tee\271a\244\331" #"\340\340\301\203\350\367\3738\373\354\263\261" #"\177\377~\34<x\20G\217\35\r\22Ko\369\202Co\374\34;\266oG" #"\257\333\243M\310\301M\222$p\265t\344\272\200:" #"\b\372-\e\266\t\24\310(\32\323h\300\311\213\23" ) 500 ( #"^\36\345\221\b]\354T\356\324\241,\22g\3741*f\214\t\350Wl\374d" #"\312M\34H\326\25%'\v\v\3638v\354\30\356\273\357~T\345\30\37\370\300" #"\ap\3569\3475\211\1\200\32\26\211\347d\303N\3161\227\3750m\214bc" #"\26\enc(\211!\332I\35\5\16>4\32N\243\35\301\321 NX\210\240" #"\237pG\250sR\252\1\aE\223NT\356\201:B\1\37\375{\\\t\210\235" #"\272\265\226\247<5\373\210\364q=\272" #"\275\36!\263\n\250\255\17\322h\23\r" #"\0ShF\374\25\202\317\220\321;T" #"\265\305\331\273v\341\17?\363\207\350v" #"; \335B\360\4\31\326\242\206\17\334" #"\263\255[\267R\203\\Y\242\252-\322\204:\366Mb\220$)\323z\32\332\215" #" \247\215\223n\214\254\346ig\362\376\304\360\326\"5\310At\214>\304H]" #"\34\334\307N\305p\262P\224%\234\263" #"\r\222\306k\252yp\204f\212\22u\303\v\5B\5\333QC\270\320T>M" #"\214f]j\336_J\205\222\327\264C\234\16\316O\17PUh^\311\363\34I" #"\222`8l\370\320\323\373#\266{q\202'\177_\3275\\U\303q\362a\246" #"\234rL\331\261\326a\337\256]\20N\32s\b&\22\245\271\3319\334q\307\35" #"x\341\371\3\310;-\224\203\n\357\376" #"\205_\300-\267\334\214<\3171\34\16\371\231$\22#\e+i\205V\2007\6" #"\36RAj>\343\235\202M\341x\26,\225$\317&\201\272\231\350\331\210K\366" #"\22\3506g\265iF\216\366]t\306dM\342w\346\370\347*+\216\235\356I" #"\353\24^\325\3413\350\347,\t\202\350fD\255\0006R\272\5\300\274Z\3h" #"\317\232\236\342+\330\207pr,\310_|N\345]\bG\262\331" #"OM3\264\224\275\343\347\223@E\301\36034\325+\271\257\370\34" ) 500 ( #"\305\3733\266Aq\300'\276\327\361@" #"%\37\335'\275m%\346\212\354\207\363" #"\310\3636~\366\372Al\16\6\330\266m\ev\355\332\305\353\4\242\r\20.\4" #"\357-\6\203\21\346\347\27\360\211O|" #"\2w\334q\a\276\373\335\357\342\274\363" #"\316\v\237\35\a\261\242\334\"\367:\235" #"D\312Y\214\375Bl\23\203\375\5p" #"\344\310\21<\371\304\23\270\345\226[\260" #"\270\264\4\313\325\310\370\34\307\250}\354" #"\367(!\26\r_\272\317N\247\3\357}h\252\236N\34\350:\6\335\336\f\240" #"\200\332Y\212\17\22\303k\250\270Y\373" #"\364\304\216&\276\252P\311\4\200\361x" #"\214$1\30\217\251\211O\20j\261\325T-J\340+\32R!\3\201\250\272h" #"\202\344\247\370\21\261\277\2\200\305\212E" #"\315sPR\231\246\t\206\303\1\224\2\352\272Yg%\266\36Z0\6\332\237<" #"\221/\246\265)(T\0055v\225i\206\265\2155,/n\205\326\240^\17\333" #"\3043Z+\224\345\230m4\r\347\0\357o\356\341\206\326tV\322$E\222&" #"\30\216\206\310\262\f[\226\267@k\205" #"\215\215\315\211j@c\23\0301\267\36I\226@i\242*j\243\240\264\207\263r" #"\26)\206\210\355XSa\343\276\tm\340XR5Q\232J\236:\325\224\375q" #"d\357xd\257\350Y\306\6I\16\246" #"\274\374,\313`\214\301\316\235;\260\261" #"\261\211\325\325U\322K\215\214F\2639" #"\201<\313\361\370\343\217\243\225\245\320\320" #"\350\266;\310\263\34\343\315\r\244:\1" #"\f\227\202\331\360\313\fo\0A[\25 \204T\2\225\301`\200\265\265u\224E" #"I\202\304E\201\265\2655\f\207C\244i\212~\277\17\255\24Z\355\16\2750G" #"\201\325K/\275\204\225\225\25,--\342c\37\373\30\332\3556.\272\364" #"\22\274\370\342\213\370\306\335wcii\31\375~\37\357\177\337~,,." ) 500 ( #"`4\0321/\227\326\304\326\26\265\255" #"\251\tA\251 \240M\353\343'P\303" #"\346p\22\262\34\377\e\211\224O\322D\274k$5dS\306\206Q\326W\376\316" #"Z\356\362u\16qG\261d\251`\303\350\270\364\"4\212{\357\275\27+++" #"\350t\3328r\3440.\274`opp6\4,\n\343\262\246\241\17n\262\24" #"\311\236u\302\30\311\336\210KZM\363T+4~\310\336\260\326O8U\t\312" #"<;\356\306yp\267v\34D;Z!\5\221\270\342\36207ZM\354_x" #"*\303`r\255\2151\1ql\326T2a\n\260\3224!\32C\222\241.\313" #" 0n\"\244\353\235\2\251\351 \360" #"\364\362#\e'\17\324U\205\355\2344\312\bf\357\21J\260RQ\220\356x\200" #"\fL1\36#\233\231\231\230F\23\371" #"k\272\267\b\335\266\326\6dL\f\252\253c~!\357K\315\210\2578c\261\261" #"\216\351\37\321\30\332\346]\332\340d\264" #"\321\30\rGH\323\24\306$\241\233;\4\210\34\233\325\321$DB)H\232'" #"\4\35\36\242x\3mH\236\307C\2" #"e\204\22\3304B\26\333\254\370\357\345" #"\3139I\270\32g\34\323\5\342\353\310" #"\357\361\373\233F\342\34\337\27B\343\250" #"\r\215\200\362\376\223$\301`0@Q\0244\224dv\206&\217\31!\271\2P" #"@\247\335A1\36\343\377\371\257\377\25" #"\247N\235B\236\347\330\334\330\300G>" #"\362\21\\q\345\25\30\216\206\241I\207" #"\316\30\0g\340\225e\376\265\350\23474\241&@?\35q\3\300c\264\r\251" #"z\0045\213f?O\357\331\260'\371\371\b!2\0234\236XEE\270\331\361" #"5\342@O\24 \224\2S\\\32\245\31\347e:U\334D\247\2010LC6" #"\t\225h\353\232\23(\rV\257\260\\N\345\340" #"\2375t=\357\347\323\361\323f\217LWb\344\323" ) 500 ( #"\4\301\23[\30\3\21\341EB\364u\325\304>\227\257wBs\3435\217\0236" #"\371,\204*]\3d\304\237+\340\220" #"f\255\360\a\37\372\1\326\327\327p\323" #"M\2772\218\202\375\224L\2\363\216" #"\256\263\274\274\214}\373\366\341\307?\376" #"1\356\277\377~|\364\243\37\235\bX" #"\275\367\260h\354\211\374\333\264\177\n\t" #"\375\0247;>/y\236\343\340\301\203XX\\\304e\227]\26\0\20\271\236\234" #"\267\230\316&_Mr\323\334\273\354\271" #"W^y\5\373\367\357\237\240\30\305\367\222$\223\367/t+e\24\214Q\250," #"%\346\334\246\20\3567>\367\262/\226\27\227\220&T\251\t\0\223sd\a$" #"\301s\216\251-\36\304a\265\\ul\222t\313t/\2555\24\a~\36\16I" #"\252akFv\235\\\277\200\367\226{" #"\254h\360\203\346\251\257\264\363\b\335\243" #"\330\311\6\232\36@C@\252\252\342\363AU\371Q1\306hT\240*J\30\320" #"^Mt\16\203\246\317%NR\215\326" #"\200\236\242\217@\1\276\251\310\r\207\244" #"l\265\2600\217\242\250\320\351d0Jasm\3\211\246\363,\375\0012\346\334" #"h\5e\24\312\242@\232%\200\"i" #"5A\266\377\177\272\336\374\331\262\243:" #"\23\3752s\357}\306{\356P\223\252TB5i(d\201J\b\214\37 \246" #"@\3\330f0/,\334\317\215\333\246\243_\30h\353\371\365O\216x\216\376\3" #"\374\213\233\347\327&\334\266\233\301\26\266" #"hcL\333\2\21\6\313\26\262\205\221T\22\22h.M\245\232\356x\356\275\347" #"\234=d\346\373a\255\225\231\373\224\372" #"DT\324t\3569{\357\314\\\303\267" #"\276\365-\222\34\245\351\216\306h\314\373" #"[\241g\220\37\242~\201\3141_\324\363\fc\31\341\230n\254\364\300\317" #"w\302\247\1\357\a?\370A\374\217" #"\377\361\r\254\257\257\343\354k\257\341\310" ) 500 ( #"\321\243\250\312\2222\31\37\207MXk" #"\361\370\343\217c\270\270\b\245\25\26\26" #"G\230\314H\353\324:{\31z\244\224bt\265\302?=\370 ^|\361%j" #"\222\220\357\326\32\253\27/QI\274(\0\3700A\303{\37\344\207d\223{\357" #"\221\eBR\363<\307\341\303W\342g" #"\337\361\16,\214H\316\343\361G\37\303" #"_}\363\257\261\2640BY\315\320\311\v\234\272\371T\30\n\221\32e\357=\n" #"\323\341Q\276\36\222\37\245\31625h" #"&\31\23\334\6\371T\30\254\3013\217" #"P\360P\rA\366\272\335n\370\331\30\24P\200\4O8\260V\34\257%\350\v" #"\274g\265\213\4YT\3045\235\315\246\30\f\210n\222e\204`\227eI\a\217" #"U\t\264\247q\251ZE.u\230\364\22\232\260\332|\273yTW\16\307p8" #"D\323\324qn\266\342\246\17\335\236\236\24\2<\316L=\4\241B@\374(`" #"#Qy\257\310\337y\255 \343*\2651A\344\35\240\6\216\364\221+P\342\24" #"RU\317\35\325\0007\337\361T!~\3255\235\213\222K\322t\317\322 \330\16" #"\242R\2070_\252\225\275\223\226\345\214a\251*\r4\215g\3$\322Mi\242" #"HA\272\f\307h\352:\240\220\351sNQWm\24\321l\22\244%=\277\364" #"~\342\234+\305\316\337\267\35\260\321\6Nyx\233HA\261aK\21\34Ih" #"\302\347[\207~\277\207<\313\376\227\216" #"N\366N(}\362\226\232O\20$P\227\316Z\245\20\32\352$\241IQ\3034" #"H\220\373H\221I\372w\25\222\316\262" #"\234\241\333\355\265\336\327Z\37\317\223\f" #"\347\2\340y\235S\357}(\265\205\367" #"Jb\340I\324\374\302\205\v\\\21\320\270\352\360a\376\fB\263\275\aF\v#" #"\374\353\17\37\306\337\376\355\337\242\327\353\243\350\24" #"\30\215F\370\215\337\370\r\\q\305\25\330a\275" ) 500 ( #"\347\364\245iJ\08G\2041\324X<\217\230\n\257\237n\277]\235\361 \5" #"\n\243\363\300\221L\237\245\4G\4\34\306\352\37\24=\247HS\213\327%>#" #"\4\375Z\0036\372\230\364>H\217Vs\202I\327*:\356\212\3335\342`\34" #"\262\35Y\36\245\327h\n\32_\242B(\371zx(\225\261\235D\260\251\22d" #"\210.t\232\20\245\t\315\374\36'\324" #"M\3\312\300\2306\205K\316\23\275O\252}R\322e\336;w\321\313~I\253" #"\"\351^2\206Tp\34\3575\262\345" #"\321\306\0\b\3D\274\367\301\236\t\242" #"\327\353\365\361\320\17\36\302\332\352*\16" #"\36<H\3\210T\242S\3156O\256W)\360`\235\n\247O\237\206\367\21\200" #"Hm\206I\320\3444aJ\317\266\274?=+\351=\212\17+\212\2\317<\363" #"\fn\270\341\206\313\316|jG\347Qp\200Qr\343\331\16e\1\315UJ\341" #"\a?\370\1\336\372\326\267\6]`$\327+\237\331\357\367`\214FQH E" #"\374Ug-\214\322\201\266\225\366\370\310" #"+\r\304\213N\1\223\3458{\366," #"\0045\325\31\365y\220*\214\207\311\30\315w\200G\303{?\6\220>i\300V" #"\351\265j\240\256\31d\342A\"\241\342" #"\230Qc\377\353g_\303\356\356\4\243" #"\305%\3769\ac:\255\375\224\236\2654>1 \353\320\241C\230Nv0" #"\235lc8\30\201\250H4Q\261\350\323g\211\b@]5h\34\321Jg\323" #"\31\234\367\334\347ECJ\234s\350\367" #"\a8s\346\f\356\275\367^|\364\243\277\210[\337\363\36L'%\362\334`g" #"l1\235\316(\1\355\350\240\35\36\366" #"\261\23ZM\6\223\361|\5\243\0\a\236$\313\301\273\0002I\365-rx\t" #"`\310\362\214F\0{\357CS\212\2401\363\a" #"[\36\226d\224\262i\205\26\340\234\307\25W\\" ) 500 ( #"\2017\275\3510\316\237\277\200\277\371\326" #"\267p\307\35w\340\370\361\343\1z\226" #"\261\236\337\375\356wq\361\342E\26\32\316HZ\254nPd\211V\334\\f(" #"p\377SO\375$L\270\212\1#\31\251n\267\e\370Oy\226cqi1\214" #"\0365\334<\244\265\346y\330\32\313\313" #"+\30\215\2068~\3548\0055\336\343" #"\273\367\337\217\177\371\341\303\30-,\0" #"J\341\310\325G\360\276\367\277\37\235\242CS<\346\0164oG\352\fV\200O" #"\364\"S\a\222\36L98@t \22\344yF\247\304\350\367z=\244\262&" #"@t\34Z\t]\203x\275ZQPK\366Pq\240\227\224my\363\310\363\250" #"\352\n\326Z\f\230\216\241u\206\351tF_\302\34\31\300\243vT\16\2078\23" #"x\244\262h\316\305f\21\331'\227?#\272\237K\227.\241\256\233V\"%%" #"')\2076M\3\223g\320i\260%\250\264hb**!e\31\213\272{\n" #"z4\"\275!\335\277\236=\237 \37\204\20q\203#\233\25\317\1\211\347[W" #"\326Bd\317\310\201)ln\256\303\30" #"\205,3(\212N\2402\320\375\252\300" #"\311\2\a\r\363\b\315<\232\233\6\16" #"\246\310X\342\212\276?r\350\210\253\2448\353u<.t\272;Af\2620\274" #"b^\251\202\0206\0\2142\316\243\212\351\371\241\a\5j8\364\b\353,j\2" #"\216\253\4\251\241\227s\227\"r\364(" #"i\262\335l\312\243g\263\fY\236\267\177.AF\255\265\310M\36\220\f\317k" #"\34T\34\22\244\26\212(U\226\3I" #"\231\3268\217\220\247\310V\352\\\323\300" #"\215\236?\335\347\322\3222\262,\vM\264ipK\224\21YS\320zy$\262" #"f\361\276\344;\24\242fqx\17K\223)\2450\336\332\"\332I" #"]\322\314z'\234Z\205\245\305%\374\305_|\r\217>\362\b\26\27" ) 500 ( #"\2270\36o\341\332\353\256\305\257}\372" #"\3270\231N\260\261\265\301\23\2c\240" #"\330\242\364h\315\1\250\347\351N\32\260" #"\36\215k\30Q\242\344\20\311\220\35k" #"-\212\242\0<P\361\360\215n\267\e" #"\327 \255\336\30\200\346(\4\250\vJ\245\n\25\302\215M\236\211L!t\2542" #"\303\311E\372\354Brf\251z\3224D[\361\274N\336\361gPF\vkk" #"N\20\211o\353\340@\23\332bR\351}\334\3R\31J_\3016{\37\2\267" #"y\333\225\242\316)\272\350\275\345\0\337" #"\323P\r\231\274\345\311A\v\370\340\254" #"\213\323Ay\377\314\373\207\364\273\242\204" #"\224\370=\303g1\216\365V\311u)" #"F\277\351\377\342\276\317\363\34\353k\353" #"\370\301\17~\200\262,q\307\35w\4\235R \312\\\245\317D\356Q\24m\276" #"\367\275\357\341\216;\356H\24\t\242*" #"@\32\224\3519>\274\234\3034\260J" #"\25t\346\203\331\265\2655|\374\343\37" #"\17\203_R\3734os\342\3446\16\364\255\2062\36\36$C8\32\215\302\320" #"\b\361\241\362J\343\32kIR\254\252" #"\352\370\34\305\214I_\206\265\344\217U" #"\233\337+\257\324\227dE\201\16\17\313" #"\362\212\327)\345\340\362Y+:9\274" #"g\232\204R\200\327\310\372}\366o\344" #"\323I\301\301rs\247%\255\341\314\300" #"\350,\f\224\250\252\n\247\37{\fMU\301h\203\265\3255\354\335\267\17eY" #"\5\riY\223yPR\366_\4\336\200\275\373\366\342\364\351GPt{\320Y" #"\aY\336\305t\272\213\373\357\377.\316" #"\237?\217\315\255u\330\332\303\344\200R" #"\6\313\313KXXX\300\341\303\207q\350\320!\214\26h,qV\344\30-," #"\242\252*\34:t\b+++\370\326\267\276\205\357\334\367m\334|\363\315\30" #"\16\373X[\3658w\356\34\2568x%\352\246\246\371\t\222d&\366\246\252" ) 500 ( #"K\230,6\a{\36\347\355\203-c" #"\177\311\353\322\6\30\25\24\323\27\262\364" #"\260)\245Z\\# 6t\2113\27\321\375\202'N\220q\213Y\357\a?\360" #"\1|\371K_A\336)\360\275\357\177\37/\277\3642\336r\343\215\254Z`\361" #"\302\v/\340\364\351\323(\212\2\203A" #"\37\263Y\211\341`\30\277\223\323\361\371" #"\3\341<\r\264\370\324\247>\205\177\371" #"\227\207\341\275\vC\36\6\203\1\16]" #"q\20Y\226\341\310\321\243X\34\215\350>\362,Li\243\315\1\344y\1\231e" #"^\226%\212\242CAsS\343\336{\357\305\331\327\317aii\t\235N\a\267" #"\336z+\336r\343[\320\270\6\365\254" #"\242\f\255\211\2165f\255\234e\200\2" #"\235h\264\332\201\rm4\"\207\v\34768^>\34\316;\356\356\217\rG\235" #"N\247\265I\e\333\360\374r\0\1=e>\21s\374\204\363'\345vO\26\37" #"\320\232\247BQ\0\323\353vq\374\232" #"k\360\304\343\217\3039\207\252\266\304\313" #"\204t\24s\271q\316\20\246\207}>\250H\377<\237\5O\247\204\334\217F#" #"\364z\275V\340\21\236\233f\4\222\367" #"\203\214\35\26B\2741\31\211\342[KM0Ps\373\265\35\320\244\a}\376\377" #"\2441\212\22\5\222\371\202\26\n\6A\305)\2\270\271\271\5\0XZZD\177" #"\330E]\222\354\214\30\177%\250\v\17-\220\fU\214b\372\254bS\37U:" #"`/Gk\f\213yCs\231\326GT-\345\357I\223S\352$\235\263\220f" #"\0051\322\362\22~\270\274\202\201\27v" #"B\202\302\310\357\226iC~\356|R\23\5e\372t>\24\262\"\307k\257\276" #"J\302\370Zs\302\26\215l\372L\351Z\251\314.\177V^Bs\n\276M\202" #"h\207\340\f\16\312\251\220\300\314\a1\362\34\342" #"\363\210\245\327t\35$\330%%\220\"\374=u\334" ) 500 ( #"\244V \\\342\266\243\276\234\273\t\200" #"y\242\302?\6\"\277XA\341\342\332" #"*t\226\241\236N\270\343\233$\210F" #"\243\21\276\361W\337\300\23O<\201\345" #"\345elnn\341\256\273\356\302\251S7a\274=\206\203g\376u\23&\272I" #"\23K\0\0064\5\341\360\n\306\0J" #"\ex\345\321\315\311\216\20\342\341\3404" #"!\200\336{\364\372}\364z]lo\2169H\257\261g\317\236\300\t\245=I" #"z\324p\212e\367\"M\253\235\334\2$ZJw\245\210\34\27\357_s\22\310" #"\24\":k\b{\225\252;\r\240\1\355\271l\277l\302\0\0 \0IDA" #"TR\301\372\345\0224(\320\210_h\342h\232\214x\204P\264\347S\272\2041" #"&\252\370$\bc@\216\222}\236\236\275t\337\310+\0A<%N&\5\32" #"\255\251\272\320\320\264\320`o<Z\266" #"g>\270M\223\340\0\362\260M\17\224=N(!\201\230OPe(9&\201" #"\357.(a\247S\340\353\367~\35eY\342\226[n\t}4i\202\233>\213" #"\364Z\252\252\302[\337\372V\274\363\235" #"\357\304\366\366\366\e\"\335\241\214\237\234" #"M\371\254\324\346\313\317\314\323\210$\21" #"\254\252\n\277\372\253\277\32\336'\1\213" #"|F\333\327&<o\37\e\23\301\311\271\367\36\203\301\0\375~\37g\317\236e" #"\n\30+\335(\205\246\256C\262Y\24\5\246S\252h...\266l\247\334C" #"Za\244<\215\23\17\366\v\22\a\355\356\356b6\245I\235\306\30(C\364\267" #"n\227\344\277\344l\256\257m\340\305\27_\304x<\206\326\232$\34k\213W_" #"y\25\353\e\e<\246\227\342,\361\333\316\311\2641^s\236 +\376{yy" #"\21Fk\f\27\0260+Kd&\343@\267\271,\271Hm\37\257" #"\16\244\357\251\337\247\276\220\233\336z" #"\23:\335>\316\234y\t\177\367w" ) 500 ( #"\177\a\232GP\243\223\367\320h\232\240Z\326S\254\257;\234;w\16O=\365" #"\23\362E\232z2(\351\221\376\235\f" #"\303\301\0{\226W\320\330\n\217\235~" #"\f\275n\a\335N\a\257\276\372\n\16]y\230\354}\26m\211\nI\247\242\36" #"-\20\327\34Z\224#\24\234\227q\310" #"\2269\330\26\340\311\203\242\300#\374a" #"\357A\210\356\374\1\224L8\345\322\t\365@6kUU-\301\177x\222\336\330" #"\263\262\27\37\272\355C\370\356w\356\307" #"t2\305O\237\376)\236~\372i\202" #"\270'S\314\312\22\275^\27\307\217\35\303kg_\a\240\320T\24<\213V\32" #"\222\0Q\201\232\207\340\35\352\272\301\322" #"\362\">\362\221;aLN%p\245\320\353u\341\255GU\317\230\254\f\214\26" #"G$\206\355\\(_7\316\302U%Bg\263R\250\233\32;;\273\370\313\277" #"\374K\232\224\246\24\366\357\337\217\367\275" #"\367\275\270\352\252\253P\22634\316\"7\21\31N\313\177\244h@NYiB" #"\24\t\35\340\3405\fr\210F\214t}cy4 [\215\v\331L\332\354\247" #"\24\5~\353\353\353\330\273o/\224W\310M\26x\212t3\216\343\330H\310\a" #"\0\307\312\20\2511\n\235\340\374='" #"\216\35\307\225\207\17c}}\235\271\316" #"\233\330\273wo\320\3565\232H\362\322" #"\300\25\3\0\221\353q\0\332\215\n)\r!u0\323\351,\360\367$@k\31" #"\27$eA6\336\n\b\323\313H\313\257\206\346\270\336\271&\34T\353b\2754" #"-o\315;\225\24\235\341\363\24\5\340" #"\265L\307S\260<\376Q\34\20\31\237\22\203~\17\375^/\224g%{$\343" #"k\1'\353 \3017!\303\206'w" #"\201\3\342\20\200\313\236\t\206\335\207`\323\313\32\363Kv\223k<f" #"%\215i%\376k,\335\4\212\0T\340D\246A\276\254Q\372<\244" ) 500 ( #"\272\0\346uY\357\222.\3306\2775|\6\222\351@\226\250;2\375\251,K" #"\2349s\6\273\273\2738v\354X\30\350b\255ms6\223\244\2208\326>\352" #"\273z\17[5L}\222H\\\a4\22\234\250\320\376V\2279\307\24\201\221\275" #"\30\2|\217pn\255%\215\336n\267\213\351d\212\252\252!\321C\330;\24]" #"\360\32\363\272\361\332\210\24P(-3\242'4\214\30\264\250\220\fOvwQ" #"\24d?\27\26\26 * \177\370\207" #"\177\210\263\257\235\v\352\3\377\371?\377" #".\212\242\v\353\34\226\227\367`6\233\242\256+4\326bum\25M\335\2042" #"\262\4\276\264\206\16\323i\211\262\232\241" #"\310\272\330\336\31c6#N\360\336\275\3730\32\r\260\274B(\366dg\27\377" #"\365\17\376\0\343\361\30\345\264\304\236\275" #"{\260;\235\5\341\375\24\315\25]c\25\2\213\370\214\346\23J(\16BY\375" #"@+\217F9\36\255\256a]\5c2XWsRK\201\241u\26yV\320" #"\372\273*\330\30m2\370\206\232\311\34" #"\313\n\371\206\202oo\251\331\314\272\232" #"h\273\212\225YD\335\206\nh\3415" #"\217\244\312\236\231\17\b\4\204\200\334\37" #"\257\241\2634\35\261\256*\0261R\262=i\2778\356\2g\356xH\254\371\363" #"\323\221\324m4\227\355\252\322\360\206\0" #"\24\243\244\253?^WU\225\250\352\32" #"\335N\227d\2\331\257(N\374\273\335.N?v\32/\277\362\22\254\265x\337" #"\373\336\327\nnS\260\302{\236\334\246" #"\222a6\212\202]\31\201\35l%\337\233\f\203Q\374X\5,H\321\3027z" #"\256\351y\224\357\262\216\22\274\326yK" #"\256m\376\337\0\2\204\2142|L=\224j\253)\b\265Gk\215\321h\324\32" #"\336 >\260\327\357`6\233bgg\a\3169" #"\364z=\226\22%=\334\246nB5\265i\34\32" ) 500 ( #"K\3734\317\n\364z}h\255\361\360" #"\303\17c0\34\342\231\247\237\306\245K" #"\227\240\340\361\322+/cV\222|\352+\257\274\202\361x\v[[cXK\25" #"\310\311d\202n\267\303\rU\200\321\31" #"\333?p\265\223\366Z\236\347\324\344\351" #"\3433\225\270\240\327\355\360z\203\32g" #"\263\f\373\367\355#_\310gi\236B" #"\b\240\25\270K\25\326\203\224\204\216\36" #"\275\32\277\366\357~\r\v\v\vp\3163\315\260A]{4M\311\353\334`i" #"i\31\373\367\357\243\206\366\225e\354\356" #"N\340\0355\344\255\255\256b6+1\331\235b0\244\300y\274\265\205\252*q" #"\364\330\21\374\346o\376&\376\354\253\177" #"\206\307N?\202\341\342\22\2246(\214" #"\201so\240\303\256\343z\v\275\206\314" #"PLx\363<\203\364<\31\243\347\366\232\2@\261D\226r\220\310Q\b\277/" #"\376\209\30376\22\324\364\343\1^" #"\304\272\256p\303\233o\300\260?\300\203" #"\17=\204\255\355-\330\332b{{\e" #"\335N\0277\235<\211\303\207\257\304\265" #"\327^\213/|\341\377\245\207\r\307\345" #"b\342\337\321\330<>W\240\254\255f\250?\352\314U\320,\353R\3275)\37" #"\260\323\323\206\264T#Z\207\340\230\24" #"# $\f\337\305\306\306:\276\374\345" #"/\23\317Ok\274\347=\357\301;\336\376\16(\245PW5\340\201\\\307\211$" #"\216\346!C\270\251\204r\221\234\206\310" #"\262e\254\257+\262+\342T\251\334\177yy\a\374\177d@\35LnB\260{" #"\340\300\1,.-a\262=\301\371\363" #"\347q\375\365\327\243\361\r\340X\26\206" #"\215ox^s\231\271\254\227\343\265\322" #"\232\305\366M\324)UJ\341\252\253\336" #"\204K\227V\303\201\27\307\225\32\343\324" #" \247J\v\321h*\304\200\251\235<\211\261\314L\206\262" #"\2540\336\36\207\237\213\0034\0\245\263\20\270\212QUZ\207" ) 500 ( #"\322\244\326\0\34\311\204\311\bV\221\223" #"\233\347a\315\227 \265&\316\225\362\214" #"\224\"\312\214A\361\340\24/T\31\325" #"BN\304(\237\277p\1\326Y\354\333" #"\277\37Z\353\304p\360\347{\a\17\352" #"\32\245i:\221\232!\310x\226e\204\3363/S\202(\245\22\271\241 Y\304" #"\16\24\200\367.\350\350:\357\260\265\271" #"I\317\224\233\374R\203&\324\230\324a\3109\227\300l\36)I6\f\f\24\254" #"a\225\212\24\241\361\22\36\322w(\255" #"Z\366\300q\260\233\31\22\371\226 \234\2365I9\245N?mR\261\214V\304" #"\200\304C\361\244\251\360\f\35\331\t\23" #"l\201 ]\221\262\321\332\367b\270\330" #"#\207\365\202<\27\207<\357\342\334\371" #"s\320Z\323\234\373\224\357e\e(\a" #"\350\\\a\376\243\341\251_\16>@\341" #"\255\212\201\236{\266\334\314!u\37[7X]]\243\3172&\4\223\277\367{" #"\277\207\246n\320\353v\260\262\262\214w" #"\277\373\3358\375\370\23X\275\264\212\263" #"\347\316a\365\322E\324M\215\262\234\242" #".k\230\314\240\310\251\24\335\262\343\316\205A\t\n\32UUs%\313py\227" #"\232WF\243\21:\274G\313\262D\277" #"\327\307\240?@U\327\350\344\35\374\363" #"?\3773~\371\227\177\31\336\313\332\211" #"\35pa\270\207Q&8\250\364\234\321" #"\365\210\0163\235a\241~A\265\371\370\262?#\372D(\216g.\236\4b\332" #"\221\374\230s\226\202e\212\2309qe=r\30B\206\275\343f<\222\330r\16" #"0\252m\37\323}\235\202\n\261\214\315{\307\211\177r\334hGN\264\256k>" #"\267\221\26\301\220\a\355\3457\260Ci" #" \235\372\1\372\32\aQ\21\262\256\0014\243\336\t}C)\r\2434^|\341" #"E\334\177\377\375\370\330\307>\206\203\a\17B\20G\17" #"\242}\314\312)\36\376\341\303\30\217\267\361\251\273\376M\b" ) 500 ( #"\364\3326\"\236A\317\3236\5\355\214" #"5\274\270\267\5\275u\216\2241\304\16\244\300Az\177o\224L\314\3kZ'" #"\374L\255\377\227?\223\242\357\364\377t" #"\257B\367I\357K\366\321\221#G\260" #"g\317\36|\353[\337\302\223O>\211\245\245\245HM\362\16e5\305d\207\24" #"K\276\363\355\357\340\357\377\376\357\3\260bY\252\22F\206O\3205w:\5f" #"\323:\330\335\24\255\36\16\207\330\335\335" #"\305\327\357\375F\330?\203a\37\345\254" #"\16CA\246\263\22\v\vC\364z=\364\272=\f\206C\256\274\30\34<x\0" #"\335n\37\275\36\3654t\273]t:\24\214WU\31P\312\301\240\217n\267\213" #"^\257\217\315\315M<\377\374s\260\326" #"\242\333\355q\22\354\3020\235t\357\211" #"\366o\343\34\214R\201\16H\376\223\220" #"\365\341p!<\377\275{\367\342s\237" #"\373\34\234\263x\345\225\227\261\276\276\216" #"\215\315\r\364z\35\334r\363\333\320\351" #"w\241\240\320\351t\341,\215\20\2361" #"\257\337\260\352\317dBH\267R\264\336" #"\253\253\253\270\363\303wbe\3172\226" #"\227\366 \317\251\242\256\224iU\306\330" #"\371Q\322\233g\234\334\22\370\342A\315" #"t\361\354F\337\347\234p\337c\345\300" #"9\207\254\355\360dsF\203\325v\0321c\v\37*\212\324F\5'\356\234\307" #"\225\207\17\343\256\273\356\202m\32ll" #"l\300Z\213N^`\264\264\210N\247" #"\b\"\324\202\376\0214\200\220\345H\27" #"\264l~\355U\230\252\226\362A\1\346\377h\35D\351\t\376\6\300e11?" #"Z\221n]\303\233\342\334\271s\370\323" #"?\375S\24y\216~\277\217\333n\273\35o~\363I\328\20$\242\332\206!" #" w\316A\353\f\316\325\\*#g\245Y6,}n\bN\225\314~\253" #"d\254<\t1\363\365\246\206\"\313\210\277<\350\365QMKL\247S\b;" ) 500 ( #"\301\203\214w\212\n\247\210V\372\322\22" #"\364\350X\306\216\310=\35\2\222c\241" #"Y\323T\276m\353\216\312\357\261\363\230\371\242.6]\b\212)\31\363|6i" #"\235\307hi\t\231!\371\253\255\255-\354\337\277?\fl\240Mi\351q1r" #"\242\24ME\322\274?\274\367\304\27\366\"\342o\222\351um\315\3237B\"5" #"\e9g-4'TM\335 \3172dlt\351%\224\235h\310vww\261" #"\263=F\257\333i\215\271\216C?\0245\0351o\215V\333s\231\213i\317l" #"\240\205\346@\364\206\350\364\304\341KU%M\34\0\20\337=\247@kmm\r" #"\n\324PY\3275\316\276v\26\v\243" #"\5\354\333\267\217\356\27\202j\265%\341" #"\322\357\211{5-;\"\272\17\255h\252\20_sf\b\335o\32\v\357\32h" #"O:\313\222\3305\\z\263\266\301\264\234!\317s,--1\262L\366+M" #"\236\322\236\0\243b\23a\340X)\261y>\4\266JSG/\225\250./\a" #"\213\301\24\324L*CT:\347.|\37i\23\0p\341\334\5\0@\267\333A" #"\267\350`j\35\274u\3104\5]6\341\333*E\r\240Z!p\3405\243\252" #"\340\373r\326Q\331ME:\201\367\212" #"\22\225\334@g\32\323\315)\16\348" #"\200\301`\200\337\377\375\337\207w\16]n\234Y__\307W\277\372U(e\320" #"\355tPV%\224f\333W\307s\272\274L\250\354x<n\5U\302u<x" #"\345!\24E\201\314\344\1]\231N'\330\336\36cw{\aSN\326\2141\230" #"\316h\362\\\221S\265lyy\5y.Mi\36\312(\236\335\343Y\36\251\215" #"z\317'\226A\345\3019h\345\221%" #"\324\32\255\243>{\232\244y\17\236\352\247\271\272\302\322\227Z\374" #"\202\17\233\223\3660\331\25c\4u\5\333\r\r\355\25\340\200L\31" ) 500 ( #"\310.O\355Z\32L\5n\237%c\254\302\3043\200!U@\371@\305\210M" #"\271\254\4\341\250RC\34\341\350C\343" #"\231\212\347+&~\266u\r\255\0\24\32\215\243$\v\354C\204\177k2\23\324" #"K\236}\366Y\\y\345\225d\327\265" #"\341\201'\n\377\370\217\377\210\213\27/\342\315'O\342\346\233Oakk\v[" #"[[X\\\\\274,\300\246&X\321\211M\200\nx\36\"\20\245\233\b\231W" #"\201\23,\177\17\25*N\334ur\266" #"\322s6\217\326\322\331\360\360,\21'" #"\340\202\374J\251\16\236}\237\203'\324> \331M\340\230[kq\364\350Q\\" #"w\335u8r\344\b\234s8{\366,\372\375>\326\326\326\2\305kk\274\201" #"</\260\2600$\220\316d\250f\304\227\257\352\32\5\17H2\336`\241?D" #"m\251\352\254\240Q\24tmy\236S\20\314\257\331l\206\351t\32\252V4\220" #"\"\307\221\253\257\304\211k\217a\317\336=8|\345at:\35\246#\22\32[" #"\344\5\333F\25$DC\374\21\366\205\v2i\321\257e\330\277\177?\16\35:" #"\210\252\252X\2660\vS\363\200X5\25P\206\366IL\332#\352K\336J\22" #"K9k\364s\n\307\217\37\307u\327]\207\274\310P\325%\312Y\311\364B`" #"ww\2\5\205\262\234\205\357DUB" #"\210\217\375A\34\36&\366\361\326[\337\23\22l9G\3169\344E\1\360\364W" #"\2554W\266\b \0\3575\315\22p\241\372\241=Ki\232V5\241\251-\362" #"\16\201\216\231\4;RZ\244\215O\eQ\270_\362w\272 :H\3361\27\t" #"mm\310\24\261TZ\301t;8p\305\25P\nA\262L\370\261\223\311\4\373" #"\366\355\303dgB\250\35?\340\364\340\213a\243&\5\a\247<" #"\f\332%\16)s[\357\202a\bz\246^\272J#\323\264\337" ) 500 ( #"\357\341\271\347\236\307=\367\334\203=++\0\200O}\352W\260g\317JX," #"Y0mH\273Tx{\316Q\331\314h\312\32\b:ok\5\316\a\222\322u" #")\233)\235\210\242\274\274\237\355\244\367" #"\311\346\6l\323`\357\236=x\355\265\3270\331\335E9#\16\216\347@`\236" #"#\27\256;\240\245L\1 \320\235\206xX\v#\3314\227Hh\n\232f!" #"\347\366g\310\237\2454J\316\312\200\344" #"\237b\363D\374\231\210\372\266\271\213\36" #"E\321\241\262XS\207\tH\32\304\237\n\311\vE\"\221\237\6\225\360v34" #"-)(\31y\30UA\344\271\267\20\275\260\1775\361fYc\222\276/m\22" #"\214\235\351!x\5\225\274\267\267\2671" #"\233\315p\344\3527\241?\350\207\347\347" #"\205\366 \b\203\345R`\316\274D8" #"h\225\0215\301\320\274q\0\334d\202" #"\220i\317\253\22\244\274K\271v)\273" #";\327\0044\177\337\376\375h\254\305\203?x\20?\377\363?\217,\313P1\27" #"\215\324\e\332\t\2138\256\24\251N\321" #"\320\364\32\274\367\314;'>\240$\2\n<=\316:\330\3062\302\312\315s\36" #"\330\336\331\301\372\346\6l\325`a4\"$]\305\22\260\334\337|\20N\373M" #"F\340\306IW\340\312\16\30u\262\226" #"\366\236\a5&y\260\2G\272\217\220\310\r5\224\204W\266\341\346%j&R" #"\212\220\271\215\215\r8\353p\325UW\21Z%\311\2778c\\\216\32S@\306" #"t\4\217D8>i\366s\240\300I\234=\357\3077\237|3\376\371\241\207\360" #"\341;\356\304\227\376\373\177\307\332\352*" #"z\235.=\37\246\267P\223a\201\205" #"\305\5\234:q\23\366\355\335\217\203\207" #"\16b\264\260\200A\177\210n\2278\267A\344>\t(\244$\354\1\24" #"y\21d\246\224'\3733\231L\260\263\263\203\331l\206\355\355m\\\274" ) 500 ( #"x18\236\351t\212\213\253\227\360\277" #"\275\353\235\250\352\31\274w!\bIm\312|\265\240\205\374C\320sN\24U[" #"\232*=\233i\340\245\30\225\244\30\232" #"I\1\214\340\261\201\204\316\bM\367\336" #"\301\272T\345\200\312\227\36\36\6*\366" #"Mp\262\224&WR\311I\367\2744\322)\323\346\205j(8\5d*\203\225" #"\201+J\3\n!\30VL\273\360\236" #"\206\236\310\375\310\331\2223'\257\371\357" #"O\223r\347(\330\326*\203\316\24\36169)\226\353:\260o\37\362,\303\313" #"/\275D\315\207\274\336\312\31\274\374\332" #"\313x\342\211'0\34\f\260\276\261\201" #"\337\375\335\377\a;;4\240\344w~\347w0\32\215BB(=7\32\224H" #"(O\t\r\264B\306Rl@\344\241" #"\207\200\25\211\237\22\347\5\nF\205\302\223>C\2717\2\e4B/\211T\36" #"4\201[\322\224\224R\314B\22\313\3121\244ul\302w\206\304\301Yn\326j" #"p\333m\37\302tZ\302{\207O\177\372\323\370\311O~\22\202\301\252.1\350" #"\365\321\37\364\360\322K/\341\245\227_" #"\302\321\253\217\340\347~\356\3470\30\20" #"\332Z\327\r:\335\202b\211<\203Q9\352\272\202RT!)K:7u]" #"\207\353\375\321\217~\204c\307\216\341\310\221#XZZ\n\353^V\23\36(E" #"\225\346\311d\202\311d\302\361\205\246\3121\3^\304\377}#.\267CYV\20" #"\212\"\311mQ\337QU\327$\311\245\24\253\23\2645\316c\377S\f~\301\225" #"]p\\Dt+Q\20\22*\236 \353\224\364UU\5=\325\324\20\306\225U" #"\315\322dH\256U\374\250L\257\225\275/\332\300J)\314f5\0\213,\313\341" #"\\\3645\344_\244\362\254\320T\244\302\242d\307\31JF#\bi" #"\341\\;\336\"\0\247\206\322$\377\n\245h\256\234\\ \35\312,\360" ) 500 ( #"\0\305\2518g\1\336`\324\344\24\5" #"\216+\356\240-\212\16\e\233\310\353\265" #"\4\273\310\363\245 \231K\3M\323`V\226X__G\321\355\360\203h\227\363" #"\3r\3147&\243\202S\a\255\224\342" #"\246\17\306m\215\206kb)\317\301\303" #"\333\30,\364\372=\234~\374\t\334\377" #"\235\373Q\260\16\357g>\363\31F\305" #"\252V\206\r\357\340-\340U\212n\22\312c\255\v\215g)\312<_f\1@" #"\235\317\312s\320\203\313\202\n\272gA" #"\206\242\3\20\244u\2648\202\367\216\244" #"\277f3\344\203a\320\267\225\231\327\362" #"\3764\220I\313U\202\230\301\371`\30" #"\323\214y6\243\0\1774\"b\273\2\302\365\206\22S\202\260\v\342&|_A" #"s!\373\5\311}\200\364x{\335\29\243\210uU\241\252+rL\326\3026" #">\360\22\351\363\223\214\37 Y\21\357" #"\271\335;\242\267\242T\21\234m\342L" #"\345YKr\325\342\355\362g\344&\v\222q\242\v\253M\6\327Pp%\263\320" #"\263,\303\363\317\277\200<\247N\317\205" #"\341\2\322\227\341\22\251Rr$9\370" #"\21\207\307\347\206\341j\346\211\273`\360" #"y\303\205\214z\36qO\3\4\2555!v:\0066[\343-\224eIM\25" #"\ru~\e\2558\30\243\4\322\241\255P\220\32\206t/\2m\345\n\21\323\317" #"T,m*\245\302\271\f\6\212\273\214" #"\255#M\347\246n\b\1\346\301\t\266\256\250\373\236s>\23382\371N\245\r" #"\274\217|+c2d\231\nk\0\0\323\262$^\246\247\215a\255\207\311\204\37" #"\e\203\257x\236<\326\326/bq\264\34l\215L\316\243$\307a:%d\305" #"\30\22\301\207\330\169\307\4\337^\246" #"\el\330x;\307\250\267s\310\263\"4\350*\376|J\300]\0\5\336" #"\375\356w\343}\267\276\27\217\374\350" #"Gx\341\371\27\302\b\362\311\204\264q" ) 500 ( #"oy\307\333q\313-\267\340\252\303W" #"\241\327\357\5\256\244\263\26\326\223\202\302" #"\316NM\tb\23\247X\6{\22\326\315\2612\b\357A\257BP\334\353\3650" #"\34\16\261w\357^\349r\204\35<\3\26\336\241n\32\226\373\22g\333N\202" #"R\304\216\316}\264\17q\277\322\331\365" #"\31M\322\262\311\372 \tb\3225\243_>Tm\350\\#\360ye\320Ch" #"\342\364\200R&\350i{O|\367y\312@\372jU8x_\a*\205\3\264" #"v\360\216\264N\345\232E\243\233\34\254\200<\2:pR\316\250w\254|\265\e" #"uS{,\257\364<\206\0\a\24\370Q\217\n\331\b\17\307\311%\5|\202\266" #"O&\23\24<53g\345\"\347\0346\3267\220\259\366\35\330\213\17\335v" #"\e\256\275\346Z,,,\4\324P\20\300\301`\30\246\30*\235\301s\237\201\\" #"o\bT\222{iU[\371\214\2658" #"\307\222\250\363\237\345\347\304'k\255\320" #"\324\314\3114\355\265\23[\0D\315\333" #"\220\250\351\220\265\204\357\"[A\311\206" #"e\n\306\356\356$\254s\236\3478u" #"\352T\22\244\3\312Y\314\312\31\36{" #"\3641Lw\247\270\351\246S\330\277\177??gVF`\e\327\324%<f\34" #"\300\23\254\334\353\365\302\374\0y\36\237" #"\374\344'C%\245,K\n\342\25W" #"v\222\230D\256\313\260\304\251\347\352\241" #"\364\16\245M\272\341L\360\263\366N\303d\\y\210S \3200OU\v\363+" #"9\223)\350$\311Inh\322j\240\2151\5\263,-\237sY3\251\254I" #"\20\a(\237T\36\303\231H\252]\374yi\345Z\316\2312&\254\231\265.\320" #"e\305\276\307{\347\251\241\32TA\201\v#\305=<\235Q\6\20\265N}\227" #"\370O\328\344,U\2103y\230A\n'\350\216\22R%\207R\31\303AD;H2\34dQ" ) 500 ( #"\223GD&\1\204\246\0221\270\316Y\370\306\"\313s\f\aC\344E\216\341p" #"\210\355\361\30y\221\3036\226\2206\250" #"\326\3\242\0\201\235\262\26G\204\20\344" #"H\363\216\326\32\260q&\275s\216\262" #"#&$\367\373}\374\364\247?\305\267" #"\377\366>t\272\35\274\371\344I\334~" #"\373\355\354|*\312p\233\6\6\334\0" #"\247\245\353\36\274\370\232\17\223,\216\0065\\xH)?\r\4\305\250YG\324" #"\f\255\31\221\362\221\6\3206\306m\276" #"\211\367\236\5\334i\303lm\217\2714\204 9#h\207tX\312\317J9\273" #"]\26\364\255\21\314\251\201\215\23d@" #"\2\322\336\222\\\331\234cO\3\ti" #"\306k\370\20\307\202w\233{\250\370\336" #"\253\262D\226\213\204\223\306\352\305U\\" #"}\325Uh\254\203S\26\316\245\345-\336C\202v;\a\223g\255k\27TB" #"\320z\231\302U\24\21\225\226\265\220\361" #"\256\262w\327V\327P\225%JN\266f\263\31\254%.\271\265\16\v\v\213(" #"\2221\305\343\361\30\217<\362(\212B" #"\a\31\2524\310\227N\317\364\260k " #"t\312\312\301\23\3.]\251\363\250\326" #"\e!\351\363\301\200|\307t2\201\316" #"3\234?\177\36/\236y\21\373\17\34\2006$\eg\262\f\360\211\236\263'\335" #"Lc2\222\251I\203~F\313\323\317N\eM\235g\316\27\ea\31\3242\235" #"N\21\312\225\na\317\347E\316\306\210" #"\246\333\344y\316B\354\261,\326\351v\240\r5m)\311\346y\17mmm\261" #"\246m\27\27/\256b{\233\206\320\234;w\16+++8x\360 \234\367\330" #"\263g\17\206\303!\214\311\260\266v\21" #"\375\376\200P\30\244\303d\f\226\227V" #"\360\310#\217\340{\177\377e|\372" #"\323\237\306\221#G\220\345\6\263)\361\374w&cT%" #"\5\222\203>I\36Vu%\204'.W+\36s\2334" ) 500 ( #"4&\245V:\274$fn]\23E\332=\2\362\234:2k-*\245\260\377" #"\300\1d\31\255\341\335w\337\215\242(" #"0\36\217\361\246#W\207I|\3156\333f\353\340\275F\226\321zB+\36I" #"\212\300\311\23\224H\270\325mt%\265\317\214n6$$\257\224\n(S8\353" #"\224\251\361>H\2T\264\223\242\24\311\231\17,c\2J\1\202\22\233\356c)" #">\5-\2\n\310h\22\27\18\211\340A\30\265\215\334pC\357\r\266\20\340" #"\222).\273\316\24Q\236\17\310\3\300" #"\241\222\363\347\255\304\v\361\274x\216/" #"\4\25c\247,\347Y\304\374\347\351\ti\22\"\317El\201\250\245\244\3643i" #"d\226!\31\224XZX\220|\334hD\211vS\327p>\312*Uu\215c" #"G\217\3433\237\371\f\262,\v\312\31\273;\23hm\2?_\356)\3173\374" #"\361\37\3771\316\234y\36\237\375\354g" #"\321\355\366\211>\350\250*%\367 \327" #"\234\"\203!\341uQ\306M\223\321C\343]\254\212$?+T\251\246\216\373\205" #"\2523b\333H[V\222\204\360\235\236}\236\22\17\230T=\35\371*\2454\220" #"y\330\206z^\302\36g\32\223\330\30c\f2\23\223\300\321h\1\373\367\357'" #":VX;E\23)=\305\37\202\16\6j%bR&\317~6\233\305\344I" #"kx\353a4)\2x\20\355K\374\2771\206zM\2344lj\244\324\320\366" #"^q\341^r]\300\332\232\355y\316U\275\230$Q\177P\4Hd\337\306\204" #"\221hv\343\361\30\17>\370 677Q\249\26\27\227\320\351d8y\362" #"\315XZY&\360@1\312\317\227\"\0251\355\351\214Y\37+\r\351\31\223\370" #"\243\231\243{y6>\361\337R\365\207\3669\23\220\r\242\\\303" #"S\27C%\304\246h?\305\200Y\226\243\251\32\232i\300\373S" ) 500 ( #"\e\352\23\310\3463]\322\250d\23\257" #"\242\260\364\345Y<\35D\257\300\245e" #"\204\200K\370!\264\21\251\4\3E\2746e\270KN\2530\376T)\204Rr" #"\312\317\243\aGr\\\rOm\22\201k\221\347\222W@\2\214d\5I\206\356" #"i\330\302\217~\364\b\276\371\315o\242" #"(\n\334p\303\r\370\305_\374\305 \235\0226\3/\210J>\323\326\r/^" #"\301\213A\337\341\274\205\326\31\a\273\334" #"\30\303\324\204\0262\f\326\31t\216\313h\221KH\\\34\r\"O+>\344\304" #"%&/\351\221\233\34\235\274\200\222\351a\312\3\336\321d\32\17(0\1[)" #"\270\244\2337E\r\344\317B\212O\327\222\202C:4K\213\213\24L\6C\201" #"\300\317\224\317\t\31b#\367-\237\357" #"\231\304O\212\24\362=\321\240Y\364\373]\252\4T%&\223]:\324\35\5\200" #"&\320\324u\25\326\23P\260M\303\274" #"O\n\320K\236\270'\317\356\302\205\v$\357c2lll`k{\214\335\235" #"\235\300\345\22\244bsk\23\263\351\f" #"\336{T\2632\4\275\206\17\202p0" #"\351{)\361!\222\275E\343\210\336\321" #"\355\25P\336aii\221\307~\326\255g+\16I\236i\243\320\342\252I\31(" #"EJH\2E\234\274$;\252\365\271\36\236\365uc\23`\236\347\30\f\6\30" #"\217\307x\365\265W1\235N\361\221\217|\4\275A\17\256)\240t\6[\327\350" #"t\nLfSl\217\2671\331\335\305\352\352*\266ww0\36\217\321\355t1" #"\350\365\340\234G\335\324\350\366z\360\240" #"\262\2668%\371\345\234C\277\323C\207" #"\21\321^\257\207\343\307\217c\317\236=" #"\341\272r\223!\313\310i\317f\263\220" #"\230\364\272\275\340\360\5]\377\351\323" #"?\305\2313g\330\306x\\\274\260\n\347\32Lv" #"w\260\263K\r\rEQ\360h\315\fZ+d\332\340" ) 500 ( #"\334\371\363x\364\261\307\340\275\20569" #"\274k@\324\335\206K\177q2\233R" #"\n\203\376\0\203\301\20\a\17\36B\236" #"\27\370\342\27\377\20G\217\36\303d2" #"\305\321\243Gp\374\370q\334w\337\337" #"\241\323)\340\275\306\2313/\343\346\267" #"\335B\201\255#D\6\316Ae\206\271\231\261Zc\230RC5k\252\334H\300" #"OvD8\304\226\313\316\211\343a\264" #"n\377\276\375\370\355\337\376m\214\307c" #"\34<x\20\273\273\273\350\364\273\241\302" #"\222\322\221\0\r\223q`\1\5x\v\353\332M@l\356\222\375\26\355#\0\246" #"\220p\240\223gQ\265!I6$!\27\27\346\22\3474\217\344\246(\225|g" #"\354\346\0062\235s2\0\276\177nZK\202Z\237\330\26\357A\3129\22H " #"\251\266x\v\345T\bb(\1N\355X\374\34\271\22640\27\244\24\374\273\234" #"\315\24Z\361\34\254B\321t,\371y\t\346H#WSOJ\253\314\333v\334" #"i\331^\202!)e\317\323\251RJCH*\30\251\226\317%\372 \321\220\352" #"\246\302\236={\260g\317\36\254\255\257" #"\243,\313\240\25K\325\271\22\203\301\20" #"J\201\232~\225\206R\6u\335\264\316\207s\16uS3\310\323\305\223O>\215" #"\237\375\331w\360}\305\275\332jH\6\2p\1\5V\20\342`L1}\t\344" #"\27C\342\233Gy-\271\377\226\354\25<\254\5sn#P\226\306\34Ji\322" #"\224\265\16\2343\361Zs\325\331S\311\233h#\36\0O\301\213\231]\4 4" #"UB/]\242!S\263Y\31\376O\356Yk\215\302\344\360\\\211\365\226*\216" #"\226m\264\234\231\24LI\3270\255\302" #"\t\n,\315\253A\371\301\327\360\336@" #"'C\250\346\253\17\4\302\305\221\350\225\255H>\314\2310\314\"\255\204" #"\314\307i\251\252\221\254A\221g\270\357\276\373q\361\3429\0\36\263)" ) 500 ( #"!\371y\236\341\341\207\177\210\337\272\373" #"nx\337@\251\254\265\366\316\271\250m" #"\257\310\336\301:X\245\22\2004\312\320\246Ie\2707DPG\2\341\364LH" #"\220.Ue\357\200\3067\310\320%E\25p\f\203Xe\266\34\364\316f5\262" #"\254\200\366\355\244\322Z\213,\345\nyO\252\0014%\6P\206P\234\324`\b" #"\t?\314f\a\257#4g\234\16\332\24\344\34\30\335s\316%2Ib\264\300" #"\\\227\222\276\37\\\232\26\21\350\260x" #"\364\273d\275\2311\34\370\304\367\t\342" #"\31\262\32c\240\265\314G\247\22\317#" #"\217<\212o|\343\e\30\f\6\370\205" #"_\370\5\234\272\351\24\311\211\201\203iE\274M)]*F\301\"\364\237\3016" #"\rC\357\211t\26\0\17\372\177\372\376\350,\4UM\21\25\332,\204\229\200" #"\2622\326\200\213\216&f>B\350\6\244\324\353`kib\360\360\206\232\201d" #"\223\244\31\224\236s`T>`\243\235\34H:P\264\241\eK\302\324\216ul" #"\2151\\\276\217A\256\34@\315\\a\353l\310F)`O\20\23\20\207S\31" #"\215N\247\303\332\305\5\312\331\fO=" #"\371\24\316\234y\2215\226\35\234\215:" #"\273\3169\326t\316\251\213x6\243f" #"\213\234\326\247i\32\344\206\34\265\365\16" #"E\226\301\230\fuS\a4\331:\242\342\3245g\300<X\241\233'2\204\0" #"\0 \0IDAT\333\355\242(\n\3449U\24\372}\352t\225\201\"e9" #"CYVaD\353\332\306:.^\270\0\24328N\232$\261\323::\271\324" #"\3408\347\240\235\2072@\252m$j\b\363\362gi\211)\354\3\305\350=t" #"\320\36\225\227\224\315\210cG\25\214\27" #"^x\1\347\316\235\303\326\326\26\232\332a<\336\204\202\302l6\303" #"\326\26\351\377fy\216\272\252Pt\n\24Y\201\311t\227\222Kk\303" ) 500 ( #">\227=S\aZR\21\2_\255u\320\332~\340\201\a\3023\5\200^\277\217" #"\376\240\217~\277\207\235\235\35Bt\273" #"9\276\376\365\257\303;\217\355\335\35B" #"\336\371\36\373\375>\262,\303\316\366\16" #"z\214\270+\255\321\351\344\34\30\0\275" #"^\27u]\242\252\34\32\255Q\300\5\352\223m\244\234\352Qd\5!;\334\b" #"H\323\323\0\3274\230\225\23\274\360\302" #"\263\320\306`ii\31kkk\320Z\343\307?\3761N?v\32\332h\344\231" #"\206\265%\252\252D\247(h\22\240Tg\330f\266\35oLh\202$Z8O" #"\224,yW\303k\n2\274\223`\217\23\34OhN\305\225\244\225\225\25\262G" #"F\243qm\352V\f\326\304\356\2\32\31C-\254\20\300\237\255\2223\377F\b" #"k\b\370\224\250\6 \3202\220\236q\205\240+\235&\316\262\347RTp\36)" #"\r\316\315\223\312\203H?\245\375\4b" #"\237\304n\265>\207\357I\251\254e\243\0ive\313\353\301\252,RI\272|" #"hH\226\311\330n\236B\206Xi\364@\330\367\264\276\200\363\324\0'\241oX" #"o\304\1\5)\345G\222S\240]r\226\357O\225%R\273,~7\rN\342" #"}*x\37\2518\364\36\320\263\204\n" #"\201`\3234\350\367z\230N&\324\360\231\356MOU##\t\264\26\356,\302" #"\275\16\a}\\\274x\21;\333\333\350t\2120mQ\2Q\331/\255\204\t)" #"\305\203\357]\21MJ\262\5j\300ua\177\314\a\362\251?\"\n\265\17~\234" #"z\244TxN\342\323\275o\240|;\221\20\265\34\243\24S\26D\344\315\204\0" #":<_\227^O\203N\221c\262\273\v\357\34\16\35:DCm\270RH\337" #"\35\25\223\224\2\227\315Y\202\315x\36R\324\6\t\343>\242\236" #"\5g\371\314\261\215rL\257\210{#\203\312y`T\355Z\266\227" ) 500 ( #"\22MzQ\354\3438\376\311\231.@\340\320|P\233\6\352o\0344\327X[" #"[G\323\20Ms0\354\343\246\233\336" #"\202\365\365\r\234={\26\200\303\356\316" #"\16F\213#8\327@\253,\330\224\24" #"\331\27\204=\304\22\36P\31\367\276\244" #"{$\331\367\22\344\246\327\230\"\342\236" #"\34*4\177\227\310&\232\300\3\346x\217\25\223D\3165M$\275\267\320:\17" #"\266\226b\36\25U\27Z\v\346=\234RP\226Jo\265s(\212\f\316\221\241" #"\245\256\312x\20hCZx\3\30\308\226\21\222\377\227MYW\25\240\24\252" #"\246\306\240\327\307\362\3622\0054e\225" #"d\334\224\35D\303\27\263\312\224\337\222" #"~wZ\32\212\335\206\24T\344\235\2" #"\17\374\303?\342\376\357\336\217S\247N" #"\341\3\37\370\0\256\270\342\nl\217\267" #"\31u\261p\326#\3133\346\26\2121" #"I\16\267\246\22\231\263\0\353\e!\323" #"\0x\\2\215\245\243\351a\36\36\206\305\232\323nG\245\24jQfP\nN" #"i\16\356m@\30T\bl\24,b\203\324\362\3622\0\240\327\353\5))\353" #"\0342\255\340\25\321J\bQ\212<\262\364\360E\303\254i]\3\2673f\201e" #"I\272\214\v\303\5\364\373}\n$\312" #"\32\25#\237D\342\257\203\261\317\262\34Jit\273]t{\3350\324\242i\32" #"\344y\26h\23U\335\240\320@\331\324\260\0N?v\32\343\215M,-/\301" #"Z\217\215\365MLg\23\356\f'\247$\16C\306\r\226eIS\357\fw\330" #"\3265\206\303a\344TZ\213\321h\1&\313H\"i\320C\247\333C\267\323%" #"\276U\221\223\224R\321A^\344\30-P\271\273(\n\364\373=TU\323\312." #"%\b\220\277\333\306\342\3053/\342k_\373\32F\243\5\354c.\227" #"1\351A\25\204'>w\332S\26\22\242J\365B\350?rp\347\327" ) 500 ( #"J\366\214\367$\350\237A\303\0241\300" #"\27G\331\355\22\3627\30\364\1\0O" #">\371dL\364\224\276\254\262`-\215\265\\\\\\\204\367\36\335n\a\213K#" #"\316\206g\0\24\352\272\"}\320\272\306" #"\302\302\b\235~\17MY\265:\214\373" #"\375>!\303\334\214!\352\6\223\335]\254\255R\300gr\203~\247\ax*c" #"mo\217Q\344\202B(\30\303I " #"\200\223\327_\217^\267\207\376\240\217\274" #"(\260\377\300~,/.\5e\1:\377\32kkk\0Hw\26\240\244hs" #"s\23\316Z\364\372\364\263\202(\270\306" #"b\274\275\215\263\347^G5\235\341\302" #"\305\213x\345\265WiLx\247\203\321h\1\276np\370MW\322\36\316;\370" #"\341\277\376+N\236<\31\a\254@P\210v\311m>\241\1\310^zn\"\323" #"\206K\204*\a`!\3`D2.\245\214(\250\326\336\253\253\32Y\0215\207" #"#R\3\346\177RpE\203\21L\0\377\224BpH\322d$\353\"N.\r" #"HC\202\253\4ae\273J\32\\\324\370\vR\261\201OQ\323\230L\247\237\233" #"&\301\241l\252C\2219B\246hs\316\305ayOM\247\226\237'@A\254" #"\v\347\246\215\256\246\16R\276SkB\316l\323\16>S\364\320Z\e\6:H" #"\")\250\265\242\305!\337A\21\30\377" #"\234n\255E\370\234\271\244'E\362.C\365\222W(1'\301C\232(\304`" #"\275\255s\255\225\nk!\376\2\n\330" #"\32\217\203\334\241<\v\262\321\31\254\215" #"\215\300`\336\263\207\303\302\302\0\337\374" #"\353\277\306\23O\374\30\2311\244\311\333" #"\245\262\370\374\36I\21w\360\263\212R\225Qe\3011\335!7\6Il\333\272" #"\377\313\22E\353Y;\236\232t\25\262P%\224\347\2\20\350\346m\224" #"\0374\271&\356\267w\250\\\r\255s\300y\6\37\2223\226|\216$" ) 500 ( #"\353\n@\236\345\270\264\272\216\306\222\206" #"o\236\347\250\252\32\3266a\220\221\330<IfH\365I\374&)pH\t\236" #"J\347Y\b\266\234\365-\244Vy\3\315\332\266\3167\264\267,\235k\252td" #"\227\235\321T\321Ei\207\\\23\320b" #"\274h\306\353P\241H\357Q\366\373|" #"\357\205\334\307\312\312\n\212\16\r\322\372" #"\365\177\367\353\350\366z\250\253\22\177\362" #"'\177\202\262T\350\366:<'\241\240" #"^\240\214\370\324\351g+\245\210\272e" #"\211\222\341\225Bc\35\347\315:9;\274\257\371T\v])}\315#\277\351\304" #">\353\32d:'\352\2\313\274\326MC*,\212*\344\251M\242{\2463\234" #"\202|\231d>\302-\222\207\2223\237" #"\207\32\255\24\352\232\214f\256\r\34\250" #"\353\233\210\353\362a\221l\237B\330@\302oRD_\310\264A\321\351\240ij" #"00\tX\328!ejK\326&\36\20p&\304\e}\336\240\0044WE" #"!j\0\370\253\277\372\6~\374\343\37" #"\343\366\333o\307\333\337\376v\364z=\354nosfEF\314d\b\vC\17" #"\274}(\241\204\254\255\270\24\223Q\311" #"\220\351\26t\35:L\3632\231\201\fP\0204\333YKRE\212\16t\350\222" #"\6\35V1\350\321q(\346.i\354\354\354\204`\223\b\354 ),\16\272\225" #"'\343\355\340/\223\354\221D\2006\250" #"\343\261\271\31\24\24\326\326\327\361\352\253" #"\257\242,K\274\366\332k\30\16\6\370" #"\311SO\341\205\347\237\307t:\305t" #":\305l6\243\246\24\356.\265\326q\2317j\361Z\357BcK\340\317\2621" #"\237L&\330\331\336A]\327\350\367\373" #"\330\334\334\300\2\217h\234\316&\260\256" #"\306\325W_\215\237\371\231\237\301\241C\207Pt\nT\263\6\335n\27\336" #"\323\310iA\r\225R<\2264u\24\rw\305JG\276g)\"\217\332" ) 500 ( #"\331\240P\341\234\343\240\200\202q\307A" #"\371\346\3468\30\4)\321\247h\253\343" #"}WW\24\360\27E\316\237\31\235\2568'2Z\24\354\4\271\35\256\305I\307" #"\251g>\271\340\364\231\322h|;h\360\3363;\205\32\31$\360\220\201\30u" #"M\225\220\3\a\16\340\351\247\237\16\364" #"\2ch\316\373\201\3\a\240\241\261\260" #"0D\267K\311\321\342\322\"\366\257\354" #"%\225\21\255\221\27\206\232\356<\225\323\bA/\321\355\366\2\"nL\216FP" #"?Di&9\347MScss\v\347\317\237gn39\377\215\215\r<\367" #"\334s\230\316f\30\16\210\363\367\261\217" #"}\f\a\17\35\304\306\306&\232\272B" #"\226\27\350\366\272(\212N\230\330D(" #"\266FY\225$\223\244\210k*g\371\320\241+9\241\240\353YZZ\302\225W" #"^\311\b\3%\23\336\23\352\"\365\243" #"\267\274\345F(E\374\271\311t\202\331" #"t\206\365\315\r\374\315\337\374\rn\275" #"\365\275x\357{\337Kt \353\360\376" #"\17\274\37\313\313+\330\335\335i9c\t\206Bc\32R[A]\376\336K\202" #"\352y\237Yxo9`\"I\37\245\24IF\1\20\2313\370\30\4zN\n" #"\304\31\264\20B\353\340\25\363\2059\360" #"U\232\272\237}b\324%xJ\327I\366tj_Z\301\214\217\2241\243\bQ" #"V\232\345\277\254c\351H\337\222\1\234" #"\17>S[\23\276\227\233\223\241D\217" #"\231\351\a\251\237P\254j\340\251\304K" #"eq\236\206\346=T\342\304Z\316\320\265\271\372\342 54\a#\355\0+\275" #"F\0\201\226'\274\305\324\331\22\"\252" #"\340A\250\22)?\304\352K\212F\247\225\230\224\256 \357\rA\2771\227]O" #"\372\f\323`2\375{\\?M\ng,\204\340\0250\32\r\361\334\363\333" #"-~\263\320\4\342:\245H\243\a\320\240\333)p\361\302E\2349\363r" ) 500 ( #"\250\fm\357\354\340\340\301+\302\371j" #"\5)\363\301I\362\177\361\214\220#\247" #"\363\352\340\2719/`\324\311\232\267\23" #"\1:`\316I \316\264\6\305a\1\367\267\220\4\232\242J\243\321p\226c\20" #"\245X\1\211\321>\246F\206D\214)\203\232+\223\232Q\302\3069loo\a" #"\2316z\346\300p8\304x<\306=" #"\367\334\203\247\236z\n\377\327\335w\343" #"\312\303\207\351\231(\177\331=D\248\335oR\216':c\212jS\234\245\230" #"\337M\353\233gEXg\347)\16B\222\210Qe\332\300\213\241`*\213\200z" #"\351Z\244{P\206\343\304\n\212\202\326" #"\5\246\323\t\356\272\353Sx\362\311\307" #"a\235\303l2\303\306\346:\232\246f5!\222M\2642\245\255j+@0q" #"*4#[Nt\4Ool\23\327\203'\322I\220+c\355\347\2575\215\341" #"\304g\206\251h\332\301\373\fuU\206" #"\370\v>\236\337V\322\34\316\23\243\307Y\206\\kd\222I;\25\35\2551\244" #"\225\31\e\226\2504\241\234\243R\34\250\344n\331A7M{:O\373\240EM" #"U\371?g\35\232\252\nZr\215%" #"\356P\325\324\200\2469\355\31\3171\366" #"\336!\313s2\204Z\241q\16Z\201\251\2\266\225Y\313wJ\200~\337w\276" #"\215\325\325U\334}\367\335XZZ\302t:!\24\311\30\330\272\246.qO=" #"\362DW\340\205\244\257\n\0013\225\275<_?;\n\316\364\225\346\16z\353%" #"r!\351,\276\26\341w\322\"s`&\213\243\210\353\23\272\266=O]\2\31" #"\355,#\343\271\261\261\201\301`\300\342" #"\373T\276\243\346\26:\340E\221\3^a2\235`Z\227\350t\n\36\375Ke" #"\212\235\235-L\247\263@\21\270p\341\2\306\343m\234=\377:\312" #"\231\bQ\323\365^Z]\305\316\366vb\323\250\303\264\333\355\262\360\274" ) 500 ( #"\342\346\206]\304\206\243\34\233e\211\355" #"\355mhM\35\257EQ\4ZH\247\323\t%\317\341\302\2\352\252F5\233\241" #"\333\351\301\345\005666p\341\302\5" #"\\\177\375\3650&\303\302 6\326$" #"\326\25\336\2039`\236\0252\310\220\327" #"U\215\322y\350\214F\215V`\311\34\245a\253&\2246\205\237L\223\235ho" #"i\255.Cs\233\246!\255>\a\200\265\205I!\302 \317\v\f\6\3D\351" #"\225\370\234\242\0234\201\263\324R\256P" #"\314e\362\3221\312\206-\313\240\235\v{\0\n<x!\t\2709\20069q" #"\223\237~\372i\274\370\342\213\234\374\31" #"\234<q\r\336\365\356w\5Y\233L\306\22\247\322-N\272\376+8\0174%" #"M\273\211\274\337\"4@E\211\226\210" #"\234\3219\226r1=\257\225\225e\354\335\273\a\216zs \r\231\223\311\4_" #"\372\322\227\360\372\353gq\347\235w\342-oy\v\246\323)F\v#\n\n\340" #"xp\201\"}h~F\324n\3j6\320\0\211_\304\347,NL\354\324e" #"\350\240\211\35\342Zk\314fep\326" #"\303\301\20\203\376\0\v\243\21\376\343o" #"\375\26\372\275^\320\237\355t;\350v" #"\273(\313Y\v\t\t\350\35\230\246\342" #"b\217\200W\0211\244\261\253\261)L" #"\354\22\344\347\340\340\235\n\325\"\31v" #"C\\7v\217I\2110\242\372|\343\312\23\332\306\32\255F\345q\217\253*\30" #"v\t\222\245\f\30\237[:\330\345\362" #"=+\377n\255\r\345@\372^\341\257" #"\223\363M\23\273\324\261\314\243\272\222\354" #"\205\336\3H\320Et\2064\21WP\320\\\232\00443)bu.\265\357\363" #"A\274tj\3\24D\250\254\355@\347\351[!hN\203\255$\370\217A\211\207" #"\2\243\347p\255\317J\203\235\210\242\342\262\357}#" #"Tw>\221\226\375\23\366\177\202\360\266h \0\274o" ) 500 ( #"\240\21e\265TF\264\242tzY\32" #"8\204\265\366\242\270\242\340\234\302\356\316" #"\4_\377\372\275\240fI\ak\243\235" #"\317\363\2\223\311$\310\30\212*L\b" #"\326\235\17\210nQP\303\221\222\256w\245\b\370\1\340\265\207\267:J{JR" #"\330\272\237y\16u\26\350Y\216\321[\305\aD1\5\22\334\0\32\327\200U0" #"\270\26j\255Cf(9\t\237/\373V\326\3Q\332\21P\30\217\307PJ\241" #"(2\274~\366,\376\374\236{`\255\305\347?\377y\\q\360`\253z!\367" #"#\257 \271\246\250\342\342\254\5\264\347" #"\347\242\0\257\333\312D\212\264\237E\246" #"\321{\0375\347\305\326%\t6=3\241\f Tz\322\31\4i\262T\24E" #"\370\276y\32\203\354\217N\247\300d\262" #"\203\en\270\21e9C\247\327\307\17" #"\37\376.\266\267\267\361\216\237\375 42J\250\f\215:vh\302\263v,%" #"&\243\350\351\262\31\325\347\3048\375\276" #"H\5Ix\270s\311_\210\225,S\317\344l*\346{\301\204\246=\205\214\344" #"!\271\351\221\300\5>K\336A9\252" #"\n(\305\210\266'\25 \306\302\205\370" #"\353\203\364\217\240\30\262\t\235%#\232" #"f\ti\246\302}\201\304\31\0\332b\355r\320=B\31P\344\261H\332g\32" #"\220\205\26_\3\3448e\22\17\31v\305\237M\201&@\35\213\364 \0216d" #"\343,\256\273\356:\334y\347\235A\206" #"\205\2\245&du\221\362(\215w\r\225\362\20_)O\256i\222\222\n\235\253" #"\200\3648\0\215\267\350 \2172\30\311b\323&O\234\247\217\350+ \201M\f" #"~\224\322\260\214\352\355\354\3540% " #"G\323X4\315\224\233\307<\236}\366Y<\372\350\243\230L&\260\266AYV" #"\24\370\202\32\5\252\252\f\306\226\320y\372\265\275\275" #"\r\223e\30-.B\220\322\235\35\342J\236\272\351" ) 500 ( #"&,..\"\313H\220\272\337\357\207\265\354t:!\320\330\235LP\225\25\266" #"\266\307\330\32oa\262\263\213\331l\n" #"\2454\211H+\340\330\321\243\330\273w/\236z\352)<\373\334shf\25\n" #"\16FV\26\26\360\321\217~\24e5\303\356\356.\362\"G]:X\324!\253" #"K9\253\363\225\202\360g\255\200\206\e" #"~\274\247\3B\233\a\320\240\321\312!" #"\321\262\341\277\242\24I\34\na-\r" #"\222\250\353\32\312\3\343\35\n\372{\375>\252\222FbN\247\223\326uHS$" #"u\242z \243\3X9\e\232\26\2b\2318i(jxR\256\255+\253Y" #"\200\336&]\337J)@G.\322\361" #"\343\307\361\352\253\257\342\246\233nB\323" #"48\177\341\2\36x\340\1|\340\3" #"\37\300\312\312\n\246\323i\320\27\216\310" #"\v\e\30\326)\206\363\310\271\211Qh;\242\35\354\371\200\204\4\314I'/]" #"\217K\291\326to\3244\221\347\5\336\366\266\267\205)\210\322\\%{\307" #"\363\"\314#`\202\352jN\4\t\355\213\327\"\301Oj8\245\353WT\35L" #"&:\2221\250H\203\220\"\247$]\372\3\254\265,\311\26\21\321x\356\t\255" #"\21\3111\2212T\236D\201\332%\2636U$\4:P\234\30\331\220\340(1" #"\262dF(\360\322\n\236K\2711X" #"\27\32\215\1M\367\244\350\330\203\2021\233\354)\217T\351&R\16RD.\214" #"@F\273i+\330\177\t\342\0357\375\204u\221\241\f \2315\310{\333\22T" #"!\320\"\210\v4\222\24As\2308\217T^\f\250\16\"BF\237\343\20\370" #"\30\262\367\201\226\243\224\353O\367`\32" #"P\246\bW\272\36)\372\332\332C\311{\323{\222 #E\217\345\263c\320\215" #"\200\264\247\211C\352+\371\203[\317<\rL\347" #"\21byO\374Y\204\200\316\363Y-\362\2\303" ) 500 ( #"\301\20\27/^\fU\2304\300\221sK\250\242\202u\26\375N\27\217?\375\f" #"f\345\fUI\311{]Q\271\376\v_\370\2>\367\271\317aee%\331'" #"\224\220y\357i\317i\332\257\216\23/cL\b4\224Rp\212BN\tx\322" #"5K\3\2624QJ\203\177\1{(\252\363<\214\202QIO\211\242V\32\320" #"\322\v\"\1 \331\b\2555\254\213\301\242\274b?\3\357\vK\212\1\36\n\203" #"A\237\233\2503\374\340\241\207\3204\r>\361\211O\340\330\261cI%5*\32" #"\tB)\3176\236\177\27\373\214\224\207BN\210$\220\3701\271'\25&\5\206" #"\317\206\17\266\317\202\252x\322\333\324\216" #"\211\332\232\261\363\377\236\356\301\264\252." #"\317\236~N\363\320\256\2kk\353x" #"\376\371\347\320\355vq\362\344\365\324\213" #"\2445\234\23\277(\373U\16\22@U\16\0354\340\241\24S\n\b\320K\253H" #"\336\373@\5L\233\370\322s\345\346\366\aUmU\f\242\r\0d\301\217qY" #"\214\236\267\2\224W(:\5\367/E" #"\204]\232\332\202\320\231\267\221X\236\226" #"\3502\255a\264A\205(\223\"\277\213LN\236\347\201r \31\327\e\31#\212" #"\370c\367\251\30\3\201\270\245\tL\26J\34\224fm\2774\23\220\354B\344>" #"\350!Y\230,\a\264\202\257=\216\37?\316\233;\336\270f\244K\32062\264" #"\2165|S\243\0233\360x\337\210\367" #"\304\17\231\332\255\350\317\275^o\216W" #"\227\"Q\344xi\221m\213\227\346@\1GZ\206\323\232\232~\224\a677" #"\211sW\327\304\277\3142\22\21W\n" #"\337\376\366\267\2415I\247\225e\335\n\252\234s!H\315\262\f\235N\aEQ" #"\340\310\221#8q\342\32Bj\a}\30\255\361\300\3\17\340\321G" #"\37\305\317\274\355\26\274\353\335\357" #"\n\206^x\231\336\373\226\f\216V" ) 500 ( #"4C\\y\217\225=+L\0370\200\246 H+Z3RX\250\360\310#\217" #"\240,g\201\377\273\275\265\205\253\373}t:\35\364z=,-.\243\251\22C" #"\235\4\376\24\244\346HG\310\322c\"" #"\353OF\30!\3700A\313\331\265\206\235\210a\242g,\315\1\321\b\4N\243" #"Q\350\250\16\316\275\376:\276\362\325\257" #"`wg\27\243\321\b\213K\213p\316\342\302\205\2138z\364X\b\210\4\t5" #"9M\tt\316\241\341\340!u\232\301(q\326.%Si\252\252\233\32\31+" #"z\344:\vA\221$g\360\204\362B" #"\1\213\213\213\270\353\256\273\240\224BU" #"U\30\217\267\361?\377\3477\361\305/~\21\243\305\21n}\327{p\343\2157" #"\206\0\24\n\320\322\34\21*\30\206\263]C\345~\325n^\220\375(\325\aI" #"$\b\21\217\0065\330\20~\256\244'" #"\354p\352\324)\336\213\361\354\31292" #"\2344{\2354\340\371\4\25\244\262\6/\261\17|V:\e\362\235\202\316!\352" #"L\3726r\227\242\t-\307\340c\0%\337)hM\32hhM\310\255r\21" #"5\20\376\263a\336`@`x\177A%\334W\215`O\25\b\251\226\311Rm" #"\204\310\223\332\200\216\0\203w\36\236\221" #"\ti\340\245\200\226PR\322Y\25i" #";\25\206\256\244\315\271\363\3667\r(" #"\200\244\254\315\27\350\235\2073\244\t\254" #"\245j\241\0247\370\306nj\2506U!\3353\322|\343\241\2509Tk\246F" #"p\361\325\v\r\2\22\275\205\252\213\263\\)c{\235\6\273\342'.\0174\323" #"`#\2767\334\237&\244Qh\nH\3267u\256\351\277\245\350q\272\277\347\221" #"V\271\304\371}\23\375T\202\226'\352" #"1\251m\213\266\t\255\357\216\353\243\2\n\31\236\257\243&\252'\237" #"x\n\333;\221j3\37X\312\365S\340@>\345\261\307\36Ef2" ) 500 ( #"\314\34i\303\366\a=l\357\354by" #"y\31\177\376\347\367\340\363\237\377\34\377" #"\234\342\304\311s\200\315Z\247\316\302{" #"E\24\2\"\312\322\376q\224hE\215\367\6\3220\365F{E\3563\0f\236" #"J\251\36T\361R\302\321\220\347\243\270I\f\r'\261Y\370l\241\2538n@" #"v\214\16\312\317>\367\334s8q\342D\bv\5\375\354\365z\320&\a\240\360" #"\324O\236\302\213/\274\200\eo\274\21\327^{-O\4T\241i\220\26A\207" #"\361\307RQ\0\344{\244wI$\6\243BS\272&p\322\265\21_\0227h" #"M\264+k-\307\4\302\177\216\2668" #"\255\b\350\271}\224\212\v\310\376I\223" #"\36\371yQ{\252\353\6_\373\313\277@Qt\260w\337\"\6\375>&\223)" #"\311\254\3528\e\200&\6r\325\er^\251'\310{\217\"\313I\237\3379\36" #"\317\335\16\272\215\326\255\344\2435\0257" #"97\24\eF\373\2361(\246<\333\4\347\341\265\205\262 _\3314\254\231\255" #"\240\244\232\200\b\202:\266\31\231\16\263" #"\344\251\271\306\362!\224\a\223\345Y\340" #"D\246\31jc\251\263\220\2\306X^\25\247j\362,qL\321a\ee\3208" #"\342]...auu5.\6\242\1k\31\b\e\273\253\345\345\234M\234W" #"\26\203F\353\0\3153\321\255\214\302\223" #"L;\235\316CNI\256M\346\277K\367\274|W<\240:<D\0\201G\323" #"\204\203\3320Z\310\323\323\370\20\244\6" #"\323s\311Z\262\266\30694\314Y\203" #"\217\32\245!(\346{\355\260B\200\255" #"jLvv\261\274\262\2\313h\316\211" #"\23\307\361\330c\247\221\347\31\336\372\326" #"\e\261o\337>(\245p\340\300\201\240" #",\260\260\260\20\256A>\237\344\265\34l]\303)\215\331\264D]W" #"\330\331\335\r\31Xz\270Z\3104" #"\250\314\220)\315\31\27\177\236\216\23\322" ) 500 ( #"\200:lxx\340\266\333n\307\207>\364!\0365\354\203&\252\309\222\bq" #"\\.\211<V\307\236\304\272\206\324@\300\225;\16&\300Ke4q\2602C" #"raB\1\t(\212\217Yf0J\341@)N\232X\242\315\222\310\364\276}" #"\373\360\37\376\303\377\211\365\3655\374\370" #"\211\37\343\331g\237E\323\324\324\254\0" #"Q\252\0\330\302\267\3\b\376\344\24Y" #"\242.\321X\272N\317\214\322\n\332i" #"\376\\\215\263\257\237E\32348r\344" #"\310e\317\3365\204l\316\2463\362\3" #"\316caa\210_\372\245O\342\342\305\213x\345\225Wp\374\232\23hl\35J" #"3\316\22\263J\262\\\231`\344\341\341\222\0O\34G8[\2328\233\231\226\t" #"\211\2044\e\264\367Dt`1P\221\304\"\6\6\364\36R6\211\272\272b\220" #"%\224\25\376\231\367\236\220AFu\5\3152\334|)\2471 N\311=\204N" #"o\256\bII\277i\32\326\343\4D\1C\252F*\271Vy5.&\346d" #"z\265\330`\276>\n\274iv\217\202P\21\274#n\253ADz\347\313\331\262" #"\376*\t|\301\211p\306dL\31X\302\37\315k\351\31\5\215\324\6\357\1\347" #"\22\21z\2362%(W\212l\246\353\e\234~^0\267\316\3\242\t\353]\30" #"\360\21A\207\204\207k\211z\">#\240\262J\236E\374;\34\267\316(\204a" #"\26\200\346\275,\315\303\264&\322\217\221" #"\3220\322@4\332\230\313\203O\331K" #"\341\275\2\0i\352%\220\347\330zO" #"\362\232\257\322\204>\204\244\273j\276\201" #"\314\33289L\256\303{\220\24\234\2154\e#\b\330\\r\230\6\251\341>\24" #"3O\370\26\224V\314\315\25=\335\fy\226#/H\265$M:e\302U\352" #"C\215!\237\363\314\263\317`uu5Vb\35" #"5\270\256\354YFUU\330\331\331\305\275\367\336" ) 500 ( #"\213O\177\372\337b2\231rB\345!" #"\312\31\r\367\241\320@\302\30\2609\304>\4g}8O\227\241\360\3543\323\4" #"\"\254\37'\266b\337\1\3052\221\226\0321\223dXz\\\4=\224\317\b\22" #"oJ\205\306\323G\36y\4\337\377\376\3671+g\370\374g?\207N\267\e\356" #"\233\350v\344;\376\351\201\177\200\ap" #"\333m\267a:\235\222\257\364iR\230" #"\352\277\246\245w\252\202\220\272\207\342\204" #"@\252\252\25D\316L\6\6\245\315\366\0B\331\237(o4\2711\317\362\226?" #"a#\327\n S\360\0@@M\323g\36*\306\311\277QRA{\345\334\271" #"s(\247%\272\335\f/\277\362*\376" #"\313\177\371\2>\361\211_\302\362\312\n" #"\224V\250k\252>\321\0\27\25\3742" #"\2555\257\35\250\267\312p5o\376\273" #"\243O\344\312y\274\235\20'\325I5\310\206\237s\260\r\305A)\25,\323Y" #"\370\36\235Q\374\352\234\205\263\222\360\346" #"\210#\272\t4\313\350\303,/\206k" #"\31\1\200\235\316\234\3\224\r\353\275\17" #"\350\220\4\251\216\215\36\331K\37\0205\372Y\17\vRm\250\353\32KK\213x" #"\345\225\227\261\275\275\203\306\332\360\331b" #"\\b\271\236\232\204\234\245Y\310\"mF]\357\264\351\352\272!\244I3[G" #"+\32\257\313\342\327\363\31w\252\351H" #"\301\262\206\367\214Dx1\272\261\343Y6d\310\250\270k^\256S\206\1HP" #"\254\223\300'\32S\222\2\363\360(\353" #"\206\215\217\16\335\264R^\221\356H\243" #"5\312Y\211\263\257\277N\327\241\24\326" #"\326/ay\357\n9\\\245p\373\355" #"\267\343\232k\256A\267\333\301\365\327\237" #"\304l6\v\310\215p\177h\240C\203\246A@\320=WN\t-2\330\267\357" #"\0wV\"<\243\3640\316o^2*|\320x\242" #"\230e\275\320\200\254\311XN\t\22<!B\16\36\373" ) 500 ( #"\366\357\247\344\307\323|u(\37\20L" #"h\35\32\312\234\367\310\24!\22\271!" #"\324_\312\240\251\302\204d\262\326[\30" #"e\240=\225\321\24\37\362Tz-5\256\364w\332\333\215m\202s%\235\347\f" #"\203\341\20\313\313K8q\374\4\326\326" #"\326\260\2633\306\25W\34\fS\275\0\300&\347a\276\351$5D\324\25\354x" #"\302\237\374;\eNN\324\274\363X\275t\t_\374\342\27q\354\3301|\374\343" #"\37\307h4\2X\266\215&\3549(\326\274\222\6\0\321\376<|\370*\\\375" #"\246#\324D\346=,\243\221\342,\341\243!q\236JF)\3427_U\240\265" #"\211\315|a\240\211\213\215\202\351\271\25\36/\235M\t\68\220TqJ\235O" #"$\364\322gE\t\vk82\342,\230\226\326*L\251J\271r)=a\276" #"\4\34\22\0362ZTRUT\352\2\204\222\201\300?\224\300\310{\356\6\17\357" #"\211\201jJm\240\353\6jn\214\21" #"\207\3554\220yB\274\204\203\373F\345\306\210zH\a,BIU\371\30@\261" #"\371\b{7\354\243d]\250\352\225\362" #"\262\243\352\202<\337\364\367\364\331[\227" #"\216\352\226\177s\310\4QL\34k\232\0205\226\3509\22\240Yk\251C\236\16" #"%!`\34\271\208(A\20\331Ae\310O(\317\364\b\35\201\215\24\261\r" #"\327\324\n&/\2570\246\357\245?\323\344<m4\5\232r659nm@" #"\23\320|\e\\I)\6\363\276#\r*\225\342\352L\362l\245\272h\255\320\6" #"\4L\2\365\302\200\223\241d\357\312\365\266\252(\16PZ\344\2334\232&V6" #"(\21\240kX[[%5\32\246\36\1\361^BB\345\35\272\235\36\36\177\374" #"qL\247S\234\270\346\32Te\211\325\3655\314\312\22\207\257\276" #"\n\37\276\363\303\370o\377\355\217\361\3143\317\340\345W_\302\201}" ) 500 ( #"\207\340}\244z\371d\37Kc\266R\\\35R\361,kFW\233Z\206\16\265" #"\327M>#\234U\246\21\244\237\251@\215g\322/$>\232\316y\344O+\6" #"\234tb\17\322\347)g2\317s8" #"x\374\301\177\375\377\360\237\376\357\377\4" #"\2555\26\26\26\220\347\324\360\364O\17" #">\200\361\3666n~\333\315-E\214\324~[g\243\224`\330_4^\\)" #"\a\255\262\226\342\a\355\a\5\272\34\315" #"\3755\355J\231\326\304Cnl\r\17" #"\207L\3474<\211\277\333\313^\364\222" #"\324\253\326^\2243\1\240u\335R}" #"\235\337\323\22\23H\325\345\372\353\257\303" #"\2313gP\227%\236\177\376y(\345\360\347\177v\17>\373\37?\e\a>\210" #"Dh\256\231\37\253C\23>|\24\"\220\344?=\a\351YU\n\250\32\v\255" #"\34\200,\374\237\200\205\227\355\177/\304\17\212\3\n\36\27LMpq\216Bn" #"\bT\365^*>\221\342&\24)-emAE\322\300&<$\347\242J@" #"z\250\35\351\256\246\3\bBW{\222u\204\337\351{\1xt:\5\316\236=" #"\213\242\350`{{\273\345\270d!\3gQ\v\317$\v\235~\0\5\240\224e" #"6\34\334\351\0204\0\b\337\227f\343" #"4\2028\216\233\213\374 \202\6%\360\221\r\23\207R\320\377k6\304\36>Y" #"\300\266\354F\34\343\e\235\203<W\353\244\273\234K\0L\231p\216&\221(h" #"d\31\211Hk\255\361\372\353g\261=" #"\36\243\327\353\3015\26\207\16]\311\1" #"S\374\336\223'O\342\370\361\23DuP\344\314i\360\0025\277\21eB\265\234" #"F\236g\1\271\257\233\32Y\246Qd9\246\323\31\3122\nh\247\316\260-[" #"B\e\227\3705L\21\360\321Ah)U0\22'\345K)\343R" #"x\e\17\2056\361\236yaC2\223\n\326CQ\311l\336\220\321z" ) 500 ( #"3\252\357\4u\347\314_\366+\3040" #"\"\4\342P\322\24\244\332\16\213\21\266" #"\16\213\352[k\261\262\262\214\253\257>B\347%qx\6\n\2604=,|G" #"r}\22\204A\251\320@HM 1\313\227\357m\254\305\362\362)\251\373:\0" #"\0 \0IDAT2\356\272\353.h\255\303\0046A\274\374\334\263\360`G" #"\313(`UU\250\233\n\36\216\344i\350\313b\371\215\327F~\301GDD\f" #"\273\234\27YC\342\355\306\275k4\241" #"\215\351D\236\30\274\361\2329\337z\6" #"\251\230\276\axJ[\233K\30\223N\23\316\227I\366\37=\353\244\331\212_i" #" *\211\\\260!<\304\303\350\204\372\341\205F\345!\222pRQ\222\n\2t" #"l\260H\203\334\24\301NQ\331V\0\244xB\232\fSo\5FmJS\330" #"\273\206P\t\250\330\260&k\222\356\241v $\310.!i\344H\243]J\235" #"\265<\263\26\217\326\267\337\233\"\327J" #")\344Y\306\223\241T\353Z\305\1\213\203J\327A(h\3041O\321\372$I" #"f\224[i\252\20\30mx\3646\340" #"\225c\r\363\313\223\240\324?\304 \227" #"\376\177\376\276\302\373\240`2Qq\340=\6B\35\351\234S0,g\253\375\331" #"\311\0\r\240\365\357\361yH\305\300_" #"\366\335\360\6F\347!\321\216J\362\210" #"\177N\2763\356\t\3\r\17\232E\242aT\16\351m\361\336\a\373\325\351\24h" #"\0345\217>\364\320C<q2\256Ez=\2311\270t\361\"^\177\375uh" #"\243\361\336[o\305\373\337\377~\324\r" #"\251\341\354\214w\221\347\5\376\367O\376" #"\22\206\203!\276\374\245\257`\365\322\305\200L\246gj~/g&\343D\v\214" #"\24\222\37\316\363\234(m\311\276J\251}\341\245.\2278M\223\310" #"\3403\222\375\17Xx4\360\334\35$\t\364\374g\327u\215\23'N" ) 500 ( #"\340\375\357{\37\2569q\2\243\321\"" #"\376\350\217\376\b;;;(\313\22\375\376\20/\276\370\"I3Z\213w\276\363" #"\235\230r?A@\30\245\31\25\344\317\244\341\224b\32F1\245\271\th]+" #"\5\\\214\210\242\235\20\221\35\227&L" #"\16\356eg\314\371#\331o\251\235I\203\310t\215\346{\243R\nM\234\30I" #"\317|2\231\342\203\37\374 \356\374\310" #"\207\361\353\237\371\367\350v\26PV\25" #"\36\370\207\177\210\300\223W\350\344](" #"Ej\30\26\216\236\276\343$\314\350X" #"\321L\374\337\374\231\21\rp\17\35\224" #"\220\264\212C\220R[%\373B\372\2r#\324N\2127\322\6r\353\35tf" #"\240\215F\35\32vi\37\6\3447F\375\221\303emDG\250C\2327cr" #"\210\205P\235\376,\220t\23\2aj" #"\215\20\215\235\367\324\31\247(\203\31." #"\fH\32\3116x#$\254\265)\330\201H g]\224\260\210H\213\vA\266" #"\265\226\0030\341\324\311\270b\316\372\32" #"\333rX\212?\213\264p\343B\305\240N6\2758\217x\320\305 f\274\211\322" #"l_6\344<\31\\3o\314&\35\231\351\342\311s^\30.`8\32\341\374" #"\271\3638p\350\n\f\207C\272/\264)\5r\337\215\265\374\274%x\217\201g" #"\fDD\213\223\32653\32\243\305\58O\215\201R\2I\327#=4\2627" #"$\223\323|H\333N\"\312\aIH\353\341\1\346d\6\a-\1\21\270\341\321" #"S2b%\0cdK\312\312\312\3\256nb\342\300<qB\23-]\213\27" #"N\31\243\277|\320\265\241a#\36\304" #"\265\364\0\352\246\346\375\35\357%\4\361\3262\272H;Z\32\23\302s1\32J" #"\32!\225b)\234h\224\244\nA\367\207\3440\2033j>\220\311" #"\36\326J\343\331g\237\303w\276\363\35t\273]d\231\341n\350,\354" ) 500 ( #"Gc\f\311\246\3444\262z2\231`ss\213\246\210)\342S)\20\202%\223" #"lRu\222yT%5\214\351\376\25\205\bI*\343\377\221F\2524\201\246t" #"\20\322\34e\203\304\311c\344\246G\316\326|2,{L\324*\322\354\36 t" #"\321yG\350_\22x\315+$\310\317\311\2775\316\222TQHf\350\276b\362" #"K%a\0,g\246\223k@\340\e\246\317\360\215~\205\353w\364\314l\323\204" #"!\22\222\264\245g)}Q\320\355\370" #"\24\200\336\17\264\234\206\341\22]\372\34" #"\323\0\314(\241+p\363\205&$L\22\20502\367\r\236\375|@\31\222A" #"\353BP%\373%\276\21\255DE\356" #"\303\n\302\313\225\34\241\243\20\207\330\a" #"\216\254\346q\310Ze\360V\201\306^E\224n\36 p\236P\304\313\1\21\236" #"\316\250\\<\303\301\37ps\261\263\244" #"t\303\227.\223\327\3041\307\317\223_" #"*\f\230\t\203&d\37&\300\213\200" #"\31\212'\202\21\340#\215\246\274\364\216" #"\202hpu\323h\323\372\274\313\366\16\357;A\307\310M\320X\323\340\278@" #":p\340 \26G\213(:9\356\273\357\276\240^\2 \fqQ\0360Z\241" #"\310s<\364\340C\360\336\343\355\267\274" #"\35\373\366\355\303\201\3W\340\350\221\243" #"p\316\241\254\210\272\266\377\212\3\370\324" #"\257|\n\v\303\21\276\374\225\257\204u" #"M\327?\275\346p\335\320\241a\34\236" #"\233U\221\224\336\303\336\a4<\365\230" #"\200*a\302\377\216@Q\352\263l\b" #"\204\343\376\243\365\323\322\250\2166\312\236" #"&\276\3169\f\207C\334t\352\24\376\217_\37178t\360 \352\272\306W\276" #"\362\25\234?\177\1\343\235M\\8\177" #"\16\223\335\t\336v\313-\350\367\a@\362y\251\217\245s\314\264\26\17F" #"\225\231\267\352h\321Z\300\36\307$" #"\364\314\24\232\377\237\260wk\266,9" ) 500 ( #"\316\303\276\254Z{\237K\237\276\315\255g8C\315`\6\3\20\224\207\220 p" #"@\220\240\30T\200dH~\221C\240" #"\250\b\206\374F\330z\"\303\366\17\360" #"\223\374\256\b\377\1\232t\20\f\3322\r\5E\310\264x\3\bP&4\244\3" #"7\2$H\0s\af\372r\272\3179{\257U\225~\310\374\252\262\326i\204" #"wDO\367\234\263\367^kUe\345\345\313/3\227\375*\20\267\357\267\256&" #"\6\364\324\25-&\352\2355(\20\337\3630\337)\332\310\365g\347ev]\270" #"\340\374\374\f\27\273\vl6\23~\364" #"#/\343\372\365\233\370\253\277\372+@" #"\355l\31/\3322\f\250\212M\262\332\204M2:Nv\273\254`{\267\261\345" #"\36\357\321@\4\266\217s\177!\310\225" #"\210\f\374b\255\265u\333*\315\206\364" #"\200\242\264\354\264Z\3339\210e\20\334\346I2\364wY\26k/F\303\336\27" #"\253/\32+\16\265Vl\2\17\251\272\3\t\277Y\250\245\2372\335\236p\b\250" #"\0!\226\216/e\306<\317\330n\16\314\261\233z\221\303x\340{\353'\244\f" #"\365j\300\234\22P\24i\352\202A'" #"\216B\32\323\324\320\261z_\241\330\220" #"CC\304\223\nv1\201\256\350\237\241" #"\2601\5Et\227_\237\222\223\260!\315\243\351\6\230\0e@\v\204\6@\207" #"\236\231\355zjE\200\0\360\324SO" #"\342\277\374'\377\4\347ggx\341\275" #"\357\205&A]z\367\211\265\1\25\0" #"\323\304k\e\22\327\234\256JG\313\373\362%\370]$Ly\vN\21k\221R" #"8t,\324\212\3171\32E\5\2628\207\253\206\0\301\237}U-\317}\266\367" #"1\345\345\212\2\3359X\2434t:\242C\23\215m\f\306\212V+\376\231\306" #"\321\233\21\201\214\210\24))\326.\16H\23\v" #"\17:\222B\376\351\336\215g)\305x\243a\272\340" ) 500 ( #"\240\204Ro\252.\332\307#\e\230\34" #"\32\3217\345V\361\372\353\257AD\360" #"\372\353\257\343\267\177\373\377\304\23O<" #"\201G\36y\2449\332\373\375\36\247\247" #"\247xp~\206o\177\353[\270\177z\37'''\370\350G?\212\227_\376Q" #"\233x\345k\26\235\330h\244\243r\\#!v~,\b!\a\225s\340\371o" #"\246\24\341\317\310tQD\300\354\273{" #"\226\243\0313\337\247&\363\260L2\373" #"\346*F\344:\245\204\215\27%\344i" #"\302\32\275\213\362\264\226\227h\244\327\301" #"4\340\24\230\2\344\215\0U\300\236\225" #"\360\202/\250\242\212}/\323\201\361;" #"\342\367\232\214\210\265e\223\324i!\n" #"\344\340\354FT\230\353\337\356\210\201\242" #"\267qj\373\244\226\5X\357]3\"\325\365\237\232CU\2456\247\212A$Q" #")\311\241\260-\234\263\336*\215\350\f Z[\201d\274\266\355\375\210zQo" #"D\303e\201N_qIV_\221\252w\4\21\0(\220dN\256\31\3264\310" #"\220\255\211\375\236i\343\276~\311\333:" #"\271\3239\361^\210\"\232\246-\245\313F\366\347W8\217\331\321}Ce\ro" #"\25\"\265\222.\311\342\210\366j\327\17Y-{\244b?\257\236Ic\6\n\301" #"\250\243\2375R\326\242}\21X\v>U/\316r}\326\1%\205\352\214\177\371" #"/\377k|\361\213_\304\215\e7prr\202\335\376\302\333X\226v\356D\200" #"\357~\367\273x\365\265W\261\333\355\360" #"\362\313/79\376\330O\374\4>\375" #"\357\376\35j\2656\230\27\27\27\370\301" #"\37\374A\374\312\257\374\nRJ\270{\367n\353a\376\260W\324\303\4?8\265" #"K\\F\302\233\0015\232Ov\252\215\265/\\ i\264-M\27A\0v\312" #"\t\255\305\370\377\n\265)\335\262:\207@\363\35T" #"\215f5\3173>\361\211O\340S\237\372\24^{\355" ) 500 ( #"5\234\236\236b\232&l\257]\303\355" #"\333\267\361\201\17|\0\nm\203\210b" #"\20\330\202\227\352\301v2 \357\344\344" #"\n.v\2789\271\212\375~\207\363\213\31\21\271\355\0\21\273\30t\35`\a" #"\310\300\1\300\356\221h1m\373\250K" #"\307\266|Q\307=\314\26\362\\\257\357\5\260@\330h\30\23\26-\336eE\360" #"\336\367\276\27\377\351\363\237\303~Y0" #"\357\367\326\343\267TL\223\25 \232_" #"@\237\316\301\306\322mst\344\243n" #"4\220\312\250B\265\254\34ut\235X" #"\212\17\354\202!\307\223\27\376&\367#R&\a]\1\367\5\313R,\3\347\337" #"e\347\275\373\205)%L4\364\326\275\240\e\rF\274\\\3307\336z\vW\257" #"^\305\225+W\6\356\207Z9v+\b#-\200\310W\2366P\347\177\331C" #"[$$\36\305\35\36\35\2656\e\17K\27\365\366?.\264.\30\233\315\6\363" #"2\233\322\256\332\270\202\3434\31'M" #"\213/$\335K\325K\202\24#\211\354\21=\304*\342[\321]P\340\326>\305" #"\322\30U\275\212\326\371\316\374.S\306" #"1\362\355\221\212F\344,\6\3\210U" #"\345\366z\377\373\337\327R\360{\347-" #"\327\322\323\206\261\322z\255\220:2\6L\223\265`SX\247\207,T.\300\274" #"\354\261\237m\"\324~\2777\252DP`\361\231FD\5mP\206\250\264\252I" #"\6P\252\360a\16\221\237\204\366\275l" #"\247e\372\275\2\325\246L\305C\332\307" #"\v\367gZ\247m\"\272\325\20?\b\322fc\243l\0355\213\206|\374\16\32" #"\ax\a\222\324\202\237v`\244;\211Ezt\234\275\347\244\0\255\233\306&O" #"\230\261@K\357$\222\247\311G\216\366" #"q\242Q\346\355:L\363[\367\202\277\372\253o\340\313_\376\362\20\355" #"vY\257NIH\270r\345\30O?\375T\310\36\\\256\212\217\216Ht" ) 500 ( #"\n\243\323\305g\245\254&\261BK\21" #"i\243\30\315\21\253\250\251\363\257\3518" #"\331\36k\230\216\327\203\f\6K\f\220" #";\315\310\234\345\212\21\255l\312\260Z" #"!\35\353\b\242\"\345\331m\1q\330" #"+C\225\373\236\367g\213\0161\21\325" #"\202\224\0\231\324\263\220\306\263\244R\35" #"\253\340}\235\342\32\212\364\311\2049\246" #"6{\360\333\f'\3\214Z\\\177t" #"\212\6\221\17\26\363\320\211Z\a\265\300" #"\230\256\a\225|\32\317\16\337\27\213\245" #"\30Ypm\270\216\324'\355Z\356\247" #"\304\363\336\214\221\240e\347\342\272t=" #"\177\31\261lNr2$\311\374\36\6zj\355\364Z\320dN\252\202A\2009" #"\240\314\266\231\343\2608\22\f\237\32\247" #"\226\35\211\231\273\352\265\e\302\314\6Q" #"A\17@\325t<\203\230\332\n\343\264qd\327\210Yt&\332\177\3259\265\260" #"\"\235Z\f\324\211\bt\324\235k\332N\4\0\370j|[\267Y\354U_\227" #"\332\nJ/.\316\361#/\275\4\205" #"`\336\317\320\306\226\351\362\rX\347\236" #"\267\337~\e\267n\335\302\321\321\221\241" #"\\\233\r\216ON\6\207\20\0v\373]\243\301\221>\30\221\355h\a\"\250\24" #"\3j\0\316\203\3572A\371Lj\305B\252pN\253\364\e\5ZV\3\252\346" #"\0\327\332\246\354\305\226v\r\250hY'\2737\26\\G\332O\4\254~\361\27" #"\177\21\277\376\353\277\2167\336x\3\265" #".\250K\305\373\336\367>\224R\360\215" #"\257\177\35\313\274\264!EgggX\226\5\217>\372(\216\216\216p\365\352U" #"\244\224\361\340\354\2\313\262\340\317\376\354" #"\213\370\302\27\276\0E\305O\375\303\237" #"\304\a~\350\3(\342\35\1\302~F\360N P\351\317\333\367;y&2\26" #"\256\232|\331:oP\312\f\326\3\305\357\215/\332\211\265" #"\323;dqrF\322^4O{\244ZQ\274\307y)" ) 500 ( #"\5S\206\27\306u\371\243>\214\1\351:\20^\237\31\276J)\310\262i\b-" #"\365!y\330D\237\267\323\26\202\t\320\212M6*\330\ffW\273\315\262a " #"~.\274-\235<\244\307\375\304\213\307" #"\205\220\304\301\f\2-\25wO\357\342S\237\372\24~\351\227~\t=\305.V" #"\245\353\6\260\177i\217<\350\\\366\305" #"\347\\x\363\352\323\306\224\357\375\373\367\261\335nqqq1\309n$x\260" #"\252W\367B[Q\2225U\220\207\32@\0\316\23sg&\31\212\246\205\310r" #"GQ\243 \266\224\241\242!\bPK;\225e\261\366^\360\24{\351S\316\220" #"z\261\312\330\342\303\225#\233)\a\205" #"\21\243\320\261H\305*\232!\0JA" #"\361\24\353\344\21\225\245=\354\326\326\264" #"\b+\342\333\"gsX\314\t\261gOI}\372\212#\213\nH\26\34\371\30" #"\337\375~\337\32\220G\343\25Q\r:\260\346$0U\3109\323f\240\242@H" #"xf\23Ri\357\31g\212K\e\242ak`Nx\234>C#l\305e\206" #"z |w\274_kl^\332P\16:Dk^!\237\3P$u\307SK" #"[\343\246\240\3048T\225\350cSFD\270\374\337\36QfI6+\332\223\0" #"\261\367l4\374\35M\265 \303\332\311" #"\25<\365\324\2238=\275\207\243\243\322" #"F\341\212X\317\343\223\223\23\334\274y" #"\23\233\315\6\233\315\204\e7n\342\251" #"\247\236\356U\321-\3630\242.k\203\335\235\217\36\34v\24\30mO%\t\226" #"\271;\r\245VdX7\f\264\373\267?T\3049\367\350\237k\\k\305\242\313" #"\270~\20\313\320\b+rW\301\0323&\311\357/\245\326'\2666\231\329\264" #"P \271\221\346\363Q\31G\207\216\243\314\241\t\250\311\365\211\eY" #"\230\0234m.\27\352\266\300GY\20h\324\225Fs\250\316=U" ) 500 ( #"e\317\375\376<\271\aQe\361q\240" #"\224\v\356\227\e#\1\274\237r\270\256" #"\353G\356\223\31\244\311UEG\347\233" #"1b\321\232\177\236\250\207\251\254\21\r\342ZRn\264Z\373\266&#NDZ" #"V\24\203(\323\361\337\324\313k\343g" #"\372\274\255H\e\r]\213\270\334\251!\256\311\20rkGd\31\17V\277\233l" #"TX\236\237\213g\316\202p1a\1\205\325D\230\336d13y\245\311QE" #"6G\317Y<\355n\251\320\206\330\2526=\326\366\243\302\177o2T\212\241K" #"\354\23\327\300\0G\277\314y\325K\335" #"\27\326\201\246\212 \251u\24\252\216\"" #"\366g\364\36\316\350U\374b \252#" #"\245\334;[\303Z\255\325\346/\377\362" #"/\e\365\215\301\37\324&vN\223\323" #"y\252\267f\314\17\227\205\260\3171\303" #"\327PGU\343Z\273\334\347$-\253" #"a\373\251\356\374\326\366,6<\311\213\244B\20\b\221v~S\316\310\"\230k" #"\247\371\261\335\236\321\5`\353\20\0037" #"\351\264\203\224\22NNN\240\252\270w" #"\357\36\376\374/\376\2w\357\334A\222" #"\212i\273\301\274,\370\233o~\23\177" #"\373\327\337Dv\364\372\374\314\206\36\331" #"\20\231\35\0\301\331\331\5\346e\207\315" #"\346\300\350\26\331t\341\2243\16\217\217" #"\360\373\377\367\357\233\303<W\324d`" #"I\337\377\236\5+Z\254 V\222\313\31<\v\20\3000\35A%s\2\227v" #"f\3713RTx~\247U\306+\312" #"T\374\367\345\354\236\255\327\264\231p\260" #"\335\340\354\301\322\366|Y\366\20\331\f" #"\353\32\235\322\16H\215E\225\215\312\324" #"\374\223\352\276\200!\342-\0\257u\30" #"\3322m&\220\372X\274\215\343\342\201" #"\324v\273m\317\300\372\251\2243\324\1" #"\263*\1@\250\275\313\322\364\260\350lY\26\237Ml\234\325" #"\337\373\275\337\303\343\217?\216\2337o6\36P\361\224\360\274" ) 500 ( #"\357M\2309A\254\eo\302\356t\242\23rb\4\233qtx\210\245,\270z" #"p\265E\220<\\1\35\231\234\323Yj\205\226\5\331\vk\246irC!\320" #"$\303\346\362\231Zt_\215T-\211\2745\26\6\215\210Ws\244\0\357w\311" #"4\243\363|\275p/\245>,#M4\226\356\360\344\221\207\5\265\265$\332V" #"\330~%\6\27!\22\266\303\351iT\311\355ZU\222O\b\351\324\200\30\265E" #"\207\227\251\260\341\360T3\232h\21\264" #"`\362\341\b'''\270v\375\32v\273\35\336y\367\35<\362\310#\203\320r" #"\317\355\32\325\0171I\366\35\5L\0004\271,y\260\260\324\356`t.[A" #",P\262k% \255\rh8\260\316\1MI0\245\334Ryq\375\242b\261" #"{\327\206\260\305L\304\332Y\210(\252" #"M\244\243b0\343\bG\260\242\302\210N\205\362\274 5\303h\221;\274W\262" #";\32\265\3238\242\363\302W\316\31\357" #"\274s\e\207\207\a\370\321\37\375Q\374" #"\320\17\275\337\356\202\35\ebk\225\224" #"\260\337\357\332\31k\303P\232C0\"{T\204\274&\177\27y\256\321\21\351N" #"\212\235\365\210\206\333\231\326fH\330\304" #"\236\243\265\355Y&\210\30W^\262\247\2434\240\213\">\0251\333$:[\324" #"KFU \330l\246\326j\213A\201\25,I/l\240\1\340\340\3t\247=" #":\302|1\343b\16Aq\333\233\33412\a1g\v\226\251\3T}H\3" #"L\aT\357\32\242j\335B*\264\241Q\355Ov\230\320\365@U\265\241\v\311" #"\323\261\265\313\30\35w\26w\304@+" #"f!\210\204\20\351k\321,\272\323\337" #"\251\"\235\16\322\364\274\2164\261~\6" #"W\210L\212\350\250s\357Rn\305T\2613\302\32\301\211{\30\203" #"\371&\177\311PS\2104\347(%\236\371\256[\"\375\206\372\240\203" ) 500 ( #"\32\n\266\215dV\2619\204l\207\224" #"\320'm\211\264\354\222%\222\274\237v[B\317R2\373\207\361l*0\354\203" #"\235\274\tU\354\254\364\6\370\325\2729" #"\264)Y\346t\26\356)\235\363\260V" #"\227\202N\261>\304\4]\220\24\250\306\t6\244\330t\2518\235M+\200T\240" #"\350\201\231!\332\23v\273]k3I\347\243\24\3\216\346y\266A@-\5\35" #"u\372:\363\205K?\243\276\313SFU+\22\253\25H\311\354t\apRC" #"2E`\334\354I}\264\271\264@b" #"\235\235\253\305\322\352\\m\365\367I\26\353>\343:gp\f\253Q16\323\204" #"\357\274\372*\376\327_\377u\274\366\372" #"\3538\275w\317\220\354#\37u~~\201\213\363s\354\27\353 s|\260\305\311" #"\361\25<y\353V\353!\177pp\210\363\363\35\256_7'k^\26\354v;" #"\314\363\214\247\236z\n\217>\362\bN" #"O\357\341\336\274\340\342\354\2\307\307G" #"\246G\2\3129\236\337\2\225\f\325\5" #"\244\27\326\252\356\27\364\300\241u=\250" #"\314\310\346Kgu}\276\350\374E\e" #"7\345\334\374\6\352\207\356+\24\263-" #"\336\16\344\354\354\f\273\335\5D2\266\a\a\250\v\251\25\5*V\300>/\363" #"\20\344\24\324V\264\272\324\322\272\314D" #"\360\256e\334j\317\276d\277/f\r" #"\342=\273\244\231\356q\340a\273\335\266" #"\f0e\256u\375\21\243\be\3108\211\216'T\340md\334y,u\361\321" #"{\266\241\333\315\6\367\37\334\307\2247" #"\270s\347\16\246i\353\302K\224l\3" #"@\221\322\204\336\366+\267\236\273lu" #"\323\235\335~\230/.v\235\342\220s" #"\233;\335\323 \276\211\3206\220B\253" #"\332\340\0047\330-\302\300e\344q\232\254K\3\231Z<\270\366\367\342\b" #"\337\330t\234\202\303&\315X)\237!" #"\22\202\241M(\212\202\332\240\375!\355" ) 500 ( #"\252\306;c\312\326\326\302R\273\325;" #"P\254\25]\333\34\177\306&$\332\5\330\234\2124\\kH\217t \332\22~" #"\274\27w\306\371{F\346\313\262\340\312" #"\225+x\363\31571\357\346\326\221a" #"T:h\312\265\371\360\216\36\330\317\334\371Us>Z\23\377\300GmH\177P" #"\2241\"lJ\35=Xj\n\326\r\21\244\217l^\e\35\276x\337k%\35" #"\377\266g\237\334\240\272\263+\22\344\317" #"\221e\r3\313\341\5r\253{\256U1\245d\6\257v\203\236\222\241\202l\347" #"B\276^-\305\246\343\345\236\32\337l" #"\267xpv\206\224\4\247\247\247\236N\355)\270\234;\377\263[IED\270\210" #"\202\307\265\345:t\271\31\35m\376\275" #"\316\212Xs\356\21i\352i\314\36\250" #"\324R\220\305Z\177)\310\377\362\2024{\3\210nL\271OU\204\300\347\324+" #":\312&\303\364.\32\322\305)Du" #"_\240\223\235h\253\202\226\336\257\231'" #"\247\5\20\30\207P\254\344\241\5\2I" #"{\277\333Z\260\235\254\245\2419\314\344" #"\r\2333\253\352m\340\234\327\257\274\254" #"\373\204\352\331*m\351l[\207)e" #"7\310\206\220f\216*\316V\177\300\365" #"\26\351\5W\2O\307\257\372\34Gc\236s\266\366\220\322\345\376at\rx\257" #"O\353\305\n\363\253\25\336\255\241;\237" #"\227\316<,@\216\251\302\232\244\265\215\214\364):\327Q\3077y\2536*|" #"\215\374\264\266\247t*E\275\a\2274Gw-\247\361\34s\35\222D\267\224\b" #"\225\a\317\342\275N5\265q\246P\362" #"I\321\357\201A\2242\265l\272\210\351" #"\362RJ\313.\254\3\3055\252\325e\255Ba}Ks\230\230i\250\223\331\316" #"5:\32\301\213$\35\274\20\315M\6\3212u\2]\\\216h/\265b" #"Yl\324\254\344\324\276\237\216\27i" #"\329g\240\2\273\335\316\372\256\37\330" ) 500 ( #"\2244\255\332\262\23\224\205\370\\1\363" #"h\31\312\212i\233\241E > b" #"\273\335\264\26\234\361\263\315\2463\340\27" #"\26\234\365 o)V\250\26\317\250\305'\342\334dG\322\235b\2\350p\306[" #"@6M\370\354\347>\207?\371\334\347" #"\274V\28<8\300\265\353\327\361\236" #"\367\274\a\267n\335\302\267\277\375\267x" #"\341\371\27\360\367\376\301\337\a\v}\17\246-\3460\244G\253\242(;\0(v" #"\236\361$\275\341\235w\336\301\257\375\332" #"\257\342\376\331\203\320\311\247b\332\260\200" #"\264\264q\300\346\234e\357\371j\301\\\17.;\3251\236)\312r\4\0#\252" #"J\237\213~P\tY\313\344\331L\301X\267D\35[*\213\335\4W\217\217\361" #"\215o|\3\357\276\373\16>\370\301\17" #"\32P\340\237\267\214\n\\\327\4\237\243" #"\24\357\361\354=\340!\255\326\246\323\"" #"\372\31y\230\36n\301w\223\21SPU-\310\323B\220\300\212\273\247Mn\231" #"\277\370G\301\242\325PxZ\r\34\232\254y\2728:4#%\213\264\355b\25" #"eY\360\336\367>\217\377\347?}\21" #"\377\376\337\377.\376\351?\375\257\240\236" #"\346H\223+D0\22\266\377aTa\320\366\303\213\212\226en)r\36\276\375" #"~o\6\177\2631$\322\362BV9\352\355z\326Q\314\0\277\atVDZ" #"Q\216\344>u,\301\f \323\251q3\342\206T\214\234\224\3504\3609\204|" #"\324jT\200%\244F\371\314L\275P\271Y%\257\02715'\261+7C\273" #"\252\245\317\224(0\321\336N\360\356\316" #"]\27\37257\216\275K\215\367\352\312>8\1\376$\355:\217?\3768^{" #"\3555\354\226=T\254\370a\331/~\2503XQl\357g\377T*\334j=" #"\t\325\3666\329U\365\266A\253\365[\355%\177" #"^\321\215\204M\327\351\224\222\354\25\237*\2k\220" ) 500 ( #"\37\323lk\344\310\220\241R\274b\333" #"\363\231\344\3\365Q\250\223\323A\34\201" #"\223\4\361\26(*\26\201&\26\247\0" #"\203\34\360\376S\242S\346\212\326\323\323" #"\251\2129\317\316?N\311\v8EZ0\321\276C\4\373\335\16w\357\336\301\311" #"\311\t^y\345\25\334\274y\0037n" #"\334l\312\276\224\31,\330\241CZ\335" #"\231\212\16J\374\336x\376\200\313\316\236" #"5:\357ca[0\230\340\310eo\367\264N\r6J\211\252\353\3A\205\5" #"B*h\216\355:\235\326\35\25E\202M_\\\226\305\344\324\25\250\302\n\24A" #"G\266\250\215\327v\245\226\324\306n\247l\205\16\234\356VkEF\362\1\1#" #"\242\35\345.\242\231\f\0\25a\202\225Z\227\230\370Ru\3]\335\1BOg" #"\323\361m\325\340\356\224\20\1eO_" #"r\275\231i\270\354\34\31\342\213\26\313_F\376i\30M/\270S\35\364_\353" #"\262\1\351}j[p\24(Z\30\213Z\327:\225\301u;\307\256@\255w6" #"\0345\34\273@\304\340\323\276\303\2\274" #"Xt\27\345T\220P`\274\337\204\t\310\336\236I\265;F:rY\343\271\a" #"\r#\v\362\340\335\"* -\225k6\312\34\261b\30\267\267]\354\372\302\326" #"Fa\375_\215\36'M\376l\217\373p\214h\250\343>\305\264-\222\266^\360" #"v\235\344h's\246#\242NP\243\323\265bv\303\357O=\223\201^\274\247" #"\250HYP\34\225\335l\3549#j\3145\217\374\316\213\335\5\222$\\\\\\" #"@+'yugj-\2271;\302\357\310)C+\251!&\367\v\321I\364" #"n1\375\34v\324\275.!s\353\366\26\3\340a\353\232S\306\336\v\326y\f" #"L\207\217v&\6[I\4\333\355\26K\255\330\237\235\341\375?\364" #"\1\374\303\237\374\30n=\371\244\327l\24|\344\307^\206j5\347" ) 500 ( #"U\2152\362\200v\333\375\200\4\3373\221>M58l\2\340`{\204+\307" #"W\260\335n\301ABZ\325\366\1\260" #"\342\346\234P\352\202e\256\230\362\306\n" #"\230\253X\257\344E!\231\205\260v~\17\16\16\334\246\314f\217Vz,\356\3" #"\3170\207\261\324Z\335^:\327\335\273\fq_k\255\230\347\305hI>\327Y" #"r\302\27>\377'\330\355\366x\377\373_4YP\305\324\372\377Z6\230t\232" #"F\215\22\301\3425\5-\356\327\221)" #"\20\375!:\245\223$\243\267\304\300\316" #"\5\335:\310LP,>3\240\313\32\374\344@m\262\e\374\374V\204\201P\3" #"\205k\306D\241\267T\267\vs\3619\326\223\31\237\17}\350\37\340+_\376K" #"\274\366\332\253\370\334\347>\213\227_~" #"\31\307\307\3078\337_X\304Y\315\361PU@\310ybz\273s1\fA\235" #"QJ\301\321\3211\356\337\277\217\203\215" #"\215\341\333\357\367mql\214\234\v\276" #"\240\241\253\223d\324T\333a\215Q0" #"\233\375G\303aBo\34\253\224\23\272" #"\237\3377c\263\331\202\304x\216\251\253" #"\252\256D\34\321Y;m\356\320\240\26T5\303+z\271q}kS\4`\232" #"6\203\221\235r\306\305n\a\216\b\214" #"H\232H7\36L\23\307\352\337\207=\177\214\362\370\22$\243*\244>\312q0" #"@<\250b\350\361\355\333\267qtt" #"d)\2o\225\25\25\307\220\252\326\356" #"\320G\24\221\353\316\277\333\277\211\276\271" #"\376\"G\255\247\27\350Dx\324\252\t" #"\234\362\324\232\\{0\301~\274\311\225" #"\236\370\263\305g/E\221\263#\255\f" #"d`\3354\310\5\343\372\322\270\210\210" #"\245\237+\v\201\200\204\344N\2;x\0\222\273\375\210\1\27\367zQs\230Y" #"\340\311\26]\310\356\310\2272 \346\334\217y\236\361\346" #"\233\257\343\342\342\f\"\300[o\275\205_\375\325\377\5" ) 500 ( #"O>\371$^x\341\5<\373\354\263\270q\343:J\211i:rb\307TQ" #"\f\240l=\210\32\241\31~\240s\330\342^UO\263O\355,xd_\325\271" #"\202\366\247\266B\"q\347O\273\22\22" #"\e\266`\243$\373D\276(\327\315\220\212\245\320\220\5\251vN6\321\4@[" #"\373\32\"S,\306\311\350CclB" #"c\37\332\320P\241\260\326\227\234\312\332" #"\235O\"\230\334\334x\356%{\301\332\224\e\232\2718\377[K\365\202D:>" #"\26\350@\325\351\243\212^\365/@+x\352\2103\357\253\311R\346\31\n=e" #"\5(s_s@\r=gZRG\2562\340\337\217\344)e\0,\256[\"" #"\267z<\273\2033#\260\f\215sO\205\336\255:\317\37\266f\344b\256uP" #"s\4\265\217\257\216A-u\211\317Y\6\222\323@D1\311\204E\227f>#" #"\205!\32\320\3663\273\221\206l\232\303" #"\334\247jY \300\2\313\376\276u\300m\16\263uH)\301\231m\350Xp\0" #"c-FZ\311\31\345pq\36\373\210l\212\217\251M\206(\223\203\213\313\3723" #":\372\274\216\375\214\16\253\266\236\247)" #"%\224\245:(\236\260\24\e+\316\365" #"\216\3535M\23\36\234\237!\345\204\355" #"v\353\24\br\237\323 \e1\230\341" #"\271\350\266\227\303 \n![C\260\331\365Cz\360l\216Q\302~\2361M\322" #"\2QU\3176\2\220\234]\277x\327\v\254F\344\206u\\;\271q\235T\25" #"\37\376\360\207\361\374\363\317c\236g\334" #"z\362\26.\316/\260,3v\34\305M}\326\220H\v\210r\336\240r\344|" #"\330g\251}2\e\237\365\364\356]\243^&q=g\376\16\35N\337\325\226%" #"L^\17\200\244\220d\335\220$\273nu\220\205t\305\224\22r\232" #"\2063\23e5\376\273\237;\351\372\242XA\260\r\331P\210\313\2" ) 500 ( #"T\201i\362\276\363{\34\36\34\341\177" #"\377\255\377\r\367\37\234\342\321\307\36\305" #"\323?\360\f\312l\0Q\f|\363d\31$\3523U\305\322\250\v\30\200\205A" #"\237\344\324f \320N\265\365\bz\266" #"\272\256`\240\23\333\361\211;\300\265\322" #"\306\270\215(\251\331\206ZJ+\202\354" #"\347q\203Tkm\223\222x\301\224\246" #"\206\362\246\224q||\204\237\373\271\217" #"\3\0\376\374\317\377\34\237\376\364\247\361" #"\346\233o:\0320\e\372\347}\361T\20x\230=\272\355\260{\302\224&dI" #"x\353\315\267\6'\253\t\251\32:b\264\203^TQjhd\217^\351g\255" #"\311z\32?6\307\267\321p\305P\300 \fD\360R\340\277W5n+#!" #":\331\221\207F\a6::\202\21\t" #"\243\263\6Gz\331\307\227\350\207\326\212" #"e\266\356\t\326\213T\332\270`\373\316" #"\261\262\267\326qB\213HOU\320\21\\\37p\23t\32\37\200\350RT\n\21" #"\341\342D\253\363\363\263\320\"\244+\335eYW\220>L[\5\0\0 \0I" #"DAT\322\337\351)\335\361\260\215\205\fDv\352Rm|2F\4\244\tf" #"\255\346\b\210\241\240D\327\210\2000\202" #"\266\317V0\275\31S\246t|\e\337Z\265\3618\5\275(l]9\312{\317" #"9\3Y\32\32VQQBO\342\352\316+\rpt,\n=\30\365>\177\265" #"\257\v\237#\347|)\200\242\363\375\342\213/\342'~\342c8>>\306;\357" #"\274\203\263\2633|\347;\337\301\37\375" #"\321\37\3417~\3437\360\326[o\203#'\3272\21\351\32\\Wr\252;\2" #"\326\a\vP\316\"\365\243\355\241`h\332O'\220}\321\263\367iez=i" #"\270\276x\212[-\240\e\"\371\340\24\304}kgF\200\375\274\267\376" #"\267U\333\341d\26\203A3\rq)\5u)\315\321Z\312\2\372M" ) 500 ( #"\334\257(k=Ps\343\235\254\260m)l\334>r\257\211>\360`*\35\201" #"l\312\265\240\2Y\274\307/\32g7\301\323y\356\34\346d\274J\231\22#=" #"C\370e4\334\252\212\231\\}\312\27\314)B\351g\253\"8\243:\362\356\242" #"<\210\b\252\323}\262\e6\233\0\327" #"e\204\317\31S\360v3\275\r\222\244\236\343g\332pY\2266]/\256W\314" #"\30\30=%;u\203\331\277\276\27\366\375v\216U\215:\27)C1M\312\300" #";\352\215A\337\210\e\333\225\323\243\25" #"\276\316\306O5A\36;\335\264\367\206`\21*M~[qKJp<d\320" #"y]\377*l\312\243S/\2745\35\213\232;\232\32\35pCA\343\271\240\23" #"\333\236m\205\242\226R\fE\255\346\350" #"\232i\24\30\344\316\363\2351\345\r8\224h\b\n|\37\0166V\344J\233i" #"\266\315\207\302H\317\216E=\300uj" #"\377n\367\344\aO\307\375Y\357\223\311Z8\203\224?\"\272~\326&/\f\343" #"5b\352\236zk-\a\252\212\223\223" #"\23\234\234\234\240\224\202\363\363s\34\37" #"\37\343\306\215\e8??w\275_)\336^\20\231\221%\e-\242\2109R>" #"e0\371\230\355\361\\\t\224\347H\25gggP\25588\330\342\370\370\330\356" #"\323\365'[IB\fL\23t\331\6\304\257\357\337\215\324\326\216z:\362|\243" #"\263\37\1\r\312\5}\b\202O@1^/\22RF\v\236s\316\330/\25\333" #"M\306f\233p\355\332\r\374\301\37\374" #"\1\276\376\215\257\341\356\275;\370\304'" #">\321\207A\370\371[\349-\363\2vJiY\a\35\201\213\b^q\4v" #"\233\364\326\374\257\322\250*q\357H\37" #"aF\327\346\26\324Q\346\300\347\316\250\v\257\355<_\17x{0" #"\346k\371\317\177\341\23\377c\206\fh$[\201\260\1w\255\25\217" ) 500 ( #">\372(\236\177\3419\334\276}\27\257" #"\277\376:\276\365\255oc7\357\360\364\323O[%\234\272\214C\0356N`C" #"\371\206@Jj\212k\263\331\340\217\377" #"\360\17\261\233\367x\362\a\236\302\v/" #"\274\200\303\303C@\254\22y\n\206,F\221Q\211\22\246nF\220\3166:t" #"MDm\355\320\250\3674U\r\2211\24yc\255\242LI\333\242\31\227\250\247" #"p\r\341\312\320~,\333=%I\306\237\22v6\350\350\262R\20`E9\235" #"\337V\333\206P\311\307\340 ^\303\236\227\212l\244o\304\265i\a`\25aE" #"\305\22?\267\335n\361\345/\177\5gg\17\360\3?\3604\376\316\323O\267T" #"'\35:\322*\"\242\21\243\376\250H" #"\243\21\211\210\241\311\231\366\302\20>k" #"6&\244U\365'C\313\275HD\302" #"\367\263z\231\323\267\350\324\306\373\260\347" #"\352\206\273\335\247\5\356\243\363\22\17\32" #"\272\254\300\243\320\246\354=\300\201\313\260" #"\255\213\5\20q=x\255R}\254%" #"\21\260 #\274\347\332\214\272\266\n\375" #"\203\203\3\274\357}\357\303\207?\374a" #"\274\374\362\313x\346\231gp\357\336=" #"\334\275{\327\345\241\340\331g\237k\347" #"4\336\177\f^z\321\3408f\264;\232\216@\332\aA\304+\242\202\366~\343" #"\236\16\16op\354\327\377\226\224\240M" #"!\273\314\253\216\373\200\350\204\aZ\203" #"\e\332Ir\v4\r\344\210\1\326({M\216\305\20e\201;\210\252}oT" #"\233\323\26\235\372\36\270\372\263\273\362\210" #"\316Z\273g\177\236$\251M\330\372~" #"\347`\232r\v\206\340\301\22\21\226\244}]\31 \267umN\261PT\351Q" #"\201\267\27{Mk!J)\227d\200:\334\343\22{&UG(\305\35\2611" #"=\35\3_\21i\216v\216\367\b\364^\266^\24\302" #"\263\276\2263\21i\323\333R\362\241\30\36@\363\271\32" ) 500 ( #"\242Kc\f\323\237\0346\241\312a\30" #"L\303\352C\357\225\274\371Zj\313\314" #"\1\324\243#\342\307\237\257\377n\b\220" #"X\37e\205@\224\274zu=\350\334\363JNe\320\177\t\350\272h\344(\256" #"\203\376&_\276\3214\354=\371\e\250o\253@\234\337\2430\264.'K\177\213" #"W\243PXR\243ky\3329\\\237Ct\336\275\375.\276\374\245\257\340\211[" #"\267\360\374{\2363z\20\273\205\370\335" #"\360\f\361\263\21U\247\\\3V0\332" #"\200\205xv\320\365r\324\371\35\310\351Nk,\250fQ+\213W#\20\21\333" #"\263\305\317\244\224\360\233\277\371\233x\375" #"\365\327\361\374\363\317\17\216\242\235\213\221" #"\336%\36\0341s\332\321\351N\205\213" #"k\317\373j\331\240l\223\3\376\342\377" #"\375\v\34\36\36\340\357\376\335\377b\320" #"\315\"&\327@\327\35\20v\346`q" #"g\a\302L\341\31\235\207\317\3770\347" #"\276\311\300\352\334sm\355w\215X\345" #"\1\221\25l\2\300n\331\341\337\374\233" #"\377\0317\257\335\300\377\365{\377\1\177" #"\371\227_\305\203\373\247\370\205_\370y" #"<\367\334{\260\237\347Vx\317\361\314" #"\0\274#\227\17\221(\216t\243\357m" #"J\343t\312\3242S\274\267\336\352\17" #"\350r\3055\243\17\32\367\315\20\352\214" #"\224\200R\5\323&yAp\362\211\252" #"^\277\204\342\3\247\270\26\224\tAj" #"\351z\277\2209\255\226\22\323\212\226\22" #"\251\265\342\346\315G\3613\37\3778\376" #"\316\263?\210\267\336|\23_\377\332\327" #"\361[\277\365[\370\322\227\276\204i\263" #"\261\250\267\330\311\245\1\353)\216Q\311" #"\314\363\fH\302vs\204G\256?\212k'W\255\340D\201\355f{\251\201t" #"l\201\26\215$=\374RKk6\17" #"\36\240\330\253\24\359\244\340\230\323\306\305w\216_\355\367\330" #"Q\1\240\314u\330\300R{1X\214,\351\300eo\364\235\303" ) 500 ( #"\357\230&\235KY\361\\L\201\22\265" #"\344\213\a\227\216\374\332\251\214\1\300\303" #"\224x|\3613\321\371\343\341SU\354v{\260]\310\343\217?\n\323\365\332'" #"{\211x_\324\321h\254\17ZD\333\243#\26\221\223\313-\335l\317h\3308" #"w~\362\266H-5\v\fEJ\361^\242\3\277\36\31\t\26D\6g+\316" #"+\3378\232!\20\264\324\352d\34\317" #"\252\352\223{\3543\271\365g\265A\22\222F4\224\206\216H}+`\n{B" #"\256t\316\354\240 \35m\202\361\255J" #"\2558<8\300\v/\274\200\237\377\371" #"\237\307O\375\324O\341\354\354\fo\277" #"\375]\334\276\375n\e\nB\31\210}\224\327\350\v;\232\214\306F=-\345?" #"\317\t\23Q\307\301q7\305NC\320_v\337\374\316\266\6\256\374\331\33725" #"\243\240\1\211\357/\366\232TU\233\226" #"\244\23\252\364+<\314\261\216\317\327\202" #"(`\265\17\344\317I\353\323\234\202\316" #"\210F6g\237\344\245\322\370\227\255\25" #"\234\b4Q\206k\353\35\273\16\26\3435\331\a\223\5B\355z\n\314e1\244" #"\au@s'\366bf\353=\363N\333\36\372\303\203t*\352=:\346\361\331" #"\233\336R\265\266;\311\252\221\221\274\330" #"%\351\360\275\374;\352\206\4\351\bu" #"\b0\206\375\243\343\256\35A\341\367Q" #"\306\3624\231s.v\337\342=/\373\267\30\305HQQ\26\17tY\234\a\4" #"c\215F\247\32\3F\337\e\365VG" #"I\300\312<\223\2332\200\5\353\242\230" #"\226-t[\305\317\0\306\325\325\344\372" #"\b\n\325\5\212\4\272\200\\\303\3500" #"\305{\2122\312u!r\332\344\320\235" #"\322\346\304z\215L\334\313\310m\216\347" #"3\336\253H\202J\355\235I`\366\315\320Dk\377\230\334aa\227\220R" #"\rU\313\233\f\233Dk\201j\22\264\366YU\275\225'0\234\233~\375\352" ) 500 ( #"\1\235\255E\365\221\316Q&\271\356\361" #"\254\264\326P\253LD\357\347\n\344I\332Z\230s\256HS\37z$\322\v\266" #"\251\a7\233\r\356\335\273\207\337\377\375" #"\337\307<\317a\357-jV\30-\206\1P\2445\245\224pp\260\305\311\311\t" #"\256^\275\332>\277\36\237\316k\332\4@+\214>8\260b-\6\be\266\311" #"\210\211Eh>\321+\301\366\2\325\376" #"\266\242\376\352\364\25\361\363\346\201\312\24" #"\34B\364Y\a<7Q\276\242\323\317\317\360\2556X\243\200<\337R\nn^" #"\277\211\377\346\223\277\204?\370\303?\300" #"\333o\275\205g\236y\32\377\352_\375" #"\267x\337\373\336\217\375~\337\35\365\234" #"P\227\352E\320\31\t\31S\232\214\372" #"\223\24K\335\243\203=}\300\227\2657" #"M\306\373N\31\202\251\371\231\352\0\200" #"`\314\346\362\337\226\351\316+\324\332\202" #"\270$\212e\356\376N\255NY\23\0\232!2!\245\r\0\0031m\214\271b" #"\252>\346\221E\t|\271?\215Z\214\307jQ]\305\361\3611~\346\343?\203" #"\37z\377\a\360\333\277\375\333\330n\267" #"\370\314\e\237\301\27\377\363\177\306\23O" #"<\201\227^z\t7o\336\304\365\223" #"\23\234\235\235\1\276\370\331{\345\361\241" #"\276\371\315o\342\376\375\373\270~\375:^|\361\5KIz\337M\242Ak\24" #"\211\237\245\322\0\221\1\237\"4mlzZsz<*^\324&lD\303\30" #"\rt3\246\216\350\21\365\213\325\356\360" #"v,\243\342\352\216\r\35/\353\315\311" #"\224\242\266Qw\305+I\253\214\207+" #"\266{\211M\357\327\257\341>\353\310\353" #"\343\277\207\265q\345b\255!\5\250\216" #"r\207k\333{\315\351\276\270\270\300\235;wp||\214Z\25e\36\323\"V" #" \327\243\356\352\216~Dp\243b\216\316\311\32I#" #"\"f\v\242\255g(T\221PQ\24 \a\207\210\347\372" ) 500 ( #"\331\243!\211k\211\346|\270\303+\2" #"\370\2043\336{t\272U\215G\232\244" #"\27\251\301\203\233\224'\324\262\370\324;rA\211pXZFr\370Y\373NC" #"j\331\376\212}e)\3274\220}\315\210\4\232\2\2652\2+\0252\345{\200" #"\27_|\21\177\372\247\177\212\375~\327" #"\372M\367\236\271c\201\302\372\314\304\366" #"a]^\nT\222\215\302\0261j\217G\306\220U\3534\265\37v\31\23\260v" #"\347\22\312\3640\207k)\3300\315\5" #"G\211\335\371\334\346\251g\16\304\344U" #"\305S\3635\371\344\2442\234\v\336[" #"q\316\254( \223;\250\252\215\377<" #"\350\r\246\32\223\\Z\247\352\25\340C0\24\221\237J\216\177\bhW\310\n_" #"\255\250\255T\233b\30\234\304\210JMyj\272\342agd\215\326\360^R\22" #"ox\327\1\205\30\370\256\203^\315\311" #"\2479u\347l\215\246\345U\0`\331" #"\261\332\364 \271\223\361\314\304\275W5\2076\16\341a=\206h\5T<0t" #"\232\227w\334\340\2631 a\240\255j\0311\251\5)OPG#\265\250M\251" #"cp3\310s\327\211\361\331\306sy" #"\31\375\e\202(\210W\225;\202\17\361" #"\216\36\256\367\246\r\264\30[\237\215O" #"\224\272\213\255\2204\r]\34\342:\305" #"\373\213\347\325\344\322\337W:\32\335\345" #"\227\362eH\237\202t1\2737UXO\335\n$R\271\334\1+\252\310\224'" #"\300y\301\271e\2\370\374\333\3\353\r" #"_\312\202\315\346\240\5\b)tI\341\350\350\24lH\3,h\273\1T\351v" #")\276z\255\305e\373\333m\3\307$W\233V'\2\25\273\227\354\16Ot~" #"K]\274sK\aQ\236\177\376y\334" #"\276}\e\237\375\354g\361\261\217\375\204\aM\25\326J\313\357I+\254K" #"\20\301\256\324@\201_\373\265_\303" #"#\217<\202\217\177\374\343\203l\r\372" ) 500 ( #"\304e\304\366\321>w\355\332\265F\311hSck\240\251T\264\353!U \t" #"\226\242\200#\361\245.\230\322d\1j" #"*\220*\220d#\234Y\340\255\260\"" #"\255\252\305\235\272\321\6s\35l\357\4" #"\313\354\250q\3366\244XD\361\340\376" #"}\\9>\302\377\360\337\377w\250\265" #"\332\344\270\262k\23j\31\230W(\362" #"\224 e\343v\312\354\352\304\372 \260" #"\227=\321w\266\340#\335\263\327h-{\16\f\352\31\325V\217\21\262AQN" #"\"0\303\375b0a\34n\223}\332PQ\357\340\223\34\224*\25*\tSs" #"\36\362\345)\27\226\302E\253<\246@" #"\36\37\37\341\205\27\236\307/}\362\223" #"\370\342\237\375\31\376\362\353\177\2117\337" #"x\3w\357\334\301\227\276\364%\234\\" #"\271\202\243\303C<\376\304\23M\240\237" #"z\342\26n>\362\b\266[+>\373\314g>\343\21J\305c\217=f\233\323" #"\310\3126~3:0D#\355^\255\2129\"\"\331\213D\222;\222\34RP" #"\335\230\330\270\340\261\211qt@\27\355\234E+P#a\232h$\243\212\316\25" #"\211\23\314\354\0&\b\333\16\205\3\336" #"\f\226\ve^\35\366\30\241\257\21/\336\343\330]`D\221\242S\301\3377\5" #"\"\0\212\266\302\n\246w\341\375e\221" #"\f\261\331\355\314\201:::\304\365\253\327\\p\272\262&U r}\343\265Z" #"\370\330\36<\3220XD\340\206f\351\315\323\305\327y.\305\376\2352Rr\4" #"\37\235\36\302}\213\317\2726p@0\t\36d(L\321\363\265.*\204Xz" #"R\213z3|\240H\247/\0\26qo\230>wg\2729\3672:\231V5" #"\353\306\323\246_\370\301$\327zD\325" #"\371<\34\256\0X\261LE\347\20\213\230\263\372\310#7q\373\366m" #"\274\371\346\233x\356\271\347|O\342\265G'\327tq\357\267\34\3!\201" ) 500 ( #"\27\a\37091\337\335\345\305R\21\346" #"\226\324\332h:\f\340\326\224\224\265!h\306O:\367n\240\35PV8\23\305" #"\367\300\245\306\333w\241\3656\345\2043" #"K_\365\331\357\344:\227\375l1oJ\2202r\e\333s\267}\352\351\334x" #"\346\270\326KY\206\2403:#\221\262\20\345/\236\323\224\330AbF-#\r" #"$\347\214e\256(K\5&\364\2013" #"\276\326\2467\272\23\26\367\262\355[\347" #"s\264`:\256\377\200\216y\340\256\360IMz\271G1\367\212\257,\356x\t" #"\271\326\26\4,\354W\36\234\352\246{" #"S\206\226\336]\202\343\311\333p\204\246" #"KL\266\222\30=M\223 \311\204\331\r`\324u\200\30\232\32\246\23J\366\0" #"\323\277\354a\201u\\\257\2068\256t\325\332\21f\205\2758\222)@kb?" #"\254\275\210\255\213k\31\25\327\207 \a" #"\330\364 \333\t\22\261\342\2764\275\24" #"\326\260\355\5\0\325\364\360\375O<\227" #")\24\316\222\246\200\346LDj\37[" #"\375Q\226\263\313\245\265G\353\353u\345" #"\312\25\0\260v\227\312\226\215\235OI" #"$\222T\300\265\3037\254\245\237A\r" #"g?\356\21\367\304\256\267\31tWC" #"\255\203\343\333\203\267\36\214\325\205\335{" #"L\277&wr\371\354\373\375\36\37\372" #"\320\207\360\325\257~\25\357\276\373.\254" #"\200\371\2\a\233C\0\241=\e\21\336jC98\r\364\2157\336\300\233o\276" #"\211G\36y4\0241Wp\2_\323k\355\274M\270}\3476R\312\376~\23" #"\366\344C8L\2779~\231\307\300\2656\32`u0pB\255\vr\22\224E" #"\3151\r \r|}\215\332\327\203\324(W\361\36\253O\370l@\a\bPu" #"\235\307\332(\332\31\322\221\340\362(\332\277G\225\31\204\344re\35_:" #"\260\307\337\273D\263\323\203\367:gW&1G\253Q\252D\230-\36\v" ) 500 ( #"\243\373X\354\350\343$\210\270|\302U" #"!\330\370\240S\276\4\tIm\2140\252bRWL\3742\0360\21\31\224=" #"\35->\340\2243\216\216\16\360\217\376" #"\321O\343C\37\372\373\370\312W\277\206" #"\277\375\326\2670\317;|\373\333\337\301" #"\23O<\201\257|\345+vH\252\342/\226?o\17\302\210_$\343\331g\337" #"\203\355v\213\375~\337\24\243U\314c" #"08\\\273\234r\353\251\313\357\262\2023\26\n\330\0\204ir\207Y\25\233d" #"\251\4\270\302VrhS\206&\347\2\271bK\220V\25_\341\bJ\345\201\325" #"\260\340\321\311\0357\205\221\347\342\315\276" #"y\2371\212]#q\275\275\315\210\222" #"\321\230\304.\vkC\25\25\370\332\341\20\330\204\31SD2(R\r\312\351\376" #"\375S\354v;\\\273~\rW\256\\\261TUp\216\32\232D\305go\260=" #"K6IO Xt\31xP\366\f\335i3\220\325\25\330\322\177\346Mr]" #"\271Z\337\321\224Rs,\231B2\303l\367\0\240\311L|Q\221\365\3\313\365" #"\240\323&P\365\354Ehu\303!\1\245z\21\234\17g\31004\277j5G" #"\300e\221\6\303\356\243\323H\200\2309\360b\35\337/\"\3121\240QUP\227" #"\31\352V[\213\265\36\331f\\\\\\" #"\340\332\265k\275\340\241\262\240rLg" #"\366\300\210\b\202\240\363\t\307s-@" #"\333W\362\260T\324\253q=\210\0\351" #":\25\251D\224\367r\220\305\177\17\355" #"\237\372\2036\345\326\344\233AR\373\31" #"9\363\346\354X\5\364\0266\210\242\240" #"\326\360Y\237x\225\211\204\227\36\364\214" #"\373\341\277\243\322D7\b@O\253Fd\204\224\27A/\\\5\320\252\207y." #"\242\263b\0165\321\227~\255\206\260\244\344-\240,=i)^f-" #"\334\261+}\r\327\353\3143\313\375Px\321\333C\2\276\276\37\36`+" ) 500 ( #"\317\277O\24\2441\\\5 \316Lmr\236V\1o\372>:H\375sZ\255" #"\271\177\273\27\5\220\234\223\257\0X\200" #"\225h\30\265\241\271\334\v\373^\343\352" #"\3665Pz\f\366\263\25\252\316W\224" #"\177\236\237\230\21\340\363\256\203\365\270\326" #"\20q\344\313\317\203\a \215\313\255\253" #"=\252\354r @\22\324\275B\\\a\250\313\270(A\224M+|\214\1a)" #"\326B3B$\374~\3\b\222g\253.\243\362\361\275\361l\211\a*M.u" #"qj\216E\220Y\22\316\37\234\241\224" #"\202\213\213\vL)c\256\344\240\232\316" #"\260\256 \235b4\310\"\203=\265\"" #"\320\355\264i\300\221\335O\362)\235\223" #"\307\266\332~N\364>\245\356\274\333\377" #"w\252b\267k\360:\231\n\251\36\200\273\\B\254h\f0G\315\200\270c\34" #"\37\37\343\316\235;(un4A\323'\2160\346\315P\b6M6\262\374w" #"~\347w\220s\306\263\317=\203y\331[\e0\267QQ\237\251Z\341\372\341a" #"\306\305\305\16U\27\34\35\35\242\326\305" #"l\243?\323\2426\362\326\344f\314JF\236\261\1}\34\275-^\250\330iw" #"-\215\17A\205\331\230\315\306)\4\341" #"\0253\32Q\366U\275\325\231\216\203\225b@R+,+\2566d\204\31\vH" #"\247\3\232\217\252\340|\2044\1\342\375" #"\201\227\262G\316\223\267\233\263`\31^" #"t\226r\266 \335\367Y\375\334\355\367" #"\373FU\240\317\31\263\256]\266\303\300*\b\212.0`\277Z;\313E\233\337" #"\221<\310\314\20\224\305lv\"*\302E\212\320ul_\25\25\242\215\fT\34" #"n\17QK\301\365\e7\360c\37\375" #"\b\376\305\277\370\347\370\331\237\3759\374" #"\364O\3774\216\216\216\260\333\355P\26sZ6\233\rNNN0M\23" #"\266\333-\346y\306s\317\375 \376\361?\376\271\0257\nCEfJ\226" ) 500 ( #"\276L\223\365\373]\243\313\306\233\355$" #"v:\343\26a\240\365\326\204\b\244\32" #"\337\250zK\221\305y\226T\254\374C]#\3257Z\265W\3776\24\267\16\212" #"t\263\241b5\a\250xk\222h\20y\337k\345\24gS\257\323\2641\360\350" #"\350_\357\277\31y,\r\361\16J0" #"F\307\361\200\211\b\322\246w\204\270w" #"\357\24\265V\34\37\35#o\246\366\231" #"\310K\246\243\4\260\312\334\270\312M\1" #"x\332\254h\257\222\214F\207\377\257Z" #"Q\227\336\356*:\252\26?\233Q\231" #"\367V}\317\373\216\251\337\365T\2655\312`\302>\362\350\0+.\23G\226," #"2\357\353*\311QoEk\205\304j~\240w\20HI\220\324\0377D\321Q" #"\201\264\300\303\323\237|\305\375\215\312\236" #"k[\252qA\263\214\1\321\305\305\31\336y\347\35\314\363<\360\307(\e1%" #"JN\31\177\316k\251\216\216)\235: t\361p\371n\16\242\243\22\215L\221" #"F\247v}\355\36\f/\227\326\342R" #"\27\207\325\357m\35\275\245\217\332\271f" #"Su\362\326\342}\347<\265\365\247\263\265F\303\3429\0225\4n\275W\21m" #"\212k\6\240\361\230\223x\373\241\242\255" #"\267/jG\34[\301\26\35)\364\373]\323TD\340-\203z\247\6\270\243(" #"2\32\324x\226K1}Eya\20\242\322\215Z\\[\21i\305\261\342\367+" #"\204W\375\25;-\260\225\223\302\263x6)\302\326\204\6O\307T\363\3725~" #"\2379~Bzw2\372Dk\273\230\0E\3613\351g\242rx@qn\257" #"\361>)w\344\f\363\314q\215\342~\307}\215(d\3142\254u\305%\312C" #"\"\307_\255^\4.\213\232-u\\\304:\35\220\27(\311\332rz7\235\b" #"<\304\266h\245\24\v(<\310\247n4\247x" #"\244\333\264\373\223\356\20q\202\\\334\353\265\336\341\32" ) 500 ( #"\230|\370\271\367,\16T\r\351r=4\31736\331\n\212\346e\366\276\331\366" #"'g\30/6M\227\276?\336\37T\261I\336\332\t\201\26\207=\222\363\301S" #"\366\26SZ\207,\4\355\226\335\264\203" #"(\341\274\230\37\342Y\206\232|_\24" #"Z\214\343\256\264\321\260\336\376\245\24\34" #"\36\36\342\312\225+\270s\3476\316\316" #"\316\332\375,K\37N\245\350\3010\375\210\234\263u\b\2312^|\361Es4" #"\305\365_\250\265\210v\215rv\260=" #"\304\361\361\25\327\277\235*6\345\311\317" #"\315\30\200\306\354C\202\330\b\364\30`" #"K\327G\21\360c\360(\311\316\344\262" #"\4\272\317j\357\1G\316\275]\337\262" #",\226\341\314\275\236c<\273\26\304kI\255[P\334\a;\327h\31\217i\232" #"\200\232\232\343kc\310S\267\255\356+" #"\210g\350\f\201\r\331G\325\301V\304" #"s\335\236\201\264'\237rS\253\327:" #"\5\fE\304d\225\337\313\32\227\305\327" #"|\321\202\211=!\327/\336@\353\37\27\224\\\333\244)\265(\333Z\f\1O" #"<\376\30\236y\346i|\354\307\177\34" #"\337\373\336\367\360\275\357~\17o\275\375" #"6j\255\270}\3736\336~\373\273\250" #"\265\340\361\307\37\307G?\372\3438:" #":\n\n\313\4\202\316\237\t\206\371\354" #"\204\357\3710t\310AG\"\246\270B$S\212\365Uc!C\316\331\323@\216" #"\320V\n\24\253\340\245\245\24E\4\316]\a`\250o\336n \n\35454L" #"\246\222\"\302&\3434\232\210\352\362\25" #"\17J\24T\336\273\210\264~\261< Q\201G\24b\375\357\330V\213(\26\200" #"V(\247j\16\277,\376\\\350\374\276\323\323Sh\265\2301Io\\N4B" #"\374\320'\337\367\256D\230\252\4\230" #"\366\244\34\255\273eX\324\332\203\247\350\224[\3739\343\353" #"R\343j0B\26664l\261\267\246]\272\272\242]J" ) 500 ( #"\0374aA\217zq\2337\356\367Cf\21\262\275\330\f\36\336e\243,\206N" #"HNF\215\361\321\315\366^\32\241\324" #"\322\265|\206\370<i\232\300\vD\264" #"p\235\362\346\275\326Z\360\312+\257\340" #"\261\307\36\303\v/\274\320\24\334\203\a" #"\17\240jc\20\257_\277>\254\233\355" #"\3352|\177\v\220\320\213`\326\216q" #"4\300\342\225\376\274\3776\2467\365n'\221\202@g\221\206#\6\302\261/q" #"t$\"zC\271\217J\331\234\244\32" #"\344%\312\207\243\364\201>\20Q\245\265" #"s\260~\21\231Hb\275\245\311\t\217\353\330\316Fp\34\210n9q\30\244}" #"X\341\216#\35N\357\22\373\222\226>" #"k\347.\234{\16\366`\361\254\361\313" #"\274\230\250\216:.\242\32\255CE\255M\326\342^$\214\251b>\17`\267\276" #"8g\256\252!y\224\213\224RC\263\332\272\212gRrnC.(K\274^" #"t\26\243\274iU\3575\\;E,9?1\271\36\226^\315\257\316\225\344!" #"\21\213\252,\315\352S\260R\232<\260" #"\326\26\274\306\375\342\376\256mT\f\356" #"\243#\373\375\3440~g\247e\364\211" #"\237\2224\364\356f\20\6\227\315\f\361" #"\2\17\366F^;\37\203\254z\240\334F>kGk\343\375G'\207|u\356" #"W\224\365a\17\242\303\16\347X\263\3" #"R]|\30\222\351\352\203\203\3w\256" #"\320@\17\366\314\266ir@\305\202Z\275\260*\310U\365\f\31D\332\224>\"" #"\336\20\240.\202<\261\306\302\3666%" #"\364\t\200.X]\206\275\323\212`X\253\341<\253\331\352i\223Q\26@\245Z" #" \260(\252\26\344d\235\2n\336\274" #"\201\357|;\341\342\354\34W\217\257\264" #"\356I\325'\322\211\330\0046\2X\355\32\t88\354=\277G\352\313H" #"\301\340g\356\335\275\213\373gg8>\271\342\1Q/\250#WZ5!\271" ) 500 ( #"\374\220\377\336\250`(-\223\310\321\345" #"\234X\310\357\232\246\311f\5\250\0>" #"\201T\253\266\261\300\361\34\360\325\317\251" #"\311h\236<H\300bt\f\214\324\217Q\216:\200A\207\224\373\24\313\222c " #"OP\202\1q_7\17\326\335\226\363" #"\304\210\353J\205\355\5;\305\324\260\306" #"\222\274\343Q\235ms0\202E:\254" #"S\35\333\240\252\201\0\245*\246\30Y" #"\321\370\361\241\351\344\306/\216\212\256\224" #"\5i\312CZ=\301+*\5\270u\353\26\236z\352)\274\317\a#\0\212\375" #"~n\23?\266\333-\356\336\275\213\203" #"\203\3\377\356\356\f4\245\345$\263\250" #"\260\332C:\n\302\302\26>t\234\314\6\240\rsPU\203\263\253\247\377J4" #"B\251\35\274\224\215\0033\34\0\265\202" #"\v\224\332\372\\J\356k\2264a\257" #"\213\245\372\320Sp\321\310\211\364\341\a" #"\234\313\36Q$\373y\262\356\23\331(\30\352NJt`\351\34\361y;-\240" #"#\34-\225\250\326\317\224\255\213l\322\27\371\247jU\272)c\357]\27RJ" #"8??\307\341\301!\220\373\375\307\357" #"\237\362\324\370\254\265Z\232\1773\261\352" #"\264\3324\254B%;\22\315y\210\342" #"!\211\25\271T\20\265\366\201\v\321@" #"\305\265\354\aS:\2775\263\37\253t" #"\307\303\17+Q6\373\354X\4\24\277" #"\217\327\352\23\363\214\353m\21\272\363\211" #"\5\255%\330\224XL\20\0215\243U\324\2454\216k4bk\243\304\301!\265" #"V\274\372\352\253x\374\361\307\301\fA" #"\316\t\257\276\372*RJ\270y\363&\256]\273\346i\322P\3409\31\242\4\255" #"\303\231\25\227\373y\236\221\262\265\355\212" #"\201\a\327\262\24s$\32\337*\354\271\5]\311\271\336cZ):\21k\205;" #"\30\211l|\354\2079\226\321\2710\231\236Z\21\245\252)" #"*r(+\367\317Q\251<\215Nv\223!?\367\17s" ) 500 ( #"\200E\265uh1\3m\1{|\16k_C<\"9\277u\324KR/;" #"Zm\310\205\22\251Ew\214<0\322" #"j\205\"\346\\\230\334\244\334\207\21D\364(>\e\345\270\235\31!Rb\236E" #"L\2052\270\23\356[\312 \367r\235" #"\202\265E\1\6j\23\207\235\270\203\312" #"\221\357\342\24#\270\36\322\240\227\333\275" #"\27\31<}Rw\34\352\t\317dF{\335s\335\n\207\354\355\4?,\225;" #"\312n\224\e\352\305\207\31\330u\226\354R\220G't\350il2_4T\211" #"\327\334:pP~\1\vz\227:[{4\357\232a\217\327\201\t\6\217]>" #"\273>\310\331&\213u\ai\235\2352\364;\6\262Q\357\2176y\264\325\2\240" #"\212\27\0167Z\225Q\32\f\341\3\266" #"\333-N\357\335k\201\354p6\325\206" #"\215@\306\276\255\325\235\265!C\265,\255\320\rbN\247V+\4\203& y" #"\345\177\313\340%\260W\254\321\21\230\242" #"\326K\372)\356\365f;a)3\222x+J\37\356\221\224\31:\340\370\350\30" #"\0pvvf\362\227,\e\223'f~\321\350)\252\326\356\364\316\235;\6n" #"\310\330!\242\24+n*s\3054m\320\350{\225A\253u\341\331\355v\330L" #"\e\243vN6\210j\236m\264{\362\276\340\5#\267\237\316\264J\3677R\266" #"}[\333{\0-\343\346&n\330\353\265\263\333\200\0\261Lx\343\375B \342" #"`R\b*\242\316\241\177\266,\213MpSm\305\354\344\256\17\300\25:\2402" #"\4Z\356\314F\3566?\327\2367\365V\252\3H#\336\277Z{@\311\337\267" #"\254\32\20X\b\0y\304\361\\L\342e\304\361\300q\201\2320\3>\222\227\e" #"\332Ss\6\235/\303\342Ra\251Z5{+\376\361\366I\333" #"\355\6\34\217yqq\216\203\3\23\210j\r\320\f\31\311\3750," ) 500 ( #"\245o6\257\323\36\254\216\213\34\215e" #"s`\370\\\305\322\35\305\215\310\224{" #":\306\276\267\363\360\330\237\265)\270p" #"\320\30\211\344\324[&i\261\366\e\331" #"\321\206\241\357dP\f\243S\247\355\373" #"\31\371\245\344\243\364r/\360\242\0\360\231\343!a\212,\ngKA\273iI" #"\r\275q'\17\226v 5\225H\335" #"\255'o\341\344\344\4\363\262\340\342\374" #"\242\5\37\334\337\210x\260)\177s\202\204\264\2+\366Y\226\5K-X\3522" #"\b>\17S\365>|L\335\255\235?\242\t\321(\333\365I\212\357irSD" #"\35\31\24t\256\344\200\353\211\365\330\324" #"ft\243\314\366\203\311k\321\351\254\256" #"\304(\17s\261\306\331\303g\35\2351\244L0\245\t)MN}\201\243\313\30" #"\316\24_\266_\311\237\315~v\357\336" #"=\274\366\332k8<<\304\301\301\1" #"\276\363\235\357\340\225W^\301\265k\327" #"\360\302\v/\230\221\253\227\333\226\321aS\2019\211b\\HMp:\312H\215" #"\211Y\206\24d\206\317\36\367\35\260\256" #"$4\216\324\21Q.\210@\255\177\246\252\26(\270\234OD\37\303>\304{\2" #"\324\364\1\24\245.\200\364\366FY\214\353\331>\343_\262vv\223\b$K\243" #"[\360Uk\265\240\254:?\35hra7\343A\216\2471\343\375e\347,R" #"\346#\352\324\236\265*&?s\244\255\344$\260\3411v\306E\340\203Q\2143" #"[\253b)3\f\301\36\221\311u`+~f\226y6g\223\221\365 \352\275" #"\311>u\24\\/%H+\\\342tA\326-\3201'=@U\341\23p\e" #"\275\315\34\320n\350yi\356{\26+\30l\0\204\2I\335.\4\243\326\234\344" #"\254\260<$ij4\200\276\237*\201F0\242\262\0173\264\321\361\270" #"=\336P\0\0 \0IDAT\215\237\371\377\373\34\3679\347\354\31" ) 500 ( #"\35e\322\25\216\264\264@$\32\344\26" #"\340L\271\241\247l\211\b\267\221\20`\332tzZsr| \22\371\216C@" #"\23\366\322LAi4\262X\224\313\367" #"\304\363\323\34\304dv6\273\375M\311\2u\246\245\1\340\344\312\25T/J:" #";?\307f\263\t\327\245c\224\221\5\343\363fk\378\334+\177\17A\226m" #"\313\22\t\262\367Cg\233-i\1M\251\206L\247\f?\v\25\233\315\310!\217" #"\16oJ6\371\315\346-\330\363A\255P\n\260\302\251)g\34\37\37c\273\335" #"\342\336\275{X\n\273E\230\r\341w\261\230\227\353xrr\202\343\343c\\\\" #"\\X\27\202y\356\235\250\24\230\266\31" #"\220\316\5\345\264W\352\203\253W\257:" #"?\37\315\307\231\246\311[\25z\r\320" #"\312\227\2116\335\316\3068\240\"\312\203Vx\217\347N9c\375@D\237{6" #"\21055\26Ts}9%\215`\17\365~\224)\26\vF\233%i\f0;" #"h\227\a\3771\236\305D_\311\317\34" #"uO\224\335\350\177F\320\211~\246z\335O\274V\274g\266\"K\211m=c" #"]\221\2654t\306\261`?\357\233\343\301\e\335l6\235\"\340NR7J\226" #"\364\345M1\245\22\17[\362Tq\233xRz+\255\30\205\346\234}\266\275\365" #"\344k\374\276\332\e\351sAZ\301\27\25\253#\2644\b\3038W\0\331\237\301" #"\234\240\313|-.H\334d\200\323S(P\17\21:\325&\264\321\231\345\220\210" #"\270\351c*\264\272\20)T}\222\a" #"\372\375'\30\217\256\352\b\317\307y\351" #"\353\264\330\32\335\340+\246\204\341\367\300" #"\324!\2476\251\243^\327\256]\303#" #"\217<\202\a\367\357\17\251\203\326\362*" #"\242\37\300C(\25\246D,=\272\264@`\315\223\213\316l<D" #"\21\215\312\231\310\314\210\372\331=X\212pD\201B R\31\214\244\26" ) 500 ( #"\230\230\"!\345\201\351LkIR\312" #"\303\333\345\304\275\266t\267\361\366\222s" #"\220\232\261\2019\3769e\244\354\375J" #"\233\221\220!\355\303\340f\f\334\306\201" #"\16\363<\343\332\265k\370\332\327\276\206" #"\303\303C\344\234\361\371\317\377\t\356\336" #"\275\213\227^z\t\317>\373l0B\216 zT^\25M!\330K:?S" #"Y\261\337\3458\236\201R\n\246\315\324" #"\32\246\257\317\5\243q\322:\264\216\201" #"\361Z\36\a\204\236\347\240V\24\357\263\31\225[\255\354TbN\3314MmZ" #"\343v\353\305;^\301\253\355\234\270a" #"c\220D\345\230\330\346\310\321O\17l" #"\304\213\241\326\310\307\312G\4\323\265\374" #"ED\27J-\315\300\363w\203\23\32" #"d\225\237\251\265\266\352j\353IM\216" #"\235\311\221\272#ez\220\364\22248" #"\274\227\212\27y\316\26\243`p\f\360" #"\332\241[;?\266\337\t\e\357\300b\16\332\204\335n\217i\3524\253v-A" #"kr\237\30\a\270\3X\213s\364\\W&Gl\24@V\243.XE4\240" #"I:\340\200Q\376\233\336R\370\304D\e\230a\317S\373X_\337\257\215\313F" #"t\270\"_\365a\201\363\232\"f\2010\300La\3\vL\241x\341\223\265\32" #"S\277\247\224'\210^\236P\331\234\0\b 6\366\232\355\215,@\20\324\305R" #"\263\342=\220cp\264xv(\16\n\342\263\305\200\23:\301\350uc\6\212\373" #"\275\336;U\353b\2243\307\351Z\320" #"R\\W\261\366\341\370\370\30\327\256_" #"\307\353\257\277>\330d\336\v/\237\34" #"Y[gUc\215\210\255\211\255\206\361\311\vz\261\260\a\\\322u\346f\232L" #"E\25\365Zdiz{\315K\215{m\317\237\240\336~\313\202\264\305A\e\353" #"\240\260\335n!H\370\353o~\23\245.\370\221\17\376" #"=\227\1+t\207\3023\247=\35~pp\0f4" ) 500 ( #"\347y\217\315f\353t\275\356\214F " #"\253\326\336[\277j\247\357\251\366`c" #"q\224\273\24Ev\356\263\331\213\t\344" #"\315\n;\334\370\351\366\320\262!\244\246" #"?2\362\246O\235E\202\25\346Iu`\310t\0\375\253i\312^P\355\301\250" #"\177}\323\267\20\v2\25\303yZ\373E\203\214\a?\207\337E\237+{\306\216" #"\372t]w\364\260\fJ\264{\252\226]\236\334\27\214\0160\237m\215:G\352" #"(\357\257\224N\323\263\3737\377-\345" #"l\306m\273\335\16F\0\252\206\32\270" #"\20,--\341\205\n\236\266\20G\317\0+$\210\243\f\227e1H>\365\224" #"y$p\307\205\2336\233\336<\336'\3504r>F:\3\27\250,\vf\357" #"\355\2678z\314\a_\247\361\342\2\251" #"\32\327\215\212$:\35\26\361\30\4nQ\331\330p<~\0277\2509\4\251;" #"9\245\24\314\363\334\21\355`\204l." #"v\262\"\207jl\231\2\305\316\311\362K-^\t M\1\216\316\263\270\223\26" #"\"\243lSB\304\t\377\5\235\267jJg406\272\323\214I)\5\207\e" #"KS\34l\17\260\333\357\a%\312\347i\373\226\30\21\323p\1V\21o\34\235" #"$\23\210\204[\201\200\35\306\236\362\271\348\304t8\3\214V\331IYR\200" #"#\177\215\213\303&\332#\347\265\337\267" #"\375\3078\276M\254a\225\247KC\202" #"\343s\306W\373\177\267\330\265x\25,L\226I\2311\22>\32R\242j\331\203" #"\36\21k\373\303\347\352\301\301X\futt\204\217|\344#\270s\347\16>\375" #"\351O\343\337\376\333\377\3\247\247\247x" #"\362\311'\361\261\237\374\30\256_\277n" #"\312\321\226\3112\0D\222\340\351%\327" #"\225Z*J\261n#\222R\233\320\25\35X\312\220)&\373\\\f\312" #"RP\352\\\23~\216\347\347a\350\30\337K'T\334)g \330\336" ) 500 ( #"\357h\352\342\374x\244\204\275gq\252\326v\276!\344\34z+\245Z{\243p" #"G\260\213Vs\226\351a\311\230\366\263n\32Qi\333}Z\346\a}\3354\26" #"06\221t\207\337\237_c\233\301\261" #"\315\333\332Yh\2574\312\230zP\313" #"\340\244\365\227\306\230\235\212\16t\226\324" #"\nWRb\237\310\276\336\324\223\21\331" #"kE\234B\244\311\202\0\1\334Hu" #"\275\312\317\210\30\224k\310w\247\\\251" #"\222\2$(\252\336AS\255\0U\34\365\251\3548`#\222\r\3640\307e\370" #"\36\325\346(\264=s\364\267M\210\22" #"x\252\325\n@\253\367j\345\272\306\214S4\324\321\221^\313o)\5u\251\36" #"d^n\313\247jg\31\331\220F\243Fyo\354\20P\304\363Q\212Q\270\254" #"\330'7\233H\273\220S\366IS=0\2<\363\240\275\310\216\367_Ji\303" #"K\30\250S\236\210\330\231\314tN}\324)vV\2466\370C\220\314\321\6\1" #"\201\313\275\330\215\a:\366\30\267\3564\246G,\373a@\t\351\6Q\236M'" #"t]\2545\265s\246\225\355\327\200>\"\330\202$\242\237\366^\e\b\20)*" #"1\303l\373SQ\225\235M\374\340:w\25b\347\374\350\350\b\333\203-NO" #"Oqz\372`8\217\335\26\353\260\226" #"9g\243\37l\302\360\207\0\4\330\347\305{\330v\335r\355\372u\\9:\302" #"~\267s0p1;\30}\26?\17\325\231\371L2\255\301\2:\373\"\342\375" #"r\335\17\252\5\244\371X\262\300(%\\\376\212\245\5\3159\3s\331{\0\325" #"\3176\327\3162a\2\255\2\3651\327" #"\233@\253\211\316,\357m\35\230\362\25" #"\271\356\222\22J\360\307\264\351/~\217" #"e\264\342\250b\256\273Hw\365\333\aV\3532\0/\nl\16\266" #"\200\20\265&x\226V\266\311\316\371$\311\252\4\227\2624\301e\243{" ) 500 ( #"xzYKm\323|\240\3328\32\255\27\36\252\367\3434\36\253\226:\334d\347" #"\360\3323D%\314\e_\226\305&3" #"\321\343g\252\235F\244\366\202\0376\271" #"\227D\24b\334\214qA.\363\2\251D \227\21EF\224\26=\233SD\22" #"~D\21\326\210T\273VpvY\320\23\5\210\337S\346\331\235\178\257gi" #"U\375\200B\27G^sj\367\244j\351\317\245v\347\231\5\2036^\323\r\251" #"\v\r\345\261M\267+V\321L\5\307" #"\226K\223$\234\356\3170\357\366\0\24" #"\273\335\316\5\247\v{,\16d\377\323" #"\236\270\354S\300H\221\0u\32z\341\3 \316_b\201\207\245\355{K\231\212" #"\234\245\241\257\335I\21\347FUG\30\35003U\223\207=\27\300'\3640\371" #"\250\255\367%|\204g\316\335\350p_\306\275\f\6\316H)\r\5\a\215\200\4" #"\207\r\332\n\"S\22\24\300\224G\270/:\372\246\\\3l\210Q!=\361\304" #"\23\370\344'?\211\327^{\r\257\276" #"\372\35LS\306\217\374\310\aq\353\361" #"[\255\212\270\311\240\330T\250\344\214\322" #"\nE\246qH\336\373P\211\246\214Y\24\276\212\27e\330>\347\206\352F\4." #"\6\300,\266Y\a\t\321\311\213F\302" #"\366\306h\37\352\35\f\270\336\332*\214" #"s[\e\251\251M C\370\236\210\36" #"\255Q\207\1AI\235\17\306\373\257\356" #"\30\e\347\253\242,=\263D}\263F\253x\6\370{\223\t/V, \360\322" #"\366-~>:\\\334{\273\305\316\5" #"\225,\215\317\253\350\334z\4\343\336\327" #"O\2333L\207\246\242Z\0276\327\311" #"k\16\334:('\3027\327\305\327\225\216mLw\216z\312&q\215\31/\"" #"\344\334W\210SD\320u`q\26?\333\237\305aA\17\323\317<\233" #"\245:\252.=\353S\264`Bn|s\3238\342\240KD\377\262\315\306" ) 500 ( #"Q\26\215\365\300n\334\213\352\372\305P" #"\275\350\360-\265\243\363\271u[`Q" #"\346Xy\257\252\255\255d\2362\212\a" #"\272\313\352|p\337X\313\241\255Y\265" #"\270}1\307\203b\327\234<\2409\244" #"\353\254\te\223\343N\273M\255\355\371" #"R\262~\272&u\366|\245\32\2375" #"\213\325\200\\\271r\245\335\347\331\331\31" #"\216\217\217\203\223\313BAm\372\230\34" #"t\6N\fB\242\334t\275L\264\325" #"\202\356\274I\250\v I\215\306\200\207" #"\27#\247\311\326#:\231k}\223\323" #"\4\216\203\267\365q`\252\32\17\367\372" #"\215\e\330\355\367X\312\36\373e\337\236" #"\251\267V\4\246\274m\376\tQ\300\253" #"W\257\342\235w\337\206\5\377\227'\274\225Z\254F\305\v%\227eAY\26\334" #"\277\177\212\363\363\363Foa\300\301}" #"\204\357\245\324\n\210!\352S\262a\v" #"\321\356\324\3525.P@\234\357\216d\231\f\314\20\203r[\261'e\243q\234" #"3\260\237\347\246\317\327{\242!\2307" #"[\331\235C\2\22\355~\303\276\330w" #"\230\256\2366\356\200/=\303\321li" #"\352\264\16\377\220\235e%\3000\266@" #"\34\300\4\337k\255\221\26\344^\204\366" #"\340\226\31Y\353\357\353\31\213jm\346R\352t\220\36\304\0\3232[\212^ " #"\326\334>\244F\30ar!\3151\32\17p\202\315\37F2t\242\e\365\313\351" #"%\32\266\30\271\306\350\2017\327\20\234" #"R\335\305\350\207\n\360b*G\31z" #"\301P\177\300\230\362\240\20\321hG\344" #"\"\207\347\354\n\f\356\b\345\26X\254" #"\215Gw\300\234fA%\243\332\212\226" #"\342\373\371\342\347\22[W\271\220\231\21\320vm:k#\4\17\230/[\240\234" #"S\357\251\350\216d\31g\217N\335~" #"\266\336\206\265\2246qF\225\334\274\f$m\323\206\16\17\17" #"q\343\306\r\274\376\372k\336\217\270w\\\210\317c\302\246m\374" ) 500 ( #"hfe\266\3208\231\222\245`\347iB]\252\31\202RB\4K\nJ\247$" #"\344\354i?a\344\231\207\264\5\320\25" #"pDa\326\16\226\252B\254\220\30\"j\215\346+\35\36m\207m\355,\321h" #"\265\1\5b\306\325\304\217\16\255+\340\332\221\rvop\326\28\235\253:\n" #"\264V\30\ff\370Z;V9g\234\234\234\340\207\177\370\207\361\301\17~\20," #"t\330\317\373&\177K\35\3(s\na\243\273U\201j\315\262\311\eW\357\305" #"\311\344\22\257\23\317\5V\216\221\252\277" #"\333\35)\3330?\343AQEe\32\235\206x\235RK\b\226zA\25\373\273" #"V\3552\302\265\244\342\213\201%\3178\2571\205\211\\QiF\231X\a\326\n" #"\264\311g\374Y\251\326\235e\275O\324" #"\179\373\4\240\3408E\335\20\317y\224I\300\221\342\4\210zPVj+\212" #"\341\244\266\26\200O\223\25\365\240\277\254" #"\27\251\az\252H\0\324\2634\23\367" #"/\324+<\354\331\373\2779\371\213\350" #"$\317\215\340a\257\30\200\331\231\260B" #"V\1Z[\263\1\321f\320 \275\340\326\372\232w\nTG\227.;\3649;" #"\332\24\326\260\265v\f\316*\35\224\304~\277\311\356+mz\3139^/~\246" #";\330\2459\231k@d@\341]\337" #" \21\360\230P\303\331\263V\233\245\217" #"\336]\331\264x]\250\59p\346\4\373\254\213L\310\f\336\0013\326\264y\f" #"\370\253u\212a\27\235\241(\17\n\305" #"b\201Sa\341\236z\206\240\357c\353" #"Y\255\200$\301\301\346\0\237\377\374\347qz\357\36\252*.v\278>:n" #"\347\263\r@0w\337\20|\355\375\240Y\314U\265\240zae\17$\310\217\a" #"&d\324T\240\326$\32@\205Jq\276\251=\265\300\n\362\n\n" #"\0226@\240iD\324\\\204\3723\201\331=\365\0\222k\275,\v\16" ) 500 ( #"\16\16ppp\200\375\351\5\36\334\177\200\234s\353\331j\1/\351l\2060R" #"\276\227ev\236\262#\321k\271\250\266" #"o\326\271\301|\233\343\343cL\233\215" #"\321[\204\200O\r\266.\265\242.T" #"\263\325\4\201\242/\301s\306W\316\326" #"\347\337\236\316\300\fe\27\30t\21603\223f\226J\373=\357;\6Bv\317" #"\t\272tPH]\277\247 \253k\377" #"L\204\366\315\213\371U\275\376`\34\256" #"\343\27\30628\254\356\303\301\273\315x" #"\27\233\335n7t\3\342yU\327q\266\37\332|\4\312$ \250u\351CY" #"\32xE>;\377\20D-H\252\326\252\203\17\275\246\b\254#}\373\340\322\"" #"\31P\240%\241Tw\366\202\223K!\215\ehhQ\32\376\237\e\36\21PB" #"\334I\245\365M3\336\247BuDJ" #"h\264\31\235u\241\351\351\273\270y\353" #"\264M\27\204\210\34\231\222#-b\330" #"\210\324{ \346\224\6\344.\n\331\32" #"\25\263{.^$\326\341\372\236\3167" #"\374\220\327j\210\243x5\262\b\324\333" #"\34e\6 <\214\350\306\234B\301\3736\4\3238w\t\2hE]\306t\30" #"\t\374\337\373\356\333\306\247^\226\346\274" #"\362\31\314\277\355\\\252eYP\v\213" #">l_\5p\307\310\225\344d\317\276\331\364Ve\246\f,\365b\337e\221\227" #"\215\233\216<\336u\253\245.\227|q" #"\215\372\263\262\2172\25\211\27\2050\20\v2G\214j\214b]\266<+\226\b" #"\217W\0~\200\231i\210)\30\343-\323\261,\210H|4\324\353\364g+\16" #"R\35\234\317R\26\354v\306\27\243s" #"nr\333\371\341\314\334\331\312X\240\225" #"\3052\5\215&\220\222\243\207#w\274\357\5{\27wyc\260\231|\255\264\326" #"f$[j:8\24\203\303\34\376\246\334\263\310\205/" #"\236\23\236\325$\2]|\0Iv\307\a\275=]4" ) 500 ( #"8\321I\217\375z)\23\321\321\213Nr\17\212\335\271\16\347%\"f\274^\f" #"\324\371\214m\275<\313\264F\260\243\303" #"\315\367\317\265\f\310t\2056}4\2547\320\262.\261_x\233\240&^\314\302" #"\363\345\373A\35\\\203\21ef)\366A\6B\355\201\353\300i\332 \245<\334" #"G\324\213\374\233}\235\375\360\264@\204" #"\353\305\227\362Z\342\225\336\270\334\353\233" #"\237\23\t\375\207\243\376\24\"4\276\246" #"\212\246\313\242\36n:\217\262\226\223\323" #"\347b@y\319\352v\243\357\367:`i\373\350\372\t\200\217\366e*\226\205" #"{6\336u-\373\321\351\212\367j5" #"\31\200\252\370\332{\201c\222\326\207v" #")\305{\275\233fb\341$\307\256\322" #"V\304\266\213\2650\230\315M\277\366!" #"1\360{U\17\"\373\263\316\363\314\304" #"\4\266\333m\343\373\243\351\251\245\177\227" #"\a\374\tb\305y\245\240,\306\237\317" #"\256\213\340\262G\335d\355\254\212\353\336" #"\324\6?$L\326i\242\b\240\23\300\1\03555\31\6\272\3356g*\332\352" #"\256C\327\201)\320\203\303R+\336x\343\215Q\236\205\200V\223\b\324Zq~" #"~\216\a\347\3671M\e\34\36\34\200" #"\303\25j\\\347Z=\200\353\331\211i" #"\232\260\235&\334\273s\333&\"\326\356" #"\234\361\354\222+\r_\227$\322:-" #"\360F\32\277\334\237\255\26x\346\3173" #"8\5\r\310\342\371\255.\eP\223\1f\230\326\231\344x\26\314f\27\17\274," #"0\255\301\6\255\355S\223i5\335e\366\255B\23PE[V\241\237-\327!" #"b\324E\213g\348Tm-]Y" #"\360N\273\326\320\327\251\367\253\347\367\321" #"\337\262\177\vr\336X\6\311\3|v\3030\275Q\240:\243\326\3318\3519!" #"\245)a\277\233a\343\360\212\267\35\331\0177\34\37>" #"\222\301\213+\372\2342\22\304\212\34\226\221\24\337\26\257\t" ) 500 ( #"\312\0301Do>\32\212\210\22QH#\22 \322QA:9\3r\213\212\224" #"\201R\27(:\257\224\207\233\377\36\271" #"\241X\335\313\b\377S\30\327?\3433\22\5\215\277c\277\303\370\2549g,u" #"\1\321\325uD\3\31\213\267h\234\255\212Y\275\302\27MA\265\2428t\347X" #"\325':\371:E\305@EO\247\214{qpp\200\375n\217{\367N\255X" #"%\231r3\347\323\243%OG\326j\304qV\353\253\e\200\306\321\363=\232\347" #"\331\25v\357\240\21\243oCG\272\201 g\217M\255\343\357\30\320P\3514\n" #"F@\257L\276,\342\237\234k%\n\240XCt\362US\352\23\277h\234Y" #"$e\327\v<\300b\212\336\364\315(\227|\251\232\21s\235\4|\237t#\357" #";\"\25Q\211\32\237\272\2439\352\323\243:}\306\a\252\220o\a{_\342\241" #"w\247\205\312G\335i\252ji\314\30" #"\204R.-\2026\207\202\350\303\224\254" #"\353\200\300\202Lq\3mJ\326\202\231\234\263G\325\221?7>k\274F\2245" #"\223\355\216\226\322\211\322Z\241\213\237y" #"\31\333%\255\213:Yd\332\316\243\216" #"\\\276\341L\205u\206\313\261\302\0343" #"\320F\273#\26\203\375\250\247\312\274\264" #"A!\326o\31\275\30.8\376T\332\265z\372>\233a\215\367\34\357/f(" #"\354\271=\320\243\271\317\322z\320V\261" #"sP\241\336\332\267zF%\364\351\256\25\352\324\30\241Qoha\6\273s\254" #"u\22\215v\324\301\315\361\367\300\311\226" #"O\373\331\t\262\324\f\254\364\301>\234\"\267Fn\251\253\264X\352%A,\e" #"Q\310\357\324V<\370\375t6\215/{\301\e\255wtn\343s\360\3471@" #"\245\216\215\3479~\326\326\266\353" #"o\306\27\0\201\221\4\251\271\331\247\346\234\243O\334" #"\353\305\250tL\4$\2043U[\227\5\233\255\5" ) 500 ( #"\371\331\f\227\371D\254y\201`^\26o\270\257H\0316\f\302I\",,^" #"\333\316\301\t\4Z\357g\236\245\343c" #"k\303U\226\202\357\275\363\216\351`\26" #"\323%\257\3L\35\b \352g\201\246@\244B\234\272\6R\\\320\357\333\374\n" #"\26\2171p\210\205Ip\316k\320\177" #"\265\257\271\252e\307\362\4H\32\273VP'\254\367\214\1\34\373\r\37;=#" #"\202\f~\334\333\237\355f\302~w\201$\31S\236\260q`(\312\210*\220\323" #"\246\321\26x\306\217\217\16\261=8\300" #"\275{\367\300\221\273\344\35\227j\265M" #"\224\261R\212;\262b\34Y\267)\r0I\261\206\243s\222\265\26L\271gk" #"y>(\243\25\245u\260h\372\252\364\316A\261O\266\0006-U\265O\351\343" #"\347\264S2\243\216J)5\307\2342" #"\235\335\37\221`\317\326\1\177\316\t\250" #"f\251j5]\309\264\311\251Q\265Z\300\230\222#\374\356\350rB\237\2535" #"\327i\266\276\326\1\250\203\257@\327_" #"\6\f\321O\364\376\22i\352F\313\252" #"\375\363 8|\350\250\214\315\213\236\214" #"\273\346\213\n\21l\266\233\346\374D\241" #"\314\311\372\330u\364\245\303\372\321P\f\316j0\232cqW4^=}V*" #"\253 k{\17[p\361\275D:\343\304\257\30\301\360\331Z\1\03675\2409" #"\21a\212\a\1@\373^`\234\22\24\3714\245\24+@\360\233b\365\262(+" #":\373\201\265kh\237q\315\326=y\362\224Qh\241\203^T\340*\333\223N" #"\352\2\314\275K\255\0&\256\373\225\343" #"c\240\250\365\375\203\323R\324\n\21(t\3069RL)c\231\215\327m-\237" #"\24\250\235\357$\316g\265\2\f\213\374" #"\30\351\363O3~\22\321\227\313me\0\"\177uH\2230\340Q\355" #"|>R\34\230\326\22G7\221\307\364e\365\1\"\312 [\255\245U" ) 500 ( #"4\374\\\333\301\231\n\362\317\277cT^\265\eT\2463\243Sk\a\266g\5" #"\330\272/\312P)\361\336\330\324[\334I\311\376\367d\251p\21,uA\361@" #"\310\360\223\322\232eC.\aB\b\16\n\225k<\337\331\317\256\226Pp%\342" #"2[\335\351\342\20\227\210\277\\\356\300" #"08Kam\354\214\365\f\207\335\207\264\1\5\fz\0/\344\311\371RW\27" #"\242\2754\230\"c \272vp\342\271\4<&q\240\236\361IYM\2\244." #"h\301\273;\303\f4\230\35x\230\\" #"\0\30\332\266\265\246\375\301\1\353\250\e" #"e\231:\323\215\25\321\35\337O\201\214" #"\275\\\371}B\336\244X\201\230\330\256\230\256\1R`\251/3[\1v\3757" #"\240\262\321\321#\320\301\26l\301\1\215A\323%}\30\364\"QM\0327T\256" #"8Z=HD\217Z\r\206\b\3522\26\f_\n\232`F\214\372\257e\265B" #"\v\255\370\34\321\t\\\237\347(/\321" #"v\365kY\267\0\210\267b\223\305\300!O7\266\373\257\275^b\fj\2449" #"\271K)vf\231a\241\234\1mzT\a\231\254\305\36|z\221\250\365\203'" #"2\230\374\337\342\367\230\233\335\350\362\253" #"Pl\362\204\2337n\340\350\350\310\322" #"\355\323\204\335n\327\0\2\233n\2251" #"\345\r\352\342\316T\242\374\216(9\353" #"\rH\361\253\2747A\a\226\222\313\253" #"\363\206\247\215\2352\255\22\366\\}D" #"\2606\n\1\345M\262M?\324T\254\230\255\364\375\342+\6f\224\177U\305\\" #"f\354\347=\266\a[<\372\350\243\275\320]\31P\3\326\266\260\300:\27XJ" #"}\2233\366\273]\353\341\276\335n\303" #"\36\322\221O\rm\314\301\336^\\\\\200\301\vm\254Qq:\2376\332>\223" #"\210\356#,\313\2\321\212I\330b\254\2\245\332" #"`\214\322}\217\1e\246\377\265X\267\26\3134\331" ) 500 ( #"\367\22\371\26\351\231\24f\242\340|f" #"\300\372\224G\371\35\326\23]\337\32]EzW\4\317P\304\266w|?}/" #"\276\252S\v\0\377\36\261\365g\353\310" #"\252\213\353\360\354\317W\272\216h\376\231" #"\375\254\5\1779\241\326\245=#\263\2361\3404\177\253b\342\1\\\26C@s" #"6\272\300\371\371\231wb\30?\314\5\333\357;\357J$;\212PQ\vZ*" #"\177\2423+\311[dt#\363\260\"-\376mNfA\254\210\355\0162\215\212" #"\243^)\360\220\\a\324\306C\263E\2611|\375Z<T\344\216E\16\0317" #"\230?\217\233\36Q\233\246\374\334\341\217" #"\306\220\312%:\267t\230\206T+\221" #"\226\342h\205\301J\355\240\230\323\230Q" #"\212\31)\25\247\e\210Um*\333\325\4\207u-\260\2032\207t\303\250t\16" #"\354=\27\27\27x\347\235w1M\23" #"\316\37\234#\347d$\376\242\220\355\4" #"\363\217F\304,*\361M\262y\336U\325(\17\216\356smX\214\250\350H^" #";H\316\335\221\304\357t4\32#\332" #"9\320\4\232\321\22\244\344\21a\352\207[5\214\0u^\2346.\223?;\310" #"3\357hD\234\b\26\3\260\270\276ky\5\2004M\250\245\367\224\26\364\0," #":61M\312u\214\a\263\35P8" #"\247\16\256\24\302\365\354\373\255\30\311\34" #"\2\e3)\t\220R\221d\262\350\333{\272\22\311\355\\G\264\264{+\377\r" #"rN\347\255\270#19\345\204\210\256E\377D\234\373\376|\277s\0\210u\3" #"Y\212q(\235\222\302`\204\207\263," #"\325\212\211\244\357\267U9\303-S\177\365=\360_%:\30\352\6\267;Z\321" #"i\340gSJ\235W\251#\352KG\233{\24\35\331\250\320\1\f\372i}\376" #"\0\236Q/\230\252!\355\16Cs\210\324\367\373" #"\342\331(\350\355\306\372+\32\223\350\264\345\311:\256" ) 500 ( #"(\221@H+h\225M\310\264Y\34hF.\215\216\337:[U\253u\22\260" #"\331\365\335)\0231\16^\236r\243-" #"\305s\31\3\373\350\374\251\252\r\v\362" #"L\223\270l\323pG\276^<\0371\363\21e\v0Y\311)A\252\351\374E" #"\315\21d\276+\"P\2272g\30i.\21\330\211@\b\3170\v\221,0W" #"\224\342S\337\274e\\4\302\f2\bl0\0\207X\257\327\230\215J\311:\"" #"\364\314\206\270]\261\"\345\243\243\203\366" #"\335\245x\e,o\230\257\252@\22\343uK\302\273wn\343\342\374\34\27\273]" #"\273\377\247\236z\n'\307W\360\312+" #"\257\340?\376\307\377\210eY\360\330c" #"\217\341\303\37\3760\376\372\257\377\32\363" #"<\343\350\370\30\257\275\372\32\36\177\354" #"q\\\275v\202\315v\213\245\354}\31\37\226\245\351\316.CE:\267Z/;" #"J\366\254\332hv9g,\263s.\265w\232h\205aN\255\23\21h\351\355" #"\366\210\322E``}\235E\25\a\333-r\266.\0007o\334\0\301\b\263\a" #"\31\3732Ck\261\32\26\236GU\e" #"\23\f\305\203\263\a\330\3173>\373\307" #"\237\305\313/\277\214\303\303#\3nd\3626\203[\34n\2678>>\306\371\371" #"\31D\4\247\247\247\230\347\31\207\207\207" #"\0\324\21H\233\21`\316}\367\245b\206\"\271\f\231\316U$T\247\301yW" #"\237$\20\331\272\243\327\35O\372-\246" #"\263H\345\232\255\300m\"W\330\2720" #"D\233\325\354\253\210\265>\233\227\221Z" #"\341/\256\257\351~\205\24\351T\207\352" #"Y\300j\35\263\326\3230y\206\0\300\22H^\204)\275.\307\3443!%\300" #"qR\233n7e\343oW\353\342\261\266\217\213\17?\2\314\231fQ\"\3203" #"S\254i\340sLI\2343\344#\345 >\377z" #"\263\205jG\203\2406\0\342\301\375\373\370\302\27\376" ) 500 ( #"\24?\373\263?\e\24\231+\b\177P\216s[/XD\n\342\317\351<\265\367" #"\241\217\266\213\2\34\27\222/\22\235G\a\314x\254\311\b\206P\37+:M$" #"\\\367\315\240\340Q!E\207\244W\363v\256Z<`Qi\256\r]D\347\370" #"\231\301\230\6\3030\245^\250\21#g\36\354\234\23fo\324?m\266\200w\r" #"pJ\216G\364\26\331U\27\0366\303" #"\216\206\236\210j\177\266\261\232u7\357" #" 9\341\370\312\225\326\222&O\311\327" #"\327\4\213\310i\277?\216~\364\302\241d\216\25JGf\373:Q\211\31\25\203" #"\243~\331\207\323\16CEl\373\25\235L:\346L\377v\341\357\337o\"\2230" #"Ma\214\263*\240\206t\231\274;\272" #"\355\2167\235l\361u\344Y\217\231\5" #"\32\245\316\23\352J \373\234w\276\27" #"\300CS\372\303\236\207\"\312\30<%\313\335\264\2\2775\362\324\236;uc/" #"0g\257U\3447\aY\200\234 m\217\324\246\1JB\5G\\\253\a?\335" #"\236U:\v\332#\366Z\373\231\0265" #"=\301\27\237\213\212\215\353\323\236]\372" #"\0243\251\226l\235\320S\255|Y\261\234q\317sMX\340-\214\34\361\2550" #"\304\2519\255\276\1779\251\27@\271," #";\6\325\246A\205\365\343\231L\342#" #"\215K\305\224\22*\35\252\340\20E\207" #"\212gf\355\30\305=\2172\271\326\3,\22)q?k\205\256\2348\20\305G" #"n\316i\251\34\301l\215\367\3510\213X\32:KB\252=\345\a\240\361\310E" #"\f\0255^\262\327\5T\355\305x\301\231[;\254\245\24lRn\347\321\354\202" #"\e\220j\250[-^\330\3\37\210\341\b\271\306\263 \26\264M\201\32D'\215" #"cp\333z\326Q\266\343:\322\270G=\\\253\245\375\221\22f\37" #"\221\252\211<\314Q\217\304\300\305x\226\275ud\37uo\315\362\257]" ) 500 ( #";1n\177\355\323\236\316\317\317\261\224" #"\305\277[\220\23\274\177v\306f\263\301" #"\331\203\a\330\36\34\340\350\350\b\313<7}C\35\e\263~1\325\273,\vv" #"\347\347\270\177\372\0o\275\375\26\216\216" #"\216\220R\302\375\373\367\261\331l\361\325" #"\257~\r\273\3359\216\216\216PJ\301" #"\375\373\367\361\372\353\257\267\256\t\313\262" #"`\236gs\362\346\31{G\320\267\333-...\214\257\352\317p\375\372u\244" #"\224\3607\177\3637\370\332\327\276\206k" #"\327\256\271\223S\360\331\317\3751~\367" #"3\277\213g\236\371\1\374\263\177\366\t" #"<\371\344\223\266\276\276e\31\17\17\376" #"\251\267\31XD\247\304\202\20x6)!'\3656T\221R\322\2350s\\F" #"\377\201\334\350Z\27X\247\36\31d\226" #"\327\213\300A)\5\363~\301\274_\360\322K/\241\314\245\r\255(jC)T" #"\23\315m\273\227ZM\227\374\353\177\375?\201\350\354G?\362c\206b\26`{" #"d\373{zz\212\377\360\273\277\213\257~\365k8;;\305\225+Wpzz" #"\37\357\276\373.n\335z2\310o\206T eiv\356r`h-\303$\5" #"\32\227#\247S\332\204\240t\202j\247" #"'00d\226\325\262u\326\313\331\364Fw\370R2\277n\n\375\220\5\t\273" #"\375\16S\336\2643\372\377\321\365v\315" #"\222\35\327\225\330\332\231y\252n\335{" #"\373\273\1\202\0\277\301\17\211\2425r" #"h\24\236\30\321\32\233\17\226\202\234\240" #"\36<\21\n\353Q\17\343\361\233~\202" #"\377\201~\303\330\21\343W\313#{\24\34K1\262F&_dj,\215<\204" #"H\n$$\210 \32\rt\337\317\252s2\323\17{\257\235\373T\267*\2h" #"\340\366\255\252s\362d\356\217\265\327" #"^\233\316t\234\335\204\224\331S\220\rx\350\220\246\375" #"B\361~xVc\365[m\247&\3370\233\335P\221%" ) 500 ( #"[eD\315sN\331\355c]\252\305\35\332\314\16X\325\306\376]&\35\254\261" #",k\325$\236%\365%\331\367'\0\24\36~t%\370\36\346\3.\257\256\274" #"kQy&\r)k&\363\357\376\257?\302;?\372\e|\343\e\337\30SC" #"D\274{\230\206#F\370\221\227\26\3\37n\350\370'3\216NNGX\310\227" #"e\336q\223\362fk\25H_\264\274o\247T3G-\363\212\225\201\343\303\211" #"\16j\265xx\271\274\t\277\367\370=" #"\361\20\372\373\3025\276,h\216\367\24" #"\221\rRH\16\207\305\313;\35F\376" #"\266\362\0360\232\f\222\5W\21M\246" #"\303\312i\f\351\340\206\210O\360\r\375" #"\0\0 \0IDAT\206\277\367\216\353\253k4t\234\236\237\301*\373\226\321" #"\323\220\255\2251\306F^\6\247G\202\276\256\241*H6\220 gG3\2108" #"B\210N\215\204\201\250\26\277/^7\237\373z?p\312\215\362tD\326\rj" #"4\4\361\271\350\3411\3Kqw\1\26\373^\232\331\341$\325\220\307\246\35G" #"{\274\244\205U\203A\5LyAQ\345\350\360\342\372iY\236\362{\32\2103" #"\20\210%'^\17\277\337\221\"\321LYu}G\300\200D*\215\21\374\351S" #"\302Y\211k\4\330g\330\315[1LW\352\5\247\246\311B\224\336[\237G\245" #"\275\34'\205\374YO\343\371\213X\245\2416t\310\30Z\321X\1H\26\320\251" #"\361O\326\37\240\343\301\331}/V2M\203\333K\332\n\357\323\232@SJ\256" #"\366P\n%\316^<\3331\340\215\n(\361\25\221\222\0304E\344\336\215m*" #"\212\264\266\361\f9\323\276\267\246\n\37" #"\206t\326\272 O\272'P\273\335\213:\341\234\2625\271P\0222\252AX\362" #"\177\224$z\342\335\232'RY\24\351E\22[SR\v\f\5\225\301\345=\16&R)" ) 500 ( #"H\2l\312\4$\3012\317\230r\301\322U\351\205\22IL\312\352R\225\373\t" #"\345\a\316\313\202,\353a?\212fbu\335/\373'^\17\354\363R\312\330l" #"&\234lOp\275\277q\272\331\315\315\rnoo\261\331l<P\347 \244\234" #"6\220\224qq\361\34WWW\370\340" #"\203'\370\360\303\247x\367\335\277\303\305" #"\305\25r\26\34\0163~\374\343\37\243" #"Vk\300\256M\21U\210R\267\254\n\305@\362v>\340\316\3719$%\354\367" #"{\277\326;w\356\240\326\212\233\233\e" #"\337\e\233\315\306\273\327\257o\257\201\336" #"\2615\200\211\327Jt\212A~k:" #"\344\201\237K\24\221\nD\373\375\36\247\347gn\333\266\333\rj]prr\202" #"\363\363s\257(\226R\fy\4\356\335" #"\273\207\237\376\364\2478??\307\275{" #"\367\360\354\331s|\347;\337\301\257\377" #"\372\257\257\316\305\241\316\256\267\272\252\260" #"AA\4\335|\n\250$\311HIe/5\351\241\342\307\344\t\34\355\6_z" #".\373\n`\360\204\2467\3\257\6H\305J@\4\\x\275'''x\375\365" #"\327\361\350\321\3\334\275{\17\207\375\301" #"*?F\241\252:\230\244\333\275\354\367" #"{<x\360\0\323\264\301\365\365\25^" #"y\345\25\274\362\312+\370\325_\375U" #"\334\177\360\0\2555<{\366\21\376\277" #"\357~\27\337\377\376\367\361\376\373\357\343" #"\366\366\26\3234\341\321\243\307X\226\3" #"6\233\t\337\375\356\237\341\353_\377\272" #"\337\27\207)\200\r\260!\20\344=\323" #"\a\264\246*\3\264W\"\252J\323\365\340b*J\257\2236\200\22o\310\315\26" #"\4\226\244\250t\327\0\e\326\2334\37" #"f\365\221\b4\236$\330l&\264\272\356\225X\307YZUn\322!\271\3F" #"K\311)Yu(\275`\27k\255(\223\240\317\6ZNf\353L\3[o<4Uv\0I0\327\212Mq" ) 500 ( #"\222\201\332\206\3265y\25A[\16.3\312J'\375Q\f\266\351\323b<V" #"\306\5v,\313\36\357\275\367>\376\345" #"\377\364/\361\311O~\n\277\371\233\377" #"\235\32<(\a\347\203'\37\340/\376" #"\337?\307\227\277\374s8==\305\345" #"\345\245\21\351\255\371\245\217/s\215\335" #"`\220xS\245\250\324G\354\210\216%.:\v\"6\245\350\264\223\b\375{\0" #"wD\251h\275\243\3153$e\264\246\323vfC\243\224\177L\243\332\334!\254" #"\16.t\212\315J\271\241\253~\36B\220\36\0274n\324\361\36\226I\324\tH" #"Z\a\372\307Af\334(\321\230k0\241e\344\\2\352\242SU\310{\352]" #"\233\323Zo\220f\345\354\224F\351\315\220J6!\360=\21M\27\21\314mq" #"\343z\367\336]\37J\260HCZ\264" #"<\306\373\215\317\213{\3478\243\343\275" #"\352\265W\355\332\266\314\36\275\373\260\5" #"}\206\344\17\vF\0\265\246\211(-\201\331/\245D\230u\2\354\fV\304y" #"$[%k\31\237\332\232>\351\17\212\2726\1R\e(T)E\r\261\5W" #"q\255F\302\313\373\215\331o\aL\307S\233wdU\n\3229\347\353\321\235|" #"\221w\316\347\301C\334\217\20\317\227%b\2555ov\352\2t\233\234#S\202" #"\364\0064\301b\362?,\25;\214\1R\bF\0\23\35[\366\6\0276\226\b" #"F\203\204\336s3\347\343\1\263!\275" #"\325\320\330X1\211\337\321\216P\373V" #"\325A\362\325\302\231h\206\362\2\243Q" #"K\233_\306\304\273\4(\302\300u\22\321\216`\215\2445`HZv\356m " #"\27l\232\212\373\225\353\32\221MR\233\\\267:\374n\\3\"'\307\347k\354" #"\223\220\344Jv^x\242\346T\263\n\203\210\351D\nJ.(9" #"\343`\210\214$m\"\212\310\227\bm\312:\300e\342L;yss" ) 500 ( #"\263\322\313L\333\264Z\223\22\20 \6N\265V\\]]9hqss\243(" #"\344~\217\353\353\353U`\317\340#\216" #"P\335X\211\367\341\203\a\310\333\t\273" #"\315\2117\344\226T<\371;==\305" #"\224\262\16\0172\347E\373\32\23\304\217>\372\bO\237>E\255\25ggg\0" #"\200\237\374\344\247x\362\344\247\370\301\17" #"\177\210'\37<\301\315\315\215\av\227" #"\227\227\6\332\250F\370\311\311\311\312\346" #"\346\234\214*\227\261\335n\220\323\320\330" #"f9x\2639\361\246\334\375~\257\323\244\304\252\e\0n\17{l7[\344\224" #"quum\t\\\302v\263\303\322f<{\366\314\203\313\333\333[\357\1Qy" #"J\301\246\24L\233-\4\35\275\1\273\335\16D`\357\337\277\217Z+\36>|" #"\210\217\177\374\343\0t\350P\364Q\333" #"\355\26w\357\336\305\371\3719\356\336\273" #"\213\223\355\211\3Q\317\237?\307\363\347" #"\317\361\255o}\vo\275\365\26v\273\235?\243\315f\203R\n\316\317\316pq" #"}\345{\371\227~\351\227V\211\5$H\331\271\335\35g&\245\204y\251\3069" #"\205\r,\32\325\5\5\0222\226:#\24515\213\25\32\32<\362\255=\211I" #"\t:\200!\23\370\205\243\217\361,\231" #"\357\346\347\336\334\334\340\353_\377\272\361" #"8+v\273\23\224\\\260\277\331\203<" #"\356\315f\362\347L`\356_\374\17\377" #"\2\2677\327\350\35\370\321\217~\204\247" #"O?\300\237\374\311\237\340\255\267\3362" #";\260\305nw\202g\317\2369\240\224" #"s\302\331\331)\316\316\316\360\327\177\375" #"C\210\210\253>\214\227\201\34n{ee#H\325#\355\223k\342\367)\t\25" #"\332\20\273\333\235\252\342\25\355\213\32L" #"EH\215\26\246(\260X\305\213\2750\202\36|G\2\253\314\3\374\211\317" #"\234{aY:\4\352\203\365\277\232W\306#\225*&&u\321\375\317\302\221" ) 500 ( #" !O\202\371\366\240\22\212Lj\355" #">\331\340[\231\b\230\177\310V\365\355" #"\320\373i\215c\207uh\24\301\27\276\216\225q\370\263BC8\3173v\273\35" #"\376\355\377\371o\221R\302\323\17\236\342" #"\352\352\nw\357\336\365\233\376\337~\367" #"w\261\333\235\342\263\237\371\34\16\373\203" #"G\350S)\230gmX\212M<\352\204E\203\22\353\230\313E\241l\6\302\334" #"`\243\211i\4#\r\25\202\344\316\205" #"\16(:\214\350ht\246\267\225\232\f\331k\216\30\16n\246g\211\206dW:" #"\255nPz:\322\20\346\367$@\220\215X\r\315\350%\331\342O\353\317\345u" #"A\307\20\307\315\0237\6\177/\226\263" #"\\\363\26l\324\320@\273i\37\204#%n\20t\217\2574t\35m\264\311I" #"K\35\3)\34\31M\31]\264\313\366" #"\362\362\22\37=\177\206\aw\357\353\232" #"{\271t\215\250\362\31\360P(\217zZ\335K\f\342\233!H\35J\342\317V" #"\302Q\335;\345`\2624\252\350\240>#rn\371\322k\36h\271fr\343\260" #"S\231\300\3\251\326|\317\240\215\346\30" #"\"\20\ftz\255|\260\212\220\333\357" #"\266\336\254\214\254\3736Ns\213%j\317$;@m\277\225\234\222\363\e_," #"\365\23%f\3409\220*5C=\214\34\215\301\22\337\237sA\255\263\32\2R" #"J`\216\245\3\311 \\\6\"J\263\30\34\3671v4\243\326ee\34\200 " #"k\225L\26\250k\256'B:\321\232v\321[\307\222\252\227\337#\362\34\357{" #"p\327M\343P\330\245\34\206v\30\355Q%\215F\360\267\n\230{\17\317H," #"NT\305\17\345\0\352T8\330\271W" #"\370\306\236\241h\363\2\21\27\236\367h" #"WV\201\271U\266\342d\267\343\nS\\\v\330\265\240\17\276v\254\2" #"\324\252t\231m\31v\203\301%\240\201\314a\236qs}\215g\317\236" ) 500 ( #"\341\311\207\37\340|w\206\375\355-\236~\370!\336}\367]\\__\3\320&" #"\230\333\333\e\244\224q~~\206\305d" #"\3\317\316\316\\\242\221\367w\377\376}l6\e\37)~ss\203\336\273\217]" #"\346d\243\303\341\200\233\233\e<y\362" #"\304\365\245\271&\244\266\265V]z\361" #"\30Qc2\260\331l\255\322\222\260\337" #"\337\256\354_\231&k\374)\236\234\267" #"\326\360\352\343Wps{\203\203\5\312Dgooo}\235`t\252\375\376\26" #"\247\247;\34\346\31\233\315\326\366\224\332" #"\322\333\333[\225~\nS?\357\337\277\217\303\341\260zv@\302v[\260\331n" #"p\357\356=\274\362\3501\316\316\317P" #"\246\t\333\355\26\237\374\344'p\377\376" #"}\234\235\236\271\254\e'\37B\350\354" #";z\322\21\340K\323\304`\273=\1" #"\233jr\232\220\213\340\331\263\217Vv" #"\344\354\354\314\236\223\322\37J\231l\317" #"\f\37Tk\365\222>}&\337\317`\21\200\2522$\3012W<\273\275\0\a" #"ol6\e\274\366\332k\370\255\337\372-\\\\\\\340\362\362\229g<z\364" #"\b\233\315\6\277\363;\277\203\233\333\e" #"OL~\355\327~\r\237\372\324\247V=*%+\0\220\254\342\3602\365!+" #"G\230=\f\374v\332%\30]\260\216" #"3Q\243M\262\317\222\0\364\350\336\201" #"\r\0021\372M\370\375\321\364(\236\254" #"H\316\230\0173\376\362?\376\5~\370" #"\327?\300\337\375\344=\\]\\b\236" #"\17X\226\212\303\341\200Z5\246x\374" #"\3701\246i\203\223\223-\16\373=\256" #"\257\256\265\221\3550cY\224&pr" #"\262\363\246\275\263\263S|\376\363_\300" #"g>\363i\374\314\317\374\f\336{\357=\374\345_\376%\236>}\202?\377\363" #"?\3077\277\371M\325\311\16\225\254\336\271N\n\302(\220" #"\223\321m\362R\222\202\224\261j\240L\201\"7\374h\306" ) 500 ( #"4%\223u\305\30<\343@\214V\36S\311\36\23t \240\352\303\17\325\272\370" #"8oI\35S\232V\250\250W\342zGJP\251\263\6l\212`n\32\223\250" #"\242Lv\251\262\30\34\17 \243W\265\205Y26\323\26\20k\330KE\253" #"\305\6\212\240'H6\304\331\356\257\e}D\3678eH\327\264763\323>" #"\275\314\206\227\34\242\371\2343\336y\347" #"\307\270s\347.n\17{\\\\\\x\311e\224\342\5\217\36?T>X\22\353" #"\6dG\335Z\356CD\3\334&\3154\340\200\3243R\32\277w\334\4\266B" #"\320\232\312\203\245\360 \371gtN9%\e\243h\245L\21\333\4\352\314[\257" #"\216\0305s\310m1\26435$\eU\270\3143\300\362\262\251\22Tt\b(" #"f\277hc\211\5\237)\323\tF\331\265u\220\314u\215/\226\241b\340{\\" #"\316\3404\36G`eM\318F\337\374Du\rn\246T\260T6T\250\r" #"!BA}A\355\34\26\3433\315\270" #"\271\276\301k\257\276\212\315\246\240\224\f" #"\4\216)7M4pj\204\327\232\311\307\16_\221\326\202\336*Z_\3009\340" #"J5\340}(:H\343\243\367\265^3\177\376\0264\257F\17\312\372wZ\323" #")I\36T\25\v\236\f\365\4\340\rH\275V\324\314\240Jb\330\t\301\240\217" #"\304\352\303\vA.4\311\310,K\263\273\24\342\2033V\211\t\0N\201S#" #"8t!\355\253_:\331+\356\27`\4\245D\274\365\312\325q\353z6U\233" #"hb\215\24\351\350\331\0\3021\253!" #"\220\346\232*?\274\370\332\r\304\275[" #"\300+\341\263T:\206rZ\221Z\21\367\253\a\224\"HMPR\321)h\231" #"\374\305\252R0\2\347y*\232\317NxM\200\232\243D\343s" #"\321\207\356\256vF'\243\245t\243E0\231\360\335\262\242$\360" ) 500 ( #"\374\256T_\270\366\0006\333\rHX\344y\245\202\313\361}\366\3361e\245Q" #"l,\230ePHN\345\305\305\5\236" #"<y\202\303\341\200\367\336{\17\227\227" #"\227\230\347\31\327\327\327\270\271\271\301\345" #"\345\245\a\177\334\a\254\204\235\237\237\243" #"\326\352\350\340\311\311\t\366\373[<}\372\201;\201i\232|mRJ\330n\267" #"\370\341\17\177\350U\231\30\274F%\32" #"\0899\301\325\325\25\316\316\316\214" #"\326\320\260\231&l7\e\234\237\337\3014mQJ\306fSpzz\272Z3" #"\256!\277gY*\336\177\377\247h\355" #"\216\357\213\333\333[@\340\250\227'8" #"\"x\377\203'\236<\246\262\346\2652(\206dL\323\6w\357\337\303f\332`" #"\263\235\360\370\361c|\356s\237\303\235" #"\273w\360\370\341c\244\234qv~\212\24\22\32\242\240\fv\211vo\267[\267" #"\27\\\23\327\211\25\223v\253\rK\255\230l\220\314\322\e6&\332\357v/\t" #"2\n6\323\tR\356\226\214*\240\322;\360\332\253;\264^= \24\321F\262" #"Z+\366\373\203\357\303\356\347=y\227" #"\273\357\365Z\201\224Pl\215\227e\361" #"\246\322T\207D\24\232\240\247AO\"" #"`\364\360\341C\364\336\235\277\373\e\277" #"\361\e\370\343?\376c\354Nw\370/\177\345Wpvv\346\264\v\a{\304z" #"a\250\205k/\367I\6\32\245\244I" #"d\203\351\376\332\336\35\24\235\5\255\231" #"\256;\206\357\3603\3043\352\276p\302" #"\250\276Z\365\212\250_\360}\325\246\267" #"\302\316\362\323\247O\360\273\277\373\277b" #"\2639\301\341p\300\365\365\25v\273\23" #"Ca\27O\34\336{\357=\334\277\377\0\37}\364!\226e\301\235;w\320\227" #"1\316\370\336\275\273\370\324\247>\215" #"/}\351K\370\362\227\277\254\315\3327\267\0\4\327\327\327" #"\270\177\377>\276\372\325\257\342\346\346\n\273\335\16?}\377" ) 500 ( #"\247\370\322\317\374\f\"\365j\370v\256" #"\2336\3565\353+P\277\246T\2058\322:\256/\343/\5\277\324\314wK\226" #"= \316zNQG\242]J\306\241.\36\340\22\\Q\305,\2016\356*(" #"0\250(@I\tK\210\305R\236\24\24\353\359M\250\213\352/\323\371*p" #"\226\200\224Vv\237\361\31\225!t-:\20$\346\320\265\257\2\262\0\325|z" #"Wj\232X/\205\236\337\4\335\372\261" #"?\207\240\347\220\34\233\246\215\337\253W" #"\16DT\316E\262*-\354on\361\312\343Wq~v\a\367\356\335[e\30" #"\265\252\6\334\235;w1\317\213\241\210" #"iE\262V\2039\257\270\267\332\324\304" #"f\267!'\304WDz\210\354\305\200" #"\367\5\252\202\31!\362\361\4Z\266\234" #"\255\31\252\210\316a\357\226\215\300A*" #"Q\235\3054\320\31\261\214\242uA2" #"\276\36\277K\322Xd\32\246\336:\22" #"\271s6\221\203\e\207F\234\206>\"" #"\2741H\211\216\213\377\377\262`\3127" #"\312\337\303\323\214\301\361\b\246;\226\245" #"A,\300\211\3109\263L\347@\6\3t}}\203\251d\314s\365\222\226\32^" #"\6{/6\17\362\373\30\f\36#]f\n\0010\230Zk\363\351\357\351AK" #"IL>nh(\306\240\204\222Vh\203|\257<0\6d!)\240a\266L" #"\277\anP\226\344\b2\233&\265\231\6\226=Z\6(\2\4$,rM\235" #"w\25\236\5\3\353y\236\235\362\320\244\35\35\306\210\366k&J\36z\n\6\"" #"\242\224\334S\261\342\1\300\22\f\256\323" #"\272\4F\324\34\0R\0274+\211+\3VQs\352\24G'\"b\206\17\206" #",[\23\210\6\315\307RIk\356\272\357\317\4\37G\255T\tY\235\3\17\212" #"E\300\221\274%e\255\252@\264\t\301\222\321d\350" #"\276:\350\274:C\307\377=\24`\264\324\337\264\6" ) 500 ( #"\n\347:o\306\3321\321R\277X1\317\303h^^^\342\372\372\32\37}\364" #"\221OXJ\242N\4\2\354o\367\36" #"l\316\313\242\rH\233\215\237\305\253\253" #"+,\207\31\207e\306\355\355\255sD" #")\322^[\303\345\345\245\257E\2449" #"\244\244MR\227\227\22789\331\372\344" #"\243{\367\356\1Pd\356\356\335\273x\360\340\1J)8\335\355pv~\356\\" #"KJ!\345\254\324\260\313\313K\\]" #"]\205\22\374\342\177\266\326\334\331\307\377" #"\377\370\307?\356\274\317\217}\354c8" #"\331\236\340\364\374\24\247gg@\357\330" #"LZ\352N\222\221\362\330\237\f\344cR?l\2406~E\16 \367\v\367=" #"G[\3c\"\244t(:\205\21\270O\323\26I:\272\351\330\266^-\360R" #"^\363\341p@]\230\360A+\217v\215\231rU}p\375I\211\213\337\357N" #"\273C\225,\3328\a\323jZ\245\200\2231E\rd\260\345:T@e\237\6" #"\5\246\n\367^P\2258j\200\324\263\227<\340M&u\325a\245\336\224\0\343" #"\270\223[m\5l\237\222\211\304\363\273" #"\356\235\3415\363\277\1\340\301\203\a\370" #"o\377\331?\363\2011kE\200aKKZ\217\271\216\311{\357zv\271R\b" #"\301+\314o\222\27\357\310\243\5\304+" #"\0\5\203\252\2474)\253`\266\212\\" #"\206\317\213U\"\356\265\315fc\367\331" #"\361\2117^\3077\276\361\r|\377\373" #"\337\207\b\360\205/|\321\317\315\331\331" #"\231#\376\37|\360\1\366\373\38\355" #"\216\252\t\217\37?\306\303\207\17}\250" #"\1\2233\265\325\5KP\24\342\331\371" #"\247\337\370\247\230\253Rv(\233\247\252" #"$\352#\5\202\332Lj\265c\215\320`T\232c\202A\e\313}\345\3v\22" #"@\245 \345\313\256\307\370\362\363\252i\222\263\207\207@" #"\17\373#\224\226i}$Y\aT\344\224\2600fY!" ) 500 ( #"\243\372I\255Uoh\363\277\3\253z" #"\266\247Ey\265j\347\3\300\263,\310\241:\221\215_\257k,\230\262R#\300" #"s`\200\a\375\34\375\275\256\17\253\365" #"\331@3M\274\365Z\265\322\2566\a*/V\212\362\30/./\234\323\364\217" #"\376\213\177\204\223\355\326nB0\37\16" #"\270\335\337\342\354\364\f\247\273\23E?" #"\373\340\370\371E\365\265\24\2317Fe" #"_a\r\232D\300\f\207\17\230\262\e\35J\24\247!\340\3d\271m\312\331\203" #"\36\210\350\ft#2\367\336q\b\215p\353\340\220h\27<0\2\24\231u\216" #"`b\346\230}\223q@\3\27\233\34\237\224\222\217E\246V^t\354\307Y\31" #"\215\2KQ\236\275\3675:GtLRR:F\370\275\310AaI1r6" #"\365\373\206\221\341=0HR\35H\275" #"\317:W\237\226\365'\177\362\357q~" #"\347\16\346y\37\312\210\f\210\r\241\f" #"\306\215\245k~\3078\fkz\6\215\204\6\257\211f\320\203\r\325\350Mn\374" #"4\370\320\337\31h?\6\372k(\250\a\250v\310\234\372a\207\v\306%\32\373" #"K\eb4\352S#\243\3\21\254\264\324Y\312o#8\262\375\30\203\334U9" #"\333\203}\226O8s=PN\374\376" #"\364\34\351^\321@\257\266\241\373\313\373" #"\340\210W\351\35\265cu\226\216\237q" #"\17\345\eJ\311\310*\221\354\206\302\30\244O\343f\1=\203=&\0264\210Z" #"\26\343\276\"\355g=v\264P\37\331\356\233/:2$Q\336)F\3\243\30" #"\5'I\302\224\212O\0B\327\306\300d\1@N\ty*\253D\367\346\346\306" #"x\237\a\343\215R3[\367#\e\216J)8\354\367\370\350\3429`\373b\177" #"\273\307\376\366\26\373\375\336\203\314" #"\353\353k\354\3677\340dE\226\353\331\2543\e\257" #"~\266\222e\317\t\313av\347\277,\vz\255\330\236" ) 500 ( #"\234\370\231d\211}\277\337\353\377O\306" #"\365\\\26\r\344E\260\277\335c\273\335" #":\n\372\306\eo\340\301\203\a\330l6x\360\340>r.\370\330\307^\303\331" #"\231\376\375\235;w\260\231&\310\244\315" #"%%\253\236\364\34\24.\270\37)\n\317R}k#\230`\211\27I\371p\261" #"\277\341\30m\367ge\325\210\271.~" #"\16\256oo\270\205\2063\342\31\23\366i(O3\332\206h\27\303f\1?\212" #"\252 \275w\314l\264\25\361\222\261\332" #"\315\216\233\233\2759\260\t\"\t\363rk%\354\201\260\267fAwIH\222\241" #"1T\207\244X\245\322\204lT\\\32\352\322\221\212\r\f1\333R\rI\212j" #"3\\;&\245\34o\275\266\rz\215\n\234T\244\234M\1778\255lv\f\272" #"\35\340\b\317\213\r\201M\272'\354\312" #"\252L\256\223\315{\342YiM\221\327\6\352_7\17\246=\241\305\360K\368" #"\206F/G\250\301*Y\363\201!\374Y|\236\35\0|-Y\246\37\tpr" #"=\336\204R\306\3472\260\345\206 \n" #"\307\347\337\232\215SO\372\214\346y\301" #"\250\\ir\263\335n\361\223\237\374\35" #"\376\366o\377\26)%<z\364\b\37" #"\373\330\307\360\345\237\3739\374\303\177\370" #"\213X\226\3464\4EE\1tm\20Tj&\251p\203\253\233Rr~:\357" #"\223h!\233\2aZ\265\363\262\240d" #"\301\325\355\265%)\214\316\306\363\0\272Q$\3157gM\24%\330\360x^x" #"\255\21\4\361JQ)\32\234&\1*\320\263\f%\5\321X&i06\250$" #"\346\r\320\206\2\23l?\n\340\32\271I\326\215e\372\354-1Ahn\267\375" #"\357\242\3\b\0\236m\210\234\307uk\254T\225VbqK\354\343BW\345\5" #"mN\315`\245\361\30$\322\263%\340\370i\366" #"\22i\222\305*\245hb\235&\324\256\264\212\302\207" ) 500 ( #"X6\23\376\364\255\267p\347\316\35\224" #"\224\361\305/~\t9\231\243\317\300\341" #"v\0174\240\316\vNw;\37\35\310" #"\362_t\202\307h\244\230\343\204\202d" #"\236q\323h0Kq\344\354\310\20C\210C\5\303h7\276D\224\317\0265\362" #"\231\270\310\\\260y\236\261\331\222\303\e" #"\272\223\263\225\217\215\177\244Yz\263\f" #"%Y\211@5\340\226\371`\aV\273A\31\nn\247\r\226\256P}l\332\212" #"\345L\32\343a\0\326\345\322a\0l\243b\255\350\20?\223\357y1\313f`" #"8\2QG\215D\21>-\177\251\376" #"\355\333o\277\215\375\341\200\303\376\200\307" #"\217\36\341\v_\370\202\311!\245\260\342" #":\343{\232\266\36\3640@\342\332\322" #"\321\317\313\254\311Q\325q\264c\223\22" #"\1\30\301\35\2154\17\364\361\275\350:" #"\3650\26\326\2025\321\351K9\374>" #"\257\264\366\16AU9\252d\202\346\215\\&J\205Y\226-Q5b\250\n\364" #"\16G6\"Mf\205p\330\20\v`\214\264V\300e$%\300\264*\25\223\363" #"\\[\323\246IQ4\270\326\212\\\212J]\265\246rWKs*M\224v\342" #":q\315[kv\255\303\1\351\331\321" #"\373`\267\276\a\24\275c\232\304\235\356" #"\320\35^Vh\202\227\262\354\373\2110" #"\266\306Dm\302\262T\235X\324\265\f\275\3143\322f\320Fh\374td\2706" #"%.u\301\345\325\245!\e\35WW\327\330\357\367\270=\354Qg\r\340>z" #"\366\21...p\361\374\2\373\375\336\233\237\366\373}p4X\355o\236\213e" #"Y\260\331n5\251\213\16#\4\4\fhi\260\371;\273\335\16\3234i\200i" #"\b\321d\210-\272\226\274Ow\247\330" #"\236\236\240\325\206\23\233\210t8\0340M\23v\273\35^}\365U\210\b" #"\266\273\23\224R0\225\t\247g\247899\301n\267\323\251s9\343\364" ) 500 ( #"\364\24D*c5$&P\207\303\1\263\b\372\262X \250\251z\303@\311U" #"V\r\206\330+g\327\367,\206\323\342" #"z\27\311hF\377\211\2508\257\241\367" #"\3562Z\251\254\207\336\220:@\236`" #"\253\315\203\261\236\4\322(\246?\350Wn\323\302w\210\0051)\2471\335,[" #"2\326*Z\26\230l\3508\37\244\212\31\325\254\31\345E:\221F:: O" #"\t\322\265Z\247%\365\354g\233\240\5" #"`z\344\335\3501\2348\330G\342\251" #"U<\366\17\340\5\0\201\245i\212\364" #"\267\306@){\302\311\300\226`\301\341" #"\260\327\322\275\f\276zL\324;\340\1P\205J\352\241i\322\332\263*YK@" #"\272b \344\200\212\0052\325\204\370\223U/^H60\2\241x\216\242\177\342" #"\253\241\257\206Y\304\365\310\302\306)\253\16\245!y\25m\212$\355m)Sq" #"=e5\363\f\341;z\367\16&\365\271I\313\372\202A\313\30@\2266\364}" #"\347;\337\301\367\276\367=o\232<\34" #"\16\370\355\337\376m\34\316\317W\240S" #"\a\202\6qC\357\311\374\322\201\253\1" #"V@\217\1\216i\242\236\361\0g\30" #"\343\230\247r\224T\221l\240\35\26\3442\1PZ\a\300!JB\267\352v;" #"\372\t\372\27\322\235\"H\226 @\266" #"\347\221\306sZ\332\202\324\25\355\257\16" #"\307\215\263\235r\266sM\331\322\221\320" #"\220\22\20}\334\250\314\352\357\260b\263" #"\331l\374\232x\266#\30\307sQ\347" #"\2524\266\336\24\334!\207\337\0\312N" #"?\337\310\35\326 \227qv\334\217\321\216\260:\4tLSF\255\254\nh\222" #"E`U:0\211\09\241\20\201\0\200\37\374\325\367qvv\216\273w\357\342" #"\23\237x\035777\32\224I\303<\0370\3310\t\36\\\36\260X\302" #"\214\31\321\b\n\254\314\3124\307\214W\204\347\1u\302\224\354\360RFJ" ) 500 ( #"H]5|\321\6Z\274xP\34\365\374\"\342\305\206\217u\26\0327=Q2" #"}hj\370\370\21\313<[i!\34\220DdS\263\37GR{7\4\240\372" #"\30Y:,\"\251<\0201\370\346u\36g\317t\4\321@D\203\24\203\367\210" #"\26\307\262N\374.\36T\226\t\232\361" #"e\265\231c\217?\372\243\177\207\313\347" #"\317\361\312\303\207\370\352/\3772\246R" #"pk\243\213c\300\231\322p^\265\316" #"\0\326\345c~\217v\306\v\270\362\3" #"\255n\350\210\345\253\201T\36\243\3261" #"\1\2423b\246\23\235{\255\3252\377" #"\241\25Kq\373\324\340\250!\273`\231" #"\361\331\216\260{\322\367\2633\373x/" #"\21\241\203\0\207eF\233\215\27ge" #"\234e\251\270\274\274\302<\357q~~\216\303A\271v\373\375\36WWW\343\34" #"\324\352\\@\261\214\26b\323u\246\t" #"\313\341\20\366\263\242w\273;g8\354\325\b?y\362\304;\335///\225c" #"\336\5\333iB\312\31W7\332\270\244" #"\3165Y\260\276\207\226t\24\2118\34\16\0\4gg\247v-\t\233MA\316" #"\5\233\215V\31v\273\235u}\253q\247$\23\e\224rN\316q\254\265b^" #"f\314\207\31\265wO<\346e\301G\37}\204\303~\257I\324A\355\307T\n" #"\0166\341\220\353\324\232\312\373\370~\260" #"\275\266,\25\323f\32\317\334\326\221\362" #"J\333\355\326\313\356\275\3\207\345\200\355" #"\264A)\223\"~YQ\233\223\223\23\334\277{\17'''~V\336x\343\r" #"l\267[\347\267rR\24\237{)eL\2553\3\334j\305\365\315\rNw;" #"E\310\26u'\305*L\307\225\225\332\352J\305\2407\25;\347\376\"\17\362x" #"L8\23\341\330\357\0X\3]\32\25.N6\2627\3\275\333\20\212" #"Q9\211\350\35K\212\313R\303\32/\310e\315\273\347\347Q\377x$m" ) 500 ( #"f\e\227\305\252y*\317\246c~\265" #"\261\325\336\214V\27\17\304\342\331\366\200" #"\303\320<P\332M\214F\225\222V\233z\3\365\360xf\217\3:\256\t\254\234" #"\271\331\26\225E\354F}I\2\240\350\265\32TB\223.\2HO\250\260\241\32" #"\2426\235\374S\267!\275\243.\372=9\353`%\2\b\253\365\315\32<\224T" #"\274q2\6\367\21=-ez\301W\362~*\203\0\360:\25\230`R_-" #"ag\222\20m\177\0044\330\350\244\353" #"\227\\\202\222\317\372e\312 %\227\325" #"3\212>\304\3\257\303l|\377lA\276\322\276\230P\261\311\230(\335z\37k" #"\f\240%\375jZ\266\312\367\247\356\271" #"\2\20\0\320\0344\320u\2\200\264\362" #"{\275W\234\236\236\342\17\376\340\17\361" #"\343\37\277\3\202\\\17\37>\304\345\345" #"%\366\373=\316\316\316T\343\231\245{" #"\263%\221Z5\222\257\320\f\26\374\336\370\35m8&\220\3063u\230g\214\21" #"\334\315+SI\22\300\251\247\34\335\335" #"u!\330\223\320\245i\202t\244B\343" #"h\345\321\317\364=\2004\306V\25\350" #"\252K\334z\a\373\267\343\2653\306\251" #"u\355o_\226\364D\300\200\357g\323\e\327$\366$\370~\vq\207\a\243\223" #"\311\273\206kH)\371\370\341d\301n\264\tl>\364\4\261Y\310.\342\25|" #"\336\203\356}Mb5\30\327\nM\21\265\307\275\353{%e\224Z+\246\355\6" #"\207y\306\17\277\377C\234\236\337\301\347" #"?\377\205\200\320jy\373\372\346\32\327" #"\267Wxt\372\30\245\24\334\336\336\256" #"\16\300\345\305\5Nv;\344<\241\265\305\rv\267,\0176\306vY\16\310i" #"\vrb\34\356\266\a\e\3C5>\366\0\fQ\361\340\t\353\2400\276\270\340" #"\271\224!_\21\177\247\213o<\377\221\215\227K," #"\335\32/U\222\242\317\275vGu9?^`\31\270" ) 500 ( #"\311z4\351H&\345\4(g\356\370\340\304\254{\214\352\305j-\351\\^\366" #"OD\24W\310B8\f#\260N`\327\257\37\\f\233\6\375\177\360\301\ax" #"\362\376\23l\247\r>\367\346\233\370\322" #"\27\277\210\253\253k/\261\217k\326\204" #"f\263\231\360B\271:|'\240\311\t" #"Y\0\21y\323\364\35\236\341\241\217\262'\327$:3/{\224\264\22\332WD" #"\224\316\304\3708P\341\23\345\266\251CO\223\6']\306\244;&Q\313\242|" #"\276\213\213\e@\200w\377\366]<}\372!nn\256\321Z\303\a\37|\200e" #"Y\274\331\207\327\267\324\5\247\273S\244" #"\224p{\273\267$q\354%R\27\0\254\2\230)gO\316\310S:\230\324\21" #"\23\266^\225\373\324\26\225\214KS\361" #"Nh\36|N\34299\331\251\374\323\355-\332\254\1a\265\314;\226\340\243C" #"\215(kk\3159\235<3^o\303\20\334\216\311\307~\277\267d\241a\277?" #"\30\212mh_\37H]J\311\321\b\242\0\3234\341\332\306U\22\31f\263\324" #"\375\373\367\235\2560M\e\344\244\335\350" #"\273\335\tNOuN\375\343\307\217qrr\202\223\223\23U\r\330nT\326\320" #"\364\27\371Y\335\2\0\"\217)%/" #"\177\223;\315\216v\332\32\356\263\250\300" #"\300DEl\352\224R\226\24]\232\347\31\355pp#=K@gR<\a\32" #"\314\242k%\202H\207\362\23\263\216\f2:\215\227R\223\0\0 \0IDA" #"T\tW\336\277\337\317\f\326g=ke\254[\20D\v9\312\206\26\370Y\362" #"-\1\345G\357Z\315\351\rS\266~\4\201}\230\331S65AQ\331\332\352" #"\312\266\34\3332\325\377M\3\311*\331\372'F \36\23\3715\2fv\317\376" #";\363\371\t\220\272M\321JZ5Qm\355" #"\1\210\250dUG\253\252\344\243\203\224:\315\n" ) 500 ( #"\4VA\264\0\272\265\356\276DD\\\275&\261V\310)_&\303\230hc\314" #"v\302\2\262\251lP\353\f\373\221\333" #"T\r\256\5=Y\360\313j\27\306\337" #"\37\373\200\227\1\27\276\207\31\204v1\371N\335\177\356Or\320\3\17gt$" #"ECC\2729\a3\e\323!!\2455\322\332{W\326Vo:\347Lde" #"3\244\3\260^\b \241u\250\204\242" #"\1\0\303\17\220\177\n\37f\310=\235" #"\364a\250\336\2625\245\365\2566\323{" #"\16\300\340;\353\344P\247Z(\342\253" #"\252G\335\374\265\332\340\257}\355k\270" #"\272\272\304\363\347\317\361\325\257~\25\337" #"\372\326\267\360\354\3313?\317\344-k\262P\320\233\3555Z<!\35eTM" #"s\312F\363\203\225\3417\200M\342\232g\255fz?NJ#\306\350\324\31\17" #">\312\233\342\365\347\271\24\363\27#\310" #"\215g#&/\321v\307\204\311\204\2024\3010=q\227\21\3l`\214U\314" #"\255\322\272\330\3472>\212\225\342\221\340" #"\2\316\375-\32@F\277\36%J7\323\204\245V\35l\341\225A\356'\336O" #"q:*u\377\321\r\2142\272\217\307z)\253It\365\tM\36;\264\330\303" #"*Am-H\3355O2fK8Z\253\260\326I\237\262W\f\244\304O~" #"\372S\234\354Nq8\34\360\363?\377\2379R\"I\205\316U`{\240\277\f" #"N\270\221\377\325\377\362\257\360\271\317\177" #"\1_\373\332\327\220\250\245g\215E4" #"\24\225\362'\213J\221\221\253A\207D" #"\356*\263M/\17\0\326\205'/\220\244\217\203$\276\30$/\301@\363\347:" #"\376n\335(\244\231\v\263/-\355\263" #"\244\5!*m\\\260\276X\23\200\225" #"\322a\16\243\211;\240X\216\212\306" #"\376\230k\311\207\314@\354\30\331\215\367u\234\335\305\22" #"g4\224\374\375(\377\244\315h\31\b\216\270\224\202\267" ) 500 ( #"\337\376\21nnn\360\306\307?\216\237\377\312WLf\356\4\"\300R\e\366\a" #"E\23\311\177\3443\213\337\315\357\347\237" #"\265V\323\215U>0\237\251\210\"#)g\345\31Y`G\21r\336[\234\260" #"\245\b-\214\"2h\0364&\255\211" #"\322\23L\23\360\275\237\374\35\376\346\235" #"\2771\271\234\3n\256o\349\273\274" #"\274\\e\226Z\16?`\236\17\250\265" #"\372\336\216\367\302uf`\264\335\235\350" #"\347\31\232rv\347\fY\310\321L\336" #"\334r\347\316\35\2276\342w\305$\207" #"A \277\267\265\206\335\366\4'\233\255\312.-3..\257\360\370\261r5\223" #"\b\356\335\177\210\375\376\269'\3349" #"?\327\346\255\254\35\343WWW\372\235\333\r\226e\301\351\351)NOOW\317" #"\204\353J]j\345\251\356\301\246\234\333" #"\333\e\364\256\"\342\373\375\36\317\237?" #"\3675\213b\373\233\315\204\323\323S\354" #"v;M\4Z\303\356\364\324\357\207\201" #"\356\351\251\242\306\257\274\362\212#\247\205" #"S\344D\277g\267\333\251\361\317\332\261" #"\273\2356j\314\252\215t\226\321\t\317" #"=\341\201IV\347O\224\274\265\2062" #"\25W5\210\347\201\225\247\311t\222{" #"_+\237\304\22+\317\f\240\245\371\251" #"h%\240\361\254w\375\3638\301T\323jgT\264\361\21\f\36c%\241\213W" #"68\266W\35qw\3\16\30\212'\303~\300\312\200\f\320\350\260h\e\354M" #"Z\316\347\207\20\32dU-%L9(M\310\250b9j\236\251b\21\252O" #"F\1779F*\1x\27|L\252:\340\234\317\210\3308\335\312~WJ\31\r" #"+6\345\222A\272Rk\e\340\357\327R3\f\205\345\0\1\35S\\\f\305\314" #"\206\300\3\350\331\203\\\365'\252\b" #"/\226\230&\351j\323-\371\354\275\203\343&=\261\26^" #"\267R%\264\201UK\244\335\236i\353\r\275\16yDt" ) 500 ( #"\240-\332,+bj@2\252o\374\307m\273\350s\263HO\377\227\301H\253" #"\253\344\347\5\212[X[\372<\225rJh\320g\276\261Q\302\275\251l\23j" #"\5\251\30\"\342\\l\204\317\340g\256" #"\22dtK~\210n\266\325\365\350\347\351~\343\324M&\3\356\237\300\244n\4" #"\204\214&Y5[I]i$:\220e&xbAyk\270\275\275\3017\277" #"\371ML\323\204\37\377\370\307\240n\356" #"\275{*\215:M\223\217\23\256m\1" #"\325l\3077\253\266\377\262\314\243\232\342" #"\264\233\3441\v\253d\354\357\211\317\305" #"\233\260RR\204\265B\367\211f9z\357Y\2006\264\350E\224[\32\317\24m" #"\17\327\225\177\306\2527\317jO\315\264" #"\266\273\305(\3m\3159\4\320\275\e?V{\212\30\344\306\317\362=e\24\31" #"\245\365d\324z\300\322`\315\340Z\305" #"LV\305\251\266\207[\357\250\r\200\220" #"\312\31\1+\245{\2\35\213k\343\256\207d\3619\244>\224q\0V\256tf" #"\200~Os;\273\264\352I\252\312)" #"\316:\374\a\t\331\370\275\244\240\224\222" #"Qjk(\233\t\337\376\366\377\215W" #"_y\214\223\3233\274\366\332k\270\270" #"\270X\225C\16\207\3\3124\370\31\300" #"\b\256>\372\350#,\207\5\377\341\273" #"\177\206\4\301?\371\257\377+\325n\353" #"k>\217\32\233\216\222\247\325\3%\362" #"\5\f\316\17\3X\1\\k\217\377\35\365v\217\203\22?\274\201C\22Qcw" #"N\320nZ\226$bS\35\272\226+\247)L\367\0216\344,\312\2131M?" #"\242!\260\256\323\326\26\240\217\357yY\263\30_D\327(\23\303k=FNx" #"\37\221\234~\214|\36\227\241X\372\37" #"\264\1\343\264u\313>\1<}\372" #"\1\376\352\257\336\302\311\311\26\227\27\227\370\203?\374C" #"\334\277\177\337\2648\27-q\212\340'\357\277\217\335\311\311" ) 500 ( #"*\210\346w\335\277\177\37\213\225\251Y" #"\352\275\276\276\306f\263\361\361\224\317\236" #"=\303\365\365\265\352E\246\204<MZ" #"\256\317\203\346\261\335nqf\301\341\375" #"\373\367\261\335n\361\360\341Cm\332\221" #"\204\332\341\374,^\307\263g\317\361\275" #"\357}\17?\372\321\217<\220z\362\323\367\1\0O\237>EJ\t\3234\20r" #"\356\265\321u\f\354vg\230\246\t\257" #"\276\372*v\273\35\36>|\350\332\226ggg\36\3205\242iI\f=$\205" #"g\321\362\2\272\357\313\350 \312Q\326" #"\352F\252\217\362T\357\335\313\350*\373" #"\322}\340\4\267W\312\331\277\307Q\"\233\2203\37\16\2306\223UL\330i:" #"\2025\252\4\304jI\\\223qn\340\335\304\244\23l\255!5\236\241\315f\362" #"\357I\206f\334\356oC\311}\234\375" #"\245\252\22J\22UB\311\20\233h\306" #"\322a\350\276\357\315\2yE\361j\323" #"\320%\352\rG\24\277\344\274\332\23n3\202\363_\333\237l\b\b< \215\277" #"\27\367\265WQ\244kC\203\241Umi*\206\0171\356 y\203\344\300\351\375" #"\2222#\366\274KV\225\0066\335)\272\323\35\301\364`\16}m7\242\224S" #"G(]\37\227\374\250Yj<JI\230\227\331\350\16\234l\a\377\375n\bP" #"(jyIV\207G\330\17;\231\277\0%\254F\251w\240\377\307\25%\267O" #"\26\271\305\22\270~\254q\366\222x\0" #"\275\324\241\227\356\311\207;E\345\230\252" #"M\34\300\2031W}J\23\240\215X" #"\271$\350\214\237\352\317(\331\271\201\f" #"$\210\337\225J\36\350x7\332\3m\257\215h\5\254\214[\27O^:`\340" #"\alm*\300\300C\232\242\274\35C\275\aX\255]\357]\365i\261V8\240" #"BAJ\203\343\210#\273\36\367\257\237w\373\\\6" #"\257\f\n\330\270\326\233\242d\323\244\224-b\250\234\16" ) 500 ( #"\311WLft\\v1\24]\301\36]\rQ\24\335\300!\r\234F\2\300\317" #"\211gl\370\266\f\240j\302\341h\334" #"\0\235\0\243q\300\2R\341\347\332\232\331`\34\236o\362\367/..Pk\303" #"\371\3719\356\334\271\253\200\313\\\375\314" #"7\e\371\231\315v0\320E\vSZKF[\232V\23ZT\335\31\210\257#" #"\277v\346\243\257f\t],\16\220B" #"\225\240d\225\257\261\357\226\231z\362k" #"j\317\32\265\354\332\314\337\327\347=\213" #"!\240\275\242S\16\236M\374&\253\30" #")\69\25\e\223\335\335\367\"\234\325" #"\341[\305\342\5]\267\234\265Y\257.\212t\23\324a5#e\332\367\206\214@" #"+J\353 >I\350+\2\375 \314\206$H\253\350B:jv\377\201\256\373" #",\345\2\200vN\253\35\372=\374DMs=\225\22\215\311j\357(eS\360" #"\335?\373\177\360\316;\357\240\244-~" #"\345\347\377\201IbpZ\223.\322\351" #"\251\226k\31\350\36\16\a\274\375\366\333" #"x\347\235w\360\354\3313|x\361\34" #"\273\223\23\334\334\3561M\5\373z\320" #"c&\261\261\312JK\30(l\314\366\370\242!\340\203\310Y'\202\225iB\t" #"\16\355\370\367\305\202\3\36\366\210\324\360" #"5xQ\202j\3224\342\17\307xR" #"U\263\203\332\26G\3\274\241\300\202\342" #"\224\22\16\213N\366\351M%\2732*z\23H2\335`\31R.\307\235\254Z" #"!\350\330\224\202\326\273\a\373QW\230\3670\2\22O\372W\e):\20\2767" #"\362\\5!0^\213\241\252\363~\17" #"\221\204\277\376\353\267\361\352\243\a\0\200" #"\367\337\177\37O\237>\305\305\305s\34\16*\263\2\21\224ir\256)u/\311" #"y\345\\\366\347\317\237#%\325\352\244 9\21\300\23\v\222/\236?\327" #"\340o\263\301\302\211K\227\2278=" #";\303\335\273w\361\354\371s\\\337\334" ) 500 ( #"\370}<~\374\30\257\276\372*^}\365U\274\376\21170\371\370?}\335\273" #"w\27o\276\371Y\274\366\332kj\350no\35\261\373\354\347>\213\215}7\25" #".j\255\330\355v\216\202\336\275{\27\247\247g89\331z\300G\336P\27\226" #"\254G\363\300\341p@\23689\3158" #"}\245\0\215\374\355\21\264\361YG\224" #"\236\317\223\317(\6\232\272m-(\263" #"\303^\321m\322Y\302\262\337\243\344\365" #"\336\240\201b\0\317r%\23@7\210" #"\231\243\244\17\253\367\2\361,i\320\311" #"}\330\373\240\321\304\0\235\tf\f\322" #"\1\2704Q\255\352\364\350\200\22TR" #"\246\302\f(\222\227\306 \342\311\224&" #"\237\306C\25\240\266\300\315\306P\231\360" #" \25\315\234,\3248\36%\210L\"=\220g\20\324:\350\336\216\203[\0353" #":\312\327:\216]<\260\344w\254J" #"p\200\6\227\r\241\271\302\34\36\203\4" #"\321`.\347l\362v\325J\343M\203" #"\307\224\0\223!\202\330 \227\306\322\335" #"P\16\361{\21\f\375M(\352\\\246" #"\342\216\243\242\r\304C\326\310\257\256\263" #"\361\a\1\0174\275$\32\354\215\356e" #"\35J\222\315N\305\344!\"\270\307\266" #"\310\e\335\f\224\213\301q\22-\361'@y\316!@V\373[W\317\206gW" #"K\271\263\355gE\212:\314)s\355A\4]\320Q=\320\217\343\322\371\354S" #"NX\346E\247^Z\325q\3209x\226s\350\242\27\260\341H$\1\302\204U" #"\2476\222\373\251\373\257\3\t\3506\364" #"H\301\205\241\270\243hX\263q\316b\264\201a\334\245\v\330J\2501|\362 " #"\335\266\336\352\214\217*\236\235w\e\221" #"-=\370\207\256{\225(\242$\6l\342h\252'\\\236\25%\264\316\265\3\262" #"\20\231\323k\321\244N\203;\16l\0\340\262g|\221" #"{?\236i\250\332\271\257\323\206\301Z\353\30\342d\327\322" ) 500 ( #"jC*\242L\37kf\36\203\206Fc\356\17~\360\3\334\336\336\342\27~\341" #"\27\300\370c\254\223\"\377\236\34\247d" #"\372\277\303\327:\255F\4-\350\23\37'\315|1@d\245R\21G\240/l" #"\254[W|\30\236D\0,%\223\374\353\35\305\256\265X\225A\22U\21\222%" #")\244x\f\352DG\327\244\252wS\22\22\314\aE2\273\25\n\272\215\16N" #"\226\364\22\274$\272\32\301\221ngD" #"Q\26\5\0045\366\351h\320\210Z\214\34\20\25G:\b\314\34\363\32351\215" #"{\224}[)%\240i\243;+`\325*\16J;\f@^\307\30\34$j" #"@\372\242\25\233\234\255\202?/(9" #"\241\207D\264\tP\226\332\361\307\177\374" #"\357\25\335\304\202\323\335\t\16\363A\245" #"XD\260\335h\203\316n\267\263R\357-~\357\367~\17?\371\311O\254D\270" #"\240A\347e\37\16\a\374\302\177\376\17L\232G7n\2\254I\241c\251\25\233" #"\274}y&j/.Nl\24\0233V\221\354\34\r#\r\356pj}\365w" #"\321\0\307\262\276\230\\\6\347\225\363!" #"\350A\322\3628\273\351\343w\16\343\22" #"\f\263\210\225D\232s\223\216\257\223\327" #"\323\1\357\256\327C\\\235\303I\364l" #"8\246\21\224(\212\245r&\0226\22\277#\"o\274\327\325\310[\21\240i\266" #"\271=9A\353\35?\367\345\237\305\177" #"\374\213?\307\351\356\24\247'[\334\277" #"\177\37_\370\302\233x\370\340\21\316\356" #"\334\301\264\331\340\321\243G\256!\310\357" #"\273{\367\256s\265\231Q\223')\"+!\370HO\361\301\36vs\354\220\357" #"\26`\222\273\311\f\235\237\23\313}\21" #"\35x\374\370\25\274\372\252\32\321y>" #"\340+_\371\nrJ\330l\266\230\347\203\37Z\242\204,\211\34#\354" #"4\204\272\336V6\262g\325z\267r_r5\n\365\31b\23\\\340\327" ) 500 ( #"\310\375\20\321t\375.\315R\351\264\343" #"3S\324\313\202\3222d\267RJh\314\210SZ\235\v\21\345\31Vi@\325" #"\300\205:\271\361\336\216\263\352R\n\346" #"e\3612|B\306\230B\267V\377X\237\313\370O@O\241\322Gj\270\333j" #"OZVk\306ZX\3700\244j\4\245\276F\301\26\304\311Bq\377R\246\v" #"\226\34p\f\253;\230>\234\v{\4\364\3574\221M\271@\226\272\232<\304g" #"\302\4\270uk\26\351\203\212 \20+" #"\335\212\312<\225\244\363\327\rY\221\244" #"\202\365l\262(\346P\31\230\3\32\b\317m\2665\34\35\366|\37\222 \v\313" #"\317\f\242\326\264\245$\311J\205\243#9{/\204\202\b\2\321*\321R-\300" #".\366\214m\315\215\256\340<{Y\a\227\312\231d#L\363 E\272\361\353%" #"i\23Z\e\347\220\317=\3569\3378\320{\2039(I\t\250\25-A\21\240" #"\360\234_\206T\306\3474\354? \272\271\374\354\214uR\t)\242O<?\f" #"\312}\30Om\276\217\244\3671\372=" #"|\226\336F\263u\315 \205\203\243\373\364s\26\363!\306)$\362\330:$u" #"\353(\37\240\215\356\31S\202\300@\264" #"{\353\32G\233\277\353h\310H^\205p\355S\330\0372\20M\256W\316\246\320" #"\320Uq\246\231f\274\256\355\320\360\255" #"\226\334\22\345\356I\224\36hk\357\t8)+I\21xE\302\365\32S\36<" #"\354\2342j\355>\266:\eo;\322\216\2707\16\207\0036\233\261g9(h" #"\375\f\355L\346\24>\317\263\0\b\222" #"J\220\36\311a}\370\341\207\330\357\367" #"\370\344'?a4\2732J\336\275\243" #"AA(\240a\262\304\210\255\212\336\304" #"\3556\236I<\23?\355w\361\304\334\276w*\332\3608[cg" #"\353\224\324\213\rm\372\377\\;\256\5\351^\2\3657\254\34\266\343d" ) 500 ( #"\257\232\"\1\217T\202R\371RGk\326ph\317T\23\331\301\357M%\243W" #"M~\263\204^\250\277\a`\324\240U\233A\325\3266kr\263g\320\341\315s" #"\16\266\224\2i\264\313\272\327\a@b" #"\353\330\26\210M\n\235\212\362{\1S" #"\301\250\rH\t\3132\203\325\365\34\324" #"\274\0x\277\200.\b\264\2215\t\262\1'\r@\317\202E\200T+\232$L" #"9\1KEy\366\354\31\376\366\335w\361\3117>\rH\303nw\206\375\376\200" #"\233\233k\324\336\360\354\331Ghu\301" #"\333o\277mh\243\340\a?\370\1\310" #"\303\373\364\247?\215\a\17\37\340\361\243" #"Gh\275\343\265\327>\346\16P#\374P\342\2222\320\216\220!\275,p]g" #"z\3532c<\20\374\357\222\262\243!" #"\316\257\262\254\234\310\324\213Z\207\355(" #"\263\342f1\364\271A\17\201\3645W\252w\3444$\302\370\31/S;8\16" #"\250\0ux=%o\260c\371\203\367\247\327Bd\305\370\235\305\264WYz=" #"\372\374\343\222\26\3\226(\335V+%" #"s\264\34\266\235&\374\223_\371\25|" #"\351\213_\304\27\337|\23\333\335\6\333" #"\315\16\275\3\373\3035:\222\ag\24" #"\331\216\350\36\23\240\224\22\356\337\277\217" #"\326\232\317`\217\207\200\353M\211*&-\26U\202\352\30DM\211H\252*\1" #",XZ'\v\334\370I2\32\273S!h\363\fL\305\233\310\230\250,\313~" #"\25\250s\255\231Dx\210`\301+\232\365\21[pK\303\304\312H\22hI\333" #"\220P\226w\217\321\317\221\325f\270\244" #"\v\340\1\221:~\273/\300u=\371\31\21\325Ha\317R+Q\r\231I\252" #"\365\300\355;*\247\361\336c9\\\23" #"\37\35\305\250\25\34E\247b\260\30?\203\327\23\257\213\301@mCB" #"\206\202\350b\202\351\302\25\356\3320" #"\230\374\214\260\322\1\364\316\6\246x\357" ) 500 ( #"\352X\343\367yY\312\2Ot\316\207\207;\246\210H\256\252!\20\364e\320}" #"xn\342\31\365a*\21\335\260r#\3V\"f\222\0016I\251\22\213\6p" #"\344o\277\200\262y\240F\333\246<T" #"\325=\205\235\a\4'\321\375\375\261\264" #"\31\23nE\242\253#\274\222\f\35l\2617!J\t\305Dz<c}\256\312" #"\367\253u8g6\236\212\4\311Ghc\26\2037\0\256\361J\365\4\301:`" #"\361k\26\276\217vp }LN\270" #"\257\250m\316\367\222\302\326\371\367\275\273" #"\16\370\261\177HE\21W\300x\245uF)\23\250\37\315\364C1\332\16\247\t" #"\204\240\221>Dy\301\315\366\263@`\22H\364O\211g\240\242CQpJ8" #"uB\332\242\324\23\20\245O\272\207y/\307\266C\367\230%\262\226,)5n" #"H\3431\t\323&\341\215\243j\20\275\247\326\252\333\bW\253\350\35`BR(" #"\213\6\257NDt\2575\245^\264\276 crY+&[\235\374\351n{\330" #"\223\264\27+\256|\325\272`\263\331X@3\202+}N\2727\330D\244>\2" #"N\253\3203\257\224\200f\266Duv" #"\3653\256\257\257\361\341\207\37\342\356\335" #"s|\352S\237\304\325\325\r`{\233C]\256\257\2575\330\a+(\6\214q" #"D\273\307Q\n>\364Z1M'h\306O\35/\365\321\4\331\364>\22l\336" #"\2555s\306\244_\307o\346\242h\253'<\201/\353S\344j5\25\212\346>" #"\3\320\347\300$\312\376\205\330\30\36\e" #"\331KI\310\230T\302\2556\224<\271\237M}H\2059\260q\24s)\0\242" #"C\31\272\355\17\372\237\344g2#\245" #"f:\305\373\25\262;\245\365\300,\335\177\331\253^l(\3149\333!T\231A" #"\306\30C\227\236\rp]\e\312\322d\250\262" #"\5\320n\23m\357Jh\354lZaL)\243" ) 500 ( #"\\\\\\(\261\270\252N\345\277\3717\277\217y>\f\16R\357\350\255bi\263" #"e\366\202\217\277\376q|\345+_\301" #"+\257\274\202{\367\356\271\343(\271x" #"\31\214\374\254\332\25\341,\271h\246c" #"\31\353q\31\200\17\376x\234&\215\360q\343\5\37\210\a\257\tX\232.&\0" #",\365\200$\243\303>\2767\242\246\274\6\376\351\16\300\270 \r\213smbP" #"^-\230\347A=&\215\363g\f8" #"\216\321\326\336\232\363\215\31\304\0\32\260" #"\320\351P\202\r\20\364\5X\272M\307" #"\302\272\331\215\201\3101R\350t\v\320" #"\371\233\276c\325\303\b\1\36<x\210\217}\354\25\314sC\355\r77j\34" #"D\nZ\255X\226C\b\f\215\203\346\353\4or\212\210\241;\246\272\326\22." #"\245x#R\311\331u\217c\206<\234\256\361Zm\344c\354f\347\375\350\237q" #"RZGg\20\230d\345\314\343\236\201!m#xjfF\5]t\250DG" #"\37S\324X6\367\275\aC\214\224w\332$\rt\347(\220\36\1\233\32\362j" #"S\b9`\304Ke\350\326`)\36\260\305\375*VR\347}\344b\343\"+" #"\320C\231\360\330Ys\22N\263\300\335\347\305KGeW|3U\201\336-\330" #"\35\327\317\367\306=\36\367Zc\223\2239\271nY\266\377\367*\321Sw\25y" #"\304\325\264n\305:\2625\270j~=" #"1\240\216\347\230\34F\365S\306\341\355" #"\272F\264\27\\\217\30\4U\21d\250" #"\263\326\267\214d\232\277?\232H\265+" #"\272\2135P\320\36\362\363\352\0\231\330" #"\370\341\324\205\243\240{$\36\374\275\201" #"v\210\214\347\246<\267X\r\32\302\353" #"\216\262\241\au\30\265\25K\245\16k" #"\322\221\353\335\312\240\3419\352}\2t\330\343\232x,\330\301L\e\251" #"\21Z\\\e>\306\33641)2\32\217{\3576f\332\236\317\21]+" ) 500 ( #"\256s<\363L\202r\326fg\225n\343\330\322A]c\24B\344TQ\377\201" #"\306s\275\243M\314D\236\205\210a\a" #"\5\374\223\331\207c\276\3661\307]\244" #"\301\251/\311\242V\366Dz\362G$" #"\324\350E\21\375\327y\343\350\222\274i" #"I\301 \254&O\351\373-\310\264\275" #"\214\336!\315\32\326\302Qr\204?\245" #"\225\235o\313(as\304;\257q\240\232\266O\27\37390\246C\322\37v\332" #"D\240\267\204\236\232JaU\321\26\370" #"\2058\250\335\255$?\357\364\271\361;\t\304\244D*]\307Xb\vc\245[" #"\200nT\273\244\0\26\327f\251\v\262dT\253\20\213\335G\353@\311\to\275" #"\365\26.//\361\217\177\371\37c{" #"\262\303\311n\207\326\201\377\364\237\376\23" #"\376\364O\377\24\237\373\334\347\360\213\277" #"\370\213\26@'\364\276x\272\343\276\305" #"P\323\324m\237\bP\353\1\255q\357v?\263Z\365\355n\3\212\351\211g\261" #"\4\275\16\260Ci+C\237<\202b\254\2304\366\2 6\340j\3\246S\26" #"\222V0*%\2\263\1W\246\337\334mX\b\367\224\b9\344\307Rb\4\323" #"\2642A\317\352v\a\202\224\nj_L\271JW<\306f@\3655\242\275f" #",\263Pq\302\316\246\356k\243\e\264" #"\6\364j\327\255I\276\260\302h\327J" #"\325\36\330\336L\356\227\32\244\1)\v" #"\16\1\240t@\303\316\16\327[\317\243" #" \337\334\\\374\217SQ\31\254\315f" #"\203\347\317\237k\306c\222\30\333\223\23" #"<z\374\b\217\37?\302\345\345% " #"\t\277\372\337\374*>\363\231\317\340\354" #"\354l\205\206\246D\315I\226P\ra" #"\360#\241e4n\376\310\1\344\241\210" #"\316\24\f\332\210\352\1\376=n|E\245\233D\272Nb\352\372\375\335~\227" #"\306\244\332\4\215\210\264\321`\320\270\244" #"$j\274\223N\341Q\204I7\34\3" ) 500 ( #"j\357\206,\351%\216|\315\233%Op\224\4\223gQ\334x\274\36\226/s" #")+\aL#Ng\b9\376\371z\334\360K\3271\254\e\3\236\270\351\251\216" #"\241Y\343\272I%\242Q)\r)\25GA;\35\217\321.\320=\300t\211\e" #"Gq\306s\206\b\252]\a\221\4\177.2\2\246\336\201i*\364+&\263C" #"r\373\230\3102\350\35\f\6\355;\261v~\366\320\355P@%\341B\220\307q" #"\205\222\364\320\300Pwjg\306\365l\320\262^6\a\6\214\206\f\6l\349" #"\352\306\205$~\4\16j\353C\222-" #"\240\206\334\27\221\246\22)=\334\277#" #"\340!\355\246;\22\226\223\215<\215g\302\365N\371}\3468\204M>c/\373" #"o\211\370\373\242\3\323{\21Gj=x\221A\a\32\211Fl\304\340\347j\243" #"\303\310\314\307\372\304\243\25\321\1\17\350" #"\232\6\355#\241\tey\273+\236[\2675v\313\361\263\216QR^\267\242\r" #"c?\305g\317{P^\"?K\300\262\e\3175'\223y\0\257W\n\345\345" #"\2153\314\221\315l@\211\210-_\356" #" M\303\224\16\211\337\303Rd\357\335\207c\374}\317b<S:\357Q\212\214" #"\311\322q`\352\3573\233\336\a\250\353A\36\0\337\3471\220M)9%\305\317" #"$TmB\3x\330\200\nx\342\346" #"\317D\222\236\311\260\347\245+\327\367\305\nCL\324\4hZ\2\347\376oTe" #"\260g\223\302\357'\v\236\201\320\220\330" #"\273Q\361\354\254\t'\34\302m\265?'\261\2222Fr)\222l\322\2458b" #"\30\201\226\210\324[\321x\254\267\320w" #"&\267\211\\\353\361\225\343Z'6\234\6\377 \2424'\37,\322;PC\363" #"\254}F\3+O\344\227\2\35u\365\31\222\306\360\212\224\2636" #"\333A\351,\334\23n5$\330u\20\34\340\372\216s\246M\242V" ) 500 ( #"A3\4W\4:\335M\252\215\5\17\\Oa`$@k\330L\5\317/." #"\361{\377\372_\243\326\212\233\375\r\276" #"\363\355o\343\177\377\375\377\3\277\377\373" #"\277\217\267\336z\v\327W\327\370\366w" #"\276\215\a\17\36\340\365\327_\177\261J" #"d6!\311h\370\\\253\245t\377\376\1\220)x\244 N\366\375\345<\322\244" #"\317\235@G7\200%\372jO\334M?x\330\242\f6\333\305IsYX\25" #"\221\21't\245\220h\362\237}\337+\17\337T2\260V\354 \365H\271w\346" #"\0031\306i{\340\337m\257\365\244C\30\230,5\322\0005\231JE\2749\232" #"\376<Y\357D&\30\t\261\344\222/\253\236'\215\333J\231t\0\30F\22\264" #"\2\26\30\243\205\370\221>\331m\226 " #"\4\271\31\255\251\275-\27\27\317q~~\17\273\355\16\222\4gggx\363\315" #"7\361\306\eo\340\316\235;8=\333A\272jJ\376\317?\370!\316\316w\370" #"\304'\336\300l\202\361\36\255C\5z\321\4=\261KPK\362\222\\\262y\30" #"\302\264\356B\345\215\360\277\247i\302\274" #"\250\260\274\330\203D\32M'1\20\324Ui\nR&\235E\r\27\222\37\310/" #"D\220\202Q\31\310R3\276\221:\354" #"\326\23\312\2241\317\313*\220\213\231C" #"\253\332d\20\3\347c\307\204\260\271\370" #"\363(\277\344\357\305\350\2\325\205\30\301" #"G|\220\f\256\226:c\223\313J[" #"\226N\220\317\203\235\366\307\1\2\327#" #"\242\0<\270\216\2\307\300\200%\235$" #"\350IpX\306\2643\315\332\3251\261\324f\3659t\30q<)\27\261-\325" #"\16k\330\3\3419\306\347\37\205\360\247" #"\251\254\304\264\233}&\21@\336S\354\32=F\206\271F~\237]9j\322\327" #"\16<&_\314D5k~QN\215A\313\270\a" #"5\20\361`\216\300\221\367\23\220\306\234\25\25\23\313" ) 500 ( #"\322\255\1\252\233$\220\177\6\254d\27" #"\2561\6\223\334\343#\370\f\352\16\275" #"\251\376\263h\3278\321]t\343\235i" #"\364\25\2`\230Q]\a\226\274\27\275" #"\364\265\234\237\6\1\204\4\22Dt\370" #"\312@\263\207\324\325@\215\327\374-\6" #"\222z\235\3\265\213\367\270\342&\313Z" #"i\304\221\v\273\336R\212*#\210\r" #"7\300\272)\257\367\216\245\257\2071\304" #"\363 \253g\332\234{,\346`\306\337" #"\231\363C\367\204\306\221D^/\4\322" #"\ra\225\204\5\35\254\224\rT\373\230" #"\2361\20\276\326\232\363\24\371\275K]" #"<\320\211\301w\357#\231\241\374\30z_=\303\27\34C\330S19\346\272G" #"\233\21\223H7s\261\21\314\32\222\364" #"\f\321\351\0K\323\246+X\203\0240\232\225\30\244\373};Wz\255\35Z\255" #"q\313\226O+R)\356\243\201\224\362y\352\2754\0\331;\370y\24\e\0\251" #"54S\231?i\325\32\270\222\365\204\16t\336\35\250!g6\242\316\223\214e" #"YlLj\340\370j\326\216Zu\340\3041 \221R\362Q\304\251d\245\326\344" #"a\323\206}7\224\30\254X,c\17a<\237j\201B\261\346\301\306D:\253" #"\215\221\246\301\246\244Qq\324\263d4" #"1\321\3464E\326\264\277\203U\240\n\240\30w\23M)3\254<Ztc{" #"\211\tP\250\334\232\37\255\215>`\330FE\231\273\5_\201\233n1\361<k" #"\223\3674\221\216\302\202\244\356\201\6\301" #"\177\370\263?C.\5[\21\274\373\356\337!gA[:\356\336\275\207\375~\217" #"g\317\237\341\321\243G\370\364\247?m" #"\347|\370\n\356\353\350'\371\22\25v" #"\r\240\34\253\255\353*mT\261\341\363" #"]\352\202\204\354\200X\222\f\311\r\215j\fa\277\213\260\347A\3J\244" #"\26*n\254\372(R\336\301\230\4(\2235Qv\370\336\3603nt\210\206" ) 500 ( #"\341\373\370\314\3117\326`Y?/\347\tuYWM;l\272\245\r\324\32\310" #"\267%\a\0062\324\305$W\243\37\326\362\375JrP\0\253jP\233\270\332\363" #"P=tr\340\31s\275Xa\34\361N\4*\3703\332\202\234\23\320\23\246I" #"\225\e\n\265*\177\356+_\306g?" #"\373Y\234\235\237\341\354\364\324\211\300b" #"%\302b\345\243\3450\333\302\16c8" #"\214\260uz\232\1\224\324\221\272\0(\3462\330P4\34YD\342\242s\244\261" #"bV;\25k\326\n\24\6\264\346|\300l\222=\265U\347\1;Rd\245\24" #"\t\213\302\205\341\301T\24\330t\30{" #"\37\\\222Z=s\362\a\325\315\344\210" #"(\212,\343`\307@\207%\234\336\273\17\217\210\1oDQh\344a\377\317\346" #"\236\30\204Q\17o\312%\30\225\356\334" #"\3278;\232\301@\314~\342\306 \17\226\277w\34\20\353{\325\220W\214A\a" #"t\364\314\350R\32]\335=\31*m" #"\357\363\214]\22\272\225\252\326\237?\236" #"E\344\224\266\336Q\262\226\244jkz" #"X\315\321Q\355`\261F\233\251\f\304" #"\211k\36\221\367\350\320\2716\212J\363" #"\310\210\1\3c\342\22\237\e\271f\353" #"\203\366\342\253\366\246\324\34\343!\215\300" #",\4\274Vj\3232\252=;\205W\3241\366\201z\254\366gm+~x\f" #"\344\217\223\4\32o\30\322,\"\241\354-\20$kH\320R\20\307\2\307o\215" #"g\223h\34\334\210\262\331\246\257\366z" #"\357z\316\202)\323\240\26\352\254\267E" #"u\201G\302\240\2777\236K\a\e\240\\\35\304\326\345\30m\215\201]\f@\31" #"|\361y\347\34\364>\217\202=\245:\351$(\226\272b\360\36i\2\215\315A" #"DQ\302^#j\320\241v_E\374\217\220\350\326\f\255\266\317Y\32" #"\222O\204\32\34\342\30\330\371\357\362" #"\236\215K\330\5VA\37\232\226\234$" ) 500 ( #"\266T\25m\247}tE\a\335\26/$\201\321\256\304\344a Lme3\216" #"\237\271\276\207H\eQ\3321\314!%\333\23)i\305\203{\264\217{k\3743" #"$\2211\370\210\337\265\266\21\315\220\316" #"5\2\177lO}\r1\252\24~\355\266\356L \371\35\322\213UV\272-\266" #" \247(G~s\0\0 \0IDAT>\2^;\244\2555U\334a#" #"\f\317fk.\245\a\20E\25K\2\224W\252\275\5\f\n\0\221\214\222\25\331" #"\206\5\215\222\354\276lD-+Y\274O \370\307\260vn\3\4\236\310W;" #"\353\255.&\323I\e\252\334R\245\317\211\252+trp\207=\346\344)I\312" #"\375\5\225)@A~\3}x\r\275CR\203\330\24N\b+J\31 \27\277" #"\267\325\263\25(\255k\235\324\21M\267" #"g\35\316\v\271\360\332\b\16\274\371\371" #"7\361\326\367\276\207\367\337{\17\17\36" #"?\302\317\376\354\317\342\336\275{\330l" #"6\370\354g?\213\223\223\23\a\266\226\271:r\35\317Y\244\23\3045n\30q" #"\216\376|\335 \312\373p\e\r\362\313" #"\255\211\252.\310y2pf\320\255\b\372Xz\n\240\2\t\316C\36\317\266#" #"\225b\300NFO\212\334f\21(e!\243\367\5T\355\241\255\342}$\211\266" #"\266\255\252\304c\355\311kW\373\342\317\334hyH\3,XU\251\315V'\31" #"UTJd\n\364\266jm\336\350\330s\326>\16\241\304\"|\17jb\316\344" #"\266\233\377\\\333\3`(>\305s\36" #"\355\203?\323`\373\313o\376\346o\242" #"\224\202O|\342\23\236)\16\203\256\231\323&\t\256\347\331%lnoo\225P" #"^9\246\225Q\276\26@ \342\233\231" #"\6\260\213B\323\350\335\271($\204\247\242h\230\6\320\r\34U\247" #"FQ\273d[\3407\365\16\227\220\1\b\364\332\342\247nB\342!" ) 500 ( #";\353}\5\231\32301\273\351\275###\247\311\364\363\200$\5\20C$[" #"\322\2117\350\303p\265\212&C\352\202" #"e\203\270\371\217\233\334\326\31GvdwYf\323Q\314f`\273\2272\335\20" #"\210\352vR\3030rn\242\223|!" #"Y0\243\373\242\322\300\32\t\211\16\306" #"\203e\243r\350\2325\344\222\225\37\343" #"\216\357\305\256M>\357\245U_\363f" #"\245\303h@\216\321\326\370\375\350\335\3" #"*\rJ\254S\333.\277\231\220\276\224" #"u\0z\314\341>\316\370V\353\t\343\302\206\300\311\3m\273.j7\307u9" #">X\"\202)\27sXk\264\214\1\22262\255\273\307\273N\301Pq\377\256" #"\306\216\263\342S@tzxO,?\307ugU\202\v\24\377\316\257\31J=" #"`I[\e\230\306(\305\330Q\34\367\4\25\bzkN\323\200h\311\270\267\212" #"l\303\a8\251\351xmR2\24SD\35\355Qw5\321\221\250p\302\277K" #"\336\360\311\311t\372w\243\222\260\336;" #"+\204\22\307\224\226\261\347\211\264Q\237" #"\224\335\371q\257\304\240\351\30\315\247\374" #"\315j\377S6\314\232\16\371\236R\nPUf\r\35\220\274\16(\371l\343T" #"\266i\32M\245Tf`c\37\320!\320)r\213\361\233aN\245\206s\266\272" #"O\34\243\350\353\252X<;\307\177\37\317\39\222\2540\364\220H3 \362D" #"\325\366\16\3\334\0165\327\31j\273\30\0206D{2\2\216(\t8>\237\332" #"\235f_\363\b$cr\e\21\350\261\317\326T\1N\32\213/M\346u\342V" #"<\357\255\n\b\362erQ\223\204kcr\b\270\272\4\2530\242\331\211\226\343" #"\233\a:\24\356\347\376\356]\223\332&" #"j\231\212\24\300\264\226U\254\337\320>\273\16\301h\324\214\200\320:" #"\261\201\243\272\305\324D\22\3\200\332V~\243\326\203\373r-\341k\311" ) 500 ( #"\274\243\232\237\317\376\271\200\203\255\332\274" #")jKu(AV\240\303\20[\312Oi\223e\365\352\16\223D\21Y)\210" #"$\311\230\227\203=k\373e\3\242\342\376$\252/\"X\346\5o\274\376\6\376" #"\371?\377\357\2217\5%g\\_]+\265\314>\204gnYt\332\231\244\16" #"\27)\27\31\tb\255\253\375\243\353:b\6V0uk\214\30\207\t2\4\246" #"\321\321\235\253K\360c$a\3\231\204" #"\214*A.\305\223\231\3255\b\224\353mTJN\375\343\230\347V\307\344OR" #"\347\370~\265'\223Wv\230(0(\205\253z,\0&\364\36\324\36:P\253" #"\1\226\242t\n]\ax\325\225>]A6\215\353\252\201)z\37\306\2636\362" #"\241\236c\0057Zo\366\331%\\\17c\203\305\336?\246xF\356\3671/\237" #"k\ec\31@\2250R*Ho\274\361:>\376\332\353!0\323\17\231\347\31" #"\20\330\214h-\205\357oU\356isr\342es-\r\222\e\vhw\241u" #"\"\313\4AF\311\331!|@)\2\255\352\201/S\206\364\214\245\316\350]\371" #"g\\\300Z+\252!k\21\22\327\0\240\"\362vH'\0301\367\2328\275^" #"\0\254\34M<@lzZ\226\5*\257(X\272\216@\234$[9X\3\255" #"\3243\320\23\226E\21\271\230\335\305l" #"\225/\32\243\370P\b\333/\206\2565\b\22g\216\333q`'\373\262\214CX" #"\302\241\214\316(\242\21798\206b\301" #"\4\177\277\224\374RT\220h\262\344\344" #"\272\200\272^\232\2455w\17\343\336\234" #"\263\324;2\222\v\326\247\256\216M\303" #",u\22\361\372\370}\374\31\377;\226\2303yyP\247F\304\341\30e%\225" #"\"\32\252xO\361\277\217\237\371\vA\22\215cx\2061[\364" #"k3\276\265\276\177-\243\243\357\323`\250\266\5q+\210(\35A" ) 500 ( #"\210\234\202\373b4H\261\361)6@\305\304 ~\217N\206Y\eG\17TW" #"\210\3640\330\303\313G\16\347\372;\334" #"8\303\312\263|\207\241\354\224a\323N\375\266zO|5+\25B\202\264\233\e" #"\247H\35\31\225\216\325\2029\242\22\2" #"\n\f\232\0\313\257q\37\1\306\23\305\320l<^\303n\17\203e\340\210v\360" #"Y\263\"\23\317\3651\17\273\5\243\277R\30\350*YE\372\17'U%\2106" #"\27\3323\2236\2028\362}\271W9\326\231\324\237d\262dl\366\365dD\304" #"\365w\275\304\37\"\205\16\r\204\217\203" #"\334\370\254\271\226\274\377\271\252\216h7" #"LARRN\273\rW\320\337\213\225\206\341H]?\232\366\27\0302p\216\352" #"\303Q\272\270o\271\26\261\"u\264\351" #"\25\274\2205\222{\374\212\201.\260N\276\"\a8\6\330Q\316\r\200%\373M" #"\323\342VQ\273UB\32\3\237\242\0\16T\372\321\313\273}H]v\6\\\275" #"\333\36xqB\246\333\336\4\224\274Q" #"\337\223G\251^\367tC\235\233\2010" #"\343\334v\300\236\271qgEP\227\31" #"\363\254\252\5\5\3\251\r\361D\350!" #"\311\310Y\247\377\211\214g\322{\35r" #"~\214\315xv\334\16b\225\314\350\224;`\4r\26\24\331?\364\25\233\315f" #"<;\213\t\0=\213\350\202e\356P\25\245\242\233\317\2569\242x\352#\365{" #"\226y\306\325\376\32\227\27\27x\372\364" #"C\354\227\331\207\3\315\363<b\32D" #"\255z\375\316\310gna?\306\347\302" #"\357\3243\36\0007\31\25\4V\b\206" #"\375\35\353\20\375\16\317@\264sK\255\32<\2675\240\222X}\24qy9\225" #"\317\323@]\e\213\325v\37#\234\4k\230\304\247<\24\177\350sZ\257\36?" #"qO\271\217\260\275\317\207/b\24\r\260iu\360" #"\214Y\235\0\304'O\366fq\233U3u\3175" ) 500 ( #"pR\240\356Y\306~\320d\2577\0u\265f\361|\302\366\357\322\352j\255\243" #"]\343\357\3514_\343I\227\242\334\34\357\242\16hc\202\32\317y9@2\263" #"\233\204\215\225\310\a:'\300\252\211D" #" \302\221\266c\nSJ)\214\367\25\264:\204\210\265d\1\25x\316#2\317" #"9cS\246\21\24\1(I\221J\221\361}\275+\332\304\222T<\24\303\221\16" #"\203\352\243E\203\241\213\1\205\243n=" #"4\337x\241WK\232\3749\221\331\343" #"\240-\311h\22\21\250\1\221\276\346\307" #"q\35{W\336L\311\224\371\t\a\331\3204\276\207J\aQ\2676\36\316\344%" #"\376\244\370O\311\276A\370\214F\206\272" #"\346\340\325eQ\344\350h\315\242\1\210" #"\34'\276ou\35v\337\275\233\256\"\210(j)}\365}!\201Y\35Po" #"\332k\276\16C\306e]\306\346u\362" #"}\307\317\374\370\363c \21\345\214\342" #"+\6\322/K\232b\340s\234\334\214\317\242\203\e\315FD\0H\261\1\203/" #"\265a\326\265\256\t\205\32\271\341\374\201" #"1\360\4\376=\35\307]\371\361\276\343" #"\375\352\377\217\3228\275G\274\367R\6" #"\262\307\317\251\255a\3212\211?\213$" #"\221r\264n&\215\211\203CLa\257" #"\307\21\220\343w\364\345\367\20\236\237\332" #"#>WA\316\5\224\336\tO\314\r" #"#\233 \320\325\311\3069\354\361\276\242" #"\263\31\316E\257G/a\335\344\24\317_Dr\6\"\315\241.!\361\264\337\257" #"\260\322\264!>K\37\211U\223\3709\343\372D\4\324D\5\203z\v\266\20~" #"\226\323\340~\v\230X\214\227\216\316\326" #"@g]m\220\325~\215\347\273\366\346" #"\250*\357'[\303Q\235\227\360^\216" #"\370\364G\266:/\253$\262\215\344v\325\240\3\340eg\232?\347:\373" #"~\356\243\n\20\375P\374\234h\373\243\2\a\177?>\317q\306\263\363\245Y" ) 500 ( #"5\350:\333\324\354\177L\3204\300\320DH\355\241\236\3\330s6\347N?\323" #"\211\2\256\223\213H_\0`\322Y\213" #"\rs\350\20XC\215!\210\324\353\355" #"\341>hC\22\4\311\0\227\224\265\231" #"\t\20\255\32\205g\354\225\0\356?\323" #"\17\347?\234\242'b\272\316\276\226c" #"\255\304\320b\377\234\260\276\32\230\331\336" #"\23\226\303\307\336\"\"\27\237S\2635T\264Ve\255Zm\350\250\220\ft\254" #"\237\361j\217\0\34\32\251v1\2155" #"\211\200\4m=;\244\t\222\21\334\213" #"\250\353\n\360X\310\277U\3441\252\3500\271k\2559\347\234\373m1nq\\" #"\373X\321\344\317K\36\240S\17\266ges\202\314bJ\342\262q\4\v\226\305" #"\264\374C\260N\344[\367\256\6~^\2555u\224n\231O\r41>\343z" #"4\311\217\225\277\204\344\215\247\321\206\260" #"\262\250\203*\2542\343\222\247zO\305" #"4\245\205\264\24a\362\263 %\236\337" #"\265\275\5\206\244^.\31H\266\327z\263u\251NS\340\2653\316d\323yZ" #"f\242\242,\225R\250\331\312\n\306\223\270s\347.\236__\17\243gA\2\345" #"\261t\303\31ln\31\257n\260a\240\30\234\215 K\e\324\262\227\3454\250K" #"\275[\267\342@7\"\0224t\263\307\3\320L\301\16A\255\312\275#:d\247" #"4:\237\326\32\246<tlc\220\305" #"\362\204\350\277 \320\206\205\271u\364\246" #"AK\27\250\360~\b\\=\30\344&4g*D\300l\303\361\305\303\245Ar" #"6\3\240\31TJ\202<\r*C\2079l+SF\203~\34$\352\4\230l" #"(LF\237;\304\2\4\235\202\263v" #"0\274\377\336\2257\352\323d\320\315\331" #"\257\371\241\264b=\334;\313\n\307N3\31\2325\317\263i\344\326\325" #"s(\366\fb w\234U\257\357\255\255\2^\356#\375\331hn\212\207" ) 500 ( #"\260\333^ Z\312\317\236\355\273\342g" #"G#\32\203\261\230\b\305\337wc-" #"\200\231\333\325\1\365\200\305^C\221B" #"\374\331\346D\36\241~6\225-\330@\23\251\vl\236a\"\301\240+r+\371" #"\2354\214\274\16\312Ey@x\24\304\35;\377\230\24\1\30\32\277\246\252R)" #"v\36\202\24\276\177\235\345\253A\315Y" #"\307\366V3\300\307\252$\35qt\251" #"\312\t\211\20\1\244c\265\177\302z\303h\31Dn\2266\3B\276\344\b\316{" #"\37T\234\30@5tG]\331l\242\333< 5/8A\370\375\221\36\241v" #"# (D\226\371\374$y\260\231R" #"2\256\364\213\t\30\255\e\321\344\224\222" #"\r\20\200\361\374\324q\260\272BA|_8\356{:<\f*\207\357\347\326|" #"\bI\334\353\236,\266\27\351NJ\317\2\220F\360\246A\302:\310]\227i\365" #"\341w\31M\235\\;\"2\307\301-\327\202\252\0\334\217\374|*7\304$\231" #"\366*>[~\16\377>\226;\371\212" #"\276\251\267\365u\264V\255I\264\203\356i\\jB\316\2239w\322X\240([" #"#b,\250\213U\24\250\364\320\25\275" #"cP$\242\35\373\254*\230\343\361u" #"\22\205D\301\322}\357\35\313\254U\324" #"H\225\352+\317\222|\37\352w\a\373" #"e\3739\242q\372\337\361\314\17\304\35\2643FC`S\e\265\222\351\337{\17" #"\2125X\357\347\336\272N\252\242-n\315Qn\6S\311\324WR.(y\203" #"\16\35* F\25\341\261_%\321\242\364\243&\320\nd\0\236z\17\252\22\301" #"w\25\e\310\303\246+\221\21\3\320\217" #"\1#\341v\312\234\260\1\26\243\177\247" #"u\345\336\n\37[\f@\265\n\352\201\274%5\276\357\354\374%\21\345^\372~" #"\4\346\203RY\320#\270\326G\217\203\357o\335P" #"\"\252f\300\2049\356\177~\347\313\300\36\21\0a" ) 500 ( #"\242\32\375\3521\5\200{L\317\e\237" #"c\eM\244\335\202u\21\3\e\25\201" #"\337\330\260'~\246\307\21\360\\C\317" #"\235\f\373CJM\4\217\330\177D\377\235Sv\260\4\214\251:<x\216\317\236" #"\347*\245\254\207r\312\305\307\21\226\224" #"PR\262\345\5\26\0\233\355VQ\265^\275\222\3602>K)\5\311E\347\341" #"\216\340eh\217\a\223\20\177v\25\35\25M\215y\370\334a\240,HX\5:" #"kJB\a\200\244N\225FQR\362\t&)Y\223\232}~=2\366\314p" #"\231\231\22iI\241\254\345\206\374(\0" #"\362\335\332\265\t\216\367\234s^\5\250" #"\374\34\347\r\371f\324\314\247Yp\334" #"Dg\225C\224\333\334\1\347\276\36;\310\350dj\253PN\261\6\5\213g\234" #"\303\221\36#\v\f\244\304J\305\303\221" #"\215,<\347l\22H\202\230\275\16\344\355\305nH@\203\354R&\17\6\310\321" #"\202\5\0\260D\341\330\271\35\a\f\361" #"\260\322P\353\276\323\362a|>\374\f" #"\337l\340\2410\16\325\21\232\35\r\302" #"0\6\353\262\310\313\2pm\210H\210" #"\206\3478\371\340\237\236\340\311@\237\275" #"k\231\316\245\303h\37\274\246\321\264U" #"\273\362ls_\1776\317U\374\377\343" #"\177\"r\312\347\31\3\234\225\23\361\255" #",+\307\222m\254\344Ru\312\r\367R\f \270\37\25A!J\241\16\260\332" #"s\216F\177 \2140\365<M\20s.\212\204\t\260t\242\257#\300\e{," #"Jc\211\a\267\36@7\333Ky\320/b\360#]\0\237\352\306\321\347cM" #"\217\23\240XR\3\6\312\256\\\342\250\200\261N\272Zo\210S\232jo\336 " #"\e\203c\".\272G\212\257U\226d\34yAI\31\31#\200\216\353.|*" #"}T\226\210\f\363\276\233\300(F\342v\366x\337" #"so{\260\30he\2006\212\306\347\309\3621i" ) 500 ( #"\202\210\0173\1\240=\02060\1}\375\335\216\302\230m\341{x\35LZ\324" #"\226\2569\361\\\17_os\252\f\220" #"b\222\23\3\220\326\264\377\200H\242^" #"\307P\315\320\304\256{\2678'\274D\ri\373\32M&mP\5\23C\225e" #"\n~\203\301\233\275\330\370\353\1#\21" #"\301eA\203\6\27q\352 \351\0\361}\321\356\216aCl\332\16v\300x\224" #"\334\e#\371\241\366\370\272\242\30\225q" #"H\17\\\201:\0304\256\222\250$\240\\\344\336\24\235kD\336\3j\350\3&" #"\230\324\263\361\272\363~\262\3710X@" #"\235=\320\361=h\211\201V\307\206\335:\16X;\240tC\6\302\2\224\242r" #"Z\220\266\232\270\265\34\241\230\3255\265" #"\255\302\v\1\204A\256\6o@\201H" #"\201\322V\324\336\324E\313\364\307\311\230" #"\237S\332\200\220%r\277\227<Y\0054y|2\345\311\207!\264\312D{\31" #"\376\331\316\330\262\25060mPlP/\253\363i\261\231\250zK\244A\362\25" #"m\336~\277\2675O\236\310x|\206\216e9\240\325\0310\37^J\361\270\212" #"\367,\2tN1\354PJ_\322\373\200\300\372A\326\325\341U\314x\34\203u" #"\240\e\330P\262\311\245a]\311WZNB*\246\a\250\320\257f\vI\222\363" #"P\213\26lPJ\301\371\356\324\262I" #"8j\31\35\254#L\356\354\207\263\210\345z\0322\276_;\353\23z\23$d" #"\210MP\313\341\206G\240\241\331-GT2S\0F\326!\"^'\312b\222" #"b\275\243\315\v6\323\344(\n\235." #"\17\t\257\237\3017\273\341y\375\307A" #"\21\203\225\30\34\214\22\304\340x\372P" #"\bC\263b\311\207\2072\312'\361\263\31\233h\231 Y\203\303Z~*nN" #"G\307<\363\355hKwC!$\21\310(3\3042&\314\21 i\206H\304\212\344uJ(Q" ) 500 ( #"\302&\32@^\v\0\37\333\e\17\n\367\3K\347\211C\5`\377-b\245{" #"\375\223\16\232\e=\242\217\334K\252\274" #"\320<\303\324}2J\225\307\310\222\a\0Vu\210\16=\"[1\31\351\1a" #"d\224\24\r=\17c\334#L\362\242\222C\314\214c\t)\356Y?O\335T" #"%\311{7#\333{EFGk\v\346z\0\4n\274\3439\211Y\371\330K" #"\374\273Q\236=N\6\3069#\242\323" #"C\320\247\216\205\16\327~\352\177\37\313e|u[4\6&\316\367\v\3171^" #"\37\235\257?\aX\230l]\273\34H\243M\f\243\341\3408q\343\275D\264X" #" \220\246\245\335\324\305\22,\261i<" #"\324w\34\237\305g\34\223\3\376\3748" #"\341r\273\27\223\225p_K\250\34\304" #"u\216\353\306R<0\366\267\371\361\325" #"\373\370\"\332\315\375\305sr\354$b" #"\240\32\367\242\210`i\315\203\305q\277fS\\\207y\320\262Z_s\220c\22" #"\32\327,~G\274f\236\347\245V\333]\203\277\272\2\n\216\326\58j\226\v" #"\24\224\2706\365h\215SR^\242ww#\n\361\217\340\203\266\221\0255]'" #"\r\"\364Z\372@\323A\344\310\244\2172\274B!B\36ehR\312\341|\265" #"\16\206\t\307\t4\0\347SF\377H" #"E\222xO\255\251\34\246\312\225\35\255" #"\301\21%\300\327>%p\324\275\372'" #"=\317cO\350\232\360Y\304\304\236M" #"\242\253\363\24\374\273\b\0\243\336u\0" #"\222\225\217\236rB\311\59'\b\324\207![\363Y\330\247~\275\1\31o\25" #"V!f\2qL3\t\b\256\4\352NX\317\225_\316VmY\254\22\1\345" #"\312\267e-\337G{\3742\320 e\255\274\16_\303\276\27\263}\213\322\251$" #"%\37\373\34\25l\370Y\321V\3063\351\b{" #"h\312M\222Pll\356\342\317V\223/\35W>" ) 500 ( #"\20^O\336\333\bZ\207RI_\311\221\302m5c\235c\37\240\377\37\a@" #"q\230\214\322j\306\272\b\4\35\31\25" #"\320\21\274\313\342\t\203?\23\373\263\210" #"\270GP\304\273hCs\327~\206\272\34)^\34\305V\253X\2635\265aX" #"\277b\234\346\347\205S(\372\242\rW" #"\t#\272o\255\243\212i\276\326\6\231\n8qj\374\216\6nQ\256*n\312" #",\202\355f\3\312\5\21}\321\314\227\6_t\234ffYEg+3\213f" #"\246\310\0->\34\215i\327\210K\314\4*\340%\2)\332T\307@4\23\331" #"\265kV\224J\r0\273\1c\231\177u\270BvF:F\\d\362q\373\321" #"\346\231\222R\32\320GI\222\257uP\247\306R\5\251\325-T\3237\244\fS" #"\fxWMX\246\316\220sB\355\326" #"\25\333\250\235\247\327\254\374\351\320\374\223" #"\224D\336\4hKE\267\21\263b\b\363pDbh\376\330\214\374L\6\364l" #"D\31\201\217vZ\366\16\317\6\v\e\316<\b\204\6\350M%\344\372\262xg" #"oD\310\306\263\340X\327\221\271\331\371" #"}\3019\366\316\321\320\226]\347A\362" #"g\307/@P\225\201\262\370?\314\350s\0322PlZ\364I,\253\300\307\20" #"\235\200x\35\243e+\304+\354\e\313R\374\336y\16\273Z\noFJ9k" #"\2wt\300\217\367\341\361\271\350\235\272" #"\262\375\5\303\21\345\212\34YL0\344" #"B,A\201\227\241\201\276\272?=\237" #"D\224L\332k\325\364\223\274\313>\276" #"\"*8\202\376\340\334\351\314\370\254Z" #"Co6\264%8\214Z\27\350\370\332\201N\23I\20\300\21U\226s\253\241c" #"\325\272\350Y\272\323\300F\237a\324\376" #"}\231\263\212\311N\f`\375\\\205g\21\257\351e\216\231{\272V-" #"\231g\323\25\225\360\234V<\354\243" #"\317\346\347\2656\356/\347\254\357g" ) 500 ( #"\200\20\222\212\2343\346\272\370~\215\245" #"\341dg\21]+\v\324\266\354\253\353}q\22\340q0\r\277V\v\0%\354" #"\3114\20N\276'NY\344:\3065VP\204g\216S\223\6Wq\25<*" #"\330\357\377\37\21\317\326\372\312\207y\360" #"^\200\16m\270\351XT-(g\17\310EDe2\321\321\253\0\215g\331\22" #";\1`vZx\336-\274-\1\3148\16\2424(i\256\232\301\353*%\3" #"i\3709O\212\302\336T:\e\367FDi\217\222\252\336\341a\201\b\232\220*" #"$\256\3160\222\256\261\336\365%\317\30" #"\350\326@F\241\t\263\213\266\227\212\363" #"\210\315vA\1\245\276\250t\26\354<" #"\272j\223%\364\255\317\206\254+\235\213" #"T&\232c\321i\21\332\240\216\265\312" #"\320X\263\262\332\a\234T\330\372HR" #"k\323g\350\322e\214\203\350\227C\2" #"\311\30\247\365\212\332f\e\36\322\300\352" #"O\"\r\31\rI\224W\354\274m\352\16\207WL\332\342\363\371\377\371z\233d" #"Y\226\3368\320\21\221u.)\223H\265I\306\211z&\31\247\255\2454\325\37" #"\305\355|+k\231f\234p\3\334\0\333Z-N?\276S\31\201\368\34@" #"d\235\247z\366\354\336{NUVf\4\2p8\376>\276w\305\4\323x_" #"w\230\3357\356\365\246\200\243l\177\217" #"\fu\302#\216<\355\212\367D\227\263" #"G\271\316\234\356G\257a\23\323\256p\26<I&\202\330\r8\355\265m\340}" #"\277?\316/\v+\303)4\300&\235\214\275\370\377\300\205i\214\372\362<4r" #"(\300\361\275\370\235lR\300\316\16\227\235)x\206Og\302}cpH\202%" #"\350\353\vn\201$v\b\242\252\351U\t\257M\22\245~z{\374\377\326\n\203" #"\311\334\323f4\25g\250\317\203n\347w\23\230" #"\221e%\343\220\312t\262'\337}W\1\234\331\300" ) 500 ( #"\373\255\360\353\t\204RA\356\215\345\36" #"M\313G\345\333!6\276\345\247\376\372\372\205k^\30\2431,\351\0ufz" #"\35\36K\367\232\264~\36\"X`\257y\243F%0c\355\0\34\327\213o\4" #"\r6\32\330\3668@\210\265\343u_\257W\345#%\370\241\207\304P\357\2266" #"\212\203vz\260f\300z\307x\3256\266pDK7\201Gw?\252gY\274" #"\261\332\272\374\\0\300\312\327;<Qd(\211\aH\262\302=\275[\201\340Z" #"\213\314\374\336\331\312\250\256/\345:2" #"\234V\216\320\31\202\2\310\200)\345E" #"\26\211\371\341W8\f\241\360P\367C\306\233\5@0\216\263V\313 \e#\362" #"\325\252\5\231^*JR\350^\271\244\n3\351\236\372\237\247\203(%\332\25 " #"\317\237E.\235\214(\220\"\32rQy\302)\17M\211\225\203\330C\353\245L" #"\273S1\322\b\350\177`y\vE\356\316\366\224<\236N\16\317\351-9\261\352" #"\357xD\23P\321\215\36\246\326Y\322\337y\r\26/\370.fiG\2533\201" #"\357\362\346W\32\252d\322B\216\367\315" #"\224\23\vg\202\262C\347\262ri\r" #"\275\370\244\257\255t\236X \340\4\355" #"Z\213\17\200\332\366\244\203\337\3\0\303" #"\360\276o@\305<\300c],\235\364" #"\363,\213m\215\237\357\235]3\334\267" #"\354f\0O\304\304\256\350E~)\r\210\272D\271p;\f\266&,\1HG" #"\257\3\376\276\237\305\366\324\36\302N\226" #"M\262\257|\325\16\224\273-I\331^" #"\213\34\237@}s\216\341\310\341(\4" #"\215Q\354\211r\0\312\370V\352\234\34" #"\2704\310\217\216.\26\317\328\f\311N\355\215\3557\326~\a\350\\\330[ " #"\r\301\266U\27\a\330\231\6\322\367>S>\332\264M\311\325\336L\3" #"\200)_3\362#G\331X6\331/\335\241\347?\326\316\325Q(@" ) 500 ( #"\221\265\232\204\201,\234>\317.\22\3" #"h=\372\271\244\303\17e\214Qg\0220\300\35\270&\35\a\312\v\211-\265+" #"DtO\271WD\25\266\203\5ygDO\331\2b\315\35\252\215\331Y$\326" #"mO\277w\312\314F\262\6\273\3229F\200\335\4Rm\255:hT\247\206\224" #"O9\31\303\260|\341\336\374\177\355\e" #"\32\342\240\26\234\212`\230\221\304\353\351'Zg9v\275\323P:*f\351\270" #"\3\226\221\25\200l\364\327\365\212\266\244" #"\225\356\363$\e\315b`C8\373\326" #"\322\27F\234\373u\313\319\323\365T" #"\364\356\356\354\333\35\3463#'\222\227" #"\330/7\366\334\327\364[\311\335\216\250" #"\\\16mY\216\357\357\337\3309\1\221" #"\216\346\e6\23\225A\203\213\3060\266" #"\335\363\226\252\"\331\356N3\nw\351u8\270\216u\204#\237-]\324y@" #"\377\376\213\277\370\v\334o\16\215 [" #"\320\302\244^J\205\3\34n\214\341\330" #"\353\e\323\0\367\205\333o0\265og\310\301\f9\361c/\336\317\235\t\374T" #",L\336~V\205{(\2512\352\335P\3\210)6eD$T\371\236\6N" #"\367^\341%\261\210@\30\240\347\373\354" #"8\220\26'\374\4_'\200\321\0\210\247'_F8\330\313vO\317\203\240>" #"|\305\330\20\334\225\367Y\271):\244" #"z.\3\222\r\27\343.\246\261\177\347v\4\353\2632\255B\3535`\300\362\30" #"\206`\1\362\250t\5d\272\374\350\331" #"\372\337;\263\232FD\304\302\250p\177{\210\2\223M`\353=bPZ!J" #"\200\327\316 J\310\313\300(\324DYM\205\6\307\324xC(\17\210\240\27\3" #"\311\250\221)\3634Z\0\260\233\267\376" #"3K7\220l\207\235\325\343Z\23\255\267\2561\347\225\262v\344\321Y" #"\264\22k\207]\306x4\200R\362|\206\177i \257\4\204\274d9\250" ) 500 ( #"O\220\246~\2603\24\220X'U\233W\344\241\25Y4\35 \203\\\240\375\301" #"\236\215:?\275\353Kg$\216\275\327" #"\272\331\31\326\342}\bl\326\332\362\332" #"\26\317i\307\332\350\377\224I\347z\260" #"U\233\200w?\203\274\326\307=\341d" #"\322{\307\227\276\366g\b\356\231G6" #"\16\271\2203l\306\336\265;\302\341'" #"\221P\0\273;7\212X\355\265\231\217" #"9\200\367\276\253\370)*\233\331\227\267\25\22\332';,\aamG\345\277Y" #"\276\367C\227\242UGg%9\262\237\2514e\277_1p\2656\343\2706\301" #"E\344\363n\260\213\213\276\257\353S3" #"N\224j{of\221\2\344\207\274\325" #"\375\226\3\327\35\16}\267\272\276\354\0" #"\322\0\262s\4\314\340\303Y\354\2735\0052t\216/l\a\v\225\2\354c\237" #"z\342p@\373\336>\322\24\0\345\2o\\\27\243{,i\350\335&\f6&" #"{\227\eS\371\272\363\225r\25`\251\3\371\247\343\321eYd\201\242+\335a" #"\253\210,I\202d_\315\22\310.8|9\344(g\a\6\343\275X\24\372\325" #"\330lM\212\f\340c,\276^w\265\213\322\272H\276\272\335\371$\e\2\34b" #"$^Q\332\230\326C\375^!\347\0\245\233$\a]O\364\350\237F\236k\337" #"\372}M\v\273\267\r\303'|!:\16\234\347\354\365z\25{\333\35\224\320;" #"0\264\374\343\"\305\372}MT\212T\3078\2225\v[*2\363u]\371\371" #"\302nH\206\276\310\4\266w\243#\322:\01750\355\36m\302\b\271a1@" #"\353\366\215\333\243\227\276\221$\232 \30" #"\236\3038\267`F\352Xx\221{\275AL\247\373X\301\21\31\260=\365\304S" #"\217w`\376$vR\277\32\230\327\350M9\274\337E=+\257I" #"h\371\257\377\372\257\241p\232\357\215" #"+\301\314\240\301\333\fS\277\327w" ) 500 ( #"(\240\1\237\361\200f\260\315\204xS" #"\263\346\b\201\220\31b\2623\275U\3075^Q9\215He\220\307\2723y\235" #"\325\255b[O#$.M\5\27\357" #"P\334\357\275\361\35\317(\266\310\303\320" #"\261\1>0\246\200@\233\374\345\236\337" #"\317\244\375\225\v\334\331\26\35$\205~" #"\376\345\267\337\216\20\\\367\"\263\362\22" #"\277\237\3478#\324\376z\225GW\r" #"\346\251\34N\305'\a\226\305K\e\370\230\n'\305\1\210UE0\\g{\22" #"\230a^d\270.\214Tz\275\230B\355\255\272\302y2=z>\200\340{4" #"\341\254vA\305\350H\220\225OJF(\302\337\273r';\373\243~\251]\320" #"\305\230dw\220\370\275\214\213\a[C\246\226JeCi%q\310\374g#E" #"\343m\37=9\237\f~\3773\225\\\273\377\243\235\234\tT\"\367u\b\360\273" #"gukW6\e\300wc\3\237\0\267d\243@\247\326\211\277\257vn\335\301" #"\325Z+\225\203\212\205\n\210\0063\34" #"a\234-y\236\353\377\334\223~\217\332" #"\347\256\270\373\353t^\303\aB\364\r" #"m\327\a\364\274g\316\251\276W\216\303}W1M\217B\361{=\362\313+\254" #"]ka\355}'\203\257\337=C\222\371<\241\3507<\253\262\331/\364s]" #"\364\331\25U\315\275=O\311\27\237O" #":\240+z\345\307\273\307\344\250p\316" #"T\35\277\203\201\302\6\256\311iK\260\b\3715\271\355`W\221\274do\314r" #"r\223\366\373\247\34\341\374\267?\330\226" #" \tO'\265\200\227\234\230\\\303\4" #"\227\300x\235\355\357\350\2503\34\2520" #"\371\363|\226\316(\271\353\272\374,\6" #"~\334\377FL\367$q\341\253\21?\267\223)\emZ'\304\300Q\236\4\\" #"\321\364\342\261\347q\377$=x?\330d\300\260U" #"x\347\200op\332$\262\210O\367\250t\2168\5\a" ) 500 ( #"\361\221\4P;\313\222\177\2359\2409" #"#\rD\310~\367\357\352\316\200\362i-\310\0\245T\270\0[,\205Eq\336" #"Z\2\315\301|\302\222`\21\223\r \243\177{;\207\24\245cwN\202\323+" #"\231\351&\273b#\25E\2\312f\352\245\3649\266\323\264rFZ\e<\201\316" #"S\237\205\374\264\265\20\b\365\210\372\255" #"%\231Z\300h\316D\3\317\235\224\233" #"\257\v\36\367\244\2z\352}v\345\311\274\322\0\357{\255dH\371'\251db" #"\232\346\240\17O\234b\355\f\n\367h" #"\355\310\302\16\260\330l\206\236\215\2k" #"\217\275\325\276\347\243\220\370\270\327\35\223" #"\357\210\375\324\346\365\212\202\316\241\265\206" #"\347 \25\213\202\332kP\276h\337\350\20\211\314s7X\244\343|]/\16\336" #"\361\210>4\207P\244\313\25\0\376i\207\270\227nm\212E\261\v9\36p\f" #"\374\232\27\314\201\277\374\213\177\203\377\370" #"\237\376\23\223\215\327\r\267\25\336&\363" #"\376\34\354#\310\277Y\26\216\0`\263" #"\355\275\361\366\215+\n\302|o\314k" #"`\316\310\231\332\v\327\27\37t\316s\343\262>\0\0 \0IDATIo" #"|\0\312\345\335\356\231\343\265\3\4\314" #"\243\20\255\345\e\6\260\361\2751b\1" #".\t\27\30\356Wj\201\24\302\30\f" #"\203\17c\217_\240\274\304l\200\216\352c+\38\232`Jx3\3376\276\253" #"{\236d\n\212q\6\24Z\374dH\324\356HED\366\330\344\247\267y\2047" #"\314\360\25\300H#\235{\230\243\263i" #"CB\335\236C\36\224\200\345\212p\21" #"\274\252\222\253#\300~\334w\31\261~" #"\240\2732\2351\217\375j\354\234\0H" #"\202\21\263L\265@\200\221\256t:K" #"\323\331<\255OW\200\265W\236N\221\274\3419\333L\3628\224r\246r" #"\204\254!\1sWxh\317\255\227\236" #"\267\203\317\376\273\b\206\266\373\356\a\\" ) 500 ( #"\357\213=\331LsA\234\201\\knV0\21\5h\237\36m\227\253'\20\227" #"\203\330\327L\212\273l\261r\265\244\320" #"\rg\336v\311u\227\313~\26\370s\311s9R\235\2058\357\235{\335\1\227" #"\366\2152\333{\271z\356+p2\302\222g>g\201\322\376\374\351|\16M\25" #"\322\363T\364\204\317X\317\252?\5\30\16\a\373\1\3344\212\25.\a\24d\2" #"}G\b\367\321z(\356\31\332\343X\274\312+-Y\3529\255c\214:#\321" #"A\307\349\202\267\366\n\261\266;#" #"+pv\274\351\300_\237\331\206\230\354ey_\30\247S\333\317b\227C]\313" #"H\0\362\2149\t\17q@Z\237\2767'{m\330\321`\336\224\2562\330I" #"\346\216)\233\346\6W\312\300q\326\370gO\35)\266\356:tuO\275)0" #"'B\6\31\301\264x\217\372\205\326\340" #"\224\222\v\313=C2\317\356\365\335\305" #"*\"ZL\31\333:\332\231\342\202\0\251\227\2420*\306Dpha\2439l" #"i\300=\332\224\301\17P\a\257~\255" #"\271\277\222\325\330kG\311\321Z\354\256" #"t\257;\373\360\312\31\256\263\25\16\205" #"\"\37(\373\330I$\3511\366\316\227" #"\356\240cr\357o\256\177\334\301\336l+\306|\345\2\234].$c\375\314\351" #"\337\262\3570\340\325t\265^]\367\30" #"\24=\211\236\314(\335\305p\267i\351r_\237$FF,\2750\302\234J\267" #"\22\241!\246\277\256\375d\333\35E2" #"\245^\v\35\254\326l@\244\221N\16\2229\234\16xt\260\330\260\310\23V!" #"$}\25\206\376}\257\30\254\325\211\226" #"\352\345\257\237I\336y?\241C\275\322-\212@\232\30\30dew9\201\302\177" #"r\f\341H]s8\347\251\177i_\271\325\374\367\34\3\266\320\300" #"{\234!(\245\363\3546u\354\355\303&\317\277\373\257\377\345\217\271q" ) 500 ( #"\241(;\333aV\213\374\277\377\207\377" #"\200\177\367o\3777\206\34\"\365\300\3" #"l*\27\226=>\301b\246\330\360W\366\262\4^\363\202m$K'\3\324\25" #"[\201%\244\367\237\306(\16\366\335\306" #"\314\335\261\b\2\3sN\254\373N\272^\337-\200)0\253$\373\336\316f\214" #"\31\a\3763GL\241\332\327k\2461" #"\324}w\245\322\231\264\253)\330\36n" #"\316\rZ\vn\237\225\371\t\276Bi\345z\340\fg?\303q\2\263}\337\344" #"\270\364\373z2h\216\263\240\346\364\206\n4\210},\300XJ\250\203\334~`" #"\372\365\362\276\255\215Bm`L\177\326" #"EcM\315X\b\323\30\334\347\367\362" #">\317\237w\271z\262\210\n\335.\337" #"\345\275Nk\262\246P\e\177v\215\350\\\221{T\262\377\224\25\255]\3573]" #"\312\270\16z_\333\274\206\23\0l\243r\32sB0H3\303\241\3658\236\275" #"\345\355\265\373)@+ }2\355e" #"\364\n\30\234\237A\333\317\323Y\321\317" #"\265\316\317\324'\1\333}\354\333\351\364" #"=\237A\357qw\\P\2063\240\324" #"\23\235\315\347\365t\2359\331\320\274\277" #"\267\277\357\t\242\372\357\335U\350y\246" #"\312\360\372\\\237~N\313\30\324\360\223\343\\Y)x2\0322\0042\202\221'" #"\353\4\247J<5\210\341\17\306\333\"" #"\324\e\316\302\363\31\322\261\214\377\4@" #"t\3432\234bS\20\354x\244@\322\341\36\254\212^\233\0\274Wt'#\233" #" \341\324\21\\\367b\331\363\357p\214" #"\213\241\3319\24\331\ey\217\245\17\317" #"\375\320Y\255\232\212\6\254\334\341\2\361" #"a\200\273n\223,\344\317|\347z>\35\361\36=\"\360-\271<\246\327=t" #"a:\304\355\232\354-\32N\217\1\206\311\342a\337\331\26i\316p`\16" #"\235Q\254\253\363!\216\265\354\216\223\5" #"\323\251\310\0B\36\340\26\316\23\240." ) 500 ( #"D\0354I\227\35\3470db\216\32\16u\0\4C\216#?#\37\347+\327" #"\5\17\240fEv\b\0n\205\242\343\v\322\371\264b\277}3m\221\373\"y" #"Xa\v>C\323]\207\0H\247\312\34Gq_?\227e\303F\344\236\323y" #"\e(\300o\3030<\356\327\20L\371I\236\214\301\3632P\335\225<j\27\326" #"\366\230\364jiC\236\5\177\274\272%N\351\16\"\0205\21kek\266\214v" #"\4;\252b\323~\226\f\21\241l\337" #"\303\351v\36@2\332\273\1\300\210\21" #"\350^\305\215\2313\256{\326\231\322\231" #"l\204\241\325\362\34\347\344\324\237Q\30" #"\373\300\nO\275Q?g:\352\b\34" #"&\22\323\235\305\224\353\276\263\220\20~" #"\222c]/\36d\207\273'\252\326\372" #"\212\25\254\374/\307\367\3677\376\352\257" #"\376*\347-_\30x\rz\232{\357" #"\360\324\35Y\264\20\236\377\234\23\277\255" #";\347\255o\337\360\201\250`\257\360t" #"?`\235\21\30\356@\214\215\e>\260" #"\235\202\365\353z1!\34\216\227\r\230" #"\222\236\3@\263\237o\365RT\247\3yq\247\t+%+v\214\377>+\17" #"\31\342b\250#[\356\364{m\314eW\366\4\aw2\223\351y8\235\213\253" #"1\260<\334\305\272\n\351\211\365\331{gj\311\323\330\31199<Xg!\236" #"\336\327=\311'\300\350\300\264\3\235\356" #"-\375\364\35\317\227\0l\377\214\276G" #"\a/{\0277\305\323\275\351\17a\335" #"\0066\261/\305\1770\37\300q(\201\352b!\17\272\257\353Z+\vj\246\e" #"4\300a\204+\316\375Q\216r0\252\301\310)\277Q \267;.\317C.\a" #"C\f\271\231\341\276\337\t\202\273!\323" #"\213\a\32x\331\25l\367J\200\21A\2528sgK(\240\316N\357A" #"\332\235\214\336\36\352\271~\214\254\234" #"\305,\273}G\227\225\343Y\233\361\371" ) 500 ( #"_9>\35\214<\35\276'\323\4\347\232GIa\2n\25\364\351:\317}\347" #"}\250\e\300<\256\251\357e=\200g\245\271\n\fat\230\373\32\361s\275=" #"\330\311\346\366uJ\347\365A\24\330\30" #"Y|\331v9\f<\340K\367\261\222\351\247\3301e\244\272\267\340x\236\303h" #"[\3\31( \25o\210\211[\214\220$#\342\224wC\344g/\266\353az" #"\314\200\n\rs\255\235\251P}\320\204\"\2\332\237\336mC9v~\207C\31" #"\327\320\372H\316jU\265\256u\236\363" #"\\\355b\237\315\f3\322\250V\30\361" #"\275\253\"\273\203+\0010\330\t\322\236" #"\240\aP\37\323\320\315k5F\3623\375H:Di\a.\240\200\235\271\247\254" #"\322\277\2316\240\302f\377!\265\240\261" #"s\362\246t~?\316\324\256\24\235\376" #"\34E\32\351\331KF\311\234\255\374l" #"\236\177g\24u\243z\276*\r\253\316" #"\222\35:\245;\271\375Z}\270\211\344" #"B\21\e\201\247\265<l\240\366\202P\251\352G\352\210u\"\2066yf\32C" #"\277?\21.T\317\\\207\264\235\322\357" #"\215\311\356\347\322\243\273\212\r:dL" #"\22q\f\214\30d\4l\253\272\217\327" #"\365\342g\207e\373\263\275,Z\242\306" #"\276\332\200\331\304\35\5^w;']\366\16`j\354\374\362\34\240\262V\re" #"9\35\362\250#QNxD\305h\267\"\25.\210T3\213\3014\222\v9." #"jU\272\341V\330\257\313\324S\317\2161\212%\17YP\301\370\20\353\273{d" #"\247\34U\217<\377\2629\247\235\320^" #"\362;w\344\355~\3464\263\361A\324" #"\0\330\231\376q8\241\355\347\361\274j" #"\335\243\246\315,N\212\22\27\214qAQ5mJyjMy\30`s\340+" #"\246\305(1\377\373\373;\204c\220y\5\251\347\35" #"h}\302\322\223\323\2\367\207&)?0\355\202\207\322" ) 500 ( #"r\233p\214H/\e\200M\314\327\v6.lC\200\3552\364\254\5Dz#" #"qJX\301\333\16sg\223\364g\337" #"\270\236[\243\215\356\233\325\1\241~\346" #"\356\321\e\216^\367\212\342\2221\330U" #"b\a\350\23pVb\372q\275\35\25\213a4u\17O!\350\257\2363\334\r" #"\360S(\236\312\2763*\317\347\222\240" #"\366|\343n\340\373a\274\357\373\350\4" #"\241{\2\242@\20UI\333\327\276+" #"\366\21\f\20\222\315\251\2\234~\237\226" #"\344\365\311\300\364uyz\223\a\300\264" #"J\301\360p\210\3401R\32\2\341\375" #"wg\b\362Y\260\240\365\352!\32\255" #"\303\353\365J\371\271\327\331\255C\317\303" #"\234\351\220\341\307\36\302\203\r\214\373\351" #"}\16\237\257\247a\326\232v\231\36)" #"O\235m\37\355\347g\356\255d\247\313" #"\315\34\223a\253\2650\20\275\253#d" #"\327\35\301\2560\265>]\216\272\374)" #"\23\214\f\30\25x\25\305\374\276\334w" #"\243\373\34\341\253\227B\2153\30P\rT0?\213u(g:k\345\24\366\357" #"\355k2\36\305&b\e\3241dD]\202\5\25\342D\233l\327&\343\0\317" #"\20\377\353\353\25iy\225F\242\373x\2\240C\266CFE.\bP\213\205\21" #"I5\242h\250\326&\316w\264a;" #"\327\215-\202\330\352\347|\356\374\356-\226\273;\340u\337\222-\eg1e:" #"\334\16\366L\216\373\270\"\335*\327\32" #"\6\233\301Z[\3451\37)ks\246\236I]!@\260i\375\255\e\320\306\320" #"\37:c\234\305\\\2\243\335I\254\363" #"\323\354\241\336\a0E#t\b\333\234\305\3044\a\306h\375I\219\347:\337" #"\17\335\325\317\251\234\32\245(\2508T" #"\357\341\31\276\301.$\363H\267\220\255" #"\273\357\233\35\v\342{\367\35\3510\334\330\354\5\334Y\360" #"\376\314}]\364\2639\317\311Zz\325\36+\254\274\252\317" ) 500 ( #"+\230\377\255\3010\330\236\255\354|\355" #",B\233s\2\306\177kX\202\241\357;s~\aF0\260'Y\326\357C\216" #"Pl\t\200\1\337\3\330a\247\302\361XkE^\363BF\245\244O\224+-" #";\354\212t\212\325v`\324\4\277w\233\30z:\320q\177\361\235\375|\3\255" #"\207m\353\260\321\355\26\361\21\3234\323" #"6\260\332\0246G\354\311;\366\211\330m\357\215P0PJ(\257W6w\357" #"}\330\2251\252\216\350i\353\251\367\nTg\307\2269\361z]q&\257 \375" #"*-\316}A\351\203I\256\354\252\205\342\f\5\246\5u\235K\333u\301\330\e" #"\17f\226u\tr\254\364w~\206\266" #"{\376\341\277\376\315\37\345\375q\215\"\27c!F\310:\3145\312w'\30\353" #"\336\246\212 \310J\234\fU\a\4\251d\343\340\255\230Q,\3\220\6#\204g" #"\335\f\3479*\207U\202\232c:Q\ni\32\231\332\265v\264A\253\260\253\362" #"\261\4$4zo\a\370\355J\2543:I\375?XLw\262\307\206b\16\273" #"1O \346\300\34\0Fz\26\360\0J\350B\243\e\265\310E\16p\373\25\314" #"\3645FxNV\255`\264\276\1\30-\326IC\4\236\373\320[\230u`\326" #"\377|vH\320\263Si*\347\251\200x\a\315O\5\267\367n\3051\237\300D" #"\367\336\17\216\30\320\\S0\37s#" #"\6\16\f\5L\f\300\212\177\17\364\274\305Rd\242`\221\275D!g+\332\323" #"\1\312\353;\333y=\201L7\204OC\327\231\24\35\362~\200\23,\204\201_" #".\265\346\t\16\222\271v\346T\355U\240\220LC.l\364^\256\230D7\214" #"\ac\323\300]\311\355\tv\25\261\201" #"G\256\264\0\215\32\235\a\252\356k\362\341\34!\214F\310\364\34" #"\23+@\204\356/\301L;\223\307zjW\373\367@\340\211m" ) 500 ( #"v(\237\343X\323\274\2271\22(\34z\4\237\255\346z\210k\205!S'\221" #"~\2372rd\224k\257\2173+\300\352\250\36\261#\364P\366\0\215\256\1\361" #"\336\265=\351Y5M2\213T\201\275Y\265\36\240L\337W\372\366Y\214\25\371" #"\205q\257s\310`\23\f<eY\262W?\17\aZ6\300BF\246\256+r" #"\243\326\375\t\214\201b\246\30\232\355\372" #"\5\350i`=\265J\372&uf\222\20%\243\251\207,X\352(\320\202{\344" #"\324\243\366\302\221\244\311\363\f&\201B" #"e\f\367\0053M?\353{\336\316r\3+\275X\252\207\312\357}\303\230\34\314" #".\27\316\364 N\341\e\271\346\222\237" #"1$\331\265\36;\372:\333\b\273\344" #"\235L\362C\356\344t\215\241\326\205\2" #"\0167zZ\231F\6\323\356\3321f\325\232~\335A\240\214\b\201\247\354\f;" #"\316Y\311\333\231\32\365t|u&\363w3\362\336w\245\3\322F\315H\347\360" #"\264\355y\246\37\316 \317\227R\276\350" #"\370F\361\16\217I\\\233Qb\245\367\210d9kH\16}\256u\235\301\246\202" #"\357\237\257\t\17w\310\254\322{R8" #"\363\231\353\347\251\277C\227yD\241{" #"\32\300\23_h\355\21vN\255[\17\327\335,\307\327w\2%\345\241\245\366h" #"R\345Z7;\220\370\224\212\212\357\16" #"\335\353\6\207\341\272\2p\257sj\235\366\360 \t\374tj\v'\234Q\337\16" #"\310\251\267\221\337\253\224\32\21F\375\214" #"B\347;\326\262&\240\225\214\327u\231" #"I\260\f\270\357\212\6t|\326\345\326lb0$\261+\234\22\212\316fx\320" #".\301\212\312<T\253\252\16v\330\v" #"\367\374\222\336\226\304Byi\270\302-" #"`a\250\315j\275\31a\300|Y\360\312\305tU\217G]S\36\361" #"\310\367\b\324(O\205\254!A\362\34\301.7\220\372Vk\263]a" ) 500 ( #"Z-\352\223\5\5jT\37\225\323\310" #"\344\354\347F\253\222\377\275\357\0YT" #"\262\257\353U\202\332\16\36\234\263\277\325" #"_\367\325B\333\272Wm\37\253Z\303" #"\250\367\303F\351K\17\254\203\357l}\322\322\n\272\"\225#!\307Ec&;" #" J\303\22\327K\201o\341\270\336.Hks\n^\0246\204\247\270\274\224r" #"\227+10\36-7fT`\3629\264\247\e\232\360&e\223a{\205\371B" #"\1\221A\223\362\344!\2251\357\252\2543\220=\f\255{\357\fd\367 \373Z" #"\37\354\276\0316\230r\362\276\337\224\331\350\325zT>\357*|\323w*T\\" #"\347\250\347\301\351\216?\363\326\372Zw" #"\5\365tp\0\236s(\327,\362S\357\265\260\344\264Z\31\257'\3405\263<" #"\a\372\276%\346\303y>\225oWM" #"\300y\317\a\b\31\225\273\250\2343\262\223\2142\t +\217\276;h\0\235\\" #"HQ\6HST\343\220\323v\216\367\3369\251*'\26z1\201d\335\320\34" #"\273\225\262F\331\364\4%f<\3r\\jm\301\374\333\266\17\263\351\305K\6" #"\337=\300\346 \230\e\232-\357\225\313" #"\216\323y\355Q\27\4\215\360\216\16\31" #"\26\355\201\244\327\365\367\31\305\251#\30" #"42Z\236\254\221\"$\232\21Ov6t\224\276\313\323>\227\34\f\2\306\331" #"\326V\357Q\325w_\373\237\234l\365" #"\276U\177n\311k1\321\316\364\264\0\37#\273J\200\373\26\316Bw\232u." #"\222\251wqWt\317\ft<t\246;i\1\224\263\322\235\247n'\346`H" #"\335C.\327\276)\357\16,\277#u\1\21\301Z\4f\376L=\31\271\367\232" #"\20\365<\257\272\a\352\233\36\211\323Z" #"\316d\310\270\236\247C7\306`[PC\236\223\303\221h\340\233\277" #",[';\375\223\323/\26\355I\360\0\221>\b\303\300\300\274&\346" ) 500 ( #"5\332yiQ4\322\3541\300Bic\215X\0\31p\311\331\260\231c\222\315" #"\312\251aW\1\1]\204\2368\353N\364\2629\360}\377\226{\305\\o\216\202" #"f\301\365\306{\275\23C\0#\234\30" #":\31\224\271:\327\211\1\"\205`\265" #"\275\353\373p\222J\27'\17N\215\200?\177/9p\234\244Rw\\\357\373\216" #"\"}\236\313\265\27s\3761`3\210\265\324\1L\215b+\274\352\3442&9" #"\212\276F\335\271:e\265\17\355*|" #"\301I\266\343\220\243\357\3577\306\0\306" #"\360\3747\237c\0036\210\273\6\200G" #"1\264\366\274\343\313\356\350\361\363\e\276" #"\356C\257+*\376\351\234m\314\277\373" #"\303\377\365\307\327\327\27\17L\266\367\32" #"\a\373\340@h\207\312\177\245\21\361\303" #"\203v\250\35\214\302[\345y\\\363\v" #"\367\272\1\267(X\233\230\363\25\266B" #"\240\357\1(\340\230\230\271xh\36\221" #"\243<\342\353\272\362\337\35\200x|\346^o\210\322\227ASaZ\17etv" #"\341\251\224\23x\254\n\247tf;\301I\374]m\240X\2547\"\214E\317s" #"\371\206\305gg\30\370\35\206\204\16Wy\206:Ln*$\211\303\3d\237Y" #"\230\25\350m\240Uc|\345\\<\331" #"\332>\t\346\311\322\361\363\343\330\223\316" #"\306t\266\201\327\253\20\232^\317\244v" #"\32`}?\17\305\26(\2272\337\345&\213\r\201\25\223\2411\204\335\210u\3" #"$`i\303\202\245k\254\200\241\362\374" #"\232\222\222\367)\3\322\35\233\236&\361" #"\4\210R\b\207\347\373\220\235aU1^`<\2128\347\214B8\255\347J\31" #"\271\327J\360\367\2313\252C_\312\177" #"\266\2*\31\353\16\26t\177\275\317p" #"y\246\210\220`\345\271\367\357\323{H\374~\2061\307\309\245M\337o" #"!\243\356\345t\311+\347w7\203\250\275\vYF\223\305b\217N&Mk" ) 500 ( #",~S`(\243\35\273\246L\351\375z\211\335\0\252p\312 \247S\271\343\310" #"\316-\235\301\312k\210\241E\24;=\272Z\230@{\266g\2\20\303(\364\242" #"\3\313\357\354\327\356\373\365\23C\377\31" #"\222U\217hOF\327\275\6\227\350y\5R\335q\f\320p\367t\252\343\316\362" #"\274X\364H\23563\225\347\247\365\204" #"\300\266\330\31w\30\316N\a$KN\235\332\365\22e \376}\332\252t*X" #"\0]\16\t\311\230\212\246\365\353u\31" #"\316Vl\0\34d\311\206\236\243\335\343" #"\363\374s\261\220}R\265F,\216\255" #"\365\357\347\362\251#\304\26\302oa\314" #"p\0\35\205\322\365]\36\216\236\272\37" #"i\372\226\nu\253\367|\275\342p\0320\264wE\216\353&\3629\r\240~I" #"\320\2\f\324\250d\337\212:&\257\31N\\u\374\371==\37\2068\354`<" #"\237\261@}\30\235]*aCN\f\213\336\314\6\3vu'\0\20\16X\e" #"\211\215(\306\373\241\370\233\303Q\242\320" #"1\364\301\212Q\351GtCl5B\347o\261\317\3\330\214\4\257%g=\300" #"\371\30\341\260\ek7\242(\260\267\a\315s\232g\226}\271\277~\235)8@" #"tz@\25I\n,\213e\356\230\303wu>\320\363\246\336\215\357\332\213d\n" #"\260\341\256\302\321\335\206\352\320F\334\333" #"\361\372R\321\\D\207'[\212\311I" #"]M\306e\177\272\336\245\235B\352\255" #"\324E\316\364\243\265v\246M\321O\340" #"\31\341\372G\213JG\24\223\265b\367" #"\246\367\227+}\241\316&\a\215U:\3440\332\31\233ew\35\325]\2440\312" #"\304\360\341\300\336\221;Ts\234]\336" #"\177x\211\367\373\256\301\210\273\306\272\355" #"\0&<\310\3\353\216\5\210\315\230\363\225\233i\301h\216\30%\247<" #"\30)cX\261\245{o\354\333\261\f\331\35\241+\223<\342R*\315\0" ) 500 ( #"\273;\276\276\276(\0`Q\212H\273" #"\356\355\367\302\5\2405\31472n\352\317(\3\377\375\375}\200E\35r)\327" #"\21L\362K\235\4\304 Cyk\301" #".\314\250\324\267\312\323\325\375/\347~" #"\230\200\255Y\205\355CA\261J\366d" #"t\304\250\35l`\313\203\353\377\356\300" #"U\237\351?\27H\3224\253'\200\352\236\26\r\223\326\253\30.F\n*\227W" #"\300\252\230\3176\266\320\231g4\347\204" #"\17\202z\f\245\32\260\352\224\371Z\236" #" \267z*Z\262\n\371\f\241\304\304fu\2574\177\37\353\241vM\322AO" #"\26\277\274\357*b\353\340\247{\273\372\256\276\246[L\237W>m\32sg'" #"\207\222\247\2$\tp\232\"\357\206\264" #"\356\217k\336\333L\365{|2\31\374" #"\36~\316\275\344\230\236\377\216\242\315\237" #"s\334:\b\356\205n{\207\212\3259\272ov\211\310\373\24h\243\f0O}" #"\3415,A\256\330\375\356\f\340\350\211" #"\353\251k\364\275\367}\343\335\326\337\343" #"<\335YHt\202\306C_\240\214I/\334\es\342\275\27\366 \233'G\377" #"t\326F\246hu\31\331{'\vn@\344\311\211\235>\323\236R\17\255\373\0" #"X]Vy\303\335\201\3425\224\16\244" #"\364\233\36r\347\232\225,\363\357\247!" #"\36\351h0li\250\375L\320\17\313>\250\303\306Q7\0\234l.\264\327`" #"\276\244\1\270\22\0\356\300W\36,R" #"\333\257xf\311\256\276\337\243\"\374`" #"g\32\23\250\250T\312\366\30\325\373Z\362(\2061\34\2301X\20H[A\207" #"\303\343;\344\20\0\247\343*\207!\t\34o\355\241\302I\ap\24\305\364u." #"\371\0l\220\t\344`\32\4\300\215\256" #"#\250\347\262)\331O\3425\376\315{Yr\200\321\213\204tM\217VT" #"\325\301AU\376,\0\37Z\312|\326,8\27\1\21\216\27\314\303\226\e" ) 500 ( #"\304f\216\0\200\372\254Y\244<\240E\271\214`=\231\363hY\345[\375q\a" #"\200\230*\367~\347\331\32\340\376\314\210" #"\6z[[\352\314\262\27O;\245u&\31\304H\313\375~\343\276\27\306\340Y" #"\311\350T\256[#O\6\307\211\3\16\226\el\364\324\266|\00002\22\"\4" #"\235\254g\315\310\212\353\257\345\30\223\266" #"n^\0030\r\243ql\177\323\316\0030+GLg\t\r\227<\373xw[" #"\2 \34\249?\203Q\242\201H\203p\366\323\366\205{\335Yp\234\221\320\5" #"\266|\333E\214\314p\22\22W\241\353" #"?\244\215\3528\0\0\354\222\375\6\340" #"$25\326\274\364\22\331\\\261\310\231B\263*\"+\375\211iIr\315i\230" #"\223\262\251\211\272\363\nBk\25fR\236\377z\337x\177s\0\5[\325\331\5" #"7d\237>\261r\362\202\213\241\210M" #"\217\246\275:,\254\204\214\242\216\t\330" #"\330\351\201q\202\22\307\"\302T(\240f\320;\306\3402G\327\302X_cd" #"\37S\25fu\346\264\e\211\36\256\326" #"\277;\370\233\223\23I\310\276\216\26^" #"\347\373;p\323\277\305\312\262\0325\16" #"~<\355W0\243\35\24\366\227\276\373\267\367\233\200ur`D\245\2070\355c" #"-\216\262\374\232\354\355;\303\370\370Z" #"9\311\354\203U\363`*\21aVT" #"\273\264\236\343\324\225\227\330\252\275w~" #"o\17\251?\331\213\2\264\0033r\203" #"\335\200\367\272\263hN\237\251\220;\205" #"\316\202\336Z\273F\2\3'H\23\340y\376\237\n\242\1F1-\332G\216'" #"\255pd\a\203cTh\32q(\305" #"\372\353\231\25J\337\253\2340\275\267\356" #"\257\230\241\347H\346\16$\273\3229\16z\3\231G4\300*4+\317\325\2p" #"2DL\245\243\274\330\247\301\356\200\263\313w\245]" #"\234\f\233\376\375\374L\a\312\bv}\316\nQ\t\254" ) 500 ( #"\3449k\315\356\363\336\347Y\270\331\317" #"\237\307{\345\244\370!kg\16\265@m\333\264cp\210\206\306t\307rG\345" #"x_c\363\366\236]\251Kr\246\236\316A\255\317\311J\3650\243\232\230cm" #"\250\315\326Fwhv\246\0\30\310z\356\30G\252n\34\0;\3<e^\317" #"\254t\4\235\317\0362\357\373o\231\230" #"T\206\245\247\313\34\216\212\237\35\r\314" #"\212\25N0\240\357\310\211~\236\372\270" #"3I\224S\260\305\326#\35\343\330\267v\37\312\255\274\367f\373/TZ\25S" #"=\254\335\357\231\357\334\357\257\242\a\361" #"Y\2011\24\20\355\206\26\356Q\325\335" #"\236\35a\364:`\32\212P\235\373\341" #"\333\363\2738\256\374\335\356g\177<\273" #"\34P9\5?\255\tE\272\261]\301\340\256<;\36\361Qd>\354}\337\324" #"3-\237\2658Y\351\223`K\333>)\235\306\214\214h\2b99VW\351" #"\353\274\367\3163\376\276\277)\227{G" #"\212\201\356aG\304\25\1z<\367c\255\350\311*\366\16tF\25Q\241\254M" #"\f\257\351\235\357\367;d~\301\256\231" #"\351\212\367\272#\267\3753\315\200]\206" #">ub\327\263\332\23\351\261\31\2667V\230v\21\234\270*\2O\304S\0220" #"c I\17\37,~\213\365\334\e\330\267\3\32\25/B\307\35\1\313('\24" #"]\270/\314K2\200\274\276:\6\260\24^\317X\366D\362\256(\205\310$\0" #"\a\270\325\357\2623\303\30\30\26\235\b" #"BG\277\357w+\"\v\260\17\235\177\222\215cj\257\317z\223\376=\371lN" #"vT\377\356\177v\35\240\\\334\212v+-H\a[g\n\215d(\275P\35" #"\247H\240\271\1\353\226\363\241\300Ds\232-\30\362{\5Cl\370z\275(\253" #";\316p\a0Z\350\317\252v\3136)\230\203" #"\371Q\235Ut?\200\300\234\23\257\353E6`\250" ) 500 ( #"w'\371\3401*\235a\273\343_\336" #"o\274\235\215\277\335#\334\31\223\323r" #"le\334\3131\261\255\375\374\231b\320" #"\31\203\371b\305\346\366\e\260\0&\210" #"\303\214\317\342\261T\214\260h\300\275\263" #"\255Ig>\5j\272\202\223\321\222@" #"\356\226>\301C\330\300u\200\1\1\327\325\230\330y]\221)B\203Q&\t\271" #"'\235\305T:\206\326T\314\362\325B" #"\257\35\234>C\341\307s\17\3469\331" #"\264\364\266\3233\34\265F\362\370\366\266" #"\4\224O \230\357\3155\2530W\17\207\350~\2733\323\1\35\237\265r\205e" #"\200\350\351J\265\224Qo_~0\314R\300\360s\264c\277W\335O\a%\375" #"\271\236\216\225\376\336eA\nH\371\202" #"\376\220\315\21N\201\276k\230\212+\353" #"\374\255\37\212\343\244\4:\300~\206\346" #"\373g\252\353\310\347\263I\1iHEwN\350\200\216hQ\343\25\32^\e{" #"\325z=Y\206\251\275\363\352\265\250\373" #"\356\347\276GN\340\301\256\267\263%#" #"Z\216mI\277\231\341\353\272 N\3629UPlD\335#\22\34\37 \376\241" #";N\203i\251\213Lb\264%\0032|;\242\301\341\b\217:c\30H\20\263" #"\e(W\v \0\1\246+]\251\353\215~\226\366\242\223\274\226G!Y\\\327" #"\305.\27\363\310\373\357\341\31532a" #"\26Eq\271w\237\353!\300\5\224#\335\215\265>+c\324\r\23yr\340\25" #",\266z\210\27 I*\363\220\37\375" #"\251\34\273r\262\302\220\233U\241Z\2237}v\357\235\204\b\aHU\261.\334" #"q\257\350(\0\307\222\201\334e\253r" #"\337\315\216{@<Co\365\225\377\a\210\336b\230vt+y\310c:\320a" #"\317\34\240\363\24\340\263\217^N\20" #"/v\325\352\274\336\21\321\272\256\21\343\235\253\205`\352" #"\26-\320(\200\200\220\30\179\36\r\224uY\27\200!" ) 500 ( #"\243\256\242\307\220\365\265\223Y3\f\364" #"\1\31\6K\00070\216\353\217\30\212" #"\302\354\35\221(\27\3231\306\310\237\365" #".\16\272n\327\227f\226\271\357\247\243" #"\177\326\315\350\317\302!j\345\26\300\322" #"\311V\n\253(\17]\216\300~\207\223" #"\301\314\315,\372\325\265\30\362_\341\224" #"\337q\226\r#Z=\334k\221\220\301b1b\323\27\340i\203\343f\37\330\35" #"\316\203\25C\253=\311T\36\177\266)Eb*\351\322\214\30\321\315\200\r`y" #"\2455\244\r\17\247:\216}\263\253\225" #"\2\330\367\240\377\331\35gDGw\345$K\6\253\215X\236\322xv\351u\217" #"4\234h\263\351\265\317i#\e\256\321" #"w\323\216:p\215CG\310\261\227\254" #"\345\337\303>~\257\205\325\220\323\374\273" #"?\374\315\37\35<H\312\237R\316+" #"w\210\240\360\360$@&\250\27\221\305" #"\212b\314\201\367\373\273\362<fL\0\2Y\207\275\34\343R\336\317fN\331V" #"\201\211\246\277\310c\32q0\252G\237" #"6Y\206A\263\253%\f\252\332\227\301\230Q\310T\340ee\370H\2719=\367" #"O\a\345u\275\362\320*o\324\361\351\301t!\352\214\235z\343\"@a\2\\" #" sR\363\363\3158w@\255\367w\346c\357\2151k:M\32\251\6\22 " #"\243\363\360\316:\360x\n\263~N\26" #"\2511\235^\205l\4\26#\303\361\251\364aG.P\277^7\362O\6\2753" #"L\372>\275'Y\3524pu\350\v`V\250\377i\254\1\202\t\245\b\300[" #"X\366\301\306?\17z1\305\17\271O" #"\200]\240\263\3\304\236\357\315\367\243\256" #"\231\353$G\244\205\322\36amh\235;\370|\30wy\304\317\337\367\377{\257" #"\347\276>\274\327s-\371\273b\255\362s{g%\260\241\252\320\373\232=" #"\235\e\335Ow<\272Chf\331\35D\n\256?G=_\261t+\242" ) 500 ( #"\35\363X\337\263j\337%\277cD\216" #"\356\314\334\367\31m\251\304j\364\242\251" #"\247\f\252\210\264\313I\31\330\16L\332" #"\231s\244\256\21Y\232\0055F\35\27" #"7\236\367\17\367`>\353\347\274no\213\25k\23\272\225\212\v\331;V-x" #"\370\fd\340\4`\273.\321z\255\210RUDc\344\263\3643p\236%\ap" #"\236\211tn\232\343\5\200\35#\270H" #"\331\357\31\207|\364\220\376\311\352\367H" #"\23\301!\340N\247\353Y_\240\317>" #"\35@\240U\204[\344O\17\344\271\277" #"\357\2339\2112\216\271G\347\31\2221" #"^{\301\207\341\325\306\317\n\340\312\306" #"\b\340\346\275A\0165\363\5\273\263#" #"\366\266\353G\312\17\207)\230t\32\270" #"\354\\\37#X\24\263nU\360\333\345v\214q\24\317iT\254:\23Y<\343" #"x\254\245o\307\34/\254}\3\336\364" #"I\234!\356Z\344\263\213\355\205%\2013\34Y\334\335u\2e/\310\2421\17" #"9uW\344\222\"-\231B\277F\3\2720\235\341\310sw1\207H\233hy" #"v\255\n\271\324+\26\36\5\354O\31" #"\0172\4\226\266\202\354?\331k\e\361\275q\r\367\312\263W_j\214\210 \4" #"\260\37mOT\317\324\311\2239-\327Sv\254\277\16\273m\352\324D\r|g" #"\344\bA\36h\35ZJ\247W\304\250\357\207\n\31\261\37QU\234v\3573\345" #"\20\271\217f\23\367~S&Q\205\200}=\31\211{\341H\375\200\354U\323I" #"\341\345\273\a\371cE&\245<\267\347" #"\320*\375D\362\364{\245\316\367\334\a" #"3\303\374\303\337\376\227?\262\252\271\248\275hp\263%\200qc\6z\205=" #"\364\353\303\302\353\v\345>\370\36\206\341w\264m#\233\213\0I\3\2|a0" #"Ls\217\243\362;\25c)\257~\30\364\300}3" #";0\240\202\255\244\177y\e\22\310\373V{\221\340\1" ) 500 ( #"\0\0\0 \0IDAT\216\0\337\a\373\304\277\213e\352\343/\3630\342\4" #"\275Z\360R.\237I\343\16dq\225\n\313T\260#a\323\6' \225r\5" #"\16`\365\f\225\3154\216\343\270\306\357" #"\275\272p<\237[\206\333#\351?\217b\204\36gS\372\222\201\16\n;(\353" #"\206\361\311\236\353\325\327I\306\263\277\257" #"3\247\224\5\262\5\305\22\211\34,C" #"\325\231\343./u\340\177^\23\340\363" #"\360v\240\0\253\360\376\307^\265\347\21" #"\220\31\341\304\364b\261\256|\372\32\36" #"\36n\373\363\271n\365^@\214\303\23\4?A\377\357\355\317\t\200=\213;u" #"-\335\267\272\23\340\261w\ahi\353" #"\320\331\230~\317\372\35\277\255\370=k" #"\367\307\353\352}u\377b\211\373+?" #"c\26\323\303\br\263\22\271\335s\a\27i\270\37)/\252\346\36\0k\20\332" #":1\245\n\31\235y\356\243\205>\333a\24\341\5z\335\331\276M\5P\327u" #"%\310z\356U\337\2571FtSR\356d\320O\361\330\273\r\1\210\2478d" #"F\257r\236\21\341m1\2064NOp\373{2%\222\341)\273\332'\201\r" #"\217?\257Q\223\313j\262\3248\256\373" #"S\nY~\277\213\271.G\270\263\375\272\337t\32\e\370\365\366~ ria" #"\t\206\306\210\276\266\366\271\366e\370G" #"\202M\32b9j\3\30\206\261\317\3478\200^\206\341\2532\354I2Hfl" #" \t\f\26)\355\4\275f\224\307j" #"\275\367\303^\305\272\366\375I\247/\242" #"q\3321E\220\262/\362\30\330N6" #"r\266\2r\265\251\254\263\22\351\215\374" #"b\236\331\0\211Qi\366q\306\373\371" #"xo\345\350\352\272#\276\273\245BE" #"\375\212\301`^\244\200\366\226{\"\a\315\362<\216\266o\317\236\351L3" #"\232\360\226\227_\362n\260h\t\307\272!\246[(b3\246\35i1\375" ) 500 ( #"u\336\ed$\217g~\312h\266\0275\203:\243<\355aw$y\355\2\312" #"\374\35\273\16\210\354`\316s9\216z" #"\276'V\272\256\213\340\275\333\210\320\205" #"\247\169#]\324\355d\251\351Hy:\6\375\334u\222\a\320\275P\360\265o" #"\35D#\344\26\302X\210\353{\261\326\35\307\20?E\267\254\353JB\2^\372" #"\365\336\214\300\207\"J\3732\bp\0\217dfy\250\373\221kI\343\261q\357" #"\205\357uc\307\"a\30l\363Kr\236\371\332\25>\332EM\357}c\32p" #"\r\a\"\27\206\17\324\17F\261\212\375aE\225K\241h\23~b\254\3445^" #"\223\v\231\240g\337\244\366\233\340\f\e" #"\340\0\245\23Tu\340Q\233S\341\357" #"\316\2\214P&\220\241\354\336~\253\22L67\204a\255\5_\232hR\202\231" #"y\250;\346o\307\263\212%\207\267\226" #"b\355\20\301*\235\242\274\351p^\242\t|_\253'+\240\365U!\237\212n" #"x\335\235\23d4\205H\237\221a\355\5a'\263y\206\376\273\2H\366\312\312" #"\223\334j\231\342b\314k4\247\366V\317X\223\230\236cf?\225\206~'\6" #">\177.%\333\16\370n{!\31\240\263t*\217\356\0i\35\16'\"f}" #"?\1\370\363>\265&\335\211\351F\363\tN\5Tt\37Gx\253]\317~\370" #"\331n\371\300]\316\a\306\321\322N\317#\371v]3\301Y=\247:\210\364\317" #"\375\4\350\365|Z_k\367\225\200yS\352\273\242304\330\v(u?0" #"\26l\336}\355\207\f\324i\0\326Z" #"\270\346\365\370\256\226\337\37J\27@T" #"\367\267}\363t\253Z\352\313\231+X\353\36L\311(}\221m\r\343,o\234" #"\203]\264V\272\227\35:w\2337\375\262[k%;\366]\25" #"\361\335i%\240\bp\27`\204\354\330\f\303^\255\352z;6=" ) 500 ( #"\a\277\347L\a\353g\266\237o\255\243" #"\276\373\325R\37:\0\355z@\341\317" #"\256s\273\256\20P\323>\365\367j\262`?#\231\367\374\0Gd\305q\344Z" #"3\247{\224>\217\347S\336#\35\376\30\34#\35\23z\\\271\0>\304\256\237" #"\355\31\367f-\v\311\222p\344Bz\350\324\327\0323\345b\6\271\350`/\221" #"\250\357p\2\256\r\v\362g`\316W:RU\340\212l\353\327uo\356\21\374" #"\2203$@\2114\16\331n\213\32\215\331@u\260\232k\2753\367\266\30g\307" #"6:\302r.\200\322\233\207C\rv\a\200\1\254\333\321\3637[q/N\275" #"\323}\357\r\365N\26\300\346Qp\f\3330\337\270\346H]\224u+!g\327" #"\365\202\343\306\336\357C?\2171\"\252" #"\24\35\b\242\343\315u\r\270\277\341{\21?4}_\21;\235\213\246\267\6\27" #"\244\3135US\311\262\34' z+_\205!\372Y\352\316\f[\215jP\v" #"\327\212\366\231)\206\214*\325\4V\263\221\304]\307Gc\30|9ss\3\204" #"\302\375\230\0(\214uD\270\267&\335\"\202\366\"\17\2Shp\3135\231r" #"\3\326\"r-\232>\314\241?j\27\250\324HuNi\316\224Y\16\v\321\272" #"tr\312\347\300\367\375\215\333\231\3329" #"\256+\234\233\252Q\362\355l\341\251\234" #"b\a\17\23\213\25\r\3275\261\234\325y?1\207\t>B\t\335w\215'\325" #"\306P\350\273\341\366X\204\230\312\262\330" #"\6C\207\251+\345\256(\367\336Gk\254\2560_\257W\32\203\347t(\207\343" #"\353\317.Va\356\25\t\360\3\257\327/\260\215\306\5d\321\\4\270_w\n" #"\247\246\315\20\4E\257\323\20\332{G\32\5x8\350\245\3\206\215i\e\6\25" #"\317\321X\317`M\324\37P\317\245M\2046" #"\246\375\374\31ZJc\22{\220E\25\2(" ) 500 ( #"\361\36\261q\325\376\255\362<\305\346\364" #"\361\316O\300\253\367\25\330\a\206W\5" #"\366\16\205\270\356\230\330\25k\257\317u\360\330A[\a1R\2uO'{\344" #"\356\3008'\261p\16z\345/\275\337" #"\357\374]\a\356\335\v\325\365\237\214\253" #";\17\346\35\375\212\257\bW\315\31Q\4\217hC\254G\317s\356^\257\2655" #"\357m\274\264\266\371\334\360\343\371\373\263" #"\367\347\6\3128\364g\2137g\345\370" #"\264\21=\243\v\304\365\365~\202\212\354" #"\\\261w\261\263\255J\374\330\3+\200" #"\377\224\207\334\v\3764\35!\3759\306" #"\210\202\307\375\341\270\34\340\264\311\364\23" #"\\\310Y\252\367\356\234\36g8\363q\25f\314unN\216X\320S\321W\276" #"\335Zg^\232\366Y\362\245\260l<)\337\e \304un\21\314m\320\322i" #"<@\306\254;rji\247<s\235\305\376\352@\267\357\r6A\204\234\b\2" #"\217\0\2328\31\371\352 \22M\325[A\351\30F\332)\237\253G\304F\354a" #"EA\316\224\202u\310\327\263[\r\337\343 SWESw\344v\302\355x\356" #"\16\b\373\231\352Q\230\356\270v\271\316" #"\375\225s\365`\344\335\275\212g[4g\214\21E>\334\2530\257\225\3\214r" #"\272\370l\226\351C\26\16\206cg\332" #"\331F8\34\333\263U\327\217\316\335\362" #"\310\337\265\234\234\3075\247\335\231\343:" #"\"\16\360\235cx\31\n\257{\202o" #"8\26\266\263\366c\314\212<\306\5\16" #"\373y8Q\302'\355\274\17\20\0003\225#&\342-M\361\242\376O0\344b" #"\347\220dS\0162X\345\230\311&i" #"1\315,\2317\23\343\351 \303\372\260\207rR\272w.\254\241!\23\31\6r" #"\244\376\241\275\26h\362\250\307\21\353I\360gQ\4\326\355\225o\217\"'" #"M\200-\307\256\353\316\256\263\222\335G\360|)\327<w,d,\0_" ) 500 ( #"\323f[\315I\264\347J\302\255\245\263" #"TT\200\340Pk\241\226z\333{\16\353\2\314\243\335\231X\351p\"\20L\373" #"6\300\331\351\312\345\274\231\25\271\323\242" #"\247c\214\304Uh6\353$\247J\327\310\211\316\216D1\311s\214\211{m\260" #"A\207\3167I\201\264M3\3225\227r\334w\311\370b:\254\34Y\351\251$" #"\267\342;f\323\203v\2616bN9" #"\373\262\255\274\347\241\r\271^\27\301\251" #"\0055m'C\321\25wz\322\356\370\365\365\252\36xM($\4q\5\\\261" #"\t\n?\32J\211\350\372\331b\243\tV\206\251PB\225y\234\215\335-P\3" #"\\\327\v\373\373\215\341L\241x\215\t" #"\333\226m\236\366\336\221\247\"C\356\305" #"\206Lg\265\344\330l_1\35\0\17\215\330\2339'6\366\221\at\r\345\177" #"N(\221\337\214,\224;\222\241\324\275" #"\346A\6\360\365\365\25^a\264\361\21" #"\273\4$\300\351\240ho\266\267\201\321" #"\313W\2\266\204\341\276\357\0345\253\365" #"Q\245i\337K\355W\a\275\a\340\26C\267w\304\316B\361\\\27\256\327+X" #"\3723O\246\3\265\303\233\377\1\344u" #"\20\334\327\246\337\223\326@\362U\f\334" #"\t\354:\273\325\1u?\250\0000\334" #"\351\264\350\336\202\245\311\n\321\270\227w" #"\264\237{\26fv\231\355\177\357\257\247" #"w\336\1]\256\327\17\200\367\365\350\352" #"\241\317\rT\352\303r\366\266\246#F" #"\331\353\241\336\376\314\251\214\6\215\354\362" #"Z\247\16d\f\200e1\334\311\250\35k7&C\254\271\36z\356\n\313\25\230" #"<AF\177\316\237\366]\357\253b\203" #"\0\5\243\322w\306\234x\257\205{o" #"\374\313\367w\255k\223\233\247\343\244u" #"\37\243\f\30\254\34\240\347\276\365z\200" #"\274/X\376\271\26\2479*\327\327\207c\17O\aX\327" #"\361\315\326\204\276v\250Z\255\351l`\260\356\357\2716\t" ) 500 ( #"PB\367\211*\2316[\16\360y\376j\335\34\357\367\273\232\311\203y\274k{" #"\314\265\257\326\205\0025\356g\304\345\34" #"+[z\307~X;1\360\356,\230\252\263I\31Y\276\322\36H&{n\257" #"X\335~\375\276\237\375\371\272~x\352" #"\251\247\363\324\365\254\212Zb\327\22K" #"]\257+YB\245\326\311\232=\331-" #"\300\260\336\4\26768\305\252\257\307\341" #"\334\204>\27\200\24\30\315\302\253\215h" #"\337\30\255\225\246\242T\272\336Y\214\313" #"b\325\310k\215\275\202\205\263eE\26" #"=s\246\373K \257\353\343+\212D" #"\357\275\205A\221\255\247\"\236Xz\266" #"\221\21M\36\252\320)\316\270\0010\303|]ApE\332\217s\r3z\2\351" #"\352p\220\326I\b\244\rh\373j\307" #"\337\371?\355\232z\204;|\363\31\340\354\241\37S\tJ\316|'\26\0\312\t" #"\26~\220\316\3542u\236\257\212D\364" #"\227z-\303\211o\356\373\206\201\335\e" #"\246\rp1\6\314'\201\347\326\331\23" #"\1\300\373\2616\232\267\357\251p\326O" #"8\342\363\337t\326\34\210\336\274\261g\351\270x\312\304\b6\32\20q62M" #"K\317\375\264\321\335a\310\241P\21\305\247\363\350\t~ar\216_m\r\rw" #"L<\205\31lN8G\361b\274\310\312\2777\211\273\336\221\346\300N!{\367" #"^\370\216\272\260\0352$\347G\272i" #"\24\273\a\254\375\206!\32&\337\367\221" #"`\337ADz\256\306\203\257\20\2337" #"/\253\3\231C\211\353\360\302\242Z\363" #"\23\254\252j;\225\5X\275\234\371\256" #"VI\331\32\303\333\205\30~\323[\277\357(\3642\246Z\240\362]\200b\234R" #"\211\216\6PB0\356uW{!s\\s\300lc\273\341\32\27\1\302\n\332" #"_F\376V\16\331\200\3058Tk\202\370\24\320{-" #"\2149\231\376\21\f\324l\177\207\3561\336\2435\200W\321" ) 500 ( #"\333\34gJ\307q@ \2660X\237" #"\4\213\305\210\37\207\327\312\200\326\fv" #"\336\367;\332a\211M\222P\361{g" #"\312\300\t\220\212\331U\261\240\326\241\e" #"\266\316\310\351\377\4_\3\330\376\306\366" #"\e6\253q:\200\17\243\331Ct\235}\332{g\356\267\5\200\322\237d=\270" #"\236\356\236\323\351T\204\327\r\347\23\250" #"\211\rz\202\303'0\36cd\17\344\247A\356\367X\214\272\345\31twL\a" #"&\30\201\26\255\241\2\217g.r\a\350\36\206\274W\265\312\333u'#\345\r" #"\274t\203\255\177\247\341t\245!\235k" #",\340}\260\252M\a\224a\373\375\364" #"\206\316\216\353\371\311\32\0\30\34\242\241" #"\226^*\230}\2\346\16\246\330\332o" #"\205c\356\251/\264\337\375\376\356\373\354" #"P\321\357\273\e\273k\316\0%10\a\206\212\376X\202\350\327uE\21k8" #"\332\32\v\274\252ws\266\2233;\272lt\243\312\357\256t&9\233\b'\247" #"\203\363\332\277\2\376\305\2169sJ\375" #"d\36i\244V\262\266\275\275\244\356%" #"+\252\e\330\324\231\323\371R*G\275" #"h\17\4\254\325q\242\203\2301\316\261\344O'\250\e\373'\350p\367Co\345" #"\373\360\tx\323@\217\1\245\21\311\26QwE\361\222{\260\206\4\35j}\225" #"g\301\271\206*\270{:S\332\v\311/@\347\354\212!\6Y\220\v\a/\253" #"\311\216h\337\23@~\237\23%\25\341\330\n\17@\335v\310\216J\a?\301\221" #">+\200\364\354\304\223\371\247\a\200\332" #"\330\353MF[\272\303\321\36412z" #"\250\373\256\224\307\2\260\357\233\266\223\5" #"\352\3251I\251\36\351\220\337\1<\355" #"tN\236\372\266G\210\34\236\230\200z\214@\375\275n\314kdD\32 Y\345" #"\336\0066xM\376\223#G\235\301}_\3161\355l" #"/v\246&i\355^\327\25-YYpx\315\t\354" ) 500 ( #" \246,|'\25}\215\201\275#*\320\354\210\34%\22183\256\227\347h{" #">o\352\30764\241\277\364{\352\223" #"\231\366\310\303\246\3519\204\23t\16\337" #"\357o\254u\3\330\330;Z]2|\233\373\244T\251\336\341##\35M?J" #"\347\22\237D\23\202\304\220$\377\370\212" #"t\325\210$q(\a\1\266\34\372\1\222/\212\336\3663}F\233v\312@v" #"3\211\326\224\352\307=\207a\376\355\337" #"\376\315\37i\34n\0A\361ka\232\220\375\204\246\327Vx~\262X\2b{" #">\25\225\214|*M32\f\233\25\223K\364\264{\266\335B\30\265\16\234\257" #"\353\342&\f#\350\4u9\253\262\r\310$~\336'\17c\261O\317B#)" #"\5\213\374\343\327\250\2740\336;A\366" #"\230\27\f\332\24\0\316\334\220\345b\3" #"\332\310^\360s6<\300\3578B\27\375\20\233Y\344\316}\202\36*<6\321" #"VXh\fN\241\352\300\b\356G\17\332\247@\354p\0004\351\254\vk\337\333" #"\2\t\24\300\373\216\242D\e\311z`X\n\250\344D=n\37g\3570\4\272" #"/}G\377Y_\223'\360\241B\333p\277#W\267B\22,f\3604\354=" #"l\a\224b\356\2145\31\a\253>\205\361\31\25^\350\276%\27jS\344\355\376" #"\272\361\334!\277r\312\372\1\314|\301" #"\306\316M\243\3235\200\203I\226\321\177~G)YOFv\357\352\311\370\\\307" #"'\200&\20\267d\24\237\262Wg\240w\2578\367\261\34\23\34\316T\277\306O" #"\372\241\277\247\344\255*\212\365\263\237\316" #"\205\326\320\335as\2\n1\a#\353M_\364\357<\200\22\214\371\270q\226w" #"\364\305\235v\26SV\307\1\235?\336" #"\303u\315\2\310\272\277I\22\300\275@Iv\34\t\223\225\340oT" #"\316\242\34)2\236\f\275\261\247\370\214\347B\350\273s\37\373\32\36" ) 500 ( #"\367\221k\1\300\220\271\246\222S!\\" #"\ah0c\264\256\300\246\0\264\306)\23t9X_\360(\326i:\351yF" #"\252%Z\21\35\303\202m\26K&P3G\2\357\316\322\3509\273\323\333\201\366" #"S\266t6?\3175\322\371\351:0?\3572|\225\32\306\321\251\241O\"\232" #"(\26Jy\203\272?\367\rL\203\357\212\322%\354l\372\247;\272tN\36k" #"\30\216\273:\34t\235\225\272\307jje<5T\325\17\220\21\336*\340p\240" #"\27\270\353{\257\353\312!G\327\234\37" #"y\217\372N\26\367\206\236\363M\266\21" #"\16\337\nK\317\220\203\263\232\277\234E" #"\352\340\205\225L(B\2\247\275\260\27" #"u\265{\260\312\17;0\303\1\21\20" #"\352{\326m\224\336\221\262/\334\352\341" #"\320\r\244\243s\315+C\372\262\255\222" #"\2311\252\r\32\331q\244\374{\\\264" #"G\334\272\255\314\365\213\373\35&\26\30" #"U\217dh\353\22v\4H\373`\26\351\34\222\273,T\256\350\265F\241\313\256" #"\21490\34\31\361\206\235\272\341\214\206" #" \366\217\303e4\235U\357\225\274\270" #"\n\313\302\236\253\207\260t\222\243\236\303" #"\306\247}~\352{\352\203jK'\235(;>\322\6\21\210R\256\364\371Fj" #"\31\331\336\327\353u\350\233n\37O\307" #":\354\2751ev\202\317\370\2323Z\3619\201\356\01605\3433}\3416<" #"\1V7\356\242\306GP\316\306\6\206" #"\3515t6D\a\326\341\360\251\215\244" #"\2009W\226\372\272\t\322\bP0\314" #"\360}\337\300\336\4\t.\266\203\367\312" #"\20b\317\251-\360\242M\222\2\222\302" #"I\357F]\f\314\300\336\272Q\321\353" #"\16\267\350\243k\221D\337\222\322a\4" #"\331b\207\306\264\0\n\206\35\225\245\206" #"\311^\232m\243z\16\353\1\266CsQ0Jhv\373" #"\334\341E\305\36l \vg6\220\236\227\276/\5\321\230" ) 500 ( #"#d\240\262\357{\331\301~\201\253\235`Gx\200F\213B\232]\27\302x0" #"\24H\341\356\312\371\331)CF\340\307" #"\224\202\6\356\5\372\24J,\371C(\203(\376s`\314bu\236\340\275\337\213" #"\344A\354\372\221\3\2142Z\375^;\270\340,\364\223-\31\306\316\"9\302X" #"\3777C\"g1\363\230\224\257\332e" #"\375a\344\373\313\314\320\217\263\305\272*" #"/\260\313\321s\335\317\v\325\365\372\232" #"\247\254m\266\27\3445O\331\350\367\"" #"Cq\0\210&s\335\200\325\236\352\363\225S\367\323p\214\16|\365}R\320#" #"\344\276\377\356'\220T,\250\245\23," #"\306J\300\330\34\351\234\360\331ip:" #"\363\240\275\e\326Z\343\205\203\335\301\214" #"{T\257\343\224m\31_s`\241\n\22\1\355S\234\317a)\vC\16\345\343" #"\265\226\234\367\0LP\336\274s\232\324" #"\270\370][\325\327\265\341\4\4=\247" #"\355N _\16/\1\343\327\327W\260\215U?\241\367uYx\356Qw\312L" #"\213>\fJ\237\315\347\233\25\32\356," #"\3253\244\336e\372'c\372\324)h\340\342\247\317\346\317Av\ar&\364\247" #"\223M\343P/\2663\353\257\3568 \3222x\306[M@\0\222\347\271\223}" #"S\5x\336\373.vS\300\357x\3266\324B/u\20\322\230pb\226\235\347" #"V{#g\264G\6\321\326\244\237Q\337\34\324SgfBa\347a#t\375" #"\316\275}\202\362\4\360\321\321\340Y\357" #"\241\316\211\375\274<\327v\214\301\24<" #"\263t\332\352\231\313\301\32WD~\303" #"y\342\e\300}\314}\212?\215\340\3758\217\355>*\347]\16.Ao\202\343" #"\307\275v\300\5I\203\305w\357\312O" #"\346\205\fn\e\276\r\257\213 w\t\233\350\254\354\315\26\246f \333" #"\274\223!\347\204J\244\35\221#p8S\363\264\243\245\243\330*nG\235" ) 500 ( #"QF\212L\274\261\234\"\3217\317\b" #"\352N;\337\327K\362'\307\265;\360\375\36j\3156X\323\351p, S\336" #"t\366\231b\332\317\252\332#\336\367\373" #"\307=\20^\353\321\212\372\263\242\324\224" #"c\21\",\262\36\356\316\311d\332>" #"o\236z\336\304\351e\321\243\"\270\241" #"w\312\334\242\365F\316Z?@\202r\2\315\260\276\27<\26 \253{#\267\206" #"]\35*eB#h\5&6@\326vs\224\336R\22\263S\340\347\207r\240" #"B\250\342\254\323+\313\242\207\265\340\313" #"\21\t#\330\316\360\362\367\375\306\276\1" #"\367q(\17\3454\271\31lr\274p)\372\213\215\344\a\233cWEo\1\356" #"n\20\201\226\363\330\200YW\a\235\245\3120%4\322\221\n\300PE\2\22\200" #"~\250\2561\363{\356\20\310\36\362\357" #"\340D\225\241\362\342\1d\216\221d\201" #"I\343\301\20\270\230!~\256\300\343>" #"\214\242\273\37\214@g\363z\b\263\224" #"\223\272\34\214\30U\350p\r\22\1\302" #"(\337\330\253dI{\333\277\217\177\217" #"\347x\354\275\366C\214\370\306\t\272\273" #"q\357\177\227\341\334\0\336q\357\367Z" #"\311\26k-\341\347\275\35\3756\233\254" #"*\244\335C\367\311\f\231Xh\344\336#\276\307P\5s}\235\177zu \320" #"C\363\336\356\221\n\343di\373>\231Y\366\256\256g*\245\364|6y\337," #"\234\343>t\306+\2571\3164&\375\354\35NnW\324z\226\376\f\222\341\236" #"\337\236\206\17\225>#\243\370\276\337M" #"1\213\201\30P\210\363\212\210\305\3510" #"J\6\225\307\350\260\230\352(\333\321\v" #"K\30\271\252\212t\256C\265\306rW" #"\244\311\363\372}\17\17\300\214\215a\b2\302\25Tb1I\20\6\343uE\236" #"`\233\365\256\26\201\306\342\227\353zaN\246r\260\315" #"\"\35G2\314\245\3\2645\3313\364!\3\317\27\237\257" ) 500 ( #"\234\226\35:\232`Z\341\333\370l\223" #"O\2153\226\314\376^*\203\366\363I" #"\22\360\273\353\f\t\20\364\363\333u\242" #"\356O\372\203\266\367d\251\271\336\347\31" #"D\204\307\35,\26\323@\v\e\3125\364\354\222p\357\3056I1\16u\357\245" #"|\243\334fw\216=G[\313\275\253" #"\267\261\273\246r\361~\266\337X\233E" #"\342\4.;Y\334\256\247\372Z\231\205" #"\23\325\306<K\327\346\263\231\245\323y" #"\277\343\34\240\316\263\206\26@\5NV" #"6\20\221\207\352\346L\351\310\275od" #"\303\256\216<\275\3300\317\2363E\300" #"\242@K\275\355C\314y\235a\330\335\"\306}Y\310i\270\20\4\351.\31\274" #"S.S\256\233c\2435*K\313\265" #"\320TC\367*\334\346\336\24\250\234\223" #"\305\256p\244,\1\264\337\337\367\ec" #"\\\200O\274\276\230\347\252p\276\236i" #"\214\300$\276s\270\303\274\30\325\326\240" #"\17\365\200\276\367\312=\310\324\r\257\2-\335[Fc\207a\355w\352\204WK" #"\357\351N\310\tJk\0\304\30\3k\327\0201E\330\341t\212vti\301\256" #"t\314N\200$\t`\306z\247\311\310\3025f\244f\250\230o\340\267\337~\203" #"Xd\367\215\265\356t|_\257\327\a" #"Q&\307\\\23\4\273\234\377\372\365g\230\223\351$$2\230\272z]\27|8" #"\"\330\277s(Bb\371\20\324\313\201" #"\313\352\vsr\314\212\5\200\3037C\310__\252X.\320%o\230\300`\0" #"6c\236w\363\266\207\203\323\313B\250" #"\235\t\331\231\360\34\357\373\272.\210&" #"!\376\261\354\3h\333\263\300\242\302b\f\243\301,\231\317g%xV\263_W" #"\366YT\0CLj\37\221\251\303\323C\322\3270,p\2\17W\304p\273\n" #"\17\244\214\317\251du\320\"\1776\376}\357\r\17\200" #"\364t.\236L\235\24\334z\237\355y\0\34B\235'," ) 500 ( #"\276Cy\276{\357,Z\353\312\322\214" #"\306\243\306\303\312;_\364V\305\336\32" #"\262m\16\231\363\325\f\3\"\\\325\303" #"\357\5Pz\247\211'S\324\225\265\274L]cX\264\341\361b=\372\224\224\376" #"\371\356\25Z\34|\227\1\210#w\a\2431\2433\306\264s2U\177]c\300" #"\274\344\214%\16\222\341\221a\334\273\1" #"\235\364\242u`\5\254\37r\370\314\261\375\0k\306\320o6]G0Hi\210" #"\352\263\362n\305\240\26\213Xk*\371\350LR\202\350\332\300\30$3S\206$" #"\207]f\224\226\223\354\271\34\267\346\344" #"u\226@?\353\225\264Z\3)L\375\333\0N\a\364r\24;\220\351k$g" #"Z\275[\5\"\24\2\344~\24{z0\323\203\20\370\32\26aM\307\276W\234" #"\205\316\236X\205\277\e\305\274\335\361\276" #"\337\t\264\324\216\254\212^\316\342&\263" #"\201\327\213\3270/\226\366\3712\253(" #"\17\2013\317\235\6\22\0\21\325r\307" #"}{\366H\255\221\313\372~;\212q" #"\335\325\16\20\307\373:8\354\204\1\320" #"*\333\233\236\21\21B1kg\325\317\374VE\304\372\4\315\214P5`4\347" #"L#&\31{\262;G\256\246;z\210\330b\377\304\202\r\30\253\270\365w1" #"c\222\237\335B\300\303\360\232W\371\35" #"\355\36\341u\36\267\263\363\314\216}\357" #"\3|\252\327m\351g\311O\217\346d\341\261{:g\356\322\201;\34\224r\f" #"\372~\344\372\273\345g\30\\\344\350\323" #"\370r2\262!?\356\336\332F\226\303" #";\306\300\214\252\374\353\22p\362\34\332" #"Tu,,\366\272oG\245\273\354\320\3755$\341ptA[.}\221\205\345" #"M\306\334\24V\27\211\323\3018\362\34" #";\220\304\227l3u\5\327|\335\341\260_L/\354\244P:\367\261\261" #"K\205\344\351|s\315\2579\263\303" #"\303\b\273\326\345\262\210\243:s\332s" ) 500 ( #"\326\262\\\370\272~Q7\273\247~P\235\221\31\340\b\222i\f0\v!\306\37" #";`\263\210F\247\222JyW\307\16\17\343\247\3566]\326J.\b\373\371\331" #"\"\324\336Q\300\253\211\230\204P\17<\321\374P\207H\2558+>BO\215 " #"\327,\1\177\256\223\316\22\4\200\343\374" #"\372\216\357UkO\351\355\226K=Fv\201\350N\231tAO\363\353\344\245R" #"\0}\357\30\373\314\357\265p\336I\225" #"\215\320R\6\370\342,\350\203\231\31\347" #"\320\203\337~\373-6\214\210\376\373\373" #"\35\341\260\201\367\375\3066\340\275\253\330" #"\300\335qG\356\311\f\17z\304(`>\0\17\00460\307\205\21\211V\246\234" #"\263v/;+\233\r{\275\261\356;\17\261^\235)%K\\9q\375Z\22" #"\334\231B\30\211\32460\24VD\201" #"\0353\313\234\2214\232\261Q\337\1h\351MU\273#)\360>\322N\302\250\n" #"\373bkK\271z\30l\375\273W\30\367k\244\201h\3-\372\272\37\6\351\301" #"Rv0q\202\304R\320\335\v\367P\316\24x)\3278\0\255\351\274\326\214\212" #"\275\330\31y\214\317\234+\355\231\236U" #"\337\325_ex\t\246\345\264\244RH\346\267\274\276\276>z\26\1%\367H\307" #"A\261+\346\300\25\216\306\311\344\234`" #"s\316\211\327<s\35\25\316\331\356\300" #"^\347\364\260Q=\177\363gm_\276" #"\276\276\322\213\325\272<\r\273\30\221\5" #"y\246\fK\275\243\252\36\316\263X^{9\227%+\275\37\264\177\354{\336_" #"\3737\253\301-\327k+Mf\357\343\231\0\266\203\201\2552L^\371\213b?" #"\345p\360~>\r\256\236\375p\4e\30\233,\350{\373\231\350\200b\357M\346" #"\336ip4H\"\231\b+\31%\v\251\266m\206}\27S\277\32" #"(\314\260\2353\3375C\247PQ\305#\267~\235M\336?\367\37\221" ) 500 ( #"\302\21\6\320O\271\357kc\246<\361Z\303\21F\21\321v\310]\6\273\366H" #"\305j]G2\374\275\22\350\253-\22" #"\277\263\31\271\6*y=\235\257\263\263" #"\302\336d8\367^G\352Y\26\366\302\217T\0253;B\323\335a\311\275k\221" #"\246^\250\374\224\25kr\246\374?\277\5\236=\234u\262\350bK\343[\233^" #"l{\203\363l\246\23\272WDU\220\371\3300;\316\312\35y\210\\\343\"y" #"\344\314\365\263\230r\202\322\347i\370My\222<\307\331B\352\260kb[U@" #"eP\305\276\214\276\364\2\323\362F2aeK\243\200\a\300\335u\210\3273h" #"mk\17T\241\337R\1\256\263PQ{\5 \355GwD\373Z\300\243\207\356" #"`\215\311l\344\214dK\21\260\231\357" #"\27\351\326dv\327\375\262\325Ykk\332t\252\316Q\246\bMK&\32({" #"\201M=\273\234c\303\307P\207\4\300" #"p\245\374\324y\25\271\27\272\16\233\344" #"]\310\320^\352(\2426i\210\334pd\301\337\366\215u\257\350uKR\303\357" #"\250\313\201\301\227\263/,F\312vw\364\17\\2\0\4y\230\371\366\261Xd" #"}\311J#\34\211\35\353\212Qi\214" #"\375\272\302\",Tg\377\336\373\355\270" #"\367iC:\340U\235\23\3\360\324\1" #"{\337\\\203\1\214Q\370\311\2603\177\331#\342%\"\346\353\353+eA\3674" #"\306\300D\341\261\27,\323Ms\2242\200m\354\3340\307\300P\2\365Z\234\r" #"LO\263\332\275\210\265S+\255B\343\204\t___q\230\313hk\243\4," #"f(\342\r\261\227T\22<\220\253B" #"\t\311\32\260\27\"\232R\340\242\214<" #"\234#\372\263\255A!\3233\350@\253" #"\37\246\204\b\221\307\253C\364\334\310;@3\214`w\267\34\310\316" #"\"\351U\200M!\352\306\260\266\360s?\364\25F?\333\343\34\206=" ) 500 ( #"\326EJP\357\357^p\277N\367\220\237\241\3342ng\252\204\273g\221\302j" #"\317I@\322\237\273Z\306\374\24\32\366" #"\275\231\177\24@^\327\353!\320\347K" #"\367\242{V\337\337g\201\203\356S2\304\365#\263 \220\341R\20{\37`_" #"\300\260\203\375t\272\356\373\230\\w\315I%\n\262\2733\356A\317!\ah\3" #"xGAT\17\353\334\272\27\20b,?\303\257\235\355\320\36w9\352\271\212z" #"&\255S\au\212Z\334\273\n\216r" #"}\233\f\310\330\26\220=\331\317\303\211" #"\215{z\312\267\326\34(f\340\276\27\206w\271\357@zD!\6\235\221k\214" #"`\2777\260v\260\336\225\227J\346u" #"\37\341\247~\26\272\\\367\360\2345\331" #"\221W\257gH\246\264\235\243l\241\205" #"\326\326)\236\212\321\a\311\231rh\331cwX8\336\263\0l\227\a\255\3233" #"\357\272\357I?\227Z\367S\256\t]\371g\244\3518\322\200uP P\304\34" #"R\246tA`2\213\b7d\254\365\224\374jG\25z8\276\277\337\254\217H" #"\247\245d\242\300\354\251{\316\260\247X" #"\30\1\203\35=\206-\"\203\355l\256" #"\252\v\320\370Z\256\301\351\254K\326\265" #"\317]w\351Z\275\342\373\251/%\377" #"#\30D\311\201\a\263\255}\341\332\256" #"\\\243\276_\322\27\335\211\322~\357-" #"\320\310\24\20u\376(\231\255\220\355\272?#3O\231\256\365.ybW\31\266" #"\243R\315\310zo(:\332_\375\354j\317\223qT\321u\26\334Q\6\334\a" #"zz\331\30/D\17\27LklY\223ww\352\304\322g\216a/\341\36J" #"\231\237)pr\330\311\264Q&\237\221" #"\232X\35:\223\367\302\275n\f\30\356" #"\367;\327\351hY\26D\230\"\256\354F\240sx\241\327\317H\317\354" #"}\326\235\350u\205S;\346`\353\277\2750\306\225\330`\207\256\37\366*" ) 500 ( #"\302$\362]I\325-\250\303E\1x\21\bb\36\35\216\232\b\350@\350.\256" #");\334\0\333\231\222\306\321\306<Y" #"b\235\315\201y\315t\242\335\242\310j" #"\250\36\250\316P\217@\362\373w\200\350" #"\v\336\34<\315>\240c\3061\275j" #"\342A&\367\347\310\253\n\265\347%\247" #"\3151'S+\240\b<\220\271\273\224\303\315tPg\353E\312\336\204RJ\366" #"\266H\213r\274\357\r`aF\eL\351\353~VF\260\346\2767vt\334\302" #"\332\230N\2\306\234\330\376^7\334\220" #"\355\362\306\30x\357\215\371\207?\374\237" #"\177|\315\vo\265}\212\2031\325\335\340z!g:\243!\366\26\226\6\f\327" #"U\5\6p\362\275\225\\\316\2600\242\307\354\3667\223\22\"\345e\0\0 \0" #"IDAT\317\203\333w\3C\306\233\341 m\276\332\247\230Y\264}\342\301q" #"\337\330:3)\204\206\252J\345\277\231v\eS=\2\224\356\305Cp]\221\226" #"\340\221\3\231\206\217\237{\215\1\264\361" #"\300\332\370\24\6\242}\n\20\24b)" #"\205\367T\306\374\234\301\254*g\225\237" #"\326{\26\367p_}\256\376\256\366\\j{\205\246@\343MT\374\17\0032F" #"M\233\221q\351\336u7\"\245\224?S\t\372\201R\230\261\263q\2'\35P" #"=\373\266f\210[\354\3528\363\0\373" #"\332\2251s\314K \251\230\r\205R\330L=D\242\261i\375\245{\353\340A" #"\34\330\3361\327=\24\223\363\6\370\367" #"\220i\201\336\316\310<\257\257\342G)" #" y\267\372\375\341\1\307+\317\314\336" #"\271O\t4\32\253\245<u\2017\261\247\35,(\27\357t\346\252M\225\326\275" #"\263,G\212\307(`\324\345j\314\361\270.P\374\257\326f\5[\0222\17$" #"\240\"\343F6\300\235\5T\16$\0\312\254\360&" #"\263O@\336\301u/8M\200\242\337\307u\320d" ) 500 ( #"\316b\255$\377\275\203\307\220\1x\337" #"\4\216\301v\35U\322\1\216t\276\353" #"\331\265\16\36g\373l\277\363\323\236k/\364cU4\217Q\305Z\235u\4\2" #"\310\233qfV\312\37S\246\264\27O0\315\365il\310\230\bN+A\226\31" #"p\246#\350\273\353\31\271\357\237\223\367" #"\212(\b\231\335\310\306\374\251'\362\374" #"\366\325\252u\351\354l\327!\235`x\256e_\337\353\272\262uU\327=Z\3" #"\300r}j\215\316\210\211\276[\272\201" #"\3\206f\336t\246\262\311>\6\23\226" #"P\323J7\313\341\336[\335h\374\b" #"\353\237`\237\244\316v\17\246\230\3679" #"\6\1\325\230U\4\235\373\372\370w\227" #"\21\352\32\v\347#\330\262\250\250_\221" #"\206c6\303I\351c\320k\235\250\373Vtb\0\340#\301\366\30#\34\211J" #"g\273\327\302\365\342\264-kN\32\367f\206N\bV8:\\P\314\330\333\232" #"\35\217\220\21\227\257\bI\37\216\316\336" #"\31A\206Y\233\0gX\353\35\340|" #"\326\375!\"\221\233\16\203\30\276\236\212" #"@\277O2\1\250\353\200\231j_\250" #"\223<\302\374\322+\2343\200\300\e#" #"\326\263\364Z\312-*\3451e\322\350" #"\320\30X\274\267\25\35Y\265\236!\230" #"\274\246:\276\240\212|\335\352~\372:Iv\217h`\260\306@\364a\217=\256" #"\310\23e\256\327^\246\23\266\204W\254" #"\351\301\212h\355\300n\323F\332\343a\\g5\4\310{\202\35=\342\335-I" #"1\25K\222$Zq\255\223\\,\314\tN\335\215\265\30\301B\337\367\312~\315" #"\272\327\335\276\37\0\213\321\276\3577s" #"\233T\200\20i\3\230l\201\323\25(" #"\231\310g\322\377\306\375\256\4sR\332;Fvn|;\253\356\366~c\373;" #"\24 \0312\213j\346\355\16\227@\232a\337\e\251v" #"7\363X4YcD\270\21\306\344\361}\357\2\352\341\341" ) 500 ( #"~\307\f\363a\225k3\247a^\306" #"\2425\20\264\334\321\247Ea\274\275\231" #"\307\267|c\335\247\341\320\353\375~7" #"\305\347\340@\25v\211P\241\327\223\31" #"\220\321\241\330n\270\e~\373\355\e\367" #"\275\361\375\375}|Gy\374\225\273(E&\205\363~\277c\274\244e\v,)" #"\202\203\325j\327P\30\245+\307\276\267" #"Oa\177\202\341\16p\245\330\3735\372" #"\32\365\234\264t\200\f\311\24\364\357R" #"q\323\263\273\304a\2606\260n\256\235" #"@\202\200\324v\216\244\376)-Bl\220\326o\357\315p\366\234y \227\fd" #"c\304\373s\345\24\231\207Q\326z$\333M_.\213\20\364\231\265V\215u\356" #"\17/\343\27\357\e`\0360\234\254\250" #"\1\314\271\333\f\305+\207\30\300\301\370" #"w\246\244?\277\234\25\206\233\221?\353" #"\262\324\231+\2\3563\227W?\337{\343\353\353\253]7\344$r\316\356u\303" #"\314cj\336\203\3217P\261\357\e\6" #"\262\3460\206\265\276\256J\3q;\373" #"\220\236\317A%\226#\264\307\tV\250" #"\234\e\343\372\0\313;\366\332Q\353\242" #"=#\3\342Y\330e\363\312\321\333\222" #"_*\315\317\"E\376\351\271\36G\241\315\17{\23\177;X\230\335B\373\224=" #"j>\205^\363L\360\202\214(X4c\367\316\332\327\36\367T\255r\316U+" #"P\240\357\371\322\367\347\2755G\250\313" #"\17\240*\3500\340@\32\372\376\276\4z(F\256\3Y\275\2673\271=\355\253" #"\237\351\316\240\23\2507\335\362\270\277d" #"\201\16\306;\2041^:\233z\277\242l\257\30\206\263\234Edc\220\5\3341" #"\351\355\243CK\330\230\0044\361\363\255" #"~\352\222\203\3041\255\23\20\255\23\237" #"o\260\223\202l\244\273G\213\273\0z" #"\216\306\304\357\17\335\354@\364\216\237\231N\6\260\250-\207" #"\212\265\224\5\204\253/\207`\373\202G\17z\345;*\321" ) 500 ( #"T\21I35\342\327\350\327\201\365\276i\325\36i\217dUG\2445q\17\326" #"\276\241T\214<\27\3745F\330\317'" #"\303\177\310\235;\2561\341q~\246\225" #"\315\247]X)\373\333\351xk\222\3503\252I[\302u*\ah\6Y\361\35" #"\303VB6\3577\317\333\"\263Z: R\347P\251(\214\3102\337x^\23" #"\20\250\265(\36\5\323\302\256y\1k\343\353\365bO\335\210~\34EXv\266" #"\342\273F\331H\331\313\36\365\222\f\247" #"L\330\346\336\e\vDk\37\251\391\355\324\5c\262M\227\a\306S\352E" #"\356\231\31|\221\354\224\23\224X\315+m\253\357\237R7Thy\337o\0001" #"\245\22~\364P\356)\253:+\331&L\3405:\220\254\315\250\207;\273\337 " #">\363\353\327\257\2\310f\230\177\370\333" #"\277\371\343DS:\341\361\337\276q\275\256\fGt\245\247\203Q\354\6\0y)" #"[\243F\225\357J\336\226\314i\30\231]\371W\36\202+\304>C\210\351aF" #"\343\343Q\t\313\367\6\247\21)\\!" #"F\342\22\313S)\v\324\355e\224\344\265\301\242\247&\30VU{4%n{" #"\0]\200h\252\16H\b\207\230\6)\323\21\255\247\332\242\177\264x\2612ds" #"\314\fw\374\303?\374\3\376\376\357\377" #"\36\177\371\227\377\26\377\376\337\377\273\343" #"0J\31w\246\"=\2704\36\261n-o4\25\210{&m\347\277g\365\310" #";\24\b\36!\353\6\312\16e\352~<\337'\v|\346E\271\204}\253\372\332" #"\322\220=\235\b\201\347\3473\353{\270" #"\270R\340H@\257p\315h\n\241\337\203\t\31o\2\32y\227Tv|i\375" #"z\347\v=\373\241\224\37`\276\ev" #"\206b*\337\256\263L\235\251\227\21V\2360\0X;Ky\377h" #"\251\2\241LF\310Z\a\202\375\276\236?gJ\35\327l\2650\326" ) 500 ( #"\373\375>\236\363y\r\335\347\223\375\317" #"\373\203\300)CD\327x\2051>?\333\225t_S5VW\330\v\261\27\335" #"\310u\220]`\315\263\0\320\37\367\236" #"\5*\355\254\224^\203\250\267\224\27\3515w*\314kLN\314t\312\322O\235" #"@\372\277\305\342\212}}:\31\2e@\265\306\341{>\317\324\30\327\361y9" #"\306|O\31\220\31\347W\373\322n)" #"\366i\345\317\24F\356,\274\0\361\210" #"\\\313\376;\351\270\272'\266L\254\302" #"\2373\312\244\373\321\320\236+\316\373\323" #"\361\25;\225\216\346\357\350\v\351*\205" #"l;\330\321=\b\\\310\21\340\372<" #"\230\375&g\365\222s\246\326\211\265\316" #"z&\r\6\322\220 \375\236\271\211\204" #"\244\5\270\202\325\v\26ko\32\342K" #"\371\215\361_\256\aj\275\237\251g\303" #"\f\353\216<w\365\360mg\220\357\221ni](Z\2338\0\231\2\bT\336" #"8\320#\241`\301\323\240\315S\361w" #"\332\202\361\331\337\30a3\230\v\34\337" #"\345\310\357\225s\270\27\311\257\265\243\270" #"\314,\337w\330\276YQ\217\36\331c\e\323\263-iwn~r\216\322s0" #"\2518\17\22L\372\323\230\22\322r\226" #"\v\374(]\3P+\252\35\204\233\230" #"\332\265\357\354\223;b\350\313\270*%" #"\223\367\342\1\336\321\256_\355T\307P" #"\213/b\233\25\343\251mT\372K/\356\355\372[\216{b\b\244_{\330\266" #"c\35\333\332\365\310\35\353[B.F\373\216\359\372aV\tZ\245\337\245+" #"\250\203v\220\207i#\233\300QwW" #"\324\347i\207\265\346t\3326\306\270\300" #"\361\314\3012[\24\372\266\342\320La" #"2\303u\234\345\260k\332\343k\34\235" #"\177\264\226\253\255\337\230\36\253\267\235\23" #"_6p+\254\21\223\177:\232wG\344*\235\27\e\303" #"*\337\362\232i\\1\34\257\20\276\351\210\351N\254n\265\355" ) 500 ( #"\30\216*\354\360b\0\346\30\234\16\3\207\17\17\0\311kf\376,H{{0" #"\n6.\334\233\325\225\327d\333\257\321" #"X\230bf\302\323\321=F\376\356\234\301\304m\307\364\31gUJ\225\t\3469" #"\2424\24\324\6\0024\207\0\6\27t" #"\307!z\275\252\275\207\16\256\274\307\367" #"\373\215\377\376\177\3777\374\317\377\361\377" #"a\335o\334\357\367\21\266\356\207]J^\2\257^\217s\316,\270S~Q)" #"\202\2\257\2\271\357\34\327w\32\202\16*$0]I=\201o\a\247\372{/" #"Z\234C\375H\203\271\32\21.\202\0" #"H)\351\376\275J\347\320\365\364{\346" #"\a\207'\272wv\2\221\1\21\3\332\357\361\b\201eq\312\300n\343Zgt" #"\356p\367*\242o`\266\37\234\347\272" #"v#\355\356\311\346K\206\373\372\366^" #"\241\372s\335w\266\237\363\306\200\1770" #"\312M\201\335\215\341Jy\260Sq\215" #"\307\277\t\220+\214#\a\350\271\277]\16\272a\352^9PaL\32=*\373" #"t(\257\221\221\206\237\362\311O\20\r8\213\237\tZ\2p\352>>\330\335M" #"\204\246\201\e\360\263\250\256;G\364\364" #"c\355x\221`\222\31\311\21\250\222N" #"\30cD^\327\317L\246\336\243W\255\321\215\340\312 F\263\27s$\3a*" #"R:;a\250\315\327s\37B\372\32\323Y2}8\211\fH\306\376p\255\357" #"{a\257}8\215=\347\255\27\262\310" #"0\363\231\317H\222\336\333S\201\372\347" #"\24>\346@\34\344\3719\35\250\263\273" #"B\357m\252\353t\375\3143\335r\266" #"\225\n\321\366\241\313 \322 \177\346\357" #"\246\241l\373%'G\257\16\22F\264`|]\225\237I'n2\377W\327k" #"@\255\237\223\347\367\353\275\331\2635l]:A\262{\253\322\262D\324\0" #"aW\242c\4k\315<\301\304\200\t\357G\242^\1w\235yvJx" ) 500 ( #"\247|Z\364l\336\333\243\263Q\355\361" #"\230\374\354\375V\16\345\331\r\205r\302" #"\324C\365,~]\27v\274\237\235'&{1\223K\342\332\254\350n\20\216A" #"\bm\1\317Fz\210\21\26K\331\355B\205\333KF\rh\305d\325\225!\301" #"\336h\366\311{\177q\356\315\353u\301" #"\2\313\310\3111\32q\342\2031\330#\377\"\26\260a\354\340\321d\213`z&" #"\243\337\367\177\214\201\373\256Q\345\333\311" #"@g\3332/9}\222)L\203\31\331!I\377\6\6\301`\310\327z>s" #"\323\21\212$J'\330\244\243\343\216\32" #"\36\2\16\320\301\36\331\16\364\320}\266" #"\341X\200m\274\276\b\366Y\360\267\303" #"\331\343\34\205:\213\326d\237Qo\25" #"\215\361\36\331\347W\367)u\227\21`" #"\221\37M\37\22g\225\336!\26\243s" #"\362}\337\a\310}\312\214\366a\344\306" #"\0\300\332\t\354\f\374\302{\335Q\275LFt\214(:\350\355V\366fU\335" #"\342\225\356\373f\221\317\234\351\371J\351" #"\3179a\327L\326\324\347'K\2606" #"\333\207\275\256\v6\21\355\263\200\205x" #"(1\263\256\263>\260o\313B8\371\374,\252\3\224G\323\31\205(\212\214." #"\23\255pK\306i0\341\235_\27\n" #"z-\366\250\3\303\335\276\243\272{\304\340\0x\266\b\232N\303s\257E\6*" #"\204\227\306\225S?\376\371\237\377\31\333" #"\331\366E\233\253\215Y\213^\342\223\241" #"\260\0Q\312S\352@\202\314\311\316\3" #"\220\n\27\261\226!4\n\177?A\255\256!a\357\5s\352Z\320\31\242\36V" #",c\e\207\305\345\35\3f\e\ewz\200\32\27\333\257\321e\351\4C-\214" #"\351<x0\303{-l\332\1\266u" #"\213\203\323\201\331a\354\222\261\2\326" #"\362v\257m\274a\354\277\214j\177\316\16\376\362\360\214*" #"d\231c\244\327\351:/\255\247*\177\201\310\201mL\257" ) 500 ( #"\237\340\242\37\320\347z\354\270\307\356\345" #"w\3200\207\362\350\34\303#_i\214H!Z\aK\366\374\316\247\21\311{\356" #"\262w\200\347P\264w\25 \30&\373" #"\3126\345\335\225\217\24\350\n\366\307=" #"*\204\303\21J\371\0160\223\r\324%" #"s\6\330Z\30\36L\274\227\343\331\323" #"i\322\t\221l;\363\312\336\357\5[\305\354h\17\367b%\362\212\224\253bK" #"\v\264JF\272Luv\251\326\347L9*\247D\254\254\300\3608\24}\327\177" #"}?\4\0375v[\214a\227\251\316>\232\221p\350\371\222\36`\253\356O\272" #"A\327\351\341\337\222\355\276gOGW" #"\272\201\206\264\300\346\tZ\237\216\201Z" #"\f\235`@\327\347\265\fM,\213\t^\32T\262\3629x\215\312%\356\306\276" #"\e}\4C\245\234\303\336I&\317\366\336\234<8\372\24Kv\\\360\350L\324" #"\213\37\323^4\273\"\371\313u\340\35" #"R\326\303\266\212\24\361\355Q\364\350z" #"K\201\276a!\243Uw \262`\214\301b\254\0\217X\5\6R\17\314\31\317" #"\e\371\234\223\316\36#\236\1\276\233\335" #"\325\237\367M\233\323\t\v\300\331\341c" #"\32\366\272\243\323\3\1\363{U\3217" #",\310\251;F\362\216 \21\32\370\237" #"c\300\34\34\211\215@\31\316\265P\247" #"\b\355O\227\245\376\352\240\360\276\357\0" #"\321\262\335\210B5O\35\f\341\26\310" #"\336\325\320\24\rk\330V\216\344\216\20" #"\177\327[\276\351\310\337\337\337\300\254\b" #"\302\275\231\e:\302\372\335\367\n\333Z" #"\343z\307\250H\216\357\350j\265\342\177" #"\367\343\\I\236\212@a\356\257Y\f" #"\t\272\231:\342@\2147\337\307\332\350z\275ehg\320\21m[m,\330\214" #"H]\364\362\265\301\361\327=\22]\353\257gb\361\236\6=\270\253\5dD" #"\351\235$\243\e\330\215\303\330M\243R" #"\343\0\21\2\300>\366Y\300Y\337\335" ) 500 ( #"I\37\261\314]W\350\334\276\276^x\307\231\273\357;G\6\367\224&#c\374" #"\351\211\314\360n}\307\340\2101\330\302" #"\303&+\26\275\350r\335d\215\303d\262\261\37\vU\eq\3377\326\367\e\266" #"\351)\333\"H\356J\347\365b\36\313" #"Z7\326\373f\236\225\274\30Dh\304" #"\371w\337\233\25\231\223\3776\3379\333" #"\231\v\311\5\3140\227;,\236+\213" #"\177B\201R\320&\324\237\220\v\337\302" #"k\203\e\332C\300\333o\300\231\227\274" #"\301|]\263\201\35\275~_\363\312M" #"|\211}\e\23\357\3677\376\351\237\376\ts\16\374\351O\177\302\237}}%C" #"\205\310{sg85\223\301\275\0Z_\323\247a\357\aho\16\304P\265\276" #"\330\221\4HMAjO\237\211\355\372]\201\360\225\235-x\24066V\310@" #"\a\310\206\265\31\6\22\373\260\375&\270" #"i,L\377n\311\213@k\37\206@\206\0\360=\362\340\235\25\267U\0\226\336" #"\240\330\224f\344i\224\231\217\326\237\215" #"\347\220 \21\17\300\367d\334\334\35\330" #"\314\367\275\232\203a\36\321\4x\26Z\361\3;\274a\v/\332\216\365\3249|" #"\202\251\316\212*\222\220\312!\24\24\177" #"g\t\202\r`eo\310\3673\315\344\371\372\351\367\372\316>v1e~\357v" #"\317q\26\333\332\f\351\23\177\f\313h" #"\317\332Y\2331\6\256kf\336\264\220N\a.\356\325q\242\263iJc\3502" #"\240k\232\31\336!\217\3137\331\214h" #"\270\237\5g\0\207\276\264hO\a\260" #".\300\3610F\335@\365\275\222\276\220S\37\27j \262\316e\2557\345\261G" #"_<\24\220\214\352\25\205\222w\264\327" #"S\361E\337\223d\306\340\322\356\324K" #"\346\270\323\240\235)\23\345\204T\344" #"\342p\20\333\365\273\34\324\275k\35\230j\301\374H\304" #"\317\365Y\311\221Z\373\305\0\240\3460\b\\\325Y\265\324" ) 500 ( #"\311\271\36\206\343\372\335\1\5\n\330\256" #"\25\3\32\346\200\252\302W\350\340n\223" #"\4\310\357\373&#\t\253\0162Q\275" #"\177\215\t\277\253\333Lw\242\373u\364" #"\352\3510\312GN\340\250\22wTD\313\314r\n'\243\241\27\326\233\0nZ" #"\345c\246\314\205]S\210\376\247\263\331" #"\235Xw'\v\211\210\2738\302\236\24" #"\350\177\2\246\256\213\263pO}\366U" #"\334\350\236\343\265\1v3pg\256\245" #"\302\340\4i\252K\211\350\203\221\244\231" #"\327L\240\230ast\347\244\"\"=\232\331\363R\213\210\20[^y\254\360\"" #"/\272\235S\233@\351\204\25D\327\34\34\e|\315\270!E\217\223\f\t\0261" #"\212\6\245g\327\272\331\a7p\23\327\322?z\211_\221\32w\215O\326\267?" #"s\267\337\200r\376\t\320a\203\370b" #"\326\376\365k\361\363\247\323\253{\340\331" #"\n\231\277\231*u\307@\5\276\367\t\262?\345\243;\37]\2078B\2676\233" #"\233g\23\36=\353=\206`\250^\350" #"\316\356E\335\371\374 \366\254\n\320;q\220z+\210D=\343\23/$\241q" #"\30\23\20\0f\323\344)O\233\306\342\375~\343}\223\340\317\260K{0\35b" #"1vz\200\236\353\26\37\201\217\346\331_'J\347sEc\372\360\306}/L" #"\214\240\321\203-\2134\1\e\216\275n" #"L;\1\211\300\256\16\352\372\276S\371.)\f4\205\343\362,c$\337 \27" #"\300C!\346\202\323W\366\"\260\275\325)\"@\367\210jR\e\3\2579\260\356" #"w\350\355\310\315\v\343\f8\356\373\215" #"\357\337\336,n\363\332\340{E\365." #"\250\244\341R\20\216\367}\303\232\21\325" #"\341\225\220tc}\204\334c\323\325*" #"K,\t|\361\336\37F\273\204\270\24\271=\204\255\302\241\300^\212\4\324" #"0\r\270\303@#z]\234;=p1\264\325\35\210\217\3Y\327\27C" ) 500 ( #"\242\303\313\337q\235z\v\32\1\262\376" #"\222c\265\367Ny\355l\216zU\256\273\272\205\0\300\270\256P&*\276<\215" #"|>w[/\365#$\343\302\203i(\5D\0\267\202\325\2566L\374]\205" #"\227\373Yz\2\270\210\252E\310\256)\3050%\206\2102\fJ\3655\6\226R" #"U\32@\356\306\276\237;\255\313\223ix\376N?;\301\177\1D\25k\216\353" #"\34\317,\220*0&\226\203{\275\261\2p \236q\2143\35e\266{P\321" #"\312\367MC\363\214\4\244\322\225\36\32" #"##+\346Fg\35\314\t\303\322\0\202\373\330_\256\r\317|g\36(;\247" #"\314\26`\374\4D\231\346\324~\256\356\34eD\nx\25p\252\357\\[`\5" #"9\215\255\313X\317ed\323(\17\347k'\0\300F\374\254\30d\2555\301\327" #"g\244\68\35\213gXP\327)\375)VV\375v7\3464\374\372\365\205?" #"\377\363?\217\311E\0217\314!\"," #"\36\271\256\v\277\276\276\0s\274~\275" #"0\256+\252\350A\300\272j\272\345\23" #" \233\1\312O\36\223r\257\363\254T" #"\25\217\350\201X{\255\263\"\ap\307\224v\336\321f\262U\322'hi\221\6" #"\355\361O\16\202\5k8\347\314\26\210" #"#H#\346\367Z\352\235dz\265\236\203\0Q\266\263\247\236\350}\2U\2753" #"\203R\2222'\334\270v\356\310\3020N\240\272O\235\200\210`Z\325<HN" #"<@d\235\313`0\203\321\205\364l81p\344\2713\357m\346\342\3148\213" #"V\307lN\3765#\r\241j\30\344Pw\320\326\237\277\3\304+H\21\213\310" #"\17\3341\256\30_\34 \225`9\"vq~X\23\24\371\331\2762*E\273" #"P)-\3461\216>Xh>\233\"\231\326\234\t~\367z\257" #"l\261\212\2304\246.\34{W\232D\267\eJQ\20\301\243H4" ) 500 ( #"\20E\356\233-\36\261Vb\202\36\375[\267\6\207\234\255F{z\eA#\323" #"\346\346E\222j\204||\330\376\a\250\345\367M\314Y$\305u]\200+\r\203" #"\16\355\367\367w\236M\312\241\n\341w" #"h&\261\273\322r\35\224\26\31\320\t\2369Or!\365\22\250\327\246U=\320" #"s\b\226;p\351\206\366\256^\211\335\323\276}a\216j\r1\203)J!\323" #"!\217\3265\276\26l\32\226/\314\30" #"\307\367\365\365\n\5\330@\320\326HJ" #"z\24j\351\302\315y\364\241\335:#\e\257A\240\224Ed\301&\261\377ij" #"\355Z\304f\210m\30\266\261\220\213\355" #"\314\316\334Cw\25ou\300\315P\v" #"\342\373\34\242\341'\256\341\330{\260\272" #"3\31\f\303\375^\321\24\372\364\222(\304/x4\207fsn\202\236?\375\351" #"_\322K\344\304+2\277\2\2722\372KJ\257\v\270\263\270\304}c\2573\307" #"0\301\222\234\np\355\276\305|\352\220" #"\366\36#}\355\233r=\252\363\201C" #"\230\363w\363\364N\347\230\370\177\377\307" #"\377\203\177\374\307\177\304\277\371\327\377\n" #"\377\371?\377\37p\17/\177\343\270\326\223\211xzzO\203\3734\310]A\366" #"\347H#\24\335A^\257/\320\353\36\341\325\26\353\270\371\240|fc\36Zg" #"\300\273q;\362\251Q\371q\356\216\261" #"7\266)\5\210\214\303\260\310'\367\21" #"\351?\v\3275\361\375~\207\201\240q" #"\31\343\302\336w\256\353\353\365J\300~]\321-\302JA,\361%n\30\327E" #"\245j1\374\242\201\227\36\222\356\254\215" #"dS\317\205\366,O\347\241+\301\\" #"\263P\246\352\315\3144\203\330\23#\233" #"q+5$\316\272\34d\30\225\275\233e\307\211.\253\234ZW{\232!\370\320" #"=\232\202\326\333\222\351\371\366f\276\362\366\306}\232" #"\205\216\212h\317`{\272{Wq^\177v\32\237j" ) 500 ( #"7UN\331\247C\260\3D\366\224\22\31>$\30e~\34\233\306\324=\v\224" #"\375\377t\275\331\323eWq/\370\313\265\326>\347\ejR\225J%P\311\b" #"#\20\203\a\0046\330j\17\320\266#" #"\0\337\346\306\275/\266\303\35\35\356\360" #"\23O~\360\237\3227\302\17\16\277\366" #"\r\343\e\206\366\300mc#\354\306\30#\4\32\261@HF\22\245\261T\252A" #"\365\r\347\354\275V\366C\16+\367\376" #"\344C\20\372\352\e\316\331{\355\\\271~\371\313_f\232\206UR\236\2757u" #"\366\242\37\321\314\265\326P\222\216\220\365" #"\23\266?#\357{\256\251}\222>\215" #"\n\334\3553\315\256CA\25\237\314\262,\367\270\275b`f\225\356v1\245\f" #"\256\205\35\206\202\277\371\233\277\305#\217" #"|\a\177\364G\177\204s\347\316\201\247" #"\t\353\365\n\327o\334\4\21\360\372\353" #"o\340\360\360\20\207\307\207\270u\3536" #"\16\17\17\360\361\217\177\34\227.]\322" #"\221\273I\301V_k\323\363\367\354\202" #"\2P?/\272\266\2725\225\333D\206" #"\22=x\227}\332\0\323\206\32\333\317" #"\222\35I$\23\17-@\267\363\322\276" #"\216\301z\364\221f\267\366\273\314\222R" #"oh\336\27\324\214\235\5Y\3723\20`\226O\4S\361s\304\16\201\234\347]" #":\230\331u\215\226i\223q\300\320\265" #"\24`\346\254\232\2026f\321\325r#" #"\244\314\352\213\252d\251ZS_\250\340'A\367\226\326\305$r9\1g\232M" #"\221\264\233l\32\2103\t\301\340\251u" #"\337\247\363\272\200H.\330:\332\375\333" #"30@l6\352\32\374V\335\227\200\304\26\266\243\265mk \35c\233\24\374" #"\22s\17\2302\264\250U\202E\322\240" #"\"\255\272\217\aA\365\241\2\\S\22\340\\\247\2122hF<\17hU$" #"\227ub\224\222\260\35\267Rk\3006 \245\267\22\353\214$C\a\326\243\224" ) 500 ( #"A\310)u\215\215\253\332\311\274x\27$\3662)\226\212{5\222E\335^\233" #"\266S\354\240\326\a\27\201\224\251V\237" #"+\351\24\2776\31\376\220\35\220R*" #"\232i\355\347\244\341\3@\202>\342\24" #"Z\325f\20\3449MSS\367\227\300\254\353\331\0+\364\255\265J\213Ot\26" #"<\336\17\221d\332\23\v\271\22m\307" #"\366w\211\21\223}\355\351R\312\310:\16&\331\306\t\b\277dI\253\313!," #"\275\367\220\t\225\200\324\342\"\223S\345" #"\266\350q\304o4XsN\336\216I\37yb\215\3145\2024VR2\f\2" #"\330\226 \307\34\204U\230\227\\\320`" #"\323n\346\251\271\250\361s\20 \371\27" #"\277\346\254\240R\2305\306\250\200\233(cj#\30\214\201\22r2}\224\1d" #"K\377\2\200LC*\271\240n\267X" #"\357\254\260\267\267\343\314\345\354\241\3123" #"\227\336\277\346\0\230g\207\237iRd" #"\264\2550\e\221]\20&\220\354&\374\236WY\34\0011P1\a7\21<F" #"\226u\306\20\207\3\336\34\3622\332\2" #"\200+W\256\340\317\376\354\317\260\273^" #"\343\322\245\273\360\221\17\177X6\23\b" #"\261\247\360\362\25\365;K\266\326\16\27" #"\373\f\213\202\337)\355\321\235\0$\225\311M\eX'\214m\204\365\2244y\5" #"\223\266\275K\326\270}\316h\332\327\246\313\315i\221vEw>\t\3008U\344" #"\"\275G\bIA\237\rC\221CD\302\235\204R\22Z\25\306\211Ht\310\256" #"-\363CO\34j\253*\341\311\302\242'0\32\223\350\333[\323^\324]\37f" #"\327\37\201\214}/^\363\362\300\266C\304\34\f\320\1N\\\223e`e{\327" #"@fS\373\e\247\tX0\265\205H\246)\22\365\216\nzHZP\32m\323" #"RY +\375\204\a\337Kpn\301\254\203R-" #"x\0\372u\327\306(D>\t\315:\eD\255b" ) 500 ( #"\177o]7\360\211=\20\377k\277\337\367\205Hy\232\245\200\2230\\9\260Z" #"\305&\23\r\303I\355=\233\276\267\357" #"/\277W\206\27\377@\327\303~\336\364:\301\363`,\246\302S\21\335\242dH" #"\354\271\316un\346\27\243\255\e\223j" #"\354B\f\202b\300\364\352\253\257\343\231" #"g~\0\0x\341\205\27\360\261\217}" #"\f\2651\336\276\3716\376\357\377\376\337" #"q\365\2157\260^\2571\326\t\333\315\26\255\1\a\a\aH)\341\363\237\377<" #"6\233\r\332$cRc\312zV\240\e@`\261\264\370\342YXFD\236\275" #"\4\32\2555\344\241x\3530\263}c\340)%\264iB\313\5\3030\310\232\326" #"\223\266\26;S\304\237E&\315\316+" #"V\200\324TV\367N\373'\256\243\235\311\361\363J)Z\23#\300m\232l\340" #"\203\6\266\334\375\3438M\222I\323V\200\311\354\273\365{&\0\202+d_%" #"\220w,\0u\358\307\265i\204\\\222\234\367&E\3\1\231\324\207\305\202i" #"\t@\242\255\30Q`\343hm\317G\373J)y\0\35\327%~\355\0wA" #"\304p\3JQ\220\306\0224\373\317\364" #"\2344Y\205\24\343\27!\255\22!\247" #"\1S\e\335\217\244\220\341\263\227\200}" #"\0025\t$\251\301\201\234][\303$\303)4\243k:\364l\353\240l\371\322" #"7\263\332\205\2353\26\360\373\263\3152" #"\241\3153,T \262\301\246\365\6\315\t\202\2707\242MI`5\227\v\30\323" #"n\335\234\34O$r,\324\330\246\223\262fp\0254'\0\225-f\237\337\23" #"\313\275\17\253\254\300F\212\221\273O5" #"\262\306\262,\31@\365z\232R\6P\356\265B3\262\2555\235\203`\5tB" #"\320\271/\aP\244\277\334\274\267\251=\304ZGa\25u\35\354P" #"_\255V\260\336q\202\340Y\n\261\22\205(~p\200I*\360\26\2" ) 500 ( #"\247\300\346\37G\3034VyP'\357" #"?\a\241\344\204i\222\306\324\266\200\311" #"\242\322F\36\r\e\243b\225\251v\310" #"\230\203r\303\202<\270:vG\271\4" #"\310\376\340\271W\315\212\26(\371&\265\336x\4F\69{&\eB*^\243" #"\224\300Gr*Up||\214\326\30\307\233\215\312\27\309\27ac\2220\303" #"\4a\273\270\365*\352\376\273]#\333" #"\231l\223r\4\35\230\334\224\26Z\350" #"\1m\251\343\0\b\343&6\307a\317" #"\321\326\250\177\346\274}\207|\304\334X\231\e6\333-\2622\371{{{n?" #" -\320\221\305\230\265\273\372\217\16\21" #"\373Y\374|\233\337\276d)\1\4\200" #"\334\v%\210\245\217\37\353=\262R\357" #"IE\376\231l\214\t<\305\352\266\243\233\310AH\330l\246w\262k4V\315" #"\330\24S\251\215\323\250\323i\330#s" #"3L\21\221\350\4\34\335\254\f\325\246" #"\aF\5\314\240$\363\326SK\316\250" #"\310_\3675\264\373\217Y\5{\266\313\300\322\30\22RVU\0163VW\246\0" #"\rsV=\36*QKg\317 \246\236\f\370f]7i\347\225\244\323\2\263" #"3\337\fICVf\220\331lk\312\200X\346F\235\251\26\17\305C3%\351" #"\2360Ua\241\"\331\231\344B\235\225" #"`\5\207C\21\306\231\354>B\260\347" #"\240\273\365*u\"\352\333\315\355\303\230\3142\363\37rx/5\307\311)G\3" #"`\314p\331\211\37^\266\316\372\336\22" #"\224\315\367\257\331\244\201\247~=j\207" #"b0`\306\211\375;Ui\305F\341\263\314>\3449\223\202A\366{\217\314n" #"\232\371\273^p\302\372\231\326\345\204H" #"X]\333'\314\214a\275\302w\237x" #"\f\333\315\6\247N\235\302j\275\302" #"\321\3611~\356g\177\26\247O\237\305\305\213\27\361\256w" #"\337\215\355v+\237[\212\367\245]\2>g\274q2\210" ) 500 ( #"\263s\302\0\25Z\267O#\1l\357\232\315&\365\25e(\302h!cl\23" #"P\345\354X\225a\26@:\353\304\34" #"\236\361\\\v\335\367\240\364O\25\220E" #"\n\270O\222\n\366r\340\\U\343\357\367.Y!y\377\256\301\244,\214aJ" #"Y2uI\262\203\f\325\305\6?\352}\330S\267\e\263\337\224l:h\352A" #"\202\236\235q\335\205\315#p\325\256F" #"%\373~\234\234E\256*\267#T\236" #"\24\204\321\f\214\213\224\207\265\276F\326" #"\251\a\366\363l\243\354\350^\264\26\203" #"\257\270\2066t\312\261\2\r`\214 N(\224\25\224j\26IG\342&\222\326" #"\252\f\362L6\223\311\177z\26\323\326" #"\320\236\255\373\317\360,\263\311t\234\265" #"\267(Y\237#\340\330\305\317`\35:b\300\337\230i\262}I\t\253a\255\317" #"N\240fk\r\25\322]\2435m\v;U\37\232\23A\356\362\214\214\276\312\356" #"\t\2151i\375\n\261\340\253H\fz" #"P\206\256\317\27\343\203\234\26\251\277W" #"$\35R&p5L\322\264\226E\360" #"\23\353\272\0\6\316\233\343\227\224\22\246" #":\211\16\274Y\266+0\376\314~^\246&8zB\17\352\1\240L\\]x" #"o S\26^\364(c\235\220\323\0hT\221\2100M[\apu\232P\302" #"\337%=(\267\223M,1\341\264\214\3323\204n\316\311\234\247\275\"{\347," #"k\355 \327n.\2\e\337\270\325\306\371\321\214\275\264\a[Y\0y\323^8" #"\306\34\307T\247\31\2345\260\256\255\2645\355\232\0\0 \0IDAT\242r" #"\357\275\232t\23\264&\207@oDm\5tU\r\324R\356\326\342GXC;" #"\250\246\251\342\332\265k\36\255\333\177\307" #"q\324\201\26\200MOO\324\307\316" #"F\226\302\200\257\244\2005\255\311\320\200B\0\236=" #"\217\24\326XW\49\v\317\30\17\326\370\\lM\372" ) 500 ( #"\370OYG\233\0d\354:\0\221\3518@\262\367\2J*\250\20\t\303\321\321" #"\0067o\336\304\251S\247\34\0Hk\227\320l=l\310\270Q\344poH\244" #"\314FR\202\26\275\275\235m\f\2631{/a\3154EK\222\365\316\224\205\t" #"i\306>7}~\214\\\2222\0U\330\322\0\24\215\3210p6\352\363\36B" #"A\2271\260\224\22\270V\264\304>\\" #"\304\332\242\244\4\351+\315\302\26\260F" #"\366%\213t\306\236\233e4\20\2.\331\237:\345\212I\331R9,\344\221\234" #"\264}\333\37v\260E\266\316\16m\3" #"Y\326-\305z\216\n\313B\276\256\313" #"\347\24\235|\374\254e\206 1c\322" #"\317Yi\341Y\225\260\336\31h\333\247" #"\4K\35\262\263\277%\347\3008H\353\237X|h\373\330$\20\246k%\22-" #"\31k\213\236\270\337\215\21\260\373i\356" #"\260{\200\20\231L[\257\224\346\301\227" #"\201\217\270\346\346\373\34\200\222\272u\177>s\331\r7)n\314\245 3ck" #"\327\e\333\355\230?\250:8\a\22\4[\252\276\5\377 _t\233\3542\240y" #"\232\322\0\207\351\206\335\326\231!#\301" #";K\31\31\325\30\f,\201\235\261\246" #"\321\307\2\300\351\323\247\335G\236;{" #"\16\0\360\a\177\360\a8w\307\35\310" #"%{P\35\253\247\355\232\315\376#\233" #"\263\264;\a\37\220Tx\35\205Q\263\272\223\211\347 \3052J'\264\240I4" #"\250\200\324\252\200\264\220\231b\333\302\b" #"2e\335\337\351,\213\327)\340ZZay\2412z\240\30\357\aDr\216\352" #"\331\0\222\324\2541w2\f\303B9\226\376\362z=\323\250\331\4\5\253\240~" #"=\276\206\346\257\203_hMd\v\214\346~H@\215\364\27\266\177\307}-Y" #"H\200Jr\302e\252R\303b\31\v\236\330\307\22" #"gk\321\251\377\2273G\356\213=X\261\32\224n" ) 500 ( #"\313r\355\204\234\a\264&]w\314\247" #"\333^\212\304\31\21!'\e\21\234\301" #"\255\312\331\255\376\314z\r\327Z\275p" #"\327\316\tv\362O\327\266\365Lk|\375G\276\326\n\341E\236d\272S\2\21" #"\vs\256\31\276\326T\306$\236J\303\bR`n52!\20e\353\216\241\205" #"^U\317\361\306H\251\2028c\32'\r\216\272o\214\231\251\315f3\253o\221" #"\375\325\317\234:\t\301e\201\20\324\326" #"-\320\352\31\24u1)\340\21\210\204" #"\210\3013[\256\265\242\244\225\24\357+" #"\230\315\334;\17\301\237\353\350AT\264" #"\327\\\n\216\267[9\243\364\270\266\347" #"\27\367\16L\342\325*J.~\257E\230C\306j\245r\1t\306%\321\240S" #"\322*JNZ!\311:\360@\322.\266x\236&m=\35\320\e@\367\310\320" #"f\272\333\342\306\224Lt\n\361\340\232" #"\245\351\364\25Y\330y\332\310\304\371r" #"h\25u\264\36\201R\303\2608\244\242S\262\250j(\3R\316(\31488:" #"\306\313/\277\212{\356y\267q+\236b\231t\374dJ2=G\200FO1" #"\306\3B@\326\b\242\344\202i\323([\212\330\322I\302\262t\200\233\24 a" #"\261\251\214\251\260\"\223\16p;\3638\2045\226\267\21=g\v\adt\16\266" #"\366vH\231\363\216\351\243Ve\332\35" #"1\253\240\177B\"I\211\21\365\215s" #"\352\324\2768\b\2\216\217\216\0\314\265}@C\rC\6\226U\236\361\2776s" #"\236\b\220\361\216\360\3107\2\207\345\241" #"\342\eN\305\3369KW\4a\267\305\t\n8\317\242\357\343\nn\232\362\nK" #"\236t\375s\22\t\202ia-&\216,\267I\37&\260k\234\210H\a\221\300" #"\235V*\5m\232$\255G\275\375R\34\365<\351\365G\351\16\3\272" #"G)\24Z\234|N\366\232\247\321\347/[\277D\324e\5\350\331\a" ) 500 ( #"\226\334%\206,\35;V\252\0036F,\202A\373:\16\2311\20\r([;" #"MH\0\252\376}29\222\255I\370;\3\242\306\334R\312*\e\340\23l\217" #"i6[kX\17\3\306Z;[\254lx\6f\177\23\201\246\r\345`K\363" #"\233?P`k\3321\353{\273d,\210\302Z:\30l\276\337`{Z'\241" #"\31[\352\354\0253\206\325\n\317>\373" #",.]\272\204\275\275=\261\357`\303\3030\370$\305\332\232\266ITv0g" #"4\315\214\304\353\210\376\24\272\n\246\5" #"\206\336\257e\303\230%m\3506?\v" #"\256\302Xk\222\2023\3\363\266\356\262" #"\36V\330$\357q||\354>\372\364\351\323\36\30}\360\203\37\304\a?\370A" #")`\31\267h\233\346 7\6c\266" #"\267\231z\340\35\301\217\275\237\0215\376" #";\372P\232\244\v$\3\20\236\231\263" #"\274\350\200\334\276\216>\305\244\f\234 " #"#H\263I\304z\3660\256\265\335\203" #"\200\4\325\223\352\320\6a\247l\232\240" #"f\35\302\36r\300\234\2220\26I\322\311\314JDM\n\314\333\4 \253\255\22" #"\220\3739&\5\345\352'\255\225c\233\267\372\262\a\37\201odG\23\365j|" #"\351_\335\207\17\315\2\34\375_\2u" #"\275\247\355+cL\a\321P\242\231\226\273\27l\306\3736M\246\4\354E\301l" #"C\37\312\322\263\317=X\325\366q," #"\357mY\3\333{\t\3\300\332\306\217" #"\254x\fj\257\363\240\307\311\237\26\203" #"(\275\266\334\367C\34{\37qI\17\236:v\231&\5n\334\200\3261\16Q" #"F\233\252\234\231\202\226\364\375&\0216" #"\204\307\24\3l\220\324%x\366\225\272" #"\204B\366K\367\343u\232f>\321\256" #"\327\366I\314\234\27\355\262\5\206g\300\355\22\330vx8:\204]\316Z" #"\350\30\262\e\346\253B\177c\313 \332T<b\221ga\32\35\23\3123" ) 500 ( #"4\211\247\323;~\315\26\0\327Z\265\215k'\224\306\326\353?\252\2650T\2" #"\257\224\"\301y\233\byH\236\266\3" #"\221\366\223\2246Z\255)3\245\e\303\330\t\273)\6|\204\2531\213)'p" #"mh\32\221Lh\nv\4\265\233A" #"\332M\330\242G\266\362\235\376\37\177\307" #"\230\307\350\34\372\302n@$\355\313\0x\252\310~>*\203\264L\265\232Q\r" #"\303\200aXc\263\331\340\341\207\277\216" #"\377\366\177\3757|\345+\377S\234W\31\0244u-\212\31\2223q\2303\4" #"v\215\362\260\6\b\260\222\210\305Ry" #"\233\315\261O-\223>\241\25\304\r\203" #"[\233\350\b\227\207\264m*\267\263\260" #"\246\372\210\34\214\313\357\t\e]ku" #"\6\257\5\a\347\21T\356E\20\313\210U\300lr\206\243\251t\242\206\326bD" #"\204\355v\213\275\375}\\8w\a\306" #"\355\210\306\214\2337o\316\236\237\4I" #"\235\255\212\332\304\276\2565\354\270\6\306" #"\204TD\343;M\325\17\27\373\354\16\364\232\244E\330t\256q\375d\2730g" #"\264*\3358\270\1)+\240&x`W\353\330\2314\26\306\321\326\1\n4\307" #"\26\364n\16\4\232;X\tb&\a\206v\177\223\312PX\35\271\203e\364\340" #"#\202yaJ\340}E\5\360\326\231lf\t\366\227k:{\226\341UY2" #"\0266\21\207\24\224\27\202\263\342\226\6" #"6\r\227\35\2261+\20\35\234\203>" #"\3\222\334\323\355\320\373\0000c_\343A\341\367\4a++d\335+\263\257K" #"k\ro\274\361:\276\365\255o\341\311" #"'\237\304\325\253W\361\306\325\253 \0" #"k\5\345\265J\361\347\24\34>)\350" #"\210ZE\353k\f\236\17\235\260\365\212" #")\322x\255\366\362\f\213\257\257\201" #"\276e\325pg%\207\241\247\213\17\16\16\360\265\257}" #"\r\177\375\327\177\r\253h\247\306\36\30?\373\354\263]2" ) 500 ( #"4NZ\271/\353\333\352|\nc\4" #"\213\222\222\256\260\314S\334_\306N\312" #"\336!\214\343\344\177?MV\30\322\31\313\310\306Ae-\361 5\340a\337\333" #"l68::\2\21aoo\317m\344\350\350\b\307\307\3073{\217\200Q>" #"\303\0\325<\265o6\35\201\267\34\230\261 U}\376\304>\304)\372\263%I" #"c{\307\331@e\275\"\320\247\244#" #"\344\303\363\214\0\a\3505\3\362Y\252" #"\223\16`\305\301\221\372\314h?\24\354PBL\362\303\272U\6e\6H\212\234" #"\334\224\22\0&p\5r*ZH\246\5\205d@\2443\327\21`\332:\330\265" #"e\225\262\230\357\352\331\202\16\34b\246" #"C\210\09O\315\217u\211\236\310\210\332\244AWN@\262\375\325\333X:\330" #"a\333+V#dA\224\265\253l\16\202\3728Y\270\375F{\0\22(e\237" #"J\226r\3562'}~R\374$L\253L&L\316R\232\215\231\35\3313{" #"'\314`\257H6t\e\224\fc\246\2142\b\21gR\206\2245[Xe\r" #"d\376@q\314\320\355\240\277\367\220U\222\2B)\344gFk#\22\3013\206" #"\326\217<\6\2711\300\233\371\326 \21" #"\0\205\2563\3063\273\237\263\365\20\351" #"U\255\366L\304\316\206\\\274?\264\364" #"\221O\216\247t\205\244P\221\32\300\25" #"\331\244~l\342\205\236I\212]\26bA:\2210\361\266\206V\263\24\353\275h" #"\261\376\2555\24\31\206\320Q\277\261|" #"\211\324\221\261D\217L$\213\274\2506\356\321X\337\b\343v\364tOce\374" #"\320\300\311R\335\335\321D\366\320\234W" #"\324;\332\346_\262}s\243\356\206\6@\2641\211d\0\6\313~a\325WY" #"\nv\30J\250D\26\220zxx\204\237\\\271\202[\327o\342\315" #"7\337\304v\273\301\v/\274\210sg\316`gw\215\v\347\357\300\301" ) 500 ( #"\346\30\\\201\325\260r\220j\a\222Lp\234\260l8}\322\201g\334\276}\200" #"\303\303\303PeI\310\245\2006\eq\6SE\263(R7\251Et\244\221v" #"|\26\266N\362;\360\236\204\0060\242" #"\241[\e\36\327\242\22z\344\352\277\23" #"\234\257o\16B\233&\3308D-\325\202\2650\2W\224\262\366\t7D\204\325" #"\252\340\374\371\363x\365\370\20\207\207\207" #"\260\331\363\321p5(w\0d\254\245i\bm\3042\221\356\225\6\230>3\331" #"\25\272\2560\2sux\324\35a\aQR\370$\207\220~\315\r\\-Bf" #"\245\213\325\241\22\241\2323P\260\v]_P\30,`6\315,\322\nV\215\\" #"\311@\223T\223L\234\324b7j\340fZ=\331k%\17\376\254\301\201\2214" #"\373&\222>\2710\346D\356k(\5" #"\2330]\217\302\365\311\245\t\233b\214" #"\242\255\207\247\345[\3\247\4\323\320\333" #"\253\203f\200T?kR\f\3\2143\26\35\363`\225Y\n\315\n\363b\37h" #"\352\320\331\231\250\257{'Vz\301\330" #"\353\347\274\365\326u\374\305\27\377\a\256" #"_\277\201\235\235\35\354\355\355b\275\263" #"\203\363w\334\201\207~\345!\234\277\363" #"\242\3330\a\260\313\334\331'\253D\367" #"kp\213\351\32\334\245\204\301\336#V" #"\337\307\357G\337$\251\313e\320(\214" #"Q\255\35\\\377\325_\375\25\256_\277\16\323\237{q,3\336z\353-|\345" #"+_\301\247?\375i\374\314\317\374\214" #"w\4\221\300C\264\3329\205\2\325\260\216US\330\21\24\364CEG\266\253M" #"t\260\334`\352$\313\310u&m.\351\2605\351\31\272~P\235:u\n9" #"\27\2349s\6;;;'l\305\356=k\201\3154I\20\256\242\225wX\313" #"\223zL\261\343y\326\2425\31TCz\216\331\313" #"\200\204\35\212\306@\371\373\347>!\2543p\344\353" ) 500 ( #"<NU\231\277v\362Y+\200\5\311\341\335Y\3169\323\357\237e\351j\263\v" #"\326\257U\316\24_\342\223\244=\230\311\0\214U\355\3270\a3\323$\266 i" #"\336\223{\324\b\207h\327 c\325\240" #"\230\306\b\222 \253\220'\3\240\327\246" #"pe\351\243\333\30\25U\333{\261\27" #"\335\265*U\376\21\204D\222j\252\322" #"\21\207\224\341\3K\377Zx\267&\253!a\210Ns\222s,\200\320.\307a" #"\244\300\214z\200\256\327\32Y\331h\0271h\351$U\235e@\342\357w\314\21" #"3\314\306F\367\202MVF\267\265\316\214{=\204\366\3565_(6\f\301\1" #"\255\n+MB\302L\343\2502\34\5{\3340UH\227\a\335\23\254>9-" #"\256O4\324E\272j\360|\377\306\0" #"\317\256\213\230\2456\302p\26\21\22L\243/Y\207V\245&(\225\242-\313z" #"\268\261HX\314>fg3{\31 R\311>#\300\212b\227\201\247]\257" #"\237\v*=\201\262\272\r=H\214\230" #"\322Z\357\225!\213v\255\206\a.\321" #"\243T\262\271\340\270JU\267\0354\366" #"\241\261\210\310\r\201\0\246.\240g\260" #"\212\2715\262\315IA(\317$\3q\341#\32_2\273v\215f\220'\0w" #"\255\230X\n\255Z\253\222\266Q&#" #"Q\306\301\341!\236\370\341\3438\270}" #"\200W_y\5\353\235\35\274\375\366\333" #"x\363\315k(I\212\275\354\276\356\272" #"\353.\334\272\3756\336w\317\273qx" #"x(\eF\35\210\245\255\274\220\256\24" #"\215\36\vZ\235f\251\267\336)\241\37\212\6^\246i\3044mpxx \214" #"%\3676*Td\255je\35\263\230P\307QZ\336\244\236\226\234\37\0064K" #"\377\306\224^\316R\335?n'\311\346i\344f:\300Xt\346\1M" #"\223\264o\325(\215\231E{\253\275\30\273=h\37\300$:\31I\aV" ) 500 ( #"\374\364\373\336\207+W^\302\316\316\32" #"\246m\264\317\222\257\263\263\245I\35\236" #"\217\201V&N\336\277\350&*\322\362" #"I\363)\255\262\37.'\16\37\251\240\230\5g\6\16)\334_NI\3\b\211" #"\270\353\bPf\357{L\n<\35\240uo'6\254\232SO\277\247\204\251\266" #"\320\271!\3\244\272d\226H\270q\321\300E*P\271I\351\227U\314\22$\373" #"`}X']\37V\360j}E\243L\300\244:\361p.\271;\301j\223\215" #"\2\320\264\3\322\346\25730\323\336GG\b\275?\256U@\275\376\3562\3100" #"\333\313Y\245\6,U\00236H\35\36\221vO\340>\246{\231\36\224\347o" #"\a\271\260\t\224e\6\3724M\270v\375\6v\327kPJ8>\336`\232*" #"^\271\362\n\336u\317=\270\353\322\273" #"0\216[\277W\37\215\v\270\244\"\36" #"\372\346,\355\277\235\321\230\263`K[" #"\213\340+\372\310\326\246\236\225\b\ad" #"\n{8\245\204\243\303C\274\372\352\253 \"\\\270pAtj\265\242\244\204<" #"\fx\374\211'p\363\372u\237:\31" #"\201\247\275\337\250\3764\262 \221md" #"\325\250\232\37\262{\354\23\234\4\324B" #"S\310\2\216+\230\347\355\212D\266 \3004\3727\263%{\357Z+\236}\366" #"Y0K\257\3343g\316\340\340\340`\1\370\373>D|&\334\373_G@\27" #"\327\322\177\246kji\353\b\274\31\232" #"\235is)\207\2357\265U\24\24\1\332\334\320\246\223\2556\315w\32`^\202" #"\236\331\275$\221(Y F\251\a\35\366~\375<\353E\312\16\20\254X\215\346" #"k$\211&\5OI[P\22f\231\304\376L{\326\314\212^c\240\30\327." #"\312\370\"C\356\257\312@\232\217\266\266\236\271\226%LZ_)\305" #"\234S\367\305!P\361\240+\0\323\270\337\204i\25\377\313M\3101\331" ) 500 ( #"#\5S\35\245\27\373\3244\3532\n{\315\363\2\260^\244\251,!\3173\\" #"v\375\366Z\236\241q\337\0\6\210{1\3712ck\373\317@\266\21Y\22\350" #"1r\36\204\344c\355\0C*;P\377\275\f|\200\20\370ObK\3438\242" #"\254\244\300,\17\31\230\232\237\31\4V" #"\373\262\202\3309\311\260$\23\241\347\205" #"\324\363\350\371T\ePz\260\232\0a\342!\304\226\5\17II\20\326\311|H" #"\fQ02\352\346\30Y\357\333\367\25\367}Id\372\343\240\a\16\317\"\22\34" #"\321\227\332},\311\204\306\r\231\345:" #"\373\274\207\371\336\227\337W\375y\323\24" #"A,T\311 \24\255P\265\351\\%-R8\1H\3654S\250r\203hI" #"x\252nl\320\24\327d\e\260Ea\363<\365\31?g\271\211m\223\304\r\32" #"[\2275\302l6\262\272\n07l\307-~\364\334\263\370\363/\376\5\276\365" #"\310\267\361\223\227\257\340\265\327^\307\353" #"\257\277\216\365z\205\323g\317 \17\5" #"\253\365\n\353\335\35\274}p\200\a\36" #"\270\37\277\364K\277,S= \314R\255\r\3438\351a\243N\235e2\232\315" #"~6\360\3277\216V\306\229\235o]\3d\0364\274\271\273\375}\335L\260" #"\276\276\254M\365\221\322,B\215ND" #"\214%y\312\3\0\266\333\255\e\213i\234\222\246\240,%j\257%\353 U\361" #"\312\22\263\26\303$\3028n\365\31\331" #"\357\313\241\230s\362F\331\224\22V\253" #"\202\\\272\f\342\352\325\253^\330\327Y" #"\4\3238\253\35\204\203\31\2003\2721" #"=\232\263\364S\346\2265\270\310\3160\306{\20VJS\177\350E1\22\222f" #"gN\275!?K@\221s\267\327\306s\235g\343>x\243j\340c,\2\24" #"\214B\201zd\b\214A\22\372\3324\214\r\332" #"\320\0\244\366\221\25\204Y\301\niv\4zoU" ) 500 ( #"\327(:\0\346\256m\315\1\330\32\0\251\255\271~)\27\1\330;\3535\206a" #"\300\356\316.V\353\214\325 \300\5\272\6\16T\233\26Y\252s\316I:S\214" #"!\243\21\367\360\222\25\221\214\325|\35" #"\314\326\330\234\\\233\27:\331{\32X" #"4\240)\357!\305\210\346\263N\2379" #"\215\317~\3563\370\371\a?\212\363w" #"\334\201w\253\226~\265\263\203\253\327\256" #"\241\326>(&\276w\374fl+\350\266\357>\316X\315.\5\231\215z\r>" #"p\311\n\371~K\244&\327\375\201\355" #"\201\316\276M\36@}\370\303\37\366k" #"\0I\213\265\253\257\275\206\343\355\26I\3\1f\1\5\2036\312oUF\220\226" #"R0\216\343\f\264,\17\226\270GZ\353-\344x\226\n\266 \275\304eq\177" #"\23\v\207\347\203]\224\305\2572.\364" #"\306\215\e(\245\340\326\255[\370\223?" #"\371\23\\\277~\35g\317\236U\237w" #"\322\307\213_W\373a\355\5\334\242\335" #"@\331\347~\16\331:\306\200\237t\257" #"\22Iv\217\302\32\314@\235\336\2470d\302TN\323$l\224\237E@\233\232" #"\372\2234\3}@\320}\323\354?3\2330\377\25\17\363\252\2035\242\274H~" #"\0173\26:\26\271\311\3376\200\32\246:\202aC\216\272=R2_\245\251\366" #",\367\260\234t\30\301\304;I\234\22" #"\346][\354g\26P\213\317\23\366\322" #"\b\5\313@\0\"\357\265\3735\255q" #"\323\266\226IY\307\244\32_\220\214\321" #"m\234t\322\346\0\311$L@\352\222" #"\262i\32\275\177o\200\343\362y\265\271" #"O\367\363\21]\222\264\f\224\244\237r" #"\337\263\266&Fb\311\275C\317z\3068n=\260\260g\31\203|r)\217\200" #"\324\251\312\371\335\327Y|{\367\315" #"\315\355\267)\363_\333\204\326Fa\360a2\24\355n1" #"5%\233d\17\370\24Jt\fd\376r\n\30\311\273\253" ) 500 ( #"\220d+\22\304\276\b\235\334\22RIk\257r\226\"\362\200+\306Q\2v\221" #"v\256@\311lR\212\a-\360\6\360\216{\2155\20\221n8\363\300t\211'" #"\343\271\262\334;)%\f\244\255V\3sm~$\276\227\331y\0010c\346\210" #"H7\264Dq\215\31\2530\256\320\300I\4\2351*r\203\321\203\tI\231\271" #"&Z\245\246M\242+4\275\e\26#" #"\36\202K\300\v\240\v\374\27\177\23\377" #"\335Z\323\336t\r\271H\332\271\3524*+\"\271\343\3749\254w\6\fE\n" #"c6\307G(e\300\235w^\300\331" #"3\347\260\273\273\213\253W\257\342\366\301" #"m\234>u\32\17=\364\253\330\333\335\203\201eP\2\243a\265\32`\302g\351" #"c\310\200\352\252\354\232@\31\334FP" #"6\366\243\2425aP\307q\304\316\316" #"\16\216\217\17\321\213\365\304\0}\235\215" #"\rC\202\315@o\265\17\352x\247\364Y\235\204\5\222,Xd\374,\242W\207" #"\n\6O\2\232r)\352\250\372s,\245`\234\266(\26\215)h\251U\332\303" #"\210>\313\16\245\204q\224\341\v\21`" #"1\200\235\325\240\233\233q\346\314\0311" #"<M\337$\222\236\227\226- \333h" #"\6x\324\266\214\225\214\233\242\263\372\230" #"\331_wt\0232\r\20F\n^\220a\16\257\350\327\2532\250Nw\22G\5" #"\300\32v\2212]S8D-\210h!\320\2:SA\3723bv\35hn" #"-4\275n\3104(\213\236U\267\244\31K]\353\354\316\271IAh\"\177\346" #"\203\255-\263w+\310\320J\347\260\177\2705O;\21I_^\tv\30\267\17" #"\17\360\355\177\3756\266\333\rr&\354" #"\356\355\343\374\2713\270\347]\227\225\311" #"\235\200\24\207\25(\333K2\210B\244#\254\340|\236\226\215\a\246\331" #"\261\247\243\270k\261}\217\353\363\35\303\0014/\b\352\a\203\274\257x" ) 500 ( #"i\"\3028M\330\331\331\301/\376\342" #"/\202\353\204\355vD\242\214\177\372\377" #"\276\201\357>\366(n\336\270\201i\222" #"\211t\314s\2068\332\221\275\342\275\330" #"\336\372\2173'\375:#\243\363\316\367" #"\2406R\373\363\261\"]\223\355\334\272" #"y\23[}\237\273\337\375n\3519L\222\351\3109KP\262\226\332\1\3\306\327" #"o\334\300\225\227^\302\a\36x\0\373" #"\373\3738\265\277\217\333GG\316HF" #"\246\252\373\313\356\237\342\375G6\332\3766>S\351$C~^XE},\310" #"\362\277\313\222\312\254\265\342\362\345{\361" #"\203\37\374\20\3030\340\332\265k\370\323" #"?\375S\\~\367\273\361\v\237\370\4" #"\356\277\377~\357\3022N\243V\214\367" #"\317\356{\332\236\213\0253\311\32O\223" #"\26\334\352P\25(\311a\231\224x\360rmh\332\253\330\316\222x\217\244>*" #"\227\354l\233\201]j\350\223\2560\357+\354gQ\2P\31y5\314\262y\361" #"\34060 v\245\251j\262BK\r\n\225\371\213\1SJ\311\231n{Ef" #"\254)\203\234r\226i\2346\363\223\244" #"\363\r\0\37R!\337?\331\271\310l" #"\242\377C\367\232^\3732\260\261l\315" #"\324\200\201\2385\a\237\6.\r\374\3123P{3\200\324\2546A\355Q\345" #"\237\322\226\263\3107\210\0\226b6\313" #"F\231\326\266\266\332{\372\322\2\220\327" #"\21@F\311\262\306\253a\300T\253\354)\3003x\255M\332\241C\367C\225>" #"\367\221)\226\367\226\242\261\234W\302\244Z\35C8{=p'\370\271f2\v" #"\211\265T\317\232\225E\5!%\223/\365B\316\244\1\247u!\21\22h\200I" #"\16\343\350^f\221hXox\263\v\0>y/\356\361\355\244\365:\352\203\246" #"Ze\310\205\312\331\270q\357\6\24\374\177\255\322\"\216" #"8y\37\351\224\314\307iOw\225O\201y\326\357\277" ) 500 ( #"_g\362\321\310)\330Y\364\231\321\277" #"\332\376\262\227\215\352\346\326\264_s\362" #">\304\310\35\v\306\240\331\374Y\211H" #"\330\36\252G\273,3\254m\243\3069\336KF F\211\211\bU\37X!\355" #"I\250\207\345\204\356|\221\244\301}\22" #"\213yG\346\326\243\201p\23\266\351Z" #"k\275\211\367\2\350D\303\243\3267\31" #"\23\341\362\345\313\370\335\337\375]\234=" #"s\6\205\222\263W\347\317\237Gk\22" #"e\374\305_\374\17\334\276}\e\37\372\320\aq\346\314\31l7[I\23\250C" #"\262I@D@k\223Ve\252C\250\2\230\n\21Z\35\221\312ZF\30\347\204" #"\221\253L\247a\306\361v\213\275\335]" #"\30\335/\321\212\264\25\32R\302\330T" #"\253\334\344\275-\362\264J|1\302$\251)\220\29rf2\366\207\364\aO" #"\204\211'(DAm\204\\\4\24\332\340\361Y\340\2m+g\362\6\311\227\240" #"\251\27LH\276\16\306\316\232\376\310R" #"\303\27\356\274S\230'\255\30\267g\227\265Aw#\321\306\246\4T\5\343%I" #"\243v&I\331\347w8\204\275(g\1H\344\347\322\32L\f\211\301\315\264S" #"\315\235\255\245\375\337|\363*\306q\304\235w^\220\303\\\365UV\t\em2" #"\332\273}\335\331{I\r1\21\310lV\35*\1\256ee\25\362\347\334\35\215" #"\245X\364\224G5 \168\233\352\235C\374\220Q\347\320\32\324;KE.\253" #"\276J\337\317\373\210\28::\302\343" #"\217?\216\247\236z\n\327\336|\23+\335?)e\234>\265\217\a\36x\0\37" #"\377\330\307q\352\324\36\232N\26\312\372" #"\f\204\210\216\251O+\0\302\314\316\"" #"H\264\265\213A\2\345\354\201\0 \ab\364-\361\357\314\a,A\211=\16R" #"\300h-\211\eD\257v\355\3725l\267#\356\276" #"\373n\325\205\317\263O\361\372\314\216\214\255\210\337\223" ) 500 ( #"g\334\331\316\224\200i\352\376)\36\376\3634w\257\274_2b\21p\272#." #"\5\333q\304\264\335\342\376\373\357\307\235" #"\347\317K\277\354\20\320Y\366\207\0P" #"N\330]\257\261\272x\21\17\377\303?\340\353_\377:\356{\317{PV+P" #"J\370\355\337\376\355\331\347v@6o" #"\231\346\25\326\1\224\305\16\4\221\211R" #"k\233\35\"\376\334C\275CA\227!\265\326\360\211O|\2)%<\363\3143" #"x\365\325W\261^\257q\375\346M|\361\213_\304j\265\302\a>\360\1\\\272" #"\353.\334u\367\335\330\337\333\303O\375" #"\324O\341\370\370\30\"\237\260\240\4\1" #"\220\317%k\3619\b\2339\357\332\1\270ks\6p\251\3\354\366 \367\222\265" #"\320)[\355\202\216I\235_\223J\235\300\242\303o\f\e\315m6{\262B\277" #"\263\204)%)\374nv\36J\361]\n\252\210hSq\357\305=!\301\"\3" #"\31\230\246\r\214\341\0035\31b\240\22,4a\220-\b^\236\225\3263=\312" #"6\22H|p\235N\200\220\326\232\326\2174\324:\2\224\372 \204$\352c\31" #"v\320\372Y\34\0N\274\257\310\212\212" #"\266\366d\246 ^\237\a\22\230\3\e;\37\345\372\341\303&\254%W\311\5 " #"\306TG\367\243F8\310zL\340\3263\26\266\26\22\334A\357\335\300\357Il" #"\2\337[\315\261\202\331EJ\275\27\177g\353\3733\360\f'IV\301m\2223" #"\30=\313\0213v\276~\301\36l\35\274\375(\bm\232\22322\2352J\6" #"\212\372{=\243\0\355}\\\300,\204\224OP\324g<n\225\254\310\226\215d" #"\35\270!\353`-\333\22\0JY\2\305\261\202\262\372l\364=\35\25\5f\227" #"\221\330\364\347\253.('\31\336\345\2703%P\231g&b\20" #"Wf\325j\213\315\31\331\24s\214Q\227\342\217*\34\22\26\1$" ) 500 ( #"\356,\214\261\17\314\f*a\302\2112" #"\230\234\22b\227\327\345&\216\314\310\222mXFsv\203\366\367%)\360da" #"\243\222:\230\17}\350C\340\326\260\32" #"V`\255\206\222(\225\360\203\37\374\0" #"\257\277\376:\366\367\367\361\221\17\177\4" #"\265\216\n\6\23\210[Oi5\215\316\254\227!A\6\2@\17\364\224P\362\240" #"\254\3a\252\214\224\n\220d<\354\356" #"\356\256\264\214\32\212W\326n6\eM" #"\343\310\364\224\251U\24\262\236|\200M[\313\2204('\5\362\0\244C@g" #"?\347F\242\0354r\362B\265>\341G\17\365&\e,6O'\364\266\35Y" #"\273e\310$\22\221H\3103\220\rK$\32A\223\32\250MbX\255\244U\22" #"3vww\2\273\244\177\307\344\303,L\6Q\3251Im\2540\235>\206\223" #"z\244\275\4\240~\270q\267\201:\316" #"\273G\310\330Aqr\257\274\3742\276" #"\370\347\177\216\373\336\363S\370\324\247>" #"\205\213\27/b3Y\203\360\271\366j" #"i_\366\365\362\20\202E\366\246\263\6" #"t\344\245\2T\206\367\316\315\251\353Q" #"Y\355\332P\\/\26\354\3\21\300\275" #"\202\333~\2174\200\364\177\263H\17j" #"\255\260~\203\0!'\340\265\267^\303" #"\243\217>\212\243\243#\354\354\355\241n" #"GI\3671\343\360\340\0O>\361\4vvv\360\251_\377u\334\276}[\322" #"o3\206>\0045\204\336\356h\241G" #"\217\314\251\255\275\357]\300\203\313\304]" #"&Av\317\16\314lm\315\276\346\a\275?sH\321\30645\234\332\337\307S" #"O?\215+W\256`\265Z\341\347~\356g\325\377\314u\347K\e\262k\215A" #"a\374\371\374\263\341\377\215\200k\26P" #"\246\256\345\215\1\230\201\20\273'\177" #"\21\341\332[oa\30\6\354\357\357\213\36\337X\24]\263" #"\335\335]\344\234qxx\210ko\\\305\353\257\276\212\37" ) 500 ( #">\373#\34\35\36a\265\336\301\313\257" #"\274\206\243\303C\334\367\276\237\366\2402" #"\356\21\271\217\271\266?\352$\355z\243" #"\2377\337*\35b\20~o\236\352\315z\250\23K;J\"\222k'\321\30\376" #"\302/\374\2>\371\311O\2\0\36{\3541<\367\334s\270}\3736j\255x" #"\376\371\347\361\334\263?\302\361\270\305\346" #"\370\30\177\374\307\177\214\263g\317:[" #"\e\17\360x\235\36\264\304\366F\231fg\231?\27\26\tVm\222\301\211\317t" #"Y\220\265d\345-\255\334\253\365\r\34k\333*\226{/I\6\e5j\263k" #"\2655\222\377j\300\310\0005\31\200\"" #"\237\243\0035\224-\207\177\277gob" #"\341_\f\362\215\335\353:ie\210\241" #"\272R\373\\\0C.\36\220\250\313\27\340\240\177kC\22H\311\1\244\4k\373" #"\4:\271/&\253\321Qu\225I\357\0x/c\373\3336\315\317\352\16\26\255" #"\215\227\25\314\npj\334e\26\361\376" #"\227\303\205\246i\232\1=y\206\322\315" #"\307\31\334,\355 \247\266EN}\260\17\310\316\302*Y*\3120\351\215HJ" #"\3725\210\337\213\331\205\360,RBm\246\tO\"'iB\02013P\311\373" #"\3152\340\305\2173\337\301\354\3707\22" #"\220\265\215((\16\f\243d\323\336O" #"|\261\26\206\351\332\224R<\210\262\300\316\352Hl\354\360\220V.o\21I!" #"t<\375\2442\36\240i&\264U\351\0344\254VZ\264m\362\"B\345\21\211" #"\212\222K!c\304\222u\204\255\233\6" #"\233\26\240DR\303|\222I\232\336)\353\306\20\331L\343f9\v\t\n\252\365" #"\333>\31\274\246\224\204\321]\202\307\345" #"!n\a\275\201\203%\363\22\201\257EBC\222Qo\16|Sr\246\3276\232" #"`C\351V`\351\372x\35\245\24\34\37\37\317\246" #"\245\331\317\2277\23\277\a\364\324\222\v\372\t\0304" ) 500 ( #"MX\233t\226h\314\330l7@m(Cw~\337\370\306?\243\265\206\367\274" #"\347>\234\273\343\254\2y\6\221\34\252" #"h\214JM)\377\320\212&%\355\27\230\204\tg\366T\245z\304\316\6\244\204" #"\315f\203!g\224\\|\335S\2224\212\356z\177\220v\350\367\352O2l\355" #"\357O\332\243N\"\361\356`Y\365B" #"'*\205\205\236\22\347\222HG\216\361\27c\0\0 \0IDAT\34K\272" #";\21y\25~\323\224A\35GP\316\352\20\240}\222{j\3016\222\365{\265" #"6\\\253\325\n\333\355\210\275\235\35\344" #"\274\232\35R\326W\270\3\311\npv\231\6\247$i'c\360\365}\343\344\275" #"\276\4\358xJ\331\322\35jk\321fr\316\270~\375:n\335\272\205\243\243" #"#\254VZ-\353\351\330\223)\273e\360\0277c|\31{a\3541\327\311\257" #"\335\234v\4\205\314\326o\27\16x#" #"`\262\2271\260\361Z\364\37\263\350\330" #"\3672\30\320\"\276\224\22\356\274p'~\3437~\3_\375\352W\261^\257\361" #"\331\317\377g\t\270j\305\303\17?\214" #"\267o\336\300\341\341\241to\310\331\3" #"\26\37\263\314\226\232\24\307\265,\336\210" #"\276!\256Y<\230\306I\0347X\253eu-\355\320\367\36\275\232\305`\277\6" #"\251~\216k\"\357-\301\3540\24\\" #"\277~\35\337\376\326\277b\263\335\342\247" #".\337\203\213w\336\211\215\2>\263O\4\326#\202\\]F\275\27\v\224\372:" #"G\37\27\237\317\34x\314S\356v\215s\237\245]OZ\2201\324\212\227\257\\" #"\3018\216888\300\363\317=\207\203" #"\203\3\267\361\227~\362\23\274\362\312+" #"X\255Vx\344;\337\301w\36\375." #"\266\233-\266\343\326\323\260\314\214\303" #"\343c|\362\223\237\234\5\36\357t`DII\264" #"\243w*\232\353,\222f\216pr\344\267f,\321X" ) 500 ( #"t\302\320\373\263{4\271EJ\t?" #"\377\363?\217_\370\330\307\261\231F\274" #"\370\343\27\360\354\17\177\200g\236\371\1" #"\326\274\203\343\325\312Y\365\244\231\16\323" #"X\233l\301\3'0Rk\232\r$\177^Hb\237\334\346\367E\220\0kj" #"\325\17I{v\356\227A\236N\257\255\271mz&(w\233\350\354\270>g\255" #"\250\267\301\n\221]\352\357\237\304\255\e" #"\250Q?\332\26\222\255\bx\226\305\231" #"\361%m\271\344\331\332X\360\306\254\3\17l\0M\235\201d\3635\333q\353z" #"}g Im@\320\230\352 E\376\25\231r\353\363\333B!\34f\356H\317" #"yn\336\366.Q\362\367P\vCk" #"\306\352\211\255m\307\252\3627\223\e\235" #"\224\347-}b.Y\2\a\352D\235\25[\332s\264\2\257l\3\245\b\275k" #"\217\236\267\22\4\n\310%J\332OZ?\273Y\233=\275r\315FK\0\335k" #"o\3046l-\243fZ}Yk\3325\255\23x\276\36\244\2627c\322\301\230" #"\306I\n\321\234C\351~\247j\306\r\200\214x&\231\234V\265X\215\22!e" #"B\202d\37z/g\223\367%0\311\275\266\251b\34\3739Gd\22\241N6" #"\332Y6\215\352\3434\253\233\251H&\326:\313T\311r\210\0352PDb\340" #"g\310\342\254\214\4\211\265\\\265\275\263" #"\304\230\3042\310\305\272756I*" #"\374\367\354=\211\244\260=\23\241\304\351" #"Z\346\f\227R\4{\30K\a\37\0011 \0270\344\1C\312\316\314\314\0\2" #"\211a\245\224\264+\2\200\n\324\261\367" #"\35\264\213\355\216%\317\26\303&IA" #"Y\206%(_\36\262\361o\301\232\302\342&Z\252\234\221)a[\267\376\36\327" #"\256]\303\215\eoaww\37\357y\317\275\241\35N\210\250\255\35\6" #"a\346<\246*\371\323D\254\f\350\234Mi\32\"\331\265\264\326\260\331" ) 500 ( #"lfC\31&5\230\6I\231\346\234\265\3525\30143\314\302\346\2121L\242" #"\267aI\17\260F\352\21hy\364=\325Y\205\276\5\23\224\244\337\341X[O" #"}+\360\260V$\254\1\217\30\344\200" #"\3158\202\251\2516L\332|\224\234\4\bOS\3505\v\a\26\2469\215\a\v" #"\300\252mS\320\222\2138\376\3004\271" #"\361\272O\232k%\227A\216G\207\n\270)\251\356\b\305;\4\330\32X3\373" #"S\247Nc\265ZK`\266x\237%\230\216\354\337\f\254\4f\327\35\6\2006" #"I\200`\317\304~\26A\264E\2770\300\273\0a\26p.\vF\222\36lf" #"\355=\255j\327\221T\257&\f\376\351S\373\270|\3712~\347w~\a\3030" #"\340\336\313\227q\353\346-\344\234q\361" #"\342\235x\351'/\3651\264m\336:" #"\254\266\346\232\372\206\236\311Y\6\240\366" #"\212\353\326\31\255.\e\1d\230\311l\35\211|\255\304\326\272O00\3\377Y" #"\337\17\353\365\32\233\355\26\177\377\367\177" #"\2177\337\274\212\375\2355~\371\241\207" #"$\350.\0056^\330R\352\21\370\315\3\367\236UHV\0\3\314\3563\352\213" #"#3,6\261h\250?\3\213\311\337" #"\317\244O\200\24\244~\377\251\247\360\362" #"\225+\330\335\335\305\225+W\360\332k" #"\257\271o\30\307\21\253\325J\230\336$" #"Z\370\355v\213aX\343]\357\272\214" #"{\356\271\a\357z\327\335`\225\213]\276|y\266G:\20\237\333h|n\313" #"\375\24\17\230h\373r\377\r)\2114" #"j\265Zi\253\243\252\276G\206\350\f" #"\353U\304=\263\300b\0347\236\341\273" #"\357\276\367\340g>\374!<\365\376\247" #"\360\267_\371\n\230\327~\26\3105\346" #"\260v}\300\220\374\\\ve\241]f\252\244\322\23+S\227:\23\b\230" #"~u\352\31\4\nE\277\n\6g\366\20|@\177\216\21\350b\2666\265" ) 500 ( #"Jm\304;\rV\3506\eF\310&Bf\0\6\254c\375KZ\350sC`" #"a\340Z\200\266\260\207\6\"\225\210\4C[;)\271\223K\361\256\26\316`\2" #"\222\322&8\371\304\246)M\244\3406aj\243\27\217\1\235\35\265q\277'm" #"H\301(\1\255\366\265Y\227\225\0\337" #"\340\373\215!\205\02657\353\231+$" #"\2403\256\313\254\3102\213V[\363^\311b\267Vh\250ZZ\17<\264\265\244" #"\266wl`\3550\3251\217\4\253\35d\347LhL^4,\305\236\23\4\353" #"\313\272\327\311\6\204$\200\30\204n\303" #"\346\234\255\30\213\253\260\246\206\5\"v" #"\1$\313'A\226\330\3404J\247\236%\336\"Ub\263>+FCk\35\313" #"\311\236gp#4\32U\343- _\212\214\201V'H\367\24\202*\357f\373" #"\336\n\307\3056\0!\0\4_goP\320\367GJ\244\204\204\366\332.\"]" #"\5\363,\223\272\364-\366\212@8\236" #"cv\316\201\331\333\217\232\r\325Ze" #"\360\22\317}\25\253\257/)\303\0321\316t\257\21p.\17\261\345\2031'\1" #"2\321\273\2:\"\217\216\375!*\233" #":\215\0221\246\222\264\242p^\334f\237\23\221},n\202.\2729\200\bp" #"#{b_;\360 `\32%\32\220\352\2m\233Qz:`\273\335\350\347\2" #"\303\260Bl|\36S|\326\37\230X\31b0\6\275\377\234e*\223E\352=" #"~%7\372\243\243#\354\354\354`g\275\236\5\21\200T\325\227T|8\a\23" #"\301\246\3148(\340\212\\V\30rv\246\262\326\t)Kw\4\204q\244V\241" #"l\254\274\1V\373\272\325\n\205\234@" #"\"\f\224\260\35G\344A\246\303qH\223\201{\1\224\30\222\32;IG\nj" #"\275\272\331\234\266D\237\315\245\349\27\214\243" #"\25\357%@\eF\247\224<\325\223R\362~\200" ) 500 ( #"=h!w\326\263\312Y\2363\265RD79`\4\213C\350\r\257\273\235\35" #"\36\36zO\334\235\235\265\267\200\21\362" #"J\326-~F\264S\263\257\310z\331\263t&G~Yt\256U\264\352v\240" #"\305\303\320\367\32I\224\214\360Y\366\371" #"\306\356E\246\310\327\271\315\323\245~`" #"\22\320\2529{aE\317\235;\207\363" #"\347\356\300\324*\16\217\216\260\273\273\213" #"\343\343c0\vcl\373\315\212\303\226`P\316fv\226d\t\360\231y\246\331" #"\215\300?^\333T\253;\257\23\366\302K\246\365d!\230\2559 \232\263'\36" #"\177\34\317\375\350Y\254W;\22LM\223\334\3174i (\5yM\257u\b" #"Y\34y\177\2652}\4}\274*N\254\355\362\276\"{\312\32\304\306\3424\373" #"\276\255\247\330I\362}y\264\335\242\262T6o\266#\230+v\327;X\255V" #"\270t\351\22V\253\25n\335\272\211R" #"\6\354\354\357\343\367~\367w\1\0\247" #"N\235\302f\263\355,\30\354\332\373g" #"\315\211\211~\357\321\256M\242\263\264\361" #"\36\254t\211S\314\310\330\1\230\222\350" #"\362\2148\231\202O\216Z`[\v\3" #"8\265U\334:\270\215\347\376\375\337\261" #"\331\216\270p\341\2V\253\0256\233Mo\261\30\0z\4\237\21\3740\333\365v" #"&W\330\261y-I)\3\254`\312\300mL\225\306\347\0263'\346\377\343\371" #"\27\203Qn\f\312v\336\365\373\266\277" #"\211\357i\373i\232&\240\24\330d\313" #"\270\2673e\275\312\16\226\227\354\260\330" #"\2311\312\r\325{\377\2\250\r\353a" #"\245>\240\267l\234\252J\302\364y\301" #"\374\243\266?\24p\4\377\257t\203\311" #"\20\357\336m\227!]WJ\312\213\347" #"\240{\36p\211\34\263\244\360\215\351\216\347h\0343l]/(\365\214@" #"\264A\313Z\264&\235F\226\237i\327" #"\326\1k\323\300\242\373\213\0300\233\255" ) 500 ( #"6m\263\25\203Wg\256\365Y\311\321\315\212\a\204\371\216@-\347\214:1R" #"I\"\27K6\305Md )e\225\nJ\300\325\26\276\337\355Oe82\336" #"\e\202\366\271\315\366\260\373\340D\260:" #"\224q\32QJ\237\234g\331\211\204$" #"\275\234\303\231B*\323d\266\211\225\t)5X\306\206\31^c\20\211\30nM" #"\207\\\b\333k\367\r`f\233\362\373\0\241w\222\2613c\265Z\315\360Z\334" #"_1\260\263\375fg\244\373Zc\316\251\263\300\0a\254\223w\240h\255\201}" #"x\216\4\30\245\221P\366\343v\v\16" #"\251\302\316P\314\373\231-\201\245\247\356" #"a@\250G\266L\344\232\f\217\304%\201\244\25|\302\2\333\2708\331\264b8" #"\361\220p\375P\330 X\30yd\\R\352c\372\372\257\367\b\224%o\1\236" #"\244\310\307\36DJ\t\307\307[H\261" #"\20\343\256\273.\302\332\177\330\365\273\363" #"M\22\r\263V\376e\312~\272\324i+\351\244\270\361\25t\370\334\373&Nv" #"gw\0277o\\\307\336\376>\306\355" #"\26\265\312f\221\246\375\4\256\272\251j" #"\323M @\16\4p\253\30\241\243@\1\214U\332Q\345\222T2A\1\250\317" #"[\37\271\363\234\252\366\27\350=Z\eT\a\23\0\256D\256\22\5[5x<" #"\24mD*+m.\357=i+\244\212\375\375S\330N#\16\216\217<\342\23" #"C\327\346\327\244\a\213EqvR3\3\265J\277<=\304\"\370\265k\263\r" #"iQc2\37\1\321\232%M\27FF\310\16\272\323\247N\241\24\251<\255S" #"E\31tT/[\t@o\25f\353\261L%\306}\342\fh\255\30R\222#" #"\242\231V\256\217{\215{\254;\272\16\16\335a\221<GI\253I\4\36\17Y" #"\250\375f\232\267\r\22C%\231\252\236m\222" #"\215\24n5\375=+\30\332n\267\370\341\17\177" ) 500 ( #"\210\234\v.\337{/\266\333\321S\221\226\232mM\2026cH\rr\332A\27" #"\17\32c\322L?\30\17\17[\257\244\3163\372\24\a\264\274\354\315:\327ev" #"\363\220\265\e\206\1w\337}7\2202\306QF_~\363\233\337\304\361\3611>" #"\364\341\17\313=\20\371x\314\270F\21" #"\260\306\240S\256U\301S\0\332\261\322" #"\376dp\355\313\356_\367C3)\210" #"\260\212\375\346\a\356\a\336\377~|\377" #"\351\357coo\27\17=\364\277 \347" #"\214\365\316\32\273;;X\251/\374\313" #"\277\374K\374\340\231\37\342W~\355\327" #"\260\277\277\217Z\253\27l\304\3It" #"\217\375\337\221(\260\08\336\273\264\323" #"\v-\351R\366\3\267\203\367\b\330C_N\275i\206t{\261A\"\3605\355" #"\5p\262.\342m\355\275K)\270\376" #"\326[x\356\207\317\342\350\350\b\367\335" #"w\237\267G\263\337\267\302\25\315S\211" #"\364 %\24\262B\241\252EF\332\323" #"\274\332\240\2310ZZ\337\213a\231\2469\eo\2007\36\356\236\3467\31T\23" #"i@<\244=\30K\0T\316c\2371\17~\346\0012 l\331v\34\261\322" #"=\322\203W\253\373\200\357\243\245\357\326" #"\205\207\245\241\355\336\2545!\254\37\255>\27\351:!D\nYz^*\347\244" #"\376\304t\247\331\356OH\b\"\6SCb\3\243\242\207\244(\223\2\243N\25" #"\303j\320\301A\354@\265\261\6B%\201ljm\360\221vO\333i\324>\254" #"A\332@\312Z\246\204\355\270\361IZ6(\305\3766'\251\rY\356c\3m" #"\"\357\220g\224s\226ljXG\262\317\n\301\4\254\373\206\255a\343>D+" #"\356\3\35\226\304F\3346\233d)\317" #"\247h!\254\324J\220\246\2245+\315\363\f\0373{\355K\255M\6" #"\247\f\203vi\220B/\277\277\332\vg\e7\f+\3\271\226u\261b" ) 500 ( #"=\202\364#\236\3730\250\34R\360\332" #"\350\351\322\330\371cggG\213R\273\266?\5\377gv<+\4%\323\275C" #"\367-+\203\3363K\255Y\227\206\2714jN\34\364@!i\277\344Z'\f" #"e\0\223j\237\241\255\36kU\320\257" #"\353\256\205\243\336\325&\21\n\210\4\361" #"O\322\366*%]\200\3600\343\215\305\350c\306f@\f\252q\2224q)J" #"\347wF\306\16>X\265*[\273\230" #"\21\304\22Q\306\206\303\361\20\351\21\232" #"V3'a\351\274\315Ip\276\313\364\234\263\245\306r$\302v;\241\224\301\r" #"\336@|JI\322q\311*\343\373h\331\270\211,2j\255\353\376\222o\376\246" #"\207\332|\232PgS\n\16\17\217\274\30cg\30\260^\257\220KAfu0" #"Y\336\337\1|\322\250<%a\244t" #"Z\3134\311\241\36\245\5\326\363\317\230" #"\\\223\v\fCO\35\330\32\vx\220\264\214\201~\260v\302@g\360\2715\231" #"(e\216\36sF\255\a\32\354DA\326\353)%c\177\177\0177o\336\360\367" #"\264\227;\227`_\36E\a\207%\32,v \34\243xgL\f|\2612\343" #"U\256\247\2244\263#\v\242\354\232\217\2177\330?\265/\337k\0254Y\261T" #"R\360(\216.\2028g\31\342\36\230" #"\35\346\2<\255\327\237\367y\266\373\347" #"^T\346N\2\302\306[\232\335\366\37sg\4\305au\246\307l\253\250\3357" #"\206\267A\252\255a\220}\277\b\24%" #"\355*\314\223,\327\267\277\375m\334\272" #"u\v\357}\357{q\317\345\313\352\365" #"\b\224\204\233\21\177\220\241\312,\357\25" #"l\221\365\211\0\252\366\">\373\367<\245&\23\360l\215l\355b\341\37\3}" #"\215\364\312M\217\225\22f\317\203\231" #"\361\256w\335\215?\370\203\377\23O?\365\24\276\371" #"/\337\304\321\361\21\36~\370a\274\364\322Kx\350\241" ) 500 ( #"\207p\341\374yT\242Y5oJ6|a\316*\333\317e\335:\263\337\301d" #"\224\207\3305H1\v7\31U,\223\233$=*\366\324\31\240\350\323\344\276\a" #"\374\376\357\377>\244\353\313\350c\201\31" #"\300\361f\2033\247N\341\340\340\320?" #"\333\336CL\211\303\265\1\2615R\354" #"\236`\317\336\202~\37u\355\301\203\36" #"\\\\]\363\30\355\263\373\345ypc\277\343\373V\203e\313\22I\335A\3A" #"\353\bB\347\207\365z\215\177\374\307\177" #"\304f\34q\372\364i\374\312\257\374\212" #"\3122\6y.\n\244\222\36\376\321\216" #"\354\225s\226\203\216\214\315\225lbm\332\24?eiM\205\20\224\314@|\357" #"c\34}\312LJ\240~Et\207\rC\31\264\a\356\234d\221\16(\375\332\354" #"\31/3I\366u\321\240\267ik\264\2243P\253\314T\2\203Z\17\250\354\25" #"\353^\24S:xh\255k}E\312\20\262\"\206\350\324vL. \361\\\353" #"\340\327\376O2\214'\25\ea.\214" #"d\316\31\224%\353\347\301\247\311\31\234" #"\310\221\314.\221d\263\320\340c\211\227" #"\3m\220\b\251u\277a\1\377\220\207" #"\300\272\27g\177\243\364\255\265&D\2" #"\365@\246\353\206u\202\245\2\37\3[" #"\275\265\34\300\324\375\260\255\233\265\5\223" #"n\257R(hA\205\27\325\253\275s\355}\201\255\257,!\26yv`\t[" #"\376w\b\232\243\357\264\2630\27-Dm\220<y\360\263N\350x\20j\235e" #"\346g\212\373\0022V5\353\27\t\204\254-\332\0\342\244\3\203\22$>d\37" #">\303\32\30d\225\224\225\322\317\352H" #"\310DbR\210\214$\31\264f9\224\356'\f7u?*l\262\274\207\335K" #"\363{\220\332\f\tfS\312\332\307_\250\265\330J\21\20yk\206\234" #"+M\265\345\211H\0\224\260V9D\222\222\16\\F\244s\247\32\32&" ) 500 ( #"\347\254\206#l\3408\215n@\3134" #"\220\335\200\254\276\264\23a=\370\r\200D`\353\251\ru>\3030x4\264\4" #"\266\223\366n\214\0007\26\347\310\302&" #"\2242\314iy\275\257k\327\256\371\357" #"w\266\262k\271\354oZk\272\200\332\276C?[F.\366\312\314\234\263G\240" #"\0#e\306f{\bc\25\366vW\262Q\374\340\350\354\211M+c\326\324\0" #"5uH\242#\245\246S\257\246\nj\220\341\34-^\263T\220\232\310~\231\326" #"\351\16W\3140\247\4\236&@;\311Z\341\207m>\342*\335\36\3640\265\347" #"\331\3\f\323\271\365\264|\312\31\253\365" #"zv@\305\24\203\35.\266Y\20\256\315\30t\312\n:\254D\330\355\210\335^" #"\230\31\205z\344hF\37\323\214D$" #"\275m\271\263\302\2463\264\3475\f\203" #"\244\372t\35*7\214\332\260\334\"\3748\245e\346\240d1e-\365Jm\234" #"\242\331wJ\332n%\200T\273\367)" #"\354\23\373\e9\224\233\357\313\326\202\24" #"H\235\212E\331\200\24v&f\235=\256M\317u}\3733\267jm\271\237k" #"\327\256\342\351\247\237\302\305\213w\342\327" #"~\355Wq\372\364i\335?\t\211\262?'\355\333\357\0033\254/pk\242q" #"\363|K8\204\0\2516\356\266\26\322\341\244`$\370\223x\210e\222\26}0" #"\220\340\376$\246\252\215a\224\347p\356" #"\3349\374\322/\3772~\377\367\377w" #"|\350\201\17\341\366\355\333x\372\351\247" #"\3617\177\3637x\345\325W\35\240\273" #"\275\241\247\267i\361}\273\336\370YK" #"\3469\336\247\203\341D\310\244A\22\200" #"\222\222\210\25\223\200\336\350\223\fd3" #"3\266\333-j\225\375`\a\274i)\267\333-\246:J\313\264\213w\271\237k" #"\255\267\35bn'\6Y\330^!]o\344\344E" #"\206\f\261I&\315\305( ]\372\370\36tJ\e\"" ) 500 ( #"\242\256\27\265\353\210@l\306,\242\263" #"\333\306bG\177\374\344\223O\342\305\227^\3028Mx\340\201\af2\231I\301" #"\225\226p\t\2102\20\347~\242\3W" #"\223\320\221\333Yg\374\254\3\0\240:" #"\360\220V\217{\331\236\275\353h\203\275J\1R\305\260^\241r\305v\32\5`" #"\279\243l\5j\353\353\21\367\351\362" #"\363\374\374\321\254\1\364N\31\t\215\t" #"\323\30\236_\370[\273\256.}2\223&/\374\212\276\325mW\t\305\6\6\245" #"\320E\5\4n\332+6\214\372MI\330@;\353d\312\251U\3407\357\24\224" #"\203>\262\261Vl\21\271\217%\rfmo\333=\324Z\275m[<\367\241;" #"i\273\335\252\335\3250\234i.g\260" #"s\271\350P\223:\325\331\276F\23\20\a]skOf\3539\224\25\244\323B" #"\222n\3&\25I$\205\354\372}\200\303z\3673J\0tr\237\"?\353\367" #"'~)\317\3561\246\371\355e\366!\22\210P8\210.'\211gY\f\260{" #"\306\250\27e\305\0N~\256\200Y5" #"\355\4\353\343\255\376-1\200\206i\22\314W\233\370\21\31\324T=k#\3573" #"'\30\226\5fn\337Z\263e@;\256Q\4\367z\305bK9>W\371\231" #"\234\267}\275\230\200&lK\307\205\263\f\222n\210$X#QB\342F \326" #"\a\301\223l6\312\276\260\361e\213\357" #"\306j\37\316\222\272(\245\310\241\252\16" #"\310\34Qd\277\372@\2\5t\334<Z\230\266\343Lkh\a\202\25e\330\302" #"\232\203\210#\337\372\203\356\a\346\374A" #"\367)\0341Ed\6Wk\305v\273" #"\305\355\333\267\221\222L\f\333\335\335\223" #"\a\313\35\224E\206\326\231\201\331*\315" #"\365;\333\355VR\375\314 j\316\206\355\355\355\240M#\16\17\16Q" #"\326\3\332(\22\2\3,:\263R\215]@F\311}\203V\275\216L" ) 500 ( #"\332\2475\21\312\320\177n\25\313-8" #"\335\31\310\320\333\257z\0\373\363\"\361" #"\206\302\350D\221\274\335\263j\252H\n" #"\364\266\233\2557\270\266\316\16\362\254d" #"\235\247i\304\321\341\221\217`\215\300\326" #"\0\2623\356z\"2\340\233S\322\37\rH\f9\347*\30\23l\240\203=\177" #"\331G\235\351\262\314\0\21\243\265\220\252" #"\345\316\316\20\221\24\e\326\tM\231\356" #"%\0Ye\251\324M\314.\345\210\207" #"\240\331\203k\211\314\211A\331\333ZE\257\255\2z\226?\354\2517]_c\212" #"\354g\fq(M\337K\2300\313\272\317\323~\356\3354U7\205@\315@\351" #"\374\240\224\377Zz\370\273\337\375\36n" #"\335\272\205{\357\275\27\227/_\3068ne\262V\253\242\351K\ry \2646" #"\311\244\237\326\v@X\367\277\27:\350" #"\375\31\330\260\275 \207\235\0\21?\b\364~k\255\376<\354y\332sLI\32" #"\345\23\313p\231\222\23\22\261gQ:" #"@\351\351\347\3250\340\275\357}/~\3437\177\23\17~\364cX\255\326x\355" #"\265\327\360\352\253\257\372\204\240\256!\236" #"g\27\226\201\261\275\242\17\263\275o\25" #"\302z\313\352\340\253\357\27V\266\r\366" #"\254jg\274\214\t\355@%\26\333\364\303\0\nR\e3\216\217\216\261Z\rX" #"\257\327\275\320\222\346\222\262\31\340\344\220" #"\2050{\252\222\212\314\0200N\0\270J!\217\264^\224\2\335\bRO\310\b" #"Bpg\353\341~\vV\357\321{\b" #"\223\6\240\2\f\273\376\356\350\350\b\337" #"\370\3067<\b\376\255\337\372-l\267" #"\333\376L\25p@\231\264\346\v\212\331" #"\236\263\376\330\366}\317\2p/\354\1\231\232\221t\374i\17n\214}\213zo" #"\373w\4\300\266N\233\343c\324*\23C\311\30\325\300\326\247wx\3061" #"(\216`U\374G\325\6\376\0su\262\243\2240\31\212;\20\214\354\231\1" ) 500 ( #"\25\271\27\270v5\236\325\346\2572\365" #"\232\226\306\r9\255\320*\334\217\22\22" #"\230\264\200\211\205\31\315\245O\257k\312" #"\220[\246!\336\2033\273\2727\270\351" #"Y\227\222O\2354\0\231l\320\210\r\340\340\271<(\332\255\21Zv&\277S" #"&\315}\262\262\315v\357\362\377\254}" #"\357{\257\363\270v\3234\251\244C\374\227H $SR\e\200&\362\301\310V" #"\332\263\264u\365\354[\b.\234\310C\vx\243O\275\264l@\\[\3\266\r" #"\242]\267s\320\206S\0\35\353\364\340" #"\263\251l\262\223\210\366\371\361\377\221@" #"\210\266\3371A\377wu\0,R7\220\214\216\2276d:esR\326;i" #"7\r\"\a\2449'\344\242$#\313" #"}\220\242\344e\300f\301\200\234\365\202" #"\265b&\323\356\321\356\335p\230\25\302" #"\371\231\241\331}\231\272\246\301\217ep\b(vc\31\200I\nZ\233f\213\25" #"\243Q\373@\"q\30\224\214\"fPc\244\fLSO1L\2238\242\371\373" #"Hur\322\b\23z@x\221\306\220=r7\343\232GQ\375:f\fP^" #"4i\257\r\234\223O\31516\316\322\27\271h\317\274F\310+\321hn6[" #"\20IK\253\3363\317\314y\251\23\234" #"\37\2061\272\351\275\370\264w\235Fv\244\372\253U)8s\372\224\\/\3\273" #"{\273\312JHZq\252[\224\274\232\201\326X\330\267^\257\201\332pxp\210" #"\315v\203\243\243#\0R\301\375\302\v" #"/\0It\213?\375\236\367\342\374\205\363\230\246q\26i\346\234uLr\1W" #"m\321\24\ed\3\336\320\337\168y\216r\200\203\201\4\306zU\200&\300\226" #"\223\246\267\223\245n\n\266\233\t\326\256" #"%\347,\255\302B\246\300\327\315\26\221\244\352\276\231sT&\306*\250" #"M\307-\5\34\320\244\200\374\275H44b%K\27e\210\320\276g" ) 500 ( #"&\"\203\270\331l\344`\326\303\274\263" #"\1\6\316X\264\265\314\332\370\273\37 " #"qO\314\264\277M\253\277\225\3250v" #"\267\265&\355\337\270\263\2%i\v\37\265\235:M>`\"\245\204m\255X\25" #"\235\351\16\6\263\252\223Rv\35\346\274" #"\330\307\234\206\352\t\r\35s\327\32:" #"\370H\t/\276\370\"\236y\346\31\\\270p\1\17>\370`\327\303\247$}A" #"\233T\377\346D\230\232\0042h\r\251" #"\24/\0303\335\"\23\273\323\2039Y" #"\350\263\2#\247\"l\5\365\336\254\310" #"\275\365`\334\333\366\265\333j\233\27\205" #"\326Z\235A\263\212\374R\6O\35\217" #"\343\26\373\247\367\361\221\217|\4\217=" #"\366\30\366\366\366p\371\336{e\252\e" #"0\2333\317\334Y\263\370l\273=\364" #"k\352\240n\336\323\322\252\271\1\323S" #"\233#V\206\260u\t\207\335\233\261?" #"\226\1\311\331\16\357.\265\261 \316\374" #"\27e\222\275\37\1\2:8\266\375\32\3\241H\34$g\17\345oz/m\315" #".\3503\355\366\224\240%\2253\333\261\200\267\37\354=Ppm\34:\310k\260" #"\342\335N\f<\362\310\267q\375\372\rl\267[|\341\v_\360\3530@T\271" #"W[S\26\200\20yc+y\222\300O\17=\"eE!\3g\262\264z\4" #"\bS\233\244\307\264\265\231\254\2755\244" #"\370\306\340#\26\276\335\0tN\tUI\227\344@V\300md\265\242\235\314\356" #"+\370\f\17\0300\377\276I^\262\36" #"\220\3434\241\f\3\250\234\4\311\263\300" #"\253U\31\200\24\300\320\2625(\252u" #"\35\351\262\245\224D\206 hI\326\312" #"\332g%\206\373\307\376\354\305v\354\376" #"\354\31\225\\\320\252\325\f(\3502\271" #"\255u\233h\32\274%\v\3503Z\233\274\320:\27M\255\223\201_ \227\1" #"\265\2163[\2665\210\240\270\251}O\323(\0\227zm\17\315\366\\\17\4\0" ) 500 ( #"\251\23\342\2115;f`\262\27\306\231|-\202{\322\200\335$\224\326jQ\2" #"\274\270\27\245v\305\372\3\327f#\324" #"\331\237\273\311\274\314\36\207\\\372\244\273" #"\b\344\321\337W|Nu9\201\235\217" #"v\366-\327&\236\265\366\177\353\254D" #"\244E\212M\316\25#\227$\e\231%" #"\343.\226\251\30\4\310\205\264\3\217\234" #"\267\271\310\371\333xBI\3\22\223L" #"\216\325\251\244\313Is\3262\326\366r,\0247\274e\201\210k\221-@a\261" #"\247%i'v(b\351qR\233BC\222f\226\235u\370\2176i4\260\310" #"z\20\0\260\2>\"$\22}\250\30" #"\217\2614\326\3772\262\303\252\31\315\3\30V\22\t4\355\17b\363\252}Ll" #"\352\262\201\336\235`\356\330\227\327L$\216rH\203\263\vK-/\230\321&1" #"\350q;!kE\240Ph\335\211w\335`\327\323\331\327\235A\215\225\247\r6" #"\37\276\203\n\5\312Y:M\34\275y\4f\306j\275\16\254G\362\212S\1\236" #"\322sO\316\37Im\32\23u\353\372\r\2374\304\314\270y\363&vww\361" #"\351O\177\32g\317\236\303+\257\274\202" #"G\36\371\16J\31p\357\275\227\361\353" #"\277\376\253\270\373\356\273\261\335n`\203" #"\20*\211T\35\334\373S\246D@\223" #"\342\257L\322\363\364\355\267\337\306\305\213" #"w\302R\226\262~\241\3516\6\20W\361a\2203\270\f\3Z\25\307\225r\306" #"v\273\301\336\356.\3568{V\35\302\274\303\2079\21ka\5\2224/5H" #"\2736\35'm\340 \245\300\344\e8U\207\341\207\253\247\244;\303V\312 \1" #"\205n\372\335\335]l6\eg\201\"" #"\340\211l\201\264\323\321\221\317jw\256" #"9G\0\306\346DYR\257\305\336\a\220n\25j\247\16\354\232\5B" #"\315\345#v-\265V\31\277\314\334\1?\231\304G\17\31\22\235l\224\333" ) 500 ( #"\314\212grv\260\e\243h\273\317\257}\355k8::\302\203\17>\210\367\275" #"\357}:$\2\2322S\206\231\1P\0216\235\245\357\262\200\341,\277\253zp" #"\363\3\262\303\25\264\332i\272x59" #"a\275\260%\352\34#\330\210k\352\240" #"\252\366A&\314\200\361K\276\366\215PR\301f;\342[\377\372-PJ\270\353" #"]wcwo\37\343v\324\376\230]#g\357m\266\263\4\211vo\24\326\331" #"^\275\232\276\a\364\246\2233{\2\340E\36\346'\314\a\315\372b[Z8\260" #"\246\6\356\314Vo\336\274)\177\227\225\211l\31\254=:\305gF\246xQP" #"\234L\373&\373b;\215X\225\301\265\2171\230\350\fdg&\315\356\355@e" #"\315\372\30\3501pk \331l(\221d\243\4\250\213\214\340K_\372\22^z" #"\351'\250\265\342\243\37\375(.\\\270" #"\340L\252\354\5\322\16+\322\v{\30\nH\237uv\275\263\364\366e\226Vc" #"\245\310\32\202\304FZ\222\375\305\224\234" #"\325\5\v\3040\326\325I\17}\26\261" #"\260&\262s\321W\301\200\217\373\375\n" #"^\216\302n\354=\305#\0\266u\264\367\34\206\301\333bE\20b\376g\252U" #"\32\364s\203<\346\344\332W\367S\20" #"B\200\211B\252\273\203\e\227\4\20\271VY:\a\b\253:\215\223\22V\25\255" #"\222\246\366-+[%\340\310\322'\336\330}c\274}\257V\251\3705\215,\22" #"\311\26486\35w(\3762\246y\24\233II\272\361\324jS\37\v\254M\325" #"0d\324\326\265\300\321\16\343\36\265\2" #"_\351\253\252\335\224(\301\332\204\31>" #"0\360\37\207b\371\304\311\326t\324\360" #"\24456\3223\336\272\362\300\237M\6H\273 A\310<\263y\2239\232O\220" #"\347` P\367\264\6\343\r\22H\330\313l\277" #"\32\350cx\1},\220\265\373\235\25\315R\320" ) 500 ( #"\247\323\274`\326\3548\316#p\f\247" #"u\22\322o\331\262\6\35l\346\3343\240\26\224[/i\321&k\0\327\b\265" #"M\356\317\230\205\320Iz]\271\24\327" #"\375\333\3362\37h\244\230\220T\r\303" #"\260FS\362\314\316\327\350kI\355|\0314Z\357a\37\21\234\200B\322e%" #"\331\206\210)\201X\254\0217\236\245<\"e\354Q(W0\261GOY\31V" #"k\274l\a\21\2731\252\203\260*U" #"0\262\366h3\306\255\326\352\237W\353" #"\344\251\371XL\345\327\26\243=\335x" #"\322\334x\333\37z\352\321\256\204\31\2" #"\252\253\216\347\265\321\213I\323\357\326v" #"\246;*y\300\343X\245\222U\231MKi[\177P{x&\2670\326\371\370" #"\370\30\317=\367\34^~\371e<\377" #"\374\363\330\337\335\303\a\336w\177\237\236\"9\rq\24\f\200$U`Q\262]" #"\373\255\2337\361\345/\177\31\337\372\326" #"\267\360\346\233o\342'/\376\4G\207" #"\207\370\351\237~/\356\275\367^\334\177" #"\377\373\360\351\337\370_\361\233\277\365[" #"\230\306\21/\276\370\"\276\364\245\277\302" #"\265ko\371F\0\200U\261\324\2256\230\0060N[4\bP\t\272b\252\0" #"\0 \0IDAT\270q\353m|\375\353\377\204\257\177\375\237p\343\306\333\20" #"\306\324\300R\227\222\324:\312\6b\b3I@\233\204\5L)\341\340\366m\34" #"\37\35\213\236\30\335\251\307\377\372:\373" #"\263\351\351\313\n\5\eMu\321\336\37S\3072\262NR\203\245B\344\373bc" #"#\246ID\372\244\301\3138\312\370G\"\302\233W\257bg\275V\246\177\16\f" #"\354\331\1ZXS\245h\3166\251]\277=_q\rr?\223\201JuBD" #"\242\17\336F\371\214\36>\255I\32\32\n\26fZ0f\235H#\205" #"f\f`j\223\214aL\t\243\246\21M7e\257\31\250\5f{6\347" ) 500 ( #"\214\325j\205'\237|\0227o\336\304]w\335\205O|\342\238\270}['" #"\320\1\t\t\"\374\256Hhhu\304\252\0\247\366\316`\275Z#e\331\363\215" #"\e\220\244\377\263N\201\3058n;h\202h\242\2131\245\220\"=Vv\333\202" #"\2009\243\325\355}f\e\266\v\rL" #"\353\301B\255\333\0227\361=\225\200\257" #"=\3745\374\370\307/ \r\5\237\371" #"\314g\260\267\263\243\3355\246\240k\356" #"\357#\216\335\30\375\250\177\355\2660\17" #"\370;\330)\245\27\255\306\264\372v\273" #"\325\353\232\27\237\304\200\335\256=\262t" #"\356wu}<\23\265\35\361\304\23O" #" \247\202\254\240\307FJ\313\272t\20" #"\340:_g\274\252\376\256\370\335L2" #"\311\253\373\362\236\31\223o\315\207\t\331" #"\377-\320\214\232J\t~\302\4=\226" #"f\367\211D\327\tM\373\313a\227\361" #"\332k\257\343\365\327_\307\245K\227\360" #"\231\317|\6\3438zM\210\255\205\1" #"\236\265\366\352\265k\221}\3375\206\255Az\210[\252\263*_F\244\203k$" #"\353\220\221fkc@\240\204~\260sI\311\274\350:>W\n\2627\373:\246" #"\315[kV`\357\317\331\0\226}\r(!\264\330\237K\311A\253vN\2S" #"\223*\363(\27\360N-\213s\331l\321\367\f\263\357\25h\347\n\223^\210N" #"\270\200\262\326\201@\n\343RV\200\247" #"\300\315\256\317}\215\210\366%I\257k" #"\221SB\242\202V\205!&\2106\333" #"\366\3218\216\322\337\324\213\204\e\246\252" #"\31G\22\226P]#\30r\216\333=%e\325\23D\n\324\317 \r~\225\275" #"g\206w)\210\1\255\330O\235\5on\v\0\362`E\344\302\fCm\240j" #"\315FJ\214\306#\246iD\345\321\201|\235&\210\276>\356A\t\276z" #"1\274\364}\346\5\23\331a\313\\\342b\275\224\227>!v\0\352\240_\262" ) 500 ( #"\0246r8f\235\355\345u2\311\354\214\320j\3054U\214\343\6\224$\353\222" #"s\366\326\213\366w\3625\273O\261Z\202\231\224\204\373=\0\360.N&Q\211" #"\0\327\261\240e\330\270\"%h\320a\235\36\372\2362\277rbo(f`f" #"\357\344\5\220t\373\342\256\r/2y#\243\241B\252\5\203\330Z#q\346P" #"\311h\0E#\353V%JGk\236\6s\203\362\a\324\373\262\331\342HT\223" #"0\266\252\321\272\264\372\2\21\320\272s" #"H\311Z\202i\263w\20\252Nm\312" #"\251\217\243\205Eu\262\332\216\370\301\242" #"M\222\21\177\235\355u\346 \331\3\2" #"\32\244R]\16\202\223\25\236\375\220\23\326\222 Z\326D\5\3142r\260M}" #"F\263=$\323\362\335\272u\v\307\307" #"\307x\376\371\347\361\350\243\217bww" #"\27\317\377\370\337\261\277\277/F\34R" #"gH\344:\24{\217\365Z\264\206\377" #"\317\227\276\214i\34\261\267\267\207\333\267" #"o\243M\25\27/]\300\245Kw\373\264\244\322\30?\367\263?\213\327_{\r" #"\217?\376\4\336~\373\6\376\345_\276" #"\211\317~\366\263\376|_~\361E|\373\221Gqt|\214\377\372_\376\v\316" #"\2359\215\315\366\30\314\25\a\207\307\370" #"\247\177\374'\374\350G\317\342\236{\356" #"\321\315'\300\321\234y\a\253&Y0\220\6\aK9'M\27J\212y\30," #"\272\267\216\e]\e\234\210\234U\227\315" #"m\276@\272B\20R\357\221I\t\271hZW\323j\202)M\237\233a\372\\" #")\310\353\214\37+\350\264\350\3316o" #"\316\5\323\264\361\215\eY\34\t\222\6om\24\35P<\\\212\246A\0056Y" #"qF\357$`\243\216\231EnQ\315\21\31\350\345\236\342&\375\\?t\335\331" #"\21(\261\3-\16\207O\224\373\30s\314\372\376\261" #"\332\371\360\360\20\377\374\317\377\214Z+~\361\23\237" ) 500 ( #"\300\331\323\247q\264\331`U\6\34o\216\1\0G\267\17q\375\306ML\323\26" #"\3234b\34\e\256\276\361\6\266\333c|\364\301\aq\351\322\335ZU\253Cg" #"\250`\234\252W\310\257V+L\343\6&\213q\300\240\316\332\16\351!uGh" #"\257\270\366\261SH|Yf gI\211\327\326\260\32\n\246q\302\23\217?\206" #"g\236y\6\25\214\377\343\367~\17g\317\236\301X\255wdOiN\1\360\370" #"\311\203\245\214\241\263u1\350\267jl" #"\371>\320%\1\35D\17\353U\327^\363\274\330)\2\233\24\272HDM_\323" #" !g\31\375{\307\35\27\360w\177" #"\367wx\344;\337\301\27\276\360\5\251\326gaMY\3753\3\336*\313\231a" #"\v\244\365\363\252\246FE\246V|\377" #"\330\375Xj[\212\37{\301\223\334\203\310\257(\330\24\0\2242\3572cLY" #"\316\331u\335\340\f\264\212?\374\303?\304\217_x\1\27/\336\351}\313m=" #"\254\325_g\310\273vYR\b\"\223\21\35\240\4\241U\317\23RV'e\351" #"~\337\373\323j\20\312\363,\240\261\323f\177f\2031\373\27\301kdc#\340" #"[\332\256><\224\2241\352\332/[" #"\22\272\336\263u\315k\324\200\236\270\36" #"[\327\300\276;\340\265\200\2775a\223" #"S\317P\31\223g\254\276\333C\vY\23\256@\313:K\251)H+\263k\226" #"v\221s\373\235\330\202(\321,\3@RvN;;\301F\374\232m\365\169" #"\5)5\311\352J4n\221\220\234\347E\v\273X~\236!L9S\367{\263" #"\200Qn\t}4}\320'\233lkI\320\5?c\265&\246\367\267L\2333" #"\354\220Z$\221\v\364v\220\356\243Y\231\333\326\3\eY'\3068\215\312jJ" #"\201_\321i\225H\322\335\302\256%2\365\206" #"\a\fW\315@y\0\212\314\220!):\225" ) 500 ( #",\225\2443\r\244u\230\355E\307/\272V\"\201\353\262J\221jh\267\215V" #"\221K\221\266\236\276/\213\333d\4\336" #"\366\"\365WK\231Dk\22\344V\"\370\320\237D\302\2430#\17\322\313_t" #"\343\202\5\255k\32420\234\357\333\3563V\271`;\216X\347\2\350:Z\333" #"1\0b\233\233\355\6;\303\312\331(\243\367k\255\3020\242G\255\2:dc" #"\266\251\37\244S\255X\257V\2621rV\246 !\245\342t\366\254C\0023\250" #"\311\324\21kK\222@2\205%L\25" #"\261\6\373\326\303\3204\214\346\371\230\b" #"\\\253\353\245\b\35`\233~\305\232\365" #"[\217\300\310\4G6c\275\273\2037\337x\3\246\365\250U*\362#\333\224s" #"F)\5GGGrO)a3\2168<<\3646Z\366\352\0*c\275^" #"c\275^\343\225W^\301\367\36{\f" #"`\371\371f\263\301\235w\336\331\243\322" #"\324u_\302\b\215x\363\332U\34\334" #">\302\315\2337\361\344\343\337\303\315\e" #"7\260\273\267\207\203\203\3\324Zq\376" #"\374\35\370\334g\177\e\347\317\235\307\330" #"&\325\1\213Cy\360\301\a\361\364\323" #"\337\a\320\260\273\273\213\234\263\244\352)" #"\341\364\2513\330]\257\361\334s\317\341" #"\257\276\374e\374\352\257>\204\367\274\347" #">l\267[\374\333\277}\37\253U\301" #"\347?\377y<\376\370\343\301\321[\212V\322\fb\364p\366K6\244\260.\255" #"U\20:\310\2616g\366{\255M\310YS>a#\273\256\2102X'\310d" #"\312\230hBj\fV\307\2325\"\215" #"\f\277\1d\1\345\326\213\325\332\f\365" #"\324\arF\232*N\355\235\362\357E``\17\241\201\235qo,\357\37A\204" #"or\222\356\26\343\264E\242\322A\f\365\300\214r\226\221\245\0Z\352\5" #"\224n'\244\343\223u\210G^\255|V\373\314!\247\223\372p\373~d" ) 500 ( #"p\342\277\343\301\\J\301\243\217>\212" #"k\327\256\341\236{\356\301\2313g\360" #"\354\217~\2047^\177\0357n\334\300" #"[o\275\5f\306f\263\301\355\333\267" #"\261\331l\304\26\307\21\227.]\302\271" #"\263g%\220\4\244\307\343$\221\37'" #"\331\363\334\330\367jN\203\372\225yw\n;@J\311\322\377\221xvOK\211" #"R\4\231\26\204DI\303j\265\302\316" #"\356\16^|\341E<\362\355\357\340\307" #"?\3761\216\16\16\360\271\377\364\237p" #"\351\342]\230&\321\235\r\346\b\223\25" #"0\222\366\30\255@\26}\2328v\261" #"-;\304\"\303\327\237\305\274Z\277\307" #",\241\240b\222\24\272|V\327\177/" #"\17\202\245l\302\336\247\252\4\254\265\206" #"\317}\356s\370\352W\377\1\27.\275\37\227.\336\205\315(R&c4\254\243" #"\4\241\267\25\213\276<Sv\320j\231" #"()\344\322\214Y\221\257E\306\321\177\327\212aL\342@zR\332=*.\201" #"e#\3423\211\332Ca\266\e6u\302\260Z\343\3\357\177?\210\b\233\355\6" #"\255\262\263\342\200u\313\231\26\300S`,\300 HZ\331t\222rE\22X\232" #"F\276\251\334)\1:@F$\179\17\263\242\330\310X\2252\314\330\246\230M" #"\210\31\223\345\376\212\300\2643x\360>" #"\253\275\317g\a\tY\350K\a\271\21" #"\310\230\2171{`f\214\315\236\341\311\356\3N\336XQ\234\228\346\327l\r" #"\355~\335gh\260\227T\327^\264\203" #"\202=K\20\271}\306\276\262y\0016" #"\262\32\1#\v\223\2373\210\255\360\213\221\320'[5\b\30ku\324a\r\242" #"\245\314CFkQF$O\2656\331\267\221=\267\347b\262\23[\367D\331;" #"\a\304\375\30\203\24\"\362\340\310\372>7n`\352R\0\333\217b\343\302" #"\324&$\324\324\264k\205\\\307`)w\" \223N\246\233\367k\227\363-" ) 500 ( #"\254\227\236'\361\272\227\362\26'e4" #"\343\235p\322\237\v\271\266\22\254L\322" #"\217\276R\314\20\0\271$\31|\245R\32\2535\21\377m\5z\32\320rCJ" #"\325I\302\32\n\264\227\376\330\t\6\22" #"?\311\346\363\332\274\1\200\257\241\357%" #"\2\221\20L`\240\fE@z\262\0" #"\257\371\372G\351\220\375\337\366\252c;" #"\220\350\367+c\225\213\a\324\4\200Jv|PRNX\241`\n\6c\216*" #"QB\325b*h\324\327\330\36\25\241\241\2T\200f\v\321\2349\"&\5\226" #"#\246\2513\200\346@\342\301\reR\221W\310\311\n\312\212\2(\215XH5" #"\230\203F&\49P\205\257\237\201\244" #"\331\206\326\207k@\310\242\233\26~\327" #"\273\4\214\25\225\31\353\235\2254j_\255;0RGq\353\326-<\365\324S" #"\270\377\375\367\343\302\371\v\370\366#\337" #"\301\277}\377)\34m\266\270\363\302y" #"|\376\363\377\333\f\34\327Zqtt" #"\204\353\327\257\343\334\35w\340\261\357~" #"\17\37{\360A\354\354\356\340\341\207\277" #"\2163g\316b\232\2449sN\t\333\n0L\nQ\360\354\217\236\305\377\374\312" #"\377\vI\273\217X\257\327(\253!\264\365\1>\371\311O\342\354\271;p4\35" #"#\241W\247\336\276}\210\307\36{\34" #"\253U\301z\275\302\336\336\236\256\271\200" #"\310\275\275=\274q\365*\3528\342\345" #"\227_\306_\377\365\337\342S\237\372u" #"\274\377\375\357\307}\367\335\207\373\357\277" #"\37\373\373\373\370\327\177\375\27\274\366\332" #"k8}\372\24$\24539\3\25e/\321\211\212NJ\242\331\315\346\330S\270" #"\362\263^\245]\353\210R\244\350\256\27\303\261J\27 \f\216t\224\4W-J" #"i\rE\35\a\345>e&:s\331T#Z\353\5\24\254\e '\31" #"A][\305\316\332>\273\372\344\261\236\342I\250\352h3\224\371Gg3\372" ) 500 ( #"Ao\221\277j\304K\214v\265S\205" #"\375\333\262\"\202\ff\354\177tz\361" #"\240\215\0o\t\24\315\356\263\217\35\225" #"\303\301\326 \245\344\5X9gl\267" #"[\\\271r\5\337\373\336\367\\\237\374" #"\325\277\373;\214\343(\205y)\341\370" #"\350\b\3234awg\357\377\347\353\335\237-\273\2162\301/\327Z{\237s\356" #"\253JU\345z\352-\313\32\311ol0\36\32\323\r\246#hl\343\31\300\3" #"A\360\323\314\374a\314\374BwDG\320\21L\20\3206\4\343\0K\226\r\6" #"\333\262$\333X%\225dYU\252\272U\367u\316\336{\255\234\0372s\255\334" #"\247\324s#\354*U\335:w\357\365" #"\310\374\362\313\314/q\376\221sx\366" #"\331g\261Z\255\360\221\347\236\303\301\271" #"s\30\206\1\313\325J\300c\222\346\37" #"\361\331\332lD\302\300\327,\236:\34s,5\362'\252\3@$\327\324j\363" #"g\1\207\276\257\355\255\267\35}\337a" #"\275.x\347\235w\360\372k\257\343;" #"\337\371.\206a\300\345\253W\361\231_" #"\376e|\352S\237\222\375\4#\227\26" #"\30\231\332\2059\354N\331\v\207\332\344" #"\261]0S\334:\372\365\267=\220\24" #"\370<\370`\22\266\245X@\350\356\200" #"\355\2217\346\366{\177\266&\r\370\257" #"?\3728\376\367\377\363\377\3000\16:\fA~F\r\22Y2'\333\1B\313" #"JEM\27C\316*Y\315nk\3503\a\351\263^\r\334\373 \\U%\250" #"\325\253J\303\t\234\23o\262x~\r\3\5`\312\30\224\311\342\322\2>f\240" #"l1\222\200\2w\222\354\231\1\205*\245\245`)!`\320f\37\316M%\246" #"\20\264\254\2545\270l\333.c\232<" #"\tb\377\233\225\22\271\314\203\a\255\333\367\324\262T\2315pbTpd" #"g\310@\32Jk\220\255\345\b\316\357" #"\370\363\357\235~\365\251z\345\211I&" ) 500 ( #"\252\305V\257h\214\254\317$x{\315" #"f\213\n)\350\235\352\240\215\350\264\311" #"\345\317\273\32\350\347Rj\311\36A\333" #"ZD\374\267ff\271\344\346\277\273PM\201\244\314\5<Jmh\313\222U\306" #"\327\1\272.6{`\240\313\344\304\f@J\317@\300\244C1d\372f##" #"B\214\2\30\31\325\36Z\340\301vOA`*Z\303,\277f\236P\246\2\n" #"\31\34\322\314\16\vc,\31\21\273\214" #"\\X\312=\320\322\370!\4\261\317N" #"\1\311\217\302\265`\202\213\214\262\265\363" #"M\241eLXK\22\274\275 2\25\236\326\314\332@\2750\266\302\212\16U:" #"\326jW\241\323\335\bE\372_\212\244" #"F\2704\31\315\350\30};\177>\320\2171\242Ls2\200\321J|\374\2356" #"\314F\304u\35L9\307\224\31B\f" #"\265L\323l\344v\0\340\357\203\335\201" #"\232\255G\250`~\320\314k\210\21<f\244i\232\320\205h+6\3u\366r" #"\2036p\300jhY6\263\24\353v\216\340\222\2059\223m@\352\22\246\232~" #"j]\237\306\32XAsT\26\5Z4,S\265T\rA\301\217,X\3\253" #"\365\2008\251\23bW\222\300:\17\31r\241\ni\361rT\321}=\226\311\31" #"\362\2343\206a\203s\347\316\341\275_" #"\274\213\275\375\2533\207ai\227\37\375" #"\350G\370\306\327\277\201\37|\377\207x" #"\346\303\317\340;/K\303\27\21\360\316" #"\346]\334\274\371&^x\341y\f\203\310i\365}\217\2337o\342\353_\377:" #"\272\256\303S\317<\215\337\370\367\277\201" #"\373\367\37\340\245\227^\3060\b\e\374" #"\366\333?\307\215G\37\205\250Q\4\204" #"\230P\362\210\313\227\256`\30F\34\354" #"\357bgg\251)\224\202q\30\321u\35\236y\346\31<\373\354\2638;" #";\6Q@\352\205\t\370\305/\336" #"\305_\375\325\337\340\275\367\336\305\205\v" ) 500 ( #"\217`oo\17\317=\367\234\252\fH" #"}\24\250\303\357\376\247\377\204\27\277\365" #"-\374\360\225\37\342\354\214\360\355o\177" #"\ew\357\336\305\247?\375i\254V+" #"L\323\204\257~\365\253\330\335\335C\316" #"\216\255\200\355\275\327\21m\3$\344\20" #"\312\357\27\213e\255}\4DrM\f\233 \241vi\255\341P\322\260R\237:" #"!$\227\366\255N\264\261\256\336!A" #"\213\236D\373/\210\21\311\214\244J\36E\201\3H\323(\n\20S\212\265.[" #"\322\360\232:\312\fVMb\353\330\266\314G\275\250h,kQ\260k#\34s" #"\311\b\241MB\253\n%[w\315\322" #"p\223\261\273\272\26\276I\316\a\241\36" #"\3203K\343\233B`\220\e\310b\353cF\231(\340\a?\370\1\16\17\17q" #"\356\334y\234\234\234`\232F,\227;`.\270p\351\n>\362\314\207q\355\306" #"\r\354\37\354a\271\2201\325\303$\322" #"\177}\337c\271\\\202\221%\0033\216\350\272\276\246M-\250$\26064\316'" #"\362qap\f\n\2\4P\22\213&o\334R\e0g\357\353>=[\320\367" #"=\336}\367\27\370\207o\376#\336z\353-\334\276}\e7\36{\24_\370\367" #"\277\201\307\37\177\274j\"\e\\\210[" #"\240\304\214-C\246\n2I'\261\237\244\225sS\264\230\201\v\366\245\nA\e" #"\241\232\21\366\357\254\36\265\226\254x\320" #"n`0\250N\25199\317\"\243\264\3465k\2\224\6_j)H\307\356\331" #"\227g#\215\211\255A\34E\20\t#" #"\352\233\363\09\343\0374X\306\354\241\235G!#\f\2403\200\204\30\215y)" #"\260\270\301\253Sx\240@\366g\n\212\353\237;g^m\211\222.\265\26\235]" #"i\27\265\306-\325\fp{\254\r\217$eTV&`\357#)\352" #"\240}\32V\356\364p\363\230=\207\261X\26(\231\235\363\303@|p" ) 500 ( #"\320\205$\243oS\252\251pKG\203" #"\254\341n\276w~\235\255\354\243\246\325" #"e\21+\220\265\306.\24\355\210g)" #"\325\363\353m\317\324\262(\256\251\307\255" #"qJQ|\245\336\313\272\16$\3472\227\f\202\r\\h%\20,\274\48p" #"\235pY\\\243\231\a\355\226\325\363\357" #"\353\317\226\277\3371F\265\0175\246k\353\317\5\31\3228.R{]\r\270\331" #"e\21c\327\325\22\26\220\354\257\375d\202?\377R\252Y&8\300(*\21\375" #"B\312\0$K\315\372{!\307b\222" #"r\212\2343\230\262\236\311\26\254\25\335" #"\27\24\t>\260uOk\360\4F\260\0?\n{,\363\r4C\315V\347/" #"Y\362\224\2324\0270\352\347\b!8f\2312\a\242*\363e\207\247\250?\"" #"\326fC\365a:T\1\5M\233\336l\257\a\347-\260/\0k\23\247\331m" #"\360,\320gf\244\330\243\260\250`\30\346bnM\2456=U\324T\271\332\343" #"Y\26\310\335\a\263\37\226\245\230\264\234" #"\206\0\351\3\210\0211E\304)#\247\0\36'\204.\"Q\221z\247\355/\317" #"\276\372a\3\355Wap\230\233\b\2645x\4\222\231\362\"B\355;\214\341\322" #"a\344\36>\272\305m\265x\222\32\2155\212,\314`\5\2\302\306\210X\2659" #"\177\222\20\245\32\260R&\304Nt\325" #"\254\266\6Pf\2170\213:,\245\377" #"\346\315\233\350\272\36\347\317?\202\276O" #"\265\261F:Q55\225\22\3166\e\374\323?\3753\26\213%\36\271t\21w" #"o\337\326\32\324\16\226\326\263\r\371\373" #"\277\377{\210\3505\341\363\237\377<V" #"\253\35\374\364\247?\303\321\321\21.]" #"\272\204\367\337\177_tL\315\310\23\241" #"\250@\377\311\331\t\372\24\261\\,\260\331l`\262a\200H\211}\356" #"s\237\303r\271D\316\23NO\327\370\371\317\337\301\213/\276\2107\336x" ) 500 ( #"\0031F\\\274x\21W\256\\\301o\375\326o\341\302\205\vu\355,Ep\361" #"\342E\374\356\227\276\204s\347\317\343\333" #"\337~\21\17\36\34\341\307?\3761\36}\364Q<\365\324S\30\307\21\a\a\a" #"\302\342-S\335\243\6\272\2123>-m\342S\345\366g\266Ofxcup" #"\346\330\265\24F\212\260\344\367A\344A" #"\210\304\320f.H4\227\233\263\337\207" #"\20\220Y\304\256\273\330\325I@!\311" #"d3\271\320\32\365A\344\361\272\324!\245\16\247\247'3\246\320\32$3is" #"\23K\204\337\5B!\240\210l\243\234_j\264\245\b\215g\204B(ABd" #"9oQ\"ZP5\264\314<\357P\237J\3\362`P\35\22\321\230Ds\0" #"\r\3307'`\205\374\226j\236\225\t\31\v\221G<\373\334G\360\346[o\241" #"\357z|\350\362E\4\212\270|\371\n" #"\36}\364\6.]\272\244\323\250\344\371" #"\26]\247\3439E\376\203\2155\216\22" #"0\210\204\17\253\3hRC\314\254S\317\244\360)\3319\b\232\342,\222^\6" #"Qu\344\231\2716\250y\25\4\17p}c\251\331\200\373\17\356c\234F\374\376" #"\377\366\207\370\360\207?\214\276\357\253\21" #"\224\262\27R\rV\252\237\261\r,R\214(\320\357\265\367\ajS\206/\1\250" #"A\27\214\tm\366\363\203\230~\333\e" #"_o\346\31\321\n\234\35\340\362\237\347" #"\247\305\331n\367}WS\373\5R\37\330\1\272'T\367\2\360\251\371v\17\v" #"d\270\214}o\3757\364\260t\236\177" #"\17\373\\\331g\273\257\3669\246}\355?\327\234k\e\313.\216R\202.o\213" #"$\373a\240Z\356n\265\317)\242\f\31\205\244i9\6\302dN\220\35\v\16" #"T\366\34\312\240\307\244\300\262\240\332\234Z\216T\2128J-\307`" #".u\n\227\177g\317\216\327u\t\3220\307\272\3761&LJT\300" ) 500 ( #"\366\313\aTj\203\330zY\0m\260}\2701\212\231e\302\250\1\245\20\20\31" #"\30JA(\342\320E9_\0P\261\2737M\0\3153\r\376\371}S\217\377" #"\373\20\2\362h\322\206\236\31l\237ce.r~\t\205\215\355#\5\270\232B" #"\17\200\224\231\264>\25\17d\341\202\270" #"\32p\206\3714T\263\0016\301\357\241\357\217\21)$\fCF\320zT\nR" #"\227\35@\240({/M\307\1\261\23e \346\200\24DNk\252\347WGB" #"\24\261\235\202!l\270\21\315\316s\316" #"\322\214\226\214]/\212S\364\354\5\n" #"\256V\335+\340d\31,\242\2373\233\0\311\215 \22\322\305+\32I\331\207d" #"k,\243%Sl\215 \222\265m\276\313\24\16\352\36O\223L)U\233[\207" #"\305\3243-#\204m:\231g\254\355" #"\274\244\316\263\331\220\f\200\226\251e\35" #"1L\220{\335\232\345\2\nO(\f$\365\5\233qBJA\317\265\372\3\"" #"\300\244A\365\256X\263\251\17\222\315~" #"\325\300\e\0rA\310\214\242jU\4" #"\365\227\4\320(\357\223\307\202\344\215\267" #"!x`\36\1\2\250Z\264\315\210K\332\271\226,\0\255\341@#\356\224\202R" #"\347\254\221\234\31\23V6D\247\251\261\201aKYPu\264$\36\240:\37o" #"\224\1\256\322e\266\311\6x3\17\32i\23r\36jz\34$\321D\1j\204" #"m_\245\0\307\307\307\330\331\331\321g" #"\17\n\274\233qx\346\231g\3607_\377:\316\326g\210!\240_.\361\211O" #"|\2\177\365\377\374%\16\372\3u\214\255F\366\370\370\30'''X.\227x" #"\354\261\307\360\370\343O\326\316\177{\326" #"\275\275=\\\271rE\336\303\34\271\202\264\327_\371\21\226KI\23\257V;8" #";;\3058\312\210\314\213\27/\342_\377\365_" #"\361\337\377\373\2738==\3034\215\270\177\377\1" ) 500 ( #"\210\b\253\325\n\327\256]\303\27\276\360" #"\5|\350C\37\252i\353Z\373S\205\231%:\333l688\367\b\2\1\247" #"\247\247x\361\305\27q\365\352\325\352\350" #"[\27\246\32k\3\n\334\6\203\244$MH\363\22\230qfT\275\222\205w\250" #"\346\354)hZ/gp\26u\201\200\tD\252k\234\265\301\213\333\205\254\221f" #"\260\206,\35f\300\252Q\252i\327\250" #"\314j)\302 \246\230\260\\.\261\331" #"lpv\266\251\6\253\24\235\221\303\333" #"u\257\1\205\2\250\260\262\1:\360\2" #"\342\334\301\322\215\0354\rXr\226\246" #"\0\266\263,Kf\240\316\337;\250\323" #"\363A\3336`\361\221\355\354\36(\210\313\331JJ\f\254\v3`\332\220\3468" #"\36\275~\3\177\374G\177\204\256\353\265" #"a\304\246\5\6\214\352\354\202~\276L\246r,e\320FR\206\30S\307\340\e" #";_G\36S+\e\22S\334\202\3\313 y\300^\230U\233\321;W\247\251" #"L\r\370\e\323\265\177\356\34~\367+" #"_\6\5\302\271\203s\16\320Y\2556" #"\317\32$\332\217\2377\230\331\347ff" #"\364Z\37\31\\\252\370\203\366E\316q" #"\3\220\300\274\254\305\236\337\336\205\225\5" #"\226\317l\352!\315\376<\314\262y\260" #"\351\237\323\376\254\202\b\326\346\34\n\230" #"d\4\2228\260.\315\200\2634\332\252" #"\272\4av\17\215\25\215QR\327\376\337|\20\323\32\224-U\214*\362_\25" #"\220\330\321,\260\34Zs\312\250 \267" #"1x\320\262\212\346\300\355\35\5x2" #"\20\3:\313\234\300\202\341\255\273\241N" #"\234\213\1\210\200i\22\273\25\2`5" #"\377$d\270\0\251)\327\351\213\246w" #"\352A\241\357-\251k\0e\332\2025\203I\200\r\210\r\313\272\266L\26<0" #"@E%\267\232\264X\306\234-o\244\212\364\236\24r\351" #"`n\375\2<\2113\17\32\270\233\35\351b\2\23j}" ) 500 ( #"\245\257\377\264\363\342\313\2|\346af" #"g\370af\231\20\220\242\365`\b\210\220ub\224b\373)\r\300\242q.>" #"?D\2555\345\202\20i^\257J\363\206/\373\252\300\266HP\334\310\24\a:" #"]\251\f\221d\227\374\31-h\231\351i\32\220b\207R&p0\255s\t\250" #"2\227\32\34\330\371\35\307Q\2070u\310\223\21{\362\356)t5Kc\262\\" #"!4@nJ&\3669\25\354\347R%8} \341m\221\33579\213\1\204" #"^\202_\227\355j\31\241v\327\242f\260\211\0\262\201\17`\224I\e\273\fW" #"1\327\254H\265c\225\310\234\227\200\372" #"\365\326\341h\272\336\20\322\203\3466(" #"\27\247\200@T\2777\22\3119\316\302" #"\226\3\3427\3624\211\272\17\254dE" #"\300\2665=\332\363\244\2240\f\303\f" #"\364z\326\237\304\351U[0\346\t\261" #"\20\20\265\211=\6\204\\t\302\v\2502!>z\n\24d\256\3654\3118\324" #"i\222\213\224[\203\221-\276l\216-" #"\216\34lI\201\211QO\311\327\267\310`\niZ*\230J\253y\233\270\210\214" #"\n\227:%\244\226\37\20U\324n\300\334\234J\215\2204\2f\30\323gu\270" #"\2.\352\2245\375l\2734G'G\0d\210\300\223O>iW\0166@#" #"\244\0\315\216 \4\302r\265\302\277\373" #"\365_\303c\217=\206\30\22\326\353\265" #"\246\370\345PMS\306\375\373G\312N" #"\365x\352\251g0M\23\206a\300\335" #"\273w\261\277\277\257\321\eagg\247" #"\256E\321\232\313;w\356\340\365\37\377" #"\30\313e\217\363\347\317\341\205\27\236\227" #"\237\273\\\1\0\336z\353-|\377\373" #"\337\307\321\3211\306Q@\356\205\v\27" #"\360\321\217~\24\177\374\307\177\214\337" #"\373\275\337\303\365\353\327\37rff\270\0\240\353\22~" #"\376\363w\360\203\37\374\0\313E\217\\&\234m\326x\357" ) 500 ( #"\275\367\360w\177\367w\365\302\265s!\215z\2426a\16_J\5\246)\253Q" #"\231\324\321\n\373{t|\244,_\273" #"\30\366y\236%\241\20P\210\260\231F" #"\211\252\211\324\261\1\271L\230\nk\303" #"\200\250\25\260\236\e;\354\223\261u\350f\347L\332t\213\f4P\a%@i" #"B\352{\215\304\tg\353\263\6\302\271" #"\250\354\274\274\177\212I\ft\316\310\340" #"\231\261\22\303#g\\4}5\202\27[X'\225\301\1\240\0\31\r\e\250\325" #"\347\32\203iRR>`\360\1\201\aZ\362\367\302\0\27\20&5\334S\2219" #"\357\5\250\201\225\255{\352\22\366\366\367" #"\321u\t\213~\241\237\205\312\326\2106" #"/\244\316\36\261\215.\16\r\234Tv\240\336\333X\327\312\327sYy\a\2272" #"K\335\e\340\365MA\366N\343\344Sd\262\216\306\336\331;q6M\314\210\203" #"s\347\260\277\267_\367\303~\256\325\3\373\237ikk\373V\214YfR6Y" #"$\267@\215\301k\354F\252\16\5<o*3\343\353\367\3113\252f\e\315\1" #"\314\277\317>?<\264\337\266\16\333\237" #";\3+\372k.2\262\32\334\312\206\266Y2sl9\317e\"\355=|\252" #"\333\333u\373{\1\34\346\234LcT\376>\304P\337\221+Pj5\274\333A" #"\202_;R`\b\206\3268\262\n,\30\263Zf%\t\366y\236\261\24\347\16" #"\367\337\332\220j\362a\6B\200ZGZ\262\v4\30\0\f\24\v\313\353I\24" #"\373\334\20CUG\261\265\2321\261\372" #"l\261K\252\262\"\365\373\221L\23T" #"\236\325J\270\3543\f\374\326\363J\302\222Q\226\214G\b2\69\331}\337b" #"\331\315\306d\22753\240\356\353+\267" #"\203\247m\306\254\262\223\301\325\e\3\b\21\240(\226&&\202T<" #"n7Y\251o\241,\215\252((e\222\21\2634\227\317\362\240\312\326" ) 500 ( #"\317\236\333\257yt\332\320%\267Q\332" #"\246\267o\317i\201i}o\177>\240\243|5\371&5\276A\267\233 2h" #"Q\232gYT;\272\324CT\264\330\255\233*\377\260\260\3069\233$\244h\21" #"\223f\22H\355O\r\344\353\271\0175\263T\337\311\5\"\25H\2(\2311e" #"\31@\301z\26\375>\312Ze\275;&\207HJz(;\253%Q\205Y\6" #"c\240\331\217q\34\37\332\373\3553e" #"\262\233\332J\t\341\264\"\2328\301\303" #"\1\221\275K\321\314\tX\372\237\f\277M\323\4.\214.u\2hY\0245J" #"n\203X\244\237 \3152\20\376\334\370\301D\343\224k@4h)\222TE\222" #"\370\330\20\20B\21g\323\245\204q\32" #"Q&\327a\307\326\215\b\35\305\250s\322!\3512\251/\262NV\333\200f\20" #"j4\240\227i\30\306\31]/\337\247\342\307\01640\274A\27y\e\351&\25" #"\20\314\260\24\224\30\3271O\230\224\346\356\373E\255qA\e\304:_$c\5" #"\212t_[\275\310\361\3611\306q\300" #"j\265\302\356\356n=\4\302\202H\332" #"\234\301H]\207\224\22\226\313\5\236~" #"\372i\234\36\37ij\177\247\36\24\231\t/\365\220)\365X,z\\\271r\245" #"\312\221\334\276}\273^\202a\330\340\326" #"\255[09\35\2001l\326\270w\357\36\206a\300f\263\306\301\301>n\336|" #"\3]\327a\263\331 \245\204N\237c" #"\261X\340\371\347\237\307W\277\372U\374" #"\301\37\374\1\276\362\225\257\340\362\345\313" #" \"\234\234\234\324\237c\200R\16\271" #"01\307\307'\370\356?\375\23\326\233" #"\r2\30_\374\217\377\21\227.\177\bGg\247x\355\365\327\360\243W^\231\r" #"a\260\250\216H\214w\321F\n;\340\25\304\22!\253Q99>\251" #"\200\324\366\301\2275\30\370\240\320\32?\252\301\2k\355\"\252\5(\32" ) 500 ( #"9\"\4{\30=\374\346\354\274\3'\25\34W\3517\3729\1\361\0\0 \0" #"IDAT5:y\232j\0270\203q\357\360>\336\275\375\36&\233\353\315R" #"\317k\2373e\1\357\222\342\2323$\0TBNt\217Ey\300\344\321\346\362" #"T^f\313\34\2237z\376n\30\260\330\16T\266\35\203\374\314\":\251:." #"\31$u\300\205\306\231!\223\25\241\231|\2369;\17\374\222vBShF\336" #"\2D\224\322\264p\353\32\314\231M\377" #".Y\357\231_\267m\207\307,\317k\301@\5\254z.:\255c\356B\250\352" #"\24\355Y\344\30H\366\24097k4\253`B\337\301\247\237\1\341\e3\204\345" #"\267\357\263\347\254\214\230\6\367\326D\311" #"\324\316\230\201\306\226\332k\16\334\356\204" #"\a\224V\276\345\301\2448\200\3719\250%\\[ \327\376\215\a-\2)\e\270" #"\4\270\202\362\355\237c\340\330\257\201}" #"\231\235\360\357\342\35\2544r\265\6\223" #"N\323\254&\373g\254\221<z\vd\r\334o\357\375C\314\236fRX\1H" #"mN\325\375\334^#\17\326\230E\273" #"\233\330\300\222<CQ\342\301\354\204\215" #"\256f\375\36\16\244\303\5\4\245dm\2101f\256\3721\v&\234\17\233=G" #"\341\252\245n@\21n\215K6\375\355" #"\266w\376\234\370\367\250v\200\215\2641" #"\306|>!p\366lY\312\300\344\334<|vl\177+x\325=\364\375\202U" #"\301\"k\0005\312\304,!0\362\374" #"\334\325\204\22\327\377\266g\223ul\373" #"n_\336\266\373\373\337\253b\223?\367" #"\366\375\366\234\245\210\224\251\331n.\255" #"$\310|\302\354\363\334ZB\327\217\325" #"\237\304\250\340\2264\250\202a\215\2\260" #"\364h\310\270\363Q\317\203\4v\312\223jNX\313n0\311\377\224\230" #"\3\344,\214\276\21P\327%sk\3423\320i6\246\202\323\32h\311s" ) 500 ( #"X\366\314\203R\371\334v\177L\336S" #"|\227\24\353\346\222g\222\256\362\367m?\252}u\377m\373\v\273WE\312=" #"@ZB\250\201\3534e\20G\305\21m\234\274\17\300;m\336c0\272\330\312" #"6\252-q\231<\262\22\6\264\362\"\333\363P\30I\313`@\320\201\20@H" #"\21]L\b\254\23\365H\325?T\r,A\t..\222\327\f1j\263I\273" #"\fvY\211\bE_\206\225\245\262n" #"\273\206\274-]\37`\23\263\200\226\232" #"\253\16\322]\272\346\30\0\260D\2621\232\16n\3L)\315\5\314m\261\2\221" #"\36\304V\277(L\305\4dQ,\350\342\2\304\1\201\342\314A\30\35\356\331'" #"\0x\353\255[Us\260\357\373\266\320\6\302\246\214\305bQ#\241'\236x\2" #"\a\a\a8>=E\337\367\350\27\35" #"\366\366v+\200\230\246\1\367\356\335C\214\21\27.\\\304bg\2051g\34\37" #"\37\343\3157\337\4\221\2456\2~\362" #"\223\237(8\266\262\5\340\316\235;\210" #"1b\261X\342\255\267\336\302\235;w\20B\300\365\353\327\e8$\302g?\373" #"Y|\371\313_\256*\t\3030\264b|\307\nZg\265\214d\5\316\326g\30" #"r\306k\257\277\216\v\217\\\300SO" #"\212\322\302\227\277\364\245\32E~\357_" #"\376\5w\356\3341\2633w\226D\r\4s34r\320\1\e\340\36\273\16\313" #"\345\22 `\271\\\352\245h\200\327\32;&\315\22\324z-c\207\314(2\3" #",\314\227\260\312r&\375\20\23\37\321" #"\23\2210\vz\251B\220\324\270\351=\306(\265\251\273\273{H)b}\262\326" #"\206\201\226b7\347\316,\16\261\202S\5p\315@\31\363#5\306\242:!\254" #"\222\355\247g*j\220e\206\345\377\347\3133\35\376\277[\244\v\200" #"EZ\207\20\21\251C \271\213\1i+}>\a\322rO\347\6" ) 500 ( #"oT0(\367U\214JuJ\16l\331\227Ou\315RJ\26(\260\260\\\276" #"\261\3013e\365{J\251j\f\255\351\0215C`M{\302\260+{\243\373\341" #"\231Oq\\m\377\266\327\327\203kQ:i\3532w\314\266\177A\272\221cr" #"\16\245\1\325\224j\325u\5I\333\0i;p7m\321\246d`\214\t\317\236" #"\305\23\3\333S\370\354\f\373\357i\366" #"\203\352\35c\306\354\234m\3\17\373\232" #"3K\363\306\275m\246G\276\3175\200" #"\272\317\363u\314>\250\335f\261\374}" #"h\353S\264\351F\326S:\347}\211\305\a\355k[\347\242:\253R\222\327F" #"\276\313\20\3\5\236\244\315\242AS\233" #"\344\264\213\2715\317m\257\3\205P5\\\355\357\252o\3j\t\1\224]\312S" #"v\3019\327\214\2005*y\366\313\366d\373WY\233R\353\251=\333??\327" #"\244\347E~\236\r\301\360\347\317\357\247" #"\301\265\30\3\202[_\e6`\254Y\3242\212H\302&sv\332\302\364\360\335" #"\362g\325\253\247\370\363\300uM\332\275" #"\360\335\375>s\204\302\263\254\217\1j.\355\216%\5Q>0\363\f;\320J" #"-\254q0sF\352\b\251\323>\2\316`\315\325\31[n\243\353\203\16Q\260" #"\336\211\256\213\22P\325k&\366\276\236m0\nI\31\233\f/\21\ee$J" #"\5\362\334\316\262\234\5c\225{pA;\317\325\307x\"Dl\205\225\2Z\200" #"\n\210\242\22\21AdZ\347g\330\326\335\333po\213\v\213\306\257\214!V\"" #"\250\0@\250\322u\366\357\vg\305\\2p\313\177V\240\200QK%S\224q" #"\361\24\250\6\379\347Jh\332g\212" #"\277\326\200\204\241C\205\200\320%a\353" #"\25\273\244`\357G\322}g\332\274\204JDJP\301\"\351\31\b" #"a\232\6\304\30jz\22a\236\16b\346\332\271\27B\224\222\2021" ) 500 ( #"\243\353m\201'\330\264,\233\321\335\f" #"\2316q\304\371\270@\333X\331\34V\315Z\325\276+\214\20\203^T\3068\16" #"\20V\f*C\241Sw\262\324\330\f\233\215\30FP\235v\5b\24(\363\200" #"\6Hl\362\217D\247m\262\227\375\357" #"\336\341!z\355\272\267\251;\336X\200" #"\31\357\337}_J\27\210\360\310\271s\340\234qz|,\345\t1\240\353\27\30" #"6\3J\3118<|\200\37\377\370'\330\f\3._\273\206E\327c\331ux" #"\373\326-\234\34\237\240\357{\304\30\261" #"Z\355\342\346\315\233\270{\367\2164'\351\320\216a\220w\267)$}\337WI" #"(\213\242\210\b\337\374\3467\361\306\e" #"o\310\373\271\311Z\336\360\310\341*\242" #"MK\1S\311\330\333?\300\255\267d\fg\1\343\205\217}\24\3234\242\357v" #"\360\225/\375/8>Z\343\316\355\367" #"\361\237\377\363\177\301\313/\277\254\216\36" #"\225y\263\206?6\211\22\215X3\0(@8=;CJ\t'\307\307X." #"wj\244\212:2\23`\4\37574;#\201$\365\34\25\\\20Y\303\16\267" #"\24%Hr\216\314\25\20\e\213\5\325" #"\353\353bD\264\372\244\bmj\223\262" #"\234\256K888\300\341\203\ax\363\355[8>9\0014:\264\v\31\325\220" #"\346I\32\5\254\344 \305\350\2-Bk\252kl\2155\265x\200i\16\316k" #"\235\3724#)\220\256\335\301\214\n0" #"\341\214\267w\320m\317\245\336L@\340" #"\4\31\353h\265k\363\363,\367\241\215" #"\223\264\277\213\272\17\326\22\32\224Q\265" #"\372Yo\e\354\214ygfw\314\276w\e\\\2632S\236\3356#)\306\226" #"+\373k\16P\312\373\265t\201\265t" #"$H\223\206\377l\273\23\246^\341\237\th5\305\366\16\6r\305\27" #"\351\4'\371Q\216%\203\32\362\326pi\0X\326\321\34\210\243\306\320\230" ) 500 ( #"\351\366|\315\6\31 \225\206\213\326\350j\313!6\24\263\3654Pa\244@m" #"t\311s[E\25\2004b!\245N?Wo\r\315\203\e[\177c\201\3553" #"}\332\260\255\e\334\317\0\200\246\210\3" #"\264\f\215\375|\311t\314\1\272\317\204" #"l7\337\311\317\362\303z\354]\265\351EAp\3\362\2557DZ\37Y\307D" #"\253\314\235j\331\232\243\264\367\232\324\331" #"\226\222\265\34\2579_\v*\374{\3" #"\230\251\210\330\363Zy\216\225\331Q\bH$\235\344\362&\204.u[ib7" #"\214\306\1\264\371:[0\326\30?\37" #"T\372\347\360\n \322\250d\240\304)" #"\302\330\277\v\32\374\30\377\30\305\357\27" #"jZ\311^\351\244}I\231\215\221@\36\244xr\301\376{\234\306\331;\25\346" #":\6\326\232\256f\340{\v\0\23Z\372_2MA\314\e\205\226u\301\234\351" #"\364$\0X@\217\178\363\244\354>\233\275\230\24$\263\69\342\373\1\240K" #"=\300r\347}\231\204\331\321\n\334\321" #"l\276\355-\203\21\272$@\214\250f" #"\215\375=\261\363\325\330m\241n\207i" #"\203)\217\210\211\0*\312\262[_\324T\357\200\331;\273O)%0\200a\34" #"UOz\2\20+\21d?o\273\251\231Yjy\207a\250>\267\344\f*\214" #"i\24\314\225\2479\246\260`Z@u\273\353\365\234\331~S\323+\17$Mi" #"\\\364\34\240\371\f\2639\266\2076\362\233KS\356\t \4f@\373\v\2305" #"[\350\364\235Y1\bl\252\\\26F8P\f\30\306\241\26\362Z\232\265\36\32" #"u\272\376\270S\275|s\241ta4&Xj\316\ehI\377\317\24359\224" #"\342(l4e\237\22\"\b\343\250u\261^d\235\204f\214QG\23\26\240\213" #"]U{\30G\371\331%\27\4N\2\210r\233" #"\330B\32\351\e\5\16\250\304\30;=\266Z\347" ) 500 ( #"37$\3234\241O\35NOOe$k\316888@\316\31o\277\3756" #"R'\e\276\\,\0\2R\352\260>;\303\356\316\n(\5\347\367\367\221\231\261" #"\336l\360\306\eo`\261\\\240\357{" #"<\361\304\23\330l\326\30\307\21/\277" #"\374\35\304\b\304$L\351\255[o\326" #"\22\5;\234\267o\337\3068\216\370\352" #"W\277\212\247\237~\32\17\36<\300X" #"2\376\362/\377R\200h\234\247\31=" #"\313\25B\304\331f\203q\234\260\350\205" #"Y}\361\305\27\261Z\255p\375\372\r" #"\\\276t\5\204\204\276\353\360\364\323O" #"\341\211'\36G\1\260\331\fx\371;\377$\357\231\272\232&5g\315D5X" #"\242\30U\220ZR9\326\354\265\\\355" #"`\34\a\214\343P\35\245\30\237\t\245" #"L\210\0000\2654\236\325\0\1V\344\17X:.\20a\221\272*\273bg)" #"*\323\2072\241\357d\"[\242\250\201" #"\20j\215m\320\264>\2630\37\377\323" #"s\37\301\275{\367\360\336\273\277P\335" #"\350V\17T\231\23e\372\212\273\214\323dMR\222R\225\306\305nV\306a\6" #"\305\376'\347t\24\0oM'.\3326\203\34C\250*\0\0\327\1\a`\247" #"\240\340\308;\37\\\244IT\2B)= \255y\24=\342\354\312\36T\341" #"BA\3\354\377\35\2506\203n\367\317" #"\257\211\177\6{_{\26\300\325\246*\03008C\252`a\353#\316B\215a" #"\265$\363\306\234\30d\334qP[d\345P\36L\327\273\rT\a\351\231/\22" #"d)F\3302\0221\352\331\20\320\331" #"w\222*\0171\250\335\260\222\23\3\30\6\360\314F\232=k\354IM\201n}" #"Y\340/\266\261\355a)\255\\\240\2" #"\362\20\253\re\266\377\236g\310\252\36\254\336w\2703Tm\246\333\27\21" #"\2157\373.@Z\234\254\334\5\e#\354\331U\337\210\265\375\36^R\313" ) 500 ( #"3\206\366Ed\215\203\333\237\325\0\2449\376\207\203&\1$\322\bl>E\326" #"\302\352\250\333\367I\231M\301T\e+" #"\v\244\214\1:N\335$\243\354\231r" #"\266f$\326`\31\260\32`\377\34\343" #"\330\312\355\304f\2645\255\317_Z\366" #"S\300\6K)\235\376\31\23\325\300\315" #">W\262\240\r\200\371\277\363\251{\237m1\326\n$\244N#\224\32\310\314y" #"\22[L\4\240\325\371o\373tV`gr\207vO\243\313\32\264}l\332\303" #"\265\4\256\314\201\263\337\367z\347X@" #"\276e\204\270\30\264n\231\b\377\256\236" #"i\224\251\247\223L\261$a\355\27008@\364\223\251\5\347\6\230}YR\214" #"\"\231ZrSX\261\347\225`\244\225?\5\225\235\323Z/\230\25j\315\367\250" #"w\vh\244B\273_\376\314\204\232\342\267\21\302r\335ZIS\355_p\231\16" #"YG\1\3316\212\336\310\b\31elA\210e~Z@b\347\306\356C\210\t" #"P\375xQ\eyX\276\315g\314H\377ge\6\366<F\360p1\231\314\206" #"-\314\177\233_\234\331\2%\27e\177" #"x\306\f3\211\344Y\240P\325\31\344" #"\347Iv!\205$\317\343\30{\337\264" #"\235\265\36\327\252\206#\5m\270k\204R\0)\220\326;K\1\1E\f\263L" #"\23\311(E\272\4\355\320\244\30A\231e\"\325\224e\232Y\20\307>M\306T" #"YZI\330\0\273\304\333\21\274\257\23" #"m\v\237\352\241\267\210\244\316_/\214" #"\24\e\213\325\5\221\245\30\307A\242t" #"\350\301W#$\207\207T\303w\22\266*E\224\"\222\26RG\331\" @f" #"\207\27h\332<\4\f\343(\3402\231\201\225\313mL\352\e?\371\31vvv" #"\260\263Z\341\352\325\253 \22\325\4" #"\273\274\243\357\374\4\260\3211\177'gk\20\1g" #"\247\247x\345\325W\261\\.\361\361\217\177\34\237\377\374" ) 500 ( #"\347\265|!\341_\276\367=\374\365_" #"\177\35\207\207\367\361\366\333?\207M\b" #"Z\257\327u\375n\334\270\201/\177\371" #"\313\270r\345\n~\365W\177\25\347\316" #"\235\303\361\311\t\206q\300k\257\275V" #"\3275\353\b?s\374\314\3004\25\374\303?\376#^z\351[\0\30\367\356\335" #"\303\351\351)\272\276\303g>\363K\242" #"\232P\244\21l\261X\340w~\347w\260\263\273\v.\5;\253\225^\324\271\321" #"\264H+J\201\226\224\207\222\2307\321" #"\256\224w\330l6\310\232\262\265\240F" #"\234\226\32)0\342\242\323\213\24Adz\225\0060\344\222\347<*8n\322Z" #"\363C.\27Fj\314\332\330\\R\243WA\257\326\357-\227K|\372\227~\t" #"\177\372\247\177\212\337\374\342\27\261\267\273" #"\367\1\16\333X&Q\376\230\330\206u" #"per\255\371\262\224\21\323\224g\316" #"\333\f\242\261\30\6\354\2549\313\263&" #"\36\274\311>\nCn\22\\\242\345\333\300\3616+\a@dh\270=;Ad" #"rbp\301,Z\32\312X,V\203D\312T\373u\335f\234<\210\367\351g" #"\357|=x\207\2T\311\0325\220P\235E\214(\6\334\320\300\231}\3068M" #"*77WO\360{d?s\233\25\203_g\27\230\e8\1\211\321L)\211" #"\352\200\376w\201\6\34\226\231R-qs\r\36\334m\357\233\1*\17\234l\355" #"\311\234\37\32\373\372P)\a\224\371.\245\202\27\3732\aoko\315:E\220" #"\253L\rte\"\6\200\4\344\266\254\207\260DA?\333\356W\256\272\272~\377" #"\375zZ\363\234\235\1o\17\374\367\e" #"\310\225\375u\365\220dM\313\331\341\a" #"\323L\367\215\257\346@\2151\323\340\215\32iak\35cD\322a\22`\rj" #"\365\261\305\277\265\0:\205(,\221\202[\316\r\274" #"n\263\224\17\365\25\240\235'\271\343\5\225Y.R" ) 500 ( #"b\220+\230\227\237\37\b3\240k>\305\337]\17\324<+:\v \324\266\2" #"-H\366\240\4P\345#\222\346q\20K`\353\2={\277\250\201\223\337Cf" #"\26\204\201VJbg\322\263\200\254\301be\221\225y\365CL\304\237\e\253-" #"\254gD{N\17b\374\371g\305\1\2\254Y\3309\371!\265O\307\356\336\250" #":\343\243+\37\261\347\26_\320\202>\313\236\3265-2<\"\350]'\305\16" #"\262fr?\346\245%\230\235\313\231-" #"\237\331\304\202)\17\315\37\5U\23\201\2259\245\328\330:Y)Tp,\247" #"\331\276\30\335p\214\3204\255\275\315m" #"\344\203\f\2011\225\17.B@\305\240" #"\265\372\\\352\20\215Z\236\252M\225b" #"\233\243*\3\205\212\345b\354to}\260\0\200\n\30YM\271d]\352\231A" #"\250D\225=WT\t?\3\241\222\321" #"\e]\320\300\350\272\36\205\263\224\244\222" #"\a\357\355\276\311\323Ak\220E\264\300" #"\177\25k\220\r\204l\367\2123\302\4" #"i6\263\24\34s\234E\35\303\260\1\243]t/kQgBo\321\361\376\367" #"\325 B\204\231M?\316\200q\biv\271\0011\212\221\255\1\251E\332\343`" #"\222?\245\245%k\220k\3649$z\n\1%K\364f\216\\j\244$jb" #"\275D\246;Y\0\334\325\322\5\204\210" #"\256\357j\312\214\210\360\372\353\257\343\245" #"\227^\302\253\257\376\b}/S\306\372" #"\276G\b\204\335\335]-\261\260(P" #"\243\325(\23\330\272\256\303\315\237\375\e" #"V\213%\376\355\247\377\6\24\21\336\177" #"\366\331gpp\260\207\27^x\1\267" #"o\377\2;\273+\374\360\207\337\307\237" #"\375\331\237\341\277\376\327\377\202[\267\336" #"D\316M\222\353\263\237\375,\276\366" #"\265\257a\177\177\37\3234\341\340\3749\374\207/~\21" #"y\234p|t\\A\247P\374\204\344\244wNOO\361" ) 500 ( #"\346\255\267\360\342\267\276\205\327_\3771" #"\356\337\277\2177\336x\3\367\357\337\307" #"\325\313Wq\351\322%\234\255\327z\241" #"\b\3030\342\374\371\363\370\332\327\376\0207\36}\fO>\371$._\2762\213" #"\334\324\376\200\31\30\vP\0200N\366" #"\367b\304\317\316\316\344\262*\320\\\364" #"=\244\31\243\251d\20\t0\315\343\244N\207\301e\224\324c)u\252K)S" #"e\266<\243\346\331E+p7\327l\306\302R\e6g]\316\205\234\243\335\335" #"]<\363\3143x\346\231g\266\202\260ySD\0!\0051H\221\214\335i\317" #"\21cRu\6q$MO\320X\262\226\236\251Q\356\26\3205'hNo\312" #"\22\\\6ex\215\231\363lHs\312\326p\240\316\312\325@e\5\2121h6" #"Du.\211PS\313fLL\32,\204\246Z\340\177\216_\23\357`\274c\366" #"\306\330\377=\25)\1b\5\3552\264E\263=\306&A\201}\20\375Sap" #"Z\263\241\355\253\375\272\315\2101\267\f\324TDs\264@\224:d0D\e\322" #"Q\207w\2046@\300\316S\b\1y\32+C&\237\337\300|\f\241\366\5\220" #"c)\345\321\346\235\372\262\37\366\234\266" #"v[ %g\267\306\302\272zv\325\257\177\321\32j\250\3236i6\0U\257" #"\2252#\5\311l\260\350\\=4\200\304\0\265o\230\264}\364\200\272\1>(" #"\301Q*Xo\267M\367\0\r\344Kl\21P\246\242Y\334\271\"C)\342\360" #"\254\224\302\276\254|L\2767\324\372h" #"\3737F\3060\v\220\2kJ\324\246\217mi\e3su\362>\2703\201\372" #"\355sl \324\30]\261-\326\214)\317\36\2!OR\266U\212N\3674@" #"T\254\332S\257\243\5TD\263{\vj\300\3062\22\276&\325" #"\0021\0002\377\6\230\r\3700-\323I\355\2514\345\310@\247\\" ) 500 ( #"Z`o\357\310\314\332\254\307\17\275\253" #"\254S\253\331\237\337'\256\317\n\222T" #"\274\325\353\332}\253\267\216\335\310\346\302" #"\"\373U\364\31ry\350\214yR,V&S\366&);\17\26~N\246\263" #"\311\261\263\357]\250ZT+/\262\22\27\271\37\226\361\25\240i%Z0\31b" #"\265\305v~\v\230\247Y\23\256\2259\bA\300\200fZ\306q\254v\312\200\240" #"\354aP\373\31\265tm\256\223\353\203b\317\2703s\v\302\240\331C\26-`" #"ow\305N\264,\234/U\"\202\226:Z&\205\265\221Z\326\3064\370\215\305" #"E\346*\305\247O\244\201l\253\275'" #"\365\e\262>p\177\326\372\261\354]\314" #"\377\30\221$\357\205\232Ib\5\246fS+\230OQK2\205\365\5\vYg" #"\315\227f\23\272N2\312F\374\200\e)\0224\330\212I\207\254\310\261A` " #"\205\20\224\375\24\365\2\20)+\327$u,\262\226\315nF\257^V\240\246\17" #"\3140\217\343\306E\254\202\342\241LR" #"\341\202\4\1\274\2432\250\276f+iS\232\201Wp\1OM\317\260\245\300\30" #"\323d\22-\214\222e\1\247, )\227\2616\314Y\235\31249\246JS\4" #"\247\247\247\350R\217\205v~\36\354\357" #"coo\17\233\365\32o\334\274\211\177" #"\370\207\177\300\372l\215\303\a\207\350;" #"\31\334\260\267\267\207^G\361>\367\334" #"s\370\333\277\375\6\356\334\271\203\267\336" #"z\vO=\365\24\3061cwo\27" #"\235\312W\375\333\317~\206\277\376\233\277" #"\301\217_\373\221\262\271\37\303\265k\327" #"pvv\206\337\376\355\337\302b\321\341" #"\225W^\251\27(\245\204\203\375}\234" #"\234\236\"\347\214\217\177\374\343\370\315\337" #"\374M\234\235\235\251\321\226\211\"\347" #"\16\316\341\306\215\353\30\326\e\234?w^\234\34\241\36" #"\350\302\214w\336}\a/\275\364m\374\364\337~\206\375\203" ) 500 ( #"\3\\\276|\0311F|\357{\337C\214\21O>\371$\26\313\316\355\251\30\323" #"R\n\366\367\17\360\373\277\377\277\252\1" #"\21\t\23\242V\324?L\243\260l\32\\\230X\252\260P\22ES\f\350\27R" #"\252\261\336l\320\351\210d\t\220\264\1" #"\r:\321\247\24DJ\240\230P\262D\231S\0365@2\6\"+\360\25\335F" #"\23\340\27y\246V\376\340Y'\273\234\245H\347n\307RL_\254\234!Fu" #"\0\326\264\320\0004\5\221@\201\3r" #"\246\371,$Z\326\347\314\25\220!X\367\266\325J\n\221)\357 A\34\227\2" #"\204\360\320\244\";\237)\245\n\nm\340\202h\36\212~\3438\216R\26\240F" #"t\0343b\232\263\4Pp\2+\1\23228\210\223@\221\6\207>E\344\342" #"\30z\3V$,}RP\230\213\16n\311\363\256\374\222\333\30H\373\362\306\333" #"\257%\24\340\6n2L\226f\362z\231\25XZ\255\225\232Sv\6\3373\34" #"~\317\223\212\243\e@(\312\276\210\364" #"\214\246\222\241eK9\203\203\n\311\251" #"\321\r0\246[\227P?\313\316\206\177" #"/\360\\\374}\16\210Q\357\262\354I\324\373ciK\236\255\2257\374&=\265" #"\315\326{\26\17\314\r\270\26F\t\362^5\260#\325S\r\1]\247Z\306y" #"\236.\207\215\250\16F\\4\360\343\31" #"i\221\247\23\307->\2419\177\373\250" #"\242@\317\234\177\5\220\314\240\0lF" #"Q\367\361\1\3224MX,\26\232\305\203\366{(\353\30\223\202p\3713s\346" #"\366\354\2664\"9\245\3E\6\227NG\v~\354\274\330\32\316\367j\276\247\6" #"n\r|V\37\27\223\b\353g\271\267\204\5r.Xo\326r\277\243\226\340\310" #"\216\324F7\206\324\31\372\200\254>\v\3173\2\263\277\323;WC" #"\211\302`e\262\240g\270\4\26m^=\257\304@\236L\355@\0" ) 500 ( #"\230\324\253\26\24U\227\310\305i\37c" #"\213\235/\5\243c\211}\337\3\324\274" #"\203Y\a\310\20\310\331*\3\247S\221\372h.\23(\246\252\324\24\230k " #"\245\t68\203@\221\224\244\20f\265" #"\220\4\342&\343\26\20E\36\214%\213\346\201x)\31!YY\31\325s)\266" #",\325\300\235Y\2624\24D\362Q\320\236\336=-_\b! R\252A(@" #":\220\205\200\242M\306SVR!\326" #"\300\247\344R\263\206\242\226`\254-\241" #"\353Z\360\342}\221\5\266)I\272\336\2\241\30\342L7\266a\243\214\2563[" #"\202z\357\0\255\221\347R\e\327,P$Um\210i+\373\22B\235#\20\250" #")\324\244\330TGlJ\240\331\6\326\306:\n\251\3726{6#G\263\262\312" #"\3238V\237@$\302\1\0\201b\250\254uk\276\327\246B\347\a\275]\217)" #"\312\30t2;\215\np=)\345\355V;\223E\2116\0\t\222N\f\320K" #"\22Z\3015\251\223&\2106\2361R5\2q\363\220g\2068\370\372\240\2@" #"fz\203\b]\354\301,5,\276\350" #"\277\202\237\212\340\265\1A\235\223o\214" #" \5\0242\210\324d\271J\253[\243\330\34\35\v5>\fk,\26\253jD" #"\26\213\205D\266=\360\203\357\377\20\267" #"n\335B\316\31'\307G\370\3067\276" #"\201\a\207\207\270{\367.\316\326k\354" #"\357\355\241p\301\361\361\tV\253\0350" #"3\26\213\0056\303\32\273\273\273\370\342" #"\27\177\e\177\373\267\177\213\357}\357{" #"x\376\371\347\300\205q\260\277\213O\177" #"\352\223\370\307o\275\210\203\375}|\367" #";/c\321'\\\272t\25\237\374\344" #"\307k\231\3038\16\370\302\27\376\35~" #"\355\327>\217\273w\357a\30G\274" #"\372\372\353x\371\245\227\321w\35\326\3535^y\345\25" #"03>\367\271\317aww\a9\313\273\236?w\36_" ) 500 ( #"\375\312Wpv\266\306\325+W@Dx\357\275\367\260\331lp\363\346M\334\276" #"}\eo\277\363v\215\266\272\256\303\v" #"/\274\200{\367\344\335\256]\277\212O~\372\23\365Yd\317UN$\2@\301" #"P\n\242\226\1\250\235\303X\204\335H]'Q+[gh\254\365S\26\261/" #"\227K\2547\eq\b\325IQ\275\240\365\342[\20\303\222]\20\360)\27\2\20" #"\246\37l\232\264\245\246C\204\371i5" #"|\355\363\347\254c\r\336\2!\327F" #"\37\3024\252\242\3\270\32/\237\266\224" #"\202\370Vc%\27\310\213\350G\275#" #"\226\364\222\356d\371\232\263T\366\31&" #"\315e\215W\306&z\26\215Y\347\315+[di\364\20D3\230!)\377\234" #"\v(\00212\"E\220\352\375\ae\363,\0327\243\245\211q\221\rT\346 " #"\306\356\241\24'\1(\324D\324S\22p]\307\23\353}e\4\5\324\3634\275" #"\a\271\17\245\332\324F\314~\0365\247\233=(%\350\220\3zh_\375gS" #"\220\347(\245\324_-P\251c\237!\314n\346\326<+Z\247m\37\f0\224" #"\222k9\225H\3400\224\v\200u\253\213\2363\252\235,lut\255\16\367\203" #"\301\0260\216\23\272\256\2379<s\32>h0\20\355\311\4\314\326A\203<\310" #"\0314F\270 \243\217\235<W.\325\16Z=\261\374\333\26\264X\311X\225T" #"s\373U\233$\213\1O+\257\20\247_\35ya-\361\220\264p\221\27\250j" #"\32A\317\325\304\6fc{\336\302\b!\351\235.\332x\3232\214\362\345mF" #"\v\224\375\377J\221\301\f\22p\267IS\3361\332{u:\34\244\353\fT\313" #"\277\357\373\36]\327\341\344\344\4\3438" #"\342\360\360\20\267n\335\302\341\341!B\b\330\f#\336\274\371\26" #"\36\177\374q\374\346o\375\a\255\367-\325\27\332\340\r\313x\25\245" ) 500 ( #"\320x\213\3353\37\347\373**\270!\2\221e\a#L*\251\24\1\232\255\367" #"@\200a;\17\232e\235&)\30\b\204@I\373\23H\24\211\311\352s\e\310" #"-EuO\335\271#\r\210#\311;\211\f,U\20\356\3578Hl_\320>" #"\a\361\345z\276Xl\216\225\223Yy\211\261\245e4@'gK\202bT?" #"o\1S\341\\\331\323\372\363I\232\242" #"\32\350\261!\16r^\204%\317\302\322" #"\346\242\322c\242\344\302\0x* \221" #"\263\257\343\206\e\201\247u\252z6P\32\376\331\306#\2V\205v\257\214uh" #"\3\271\274\2\222\331=\313\340\365\261\253" #"\377n\30\206Y\340E\232E\261\214`T\233?\v\334 \201o\316#B\22;" #"\200 \303\223\206\251 \351\331\21?\342" #"\232X\203\334i\224\"\323\323\24GY" #"\351\240\335\261\20\264I\37\215\210\361\357" #"c~\315\236\207\222\234\375\30\324\177q" #"Q\255\334\271\237\360M\211\376~\326/" #"\"\35%\257\352\30@\325\320\365v\265" #"\256\3\267l\242\5*\314\214\224\225\315" #"\2229\365\342 \254\326\204\b\230\362\0" #"f\322\246-\251\377\361i\a\333D+\356O1b\32'D\25V\216\241\3\242" #"\200\210\234[D\ap\35\251i\206\310;\317\306\320\310btI#:5\261\226" #"\3421\240c\322\0376\356.\363\250\r" #"s\244\254/a\34\31\357\274\363\6n" #"\335z\e\207\207\207\270wx\b\204\210" #"\365\331\2314u\351\24\223\263\323S\274" #"\372\352\217P\306\214\325\316\n\327\256^" #"\305\2437n\340\261\307\36\303\237\375_" #"\3777NNNp\351\322%\351x\324\250\352c\37{A$\306\372$\fq\327" #"a\234\n>\367\313\237\305\e?{\3\17\216\216\320u\35\36y\344<~\345W" #">\203s\347\316c\275^\353f5\347\366\310#\347A" #"!\341\325\37\275\n\346\214\276\337A)R\373\373\322K" ) 500 ( #"\337\306?\377\363\277\340\321G\37\305\271" #"s\347\252\223\270\177x\17\245d\f\233" #"\1\353\365\32\233\315\6\353\365Z\3265" #"\20\16\16\16\260X\364\370\344\247?\203" #"\v\27.\342\251\247\237\300\237\377\371\237" #"c\261\354\360\253\277\372+\232\252p\340" #"\20\5Ag\232\307\24e\373\202;H" #"\321\201\322l\277JsK\327\265\264\232" #"\275S\37S\325\225\265\322\0023h>M\\\1N\264\210\321\204\266u\34$\t" #"SZ\270\240\257\365Sr\21\345\200s5\226\3369>\334\341k\316:\210\a\"" #"`\234\262\310\306h\235u-\307a\321\0\224\264h\250\16_H$\313t\240^" #"(&\2\aM\3610\320\312\25DE\243\353\372Y\252et\201\2439\273\232q" #"\260\213\\\237\273\201Ab\251Y\317:*\27\220\24\24\2\20\212V\23+P\234" #"\264\326~\6\f\r\364\307\244\0\261T\345ic!+\303\nH\3529\211\0\267" #"\261\206\26\234\324sa?\313\325\17\326" #"\333\316\232\2D3D\336\270\325:{" #"j\3512\323\270\346\2\211\310\2515L" #"\231\223\251#\224\231+\233>\345\\Y/Sa\r!\350\244)\1h\25\200\24" #"\6\347VW/\254L\1\2#\366\235" #"\374\275\326\6\226L\312\224\3256\a\261" #"\223!\325:LQ\201@=w\266\327\266\356\333\200\37\260sd\300\244\251*\0" #"-UX\31\267mG\300\\\317^\fA\324h\364\374%uh\254\345\t\254\207" #"r\36\244\315\3\rc\350\341\376\214\231\353Hf\1\350\343l\217\267\35NM5" #"\352\347\331\231(\245`\202\260\364ej" #"\276f\232F\304\250\223\17K\326,\211\2573n\214\253\aV>(4-c_" #"\207\351\233~\272\256\253\276\301\202\266\243" #"\243#\274\363\316;\30\307\21GG\307899\306f\263\301j\265\302" #"\255\267\336\302\375\a\17pzz\212" #"\273w\357\242\357\373\n\200\215\325N)" ) 500 ( #"\342{\337\373g\274w\373=|\355k" #"_\223\300;\264\t\241\25\324\220i\371" #"\362\354\354\22\211.\274_cf\256SHm?RL\265!\tz\306\3\202\230" #"\257R0fiz\212\24$;\301\5\244`\30\252A\37C\250S\325\262J\203" #"\326@\325\257\255\vr\262\226M\201\319\314\317\211W;\25146+\373\251\3" #"\35\300M\27\337O\260\263s\263\2359 h\31A\316R\252@R\323Y\264T" #"$\332\324:\373\34\275\323L\326\342\306\258\373\0061Yo\271\3F\0260\"" #"B\314\200p3\260r\204b\357\243\276" #"\245\24\251q\320j\4\24\266Z\375\371" #"{\324\263J\20\366\272\202\377\342\326\271" #"\324{X\317A\214B\220h\0\323\356!\334\363k\337\311\26H\6\251j\t\244" #"\271\276pV[2\17\352b\f:\215\350\251d\0\0 \0IDAT\351M" #"\bK\226\331\322j\333#\230\332\320\34\v\272\230%C.\303[\324F+\223\352" #"m\231e\345}-\273\1\336\30ce\377\3EL\343\b\331\26/y\332\32\267" #"}I\207\371\351v\300\324v\232\341\266" #"5\200d\255\340pc\263\21Y\325\213\bI\370;\215\274)\202\2225\203I\232" #"-\4)h\226\214\270Db\26\5\372\302h\333H\0012\254\24\265n`\26\255" #"I\2211l\21\200/\310\366\315\23\236" #"\341\260\215-*;f\216\260\262\310\272" #"\370\262\310\21!)\257\246\213\24u\243" #"\3061\343\277\375\267\277\300{\357\335\306" #"8N\350\373\36\313\305\2\233qD\311" #"\31\313\325\n\253\325\16>\364\241KX" #"-\26(e\302c7\36\305\371\363\347\361\364\323O\3D\0306k,\227KL" #"\323\204\275\335\35\244\20p6\16\210\251" #"C\214\v|\342\23\37\253`\302\30\322\v\27/\341K_\372]|\363" #"\233\377/\236\177\376y\\\272t\t\327\256]s W\232\367\344\235[" ) 500 ( #"y\306\375\a\17\260\\.q\260\277\217" #"\v\27/\342\247?\375)J\311\350\373" #"\0167o\336\254\353c\6\321\346\267/" #"\227\v\344\234\261\\.\261\277\277\217G" #"\37}\24/|\364\243x\354\361\307\260^o\320u=^\375\361\253x\360\340\1" #"\236\177\376y<\366\330\343\32\331Y\a" #"2\364\367\5]\212\320\20\252\246\270\210" #"H\322\355\25\240\24 \373\332\263\326\254" #"b\27M\246\262d\364\372\236\262Fs" #"\235M\357\304K\236\320\205 \223\320X" #"X\205\300\4\204(\214\220\312@\1\204\24yvIZ\271@c\375, \253\345" #"\6\271`\321K\3321\253\36o\337\245Z\336\342\235>\0055t1\2701\324R" #"\272\321\"HI\271\n~l\214\221\234" #"\333\f\353:\207\32m\337\354i\353\343" #"\215\262\a\200\314\214d\240\317\255i\5" #"O\225\361\0\20\"\3062\241\243(N" #"\215\2506\216\330\372\330}\202:\324\234" #"sM\267=\304\212)(\314\5\240\24j*\2771\373\\\21\275\315a\367\31\32" #"\357\304\354}\252\240~]\37\371\373N" #"\203\336\312\254RktD\224\0\211\370a\25\200m\2405\271\367$\211h\264s" #"XY\1H\315\26\a\351H\26c\333:\315\205iV\3401N\263\365\360ll" #"\b\1e\2324p\347\352\200\275\1\266" #"\363\261\375\345\355f\316\223\3349\322\22" #"\24\307J\230}\24\207\321\352\2}\252\330\237qc\336\315n\227buw\r\34" #"\330\347o\3\16\253\17e\315\36\4\27" #"t\265\324\351\244\365t\251\376\271?\263" #"\321\201'pk\232\364\3>H\221D\20o,\301M0\201x\263\331\241\226N" #"\245\24k\272\226\210\260X\364X\257m`N_u\310\247)\327{\16\0\257\277" #"\376\272\226D\310$\312\365z\215\223" #"\223\23\234\236\236b\34G\274\373\356\273ub\345r\271\300" #"\311\311\261\202\v\302j\271\24\211H46{\34G\214\343" ) 500 ( #"\210\315f\320\221\244'\330\331\331A\311" #"\5\237\375\314gD\335$\210\357L\225\31\3\306a@J\35B\20\37\346\3\2" #"\333\333\17\274\327v\326\200\32\230H<" #"\315\225\35\5t\f.\264\301\aB\232Pi\231 !\372t\337\35(\313\245\261" #"\311\306`vj\37}\312\334\230x\220" #"\224`p\326\300\317M\300+\205\320\365" #"\0216\235\313\210\250\222\r\300\322C\266" #"\300Jyr\236\324\16\265R\32K\315" #"\243@\352\222\365\347\330\31\352R\302\344" #"\200\262\334\251IH\265b\1E\363\t\3663\255\224 \24\2A\374@\200\332+" #"\24\r\4\374\20\34\210_%\225\221\324" #"D\212`\17\252\366\3167\324\225\242\347" #"\236\264d\214\t\336\a\331\235\267{$>\267e\261\3475\332\315\37\2252WL" #"\2505\202\244xL\233\320B\334R[\252\366\307\202jX<\240>\311\6Y@" #"3\177\f\e\2F\201ks`\321\262\b;\243\255\266\332\32\315\346\345$1\210" #"\356rFV;d\1[\363\255\300\303\r\273^\215\303\366\257f$\231Uc{" #"+\360u\3301h\351Y\6\243#!G\v\263\324\350\226\"5D6\246S\352" #"Z\206\32e\247$\314\227\261\276M\316" #"c\24p\314\206\372'\4\352E\316\201\254`X\16\3100\f\350U\322\252<t" #"H\37\326\254\265I)\365R\250h{\2611\202\332p\21\202l\356z\263\221h" #"F\340\270\376;1\22)%\364\275\0" #"\300\315f\215\213\27/\202B\300\271\203" #"\3\364\213%>\366\302\vX.\27\330" #"\331\335\225\206\271\30\321w\v\304$\35" #"\217g\353SD\255O;::\302\245\213\37\302\223O<!\a]\215\205=\273" #"\337,;p\27/^\300\37\375\321\37\325\367\261\b\b\3659\233\376\244MW9" #"\274\177\210a3b\265\263\203+W\256\340S\237\372" #"\24\356\334\271\215\37\376\360GX,z,\26;(" ) 500 ( #"E\6XHC\5c\177o\17\347\16\16\260Z\255\360\304\23O\240\353:\234?" #"\177\36\3034\342\370\370X\215\16\343\347" #"\357\374\34\3230\342#\317|\30{\253\35l\306\1)\bx,\266\202\304\n\312" #"D\303\224\225\225\214\n\376\362\344JX" #"H\214\26\205R\353\303\266\235\351\242\353" #"\260\331\f\225M\261\306\20\2730s\347" #"\237\245^<H}\265\214\233\225\e\312lu\201\23R\352\204\0211C\232[\331" #"\215\200O/\227d\27\213\21\272\210a\330\0a>Yh\312\5\24\346\0031\352" #"\2645e-\2u\0L\16\312\322\251\5\242\36\"\262x\344\246f\311\345\267\6" #"\2349\2531\345\254q\204oX\233O" #"\252\261\302\a\317\256\315\234 \244\341\252" #"\216\332eB\t\22\261\333\0\0302\366\3\230\31\t\17P\3061#t\2519\251" #"\312J\211\261'n5u\346\222\254.\320\272r\375\324&o\250|\364o\201\240" #"g\0\252= \235\34\4\251\375\eKK\347\3333\265\232\265V\22b\1D\316" #"C\5Y\266>\201\250\r\225\0@\n\374\305iY\251\213\262\274nmb\214\265" #"\276\325\a\31\25p\230\32@a\200e\37m\262\332\366>\222\32`\270;13" #"\362$u\313\221\250\226X@\327\25\n\24F\36\20&q$\3366\332\317\362\367" #"\207s\256)X\17\234\210\by\346\374" #"P\31\230\31[L\244\351\374n\366\274\6d\r8\325\373o+\310*\361\246g" #"\233\211\320\305\210\211\b\221\31\34\204\250" #"\350\222H1\372\224\3718\216\30\246\t" #"\e\325 \177\377\375\367\325F\312\336\234" #"\236J\326\355\364\364\4\307\307\3078;" #"[\243\224RK\t\274.\272\235'\373\337\331\331Ym \366v:\347\202\a\17" #"\216k\r%3\327\201;\253\325\n\327\257^\303\271s\347p\375\372" #"u\354\357\357c\275\226\237\271X\364" #"\230&\306k\257\275\212\237\377\374]" ) 500 ( #"|\344\331g1L\243\324\232RK/C\263@dL,\34{\351\300\302\214)" #"\325\275\260L\305TF\24\16\210\321\262;zv\3\251Nm\254\240\327.,\251" #"\217i$Qc\340\352\200\vF\315\24" #"\201\31}\352\352\263\371\363@D\200\252" #"\330\304\30AI\357\254\1a\210^\3678f}G\r\216\247\\YR\17r\375" #"\363\230\312\206\244\345\265\317\246\330P\20" #"\6(!\347Q\e\310\344\254t}_G\34\267&cU\367`)%\2\3e" #"\32]P,@\261\5 \f\242\242i" #"\365\346\253\214A\266\32\363<\266\240\267" #"\202}\226\372f{'\273\207v\aS\227\244\211*3\270H\35>\5\31S\233" #"\202\350e\223\202\343\266e\\\265b\267YM2\300\\\327\315\200p\0q@\212" #"\35\230J\365\307E\31xb\250.r\226\1\vA&\337Z\260jY\\O8" #"(\225\211\222\25\327Q\304P6\0kS\260kD7\273\22c\322\f\201\312\272" #"\352 \26\316\214LR\313\36\t\310J\235[\3\241?\23\366\f\301\30{\16\302" #"b\207T\225\"|\360a$\2511\302\225\230Bk,$h\340\247\366,\325\310" #"\34\0\"!1!\227\t\313\345\n&p\236s\221\350\312]\f.\245\326\227I" #"\317\30+\b`\210\304\n\300L\230\234" #"\326\3560\214\25\4m\263\36\336\30{G+F\303\272)Yd\243\24lI\304" #"\0320\16\223\2\"\324\32\"}\277\352" #"\34SJ\370\303?\374C|\367\273\337" #"\305b\271\300\215k\327q\371C\227\221" #"\372\256F\262r\330\t\304\31\231\245\240^\6(H\31BJ\t\217?\376\30\210" #"\2>\374\341\17\v\360Wg\267\335P\344\r\327vQ\271\217|\32E/\3534" #"\f\23\b\204O|\354\223\370\213\237\374\5~\372\323\237\341\3157\337" #"\304\247?\375i\374\372\257\377:>\376\361OT\307\260X,\344\202" ) 500 ( #"M\242,\261\\.k\267\261\375\354\323" #"\365\331\214\205\31\247\t\207\367\356\342\306" #"\265kx\342\311'q\266\331\210\201!" #"\223\237\22\211.\246\200\261\f\310\314\350" #"(\240\30\303H@\36\247\272G1J\332$R\3044\t\240l\227@\212\352w" #"ww\325p\347\232\366\364\315\27\376\302" #"\327\3-\336A\f\17\221L\345\v\2NH\r\350\230'\204\220\252\364\24He" #"\316\0\20%\304\350\272\324\213\244\234\202" #"\266b\262\23\262\266\303\"\37\21%\335" #"T\242\350r\302\346\312\267\262\210ij" #"\345&1J\246\215\310\352\230\"L\"" #"\311\272c\345y\347\300\256\6v\3169" #"\373\16\334\232zr\200\302\316\16\21a\320F\264j\244HX\337\310Z\207J@" #"\340\b.YvTk+\331\255\2651y\226I@\221\324\273g\235\f\364\3155" #"\231UW\221\244#\202\241L\252\31\26" #"\367\274\366\374\236\251\366w\337\276\202\262" #"f1\4\1\214\n\216jT_S\371\374\320\24%@X\30067\240\235+v" #"\317b\30\217tLl\340\246\233mA\224\17T\r\230\242\224\252cL@m\"" #"4v\273@\2339\212\16K\0014Uh\3Od\260\205\277\2273P\35\2(" #"\2123\311uO\324\226\24aV\2\b\320\306\243\226\25i\rx\26\270\220f[" #"\254\24\304\276\207,Pp\216\331\327^" #"\va\20\353\363\22K9I\351\272\332\0k\3776\246$\177_J\275C\271\24" #"\344a\300\270\331\340\376\375\373X\257\327" #"2\\h3b\30Gp)\230\230\261\350:\334\275{\27\17\36\334\307\373\357\337" #"\301f\263\1Q\300\224E\t\245\357{" #"\f\203\4\304\247\247\247\0\200\253W\257" #"a\265Z\342\27\277\370\5vvv\0000NNNp\376\374#\3109\343\350\350" #"\b+\225?<::\2\21a\265Za\275\226\f" #"\334\365\353\327\321u\35vvv\260\267\267\207\234E\3" ) 500 ( #"\375\306\215\e\330\335\335\307j\265@J" #"\t{{{\355\336\1\265!\320\263G" #"\376\256>\371\344\343`&\234\235\235J" #"\311\226*-\20\221\330\341\0t!\325a\25\320f0\320<k9\a\em2" #"\e\0P\210\240\"\315\267D@\231D\256Jj\330C\263\37z\216\200v\247|" #"\r\251}\366\366\275\361d\203\235!+" #"\371\250~:7\220\32U\345\301\352k" #"\313\224\333\250m\265\241\214 \303(\230" #"a5\343\37\4\350[\37G\202\215\357" #"\2161U\306s\34\a\315\302\t\300\264\340\223\231!\t$V\206;T{T\t" #"\17\2221\277\306\354\206\300\252\264$\317" #"d\201\362\244\345,)D s\325\371-\352\333C\21\322\244dFL\1RC" #".\314\257|FcL\211b\0357\35(!C$\336\304+\21\230\204,\332&" #"\371\314.\230o\260}\3628\242\6\242$\317\230t\37\vO:`K1L\21" #"\255o\0\3224\27\254\301\e\365s[m-a\234D\303>\4\vQX5\226" #"\205\3141\2#\204\4\250\364(`\312" #"\26\1\323\330@\267\225W\b\270\326R" #"\215\261(\201\242YYw\316\355\275\215\224\f\301JB$t\36\306I\6G\250" #",\242\235W\0374\t\201\332\317\356&\25\31\326aer\34386\240K\08" #"\3\254S'\314\330\20\b\24\244\216\254LZp\316ra\255s\321\352o\254\204" #"@\242|y\330y\0016\353\201\240z\310|\235\206-\222]\202\6~\265n\216" #"\331\261h:\305\204\263\226*0\202v" #"\361\331\2271\f\314\"-\263Z\255\360\205/|\1\3234\241\353;L\e\31{" #"<\361T\17Ys\212\4\323\247\310Yj\234\20\3\376\344O\376\4o\276\371&" #"\226\313\245D\265\24\30047\204\236\305\362\27\332X\0223d\376\220" #"\317\16|H\370\370\247>\201\3537n\340\215\237\375\fD\214g\237}" ) 500 ( #"v\6\202\226\313e{V5\240\3430\b8\327\364\221\225v\330g\333Z\377\332" #"\377\374k\350\373\36(\5]\210\30\205C\223g7'\2363\372\220\2643S\232" #"\265\202\26*Q\231\353@2\263\210{3\267\bX/\352b\261\300JY\347R" #"2\246a\324\211om2\230\257M\265\257@\22(IT\246\0\215\3Bt\f" #"`\f\32d\4\344I\305\374\363\240\240\325umj\4k\23\346\254!)\22a" #"4\347bA\26\bD\35\2460\"\"\n\223\35\250\31\17\26p;M\\?\327" #"\276\244\271\t\265\254\302\at\376\367\336" #"\211\204\20\20\25\270\3725\2255\260\306" #"1\270\237\241\251\376\230td\262d\25J\2612\2\350\0241c@\v\26]\252" #"\265\321\236im\354\215\vv\251\355\237" #"\355\207g\207,\232\266\372+\4K?\267n]\e\3260NR\202R4\200\264" #"\206\276\nB\271\325\353N\343(\365\375" #"Z\v\232\213\310\202\311\330\3479\370\267" #"\310}\346\214\355\274\327\300\311\230\177\257" #"\3\253\335\303j\344\3E\5\366\16\230" #"\243\201\20c\325\354\3473P\325/L" #"\336\306\263\262>\315[\3659\355'\353" #"\337\347\"\322E\234[z\231\1\221\325+R'\r\3\231\312x\345QR\370Y" #"m`J\375\254F6\227\202>\250\374\\\221\246\222q\34\261\273\2677\223s<" #"U\340\a\0\307GG\350\273\16\247\353" #"5\36\350\357\217\217\216\360\356\273\357\342" #"\344\370\30\23sM\371?x\360\0\353\323Sy\26\311y\202\30\309c\331/" #"d\257\364\334.\224\374X,W\2101\342\344\344\0041\6\221.$B\36G\\" #"\273r\25\0p\377\336\21\226\253%\206aDHr\236\307\243\1\243\e\5>M" #"\0236\2335n\337~\0171F\34\35\35aww\27\375B\300\351" #"\215\3537\260X.`M\257W\257^\305b\261\300\301\301\1vvv" ) 500 ( #"jI\206\235\25\3\277f\227\255\361\a@\325+\367l\271\335\23?\301\315\2u" #"{7k\276\263{\24C\22\260Pd\324l\5`\272\327\4!\25\30\363l\246" #"\375<\273\3\254g\263fr(!$\222\251Y\216)5\265\0\273\273>h\336" #"&XZ\352\273}\265\262\2579\233hw\324\2021\373o?i\253~\21\200h" #"\365\264n\240A\227\244N\330\210$`68J\236G\312\35c\354\1hiB" #"\236\220\272\276f\b\215\320)`\210\3511\302\203\244\301\tT3XP;`2" #"x\262\26\271I\26\226V\307^\231\363\251\240\353;$f!P( v2\214" #"\200\231PH\344\252\344\216\205\232\376\317" #"9+\320j,\265\244\322\347\215\247\231\263H\254qkF4\273\32\243\252\n`" #"\216_*\31B\244\362q\22\360\6\212B)\4\351\245\1\34xT\373CD\210" #"\34\252\214%A\364\243\247\2225s\246" #"}U\240Z\227m\30\217(\200\242\4\360,\372k\240D\2525,%*93" #"R\242\312\36\24\a@\255Y\f\220\22\216i\232T\26l.Ai$\37\263\274" #"\253\5\226vVMFOT\37\272\31>\260\363W\2034\350p(bt]\302" #"\250\212\23\366L\311\"{\251q\211\310" #"\223Hs\265\24\225\\\314<\265:!\211\222t\274_\221:GdFD@\350" #"\222\246G\244\316\227\271\250T\206\244p" #"\375%\333\276\340\376\317\353\237\21a\32" #"\306Z\340\35Hd^r\316\330\214\3" #"\372>\201T\244\273\326\2459\a\344\35" #"\244\261A\0\244\376.H*\310R\351\266p\302^\tCd`YF\24\313\337" #"?\365\324S\265&N\30\316\\\247\303" #"xp\273M\321#\264\310\254\201\377\371" #"\341\227\340\"\3\205p\341\221Gp\375\332\225J\335{\26\316\336\321" #"\277\2471+v\320AV\300?g\320/\\\270\200a\30j=#" ) 500 ( #"\270\200Rk,4 k\200\2436\f2;E\214\366\354v\321\214\2012&\226" #"\25L\306\30+\343\262\331lj\224\345" #"\353-\267\237Q\f\246\310\315\330\317k\2214*#U\270@\2109e`)!" #"\304\371\32\327h\30\261^\362\250\227\336" #"\32%JnM\231\211\b\221\243J\333" #"\250\252\1\371\32W\211\362\345\375\1f" #"\211j-\rg5\271\376\275\266\231\225zi\35\263\346}F\e+:\377j\214" #"\252\324\233\2112\200\325V\1%\0\304" #"\232\272\246\200.\231\234\220\325\b7G" #"\327\f\216:\365\0Pa\220\311\346\240" #"\235\177\240\31\366z\246\203S9\210\261" #"\202\331\314\302\376\t\243)\301\251\310\316" #"\210\203\362)\360\352\20+\273\243\323\216" #"\202H\232\301\376\336\3564Z\312\222\334" #";\24=\267-\e\324\234\204\17^m_\352\257R\17U\35b\3243\340\357#" #"k\32^\344m\204!7r\240~\256\253\323c\5E\346\330\263\276G\nRw" #"\36S\204\n\335h\232_&=\221\323\21^\326Q\344Z+\307\5\230&\f\233" #"\r\16\357\334\303\235;wq\260\177\200" #"\276\357qrr\202\244\265i\233a\3004M8<<\304\341\341!\206a\300\373" #"\357\277\337\324#J\301\321\361\261\216\364" #"\224\362\226)K\317B\227:l6\e \264IX;;;\210\244cEG`" #"Z\17\260\351K\245L\30\327#F\355\204\17!b\\N\"}wz\202\2223" #"6\233M=s\273\273\273\330Y\2550\f\e\\\270p\21{{{\270|\3712" #".\\\270\200\365\260A\352:\254vVX\364\v,\26\vt]\207=\5\353\236" #"\345\36\307QR\304\n\374YS\345f" #"\273}\331\5\263\f\253\361\367\307\354\251" #"\260\311\256\21/\264IZ\333L\256\367[\336\2563\243J`!\205\252" #"-k\300s\232&\224\250@\221\31\301@\261\312Q\371;`_\255\316\275" ) 500 ( #"\200\271\21&\205\v\212k$\263\324\371" #"v\315\264gm\267\357\272\221,\333\367" #"\302\276\307\227\32\0\236]&\3308l" #"_\22Q\3\311@\322\204\36\335\360'" #"\226\354\237\317\360\21t\302Wj\357+\n\2\21V\357\231\247\f&\256:\252!" #"D\251E\326\250_\236[kT\1\244\256M\3173?\21*\373K\212U\22L" #"\265\305\336\323jm-k,d\232\220\32\226\332\17\251\23\245\a$0\238\313" #"\24421\335\17\227\e\bF\241\352'\1\35v\243\223\335|\263_ep\t " #"\16\n\4\355s\265\264\243#\247\205\254" #"\23\3754\e)\270^\230e\v\326\305\0265\fP> \243\314\271\200sA " #"9\217vw\2\250\332 c\276)\4\344I\312TS\24i=6\242s\314\25" #"g\30Xm\204!\3014\231\355\254Xf\316\223\231d\303-\234\237\361\337o\4" #"\223\221u\376\34\3733O\fd\236\364" #"N\251\335&\324I\246\t0\307\252\243" #"\f\263\350\214\3321\254\16X\201\32X\5\210M\237-\230b\2035\345L\240P" #"\20\250M\255\261\217\bAX/i\276" #"\222\330\326\3\1\273\264v\200&c\204\264\31\212\213H]Q\b2\355\"\bx" #"\26\220+\254\326\254\356C\336\270\326%" #"\331g\v\345\257r\27\25\210\273\346\v" #"=\364\366\34\342Tc\325\337K]\222" #"\237\305Z\240\36\332!\367ii\273\0" #"\336h\f\343\210\305\242o\254d\260T" #"\31)[\235\301\252\265\32BW\353\227|:k[\256\304\377\276\31-T \340" #"\17\217=\223\227\364\310\243\212\344\233d" #"R\316MX\332\35^\2\220:)\25\260(\315R\332V\20/\254\250\236\3j" #"\227\271\357{\34\37?\250c7\275a\365\27\337\253p\264\271\336V\307<g+" #"d\375$EQ\1\ve\344<g/\204\215\221\376" #"\373\234'QnP\203-u\275-\n\16!\324\246" ) 500 ( #"\ai\316i\306\223\25\3706\335\321P" #"\305\356\255AN\336\255\235m\333_\317" #"\252\373_\231\325\3701\213Q\322\32G" #"\177\261\315\371x\266G\f@\3\257\362" #"\305\302:(\253\2273#\244\271\24\230" #"\235;\0370\311\273\212\4\225\244%\343" #"C\1\215\201o\233Lf\240v\324{\226s\226F\20Mk\3339,\\\264." #"6h\320\320\356\4s\2537\365\215\225" #"\365\16\301\353\230\3329\267\306\246\2?" #"d@\f\333\\\177\321\326\375\203\2)\3739)I7\276\315d\347R\320\251\243" #"b\3\2571\242\v\220\362\31\5\2466h@\356\tc\261X\"3c\322l\5" #"\364\357\216\217\217\301\372^#\3\\&" #"\4\3648:9\6\264\344)\227\202\303" #"\273\367qrz\"@\255\24\214\303\200" #"\373\367\357c\34G\234\234\234\242p\306" #"\341\275C\331\243z\277\4\264\r\303\200" #"\205\326\240\356\256V\b1\342\336\275{X-\2278:>\306\331f\203E\277@" #"\3245\6$\2332\215\222\366\24\266E" #"\262\n\253\235\35\364\213\5B\210\270p" #"\341\2vww\320u=\316\237?\257\215a]u2}\327a\0306X,\227" #"\2101\325\357]\237\235I}nJ\330\331\331\21\375ekvc)?\333Y\211" #"\314\3438\216\0306\e\304\256\22320\v\\\364\f\f\3030SA\261\373p\266" #"^\327\214\16\5Q\5\261\363\352\1\210" #"\a\220\17\335;\263\21\32\210\205\"\202" #"\375\231\213\352\242\266\0u;;\347A#\27\326>\25h\366G2?\205\1\16" #"T\233\"Y\223\232DT\365h}\200\253\254R\375b\242\352\303@-\345m\340" #"\310\6\32m\263d\223\v\264ZV\224f\367\301g:\354{\315\356z\346\254\224" #"\3264&\337;WH2`E\220\346#\277\256E\367\35\214\331:Z\303" #"\224\371\265\222\r\350\210\16:H\202\343\222\vR\227\2447\247\bqF\"" ) 500 ( #"\272=\367\363\220\336\213\30;\324\346:" #"#m\210\0D\365%\262\367\306\310\313" #"\277\233\a6\272\211\310\205\301(*\374" #"\323R\347\24B\235\270V\233\351\231[" #"\311O\220L\226e\274\314\316\312\324\262" #"\207\203o\311\0h-:\23\202\332\317V\202@\30\363\240\307 \"\6\367\31#" #"#\305\0366B<\306\226\t\254\1G\24\35\373i\232\220!>|\322g\261a" #"#\342\3632\0204K\247\245\tU*\221\254\31\320l\253\324eS\305,\rs" #"\330\335jgU\352\241\231\333s{\322'\245\266\366FrX`j\357`{\264" #"M\214\271[S3i\3623P\263\b\320\275J9O\332\25*:}\305X\307" #"@R\233\251\210I\200\241\24\330\327\306" #"\nX\24\1$\212\30\363\244\235\365\fP\256L\251E9\326\324!\235\306$\365" #"+\252\327f\337\347/@\214\261\262\216" #")F1\32\324\272\221\211\332\245\364\a" #"\207\365\340\221>\247/\2370\346\226@0\301l[8\3\304>}L\2002}" #"\271u5ka~\304|\341\267YDc}(Fd0&\225y\31\307i\306" #"\0065\306Q.\31\203k\321\266\1," #"[\227\312\350\271\213\354\377\275\224\232P" #"\233\335\355\16\237\255\217\255\237u\335\327" #"\210\217\203\246'\346\316\240F\212\245\324" #"z-2@\345\30\3\0\302$\326\341\r\26\330(\eRdB\233\325\261\231\261" #"\265\317\260\367m\362$\222\366\342\"MAek\275$]\252\251\25=\350^V" #"\306\234\223\30\245\261\236)y\217\f\n\t}J(\271`dF,\5\21\215\261" #"\1s5pv\245\244<\301\200\355\324\0]\261\375\2613@\265f\224\25,\331" #"\373n\3/.\5]\214(Z\177\314\200\4[\332\301\353\3\256\224\254v\315J" #"\201\232s#\242Z/\347Y\"\177\276\275\0\376" #"<\300p\3006\20\310\315f\17\nj\341XLS" ) 500 ( #"F\210@\325\241\215[\315Kr$\30v\20Ki\1\216\201\v\273\217v\367f" #"\373K\17w\347\ny\254\365\270\334\232" #"\r\332\357-\2200\26@\31k\r\306\275\223\v\22y\243S\3;\225\202\300\214" #"\345j\211\315fSA\3700\f\330\234\r8[\237!\350HL\364=\16\17\17" #"\361\376\373\357\343\375\273w%\335\257l" #"\342\351\351)V\253\25\26\213\5\16\17" #"\357\343\354\354T\327]\233i\262N\275\323zuI\311?\20r\200\30!\t[" #"i%\24D\300\311\311\tB\220\222%c$\355\216u]\217\\\30\247gk\34" #"\237\234b\271\\\212\363\214\35\256?\372\30vvv\321\367\35V\253\25RJX" #",VX\255\226\270z\365\232~\16\241\357;Xp&\23\37\303\314^\32\20\262" #"id!\2402\372\315\36\311V,\26\347\315\350\200-x\324\261\330 q\300" #"\311\351\311\254\361G\215\0052\273\f\22" #"\36\316\372UFRm\215'G\354\316" #"\333\363\310\321\231\377{\273\203\263\t\235" #"Q\30\300H\312\272\251\320^\261\3744" #"\360\320\2755\237\5\240*\211\304Nl" #"I\316:\224\205\b\201\251\226s1\263" #"\200\r\225\313\202\245\344-\30Ck\312" #"4\e\222Y\230\315\30\244\27\"\17\245" #"\6{\344J\346\266\231\305\332\20\347\236" #"\335\257\245_\253)g\221\220T1\377\354@\245|\356\364\320=4\237*\27\t" #"\265!\332\306\276\333\36ZJ;\300\354" #"\227\214i\16)\326g\206\332\274Qq" #"\201\f\311\220\200\233\v\t\250\322aS" #"\362\34\204\240\200\267\371i\af\231k" #"\3\252\275?\266|N\315\262V\373\330l3\261\0207\214\240\315\311QM\30U" #"\277\343\t\27\373o[\37\373}\235\344Xt`\210\32\317\355\346{yH\375o" #"H\200c%\20\233\265\330z\n\26X\311\376[ " #"6i\2469D\361\1779\347ZG\235\255\354Nk\252" ) 500 ( #"\231\245AK\24yt\270\2266\261Y\220\"\357\220k=y)\230)\35\24%" #"\31R\354\221K\206\351\371z,\220\\\366#%i\336\366Y\26\v@\eF`" #"X_\3130\f:\354\305\337y\1\374" #">\320\363\301\34\263\274\223\5\246\3030" #"\200\35\16 \"\244&\34\2565&5\322)\30U\370\331G\313\366b\223\262z" #"\213\205\250\31\214yB\n\332\320\20\4" #"\354L\3320\343\31\326V\32\320&\337xF\322\f\254\2001\255\273@\00332" #"\320\302K\224\230a\23p\225\225\241\313\0bn\362*v\310k\24\16\326t\210" #"\\\320\340\26\262\35~M=\16\243\314\275w\322I\333\351\aohg\200\27\20" #"\6\\S\3\245dP\212\222\2)\377" #"cm\315\266\221e\366\334\333\364\276\35" #"\36\373\312%K\r\265\3<\366\231\336" #"\250\316\232\311\334\347\331\257\236\25k\21" #"\272\24\212W \356\177n-u\220&>l\261\n\373{{89=\306\373\357" #"\337\25c\266\305\266<\304\270Y\315\25" #"\313\230XaN\240\373\340S\353\320r" #"\t\326\b\270\235\vo\354\375{\311\277" #"k{\306`\364\232\2626\307\354\277\177" #"\356\344\242:\230\266\256\363w\231\247B" #"\3\23\314uR\b3\243\350\231\355\2425\316\205\201@Qt\250\321@\204`9" #"ap\315(x\326\322;\255\0064\v\2008;\243>\273\340\203\264\306\200I\252" #"\336\262\1I\215\216\261(r\216\334Xeu(\355gz\303c\353!\3222\214" #"\326\3001j\340\341\35\264\260\362>\222" #"o\367\243\31\307\b\346I\3*\251\e" #"/\6\234\363\204\240\266\307\316j\244\16" #"\23\217H\251Ca\351f\357\272\16\303f\203q\30p|rR\1\234IP\335" #"\271s\247\352Q\23\21\16\17\17%@\323 \356\301\375\373X,\2272" #"\232[\201\301\375\a\0170N2\325q\30G\5nB\2t\253\25\b\322" ) 500 ( #"\264\264X,\252\r\4\200\235\325\16R" #"\264Te\26\266k\234\204\201\215\21\373" #"\a\a\330\337\337\303\336\376\36\369w" #"\36\253\325\252\326\237nk2\373\332\322" #"\30\203\324\341\303I\273\305X\337\311\354" #"\201\21\f\366g\203\226>\370;3S\331\201\200\334q\234f\266K\316FK5" #"N\323T\235\245\330\332,\245m\24P" #"\2028\267\314E\232\200\200\n\210\f\274" #"x\273\345\237\325\276\354\334\316\2318\37" #",\333(v\353\330\216\263\373\357\31I" #"f\225@\323\362\274\2\315\26\270\347\260" #"\221\345!$\230$\223\a*vF\213\366sp)@'MN-`i@\211" #"s\1q\vP}\215\243\rra\6:\r\b\247I\316\274\365L\370=m\317" #"(\367\323\316\263\257\371\267\365\363\317\355" #"\t&\"\5\274A\352K\e\370C\275\327\377#F\315\373\t\3162\229\204\200" #"q\30\353\363\20\265\354Lqc\264}vIl\211\22\330\0\30*\a\26H5" #"\220M-@\325\201\270\365\6\370\201\21" #"3\373J\4\360\204H\17\313\270\315\203\"\252A0CJ1\"E\31\373L\223" #"\4\330a\316\212W\371<-\371\24\342L\200^\235\372\26%\e\231R\3028\214" #"\310\264\225)\256g\310\2\302\251\366J\0\230\201CpQ[\a\224<\265rI" #"R[[\30]\324\273j\240?\310 \230>&\231\4\253\243\337#\5l\254\331" #"\262\260\224\335\224V\372\305J\262H_\330Vy)A\203\16ajm\275k\306" #"\305\255\255\3140\210\263\214t\363\301T\203)V|!Y\326\2\4T\25\a9" #"\307\215\f\373\240,\335X&\204B`" #"\223\303\315\5!E\214*\1\231\204\356\267\216\377A\6CP3$p\240m\234" #"&\4H\272\2512e\245E\352\254\265]RK2\241OiV\207d" #"/d\205\370\254\351\356\2\252\27\3117(\231\354\26\nd\f\334$#" ) 500 ( #"$\3150\200|t\244`\t-B\260\216w\17\4\354\200{0J\240\232F2" #"\200Y#W\"d\222\356\331)\347Z" #"\347\346\201\247\35V\317\330\315\231)\253" #"\333i \275\246\260*\230\222\253-#l1\177'\a\6l}\274~\237\217\316" #"\345\275\3654\2\263K5N\",\236B{\277\312\270\2070c\273\374g\242\276" #"\263\30\304\\20\25\240N\215\221\6\2\2126\261E\323\bh\200\275_,p" #"zrRu]\275\261\365\27\276\2.V\306H\367Z\30\321\21V\276\0\271\327" #"H\340\232Z\361{`{\335\322p\\\203*\371;\327\325jkE\215M\266}" #"\265\265\360\373*RV\245\2N\17x\355sez\221\214>\254\2\343\220z1" #";\203~D\260\375Y\2312\2302\270\326\223Y\311\6`s\332\315a\331=\261" #"\37516\336\203D\337\344\350A\243\355" #"\213\235\323\346\370\245>\r\34t\344f3\266f\260K)2n8\316kyc" #"\214\265\253<E\18\314\214q\222\6" #"\254X\313\213\30}\327\313L\362\234\265" #"\351\0\210\334\232\206\35437\233\215N" #"0\224}\0256[\353wY\232\213\274\320> j0\306J230\2\303\270" #"\301\375\373\17\360\352\253\257a\30\6\234" #"\234\236\342\360\360\20\353\315\6\326]\234" #"K\6O\222\271Y.\227\270{\367n}'&\302\331\331\31\26\313%\376?\272" #"\336n\327\266\3548\17\373j\2149\327" #"\332\177\375s\272\217HvS\242,\313\212-\331\26`X\312\205\2'\200o\34" #"8F\22\5\360\235u\241\27\3203\350\25r\221\\\310K\30>R\0\0 \0" #"IDAT\201\205\344\21\"\4\326\205e \206r\23\220\26\4\231\224\f\210\244" #"\4\223T\324lv\367\351s\366\331{\2579\306\250\\T}5j" #"\316s\274\210\306\331\334{\255\271\346\34\243F\375|\365U\325\351|" ) 500 ( #"\205\1A\367\364\330\351|\302\337\375\373" #"\277\214\305\235\313\273\273;\347\243\336\314" #"`\320\317\303\325\325\225\257\273\351\251\323" #"\311F\217\257\325R\200\365d\224\241\307" #"\307G\324Z\260\234NX\226\212*%" #"\6\321\344\227\241\303\246\357J9\355\221" #"6\330\324E\373\377\31\275\232\34\305\314" #"\331\31422e\210\237\333g\0\242P\217\337\24N\251\311\t)G\220\2112\345" #"\263\24\372\276w\357\225lA\314\326&" #"8\222\317_\326e\374\377\324\353\274_" #"{\273&\331\2665\240#\227\271\212Y" #"\377W\207\24\231\261\243\326\e\255\233\301" #"5\236\201\353\303\244\27\305>S\223\236" #"aQkA\201\f\240c\256\31\237e\214\341\223\30]\17\26\231\205\240n\v\325" #"{\341\212\330\275Y\207\25\365\254\325l" #"\245x\fvw`\201\274\31\340\356@\21\247\250\251Zk(\e\365\315L\24\271" #"\373\4\244\376s\266m:\210\331\351?" #"\356\27\221\3678\v\351:\34\306\221\201" #"\234Z\353t\314\213gU\233B\213\32z\351\224\2C\300g\377\346m\333v\327" #"\253\245\2\245B=\235\35{\236\200\236" #"\336\273\00345\300/\3\363}:\243\26\324\304\200\241cj\275u\325Z\261." #"38\27\21\254\v\1\222\224E\25GN1\221_\313F\b\332\326\303\236\263>" #"#s}Mf\275\327\261\367\226g\272A\274\25\250\5\327{\372\16D\242\250+" #"\202GU4\235 \220T\331\255y\326!\206\256\332w\17\355\20-q\277\313Z" #"\202\212\310\332(\221\231U4y\203\337g\0050}\227]\300\304\357\2526Tb" #"]\352tz\225\335\30\16\331\217C\340" #"%\314\326\252\25\r\242\330\200\224\253\365" #"d\205~\307V=}\f\257\236t\344v\314\250\e\252PX\4\21\21\330P\237" #"\232F\345c\250\312\262,\21\225d8\237\v\300\277s" #"\342\24\177\266\233W0\222\e\3358X\344|\2060\324" ) 500 ( #"\32\364\207\311\21a\251\210@\333\360:" #"&\26\300y\v\26OC\264\336\254\340" #"e\350n\222\211\224\351\354\364n\355\207" #"\252\267\306\252\313b\301@\342\272q\241" #"\367hJj\270\355\16\"\253\27K\255@\233|\35*\f@\321\272\21\300\31\b" #"\20Ex\e\302E\307$;2tTj\305N\361\0\226BTw\36\3730\343" #"2\374^\371<\31Ey\323\201N\23\207P\241e\257\340E\275J\334\221q\361" #"\264D-\5\262V\234\317g\b\212\265\32r\244'\e\235\354\360\226b\\a\5" #"\271\266\335\212\274\2125\312f\220T\323xP*S:oc\247 f\205g6" #"8\2443X\324\310\224\254\275\217k\235" #"\r.\327%\313\324T\330<\3009\362\35P\265\n\325\370\336\240\32l.'N" #"sp\207\273\270S3`\301\203\265\326" #"\231\306\243w\313\242\0\226R\352\336\32" #"\354\264\256\270:_\341\341i:~\331" #"h\334\337\337\273\363\304\242C\273\305\333" #"\333\333\235\f\361\375OO\e\n\200\237" #"|\366\302\253\336\177\214\313\345\22\357m" #"\255\341\263\317>\213\200\340\346\352\n7" #"7\267X\227\25\305\235\226\273\333[H1$d=_Yv\3033A\326\26\320" #"\332\r^.[\320[x\237\217\2176" #".\372\341\361\221\"\214\365\264\342\263\317" #"?\307\331)\5\34#\314V{\325\235E\21\340\372\352\32[\333p}u\355\216" #"W\305'?\376\4\237}\366\31J)xj\rm\3330\324\234nU[\313\333" #"\353[\e\30\243\3\177\347\357\374\"\336" #"}\377\31\236?\377\20\327\327\327\321\207" #"\325& N\247\362\352\312\250\16\305\235" #"\226|^O\247\263\a\354t$\235\357" #"\226\317\247\353Qx\306G\235\216P\252" #"\31\245\327\367\367\3214\275\215\316*\224\220kf~(\37\374}k\ez" #"\37\276\266o\26\37\35y\375\0\242\272" #"~\242\2063\30\313\206&\353\n\352\274" ) 500 ( #"\351\304f\340\3012\e\226i\226\310\260" #"\205\363\345\316\2359n\263\0\220$\31" #"\216\322\345\313\34\257\32\3678<\233C" #"\304\26\310\205]9\303\206ha\265+pu\e\203dx\255\301\2749\337\"\236" #"\203\320}\375E\3336#\345x@G\32Bqj\35\3536\304\355\v\263o\266" #"GfK\204\372dL\375\rU\313\2\211\240\215f?\253e\235J\255\221%\220" #"j\355\0\25\314f\356S\265\331\351\314" #"\16\1\365ev\366\211\244\17\265LU" #"\255\271\375\343\300\30\314b!\316~\4" #"\346\a\273\304\314_^\373\214\244\363E" #";^\335\216S\307Mt\320\20\371\202" #"\352\203\a\232\365\271u\264\274.\276o" #"N\r\241m\312Nwd\211\341\224\262\2\3170L?\304\332\0\nN\345\34\272" #"4\354H\221\350\372`\3\264\324\375\205" #"\201R\21\b\266\300\355\231\356\317\2249" #"\3333X\f\377J\r\270\343~\30\362" #"l\231\234e\251;\372\231\371\347.\343\265\30j<\4*V\23\5O\375\317\241" #"\36\32g{\f\353\257[KA#\375\305i\v\226\2713\32\202\215\4O\31\2" #"U25\242C\206e\312\201ZMV\27\17\274L\256Jd\323\263\223LG\336" #"\262\225\2443\356\353\250\206\3\237A\a" #"Y\254\23\216\311#\301\244=8\223\3277\3131\365\315\30s\b\n\327}\341\e" #"2\254|i\35^[\216uYw\255U\264\17\24?\2609:\304\0306&\264" #"T@:\306\326\200e\222\334i`\347\303\233\220o\275A\206\363q}\272\227E" #"\217\346x@4\350\24K]m\221\275\265R]\27\bjDr\265V\300[k" #"u(\26Y\275\245O\237\310\255\34\214" #"L\21+\340\351V\351\311\216\16\222\234" #"\213\355r1\205v(\300\242su\214\244\371\273\234:\37c_\2306" #"\222\301XO'\233@R\5l\222m\250F\335]7\e\320\243\242\341\213" ) 500 ( #"\205u\0244\0^@\244\220j\374%a`2&/9_/\377\34\317\344\207" #"P\341\304\3651|\334\244Gdi=\253G\332p\244B|\310\307\325\315\r\264" #"w\343s\353\345\r$\"\224C\353V" #"\304\20\353\266@\304\a\215\224\2%\322" #"\337\367mq\262SKY\206\177?\235\334\354\\\333\313Pt&\313\246\301\304N" #"\306[kX\22\262)\202\24)w\17>\254P\261\24G\272\207\342t*\273\"" #"H\300\\u\e%j\210\212\210)\235m\333\360\342\2055\305o\255\341\363/>" #"\aD\360\354\331\a\201\246n\333\0057" #"7\267x||\304\347\237}\206\353\233" #"\e\234\317g\374\360\a?\300\353\207\as\272\36\37q\377\3725J)XW\e" #"\342\376\342\305\vo\262o\337\311\336\203" #"\357\277\377\36\256\256\256q:\235q\177" #"\177\217mk\270\271\276\301\3266\274|" #"\3712R\370tP\211\240\366\336\303\341" #"\333\266\315\234\305a\305#}\263\336\224" #"E\200\367?\374\20P\353_\311\276\277" #"\257_\277\306\375\303k\274\377\3763\373" #"[\267\266s\2557\334\337\277\302P`" #"]\26\343\0W\313\244\234\326\25\"\300" #"\351t\216\357_\327\325\214`\267\351n" #"\247\323\t\257_\333x\356\357}\357\273" #"h\255\343\341\341\1\267\267\267\326\16P" #"\25\267w\267\270\276\271\305\363\17?\304" #"\262\234\360\341\207\37\304\20\233\237\375\331" #"\237\305\315\315-D\200\273w\336\361\306" #"\364&\23YAg\207\217\347\335\2201" #"C\364\263\302\337\332\5\222\372m\262-" #"\235\311\214!e\205\0160\334\272\300\214" #"cw=\263\324\311W\345\344\270\375\31" #"\235\251C:\322\224]\vv\4\353\272\354\364Vvn\363Yi\255\271\21c\232" #"~\352\222\354\314\344k\314s\305\tg" #"\346\264\333(v\323\307C\0\321\331\16\211\337\331\307@-" #"\2\e\325n\305\307\20\343\246\312!05gq\6\207f\333" ) 500 ( #"\vj\235\16Cv\362X\b\303\375\262K\223\302f\26N 6B\266x\226\233" #"\300\204\330:\203\231%\320\211t\20\240" #"\370$)\352\225\321\35\25N\b\252\373" #"\347L\377\262\375\234\270^#\330a\201" #"\2009\263\2537\311\37^\f\245\245`9Y\332\e\243\243\253!\315K]0\304" #"S\372)\270\317hW8\261\376\312\372<\353^U\37\237\255\300(,\374M\235" #"\22\304P\355\214\302RV\366@\302tj3H\302\240\2072\272\324\23J\235A" #"\27\273\302\360\372F\37\20\3O\320!]`\271y\322*I#\330S\313\362\317" #"3ha\177\357\t\340\210\1\302\373`-!\357\271cG\251\5\5\4y\314A" #"U\244\226p2;\35Y'\220\t\0040\240\310\337\263\224\2\224\342\255!m4" #".\247J\236=\233\223\235v\"\326D" #"\335{\267\356\a\305\207r\265fm\307" #"\254\355\332\236\236I\340\316\234\334%t" #"\223\5\v\342{\312\"\341\26\317\37C" #"1dq\332\206\313\264\366\320\205\221!" #"*\263\235X\350\5L\356\374q0\f" #"\237\353\330Z\224\340\v\35382\240\307" #"\2168|\361\273&xj\266\333\246\22" #"\232\37Y\325@\243\356\235\225\226\354\201" #"\a\262\v\240\200\20\364\210\303-\330\v" #",\35\224@\205\273\267\a\31\35e\231s\3063\17,\34\346aB\"\360T\251" #"\370L\346\v{v\272\363\243\35\245Z" #"\237:\301\0X\4\224\306\252\332\306\350" #"\374\377\230)\241\242\226\3665\177,\25" #"\3\rM\\(\347\322-\213\367\344C\244\327\331j\210\250@V\"L\333\344\"" #"\266\243\243\305\365\341\6e\243a\310 [\205\270\360\24OA'\203tt\6\363" #"\265($\31\201\344\337\303q\3645e" #"\212,\247\273\226\272o\323\221\25\230\210!-]\255\351s\e\3*^\361" #"\233\215ot\273\20058w9\241\341\245\3031z\307\355\335mL\320b" ) 500 ( #"\320ct\215\351@\20\211\264\251V\202" #"\355\262aY\215o\244N\223\261&\343\315\20\2202S\362t2&\247\323\257U" #"\4\275c\367wK\277Z\2455d\240\256\253s\217{(\1V\314\3368\362Y" #"J\t\aH\4\316\e\24\274xq\217\307\355\21\237~\362)\36\37^\343\305\213" #"\27h\333\68\317\355r\271\3303\253\2061|xx0\5w>\343|:\343" #"\341\341\1\367\257\357\321\373p\347\322G" #"3'\344\203\315\301\31\341\336\334\336\340" #"\365\375k\253\\_*\356_\277\306R" #"\255\225\23\358\242\211\353\272\2\"h" #"\355U\254\303\217\376\277O\320\266\315\212" #"\234.\27l\233\361L\353b\301\347\355" #"\355\35nn\256\361\374\371s<{\377\3\224*\326\264_\vn\357\354;\356_" #"\275\212}\373\341\217~\210\313\323%\326" #"x\333\254\27+\0\350b\374\325\17~\352+\370J-x||\302\345r\301\263" #"\17>\304\351t\302W\276\372U\\\235" #"\317\270\272:\343\372\332\320\323R+\256" #"\34\255\335\357\353D\20\271\36[\333\260" #"]6\274ww\207\227\257^\342\213/" #"\276\300\262,A\27\270\271\275\205\24\361" #"\321\261-\350MK\n\252\252s\334\266\313\323N'N\245:@\356\"\317\21\207" #"\241d\a\330\f\236!@\220=\302\306" #"\266F\374\214\37248\270\336\31J\324" #"\314h \223\0163\215q\246\34\34\r" #"\303\336\371\350n\310LN\363{r\326" #"\211\257\325\v\341xn\30\304\362st" #"\252\200\211\314f\2479\250/\376\331\352\350$\251;y\3345\251k<\237V\3" #"c\343H3\372L\375\264\370\275\331\372" #"\322\331\a\230a\311\16x\6\25\346:\311\301\0317\333 N\th\335\v\23\1" #"4G\330\211\224\23\365\214\347\204\321" #"\317\262\303\230\35\232\34\0\331p\5\v\306\34\22\v\2732" #"R\207\a\250\241\270\200\351\267\321'\235\216\\g\325a-" ) 500 ( #"-{\267\364l\252\331\260\347\236\255\246" #"\362\372\35m\2\177\246\243\255c`X\344\20\203'z\327\335\36O\207dRO" #"\336\26\370q?[k\316\23\267\324vd\3z\213l]vJ\263,3\273k" #"#\251\275\30N\325't\"\326\206\237\335\241zt\272\304:\21\30*]\336\220" #"\325\231\335\262\2544G$O\244\331^" #"\f\20-\252\321\330\vQ\227\361\235\263" #"\246\351\354\355\177\6<\37\331SZ_" #"\23\215\301\203<\276v\331\353\f\320U" #"k\3639\272??\314\216\3060\215\274\216b5\37\275\31\n\315g\343\36QV" #"\324\355\222\210\265Q\223b\261\2056\30" #"\20\244,\220\236\353\303l\312\320\21\305" #"\313c\30\5f\236G{\352\267e\25x\217{\335\212$S#\3765\2355\235" #"]\356%\3450OA\2655bS\2\313\356/-P\203\352\241\27\0\355\256\254" #"\304z\310\325\202\321la\212Oea" #"\325\364\374\"+\262\342\201\242r\310\315" #"\241\347\313\242p\336X)F\372\36\235" #"\216\217\241[u\21o\220\214\210\342\1" #"\366\21\254\246\24\264\3\240\2634\323(" #"\313j\277c\352 \4\316\25\4\312L\215\225Z (h\27K\217\210\330s\352" #"0>jw\324\205\205\26\334@\366\340" #"\313\21\306\0215\314]$\30\355\321H\263\35\225\270\"Pw\314\v\354y}3" #"\322\6\356\17\36#\317\354x\23q6\301\321\340\345\16hL\r\343^\\__" #"\241\265\216\265\332!a\277J:H|\337RW,+\r\37\360ty\232\312O" #"\n\6Z8\255\255w<>>A\4\270\273\273\303\303\353\a\274zu\37|\307" #"\247\315((\327\327\327X\327\25\333v" #"\1\240\330\266\276\247cH\301\20q\347" #"\316\20\236\242\326\214\275\365\206\2566\214bY*\266f\362X\253\265D" #"\21 R\313\266_\35\2551\275}\35\355K~\370\303\37\340\313\27\257\240" ) 500 ( #"c\340\223O\376\32\217\227K\34hF\242\217\217\17x}\377\200zZ-e\276" #"m1&\364|:C\n\360\203\37\374'<>]\360\342\345\227\326\256\3522y" #"b\200:oU\35m_p:\255x\375\372u\24\vY\265~\213\357\256\265\6" #"\307\2649\177\364\361\351\311\34\3XA" #"\206T\v \357\37\37\361\316\335\35V" #"\0\357\276\373.~\376\27\376\v<\274" #"~\300\266\331\304\230\323z\302\365\365\265" #"\363\272\354L\213\2303u}}\205\321\25\353i\265\311U\227\v>\372\350#|" #"\355\253\37\241\224\212\323i\305\232&\314" #"deUJ\305F\224\3171\313\3266\374\322/\375]\210#\r\255o\326x\375" #"t\2\0\234N+\356\357\357q}}\275+f\345\231\345Ybg\201RX\220" #"'\336\343\264\341\356t\367\326\254\306\272" #"\2568\215\23\364Z\261\326b\216\271#\341f\f\260+\4d\223w:=3\275" #"\335\262\255\361s\245\340\3648j1\252" #"J\343u\357\333\242M\364s\237r\347\331\245clFf\242\374\fhJ\201;" #"}\226\226^\27\233\254vD\256r:8#\316G\307\323R\250\356<%\2476" #"\337s\30\37/\342\e\252\326f-\31N\362r\r\3351t6\a\343\273\311H" #"\353\354\275lh%\2\200\240\16e\260\237Q\352\246\206\216\25.2&b\274\37" #"\341\352\214\217\301\352\361\t6L$r\357l\30p\261A\a\336X\303A\a\332" #"\21\251E`\367\222\326\212\330\237\210\21" #"wYp\204\260csB\225\351\303\325" #"\300\21\31\221>\37\336\263\224\343\242\r" #" \262V\227\250L'+\324\301\242\2557\e\0163X\230e\35!T\1\351\303" #"\333\231\325X\23\312bN\351\276\315Q" #"\215\347\346~\212\270\263\255Na\330\a\fD\3\263\3\275s*\323" #"\357\363Yn\255\247\363E\16\364l\257\326\22\210\23\366&\326P#\e" ) 500 ( #"b\23\311\254Ff\361@a\370\36\234\274{PF\334-\263\234P\344\345\350\203" #"L\307?g_G*\22\267\365\361\2l\253\353\5 3\300q\20\301\336gh" #"g\16\"\241\200\324\\\270\347\205\210\303" #"E[\305\237\337\364[d\256\227\325(H\f\222}\277O\353\t\26\344z\273\260" #"\321!\236\205&\340#\336\257WU\0030\e]c-2\332\313\363<\264\271\216" #"\347d7\243dh\214\262W\a\227f\303\200,[&\37\223F\230y\264\245h" #"\222\35x\340A\264\3768\275o\266\200" #"\235\362\247\201\f[=\302\244@p\17" #"\263\217\4HB\214\275P\257\n\344\177" #"\377W\377\213\35\355\235\302\342\314a\305" #"\2728\377k\20u\265TX\37\315QQ\347a\371!4e69\200\231\252\300" #"\203\215!\373&\371\352\334\332\344\20[\252\326#\260(\324R,\213E'p\5" #"S\212A\327\344\246e\241\25\2210\370\306\223\36466\302}wNKj\344\254" #"nZ)\350O\333\206\305\235\334\232\34y:\336D2sJ\217\317<\221\235\331" #"\225\200\312\220h^Lx\361\236\377\35" #"\212\265\354\e\352\347\203\27\225\241\3767" #"v\275\310\305q9\3551t\304\370OuT[\244\340\213/\276\300\375\253\3276" #"\375\350\3415^\275|\211\373\373WX" #"\226\25\17\17\257\361\370\370\210\363\371\214" #"\373W\257 k\305RW\264\336p\276" #"\272\302\343\303\3\236\236\236p{{\213" #"\353\323\31/^\274\b\376\246\35\240%" #"\356w\353\300\353\207\a|\376\331g\270" #"\271\271\301\365\365\25\336\275\273E)V" #"\374\370\323?\375u<\177\376\34ww" #"\357\340\371\363\347\21tQ\221\\.\e" #"\36\237\36\320\266\206W/\357\361\372\341" #"\1\n\340\345\313\227\346\234\271\203\376" #"\362\345K\e\341)\300\253\373W\350\255\241\365\206\253\363" #"5n\357n\242\37\347\353\327\306\377|xx\300\323\323\206" ) 500 ( #"\3266\264\255\341\346\346\332;\0260M" #"7\271t\275\r\243\325\350\b~l\30\tf(0e\340\354S\233N\3473n" #"\316g/\220X\301^\276\347\363\t\353" #"z\202H\305\325\225\3657\275\275\275\265" #"\346\370\353j\b\346\262\240\26\e\267Z" #"k\305\253W\367./v\16l\344\256\241\301\327\327WV$\3454\b\312\34\345" #"\316\0344\343\263\235N'<>\332\32" #"\32\327\325\372\0\227j\216\231\216\1\204" #"\374N\a\355\rd\b\200J\365f\352e\357\210\210F\201\b\351+\303\207\23d" #"\344\347\310e\347+\f\242\b\32\214\213" #"\335zG\21\30rP\v\330\205\345m" #"\316\214\252\267\211K\312\360\322f\227\200" #"\314\257\267\326\212\363\254e'\361\350\270" #"B$\256\313\301#K)1\31,;\232\324\1\0\2\215\bgY\367\0314\0" #"\236&WH\251\236\222lo\310V\30\343\261\257|\177\e\235 \a\0023m8" #"\235\210\243\301\n:\5,m\17\300\a" #"\\\274\331\375\200r\25\337\245\231\333\273" #"GV\346\265g\215F\276\257,\17\261\316\232\262mc\242\257\245Z}\205\25u" #"\332\304\252R&\302\315\373\3329\266\311" #"\221\342\317!\303\302\256\ae\227N]\234?\253\230\251x;S4\252\373N9" #":\214\23x\244\20\360u\374\235\252\323" #"\275X\314\252\276\207\2\350\245\1\245`Y\274\20wX0\6\345\332Kt\231)" #"\225\275\320%\3545\277/\237\t`_c\301`\353m\224/\v\356\37w\374\376" #"\274\247\371}\231\356\2303\2133\220c" #"\306\204\240\217\353\2101\354\331g\6<" #"d\201\350hk\315h.\336\32\360\350@\327Z\243\30\254\244{\f\271\27A\e" #"\233\25A\n\221KD\r\316\ft\314" #"\31\237\205\305\344\245\233\216\23\23D" #"0\e\267\244\0\212\362\236\321|\1\242n\240\324\32\31" #"\323\326;\352\272X\r\213g7\24j\275\254\213\265a[" ) 500 ( #"\304\351-e\322\a\340\31o\263K\223\256a\367\351\300\220v\e8\3432\256C" #"QW\317\324\212\201OUd\327\2279\316\277\353\256|6B?H\201\3120t" #"7\2473|\277\326u\265ifR`\223\313z\354\325\324CF'\230\276\221\267" #"\212S\e\375L`\321\262\237\360\340\220" #"\24\302\t\240\345s\310\266d\346\23Ny\3473po+\333JB!\377\307\357" #"\376\257:\272\272\303\250\216n\356\333h\360\301\330\306\307zy6,eEw~" #"#S\375F`\346\260\200\251HW\237\364ci\30\366\203KU\344K\211\342\"" #".6\vo\212\332\202\317\b\322PV\201A\372\313Z#\5\360&\347s\366\354" #",\305\247\200,\226\6\36\255\31\237\203" #"\34\0231\342z\37\206r\266\326l\260\200_\eER5~\ta\244\1#\221" #"=\224\231+M\216\266\273\\.\370\364" #"\323O\361\360\372\1\37|\360\f\217OO\221\216{\347\235\367P\305z\355>>" #"<\340\264\2561\3023\367\224\314\6\215" #"\263\300\357\357\357\361\360\360`\343;\357" #"\357!b\25\342\17\17\17xu\377\312\323[b\274\234\336q\331.\370\311O>" #"\3\320q\276\2722Dy\3538_\235QJ\301\207\37~\210/\276\370\2\237~" #"\372)N\247+\\\372\5\347\323\r\266\366\24\\\277u]q\377\3725\252\0027" #"77\261\267F\356\257\330.\27\240\260" #"\317\347\32\212\365\262]\320\36\37ps{\353\210\27\207}\230<\\]]\2417" #"{\237\215\31\\1F\303e\333\320\274\210o\3336\234O\247(\350`\301\n\213" #"\256\256\257\257`=\232\v\266\315\16\242" #"\266\356\306h\365\342\241\307\b:\256\257" #"\257C\301\336\336\336\341\366\326\236\247,\vXq,Rq>[S\376\313\345\311" #"\35/\223\261\353\353k\\__\343\352\352\n" #"www\336\372\311\344\235\225\303cX\363t)" ) 500 ( #"\202*, Y\342|\20\305\34\276\317TL,\310ZVC\224\243\17\264\244\364" #"\224\222\302\263Gj\370\232\306\235\216\325" #"T\322\31\371\22\201q\360\223\341\333;B\a\247\a\25mLZ\322\20A\31\32" #"m\262h\220\306\260\202\203\16k\237\306" #"\240:\353\25\1v\337\273\343\270\251q" #"\320V\227\223\374~\32\343\334\22+x" #"\257\0\266\336\261\270\354\345\2001\a\244" #"\\\317=\247\376\3156J\20\313\b\5" #"\255\210\210\311\341l\356\365\317\276\365\23" #"\277;\367\240\225Rl\250\206\210'\324" #"z\370\0\342\340\1\21@\204\16\234m" #"\342\350\334\355\v\302\366\16\246\275w\t" #"\275\236e\210\353\220\235N+;\336;" #"M\224\245\214\352B\351\2578\372\232\n+s rt:\1\354\34\255,\263~" #"%\260\315S\2017\253\227\202Z\fQ3\204{\"i\252\23\241\312N\274\25\325" #"\275\371}Y\276%q\fy\317D\212\246\0354@\202\250\352q?3\332\225\345" #"\v\240<x\235\204L\247t\300\354\242" #"\16\e\26\323\241(\352\16s)N\323\312\205V,\324\6\2Y\366\237m\2573" #"-d\317\205\344~\277\31\24NY\341g\363^\344\337\35\2371_\363\230M\260" #"5\356\273\340\212:JU=\0V\357\325:\203\240\254\217Z\eX\212u%\310" #"N\265\351\223\212\1\37\0\4\356\215#" #"\312\2\260\23A\16x\226e\211\302s" #"\26\225\317\200\253y\206\321{\334\213\203" #"wYO\265\36\375\177)O\252,j\234k\245:\307{[\340\346\235\212`]" #"\27\254OyE\37s\232[\357V\207`k\261\357\232c\355\271\n.\27\3\377" #"\"\333>\372\356\\\1\16(P\266\352\2h\361\214t\211\240\254z\260\21qF" #"\332\303\234y\6\214\207.\365MzN\16\30Y(\236\235\334\31\224\267" #"\330\267=\b\2436\6}]B\237\263\223\210\371\260\2\260\215_%\245\326" ) 500 ( #"\374\5\vLV?\237FmQ\0K\231\24\22)\305j\r\6\214\177\377\257~" #"\347\177V3H'\213&\300\a\266)#R\210\342\354[;\314\303k_\274\256" #"'\214n$\361\341\n\3068\241-\242\321\34\31[u\3344\n\303\2155\243\247" #"\251\244\355\201\227b\343U\327\23I\366Lk\215Pt\"\22\243\3772\202<\34" #"\2423\304\252\333\370J\0002\324\321&Ch\264\231\367\177:\237\320.\e6O" #"+\234\326\351`@\0+\"\1H\216\317\2\316\203\263\256+>\377\374\v\274|" #"\371%\276\363\235?\305\217~\364Wx|x\200@q{{\213\247\307'\274z" #"}\217\1\233 T\227%&c\31O\256\341\372\346\6\243\17<{\366\276\tX" #")8\255'\234N\346\34_.\r\257^\275\210y\355\252\212m\333\360\316;\357" #"\340\351\351\t\17\17\17\321\t\0\305Z" #"\2070\255Qj\305\272.6\345\2557" #"\234\226\23\256\256\316X\327\231z+\305" #"\212\231\304[\273].\233\243\262\327x" #"\272<a\25\253\366\177p\4\340\366\366" #"\326\234\214\365\214Z\n\26\347\247]\266" #"\v\376\335\377\375\357puu\205_\370" #"\205\277\205\237\371\306O\343\363O\177\202" #"\373\373{|\362\311'xxx0'\371r\261)J>}IP#\245r\276" #"\276\2\233\367\177\360\301\a;\3zZ" #"W\343\244\246 \303\34\242\216\253\363\25" #"\356\356\336\301\335\335\35\256\316'\334\336" #"Xa\22S\361\327\327\327\270\275\275\r" #"\371\4\350\250Us\324\207!G\323@\316`j\26!MC\220\323x\323Hp" #"\220\305\300\326L\226Kt\v\231<J\236\205K.\376L\327*2\373]\362\373" #"\f\35\232E0\334[\0(\252>\272\326\372J\233';\2517\206\264\20\351\237" #"\21\276*{!\nU\341\316\3211%\357]0" #"\n\f\321t\207!\356\226\225\367V\262nAF)" ) 500 ( #"\256\244\252\317\245O\216\236\177\314R\370" #"\352A\20\363+F_a\205\363HY\244#\205A\374\276{\357Q\225\316b\242" #"\274'\323\210d\205\235&\32\245u\27\21,e\26^\222_\311 \35\256wh" #"H\3703\0\254\305*\212\333\266\331\230dGTHj8:f\371\36\3\241\21" #"\211\336\234\334\367\311\2437\245\304\314\22" #"\1\4\6\27\n\333\0373\330\22\264\0" #"\335\311\326D\2\337\226\201;f\225\370" #"^\273\377\251\367\370{}K\300tD\0M\206&\2\23\177\23K\343\366\255\315" #")e:\221l\e\r\255~6\21\375\230\355\273u\a\256\224b\374z:\211o" #"K\275\347\351bY\16J\251\1:f0#\17V\341}\363\31c\335+{\305" #"\3330\16\205\242\312\22N\310<O\22\325\362\361;?\277oC\240g\3605B" #"\257\23\341#G1\313N~&\6\335t~s0\226\3\236=Ed^\353\370" #"\276\354\34\277\201V\307\36\233\37\300\202" #"\330\335\372\263\370\22\360\240J\16\337\5" #"\264\315\235\274\302\342M\3575\235P\273" #"(\360s\35\322{G\e\27w\220\367\324\32\202-\3\274w\365\263\343\31\203R" #"\242\177\254\322\371J\1Q\326\311\201\"" #"\216\334\353u:s\f\322\251#J\341\344E/\n\207\242m#\2\250\31TN" #"^y\376\276\31\304\356\273b\204\36\223" #"\202R\5\227\315\370\377\255[\375M)" #"K\350b\353\6R\202\346`\217=\302" #"\321\315kEy\6\324\213\320\30\230\233" #"\257f~\202\27\213+\271\357\32\262\263mO;\237(x\373\316{\27XF\f" #"\312\351\220fs\273gU\25@o\263\205'\324\262^\334\303\34P\266\336P\275" #"\0\234\235\244,\0\22k\373\266u+" #"F\263\17\r\24\345T\24\300\274\351\211\312\362\320P\21\232\300ZT\315" #"1\230&x\25\227\366\210\245x\244\32\221h\"\365\303\333\213\r\211\303" ) 500 ( #"G\317\375\210$\261-\305\320\201\365\274" #"\370\20\1\211\205W5\36B\264\225\320" #"Y\335\307\303\3164\307\30\rPC\243" #"\263\362\260\247\265\327\247\237~\212\357\177" #"\377\373\370\231\237\371\31|\370\3749N\3135\36\237\36qZVs\16O+\236" #"\236.\276\3103\252\312Bw\177\177\217" #"?\375\323?\305\247\237~\206\277\372\253" #"\277\302\30\3\327W\327\326\362h{\212" #"6O\20x\377\314\311Q\353\255\315\364" #"\210\e\221\37\374\340\207al\6|\303\227\5\313Rp\177\177\277\3434^__" #"\343\376\376\336h\5\327\327x\357\275\367" #"\360\376\373\357c\0\270\272\276\306G\37" #"}l\a\307\321\314\272\bN\247\263\31s\24\254\2475:X\20!\0211\356\334" #"\262,\246\370}}\317\353\311P\351\354H\24\26Z\330\1\ec\340?\375\340\a" #"\20\b\276\372\325\257\340W\376\313\177\210" #"\257<\377)hB\364\237\36\37\361\352" #"\376\36/\277\370\22*\212\27_~\211" #"\247\247K(\247\273\273;|\365\243\217pwg\16<\235T\376\27\216\355\30n" #"\320|7\213\31\230e5\236R\201O\377Sk\335\325\307\234>\265m[\214%" #"\r\324\245O#\t\260=\321\344\223e\207\200\312i~~\32\212\350?\334\201S" #"\30e*Z\200C\35B^\335hX\373\266\6u\2038\264\243.+$\235%" #"\6v\31I\341\360\v\353\2541\320ku\236\244\311+\3377\206\6\362\35\316S" #"\255\30\255\271\361\315A\3554rv\377" #"\260\321\253\260V}\3532\371\233\235)" #"Jq\234O`\316\343\330\e\340\351\334\355\327k\32y\32\30\1[j\211wI" #"\221\362&}\201\317\324\272\215\357=\255" #"\v\266\241\201Z\360\372\374\216\274\177\224" #"5\2361\21\247s\25M\23\270\304i\4\346T\251*\244.\6\16\370u" #"qp\b\232*\26\356\223;\336Pk\205\277:r\307\221\311\331Y\310N" ) 500 ( #"%eA\313,\270$\322}\222\202\36ki\367\246j<\177\270\261&\275b\"" #"\321\25s\332\325t,\354\347}\321\333" #"\321\250L\244\324\270\261\265\316b\232R" #"\254\232\234t\233\214\212\347\2646\327?" #"\313\23_\324/\342\274d\31\352\0035\314!$\322l\215\365e\16Q\240-@" #"\0027\222+E\320\304\364\5Q\3667" #";\16\321\300\233-\313\231\223\2121\260" #"\333\243\354\304\347\316D\371z\254\21\31" #"\230\1%\257Qk.\2501pc\214\375\265\217k\224\21\324\371k\211\277et" #"4\357\233}\237;K\351Yy\375\374\377y\255\274&\\'\312i\16\352\3717" #"v\222\311A\2449zS?\331g\275" #"\376\205\210\35\366\201P \177\202\330'" #"\223\315\202\323\311\0\eN\324\e\275\243" #"D/`\17\n\313\262\333\27\221Y\273" #"\"\305z\34\347\240\270V\363C\252#\247S\227\260D\364MD\222\353`\1\250" #"\272\257\264\347-\327Z\255.\203gyxP@\347o1\35C\324\330\206\201\354" #"\263H\305\213\273\315=\267 \250\365\206" #"\262T\240\373\236\260}\251\a\4\220:" #")\216h\250e\235\3535RK\256\321\320\aG'O\277\213\b\265\352\0\322p" #"\217@\253KE\337\272Mr\34\260\32\232\276A\204\223p\367\1Rv\330c\322" #"\250\30O\227 D)\34\344\5\347\376" #"\233\337W \206\376\217\21\357\311\317\1" #"\30\352\234e.\0R\1\264\e\rj\231FY\240J\36\233q^\263!\340\r" #"\347\211+\307\b@\304SL\240\21gT\267\257\272\213\bZ\\AS!\3651" #"{\345%\245\312J\336\313e\26\354@" #"7\24X\241\214\216\31\265\346\317\25G" #"\201[\243\263Pq\361\206\363\\\244\254" #"x\377\344O\376\3\376\315\277\371\3\364\326\260.\377/\336}\367]|\374" #"\361O\343\371\363\17\361\364\364\210\273" #"w\337\301\365\365M8\356\2555\233e" ) 500 ( #"\257\212\207\207\a\\.\27\274~\375\32" #"\237|\362\t\0\233\36\264\256\253\247\e" #"\200\237\377[\277\200w\337}g6\215\257\346\2302\302z\272\\\"Jz|4" #"\352\301\27_\274@)SY<\265\v\256OW\306\355\254\25\317\236=\303{\357" #"\275\267\343\377r\235I) \32\274\236" #"\0232\355\251/\6.\315{\340\322\201" #"\243\302\346\272\236Pp\361\202\17\36\374" #"\355r1t\262\354\271\206:\24M/ \362\375\362\325K\\\300BH\f\0\0" #" \0IDAT\337\336\240.\25\317" #"\336\177\26\334*M\355\223\236\275\377\f\37<\373\0}t|\234\224d l\356" #"\353\\]\237Q\313D\235s\225\271\t" #"\273\247\340}\252\337\326\2360\224\a\377" #"\202\321\314Y\272\370\324\36\22373\2" #"\227\355\t*\202\265V\37\3259\271\221" #"\21yz\272\212\250\212)`DT\255\330\e\251R\n\372h\250e\3615\367\357" #"j\0355(S^`F\347\22\2122\24C\272\363\302\375\34\214\206\316\2\257b" #"\3\\\304\203\26*S\25\37\e\352\334e\26\372,\325\212\307x\3668Qh\361" #"tvN\eG:/\311Fv\274vhN\367iJ\376\314\265\24\324\23+^" #"5\212\231\246\3217gh\21\233\24\b" #"\301\354\23Y\n\332\245{A\2369\255" #"\265\356QA\256i\e\35K\251\220\344" #"\30\20\201P\37\327\335\307t\370r\201\re\252\273![JA\27\243\365(\340" #"\235Zl\215\0261\324Z\304\224\347\354" #"\224\0\20\235\30\311\210+f\207\232@CKr\324|\17\266m\213\241\1\4\16" #"\216\351b>S\357=\320\\\322\4b\364&(_f\0342\262\35\306R\274\262" #"^m\0h.H\262\357a\321\315\374\fuv~\35Q\2730\352I\336\351\350" #"\353\241\327o\226\31:\2\fX\243\360\320<\311p" #"~\232\332\31a\0\23\16\304\262\4\2\b\257\223@" ) 500 ( #"\6-\69\231L\245\326\370\376\221\f" #"f\226\207\270\a\235\206\335z\203*p\30\352r\4S\370\373\354D\0pN\352" #"\236\273|\\O\376\316\276\177\242\266\31" #"e\246\334\263\325\222\311\v0\321\334I" #"\367\313\16.ms\276\317\336{4\371\267\375\231\5UG\3077#r\31U\234" #"\367\233G\223\317\356\17\371\275\371\232\223" #"\37\356(\267\237\2431\200\247\355\311\213" #"s\247\223\36\201Xr\36\271&\3545[\213\321\207\32A\211\352t\305j\224A" #"\366.\16d\321\317a\327\t\212\315}" #"\230A\267qh\21\\\332\274\357\331\371" #"\237\301\223u\353\311\34x\2565HO" #"\200\217\326\5\323\363\326\335J\1\343\352" #"\312\f:\227\205\362d\1P),\316v\375\354Cb0<\303T*\372f@" #"\5\317Y\350hm\200N\4=\237a\epb\200\246\210\204N\2647\17\350\220" #"x^\201`pX\221\32\b\260\370\331\\W\353\326@\231\241N\313\201$\357\211" #"\235\2742O\334x\350\336\1\311\327?" #"\332\354\251\327\0\350\233:\205\262F\e" #"\225\375\3221\6\272\243\321\313\334<\1" #"`\25\277\242\373\271\331\3779\341\246\222" #"\313#\337\212\26\\\330|\277\26T8" #"\207\n\226\6 \377\314\234/q\247\323\34Vq.K^\244R\230.&\32\341" #"\2\246b\6\bF&7\341`\233\240Y\225]\r~\261~s\232\253)\a." #"\227\v.\227\v\276\377\375\357\343\351\262" #"\341/\276\377\227\30\255\343\354\25\331/" #"^|\211/\277\374\216k\245\202\207\307" #"\a\324j\234\316\323\311\310\327\231\3\5" #"\330\344#\300*\340\317\3473\276\376\365" #"\257\343\331\263g\370\271\237\375\e)\222" #"\267\315\334z\307zZm\\\235\210E" #"m\303\"\377\253\253\253\330\203\313\345\342" #"\306c\0K\305\2\t\29\327\211\327\245\322\275\\.X" #"\227\305\351\27\346\30\f\3576 b\25\266\334O\216\5%" ) 500 ( #"_\352|>\357\256\3134J\205@\243" #"7\256\370=k\240\320\201\206\371\330\333" #"H\231\\6<=>\332\301\207\3040\b\336K\225\202K\273\204\323[\252}O" #".J\23\210\247\300\367\355\332\262\263k" #"\b\300l\177\22\n\276\320\360\n\352b" #"F\235\231\6K\335\213\243\300j\323Y" #"<\235_\304\372\rW\0\245\32\357\270" #"\326\352s\264\235\23'\3\242\326S\267" #"(\274\3315\225\306\6\201\241\27\245\32" #"r`F\27\316\323\245R\0\200\342\6z\30RY\v\254\177\260\372\371v\264p" #" \32\244\237\22'Q=:.\232R\356\245@\232\361\227\210$\36\351G9P" #"P\335\17\335@\222\2017\320\0*4:m\353\352E2\373\324iv\230\370\275" #"\347\345\24J\253w\6\274\216\344y\32\257(i\voRBxo,\370Pa" #"1T\346\243\326\b\265\207\313jvb\226bH*\204(\255\akj\b\2009" #"S\223?<\215\242\367\235l\35s\216" #"N\236\337^A\302\307\346|\336\354\374" #"\204\16X\254\256\240\217\1y\303\361\334" #"\363my\326\306p\375P\330:\310z\204[:t\"A\335\327\212\275\222i\304" #"G3\31\34\342C\t\206\265\324cq\223\351x\17>\23\3070\337\17\215V\16" #"\200\210H\211XE=\3179_GzIF\32)\217\201\376\216ac\270\305\370" #"\336\346\310\356y\245\255m\200\244\26F" #"\262\237\306\344\322\277\263_\252\336\201\306" #"\351\e\354\305\236\321\350#\262k?[" #"[B\6\263\241?\3633\247\340\"\243" #"\330\234\210\310\373\n\324\333\35\2229\314" #"\203g\306\nBE\336\216\342\236N\247\324\305\340\355\3?r@zD\277\3429" #"M\25\272\35630\212\357\315\216Z>" #"\307\21\264\321\321\254i0\217\210\r\231\3529\333;\317F~\206\240\240," #"+F\263\363\333F\367Z\214=\215GJ\1\372\0\204`\312\354h\20\317" ) 500 ( #"2\206\245\312\340\305\247E Z\"C\223Q\330\"F\253\241\36\17\2335|r" #"\237\a\17\352\200\235\210!\361,~\344ss/\1X\341f'J\376f\257j" #"Q\323JcX\321\256\252\2\25>\211q\216\263]\223\3173\345\307\234\\\250:" #":9\254=\35`\3\342\25\306\277\205" #"\25\270m\243\207\316\316r\271\324jN" #"\266J\330\22\363\e\27\264\261A\273\6" #"\207w\361BBkGh\257\312\214\343" #"\200\241\347\241\347\5\324\271\234B\233\3" #"\272\354\214\362\314\314=\226\240\340qm" #"\r\225\266\307]\226\212\326\355\377\213;" #"\276(\323&\355\300\226t\366\3665'" #"3\333\267\354 \340\352Q\277hj\217\204\235\360fT\245\210\240o-z\226\1" #"@\333l\266\261\24\314\241\b\230\a\207" #"\374#-\236vX\n\24\306\247k\316\205|\362\"-\nu\244\30\226\nDk" #"\16\0002\320\266\216\363\25\17\347\360Ij.8\0P\234\363\347\0236\256NW" #"\370\311\247?\301'?\376\t\276\373\335" #"?\307_\376\345_b\3336l\333\5" #"\243\17\274\377\376{P\35\270\273\273\303" #"\313\227/\255\215\324\325\25\372\30\270\275" #"\273\201\245ONX\327\25\217\217\17X" #"\2265PZ\21\301\317\377\374\317\343\253" #"_\373\32\316\353\212uY\3\25\e\255" #"E\372\200\310\217\0\350\233)\333\6\333" #"\334\356J\375\351\351)\"\25\"\211\213;6[B\333s\364\313= \321~c" #":M\200\265\236\0\235\23CD\347\30\3170bb\212}\353>0\344\340\34\0" #"F\370\246\203\321\3341/\2116b#" #"\223\r\5i}\340\264\236\360\352\325+" #"\243\2508\22i\306\312\322\343\342\250\336" #"Z9.\32\200\250\245w{\v\344&\f\210X\212rM\2068\0347\21C\356" #"STG>h\227\16\355\32c.\r\255\261\301$4" #".\3059\201Th\252\35\5\356\360x\217\325\201\16\31\n" ) 500 ( #"\224\5\265Z6a@Qz\303\360\346\203L\245\n,\25f}4\rM\313\251" #"\225R\310\367\246\361\32\361\275\346\260\263" #"\200\305T\233\200\25\306\263\241\373.\272" #"\35^\204\345\347\245\323\21\341\372\371\261" #"\241\362c\366\204\353\270Vk{T0\321!\276\306H\5\rn4x>\255\347" #"\347\236SF\a\221NiW\3656d\22EL\23=\36\201\330\361\376w\364\222" #"\326\202\277\25\206\262.\0302hM#" #"\370\342\354t\352\250\314\273\255\0\272\243" #"\"\320\211\226\362\236U\325Po\21H\325\24dL\364&B4\t\373\343<=" #"\261\340\e\260t`1^\357\320}\312\27\276\17\224{:\344;\343y\b2\375" #"a\240*\326%\2\326oUPPXg0&?\325R\375\251G\350bCL" #"6\265\266\177U\vz\265\340nx\241l)\306\263+eR9\262\256\317\16H" #"v\n\371\2125\227\304\325M\262\231\235" #"\244\374\331\214\224\345\354\322\360\277\211\222" #"'\351m\304.\326z\20\320(\364\254\224a\261\364v\327\267s\212G\37(\336" #"\311\247\365\231\322\2463\224\323\357\334\344" #"\354\354\347\0001;\201\333\266\3552\203" #"\31\341\0241^\251\216\201r2\256\217" #"\370\331[|\234\353\350\323\321\316\224\246" #"\34 \2x#(\265\214\234\25~[\235\f\321KC\255s\361\30\237\2517\243" #"\226\364\341\205Fb\31%\23\3156\345" #"\24@\266\277\241\337#\270\0\24V\364" #"\324GG\177\3528-\263\3503\217\252\236k\307\237\325i`v\255u\261\241\6" #"y\375\30\364\224\342}\346\223\3\225G\tW?c\"\202\272HP\0\217\250\37" #"\0\224\324\221\210\0\222\5\246\323v\16Uh\261b\340\1u\233d\201\241\r^" #"(n[7H)st8f`.\16\344X\341\275\260\256\312F\252" #"\303R\363]\215j\341e\374~\277\b=SJ\361\276\266\22\0244f" ) 500 ( #"\307\343w\336\35EA\24\335Z\325\205" #"\275\364\373co\364\0213\21f\246\226" #"\b\262\b0\232\323?\362x\340\244\347" #"G\333\267\202c\340A:\302t\316\337" #"\324\r<W\3140\262\237|\25\237\332" #"\346\3649{\236y\266\263\fR\376\362" #"\337\362\340\t\236\343\311\323'\222_\261" #"\314\2033 \346>;x\224\370\255)2\214\203\240j\250\306:\235`\21/\32" #"\361\306\303C\233Ejj!1S\f4\222l{5\3235\313\e\n\212\a\325" #"N\251Gy\2@\6\266K\367~\242\16\343;\334\16`\327z\304\242\371\206\317" #">\373\34\337\376\366\237\342\223O>\301" #"_\374\305_bY\26\334\334\334\240w" #"k/\365\316\335\35\256\257\256\361\267\377" #"\366\337\306\303\303\3>\370\340\3\233E" #"\177u\5)\202\253\363\331\34\336\333[\274zu\217\323i\0050p:]\371x" #"=\305\266\371\346\273\2,e\316%_}38z\324\34\68oH\3468d" #"\217\364h\244\363\230f\n\0237=O" #"B\313\353u\214h\206\247?\4\210\350\225\306\236N\222\252u}8\351lm\223" #"\205-\210\340nLH\334\317\373\305\366(C\255[Ek\e^\277~@-\202" #"+\357\3520\r\377l%\324\207\25\232" #"\364\316\201!\236F\302>\300\252\260\357" #"\356N\254W?0\252\35\360\221\316$" #"\334g\264\243\302\221]\235Sul\222" #"\314DEz\357\256\344\34I\250\202\336" #".\220Ra\255\214\24\332\231\324\32\21" #"\224\370IC\37\2604\225\230\223Wi\250\321\301\351-LG\251ZE*\25\e" #"S\210\\\363\326\24\3132\3232\23U\343\265,(\311\3213\21\2\300\34\237R" #"&o\221\327=\325\32\206!7\357\17\a\223J(\31\226\310\342\350\254\324mc" #"\240\216\341\16\330^\301\5\212+f0\254\263Iu\31" #"7T\324\n\214\226\335\367Pa\355P?\0\247e\301" ) 500 ( #"\226\234\300\214\b\"\5x\\+\352,ug\331\202\246\216!3@\342\347v\327" #"\202\365\350\264\236\275\n)D\364X\0" #"S\261mO\346\214\250F\203\375\351\0\312\fL\335\320p_D\r-\331z\217" #"\263vD\3\371\31x\220@$\276\330\6\243\313@\31\306\261\205\267M\"2g" #"\310\341l!\246j\243JIM\211\261\264J\276_\356\2\300BV:5\32\262" #"\225\221\254\351hM\a\225k\230\367q" #"g\17\222}\1\207\0\35\34\221\254\273" #"\30\314\204s\345\362\302\t\231\303Qv" #"\313\26\355Qpq\275\301\240\213g\246" #"\215n\274n\366\371\365,\207\244\373dai\276\377|oD\271#\273v\370[" #"\16\306\255\226\301\301\1\267\245\326\24\31" #"\326./2z\e\272\16,B\271\235\334\304\326l|,\217\6\327v\177^\210" #"\304\347\254\201\300\304[w\373\223\321W\343gO'\2302\316\3562Y.3j" #"\234\375\200\352\16\334\274\206\321\266F*" #"\212\233\216\307\264\21\263\220\267c]\215f\302B%)\2\f\r@G\304t\266" #"\300l\246\235\21\233\4vZO\221f\237\31760`EYU\247\275\344^\346" #"\"<U\365)g\256wJ\r\3072\234\355\224%P!\2202;\200\250\302\373" #"\316Z\320B\24XP\260\310\324O\v\317\221*\312i\1\244\240\16\305(F=" #"\260\26_\266\316\273>\370\356\e@\370" #",\360L\230OB\363\221\304^\246\24\373DpG\306,\326\243\36\347\0360K" #"\225\351(\205c\244a \345D\326\315&\n'\375\361;\370\271C\260z\334k" #"\202\227\6\216\26h\32\5\2142\341\3" #"\236\333\354w\212\314\302F\266\302\314\255" #"[\217vG5\3t\by^\200\324\376C%&h\344\3\234\277\234Qyc" #"\244\350\2\230\257\261,\325ZA\301\224\246\24\240" #"oj=\331d\37\355g\24C\204\275\n\247`" ) 500 ( #"\316\2(*Fwd[G]-\rl\25{\253\215\23\306\300\"\326\203\224\320" #"\370\350\35\337\372\346\277\307\237\377\371\237" #"\343\223\37\377\30\200\342\331\263\367\361\354" #"\331\373\370\370\343\217\361\321\307\37\343\203" #"g\317pZ\26\324\245\340\352|k\320\276s\263\fy6\a\341\351\361\2\21\305" #"{\357\335\271\320\tt \214\27\271\222u\231i\fF\370\223\16b\207[A\244" #"\313\242\230Zk\20\264s\272\350\b\321\23\261%\"QJ\331q\314\270wD\216" #"\263\220\347\353\324Z\343\240*\367Z\246" #"\341\317J\"\322\334b\251OSv\223" #"\6\302\177m\302\221\247\25\0345\252\2" #",\265\4\35#\366\334i-s\332\221\247\246|\234f\365 \212kh\b\300\206" #"Z\327\350\354\241b\312>\204\37\335\320" #"\343Z\223\23\257\226\256\365.!\376\365" #"0\252\300t\26\347\241\3615\34\346 \207\34\2226\240\3U\26\210*:f_" #"\277\212\202a\230o\30\203\242@\a\373" #"\372)\306`\242\t\230\206\37P\235<g3\34&^\266\377\5\275s\235K\234" #"!\242\36\220I'!\272\a\250;\222{\207c$\307\4\f\232\306,\272\340\213" #"\347>\237Q\"\256\254\226U\21G%" #"\0-\223\37\265\256\253\365\255\205G\332" #"j\b0hx\306\300\272\314\242Gk" #"\274?9\343\231\252\260\224\202\355\200\322d%j\6\311xo\315\273\255dCk" #"}\24\255?\n\r\316\361\231\210\310\201" #"\nW\35\253\32\31\215\32\270\\\22\237" #"=\321\244\346\371bj}\246\364\343{v\1\336\\\355\374L\"\2\361\347\337t" #"D\253\251>\6\320\32\n*\264\362\234" #"z\323|\333\nk\361S\5\360\341\355" #"\2346\250\30\21\320\24\377\214\5\342=" #"\234\331\211\"\345>\352\223kg\201\226e<b]S \231\235W>+" #"\21V\352q\26^\21M\"\212\305\377XXJc\31\301\213\24\310\352\325" ) 500 ( #"\366\3\321\v\324\226\354\200\330A\242\215\23\367DU\255\371}aj:q5\375" #"\2259\350\331\370g\347\262\36\252\312\363" #"\363\36\35\375\336:\244\22&\e\223\352" #"U\v\312\360\226\203\344nz\0\311\357" #"\347u-h\332\"\245\317\277S\307\356" #"\235\355\351,\222C\236\251\17\371Y2" #"b\310k\230\363>\353i\342\231\223\34\0H(\265g\3420\vr\3039\356\263" #"\353\304n\17vA\221\202u\t\320`@\207\354\5E\304\35\337\2557/\306\364" #"\342\303*h}\363\300\255\30\242b\36" #"\257=\3470Z\340\316\361K\266\314\366" #"\261b\250;}\264\305\275[\26\326\207" #"O\225\335\373\27\324\305\n\177\215\3226vY,\201e3zk\321\n5\27\377" #"\325b\201\277v\3 \372\350\221\321\262" #"\314\"Q\375<\212\327\2\245\242F\277" #"\242\323\t\230m\202\a\1\326\22\325A" #"\207n\347z\340M\n\3\317)\35\316\341\231\323A\372\230,fw\v\v\354\346" #"\236.\336\25\210\16*\203\233\221t3" #"dR\2102\210\300\365\251\356C\221a\306\316!\21\b\211\354\256G=a\373F" #"\20Dw:\2126\2042K?\201\367Y\335\aY\"rf\332\337\317\177^\230" #"<u&;\273\371\300\a7\305\271#:&t<:\260\256\25[\233\351O\266" #"\201\310\321f\240|\351\200\2621>\324" #"\235\301R\200\16\353\16\340\n*\370b" #"\342\35187n\265V\274z\365\n\377" #"\372_\377>\276\377\375\277\300\351t\302" #"\327\276\3661\256\256\256\360+\277\362\17" #"\361\356\273\357\340\372\372*\332M\211\332" #"d\231\241=*n{\e\326\202\313\35" #"\216\353\353\363|^\353\360\350\202\263\354" #"\2244\327\212\317\21\6\\\255\242\30\36" #"m\261Y8\221NF\311;\245\222\242q\16\2670\222\372\266\213\264s\2526" #"\24\324Ap\3060\244R=\0324am\20\257\366\\\253\241\266H\1I\226" ) 500 ( #"\a\353\355\212\340\340\361Y\247\23_\335" #"q\243\2024\264\265\224\342Ny\rg" #"\262\370 \200E\254\247\240\212\243\251\20\347\352L#h2gJZ\4\300\350^" #"`\245!\330\0\336\220O\373]\201\266" #"\216!\323Hp\237\262B\342\32\206A" #"\261n\326\236\2264\247b\300\271\344]" #"\261T7\f]\274\260,\241\240\"X" #"\213\241\3172\34=\362\264d\353\244\\" #"\250\363\364\366\325\355\354\32a}O\273" #"\243/6\5\207\317\327G\267\2\f\230\342_\340|\342j-\225\366\223\200fa" #"f\346\336\347\0\351\310\225\244\374Q\201edF\350\4\2737\376\266vTUf" #"\265m\205\245E\253\27V,I\236{J\243M\304\311\f\335\2455\243S\370=" #"\3443\221\225\270\375\35\221\2\346\357\247" #"N\262n\27c\314\326_l\3F\205\e\272\314QD\336;Sa\264.\252\346" #"\324\207^Jkfg~\26N\21U\316\374V\"6\271`d\347\0{ A" #"\205\335I\20-6\365H4\241z\"P7\324\266&\366\326\311a4\276y\21" #"C\326/N\1\241\343\305\251OD\343" #"\254\372\235\\A\242\210\324\311\314<\354" #"y\204YfbO\"\340b\213\302\23\210>f\3H\207\216\206\376\305\213/\261" #"\256'<\177\376\34/^\274\2603Z" #"\24\213\267\222\354f\4v\362\312\324\251" #"\16`C\303Z\226H\345f\204)\27\234e\331\340\337\262qfj\224\362l{" #"?\327\235HRvt\241\26 -\245\32\245\306\203;\311\315\356[\337\355yv" #"\22\247\255\30!o\366\3679\226\232\337" #"\3055c@\236\355K\266\247\252\263\250" #"\211\5\2553x\265\211\242\22z\336\247" #"\2111\310\227Y\v\301\357\310\303\210T\r8\350\216Z+\0341]\366\24#\352" #"\322\354d\231.c\255\204\240\26\253m\250>()" #"\246\213\265\216\272\236\260\360~\206\235\5\35\211\v,\212" ) 500 ( #"\336\24\245J\234\27:\220Y\6\302\216" #"\300\220\334N\a/\3551A\26\322\315" #"x]\312\206\265\261\342\244\3017{B" #"\347W\4\22\236\35\261\363\277\317\366\350" #"\30h\303\316\257M%\233\34\360h\275\n\247)/\22\24\16U\215L\r\24\350" #"N}[d\1\322\372\345\275\343=\307\272y}S\37\303m=|0OC\357" #"\315\203fw3\207\242\241\5r\234\2377\a\275E\336\354E\36\205\237b`\215" #"jB\304=h\203\b.\227'\243/\34t\374l\35k\362\222\afe4\227" #"\350\357\342C\231\262\357%\"Xz3" #"\356'\264\300\306\265\231\320\323\300\362\20" #"\262Z\237\v\235\25\1\17!\225O\337" #"\24\344\337\330{K\244\264\255\22\261\306" #"\246\315\5)\36\215N\347Z<\"." #"\376@\5\223\360\316\321\2019\22\266\a" #"\233\321\350\346\343Z\177\362\223O\361\316" #";7x\347\235w\361\217\376\321\257\341" #"\371\363\347P\35\270\276\276\206\b\320\372\5\330,B\315\327\1<zl[(\35" #"ur\36\211\354\275\17\364\2468\237\227" #"\364\331=\307\216\312\251uo\333\224#\\\261\364\243\215<6E\305)^Q\330" #"\242\360\264~\367\310\313R\352J\344\260" #"\36\e9k8\325:\20\a-\214\221\333NF\207\234\362VQp\31\315*C" #"\207qv\27\21\332\270\264\347\206\332\22" #"\211\btx\230\334\250N\205|\177\177\301\227_\276B\t%v\361kXz\245" #"8=A\252\317\32\367\316\e\34\36\262,K\310\336D\6&\371\334\320~W\200" #"\311\bggvY\226\210vU\354\340\34S$o\353\35\231\17\234\31|E\35" #"V\351nM\24\4kY\321\321\r\375\3ktM\200\266\226f\272\227j(\241" #"\237\a\223{:Ds\35\247\342(hmszE\246\16\21\271e\221" #"\235Q\216\206\330\272\f1%F\5(\20\210\aaV|\267O\177f\332" ) 500 ( #"\v\367\221\bv\234O\325\30\216\220\317" #"\332\221\322\224\221\244\214\342@\4\265H" #"\360t\1\301\326\333\f\226J\n\244\3340\325eA\1\3029\213\356\tc\204n" #"\310\312v\316\243\337\247\316\305\317[k" #"\315\221\300\231\236{\233\303F\235\226\215" #"\243=\247\267\371I-\315l\200\316\f" #"\214\30\330\347\365\314\377\237\327=\246\333" #"b\r!^%\\\261\326%\372BW\337o\336\323iY\214\367\351\34\277\254\203" #"9\366<\313\363e\333\260\236N\21D\204\243\222\220A\256\v\235Q>w\316B" #"\211L\235\235\237\355\350\374NCK\260" #"\243\275!ot@\370\373\353\353k\374" #"\356\357\376.~\360\203\37\340\327~\355" #"\277\302?\375\247\3774\276?\220\177O" #"\257\253\2268/\333\266YA\257gI" #"\206\356\345/\27(\36339\205\235\337" #"\313\367\35\365\207\252\241\302\3{\2040" #">\3`\250\321\323\370\375\220i\17\337" #"\6\30@\234\333\277T\273\266\203M\224" #"\215\214*[\v\316\25\373\236\271G~;\342\372tf\rE'\2\266\267\1\266" #"\17\271\265ZF\333]^=\303\310aK\341\350{0X\2440\201\260\373\336\334" #"G:\3571\327\232\272\2675s\352U\5\325A\200K\242\256\300\367S\17t\24" #"`\256m8\273]a1\241D\201\252\214T\220\350\327bp\313\252~\0\320\215" #"5<\\C\337s\f\214\221:`\34\354\313\361\34\34\221\323\341N$\345\330d" #"\330\332Dz\23\27@\355>\226eA\305~\300\v\35E\251\206\4gY%M" #"\251\244s\225e\234\316\340\334kD " #"\224_\265\24o\3\251\330\232\325W\261(\275\370L\4R8XsP\334I\337" #"e1F7'3\1d\\\3>\252el\253e)z\217\340=gLb\337" #"\307\330\255\205zFi\333fv(\217[\236\331=" #"\357\24!\326\a\237@_\375\37\376\331\177\367\333\266\337" ) 500 ( #"s\263T\247\23\4\314\324Nvrs4\312\377\226\272B\207DA\3174~\335" #"\27\257\333\230\303TE\233S(t(" #"\206\216Y\324P\230\366\265\310\273\253\265" #"\350\250\351\340e\245#\16\377R9." #"\313\202o|\343\ex\377\375\367\361+\277\362+x\376\374\203(&\263Cn\216" #"\\\24\260%\301\260\353\245\310\310\25\312" #"R\31\265\2322/2\321\37\"\314\273\3^,\205\b\331\367[\214\364\bl\2" #"\330\256\275N\34t\343\343\320\20\212X" #"q\37QL\6\17Y\201E\252\22\306\231\36\354\215,\300\350\ej\365\276\3052" #"\17\246\5\17-\n\206T5\220\273\343\3416dl\"\a9\"6\343B\243d" #"\n\364\233\337\374&Z\333\360\321G\37" #"\341\243\217>\212\367\327RQ\231B\1" #"\215\250\304a\311\251\314\351\bN\247\2" #"~\b\253#\v\31E\210\0\310\225\203" #"\370\241\322\276\227\331\243\f\35\215_\236" #"\253\335\373\0\226\n\21G]<\245$\352T\v\377~\201;'\356\344A\304\251" #")\2hv\246|x\212P\326f\247\2UDT\315\367H\222G*\34\376]" #"}x\211\32\264\344\277e\32[\\Vg\227\24\256w^3\312%\367\2617G" #"\300a\n5\243`\303\17[s\304Q\341\35\4(\207\313b<\336$7\30\3" #"\215\374\345\272@e\16f\240\323\356\213" #"o\3127\2\267\264\237\21l\225\270\347" #"\243syD\30\205\237+\211\273\236\256{4VGEm\177K\b\213\257!\215" #"&\3174[\341\360:G\243\222\237'\353\30\266\207\v'Igv\201rB\207" #"\300<t?+\36P\242\354;\32\34" #"\35\365\335\32\360<\34\202\226\314k\316" #"\367}\324\373\371\\N\324e:\360\300\276]ZIv$>\237\263&~\277\347" #"\363\31\337\374\3467\321\373\300w\277\373]\374\365_" #"\3775\276\367\275\357\341\351\351\t\37\177\374q\310\36" ) 500 ( #"\307\357f}\304\2$\250#Nj\b\177)^`\311u\256{G\"\243\237\331" #"Q\340\177G\24\265\34\356\233r\353\320\276\25K\317\307}CVs\220`(\272" #"g\r\373\330}fI\250hM|\306\3540\316\275\244\e1\3671\237\207][" #"\266\204r\361\32\31\t\316\277\247\34\302" #"\345\213\365\rC\223S(\22\216\n\327" #"?\247\256y?\274\366\376\336\fX\262" #"u\230\31\n\211\254\335\301Y\3625\317" #"AJ\316N\355\326[\274\305\30\263 " #"\240\177\262D\233\276\341\5\213V\244\305" #"u\334\257_\276\266\375~\26\331\355\2" #"\324\264\237%\335\267\335{\252\245\220\202" #">6\317\202y\340\222\317$\346\371\np%\235\37\312\1\333F\0320`\31^" #"\250\25\303\21)f0\265\324%\326\213\373\220\317pd\21\275Fk\377L\266O" #"\335\213\305r\207-\202t\356~\203\5`p\0m'\3%\201\5B\332\213`" #"\216[\236\353\226\3453S\330\270\337\334" #"\27\236\17\2022\274'\376\257$\277\r" #"\245\240\376\367\377\354\237\3746o\330\16" #"\202\v`\2258$\331\241y\23Ae\325\257\323\37\320\375\22e\227\226\eJd" #"g\26\267\35#gk\335S\"\5Yk\265\316\1\245x\4\246\250R\275\262p" #"\26\224\2301G(\243R\246\260l\333" #"\206\253\253+|\355k_\303\365\3655\306\30\273\252=>\213\35TM\n:U" #"\363\373\"\16Lx>\eTKoxa$R1\16#\"Oy2\35\21H" #"-\257\237\34\376\321\273OZI\255}" #"\244`\251\226\346\267\2\227\22\317\34\6" #"8\236\1n(\305\277w\266\16\211\302\16\324@yy\257G\224\203\25\233\271`" #"\351\30\255\3465\234\16\201+1Ep" #"\365\276\375\355o\343\361\361\21_\373\350k\370\3067\276\21J\243\300Z" #"\252a~*\214vF\4\367\b\312\244\31\260\317\36\247\354\360\367\331qU" ) 500 ( #"\354\273\206\4n\225\16S~\266l\300" #"\315\360\213\257eu\24\332\2\16\256\215" #"\352\230\r\301\31 \34\234(;\326\266" #"\366\373\212s^{\217\372P\206\355gC\276Mi\27\364A\3148#\205j\341" #"\211\b\312p^\243\237AN/\244\203\254\252\236&\364\363uH\365e\303b\364" #"\4G\252]9\346\365\312z\200kIC\2\227\353]\1\b\0\355\35\313j\305" #":\f\252m\333}\372\30\254\310\205\336\177\16\206)cYN3\202|D\247\355" #"=\342\234\271y\275\232P\200\254<\263" #"\363t\274N(\367b\264\205\222\262(" #"\266&\\\v\335\235\211\335\231\222}c" #"|\376.\237+\3709m\275\343\345\313" #"\227\270\273\273\303\371|e\3736\6\n\24}4,\336\245dg\3404\31\34\20" #"\245\233\353\3636\35\316\337\315\317\354\327" #"\360\310+\316{\301\300\363\370\274\335y" #"\202&\23s\335\370\312g\204kr\271" #"\\\360\235\357|\a\2757\274\377\3763" #"\374\350G?\302\247\237~\212?\373\263" #"?\303\267\276\365-\374\362/\3772N\247\23D\366\316\b\237\31.2t6\252" #"\320f\354[Vq\257\336zO\362&\237\221\27>\6B!\e\360\f\250\2037" #"l^\317a&YF\355\372F\17)\305\v\36]?d\216\262\335\317\330\355%" #"\177\316\250\234=C\335\311f\376w\322" #"\241\270F{\371\340\363\220\366\27\243\220" #"I_pG+\344\325mI\250\37\331\at\234x5u\255g\353\374\31\271\26" #"\252\352\31do\31\226\357Ig\255D" #"\201@}\30\324\2217\235\317$\200\250\3218\6\357l_h\364\303>\237K\304" #"\235M\215\214(\237%\353\232\350\360\340" #"{\233\235\356|N\210\370\232\315\343~y6L\212\27\253\223^T<\213Z\375" #"_\227?\235\327\23!\a\177O\17\312>\201q\274" #"\311\255\366\372\v\2561\354~}\233B.(\337\371\336" ) 500 ( #"\355@\0\206\254\213\1s\216\321\2141" #"\260\254k\320:\201\331\341\200\365*\244@\232OV\3022\361~K\251~}\223" #"\21u\224\2768G\230Nn\266\323o\234AP.\254\236cf\236\334\326a\372" #"\202\245\226\370>\332\325EE\241E!" #":#D\36B\35\346\351\327\272\357\257\227o\244\224\22\\Y\322\t\4\5Z\274" #"}\204#\214C\255e\25\333fe\5\233Q\1s\360\254\355J\2734T)\323" #"Q\353\335*\25\313^\310\325\35\16V" #"pr\203\262\342\312\255Y\202\177\30\2<\371\201\0\242q3\334Q\202\260]T" #".>\231\23vT\201\3367\217,|\235\274\230\3056\312h!\255%\356\b\f" #"q\25\242\37&\5\210(MLM\224R\240\335*\250gS\370\352\0054g\0" #"}\207\304\204\243\346\335\a\206v@\255" #"W\340\354O<f\232\247\354\371n\361" #"|\342\310|r\206\263\363\31\207\4\323" #"\311\230\210\237DE\251\215$]\254W/R\357Go\32\336\265\3\303\24Q\327" #"\201\232\220\211\254P\370|\226\342\350`" #"\232\255\2\300PT\231\204}*\304c" #"\204\330\307\300\351\240\254\262\263\222\371\315" #"<Xv=\200\316\"\21\v\312\a\2030\205qh\351\244\nJ\24\306\314\373\331" #"\363\272\262\342>\236\251l\360\254\240\250" #"\30\237\255\262\177\262I\321N\341bX\237cW\312Mm&\370\30p\356\231\363" #"\237\340\250\244ztv@s\342l\221[\306\367\18;r\301=?*\340\354" #"\264\17U\224\305xcc\f<].X\317\347P\204\f\216\315\t\26\257\252\337" #"\313\345\361{\362~\36\rv\226I:\271Van\274@\23\25\215\336\332DG" #"\336\26\350\360\232\206\320\27\17\377\331\266" #"\247b\264\18\37\327\366!\243\24o\317\16\210L\336c\376n\210" #"\204\316\371\326\37\3771\376\355\277\375" #"\267(\245\340\361\361\21?\365S_" ) 500 ( #"\301\307\37\177\214_\375\325_\305W\277" #"\372U<<\274\206\210`\eV\240\323u\204\316\261\353\316^\260<\353o[\233" #"}\226\204A\257\302\300\241\351\324\331\232" #"\r\247\217d\16\367\352z\366\315\341\t" #"\6p\330s\232a\332\203\32a\254\335" #"Q/\245\340\377\372\275\337\303\375\253W" #"\30\n\374\370\307?\306\351t\302\343\343" #"#\256\256\256p\271\\\360;\277\363;" #"\370\255\337\372-\327\343{4\232\250\216" #"\375\316\344{\353\315\232\330{^c\216" #"Vm\310\210\341\321y:\356\e\317\v" #"\3\376c\206\211ve\335\241\330%\234" #"\343\214\244\332\36\231a\246\321/R\274" #"\325\346p\3\315\326[\373\241\0044\354\371>\263\374g\331\312{ak>\3673" #"\353\275\35\20\5\230\3\341\b$\212q\361\263\3H\24402\206\aD\255%\316" #"\353\30\3\354\211J\31\237Y\6?71:v\352\203RK\320\214\n\21\275\302" #"\201<\f\362eg\213\363:\220\3\313\215SC\\LN\350\370\313\314\36)f" #"\255\212\244=\343\213\305j>\336&z" #"Tg\371S\265\202\271\245Th\237\374\330\201\6\243.\320i$p\342\\~\362" #"\347k\352Q\234x\250\3\212\5o\366" #"/\346\375\233\216\246/\342#\317U\242" #"\300\230\2318\32\253\236\0\0 \0IDATu\350<{\231\26B\331V " #"&\217)\24P\243\bAWH1nqQ\261\211\207efxb\277\304\366\272" #"Hu\232M\5T\"\303G0g-\300\30\3366\r\210\302E\6R\324\365\271" #"^%\333\25\300j\275x\347\263\275\31" #"\3\303Y\37\2605\223k\2665\253\377\323\377\370\317~[tV\f\223\377cc" #"A\315\250m\333S\374\235\202\277].\306\253LB\26N\flc\315XYO" #"D$\207\366\350\251\347\237\355\363\342\207`F\304\325" #"9\234\252\306k\32}\317\177\232\310\313\274\26\25\306\361" ) 500 ( #";\303\211re\253\330#{qX\344P\r\210\34\245\244\224\36J8\21\333\326" #"\35y\233\35$\254\20';\306\26\371" #"\26\331#J\221\226\350\326\227\223\234\316" #"R\214s\302\302\24{\36:`{\243oB\346\00234\320f*L\376L\201" #"\317\350R\26`\273\247\251\334\330'\222" #"\367\32Q\247\27\276\354~\27},\255" #"\243\302\177\374\217\377\21OOO\370\312" #"W~\n?\3677~\316Z\371\234\226\270\237\230\374\322g:Vu@T|-" #"\315\341.\236\330Ba\n\363\300/T\370\34\361)3\354\25l\373\b\253\300V" #"\335\3112_\271\330)\a\0\366]\206\b\220\317|4\309\272\24aJg\26" #"\277\231\23\374vG\350\350\210\304\32\303\25qajrX\300\350hANE." #"k\361\362e\217\220\307\bD=\0204*f\3565\317Br\34\263\362n}\354" #"\2207~VJ\261\261\317G\207@2" #"\377\17\273\357\355\236\231\311\317wL\307" #"r\202\27?\233GP\37Q\210y\336\367\274\327\254\v,p\231\23\233\362\367*" #"\277\227{ \23\305\337;\t\354\366\341" #"g\202\334n\257\242\236\367o\273E\35" #"q|\345\3735G\321\332\236\21m\21" #"\327)\177\376\335\357\341?\374\311\237\340" #"t>\243\326\5/^\274\300\347\237\177" #"\216?\372\243?\302\351t\302\307\37\177\34\2017\221e:\2229(\234ru\f" #"\332\336\216L\332\272\355S\314\252\36p" #"\273\374eg\300\f\267\265\2174.y" #"\305\244B\355i\t{\324\314:\221\344\357\26\00077\327\370\263?\3733<]" #".\370\340\203\17\360\353\277\376\353\370\307" #"\377\370\37\343\363\317?\307\227_~\211" #"W\367\257\360\352\376\36\177\377\357\375=" #"l[\v\307u\177\377t\f\275F\304\263[y\217\30\270\346\375\230k\205" #"7\364Y\266\v\21l\223\347I\373" #"\303\323\256)\215\254\223\342\227u\254\235" ) 500 ( #"[\256\5QHu{)\341x-\321\207v\37D\346\177\363\177Y\227\260]\243" #"\351o\246\367'\362\315\367\35y\342\246" #"@\315q\22\231\316\375\224\25\246\340\1\25D\v*\332\1\263ib\31\e\266^" #"<\330v\312D\365\242\241\243\3/!g\305\34\264\204\b\3639\255Vg\362^" #"\2019\3414gjv\272%|\0\213\331\271\ao;\243\334\353>\372DE\213" #"\304\264?{o\t;0\272\361S\367k\244PG\354!t$\v\26G\eE" #"\3349+\5\220}\260\310\2\261bo\202TqN\257g\200\1\3\373\374\236\231" #"\241\266\363j\327+\3219\301\221u\261:\37%\324I=!\363\331y\6\266\255" #"\341\264^A1v\210k\1B?\207\257\340~E\361>a\326\235v\322\223\2" #"\351\205\255\203\325k95\357\220\315\314" #"\0\306>\350\234rn@(\201\17'\210#s\301%|/\242\332\"\2022z" #"\263\200G\230\332\266\210\262\367\v\306\350" #"\356PN\205\305\233Y\317\347\200\325\371" #"\212\376l\16I[\245\372\260\26\202=" #"\221\325K\331\0354\200\343\r\375 T" #"\261\3667\222\b\360\236\2667\204s\246" #"\202\330R\210B\333|\372\215\365\301\234" #"\312}\364\341\21\225\335\27\333\2261\352" #"\310\275J#\r\1+\22c\v%\276\354=~\220\304\34\322\216\2016\6\244b" #"\327\230\231\4\3546X\21o\212vD\1\0027p\36Z[\313\1\f\226\353\f" #"o\247b\225\250mkh\315\246\227\\.\233?\273\304\36\0302\336\275\5\312T" #"\354\244N\34\327\236\316B\36\3\252\252;#qt\0&\211\274\4''\247\350" #"\304\243\2546f{\35\21+\b\203Z\317\316\2`]*\316Wg\37%[\302" #"\341\35\315\17\322\326}/<\366\364\264\231v\r\2478+)F\352" #"\273\366O4\274*\373\347\3v\367\2747\226\246<I\263`\321G" ) 500 ( #"uGZ\275\257\23\31Gl16\317\310\\/:\344\334\a\356\365Q\261f\307" #"\200\353\5\356\225h\264\323Q\235\274/" #"\256{\357\303z\315\16\361C\16\24x" #"\332\310\247\373XA\r\354\276u\"\233\224m:C\344\237/uo`\355\34u" #"7\2\373\201\22;\a\323\337c\353\344\275P\227\5R\275@\0\323\210R\376\0" #"C\231st\177\271\\\336p\314\376s" #"\351\331#w\217\237;\362\37\211\210\344" #"\200\270\247\356\f\331!\244\363\327\2735" #"\204\357\303\212%\245\370D\"a\365\272" #"\31\223\265TL\267'\a<\373W\336\363\34t=\\.\370o\376\353\177\204\177" #"\360\17\376\1\304\371\374www\241\343" #"~\377\367\177\37\277\367{\377\347\316\341" #"\22N[\2v\23\3\363\272\251j\24tf\231\241\316c\206\200[2\321a\v" #"\366k\251\301%dA\30\35\247m\273" #"\200\16\344\30=\256\313=\264\367\317\375" #"\30\3\326\226.\235\2731\6~\346\247" #"\277\201\333\333;\274~u\217_\373\265" #"_\303G\37}\4\0\370\347\377\374\237\343+_\371\nnno1\306\210>\266" #"\bt\31\261\26Q\355\257\3267\\R" #"F\312\245\24D\337\271\206\341\324\3649m+\a\360\371>\217Nn8\264H|" #"R\377\34\367\226k<\2359\376\254Pm\276\306\226=i\303zs\303\351\2\333" #"\230\331\272\354\fn\333\266\263\27\371o" #"\245X\367 \266.;\"\246|\177\336" #"c\242\265\326\37]\2435\25\337\323{\267\302Z5\232Lw\35N\371\336!\250" #"}`\273l\346\260\373sf]A=\310\314\244\r\3108\242\353&K*\303>" #"\333R\207\4Hd\1\304s-\245\224" #"X\23\201\361\204\327\323)\265$\315\216" #"\244\201D\324\5\264\ao\v\4\227\272@\252D\233@\21\256q\5\213\367" #"\306\230`\0_\275w\353\371\352\205" #"]\320\21t\20\273\227\206>\274\257\265" ) 500 ( #"\344\202\300B\327\337~7l\275\331\233" #"\270\326\312\270\325\350W\356\214\323V," #"\313b\1\210\26l\335\366\263\26\243PB\214&\330u`\bl@\207\357M\363" #"\242i\233\34h\343|\307h\350m\v\31g\17\365\336Z\24e\226\225\34Z\323" #"\211\234\r0F\217z\3\6\267\261\247\332]G\216\235\\dYcmU\266\205" #"\223\n5\353Hr\267\234\310Bz\300(E\343_\243I\26Vnv4\207\242" #"K5\357\273\217\206\272$\344N5\34\34:BT\302!\374\245\354ZO1\335" #"n\375\314\246\362\240\242\341\347\251`\"" #"\225\274\24HIh\216L\2458\234\277#0.Vv\20\f\225\223\340\253\210\330" #"\317];8\276s\333\332.\32\315\21<\260O]LTg\276\367\230\272\262\306" #"\325\271x\205\207\330\b\335\226\230\35\260" #"Q\327{C\315\215&5\204\215\335\227\312ve\0361\25k\5\243\242\221B\265" #"\347\345H@\0}`\251k\20\330\265O'3#\3<\3709\2158\243\354}" #"u&\205\211\373\24\212U\341\207\330\366" #"!\243\243\242\323\20<\276~\215\266m\270\\.8y\32{]Vk9E\243" #"\320\255x\tDG\n\242\271=\348\34:S\240C\273\5S\202\335^\321\201" #"C\37\266\26>\370\241\16D\253E\356ivx\363z\34459\242\355\0311\23" #"\246\367`}3\325\323=\323\201\240\1" #"\312\321\250\31\256\214\34\347H>\367\201" #"\2153\226\336\327\232\25\275\345{\246\262" #"\36}\22\3609\356\270k\3\aL\210\267Vc(U\226%\326C%U\26\373" #"\376K2(\331\t\17\245\236\326\220/" #"\236o$\271\16Y\367\3653\252\311\300\352\212\n\230\373\302WF\3y.\370_" #"\256\264\315\n\216\367\222\221v\300\374j:\27;',\325\37\314v" #"Is\237\251hI) _Y\34\225\20\23\312\35\35\304\250;>" ) 500 ( #"\206\331e\261`\237~\313{'\276\236" #"t\206\213\b\266\326\360\223\317>\213\367" #"\377\346o\376&\376\305\277\370\27q?" #"\337\376\366w\360\305\27/\302\211\311\316" #"X\16<\262\23\224\221\330#j\22\372" #"\25\212e9d\252B\356\232\353\200\315" #"\327 ;&|\276\231n\244\314\316\177s\221\245u#\31)X\2421\334\266\v" #"\256oo\360\370\370\30\327yzzB" #"\357\35O\17\217x\357\235w\323\375\332" #"\252\23\245\314-\255D\304F\245\26\313" #"\235W:\245\241\347\361\306}\36\3177" #"\327\357\230\361\262\377o\206\277\365\36|" #"rIR\234\257\231\35\252\274\376\366>_/5]-\216\364-\4\204\334\1\314" #"\364\200|\275\243~\342w\362\376\363\367" #"\221b\222\235p`_\277\240j\347r" #"\3649\332\236\2371\20B\2\334\22\270" #"\323\311\373\206\245\367\341=\\!\210\336" #"\363\354S;\317\251\200\235\r8\3228" #"\313h\363\264s\264\v\2543\250\317\365" #"19\203l\347\323\nD{\263\342\251\325u\\\350^\177\26\1f\377x\17T" #"\262\17@\36r\225\2\31\216\\\233Z" #"\213\265\2635\223\335\276\320\177(K\361" #"\214\202\331)\216\250\316\331\202J^2\317Q)Qpoz\307\21Q)(^" #"\177\241}\30\35gX\241\360\272\234\354>\353\t4{<k\261\357j\303R\340" #"A:4\351\t\352\266u\361\0a\202/,\224\263}3\232\njAs\eg" #"\210~\262?cx\201\256\353N\231\272\304d\257\357\353!\16gjq'>\203" #"-\f,\254\375\340<[\307\363\225m\201k\35[\273*\26t\211r\r\206\247" #"]XY=\243C6\363\347\307\v$" #"\210\366\31\225\342\6\361`\320\301\234\v" #"\267\357\237\230#\350L4gt\306T" #"\363\262\230\343-\342\221\257\247\6\266m\263\321{\36er" #"\21Z\263C:\4\320*\30\5\300R\202Og:p\26" ) 500 ( #"\315dg\302\26Mw\317\2613\22\207" #"\b1\32\303\27\253\210\246\263\310\24\240" #"\31\201\25\245.\20\316f\357=*\203g%\361\236\2@\204\326\263\243h\3158" #"\251\234.E\5U\212El\316\b\366\266.\303\235\24\4\307\222Qt\26\264#" #"\357\321\4g\217\b\205\222KEH\300thZo6\205f\307AK\212\245+" #"\256\257\256\360\364\364\204\363\371\214e9" #"\241\265\26\21dscgA\214N\31\363\224\204\24\3619\341\212u\261T\236\5" #",{\0366\17\213}\357\260\352ge[\234\22\231\200\354@e\231\315hBF" #"2\362a\312\223\206X\370\2001,Z.\366\275\3309\17\2121\20\377\2252\v" #"\314\362w\0052\307s\2k\353\326T\321\260/|86\227\347+?C\e\316" #"!\r\347p\266\26\nd\275\260\310P" #"\3\365\322\204\216\243\0244\373\305\3160" #"\276yV\366S\217\340k\303u\255\265F\372-\306\341&#LTwVB\317" #"\263\367\306\314x\377\236#\275$;\341" #"\331\341\315k\244:\v((\313\21\244" #":/\330P[\276\177\366\235\274l\315\243H\17R\235\216\262\226b\205zjA" #"\256\252\17\t\240\3\341\337\3\325\220\315" #",S\274\337\221\236\235<q6\360\357" #"\335\372\356~\374\361\307\370\215\337\370\r" #"|\360\301\a\20\21\374\361\37\377\261+" #"\377=\"L\376v\316\fe\31\251\265" #"\274\261f\300\324%\274\3461\200\231\377" #"\337\v\2210S\264\314v\210w\325\321\204\344\344}\312\373Ukeb&\241\216" #"\3464<>=\305\363\234N'\274~\375\32/_\276D)\5\247\323\371\320\263" #"\371MN~d\4|\377\252W\250C\304\373\217\357\251\n\307`\222\347;\2031" #"\307\275\203\247\316i'\5\330\2655\243\274\356\3\t\354\3444\a\34P" #"\265\251m\246Jbm\213L\271\315\272\367\310\263\4\366\357\313\337C]" ) 500 ( #"M\271\347wf\235-b\316\251z1xu:L\16\6\307`+\307\331!!" #"\276W\341\35\203f!`v\250T\r\310\340uF\320\372\6\330**\262:\t" #"\200\262\363\221R\3262\321v\276\317\202h+\344\22\225\310\366vf7<\4)" #"\342\226S\4\265,\336\326S\34\260\221" #"\240\5\32\335t\246\336\373\260Lr\323" #"\21\331,Si\274\367\31\\\330=\317l-\a\345p\260R\266;\266\370\26\b" #"\257u\261\357\254Vx<Z7\316\267\335\270\201:E\200\"\270l\233#\264\324" #"9\305{\361\276\31\314\232\363i\231k" #"(\203\337\251\237(\367\352\2471\313\252" #"\5\16\5\213\323kT5\2/(\366\316\245\314@6\373{{\177\6\2731\331" #"o\376WPj>\e\307\202\347}\340\235A!f\201\333h\330z\263\332(-" #"\320\1,u\365u\246\0220\211\364\346" #"\343%\242\237\34E\25\261\364\212\215FMH\256/jk-\4LU\375\313G" #"pes\373->@N9\361\25\312E\r\306\257\265\240\0266\336\336\3632K" #"1nbw\324A<*Z\275Z\35Z\240\233\342T\316`\32\207\25\221\31i" #"\343\375B%\32\260\333\301K-rd:\201\344\360\332\32\209c\377\341y\310" #"k1\301\2471\344\205\24{Tw/\234\5}\\|\215lJ\26Q\4IF" #"\203B\272\226\311Y\34658W[u\26\0\230\202\nY\217=q]\233x\306" #"\333Ny\362\273xm*Ms\334\307\ec1m\17\226\30Z@t\226\373\243" #"j\374Bu\247\237\3\30\252\247z\372\245M|Du77\35j\310\345Zg" #"\252)+\375\245\246io}\246\17)\247\371\347\374\271\274\a\271\270o_pe" #"jS\330\5\301\351\0B\231\365k\331\272\361\232t\232'\237(" #"\177\307\f\nz\4.e(*\314\350\261\247!\25\2\a\16\304" ) 500 ( #"s\253!Vk\2558\325\352\303\31fQ\250\304D\ef\260\24\332;V?\347" #"c8\342\345\23\264T&\215\247'' +\250\34\244r\355\304\35\t\366W\354" #"\276\316\326\363\331~\256\"\220$\357u" #"\330\275\4\367^&\307\367\30\374e\307" #"\232\337\31\3476!\265\241\370R\20G" #"\31\310\317B\371\217s\275,\330v\210" #"\203\245e\265\230#\316\nh\205!M\21d\273<\6GUe\267\257HNz" #"\16\346\363\272\345{\235=\243\a\336}" #"\367]s\376\36\37\361\365\257\177\35\177" #"\363o\376\34\266m\303'\237|\202u" #"=\355\3165\277\317\332\rNJ\202\245" #"\205\355|\367\256\273}CZ\237\331\246" #"j\312p\16\26\03001\310\244\201\257uq\336\37bM\315)=\305g\351\0" #"\220\2G$v\f\v\314Z\357\226\271" #"Y\26\233&\230\234\313\373\373{\334\337" #"\337C\25\370\305_\374\245(fvU" #"\20\367\2777\212\323\251\350\354(`\337" #"\272\323Q\331\311\245.\344\365x\366\371" #"\342Z\214\321\261\371\304\262Zm\0Jk[|\177v\266\363\36\317u\246\fx" #"\347\231\342m\345\306\200xzx\242\251\32\367\302k\346\276\3429\0dvL0" #"\35\257\274\27G`\211\237\347\357V)>\22\231g\305\6+P\266\363^\266\316" #"Iy%(r1\2312\3]93\260\265\364\354\200MA\245\256\332\333\26`" #":\364\344\301\236\317's`<3I\376>\277\203\317\236\317X\0\eb\353\3" #"5\364\267\367fu\17j\310s\367bKQ\373\2314\203\255m\250e1G\311" #"A\27^\2274Db\"\341'\245}10\204\177\237\262\311\275P\367\275\0\204" #"\336\344\260\232\350:\241\231F2\301\264" #"R*\266\16\214n\237\315\31\327\f\340\0\346C\321\211$\226\252bk" #"\271m\233\r2\21\327wc\352gC\301\23\245p\214\340\371\326\262o\251" ) 500 ( #"\312u\247-#\260\222\345\224?g\252Fq]\333F3\207=\262?\6jR" #"7Q\226\217\200\305\24L\263\225\313\272" #"\0\302V\236\202\241\315h\260\321\273\262" #"X\372\211)8\34\224\a\225vu\357y$\203\305\207\244\260\v,\245\315h\357" #"8\3060\e\254\f?s\243\231\346\344{Zkh\275\231\343\334\254\260kYL" #"\0{\237\357\257\305\24X\360I\2079" #"%\352\316\350\fD\225\362\2657\340\336" #"o\326\332\276\314g8\36\\_\327X\3709Ej:\227\303G\374m\215\35\2" #"\274\312r\231\302\233\237\221\233\237\333\361" #"\24\251\36\215V\347\355\354\v<h\300\r\t\343\304,\336#\r*\5\314gD" #"\303\242\301\334`\237\235*\230f\317\21" #"\31\277#\337o\216\322\372\340\204\2374" #"\265\253\317b\221\313\345\202uY\361\364" #"\370\30h\337\342)\245\22\216\264\5Z" #"m\333\234\2720\302Q\234\207\3079\324" #"\213\241\201m\364\340[R\261Uo\352\37\216\204\037560\317\207#\357eV" #"\216\331\21\311\177\213\263P\200\313\326l" #"\314\247\210Q{R\353\252i\324\250p2/}\246y\216Nv~\211\237\263e" #"] T\302\2(\246#X\0273LT\356T,y\262\f\240!\3\326\223\227" #"\305\226,\0200\352\213!\275\200`X" #"\221Y\272\217\374/\357\365\210\320\1{" #"T\231\235\rN\313b\335\35\312~\32\25\337\217b:cu\a\207=w\263\243" #"\221\25#\345\353\350<\304\365\\\332\305" #"\235\3460\350In\217\316\345\fp\25" #"+\357\267z\321\206H8\337\226\25L\312\0320\376\271\377MU\240\315Sz0" #"\277o`*\373\34\310f\235\231\365\237" #"\252\342t:\341\366\366\26\347\363\352\205" #"L6\245h\333.\270\276\276\t\216\370\266]\302\370\21\19r6\355\f" #"\323yG\222\a\304\275\360\377\231l\355\35\215\243cF\275J}\300\367\261" ) 500 ( #"\351}\266\27\263vb\16\235\310=]\3\201\36^4\t3\302\245\326\bl\317" #"\3473\276\370\342s\274\373\356{\0\254\202:#G\366,{^\375\21\1\35\260" #"\264\260\361\35\271\27\226\275\312H{>" #"\273\\\273l\e\270^\"\341*\330\177\3212r\29\371\32Y\317\344\337\213 " #"\326d\352\315\334\276\261\355\236\205\240R" #"\226\333\330o hz\271\250\222\347\355" #"m\303T\262\r\352\335\271\233c\26\224\25w|\303\1S\vf\4\226\342^R" #"f\340\370l\245\314\276\346\241\213E\346" #"\230m\265\2027\256\373\361\271\216{A" #"\207\272\217\26\264\275\254\247\217\317\226u" #"HL\30\23\243\3141#\232\373\266\326" #"b\305\265\23\5\366=R\361\211\235\346\0242K\223\3\204\214HSo\27\314." #"*\n\r\364x\347\340\0352\n\\3\312d\310\\r$\355\336\354:\255\317\1" #"8Y\327\315Q\333\354\352\322\223N\236" #"\24\22\0356\351\255\224\331*S`\275" #"\240\351\307\361\36\233;\257\242\360\226\206" #"\3563\244\265g\226.\2)\347\345\"" #"\211~>\273t\306\206\300\206\35\271 " #"\23d\314E\240\200\30\335\364\200\32g" #"\371 \340\3207\177^\247\213\26\251\250" #"uEQ\325\340\4\r\235\351\303\374\312\b\2229\243\3734n\244\337x(\300C" #"l(g\336<~\216\2\331Zs\"\374\36M8*\211\336\275\315\307R`%" #"\210\206\220.\2539\e\334P\3259\301" #"-/\232\245\5\311\21\246R,\301\355" #"\t\0050\314\321e\353\23\270x\261\365" #"T\b@v\316\17\317\224\5\327\224\3" #"\237\215\375s\337\216(\230\263\275\331t" #"\17\265\0227\21\211V\31Rg\232\336\212ld\217v\302S6.\374Dy\265" #"{1\n\253FUv{\21N+9\226\376\312\350D~\316\214\244\21%" #"1\244\275\303:\r\314T\r\215\234\365" #"O\336\274x%\247\226\275\240G\206\21" ) 500 ( #"\307\207\242\224\305\371\250\211\356b\267\35" #"\202\3164\217\216\231R#2\310T\26[\323\345\236\226os2x\275\343sf" #"\264\300\326\307Gb\26Dw\207\226&" #"&e\204\201\342<\247\26\251\e2\357" #"\307{\bv&b\344\301\205\27\362\25" #"\257\316\347Z\207c\324\354\271\217\216\37" #"\327v\6g\35#\241\217D\233YHA\207w\333\f\375\353\275c)%:+" #"\34\221\231\274\216G\204\225\347b)\223" #"[\273\224\262{\306|>\362\32\307\375\35\276#\313J\168v2\237\270\301|" #"\321\341\25\0\232Z\vf\236\364~\235" #"\346x\344\2555\364\324\37\222\306D\322" #"\177\320\34\250\32\352 >\20d\365\200" #"\313\273\356\354u\247\356\r\365\321P\\" #"__\343\346\346\6\255u\234\317\253\257k\365g\3548\235\316`\273GI)\321" #"xn\21o\350\357\335Zb\235\335\361\3635\31\256\273\25s|f\350cf\233" #"\260\17v\216A\332<;3\220\310\301" #"0\203,\216\360\24\17^\215B\221\337" #"\17\\_]\343\235w\336\301\371|\306" #"\367\276\373=\274\370\342\v\374\341\37\376" #"!\376\360\17\377\37\264\326puu\205u\335;\32\324\345o\6d,\22\24\0" #"\326\376r\266\36\344}\23Y~\223Z" #"\227\203\270)\203^T\212\331\201\206\324" #"\265\211\220\316\342\307,+\273\340.\235" #"O\235\200\336N\346y\177\331\376\345\342" #"\234cJX\334\310\207~\367\353\35[\347\3454s\316Z\261XH\304\320Z\216" #"\214N\227\233\337'\262C\215\247\263<" #"m\207\25o\357\235V:\2509\30\313" #"\177\217\214V\235\305F|\225b\364\204" #"\340\315\227}\232>\a\22Y\376L\336" #"\366\b3\327\2417\263\241\336\222uv\211\260\324\243=_qy-6e\264\217" #"\201\255\315\16\aY\337s\215\24\206,\326\350'\313\353\262" #"K\0\342\371\2172V\313\36m\27\261Z\235R\v\26\261" ) 500 ( #")uCm\b\217e5M\337\260n\"\n15\5\r\260\216M\25\213\265\247" #",\253\313\212\263\252K\201b\236\303\241" #"\23\35\216{Su\264\333\34\354\371=\272\223_\366\\\16\371\2\274g:\302V" #"\r\352\26A\310D\2341\331\17\277\2125\bj\325\2647\224\231\326Z\f\a\e" #"\36\354W\324\340\b\333\373\2069\272\333\266E\265:/\24\250hR\4\214.h" #"\330\217\302\32B\3376\264\215\212fV" #"\302\347b\264\343\206\26)\236Z5\201d\25%\323\2223z7\356e\353\e " #"\336\25\301\243\253\266m\341\331g\343L" #"\201\"\362\250\303\34\332\336\25:\4\242" #"{\236\255\b\323G\342i\360}\205n\376w.f\177\253\340\27)\236\16\336\0" #"\16p\360g)\25\220\242a4\355 \272\360\303\34\266>\32x\346\351$\3239" #"a?Y@\203/\b1\a\317\376\255\221v)jk\325.\e\362\b\\\273\327" #"\271\347\331i\312\317v\214\240\251\34Uf1\211}v\211\317r=>\373\3543" #"\234\316'\234\317\327\310C\23\354\373\6Hx\27\1\24\34` \320T\370HA" #"\247\201\241cS\245X\370\240DB\253" #"\303\251\305Q\360\36\270ZV\372\334\243" #"\214z\34\243E\276/H\372\321H\333" #"\271B\354\223\213=\"<\25\271\27\256\214}\21E\216|\307`\17\326TX\347" #"\213\241j\205;\246)\366S\327V\347" #"\231\23\25\317\306\337\356\275\0000\231\266" #"{\261\263h\324\r\356\223xt^<`\22\227}\243\225D_\354\244\330s\300" #"\232\317\357\30\336a\305\357\237<\354\243" #"b\347\0323=\273TvA\230\\}\276?\262K\376::\245\374\376c\232]" #"\323\371\204\352[\247\240\315\275\236\362\230" #"\367\17\250!?9\23Egy\32\344\n/\27\301\30\246\254\233Z" #"\373\262\342\205\242\264\6Gt/\353\330\374z\376\3749\306\30\270\\\266" ) 500 ( #"\335\3713\307e\340\325\253\373\244\17\1" #"\343:\246\216-\355\b,\314T\"\235\377*\2m\r\242VemD\27;O" #"e\0\332:J\362tr\200\221\367\211" #"{\220\203\340\234\272\267\275\224\b\\\363" #":\360\314\214\241\370\203?\370\3\374\350" #"G?D\255\25\337\371\323\357\340_\376" #"\313\377\r\337\372\367\337\302\227_~\211" #"/\276x\201\177\362O\376\333\235,1" #"\270\346:\332\277\r\255\331}.\313)" #"\241f{}\304g\341\347s\347\36\352\303\275\3361N \244\340\264. \372J" #"\231\261\307\242\316\230\16sv\334\354\236" #"\367}CM7\354\371\333|o\326\25\307\263\227;\4\210XJ}\3536\272]" #"\361\366@1\337\307\221\347k\216D\235" #"N\215H\364:\315\301\216!\233~\217c:h\331i+\36$g\232\37kn" #"\6t\327[<\353\20fE\337F1\"\202Y\312\233z\233\347\237r\271G\324" #"\211\236.\361\f[o\321\263\276\310\36" #"\341\266\367\230\335a\306\2608\257\265V" #"\3\34\362z\354\234\373\24\0v\fl\321\261\252z\256b\362c)k\31\325\345" #"\276\360\331C\327\251\6\342^\376\177\272" #"\336\255I\267\253\272\22\34k\255\275\277/\363\344\311s$!\20BHX\b!" #"\214\355\200p\200\201\360\275\312e\273." #"~\360\203\303/\355.?vT\265\177MGT\204_]\325\355h\363\344\212(" #"\277\271\333M\323\2306\27\227\301\230\266" #"@ \201\5\342H::\327\314\374\366^k\315~\230s\3145\367w\344$\24" #"H\347d~\271\367\272\314\313\230c\216" #"\2315\200\256V\235\20\31`\207\333\304.j\215\262V-D\364~)\262l`" #"J\325\356l\215\225\364\271\304\2\344\330" #"\207\344\340\213t\37\312\224\a\37\1I\200^\5\275\1\t\5\322\22 \31" #"\275\205\206I\213U2\22R1\35z\3\245\"\37\e!i\212{\22\343" ) 500 ( #"\304\230P\365\243\237o\255\241\325f\317" #"\252\325a\35\v\255\225\374\34\365\347\222" #"\235\216(\325\223\222\361\22\223\316\252\347" #"F\373\207;\264\336\215\262\220Q\246\2" #"\216\361\335L~\262\214\220MY\224\355" #"\322\346\2601\"\216\201p\\\360\21\\" #"\212\a4\243\371\301\2\22\323\240\205(" #"\227\4}\220\361\343\5J9)\267\254\363\200g\264\325\2da\246m\245_\27" #"\205\307x\a\0H[\344\214j\17t\236\f\270\221\22Z[}\212\0263]A" #"\37\a\17\243\214\234\222\6\340\20&\27" #"\360\313!&\25\246\350\202\32\372A\23\20Wd8\324\305\326zL\ei\301Q" #"\351\355\210h\231\256\323<\317\236=\321\2300A\210{A\243=(\17\312M&" #"b\316Cz8,\312\17\353]\313\360\200\275\243ZL\245\36\304R\232ej\275" #"\201\"\337\224\230\212\a=%\345\336\305" #"K\31\35\2\0\343\233\5\303\34\22\223" #"\210@\321\361Dg\3033q\354\374\22\266\243A#\25\"~\6\317\357\326\321L" #"\266\267\34\366\220\240\322:\352(\243\241" #",\323\214\324\5\251\v\320\222\a\253% 2\20`\266f'\337\23<\32\204\350" #"\327@\326\0m4q#\346\310\213[0L\363\344b\376\325\270m\261a\356\330" #" \3FC\201\225\243\230\0b\234]\0C\257\27\303p\361\363i\2036\1\224" #"\5\3401\230\216k\37\2039M*\323\220L\v\301c\361\304e4eQ\332)" #"&\351\333\4\347\321)b\fj\6\32Ga|\rn\1\240y\320\243\216\201\343" #"\202y&\"\177.~6\237\241\265\206\363\363s\354v\273\261&]Q\234\307o" #"\334@\r\34\336D`\240\331\264\307\243" #"\317\32\325\217\t9\1sX\233\304s" #"\223\254\273\237\201\35\254\0026M@\311\336(\303s\34\e\300\216\337a" #"T-\266\374@\17j\262EJi\234c\255\224e\274\372\352\253\320\370" ) 500 ( #"C\317\332\351\265S\34\256\2641\355\306" #"\215\ex\346\231\2477\301\35\327\220\rk''\247\250\225k\262E\212b\2620" #"\336cTP\342Y\341{\304`Q\203I\356\243\370s*]\214\1,\e\271\206" #"\344\3216\250\246\324_\ft\230\0\351" #":\356v\352\213\3479\372\222-z\36\327}45uH\326\2222'\301\305\177" #"\216\203f\372\4\336!V\331z\267\352" #"\230\214\340\253de\253\247\234Q\f\371" #",\244\341\5\204\231\357\351\1u\267$" #"\35\333\4\323\375_\260\225\307\225\216(" #"\3116hK\223\16\2249\272\2639\17" #"J\224\365\252\333\317\233\312\0b\362\f" #"o\20#\35\201?\257\201\236x5\2034?\261\211c\322\273s\2267r_\366" #"\305\317a\260\2501C\301Z\327w\365U\361L\362\235c\300\357\266\320~wJ" #"\32\274uk~EO^=+\226,\246,hRuP\5\266%}\367\217\"" #"\20\267[\332P\356\347>Y3t\357\206\201\20i6^l\32\201o\261\212\210" #"@\375u\274G\363<90\263\256+\4\360\306\352\326;$o}\257\356\311x" #"\306R\212\366\247\344\354q\"\3175\357" #"\276\376\236y\363g\3634i\360\335i" #"\273yO\23\362\361\1\215\360>\277v\373\335&r\216\345\3\376\fl8A." #"0\376\"\320eL\tQ\373\226GY l\00479\32\205H\227\210F\311\35" #"R\322\r\234\362\4\2105\264\324\346$\365\265\36\364\275R\366rh]uSk" #"\255\233\201\23\0|\263\270\269\3471*8\212K'\325\tUV\251nv\253" #"\rI\212]\214d\324\a\355\372[\254" #"qA\304\312\334\322\235\303\270\324\305\20" #"\266\252R$\242\323\323\22\3643\22\212u\210N(y\302\3328\25H\3\261x" #"I\2102h\3672\347wk\240\310C\21\17?" #"\rC\314.\271\27\307\310S4D\343\357\267\210\201" ) 500 ( #"r\200\307ha\230\303\274\377\340\36\22" #"\224\330\177\375\372\265\241\272@\231\22\331" #"V\22\270\337t8\261\351@\215\225\31" #"\212<\27247%\251\256\\\362\336\242\24\3200tQ\372\213Y!\203\251x\276" #"\350\373\262\0051$\307\37\227\353\343:" #"\34g\351,\35\3\324p\206\363\224\211" #"\32i\265\200\211\4\233$\273\375~\233" #"\240\303;\227\6\t\206U0f\375\0\220J\3318\203\270\207lL\342{:\252" #"\224\22\304\325!l\237\3RQ\304\2" #"\323\260G\374\32\301\f\2\327\23\310\306" #"\243n\34198\340\240\333\375\341zml\b\367\337\f8\367:r\304\343Z\307" #"\346\241\336;zR\332\1\357\305@$" #"\4\350\212\214\3179#\233\t\317\5\241" #"\301j\4A\372\\\333\363?\234\222&k\321a\361\377\351\20D:\332\272zc" #"N<\27\361\254\307\340\203\1\b\277\367" #"\342\342\2\"\202\375~\217y\232\220K" #"\301\217~\364#\234\236\234\200(\264\"" #"8\335\23\34\216\\v\273Y\212\a\371,\v\n\317-\f\25Ch\374I!p" #"i\315\366^4)\365\347\325\252\6\327" #"\235\345C\35\265j\345}\a\37\272\201$\206\236\312XO\236I>\353g?\373" #"Y\\]]\241\265\206\303\341\200\313\313" #"K<\377\374\363\370\314g>\203\377\360" #"\37\376'\234\235]\e\201\277=\300~" #"\277\307\27\276\360\5\374\347\377\374_\360" #"g\177\366g\330\357\367v\276\341{\271" #"E\351\267\317\335{\337\310\327\215@^" #"\373\f\212Q@t\375\330\314\233\260\262" #"|\e\300\0036\216\261B\303\211|\334" #"c\255<\222.\220\354\263\31,\361y\264B\260,\243a6\236\357\370\25\317?" #"\375I\312\243R\22\355P\374\214hg\371\347\374\273y\236\255\2110(7tq" #"\355\355\236\224\363\334`I\v\306:\37Wj\0x\23\23" #"\357m\t\325\223G\22\211`+\342]Q\333l\234\336\256" ) 500 ( #"{C@\205\277\227{\334!\3467M\371\300\355|\325&Q\fe\221\221\206o" #"\325\20b\320\326\245\215F\352\256\206P" #"\346\343\350\244\0\0 \0IDAT" #"\371\266\333\365\215\340\220R\5\354\375," #"\260\327\367o\16\372q\377\242/\216\361" #"W\254n\271]\204N&\323\330\240\241dCu\223&\325\252n\263=/\232\214" #"\250fng\322 \202\336VC\264\267" #"\212\t\"\332\237\220Lw\27\26\373\214" #"\21\276:\310\204\2111\215>\275\222\307" #"R\341\354\272\326-F\343Z<\327)\217;\3065\243\262G\201R7\220\222J" #"\205\206\275z\2675\214g+\376y\255" #"\25\23\377\"\376\245\303\312\326E\255\374" #"\3308)j4O\34\227\3\263]8\376Y\24\17wg\5u\234\255oK\377" #"\261\2543\317\363\206\37\32\365\325\324\210" #"\b\346<#A\321\16\21\350\345\353\326`\323''wO\323\344\320y\312I\321" #"^l\3\270c'\312 f]V\224\240/\251\306\2748\312\333\225\330\254\243\351" #"\304.\254\241Y9g\24!\217,;\372\326\232M\235Br]b8\257L\200" #"\244\304y\226y\0X\0\247\32\203\307" #"\250\n\203A\37f \32\206\307\3\27" #"\3272\32\246\222\222\357\a\2162e\277" #"\360}K\2\327\216\323U3\344`\260\0\240\326\3(\261VJ\306\375{wq" #"yq\201\e7\316\261?9\3612\265\"\343E3G\21\324uU\221oQ\203" #"\"h6\2r\34\342\21$\362Rl\313\301\255Y\247jk\220\2340\331(i" #"\217Z\21P8\f\364h\243b`WW\267\332\220\237\300\325t\203\220\343\334p" #":\370\200f\246dg\244\207{\2\333" #"\3\230\341\243\314\325j\211\v\2334\4\"\303IO\26\304lP\32d\345\35\326" #"\252\353\4+K[0\354t\23C}S\"\355\302" #"\336\320\222\316$&\371\25\214\225\257\205XW\277\b" ) 500 ( #",=v\304v\254\247%\277A\274\e]T*)Q\200~|/\317\331\332\232" #"5\275\f\333\323{\367\204\230F\360\330\21F{s<\226\\\354\214\327\2566!" #"\236YRj\252\225\262&$k6\t\375\5\f\30\\\225\205\350{\4\2F\311" #"\\\237\r\232uXp\204\244\177&%\3G\211O|\217\270\3261\30)\245\240" #"\255+\246R0\3153\244V\274\362\352" #"\253\370\333\257}\ro\334\272\205\253e" #"\305G>\362\2\346y\306\325\3410\22" #"v\300\22\bK\202\355\240\265\224\220\231" #"\324\351Ka7\317\336\213A;\256\274;M\2604(\266\221\251\335\32\255,8" #"\356\235\316_\355\325\2703Z\205\232\246" #"\235\6\26\275\373Y\36r\213\202F^}\32kRk\305\v/\274\200\367\277\377" #"\375x\345\225W\360\233\277\371\233\370\304" #"'>\341\343\177\227e\201\264\216i7\353yU\234\30\265V\334\276}\ew\356" #"\334\301\343\217?\376\210\355z\267\240\312" #"\327\330\224\3z\357\256Jp\354@\243" #"\335LI\313\260I\324\177\304;\300{" #"\225,\320\257Um\325\240\334\351\337\353" #"\357\345\304\310!\373\247\276m$\34j" #"34\21\331\357\367\233w\210A;\317" #"\r\177\27\21\301\355{n\e\356\342\232\247\264E[\325WgP\21C\355D\32" #"\224\305\340\17r)\250k\r\303\24\266" #"@\1k`\233d;\330\306\370\214\321\36G_\314\363\211\224\265s>\39\357" #"\301^\211\r\30\3M\320\221m\237\220" #"\221\213\250\37\311\263qK\223'\251\307?\257'X\3S\366\343 \374{\231M" #"\331\250'\2474\321\266\254\353\242U\223" #"<\3\tH\322\261\233\262\323[\364\375\224F\26\203:\257N\266fv9\5\237" #"\242_\274\253\2657\35Cl\376WRr\375b\341>u\1\314\357\252" #"\377\22\263\375\6\310@\253['';\245\22\231o\235\247\331\2244\6p" ) 500 ( #"\325{G\311;\r\250-\26\212\367\19\331P\250\255o\364X2%\364`\327" #"\343\31\214<\\\351c:\255\2\240\n" #"b\306\375g\243\352\361\335\344W<O\307\361)\377{\242C>,\213g`\272" #"p\241\t\b\n\233G\243=\317\263\37\310fN+\36R\36\340\370g\274L\245" #"\24\254ud\305\221[\23\3_\276\0%\2254#0\2229\22V\251\230$\253" #"f.\222\312>\225\254\243\357\340\376\307" #"?\a)\1\315J\374\206@\304\0\307\35\256o\270\225\321\233qE\222^zr" #"\225&\203\312Q\249\325\361\275\r\322u$ 3\30*!\314s\261rN\306" #"d\a\245g\350\370<\313\222\v\250Y\250C\b\\\364\207\250\210\361Y\265[w" #"\273\371:\221$A\301\2\335\327\34\16H\354b\367\300^0\f\"\266\215u<" #"\330\261\243R/\241\"\221\303\201E\203" #"V\354\371\364=\257\256\16\230fuxy*(S\261\362\346\344(g.E\233" #"\2560\320\246\222\222\v\207\363\237\r\212" #"\346\311\301\340'\362bPe\301\245\271" #"\204Y\263\362\304\246i\322\221\264Eg" #"s\357\367{\227Hc\"\302\3519\275\a\4.\256M\322 \251\371\0\3A\t" #"\bs,\365o\221\237n\211[\314\340" #"cG\272\362\272\216\223\231c\243\\\351" #"\24\255\274\223R\32\372\270\26\0343i" #"\215\350&\357t\344\245\" \rq\237yv\375\3177\t\303\26\221\1\340\374\\" #"\336!\376l\244Sx@\21\356$\e\244\374\373\202#\242-\341\272\306i8n" #"\f{\337\214\27\346\32Gz\203\376y\265\217\36\224,\276\347\224\225FQET" #"-\302\3\265m\325#\205\0\215\16@\334V5Lf\177\\p=\4\34\\\267" #"h\214yNX=\232\347\31\227\207\3R\316\270s\347\35\374/\377" #"\351?\271\243LI\371\273\237\372\364\247quu5\370\315\244\26\244" ) 500 ( #"\4\312\311E\364\204h\267\16\363\261\275" #"\247\255\203&tk\255\232Xt\252 " #"\30B\a\243\244\245\204\224\4\331\24F" #"\326VU\353\23\206\372\272\235\355\360Nw(\335\255\233D\21{;h\253\"r" #"\25\223\366i\247\25\226\303A\253r\323" #"<\241\265\25%i\220;\231\202\314\355" #"w\336\301\253\257\275\206i\232\360\322\307^2u\205\243\3047?J?\321s?" #"\2\254\b\b\250\315Q*\36G\217\263" #"\321\205\315D\307\1\34\23Z&\315\343" #"\214\16_\230\215\337O\272\335\30\373[" #"\300\3069\277G9o\316\b\203qo" #"\2729r\366\361\216\304@\230\367\305\203" #"\323\340\207#5P\337E\375*\325m" #"\349\353\202\275\321\317\274\374\16\341t" #"\2S\34\31\250\244\237k\373y\3456" #"\253\215\347\320\4\226\347\217UT\30\354" #"Q}\202\347\203\203\t\24U5zJ\250\256\261tO\273#\200\r\252j\200L" #"\332\324\235\265/!\271\336\27@P\327\357s\325~\221G|\215\4D\335~w" #"\364\211\200\252\e\260h\321z\363\211m" #"\254w%\273?\"c\277x&\371\276\212V\303e9\305lh\357\335c\263\272" #"\256\312Z\2500\300\211M\367\224g\214" #"\266\312\232\324\372\254\352\21\26\2\211`" #"s\357\20\336\225\347F\375I\267\211\256" #"\224&\343\236\215\367HF\323\352\6\n" #"0A\240\206\275\216\a\237\36\0012\371" #"\357TQ\202\201f\354\203\31\211\0270" #"\207J\327\361\371~$v\v\177\26\223" #"\250IG\345\212O\3\211]\271\374\341" #"\30\2613S\346\1-\323\204\34\312\16" #"\374Z\327u\303\355\214\177\37/\346\273s\nGp\0323\2~\257\316W\257\312" #"\355(\23\320*\220ud\351a]\201D\361\366\204R\346\3019\316\312\271\21s" #"\264Z:\n\245|{\307)g4@Q\4k\0\321\240" #"A)\nb\250k[G\306\276\333\355\234O\272\337\355ud" ) 500 ( #"/\262\216\262M\32t\257\313\320\242\254" #"\265\242L\223\361ylsD\234\e\271" #"!\272\353\202l\16\244\226\327\22\200\214" #"\222C\6\203\261\3319s\234n\335\4" #"\270\361\0\320\341\267\326Pv\23r\337\6V\307\03170\34\3y\214[N7" #"\347\210\353\b\327\353\327\257\373(\335y" #"\236-\240\244J\303\330_\376\236Z+" #"\246y\306\332\325y\306\344ms\31\311" #"\223\232\264\254r\\\302\340;\350\376X" #"3 \224?\364\366\233o\341\313\177\375" #"e\374\350\307?\302cO<\216\337\375" #"\335\337\365\213\247\27r\262\244\202k\250" #"]\3330\3Z\315\1z@\226\322\206\e\304g\215\317\244\377O~5\307r2" #"\241RC\251\373\261\225 \343\232\307\317" #"\246q\347x\345\211\347\331\220\314\326\32" #"\232\f\4\361\221$\262\17\256\274\210\0" #"M\23*\376wl\266\322\217\25$i\220#-\340MB\264\256\230v;\325t" #"\334\240]G\235\265\334PsH\255wL\266\366q\355X.=6d1I\363" #"\300 \rY%\"\4\361wr\375D\262\243hzNVL) \312\30A-" #"\327N\365\222\267\312\17[;\246IN" #"\357\35\273R 9\243\240\243@\371\271\\\255c#\35\327\30\200+]<\270{" #"\27_\376\322\227pzz\n\218:\310\246\333\237\376\351\237FN\t\373y\306" #"R\265\211X\203?S\347@hj\1\f\1\5\212y9\261\347\342\372G\373\f" #"@\e@\245\331\0\v\255f\320\21\215" #"\362\276r\247\225\302\5s\250\326\353\20" #"\220.}\226\n\"\344jg*\246\254" #"\232\3031\260\323\0\310\22n\267\211\372\26\322\5y\316\6ftt4`\236\361" #"\360\236\322\242z\2\346\335\16\265[P" #"\225\224.\24\3211R\4\204\357ag\246\262\362\341\0M\250\36\360\303\r" #"\224\330 L)\322\230\6\247\237{\3135`\262NJ\204Jm\216\241L\212" ) 500 ( #"\6R\25\250n\357T\e}\23\307\16" #"\234\347\217\367\201\0016\177.\276;\237" #"\233{\35\325\30\342=\375\347|5\272\352F\347 ]\325\223%\0f;\0\f" #"\364\263\f):\236\27\6T\321\237\307" #"\177TJ\217\r\354\360\340H\22\3X\240K\303\224\262+\v8gT\17\241%" #"\326&m\270\237P\253\5\307\200\352\315" #"&V\222\267\bu)\305\201*\230\257\367 \232\3018\240\b&\266\324\n=\267" #"\206\240\26\365\25jG\307\310\370d\322" #"\16\372\231\303\26s\2555?c \327" #"\241\356%\371\35\360\244\247+O\330\317" #"\242)\244$\31\t\370\361W\316\31\265WpR\333\240\317D0\243m\354\21\23" #"\226q\236m\310G\2\3200@\n$\235\242\vq@\21I\206*WKHi" #"Fo\325\1T\2/\261\371\333\330Q\343\274A\327R\232N\270#\305\252\344I" #"A\315.\e;\375n\0\36\367\215wf\232\246Y\263w\351f\324\310\255-\233" #"\213\22?\220%\374$\202n:\256l\376a\326y\334X\2\214\r\363E:6" #"\376\246\343\307\337\31\3\334\210\36O\363" #"\f[^=\304Pg_\335\300p\230\202\276\v3\252\336\224\23\332\1o<K" #"&#\326\215\274\316\237G\257(\263\5\271\376\354\31(jx\247\\ mdO" #"o\277\3756Z\353\270{\367>\236~\372\375\270~\375\f\313b<\3419\241\244" #"\202V,\373\262'\357\265\372x@\330" #"\272\322y\320\311{\347;\20\220\346\34\326(Y\343_Rt\257\37\225\344-<" #"\31\6\247\03129\366c!Z\3574\344a\354+\321\230\326\203ag@[6" #"\207\213\a\265\231\16\361\311\311\16WW" #"W\20\21<\366\330c\336\2607\246)\215\340%\"\214\"\2\313S@n,0" #"\222\221\224\22\362\254\345\374eY\0Q\255\346\234" #"\25\3519\30\"F\352\301\341p\300\311\311)\336" ) 500 ( #"~\373m\274\361\306\e\370\312\337\374\r" #"n\275\371\26\220\201i7\343\376\375\3738??\17\347S/7\215o\27\301\34" #"\320\207\251\230\274J\357V\"6\355U" #"\251\346p\312\346\"\16\347\301&\247\tt\3041I\330\322C\2662<n\0\30" #"\220\304\265\232&,\313\2621^\361\363\274\4\210-2+<[a\f(\277\334" #"\b\22m\350@\236\24\235\210{\355A\242(\375\244\230F\362q5'[\2\a" #"\300\316\223\241\212GN5\245\344\250\f" #"\223\356\224\206\244\23\23\300\255\243\30\b" #"\b\307_s\35\17\353\252\310\243'\f#\270\e\242\357C\26\261\33035\333[" #"\322\266\324\321\215\346\27&)\275\v\22" #"\264i\247K\203TCD\355\347\305\326\232AK\334G}\336A\r\241\326\350\373" #"\236z\n\267\337\271\263I0\237z\352" #"\375\370W\377\3527\360\276\367\275\17:\375q\325},E)\e\206\304Jm\233" #"\375\25\230\36*\317vH*7;\356\301.\355\261:\331y\236!\255:\3270" #"\6P\263\215x\255\265\371\24C\5\16" #"\340\222\215\272\367p\311\263\222xF\223" #"s\270\1\370]\333\355vx\347\235\333V\305[\325^@\234\342\2\356EJ\270" #"}\347\16v'{\310\203\ax\374\361\307U\257\373p@G\367\20121\331\223" #"\320h,\356v\270\37<\263\241\333\334h*u]1\315\263\a\t<\267QZ" #"\3638@\234\246\202u\35c\211\265:0\232\216\b\6\350\327\266Y,&p\265" #"V?7\331\2\313x\276\371s1\370\212AJ\4q\0\204w\333\322\1i\367" #"\242\335\1t\37[\357\246\207?\241\243cJ\3059\336\200Ra\216+\b\221s" #"\272\tz\323\243%h>\203\202c\263\371c\r~\227u\205x\234\300\n^\6" #"\232\275\247td\331V\315\3124\231\\\242 " #"\345\242\24\242\242\364\207\236\264\211\220\203(\30\360" ) 500 ( #"\363^\247\2227g\322\327\32\333\262;" #"\337!%\365\25\"\35\313r\0A\250" #"\343D\207\373\34\375\345\220,\325\0\227\0Hk+v\273=D\212%EL\342" #"\273\305\231\311\364\215\325\366k\25s\354" #"o\354y\32~H\3016\220y\20\3561\21j\2763}\222\376\275\372^\257\214" #"\20\311\27\366\240\24\e\312 \266?\315" #"\356\2305,\242\270,h<\233\311\356" #"\217\364>\0\326\315\272\232=\231\n\320\224g,\275{|\310w\210\347>~E" #"\240\253\367\216\351j\271Ru\204R Y\371\\\240\234\3224\371$#G\335," #"(\231\254\271\211\2746\376\302\310\371\212" #"\27&\":\344\225@,#\312\246\272\340m\"#X;\346PN\323\214V\27" #"\235im\32\246\255\v:*\346\311\214r\26@4 -\2458\377\243\331%\341" #"\354\363,\352T{\255(SB\223\212\222\224\e[R\362\361\177TG\320\367m" #"\230R\321\22\202m\310\233o\276\211\177" #"\370\207\377\17\337\372\326\267\374\317\376\360" #"\17\377\20\347\347\347\252\213\2132\370\266" #"}\240X4\232\224;\321\3\233\215\207\e\aG(bG.\v\17C4p\232" #"\361i\0;\225\321U\v\201\356Ym\300L\4J\273\30K.:\273^:\22" #"\212\aO^\312\363`\200\306U\263S" #"\36\242\310\v;\236\246\3063\303\300\363" #"\341\303\207\366\271\335\263O\17>DG\304j)\303~_\3272\6'\363lx" #"\264)AZG\225\216\251\314\236q." #"\313\202\37\374\340\a\370\360\207?\214R" #"2\352Z1\317'\230\346\t\337\370\3067\361W\177\365\177y\207q*Y\307K" #"\23\345\334 ;\32\20\351\237)=\240\312(\223g[\373y2y\260\224\240\201" #"+U\24T\25\203\t\35\3*\6\353\375\bQ\210\r$\0215\217\364" #"\207h$\334I\244\241\\\20\317\201'\3G\316\217\24\243\34P\351\266" ) 500 ( #"jB\227D\\\274\237k\\\r\321\24\351\300DQq\343\245\2.4\16\214\362" #"\22\216\220\247\210\326\247\370\216vn\336" #"\255y&a\240\264\344\351z\31\332\356\v\203`:\200\f+{\31W\224\345\347" #"8\352\222%\373y\232B\211\332\312\270" #"\0\16\353\212\314\2417\\\273\326|\220D\267;/\226(r\17gGf\223+" #"\311\360\35h\360y\206\213%I\305~\307\272\2502\t%wv\373=\236\376\300" #"\a\360\223[o\341\331g?\210\337\373" #"\275\337\303\345\345%\316\317\317q8\34" #"\354\\\320\231\351\344E\5>\223;\213d\353$\346@\246bc@C\322\305\347" #"\211\211\2\177^9\220\226,\331\310mv\251shMk\259Y\257\202!\257" #"<\27\2q\233V\246\311\3\1776\277" #"0\201\337\207\300\37!\360\276xx\21" #"\316\206\241\364\363\254\201\273\371\233\271\24" #"\334\271s\a\313\272\342\261\307\36\303\223" #"O>\351w\246w\253\242\245\341\24\275" #"\204i61S\244\336\356{\353\212\302\303\367\222\315:*{\271\2566tA\200" #"2\263\224\313\362\260\6\35\"LZI\201\210U(\366\31\f\32\316x>\eu" #"\v\201O[3\232^6D\2538\332\275Md\247i\16v\305\324w\202\277\216" #"\200\221\351ii\363t\340\231\37Wl" #"\243\335\360\251b \355B\231\2549\231Z\a\36\rb\216m\225\aj!\311\213" #"\24\214\230\334\253\235l\236<\247<\22" #"\n\253A\350h\327\254Z\254\31\333\251m\":B\227jI\255-\232\364d\230" #"\335-\301.o\207Ae\363\365M\272V[C\342\241g\266zb>\202I6" #"\264\322v\323f\303\355Z\f\216\207-" #"\212\264\22V\377\32DXi\353\304\5\306\272Z\265\202\317<\317;\243\34m+" #"\200\374\376X-\367\300>\274\357&1\263\344\202" #"4K&}\273\235U `\362\211\271 \227\4\251" ) 500 ( #"z/{\256H\251\240\224\6\322\3578" #"\16\272l\336i\254\303\24\200\207\251P\256\257\371\276p}rh\256,\271x<" #"\323Bo\200\0027\nf11\211\250n\350U\321\2566:\340\310[\1\203\334" #"`\274\335\201\0064\205\337\37\235r\214" #"\250}b\32\17\277\5Y\374e\35\206\220\312\266\263\24\330\352hRh|\4!" #"\344$\352s-+Q-\261\216I\315" #"\266\326uU\244\324\250\v\350\342\274\37" #"\325\234\23\227K\351R\261\324\25KS\275Y6\210mJJ\242\310\353\235{w" #"\360\306\eo\340\225W^\301?\376\343" #"?\"\347\214\247\236z\n\17\36<\300" #"\237\374\311\237 %X\360\255\206L\271^\212\362TC\nci\23\300\340#\21" #"\355\2615O\366\337\3M\231\254\v\337do\232\312\217\251,o\367\0D\327&" #"c\336)\27\354\221\31\321\3446a\f" #"\367\360\354\333\22\e\312\233(\372\261\225" #"\17\342!\215\306\222\27e]\a\357u" #"\4\320\311\214A\230\360\326u\2172\215" #"_\312\246\203\vG\222\331\25\16X\0" #"\221G\360\277\333\315\270w\357>\376\370" #"\217\377\30\177\376\347\177\216\257|\345+" #"\272v9\341\273\337\375.\376\354\177\377" #"3\374\305_\374\5\0\r\22^x\341\5|\3463\237Ak\202\253\253+<x" #"\360`\303\375\4\272\211\323k\246-R" #"\1\3211\317\271\bz\22L\205\234\253\206.\r\261AB\317z\361Kk7\312" #"\3h\273Z\217\334\231\221\201\17\235\341\370\347\307\250kk6T#8\30~E" #"T\5<CI'z\255M%[\4@f\200\232F\223(\21\fZ\332Rl" #"\222]&\252=\350\5\311\222\306f\201Jom#e\307 \225\247\207\362X\274" #"\333\217 \262\266\26\374<G\312\354y\234Rew'1h$_\334" #"\20\b\226\n}\374k\316\310\363\254%N&\230\244`\365\216\325\222\367&" ) 500 ( #"\203\27\307{\322,\200\367 \265\f\231" #"\260b\237\23\3HO\372\5\20\f\a\340{\323\32*\203\212\242J\31\342\267\v" #"\270zx\1\351\r\373\375\36\"\202k\327\256md\366\272' \243I\204\347@" #"\39-%v\256y\27t\31\\@VP|\255C\331\322\223k\362\306\31\314" #"\b\223k*\205\24\333#q\31I\202" #"\t\315\316\260\300\370\367\242\2123\255\251" #"\4!\240<hN\335\322\261\277\311\221A\236W\"c\363<a\251\234\0\251\310" #"\367\345\262(X`\3114\21a\17\250:\\{\224g_D{3HY\320`" #"\r(\tn_\207\302\307\244@\200\250\304d\261F\3462i\3\255\252\210,\0" #"h\377h\303\325S\346PY`\302\312\365\215\301%\e\277\272![\255)\5\201" #"C\234RJ@N\250\255\373HX\315q\251\334 \266\366Cj3\333\344P\267" #"'\315\332\367h\263\321\275b\301uy" #"7\e\256w\\\334\326\212\20\354\300\306" #"\377\307\365\215\367>\3327\372\200cu\1\267\355\26'\250\217\0371Eq\t7" #"Q\315{\0\310v\303\273\365\332\364!" #"\267\246\311Y\320\34.\2237\21\306g" #"\214\347,V\322:\223\346\246\225I\351#\220\327{?m\336Q\253wC\251\210" #"\275\35\361{\266A.}\370\250N%C<U\3z<\2376,\17\340\211c" #"w\1&\331\325d\1\267\315^\21\274\361}<\nl\243o!\315\302\262\26\337" #"#\322\367\222i\212+@A\244\237\372\3210\253e\325J\372\21u\v\256\252@" #"\320\313\357\201\331\254\r\205\1\32\273\344" #"<a(\21E^\377\340P7S\222\250\275i\5g\2327\357\26+\32\2555" #"mFk\306+IVJ)3G\22n\221\242\343\262[\204\206\2433\216\207_" #"7\260n\350\f\314\216\212h\211\247%\301\272" #"\254\230v\263\227D\216\263\16\375\314\214!\373\2" ) 500 ( #"\337(>\3231\305\241\224\204\224\201L" #"z\202\365\357\215M\354\350\250\36@\221" #"\273\223\0m\360\20\230\360\262\35Vk" #"2Y\16\25\177\363\325\257\240\365\216\307" #"o\334\304w\277\367\n~\375_\376\32" #"\236\375\340\263(e\302\177\377\333\277\303" #"\177\375\257\177\216\257\177\375\353\370\324\247" #"~^\211\360\2Gmx\n\342\24:\36\204\230aN\366,\356\354\273\"T\232" #",X~+\252\27\207\244rI\272/\224\235Q\256\217HCI\363\206o;." #"\323\340\352m\273\311\343~\353a\325\1" #"\25\312s\245\266k<\37\374\354\21H" #"\27\274\363\316\333f\304\n\316\316NA" #"\3443>\307\216\301\226\214\3469&ZE\275\20DT]\240\232\30\376\224\v\22" #"\324\20C\4\251d|\344\245\27\361\316" #"\355w\360\355o\177\e\37~\341\303\370" #"\326\337\177\v\337\374\3467\255\3747a" #"\332\235\340\327~\355W\361\261\217}\f" #"\257\276\372*\276\370\305\377\e\207\303\354" #"Fr\30\236\262Y\207\t\324#\4z\35(!\223\227\201$Y\5 '5\222" #"t\314\301\350\307\246\21\32\243\370\347\274" #"\354j0\267\364\241\230\240 i\31\267" #"\266\266q\212\307\2451\356\215\337\21\300" #";\350\371=\314\224K\312\232,M\2328\21\375\225.@I\320\6C\335\17\225" #"\317\353\233r\252\204\2405\276O\262\300" #"\262\244\204\36\336\203\345\374\341$\266j" #"\n)%ov\201\210\177>\r%\327\244A\0\352K\206}\313V\1\211\te" #"4\264bAp\\\17\351\35\251\24\223" #"\353\21\253\354(\335i\266\304*\236\367" #"\230\244D\307\355\367'+u \362&" #"\211<\360s\30\36\255\2\234\354v\270" #"\177\377>\31249\235fY\310\343\244" #"\362\213\373\e\265U<\273\255\231\312\206" #"\226\234S\27\235\360&\203{\312\317 \352\244[3\202\e=" #"k\221z\223\375\234\223z\323\32\25^\fu\27\272gK\225" ) 500 ( #"D\203\337\326\e&\v\316fS\276\21" #"\220\e\332\220\312\320\332\234\347\331Q\31" #":\376\261\246\326l\330\207Z\303\\\n" #"\336\276}\e\313\242\315.\373\375\36W" #"WW\303\36\225\204,\361]\365\331\241\264c?\eN\307\330\3703E\25\35\25" #"\262\206*\0\356+R\352^\371\34H\22+\227\21\331\34{N\4\220\315g\373" #"\375\36\255i\205i\232&\17\320<1\354\320i\221v~[o\30=%[z" #"\321@(\331X\27\2O\356\21\317\5\b8\r\376<}\266\243j\305\252\23\242" #"\264\223dU\354\3265\271\236\313\344j" #"\f<\363\321\256\215\2634\2\265c%\212X\355\31(\262\372+UZ0P\5" #"Z\25%r\311t6\a\300\5\376\252\307\266T\203Q\216l\347^p \25\325" #"\235b\0\256U\340P\201\223@\357\300" #"\b\240\"\220\307wl\217H\317\t\0" #"\252\270\0\244\254\351\201\n\2234u\2656A1\317\3211\200\24}n)\3168" #"\374gb&\213\325 \310\310\357\332\314" #"\e\337\207\215\227\374\252m\301<\355\274" #"B1\324\246F\200\316}f\0\252\317\315\273d1_\36 \247VT\262NK" #"\225\21\214\17\320g\304\0061\21\343\177" #"\247\224\220,\t%\370\240\366n|o" #"T\355\2\200\251\367\346\304\357<O\316" #";\5\222i\352\301\17\5\17C\34}\30Q\6\2760\27.. \271\273\361a" #"9DA\272j\364\215\346\206\320\221m\350\205\n\242\347a\354q\\n\36A\a" #"\237\317/A\246\226\252Xf\247\316\257" #"\267\321\\\0213\234d\302\346\2235Oy0\17\345I}\355o\377\6\257\275\366" #"\32\366\373=\316\256]\303\257\377\372\257" #"\343C\37\372\20\16\207\3rJ\370\245_\372E|\355k_C\255\rWW\a" #"\314\273\342\302\323,\275\226\251\370\24\237eY6\342" #"\307t\366\331\222\20v\177\263\244\310\274\234|\25]" ) 500 ( #"\203I\307\302v\321F<\304Lt\302Z+\24629'0&+\3234\243\265" #"\212\336\253\31#\331\254\211\312`\tH]\2506\0061\329\"!\321p\211\210" #"\362e\223\362\216h\204\210\306\27\343\177" #"\t\230\371\331\372\23\351\267\317K]'\315\224<\312M$\346\263tVk\305;" #"\267\337\301\272\256\270\367\340\1\376\313\377" #"\366\277\202\335\321\363~\207\317}\356s" #"\370\371\237\377y;\203\0357o\236\3\306=Z\353j\1\4\3Eq\243\23\3" #"r:\265\343\306\251\234\331\2143\370\275" #"\372\376\354l\35\345\24\32\253\2215\347" #"\315y\325?g\260\3347A\36300\32`\3149;j\279V\321\30n\22" #"R;\177NQ\0201\356m\262\352\215" #"\5\5\266\376\376\256\305\370\354\231c\227" #"\305\327.\32\223$\202jF\333\21c\v\16[Wy\253\311\316\n??\332\212" #"\30\0\273\341\263\200\204h1+\rJW\0\220\22\252\211FS\253\325\3{\300" #"\233\362\304\336\235{\234\242}`\300k\201b\262\263\347?c\357A\4{$\322" #"\305e\314\342Z\367\246A\234\210\330\24\"}\201\343R\355\2201RI4\275'" #"*\215W\212J\351\355v\273\315\31t\244P\4S\311^u\203\335!\265\227\23" #"\272\b\326^\335F\253Z\215UE2\327Z\3575\367\221\\\330h\347k\35M" #"]zo\341g<\221\36\220\254\262d" #"\364\5\6\333\305\32\234\371\256i\32\262" #"\214\222\264\257B\240<\340[\267n\341" #"\235\267n\3\2|\340\3\317\250-\315" #"\243a\31\26\340\367U\3276\1\270\270" #"\274\300\365\2633\334\271{\27\267o\337" #"\306\371\371\271\16\t0_\322{s$\217\3\35\22L\0234(\314x\363\30\317" #"V\e\b\30\203p\2659\rM\232\363\34I\345(\331P\3360\345\214" #"\317\36\3174\35pJ\332\373A\277\252\367\314J=\211\252\30\272\237\252" ) 500 ( #"\376\221,\243\311HF.^\226\203\373" #"\347\2349\0165\240\262\n\231\351\300\222" #"\222\221\223\336\273\332\251Da\325\2310" #"\302\234_\244\245(_\25\250\253\226\247'KjK)>\f\202v\361\330\326\360" #">\307d\277\367\356\347\371\270B5x" #"\241\246\304c4\213\234\201Z\325F%\250r\17+\23\32\264g\17x\3266\202" #"h>O\262\2O\f\276c\"NP\r\330\252oH\357\276\357I\310_\316\212" #" \3n\323\"\370G\377\306\3066}g\5\2204\321L`\2\245\376Si'" #"J%\204\331\32\315b\231\214\360\263\267" #"4\204\321\3\220\363\204\4A\223\355\344" #"\315\270'\3Ph\236\34\304\277\367!" #"\\E\307\323\253SP\332\1\233\361\217" #"\321`\275\367\272\2669g\264\332\215." #"\322\240\205\5\312\344\351\320+\355C\22" #"\314\323\214\276n\373\267\b\fh\\1" #"F\3243I\344\231\216\r\227\366K\364\316v\215{\"\335$\256CJ\t\271w" #"\226]5\220\341x\21\6\247q\200@" #"\344\337\346\320a\313\313|\334@3\20" #"\262\261\250[\304\265\34e\222pt\321" #"\263\27\373wr7\3653\212\377\276\210\32sQ\242\244\212\32\30\25N6\3534" #"\202)\321\314j4\241\5\304-\217\201" #"\21\2555\227s\372\301\17~\200o}\353\37p8\34P\327\25\317<\3634\236" #"{\3569\\]]\331\363f\\]=\304\277\377\367\377\3\236}\356\231M@\303" #"Re\a\2*\2\314\363\356\221\214e4h\215\177WQvE\26\2472c\267" #"\333#g\345\v\37\16\213}\377\266\\" #"\344\231\1772\351*\373\237f\221#\310Oy\224\214r\326\300t$3Z\256\326" #"\365ON\330\37\31Xlv\e{\254{\16\354v{\234\234\234z\347\270\32\342" #"\356\315\203\233`)\305rE\2\32\274ao\3338" #"$\216b\365\326p\373\366\35\274\366\332\17q\377\376\3" ) 500 ( #"\254k\305\325\345\301\245\303~\353\267~" #"\v\277\360\v\277\340\216\253\265\206y\232" #"q\343\306\r\325\351\\W\347_Q6\357\370\213\357\24\3|\236Q=w%\240" #"-\361\347\37\225\252\211\224\2G\34Z" #"\265\204s\365!\"J\215\350\306\353\353" #"\316)\216w,Y\220\26\313\215\21\301\215F\234t\4\345pZ\301i\312\301(" #"d\253`\34\363\270\354\374\32z\314\356k\tg\326\376\305K\232\35@\253UQ" #";;\a-8\302\210\240 $w|\a~.\313\313L\200\315\25\330\3356\256" #"tQ\343\250\234Xx\202\\\203\35\312" #"\2458N\301\317\25\204\252\6\0354\23" #"\257\224<\20c\320K\3247\256\317\332" #"\232\a\300\236XZC\236s\214\373\330" #"\213\350,\370\377K\320\32oB\365\202" #"\352\310\23\357q\\\27\355M\210\24\206" #"\3210\302\375\210@\4\377\276\201\264&" #"\226\330\255y,e\347\244F\273\35\203" #"l&7\261\362\323\254\351GL;\331\360\300q\366\302\231\27\tg\222AF\326" #"`x*3\346\375\16]td8\221]&\300\251\24\244\242\323\332D\200\224\v" #"\16W\v\356\337\277\217\227^z\tggg\236\224!\1S\312\330M;\367\27" #"\352\220\r!\215H\32}\23X9\0\330Y\37\357*\23\300\350\240\233\355[\34" #"64\356\335\321~\205\344vP\270\202\222CWu\212Rfo\254\5\24\201\255" #"\315\364\234C\263\360\264q\352\303\261\267\336Q\233U\16i\277kw\32OIy" #"\4$\268\362|\370\200$&6\265" #"\371\236\365\326\260\326\325\202\233qG\343" #"\371\212U\215w\363\17\200\202f\307 X\4\315\364\334f@\232&aI\253\276" #"\32\254\16\272LJ\311\345\316\220\306\240" #"\24\372\6&\251\322\307P\23>_D=\343\327F\247=S\353]\e" #"\242\350G\305\22\21\322\263\216Q\324" #"\230\30\215s\337}\217\1\352\245+\272" ) 500 ( #"/\242\375)S\231\221m\314\256\210Q6c2\216\21?\361]V&^\320a" #"5\321?E{3\231\272\23\251\0171\251\31I i4\26@'\361\273{\34" #"4:P\331\207*\203>f\266\230B\25N\326\265[\220\257\211ekM\251C" #"%\17\377\35\220j\247\305`\370[\217\27\253\216\270\366Xs\2324\226k\r@" #"\206d\35\26t\fr\6\220\203\227\262" #"C\372\352\233\22\17\3474M\233\351Q" #"\232\201\214IY\307\31\302\361!\347\237" #"\35\a4\300(QE\243\34\37\320\21\3{\316(\302\274\r4F3\234\243^" #"f\3705S\22\327hKY\320z\35Y~\32\232x\261\f\3`\363~\"\t" #"?\374\341?\341\301\203\3738\254\v>" #"\360\334\263x\372\351g\2544\276\323\314" #"\274\353\246\357\367{<\375\376\247AZ\r\345\326\334\340\24U \210F!>?" #"0\202~=\250@\34\353\343\373\0\0 \0IDATB\361\271\322?~\375" #"\r|\363\e\177\217{\367\356b\236\367" #"\233r\24\247\217\361B\0\346\204,\313WC\320A\342{\234\371\276\tF;\271" #"|\1\365\200\0\235\2454\256\331h\202" #"\210\227My\205\35\255\256\230\346\202\323" #"\323\323\300\201\3336J1 \361Cn" #"\27\276\333\250V\2161\215\6\211\3536" #"\3173./\37\232\221J\370\305_\372" #"E\374\353\177\375o\361\342\213/\342\203\37\374 ^z\351\245G\20gd`g" #"b\354\312u\205\377\373#\301V@$" #"\"\227\215\6\272\224\242\211Oey\272\371^\304{\24i>1\21\4\222i'" #"\352:r\204\251\36\375\354F@<@\21?;\275\217N\362h\20\371\274\221Z" #"\1\v\334\2629\355\222\24u\vC\300\320\333\26\201\211\3674\24724os\366" #"2~\t\367\334i\a\300\30J\221\222\242\361!" #"(\343:\363\347b@\301{\313\337\v\350\270\343\211" ) 500 ( #"\16\321\22\267\244Y\253&\252\206X7" #"\331\6\373s&\217\266\273\203\216\216\231" #"\t\236;\a\6\212\274/\301\236ET>\236\21\235l\270\345\222\201;u\344\\" #"\343Y\310L\2027\367\1778\354\353\327" #"\257\243\265\206u]6\0012\253\\%\r\245\231\3114m3%\24\261E\232R" #"V\351#\330\317\252\315g\242\302\363\263" #"\245,\361\256\305\277\343y\363\275*\32" #"\250\226R\202\200\275\270\3569\207JD" #"t\17\200!\255\5H\252\350r\353\326\233X,\t\335\355v\276'\234\220\327[" #"U\r_\vD/..\360\253\277\372\253\230\3624F&\323\27\244d\222I\354" #"j\207\365;d\3646\316\0\317 \221QE\371\a\350A\364h3>>\254\347" #"\264S\316\267v\237o\207\231\360w\217@vHH:\350\341\347.c\232v\310" #"\326\260S\217*8\372\31u\250i\204" #"\277c\240\253\211\212N\347$\345\210\301" #"\266\372\300\354g[\313\312\252O\373H" #"5\242\217\3407\332\2232\21\255\327w" #"\245\r\226\360>\356\253\263J_\305\4" #"K?\207S\272F\20\310\365\215\311\31" #"\377\335\345I\373\350\314\347\250jR\326" #"\264'`\253\227\214\246\352\36\224\26\3" #"\340\22\227\374\332T\215\322\0#\342\367" #"tV\21B \313\344\240\314\223\6\242" #"\301F\362\2140a\320\365\214\223\32\223" #"\371\6\372:C\353\311wO\2546\233\16;\266hy\f\2529\370*\247\214\332" #"\326M\2251>\277\250\23\325\265\n\301\371\b$\a\270G\24U$Y\274\261}" #"\367\230\314\305\4\305\367L\364\0342n" #"!\355\206tD}\247A\217\1\340:\2721\261\216{\341\361])\332\220&\341" #"\374\323G\0272\0\306}\341$X~\336\204dr:GY<\177\31\263\223\330" #"\35\255F]K\373\314z\"\332\373n\234\227q\200\267" #"Yn\24\330\216\335\331\200\311\253t\345\252v;\354Q" ) 500 ( #"LydLA\340\32\26\264\213\6s9+\267g5\231!X@\270\333\355P" #"W\35\222\300IB\22\202\265\3432\243" #"\210\340\356\335w\360\335W\276\207\2243" #"\336\363\344\223\370\320\207\236\325\262o\327" #"\337IDW\337\17@\32\222e1\310\311Y\177_m\354\272\37e}-\365\217" #"\22y\353]\eI\304&\210\264\216\213" #"\303\5\376\337\257|\5\257~\377\373\370" #"\360\207\237\307o\377\366o\207\347$\207" #"\256\370\345\357\275AZ\303\224wp\5" #"\5\314\350\322P\17\25e\232\301F\300\r\2672\1\232U\27H\36\227D\233w" #"\264\201\tF\276o\225A\203\255\244$" #"\234\235\235\341\341\303K-/\5Y\252" #"\336\265S\275\247d\n\24\31\350\t\31" #"3\24\302-*w\227\24\5\324\212\2646\f*\337I\265\6\251\3500\317\23v" #"\273=\356\337\277\217'\237|\22g\247" #"\327\360s\237\370Y|\374\343#\300U\335\3050HB\4\323nF\355\r\227W" #"Wz\216\355\374E\a\347%(\362\37\21\e$\211\246P\262&\350]\nP," #"\261Ri\e\322D\246A\335p\312\a" #"\300!\25\252\365J\344\a\226\2141\300\2411\3255\210e\351h\220\"\202Tm" #"r\332\332\232V\320E\24e\25\31\215Zf8[\335r\355byQ\r\230\261" #"\343D\341%\tw#\331\201\31\245\330H\357\260\300\27\342g3:\6\6(\274" #"'\265V\r\\d\333\a\240F\223\bS\307<OhMyc\244S\320\302\30" #"\245P\365\260\223r\365}b\240\3551\377\2757U\373H\"\256\245k\254t\265" #"\r2\206_\0\360IZ4\370\311\370" #"\376\234\276\306\265\247\361\207\5\324\374~" #"O\246\273X \au\232M\235`\255+\226e\301\215\e7@\nL\374L\216" #"4\367g\342\275\202\233W\20)\367 \244+\227Y" #"\223\32\223\"\353#\341\320\4e\0\17\334\v\347\34" ) 500 ( #"c$l\272\267\305\316\1777\32V\325@\255\306f2;'\357\302\347\227\244c" #"\205\223\0y7\343\352\352\22\322:\36<x\210g\236yFW\277wG\265J" #"\312\326x2\22\203\347\237\177\36\377\361" #"\177\376\217z\276\17\vJ\326i]\305\2\327n\316[Ls5R\275\3063\232" #"\343L[~;\23\313\315>#\2713u\n\226\300\2777\236\337\210\270z\0l" #"\t{g\17\5\235\260\255\275>W\a$A\30\340\231\35\326\344_\354\334\353H" #"\371\234\305\22\341j\357kI\225\5\201" #"\374\375\261\313\235\324\5*\2778\367\324" #"\223\316\16\351c}\"\210\224\22P\327\206<\eU\v\224\26\3243\320j\b\36" #"\255\202\22\301\250h\377\330\347\300\365f" #"\260\233\240I\312\26l(\341\274\e0" #"\327\325\216\2417$d\355\371\311\305\23" #"\255\210\6F\177\316\317\214\25\272\310\253" #"g\5E\222\332\6\254\203\263\eiy\244\372t$W\f\342\27G\2\213\360B" #"2\31Q\252\20\253|\372w\254\250\330" #"\223\313\250\4\321n\370\371\\W\243\371" #"i\377\v\357\177D\313\371\337\244\323\360" #">\306 8\366\205\260\321\217\317\222\fLL\3167\337\376\177\4A\br1\361" #"u\37i\3676\333\244Z\244dI0\320\320P\362\244\210\261\356\256\6\367!6" #"\242\375\331N\02640.\3\23\254Z" #"\310\317\\\253\3\22\34\376TJ\361\376" #"\221y\236u\225\211\220\3042;\2778" #"\235\206\e\310\v\313\3T\233J\3660\230\215YQ\244&0\243\321 \250\332f" #"o\3650\275\t\215N\330\0341'\324" #"t\v\342X\376\210\206d\210m\353\241" #"\322Z\207\31\250&\310\322\225\313\223\371" #"\273Vd\343\316%\223\232\341!\217\v" #"\2534\215\204y\267\303\217\177\374\6" #"n\275y\vy\236\360\354\263\37\304\207>\364!\324U" #"i\37\n^5t\250\246].\217\302\376|\277jT\210" ) 500 ( #"\321%;\243w\340\255\267n\2533\316" #"[\2\277#\244\353\212\332;\276\372\325" #"\257\343\273\337}\5)e,\213\"\260e\2360\357f\314\363\16'\247'\e*" #"\204\30z\262\266U\305\245m\340\253\32" #"\252\202\222G\300\303\204\207\16\220\245\"" #"I\342MG\305\210\344\31\tb`\350\344\223\362`\216\r\250\265kc\315<9" #"\372\e\21\216l\250\240~\257&\35\275" #"\211\226\310\262\362\314\334a8\217htc\217\263\226qzz\206\347\236{nc" #"\304E\4\273\375^\367\240\303\rh\312" #"\31\373\375\36\373y\207\266V\334\277\247\315?=\240\20\\{\"u%(\207\f" #"\224\223\231\351\230B\343\6\332\".\351" #"\r\353z\200H\265\4\214\302\370Cq" #"\200\374g\200%!\32\247\344\311\216\236" #"\313m\23(\357\3521\355\205\315i\36" #"\260\330sy\2475\215T\247\244\330\370\235L\\\374]\210 \210:\331ZWk" #"\346\31IiD<=Y5t\202\311W\234&\350k\24\234\16\262\215\2315#" #"\377n\211w\\\377\\\324\271\tD\273\260iK\314VI\357\216^\353\177k\342" #"\313\6\320\332\32$\254\21i\30\240mc\220hA\317TFB\315\340\310Q\301" #"\256\\9\336\231\350\f\374\271\0314\371" #"\331a\211U\327Pj\325\306\267Z\361" #"\360\342\2\245L\270v\355\332\306\t\3" #"\360\341\32\0p\270\272B]W\264Z\261\232\375\253\326\v\20\20375r\232\4" #"\314\363p\302L\270\30\250\361nDt" #"\314\3673\354\t\313\261\376\305\362v\35\3ix\36\325\226\f]vO\236rB" #"\225\216CS\344\367\243\37}\t\357y" #"\357\223\370\265_\373U\274\370\342\213\266" #">\30\223\371\222\0060th\364M\264\317|~U\252\350\320\236\0-{\227i" #"\362Q\330\"Pz\0372\232\36\20,\377L\177A" #"\254h(Z9\234>\251@)\301l\271\204s\277\275" ) 500 ( #"\247\356\274\263JW\351\3715\35v!\322\315\352\205I>\246#M\333pV\271" #"\216\232\24\5^)\237-\370g\177\326`/S2\276\271\f\312\31\aS0\240" #"\217\357a[\254\203;\354\216%\201\371" #"\343f\215\326\n~\21\220\260\323m:" #"\274\266V\306\365/s\361\204\354\370^\213\32j\377;\202\n\243\22jJD\34" #"\222dOG\351:?\307\301\206m\366 \r4\223\373J\364/g\252\2074\264" #"\272\242\224\354T\230\30\214\373\347\213\372" #"\224\332\307\36l\1-\35\211=&\275m\367\tI\3\305f\361\27[\322z\357" #"\350\265\2415\375\276\302\230\vz^\243M\214w\225\261V1^m\253\315m," #"\277b\365\234v\244\24&\304\300ZW\344l\366*\274\27c\271\210\352z\0056" #")]\224wl\236g\275\2472bI" #"\367\233\302\265\244\302\227\240\301\32\237'" #"\255\310\306\230\221\377\264\20{\20\364d" #"%)\366z\364\336\275\337\211\215\377\232X\205K\35#\350\270(\374s\37Si" #"e2\212:S\330\232Dsn\344\341" #"\240\204\371\250\275\252H\324\340\333\36O" #"\310\241@6\0\17\250\325\310\214\6\216" #"X:\346\206q\23H\274\326\314\3248|\363N\313\266I\203\273\251L\232}B" #"\0356\272`\255\v\366\373m\343\207\37" #"\336Rp\367\356]|\375\353_\303\371" #"\365s\224\222\361\376\247\336\207$\360f" #"\0247\224>\fa\f\331\210e*\375w\345\253\315\363\36\265*]\344{\337\373" #">\376\372\257\277\204\247\236z\n\277\361" #"\e\277\201\224\4\353\332\260\337\27\\^" #"^\342\326\255[x\355\265\327\360\312+" #"\337\307\305\303\v\314\223\216\257\355P\304" #"\360\255[o\342\345\227_\306\331\365\353" #"x\354\211\307\360\321\27?\212\313\313K\20U\1Fw1r\2\354\240M" #"\323\f\222\316#%\305\327\30\31\322\eJ\322\251$4\232DE\313T\260" ) 500 ( #"\324\325Jrc\324\245H\307\341p\300" #"\371\371\r\374\344\307?\301~\332y\363" #"\335\b^i\320F\363\206H\302l\343" #"q\213\241\0304\200\354\3344s\261\31" #"\316p\375\372\231_\374k\327\256\241\327" #"07\336\2140\21\23\242'\353\262\340" #"\354\332\31z\323&\215\222\210\26\17c" #"P\f\371\242\223E\32\27Q\357M\3034\r\364\221\347\22\212\237\1I\254T<" #"\344\240\226e\5\313\221zN\224\373\314" #"\356\366\230\345\272\361\306P\17PCg" #"\315W\300&\260\340]\341(`j\266\3327@rv\247\331D\265\200k[U" #"\317\0200TA\337c\232&\17\314\274\312P\253\6\275}\214\335\365`dsw" #"\22T\253}\325 >u4\321\t]\335\2*\276\v\3\25\362\342(\227\306R" #"\27Ky\221\362\301\200j]V e-\201\5\261\377X\35b\3\36u\177;" #"\304e\301f\32I:\365\234=\341Q\231\273\301\351'\a\273\265\212\326+R6" #"\aY\340%\351\230\324\222\306\261}^" #"\223\305\2\220m_\223\361\341 \312\361" #";\\]Y\2206=\222\310\364Z\261" #"\337\357\361\243\37\375\b\237\377\374\347\361" #"\364\323O\343\337\376\233\177\203\262\333\231" #"v-\320\r\352\220>\372 j\255\376" #"\376\352_\6\367\273\260\354n\347\235\r" #"\216\261\324\2719\213\275{\340^l\317" #"\304\316\27+\"\21\5$R\304\373\302" #"\262%?o\255\25e7\341\367\177\377\367u\215Vu\266\4O\226e1D\271" #"\240\265u\343\324\270\346DX\231|\262" #"\217#\347\214^\0055\251\375\310\242>" #"@\222\3125\321\206\214\352\203`]\267" #"\210,\277\244k\302`\374\t\345\r'" #"\350h\342\r\32\34\307\272\216\200\202\357" #"\234\241\203x\222\210\371\316\325|\303\340" #"\23\2135\4y\242\3305\311)\306\355Li\f\265Q\37" #"\302\4\256n|\r\277\"J6\315\23\3464PJ\256%\357" ) 500 ( #"M.\5\313\272\0\20\323\234\36#e\25\303\324;\24\a\273X\251\305Z|\266" #"\376\334\313\344\222\220&\243\245\245\221\264" #"\304\200\\\272 um\250\324?\37\345~MH\225\206WRru\200d\34U" #"\a2B2\20\321l\356\205\3\5\341\256F\0\6`\"\37>\277\250\364\331\206" #"Z(C\247?\2053\31\201\210Z\27_c\376\236\321\20\2526\\\240U\333\224" #"\200\332\253I\255\252\317Z[\365j\306" #"<\315\326\24\234G\25'\304\26\21\250" #"\242j\216\353\201c\4\330\264\345\216\240" #"\332:\347\222|oTC\375\321\241Ec}x\357\224*\345\203Px\a\210\266" #"\323\367`\310\30*\315G\23N\16n\341\0326i\303_y5\b\276\366\374N" #"V8\3423q\337\243?$p1\361@ A5e\323\b&\\6\243+\242" #"\307\205ev\n{8\n\3133\20\216%\17mj*Pi\252Q\362\1\330\201" #"\3377\177~\\\366d\260\309\2261;\3433p!\365pU\364.`\203\236" #"Ok\353\306%E\266\302\v/~\301~\277\363M\315%;\361_Ks\23^" #"{\3555\374\370\307o\340\372\365\e\370" #"\331\237\3718\236~\352\375\332]\355\1" #"\317p\314<P\\\17\276\233\320\311$UZx\375\365\327quu\205g\236y" #"\6\337\371\316\313\270u\353\26.//" #"]\32\243\265\5_\370\302\27\360\372\353" #"\257\343\235w\336\301\272(\22|zz" #"\202\16u\234\207\313K|\363\357\377\1" #"_\376\362_cY*\326\365\200\375~\207_\371\225_\301\247>\365),\313\301" #"\17\245\210:W\3\0175\230\222\25,\271s-g\6\275M\233\324\274S^D" #"\321\331\246\306.\331\234\3662M.d-\202p~f\274\361\2237\201\234\261?" #"=q\303\307}\25\vz&\343\371)\232m\316" #"4%\300\249TO\260`\\\231\261\353\307\332" ) 500 ( #"\240\207\303\242\311F\27\354&\3554\205" #"\225\241F\223O\306n*8??\307\333\267\265\323\273P\314\276\17$@\e9" #"\232\241\214\226l\345\344Z\307\372\216\273" #"\215C\e\345\300n\27\324\350\20e\224=-\326\4\17\231\310hP`\t):" #"J\261\v\v`\243\26p,o\306sN\4\310\253/\246\313\311a/\256\374\221" #"\23\2525\35\22}A0L~\357\314" #"\260!\4\267\233\235\220\241\251\313;\f" #"\230!\353\t\222:2f\224\334\221:\274\21Ll\235\0355\17\357G\344\2102" #"5\221;\37G\230N\363\244U%I\217<\27O\211K\372\1^f\314%{" #"p\233\31t\347\214%\360\5\27\351(.Q\245\37\301\252ON\203N\240\264\227" #"\344\35\351<\337q\r\273\b\n\200]" #"\231F\322\304\244\302\2467\315\273\35\336" #"\370\311O\320Z\327\212\203q\310S\262" #"\221\250a\177\377\364O\377\24\3234\341" #"\333\337\3766>\361\211O\340#/\274" #"\200\325\222\27:p\4G\340\16G\310" #"\336\35h\227\336\r\375\231u]=\330" #"\215\357\1\333\257\222F\305\311Qn\333" #"OJ\335\3052\244:\245\264\tx\34\25CB\231\262\6\226V\212M\376\314\303" #"\31\363\235%\374\273'^\233\312\225r" #"\"\21\236\335\23\250&\310S\326\211\276" #"\366\367\303)\216F\242H\271S[\24\20&\253|\265\326L\201\244;\322\311u" #"\362\22<\321\252\26F\"\233\270\261'U%\373}Q\333\331=@\257=\374\256" #"\4\325z\357P\5\0\0JYh\350}TS\270IT\273\210\1\36}\3464" #"M\372\f\30\25\t\322Ph\303tx\223\2369\351\232\f\26764\223\233)[" #"$\226\255\210\262\"\241\366Q\251b\3205\3173@\276\254h2\35\3671\2U" #"H\260)t\244\340M*%e\334u\233\22\341(" #"(O\347Z\307\300\242H\363\31\266r\2007\255)" ) 500 ( #"\n\273\333\355T\235\303*+\200rF#=\301\313\373\275yB\22\317\226\257q" #"V\256y6;\302\337\31\23D\300\250#)!w\6\221\35\20\353\317\20Aa" #"U\317\22\203\254\227\16\331\345\34s\270" #"[\333 \224\311\264'\265!\0\334T\206\2`\303q\312.\261\332:JIV" #"A\177\264\271-\276;\237\301\271\262I" #"\e\302\212\321\27\342tD\356\r\240\3668Yb\242>\n\376^J/$\30:" #"\356r\255C9\202\225\317\230 E $\256OI\5(\320@7\302\3371*" #"\216\245\230f\231\362\344\250\245\32\314J" #"c\221R@\350\342\313\315zP\2\202" #"\356\231\200\320\30l'\251\361\302\321\211" #"\214R\1\rss\231\25\317\36d\\\236\21(\253\3g\303Dk\35-%H" #"\343d2u\340\313r\300\336J\334\t" #"\0Z\367\341\5\275w<\274\270\300\353" #"\257\277\216\371d\207\263\263\23\274\360\302" #"\v8\275v\r\315\214\367\30\345\227\334" #"\1\320\200\305\214\221\357vuy\211\377" #"\343\377\374+|\377\373\337\a\240\252\v" #"9%\\\273v\206\247\236z\312\r\304\341p\300W\277\372U\234\235\235A\48" #"??\307\315\2337\361\342G^\300\27" #"\277\364%\244]\306\355;w\360\245/" #"\375?\20\21\334\274y\23\347\347\327\361" #"\352\253\337\307\337\375\3357\360\361\217\177" #"\34\363<{\300\255\373\253\27\267\250\350" #"\256\241\254D\231\206ndL\"t=\365g\1\30-\243\243\256\246W'\375\221" #"\371\341z\321\5\315\351 \224\314j\306qT\324$w\223\321J#+\255\253\6" #"\337\tZ6j\272\321\216V\352\331\243" #"\b\265J\242\314\363\214\335n\207uY" #"\2216\2\375v\221\220\320\252\16\245\210" #"\t\331\24\4\312c\243Y71\362x\16z\27\234\234\234 \333\270\306\335" #"n\306\272V\260ArpO%\254Ag\272\357I\201\336\215\354F\24\306\315" ) 500 ( #"\"\202!\242r>\216\204\244\344\243\37" #"\267\245\261\274q\22\321 \355\347\31\v" #"e\0yO,\230\344\237\255a\237\371\334t\372\\\217h(#b\315s\237B" #"\320\3125p\343\16\353\260\25ANTIH\346$\341{Q\314aq\234\245;" #"\277R|\344(\3zG8Sr\244\226g\342\330\1\370\eY K\3\357\374" #"J?K\3\365\345\236\321\366l\2525" #"\301Vj\351\232\206\34\e\333\27\367\211" #"\250d\255\325x\227b\210\214\5\v\361" #"L\333\204\277\265.\243\t,\1\251\213\316}\237\2461\2312Pi\264\342`w" #"\265\256>h\"\356e<+L.J\b8\245i\245\207\334f\361s;NG" #"\311\331i0\361]i'\370\3779%\327\366\215\301\255\256\v+7b\242\357\311" #"\356\230\6t\334WG(72VZ\361\341g\35W\314\364\231\242\372A\266\340" #"1m\234nO\303Q\352\317\211\243\243" #"\272\337\311*ED\220\340}\24\374\334\241:4$\337\242\355#=d Q\360" #"\346(\261wd5#\242\251\16\346\230Ma\217\f\0\5(l\334\355TF\23" #"\321?w\366SxOG\277\373\220\270\364d^F\200\300?c\302\351@\30\24" #"\270\360\321\347\242\301].\331\23\274\32" #"\206\346xY\333Q\335\344\373\1\0b" #"\234Z\301\2109\370\314\253\5\203\273T" #"t\202\243\205\321l\370s\231N\223\"S~\374v\17\342\331\3139o\222cr" #"\213\231\fx\262\233\22\226e5\235xC{Mjm\354\351X\333x\267\274\232" #"\305$\331dI\343\331oM%\\{3JA\356@\232<9\0044\300\3\224" #"\26\342\334\30\201\177\17A\a\6|j" #"c\206\272\222\372\264!\301\266=\227\352" #"wzo\232\360e\225\326$\a\31\30\240B\264a\217\200y\26\323" #"\24\2d\241\202\235\2135\310IC" #"\261N\207\270\277\21\204\241\355\212\272" ) 500 ( #"\351\212\332\17=\342\326\24\341\315S\301" #"\204\214\6\321\177\216@\205x\207\370\316" #"\303\266\1S|\31\376\0\215\2507\230" #"\245\214\tV*\350\332\261\16\31\310L" #"\255\25\263M\2479>\344\261T\240\345" #"\0\35])\242\32\261\363<\231\241\341" #"\210E\226\335d\30\344\316\262L\327\314" #"\260\233$S\310\3268\2128\231q\210\206\235\202\3579\17\276\rKP)\1'" #"\363\211/\f\240j\2\220\352\215<\227" #"\27\27\370\316w\276\203\375n\217\17<\375\fn\3348\367\322AJ6\321'\4" #"\37\325Jz\fp\3314\305\t>o\275\365#\274\374\362\313899\301\305\305" #"\205q\216U\206+v\240\236\236\236\342" #"\305\27_\304\235;w\360\313\277\374\313" #"x\342\361'0\355\366\270v\262\303\253\257\275\206W_}\r\310J/x\362\311" #"'\360/\376\305\277\304\23O<\216\227" #"_~\31\337\376\366\267\361\360\341C\334\274y3\354+QKq4Z\r\307\212" #"\\T3\330\327\321\21\2R\4\306\244\22\r\354GyL\321\300\343 W\371\271" #"\373\223=..\256,S\326\0\273\325\272\231d\242\b\3720\264\223q|8\332" #"6I\3024\eRI\ah\310\250\32" #"\252\206{\367\356\340\341\203\207\270q\375" #"\f\363n\247\16\260u\344\242M\0\"\t\251\23JMF\334O8\34\252_\\" #"\25pg@\a '\254\26\220\27\250\274\332\eo\374\4/\277\3742\276\367\312" #"+x\366\271\17\341\331g?\210\227>" #"\372QH\310\232\365\202t\332<s\256" #"\226!\367\241\240\260\256\325\34\241\361\225" #"\v\371\237\203\32q\214\202q\215#\"\22\r\357&P\f\216\216\210/K\215\t" #"\203\357y\354\30\371\25\21\227w\243\16" #"\304\262\372T\212O\373;n6K\302;\221\320ek|S\322\340J\21" #"\214-_\257\267\2062\3176\225\313\222W\6g!\300\336\224\3570\20\206" ) 500 ( #"l\266\211\362t\361\367\322\301\321\346p" #"ZZ\326\310e\203\304\361\234\37\257\3" #"m\\7\373R\370\363i\250\251\214\367" #"\3243\221\213V\267\364s\351\0\25\255" #"\232\246\202\327_\377\21NO\257\341pu\300\262,\270vv\r\325\222C\201V" #"\331\356\334\271\203u]qrr\202\2726\\?\277\201\206@%3\355\345\270\a" #"\361YK\t\372\277\"\216\246f\300\325\34RJ\3y\304\b^\246\243`\312\221" #"D\270[\200-\264\357\327\366\354\0220" #"\311XM\304\277$\250\376\262\5\235\265i0ruu\351`\204#lS\266\6" #"\337!!\t\330(\371\251@d('\350\376\346\315;x\240\317\300O\310\353\v" #"U\255$!8\e\315\302\374\34\375\254" #"\356\264\251\210\"z\200\344\222qZ\362" #"\217\277+\6\245T\315\3605\364Dn\e\260j\300\270Ziy \262Q\323\36" #"\2007\226\2634/96\30[R\206\361\25\e\347h\203\364<\0225\216\274V" #"\223\345\214\201\212\335\2438\344)Ne" #"\e\1\246`\312\320q\201%\205 S\203\346x_<\251\235\v\222$(\375i" #"\3625\204\220\207\316F(yd\17x" #"\327\271\357=$\304\332\34\334\225\343\177" #"\364\275\254(\362\347\224\257\254hz\264" #"\275\361\354\307 \235\315\272\34\216\301\347" #"\202\f\235\327\224\22\346\335\214\272T\325" #"\327\327\226\331\315\31II}\324n\2673\rr\235\3306l/\223\"\336\201P" #"\371\316y\f\327\2200T\301\202\3352Ohu\314F\240\277KR\320eho" #"\307\365\213\340\207V\3542j[@\225\5\221\256\343\230E5}5\321\2651\345" #"\245\370z\360\254\37'g~\2273A\a\215\t\18\240\260\264\3\2462)\363" #"\240\f\277\307\375\360\2042\372E\313\326\247\350\314b\260\353YN\316@" #"\323\262fFrrv\353\325\17V\374\231h\334\217\215\241\376\275\362\232" ) 500 ( #"\334i\264\212,J\314\237\347\235\227\235" #"\265\321\251\342d\267\323.\272T0\e\244\216.\332i7\25-Y\bL~B" #"K\217\234;\304g\210\272v\333\3037" #"\232\306\242A\21\321\f\236\222=\337\372" #"\326\337\343p8\340\372\365\353x\341#" #"\37\206r\305\254s\326\312\373q\263\330 \3012'\215\t/\360\eo\374\bS" #")\370\344'?\t\0\370\342\27\277\250" #"\274\342\244M;\374\231\263\2633\374\273\337\371wJ*7>O\231f,\313\1" #"?\365\374\363\370\316w\277\213y\236q" #"r2\3433\237\371\f\336\373\336\367\240" #"\326\212\217|\344\5\374\364O\177\f\243" #"#W\216\3446F\211,\333\376B\22\4\331\203#f\276\354\356?6DD\262" #"`%\357\234\22j0\20\372\\'\270" #"v\355\f\267n\335\322,\332\312\365\312" #"\273d\242\221\274\234J\372\303@\20\2544)lF0-\324\16d\24\345\"B" #"\347\320_\277~\35'\247':B\365\352J\377\274\256\226UV\177^*'\260" #"\331G\327\272\371\357=~W\355\354\27" #"\2242\343\342\342>>\377\371\317\343\362" #"\362\22\0\360\346\233o\342\235\333\267\361" #"S\317\377\24rJ6xc\1\273\204y\207\342}\322/\1\233\247z\337\226\301" #"\364\342\352\274\373X\5\210H!\203\216" #"h\324\217\377\236F/:\244d\311*\247~\211l;\262c\0\27\3\350c\244" #"~c\2300\220\350H1\362w\352\260\340F\21\376\224\222\v\341\363\213%H\6" #"\223\\'E|\253\aL-\4\307\321^\361g\31\2341\31rd\20\3\234<" #"F,\3348&/\304\372\373\305}\241\35\213\216\37\341\3672p$\272E\204H" #"|\235\331\321\\\355\234\f\336&\300\346" #"\300\16\364n\315e\253jD\207r" #"\272\242\240\252\30\263\333\357\321\252\335\305\f\354\346\31\227" #"\266\366\353Z7\367\3758\0\0\f1\262\200\241\366f" ) 500 ( #"\243V\371\377\335\24\34\266\347\216\3162" #":\374\270\226\212\320t\244R\260\212\235" #"\263\340#\306\231\314\350\222P\264\aq\f0\1\3208\0065Y\377D8k9" #"k\220\v(\3671N\230\343\270R&\21L\"\365\314\222J\260u\332#\30\326" #"\352b\f~\331w\222\313h\4\214\347" #"\32\240\324\2456\326\220\277\315\273G\37" #"\323Z\307n\27\203\350\221L\306\265\343" #"g\306`\200\t\323\240h\250\277RTN\327h*\23r\311\336i.\30\310i" #"\n\300\216v\322k\202AdY\355\333\274\t\20\30\f\2474$1c\\\220\230" #"\314\321F\b\234+\31\357\0045\240{W\352\37+\263y*\36\244r\r\363\346" #"l\214\244l\334qE\235k\225MP3M\254\340n\265\376c\302\301\365\325\21" #"\363\31\251\250-\3419\217\300\f\23\252" #"x>\210\360\247\2241\317[\373\26\177.\236\21d\255\32\263g\211\tx*\1" #"|k\r\222\232\6\227\306\254\212\237\e)`)\21|\203k\230k%\232\250q" #"\234,\207wy~K\16BR\250\367y4-\2666\6\320l\316 \266\240\304" #"H\226\23jUe!\35\324\301\204\246YL\245\325\270\271\f\256;}\220$\245" #"KD[\36\355\2456;\17\373\333,\301b5:\371\3200l\374@\234\372\346" #"\367T\4Y\373\223\6o%\36\350\1\375B\371g2JI\245\3s\312\330M" #"s\310\356\254\211\243\353\364\213\bY\307K,\"\250k\365@K@~`\326\6" #"\2174\312:\351\350\340\352KX\200\224" #"3\262\350E\217\316\216#;\335\t\246" #"\221]\307\322\256\236\204\241\215\312\261\253" #"\"\315J\323\372yw\356\334\301\253\257" #"\376\20\255\t\256];\303\323O?\355\250Qtd\"\202%\350\3471\330\213\317" #"\301Cs\377\376}<\367\334\a\361\331\317|\32" #"\237\372\324\317\343\347~\356gq8\34\260\36\26" ) 500 ( #"\234\354O\\UbY\26\364\246Hl\231\31\224W\354\246\tO<\361\230\e\241" #"\347\236{\16\317?\377!\254\353b\aD\3\365\336Wp\272\226\357ibIO" #"\337]\313\370\331\214uAJ\5\225\222M\20\343\360\350?k\35\245)\0\230&" #"\r\20\342\336\262\254,\26$_^\\" #"b\267\333\233\223\26 M\306\17\212\310" #"\2419\235\276=34\236\336\371\252\241" #"\270\376\f\32&+\363\314\363\214\323\323" #"S\234]\273\216\323k\247>\350d2" #"\3\253\323\220\222\227\343\364\274w\23f" #"\327\204\344\364\364\304\265\207\343\345f0" #"_\353\212o~\363\233\270s\347\216\a" #"\361\273\375\36g\347g8\331\315P\237\256H\b\235\36/\"?o\223i\246\344" #"\347\216%f\245\370$7\\\321)GG\31Q\244\210\370F\203\24\23:\17\206" #"a\215i!\200\341\271\340s\35\353c" #">\32\24(\352S\2536\253\320\261\267" #"\266\252\21\262\211n\232\270\360\336*\212" #"\315.c\201reSR\2445\226\240X\215I~\217-\2109N\236\3RG" #"}PJ\206M\245\370;z\220|\264\17\"Z\2K\254B\365\2414\3023\36" #"\337=\32~j\b'\21m(\302\326\341\3055\217\211\233>\317\0305\35\317\230" #"V\267f\334\275\177\37\31\252\377\273\233" #"\247\315\347\25s\2207o\336\304{\236x\2'\247{ %\34\16\207\215\315\216" #"\232\347\f0\370;\375=,\346\325gV\5\216\216\204\2455\300\232ei;\370" #"\363>%.8\2458Rx*J7\22C\260\222\310@\216\315\221O9\3&" #"\371\205\224\235\277\234\222\32242G\v" #"\347\241B\222\322\20\304\347\227\276c\224" #"\365\342\337'O\250H\250\240\242\210\352zo\21\352x\27'\343\364\3633gk" #"\264.\346\213x\326\258\31\373K\n\222\376\373\344" #"A3\20d\"\217\316VDv\243cf 1\225" ) 500 ( #"Qj?\16\4\224\26\233u\22\335\224q8\34p\355\3325C\375\273\3725\253" #"\212\362\271R\22\324e\261Q\300\361\336\16D\231\376$&&\361.h\2\247z" #"\311\324F\325\201.\334\373m\202\310\237\255kh \264\4\313\3377%SM\331" #"*%\360>\217$\nnOyf5\216!\255a4\177oA\5\370\273\261J" #"\34\367\215\3377*\226\303\37m\377\221" #"\315ZE\373\260\331W\3333N\357\223" #"\254\340\2\e\271\207M\261D.\251\277" #"\346\360(\336\257\230\304I\2271\350\3" #"\26,\366\240\to\27\272\333\210h\277+\t(s\361\n\27\300\212\317VU\305" #"\223-\f\300\"\372_~E\37\343g\25JiI0\345\236$\220\256\377\256\347" #"Qy\335\334\363\236\304\a\313p-\"\32\317/\325[\36\325z\366\251\224\\<" #")\30_#\220\217A\275\306\227Z\1\3114\200\214\206\227e\331d7Z\222\327" #"\200W\17\254E\343EC\216\276,`\270:e\335\234\2%\1O\f\356$\240" #"GP.\36\365C\355\370\352\357\22`]\26hc\204x6\275\335L*\5l" #"\235\20E\372\371\337\234\200\265ql\341" #"\240\36g\321\300\310x\326\252\31J\231" #"&\334\273w\17\267n\335\302\365\353\327" #"\3613?\363\263*<=O\256\355\233\3$O\a\313\361\247\361\31\1\370\332^" #"\\\\\340\331g\237E\2313N\257\235\340\372\365s\0\212F\275\347\275O\"M" #"6\252\323\20\nu2Yw\f\202\332\201\375\311~\223\325\304\21312/^j" #"\v\26R7\264\253\330D\25\275qbez1\256\232H\3\233\a\343\372\307\177" #"\27Q\31\260\34\326r\309E\266u\311U\374\0\0 \0IDAT\244\v" #"v\373\35zS\"?\327\311\327>\251\324\232\276\203\252O\20\211" #"\342{\321\260\2254\243\325\212.\25H\244\302\214\262\346\305\305C\\" ) 500 ( #"^=\300\341j\361\263\226\214\233\327\373" #"\352\306\261\367n\312\36\326$\324\200u" #"]|\255\370\36\321\310gC\273>\374" #"\341\27\360\336\367\276\27\37\377\370\307\361" #"\334s\317a9\34\320j\305\262\214\4'\6\217q\255<[\355\343\37=\27\324" #"Q\314\26\4\325\315%\26+\335\306\240" #"U\200\r\237\224\277\203k\306\363\35\223" #"D\32\331h\300\216\2033\376\f\177\317" #"\243\b\257\240\367\25\0344\0\243\376\260" #"\24\235\223(\347\252dd\6\200\322!" #"\222\301\351\213L\272\334s\361\331\243\363" #"g\20\25\235f\270\267\372@#\340\212t\215x\a\342\363\307{\310\301\22Z)" #"\351\350\32c9j\311u\215\301h\334" #"O\364\201\320\37'\23\303V\215\3407\362\3#\",\"A\347Ypy8\340" #"\2557\337D\255\25\237\376\364\247\361\370" #"\343\217o>\327y\313\275\343\211'\237" #"\304\325\262\240I\307\272\254^\1`\360" #"r\214<G\247\345v\243\367!\321\226\216Ql\276wHt\354\347\226Z\325y" #"\3\250Me\347\272\321\16{\357\250\243" #"\223\315\233]\330J\332\1HVz\204" #"\246\322\311\366~\224\207\365\214P\241\301" #"\336\275\217\2404V\335\342>\361\275\343" #"\371\2176>\"\370qm\370\363c\4\351\340\241'\250~\n\357!\277w\236G" #"eh\334--\341\352}\337\16]\210\0\b\277\210b\362\fD\307\337\372h\330" #"\216g\271w\343\vSq\305\270\376\177" #"\375\345/\343\a?\374!\250\303|\355" #"\344\24b\223\25[\325\316\375\335\254\t" #"9\251\24\361s\365\376P\5\306t\345\217|\354\272n\2373R,t0JQ" #">\271\235\347\350\27p\224|\360+\347\321\370M$<\362\332u\177\b\3021)" #"\241\217\22\236\250\315\276n>\e#(\315\301\246\17{\274M\240\343\3371i" #"b\217\321\361\367\360wl\367\307>\257\217\21\350\307A3\277\364,5\267w" ) 500 ( #"\374\212IyD\220;\4Y\240\252\b\255\6\335\\\245\3131\311j\275y\334\326" #"\352\260\3\368\366\376H,\344\225\214" #"P\21\234\347\31\34:\25\317I\3576" #"\300\201\361N\257\230\346\254\372\270\f\240" #"\247\0024\275\337D\334\275\32\31\364\226" #"[k\233\337\321{w5\215\301\301V\272\314d\0*\232\240\310\270S)\231\212" #"I\202\332C\243<\324\326P\273\3+" #"\243\264\316M\214/\336\214'\207\336\\" #"\22DD\260v\225\337\221\302.P\232" #"\255\214e]\314\250\b\366\323\214\313u" #"q\324\205\213[\214\253\226K\6\232\2523@D9y]\273oK\b\"\365\245" #"b\a Ky::\325\r#7\265E!\364\341\244\334\331\365\36\202C\ec" #"\311\303&b$\364\214\327^\373\241\213" #"\267\307F\e\22\342i\374\211\240\t`" #"S\210\332f\35\271!\227\227\227x\370\360!>\366\322KX\16\25\247\327f<" #"xp_e\\Z\365\317\271\\W\24\313T\264A\254a2\201\374R\200\373w" #"\357\3\30%\352h\320\235s\225\22R" #"\311\336\225.\315\370\325I0\225y\323" #"@\226s6\224G\214\247\265-\331\2\330t\3343\0D\352\241\31\317\2I\223" #"\316\231\346\31\207\253+\344\222\361\304\23O@\3%AO*\345\5\f\236w\266" #"\346\270\203\311/)\345\242l\234Q)" #"\263f\2142$\332\364\373t:\322\365" #"\353\347x\353\255\267\361\326\355\267\261\256" #"\v\246\331\210\375\350(y[~\26\1\236z\352}\370\3067\276\201\313\313+_" #"\v'\300\227\321\f\246\331\351\214'\236" #"x\2\177\360\a\177\200\224\22\376\333_" #"\3747\264\246e\271\375n\207\245\216\211" #"r\321\20\362\363\364+\240\202\216\204\301" #"\317\336q\260\255\347\265{\0@#X\216\316\24\327g$}\333\6S\236" #"{\376\367qP\310?\e\211\214xe`\243\376 b\345\302QjS96" ) 500 ( #"\223\374Cr\16'?o\202\226\310\366;Mx\220`\32\236\342\3627Lvh" #"\360\327Z\a\3276mKf\\\203\210" #"\204Ej\22\302\263\3065\212\206\34\326\225\\[CK\203W\250\rf\307T+" #"\v\272\363P\32\350G\201u\374|&HS)8,\213k:\326\272z)\223" #"\347K\345\363\240rg\306]\377\324/" #"\374\2~\370\303\37\342\3\37\370\300\326" #"^\346\354\324 \344\214\2337\37\263\262" #"\370\16\247\247\247\30\1775\2502\21\265" #"\212\201uD\356\324f\220[>8\255" #"\376\273\273*9\224R\224\273\354\201\277" #"j\324\366\324\220\247\311d\201\212\351\17" #"\3\311\246\350\225\254I\17\e\260\310\17" #"o\366|\212\350Y\t<\330k\256\353q\2422\22\e\r\310T\3t\330\300l" #"\2641\276{,\211\37\ai\307\311\n\301\216R2\26\353\251\20\355\21B\2312" #"Z'W\\\3\v\242\335)%,\313bM\266\2439\210\366\220\277\347\321 \347" #"X\17<\274'\340\rt\334\273i\242" #"V\275\"\337\353\262\342\362\362\n_\374" #"\342\27\361\337\377\356\277\353;X\263\336" #"\23\357y\34\377\343\37\374\1\16\353\252" #"\23\245\312\4\267\277}\360hc5E)Z\366|\30\22mz\27\306s\363n" #"\24C\335\331\304\f\253\0NDE\355\37\235R\246\311mN\306\311o\332\\\251" #"}\30\272\377\21H\211g`\261{\244\377M\37\236\235\276\262}\207G\223]G" #"(!\233w\216\201\e\3570\373%4\211z\264\ab{\6\267?\313\373\327\232" #"I\201\265\346&\377\309o\366\336\251hs=\254\367\fi$7\374<\375\177" #"C\322\265\235\5\322\233\29\276?\35" #"\353:\252\362\3634Y\360\307\367\252\230" #"\312\264i\214\217g\216\361\302bT)\276\333h\320\24\237>\31\327\271" #"Ce\372br\235,N\254M\1Q\0\316\367\247\fdL\32x\357\a" ) 500 ( #"\267\374\321X\243\267\206\232\264z\320\270" #"\207)\202lv.\22\220\255\312\217\246" #"\303\250D\4\323qf\233R\332\30\e\32xd`*;@:\252(\211\272\241" #"\24175\\Y\3249j\27\177\2\320!RL\346i\302\32\264\376z0^\322" #"\5\252V\2220Of\30\222A\325\201;4\202UE\202\265\23R\321\204\2345" #"\373r.\f\266\3312\0271\32\177." #"\260\352\240\316\36\254\1\26\357%\r\324" #"n\335\272\205\335N\307\373\276\367\275\357" #"U#\30\20\274\22\16\246g\300\274\221" #"\320\354{\236w\216\272~\377\373\337\307" #"\315\2337q\375\374\34u\255\270\274\270" #"\304\325\325\25RN(}\306\315\2337" #"\321\326\252\262\"9#A\263\276\213\313" #"KL\353\214\323k'(\310\270\274\272t\224l]5\273K\266_\bAx\353" #"\35\363\244\211\0\365\367\226\365\n\273y" #"\357\35\324\"CZ'r~\216\21]\333\f'\267\263\23T\317\217q\245\4\226" #"yi@>\231@\375\341pe\245AE\370\220\240\362dM\241\240\2243\362\224" #"\221M\312\205\223vr\311h}E\255D{ihG7\256:4\35\226Q[" #"\265\tAE\371~I\351-\265U@2\220\213\221\343\v\256_?G\255\25\27" #"\17/q\371\360\22ggg\2528q\204\364\360b\237\234\314\350M\377\374pu" #"0\272\304)\246\335\204\213\253\313G\234" #"\225s\360\222N\370\233C2\351\236\303" #"(>\251d\264U\21\225\330u\316\357" #"?\356L\215]\247\361\353\30\245\215\301" #"\22\235\23\e\3062\214\326S,iu" #"\276\3716\240\330v\225\353\371\340\375\32" #"\350\333\320\365\365\240\2\32\274Nl\360" #"\340\331\264s\244\37:\316Q\f\332)" #">\36?\217\317\24\2531n\247\212" #"\351\257\2\276\1771\30\216\334\270\251\0245\320!!D8" #"\317,\271g\242\341\\G5Xv\257\267M<\335\356\32" ) 500 ( #"\177\337\241\326M\320\35\357\223?\177&" #"5f4\22}\370\247~\n\177\364G" #"\177\204\375~\357N\211\225\234\201\254\255" #"\36@\347\234qzz\352kGi\241f\377\257\317\277\35\30\20\301\215eY\354" #"g\243RI\370\367\234\321\203JI\312Y\e*\215\367\232z\327\341G9a\355" #"\25S2\256q\2015^&\267G\311\356y\21\301j\367>\233m\"u\203\223" #"\232\342\231\35h\330\350\355\30\1p\332\4\21\322\32*F\3VD\242R\316*" #"\337\204!\200?\356\2716\366 \4C\3154[;\4\251\223G\332\355\31\253%" #"Y\312\341\347\30aN-c\343/\3i\237\270%\203\6\20\3\270\250a\1778" #"\250$\344\332*\336z\353-\374\344'" #"?\301\303\207\17\261\34\26\225\357B\302" #"\345\345\5...\261\34\16\350]pvv\346j2\2555\325c^\226\215\26" #"\263R\275\6Z\30\237G\327h\f\\\351B)\301\221\200Gz\200&)L\36" #"mU%\334)\300\3\222u]Q\246bv\320\22\f\243\243u\321j@)\372" #"\31\4\211\370\325Z\363\263>\354CS" #"\337\230Fb7\316\22\325\17\364\252\226" #"RF\305\262\17.kD\374\217\221L\355\317\231\335\376\363,E\320,\202^)" #"\251\344$\271\312\0047\370\373\222\f\200" #"\215\353\21u\2329\20H`\r\235\275C\322V>Ol*\350\332z\230\2\31" #"\201\223\20lf\243U!V\2660\232\273S2\240E\201I\265\261\301w`$" #"\36qm\b\352\25\343_\323\267\35\277" #"[\316\331\24\213\324\247i2\302FB" #"\177\344\315\375P@eT\353\226\272b" #"\236\346MC\265\210\322\315P\264\n\35" #"\357\355d\n\36\32\3674 +w\335\331\4q\343x\0h\34HTW\204\264" #"C\372\242\234+\31\20\275\"<*W\241\e\312" #"\322\21\235DC6H}+\375\302Ck\b]\311" ) 500 ( #"hHh\322!\275\231>&;q5\333.\305\262\201\234\261\364\5'\323\t\346" #"Lbv\3034\351\346\325uE2\350" #"\235\233\317\246\246y7\373\2062\213\347" #"\346\260T\220\355\240,\353\302x\25,A\2\5*\360?>c8\375\354\16\236" #"]\206\224\324\342F\221O\205\224 Y" #"\245\306\356\335{\240\207/g\354\247\235" #"\376N\243\206\230\32=n\335z\v\337\374\273o\340w~\347w sr\265\206" #"\326\254q\245+\257\253K@\256sB" #"\352\243\354\231\2226+\224\262\303\262\254" #"\230f5.\321Q\350\305\30\1\2067\r\0221\v\31XD\312\263\5H9\251" #"\310\365dY|k\252\355\333{;2\370\311\205\371\375,X6-I\2061\264" #"\2\347\224u\332\v\203 f\304tt@\307\305\305C\324\265B\254\361BZh" #"H\260\21\266\243\223\272\341\364\364T\35N]q\357\376=\234]?\3Sp:" #"Iw\22>X\0\226d4/\37\266\336}\226\372\333o\277\215'\236x\2\275" #"\17\32\6\215\337\332\232J\237Y\3407\202W\200\262I\202dc\217\267Acl" #"\20\210\r[\374\212\bnL\\\330\271;\2C\25{\237h\304\210\200\211\230F" #"p\263)T\r\31\5\245\220\343\250\315\0J\301\16\2432\203\341r[\21\356W" #"3\3\b\351>\276\265\207sD\364M\271\324\343]zxw\t\366&\6\257\374" #"\342\337\253F\350\3404\276\e-\203kD\aBqr\rb\tE\215u&\362" #":\222\276q\246bp\302{O\373(\311\206\23$C\260 \350\f>\263\241\22" #"\311\202\371\0164\f\35^:\301\332\273" #"3\322\3111\347\357\332\357\367\270\272\272" #"\302\311\311\t\316\317\257o\222\370\215P" #"\274(Z\34\e\213\342\264)V\326\266I\221\5|\26\360\317e\313" #"\217\345\317\265\336\354^5 )gT\221;}^:\251R\n." ) 500 ( #"mT\267\30\r.J\\\215\206WSI\221G\223\2\332\237H\305\321\277c\t" #"\333>\17\342\232\330\300\30\327\355\tO\267\200/TOTqe7lX\346\300" #"\17\375\357\230P\226Rprr\202\313\313K\\^^\342\376\375\373x\343\2157" #"\220Rr\211J\0\270{\367.\326u\305[o\275\205\303\341\200\367\275\357}X" #"\226\305G\224~\357{\337Ck\r\357\177\377\373q\367\356]\\^^\272\317`" #"P\267?9\3014O\270{\367.NNN\260\254\v\16W\a\20\335\335\355N" #"P\227\5\367\356\335\305\325\262\350\240\234" #"\246t\224O~\362\223\230\347\331\2076" #"q\277\342\231\345\35\36MkC&\222\324\250\0224v\271^qO<\221\257\34" #"\2060\350h\\\357y\236\325'\317\3" #"\245\214\1&\357\334Z\27\20\260\212\211" #"\355\340E\233o\313\311\350\205AaA\4R\25\265\324 W\317\244\b@I6" #"\332]\332\212\370\371\343\275\266\352\31\374" #"\212Hv\4\35\370\236y\"=K\247\e\316eF'\330`\252B\321\26\325Z" #"Q\246IA\236\360{\232MQH\e\373\256\275\e\334\a\37\1lqE\364\317" #"|\247\311\264\355\235\372\227c%\34\0" #"\264)\261[\311b\262\263O\256\365z" #"\324\fM\200\362\30%\347\336\305\365\320" #"\375P\3736\355f\255\364\37\1\23\274" #"Kc\235;H\251\351\6\n\305\336\a\256\31}yJ\32\3402@\207\5\322\275" #"u '\364\3326k8\305\207\2463" #"\340a\34\2\332\202\224\265\304\225\265\3" #"\t\311\26393J2\214\340(3(\307\2646\301~\277\363&+\335\230\346\21" #"\274\"\242\224\30\313\230\347\23\375\367<" #"\220\322\326:$[\343\216mB]\227" #"\201\326\24\275\250)\1\r\312\t\353\242YRmCw2\16q\240\350" #"vD\277\224\227\322P\312\214\303a1\244wvC\244\b\210-\236\31" ) 500 ( #"\204X\6\210H\4/N\\\223\263\2633\234\237\237k\20P;\336~\3536\356" #"\337\277\347\231\315\267\276\365M\374\334\317" #"\375,\332\325%J\236pX\17x\363\3157\361\265\257}\r7\316o\240\230\f" #"\2166P\235*\217u\255\212DZ\366>\2\204\241o\267)\305\213\222\306\273%" #"\25,S\347\254\\Y>\377q`\21\313\277\315\320\277\210\212p\f\3524\25L" #")\343\341\272\342\376\375{\330\357OPk\v\331)\321?\rd\271n\233`\32" #"#\200\231\347\235\215\224\34\215[\34)" #"\352\246@\200\307\36{\34w\356\334\305" #"n\267\327N\315\254\231lD\"8\212x]+\316\317\317\325i=\274\320.\331" #"2\343\260.\236\231\213\5*\363\244\r" #"t\3321\277\307\305\303\207x\355\265\327" #"p\363\346M<\367\334s\200\0\267o\337\306_\376\345_\342\3157\337\304g?" #"\373Y|\356s\237s\376\221_\266\222" #"\235\376S\314\370\317\363\254\343[\263\240" #"L\31u1\244V\200\36(E\261\n1\356\326\26\371r\372L8\217\261\344O" #"#\311\214]ung\254\353\2256\277\300j\215lx\0\3\f&2\35\255\t" #"r\336r\334\263#\223#\250\337\"0\206\2444\265\37\f-SJ:J\324\316" #"\222\337u\32P`\23d\360}\370\256" #"l\272\212\334\314\224\f\211\265\337\265y" #"w\242\3\330~\25[\343\210rE\233@C\e?ksf\355\24\227iR\207" #"n\16\277#HII\6\262 \25\235\fD\216\3604\25H\21\24QjVL" #"\230\265\17\200\322C*\247(]\207I" #"\260\322\264\256+\36>\274\300\371\215\353" #"\276~\224\31\343{\254\265b\312Y\23\304@s\0326j\320\302j]Q\312\204" #"\244U@\17HY\31\342ze$S@\310\310(n\377\5\n~" #"\240\253^-0\220\244\230@'\273\263T,\320\316\372\6\25\317O~" ) 500 ( #"\367\"\2:\234n\1e\225t\177\30@\25\345\323\232&.Q.\267]\206B" #"\246\242\301\335r8\200}\0\257\375\340" #"\a\270\177\357\36NNN\361\340\301}" #"\244\224q\377\316]\\\255\v\356\334\271\203\203}oL0/..\\]`\n" #"\266\367\342\342\2\363<\343\361\307\37\307" #"n\267\303\333o\277\215\177\372\247\177\362" #"\375\270q\343\206\a\231o\275\365\226\243" #"\352\324<\247\237\\\327\25W\207+\254" #"\265\342\376\375\373x\317{\336\203rM" #"\a\335\234^;\301n\336\343\261\ej" #"\203N\257\235\"\347\214\307\36\177\334\237" #"\225\1O\364\361eR0\304\307\212'\243!a4\5\365>\6\303PK\232w" #"1R>b\254\0\204\3441\334\377b\223\336\312\304\311\213c_7\25\252>\264" #"\324\335\17\0\376\374T\225H)i\245" #"\317\200\224\336\225\22A;\331\244\371P" #"\215i\36z\327\34H\260\361_\266\346\374]\4\5<h\17\367\236\367x\232T" #"\a\327T\362\324f\26\345&\243\e'" #"\227\266\224_\301\227\306\204\315m\26\327\4:P&V\237t-\a\277W\221\364" #"\204\204l\205\236\246\34\371 \2517\333" #"Y\34\337\e\23K\300\233\263\223h\201" #"*'\243\26\350\330\341l:\321\307\324\5\6>\361^\212\210O\312t\355o\214" #"\346\276aS\21\231{\e\3734*\207\331\1\261\2666\5\373\216|H\4>\250" #"\312B\37J\340\v\242\212=l\204[\327U\3\371\234\224W\313_\36\17t\f" #"&r\236\260vs\202fp\326\325\346\24'm\372)\205\334\24r|\262M\273" #"\370\377\331z\267fI\222\343L\354\363" #"\210\310\314\272\234K\367\351\313\364\f0" #"\303\301pp%\0.\27\2(\202\244\26\\\312(rwM\373\242\345\213h\273" #"z\226I\177\200\277H\373\6\31\326l)\202\260\225" #"\314\370@.\26\27b4\\\1\230\v@\2\3\314\364" ) 500 ( #"\364t\237[UefD\270\36\334=\"\262\32\5\203u\317\351SU\231\221\21" #"~\371\374\363\317\205\263d\332h6\371" #"\302\214\237d\22u\350\202\0044\26\250" #"\211\2235\230\332\256/\346\214\276\353t" #"\376\261\362a(\300;*]\253\0\353" #"\330\304\274\220\2+h\215o\204\301\265;\320\270W\316\21\372\256Gf\tXL" #"\227V\4\305;\345\20\332\324\216\260x" #"\30\366\312\231\313\277\305\0301\364=6" #"\233\23)\251\207\200\367\336{_\257'" #"c\236\22~\372\263\237\343\373\337\373\36" #"~\343\363\237/\17\365\273\337\375.>" #"\370\340\3|\371\313_.\327n|\277\256\353p8(\3074\273rPm\r\255" #"\233\263d\257\316\303\221\362$A\v!u3\276r6ya\24\fE)\272~" #"9k'\274\224\220Z\247\222\231\313(\312\323\323S\\]]a\265Z\225l\330" #"\22\27s\262\344\264\1\260\tv\203\267" #"q\251\302\331\311Y\370\260D\271d\226" #"\226\241\332\36\335nO\260\335nq\230" #"f\311f\347$\16\2213H\247\376\5" #"\347\225_-\237!\277?\341\277\376\177\377\25/<z$\372\2061\226d&\241" #"\345\22\212\20\366\177\372\177\376o\234\237" #"\237\343\374\374\34\317\236]\342\353_\377" #":\336|\363\315\262\26?\372\321\217\360\305/~\261\2243\1h\360\3430s," #"%\274\302\v\325\211K\1\16\256\203VL\260@u\333g\323\6c\206$\2421" #"\32\265\34\224\212\221c-\247\246\224\304" #"\b\273\16\4F\234F\30G\16\226@" #"\260\5\321\226\260\e\302\325\301h\355b" #"\304R\tre\313K\231\263\345\320\266\201F]\fk\22T>\236<D\241+" #"\224 h\31\214\265\345\352v\37\211-\361%X\3109#;\247\272\307U.\256" #"\4\234@\263w\344\273Z\307j\237_\34K\314 \355" #"\201\320\23]K~\342\241\300D\350\265\252\3\242\302\275" ) 500 ( #"\225r$\301\306\202{HC\t\247\\\270\300\346|r\26\tA\20\225\367\312\340" #"\226\f@\344\225\244X&(\370\365\325\25@\204;w\357b\263^)\355\205\352" #"\3476Ay9W\32\204\347\372\300\232" #"\340\215\201\"\274\317%A\256\325\240\6" #"\255\211B\367\"ET\211\34R\224}" #"\354\274/\327b\34\353B\322i\366\254" #"\331'\347\226\325\26\243/X\337E\213T\377\252d;\4_\250[\314\214\34\23" #"\246y\302?\374\364\37pss\203\307" #"\217\37c\34G\334\336\334\n\257\21\204a\275B\b\1\227WW\330\355vp\316" #"a\350z\\\335\\i\300Z\207]\344\224\260=9\301<\317\330\357\245\222s~" #"~^\366\321\365\3655r\3168\34\16\330l6\270\275\335\301{\261\303777" #"%\230\262\300\27`\34\16#...J\263\341\211~>3\v\35j\273E\326" #"\204\346\364\354\24\367\37>\300vS\251\t\245\247F\223%RJ\a\1ejc" #"[\3666:A&hp\243\347H\263\231\366\371\330}1s\241\276\330\317\312\363" #"ob\2\2206\306r\325_/\347\332\252 \326d\314y\321xd4\217\230\244" #"\322\1\322aP\250\201k\v\24X0\345\274\303\234D\323\231\365\1776\335+8" #"\221,%\357\220\306\b8h)_\202 \n\276\351)1u\232\0\323\361\257A" #"\224 \210\255\202\224\331Z\")\235;" #"\226\0\232!\266\260\4~D\215\237K\272\227kRP\0224\266z\245\326Pr" #"F\224\a\241\367m\25$\350\365\3509" #"\264\317\rR\256\267\351\221-\300a\337" #"eg\267\322\257\354\373U\311\202\254\231" #"-\v\352\254\231\217\350D\327 7x\2179\neD&\343i\240+\210Ii" #"\\3@\255\5\37\274s\2\346\344\32[Z#\35\0\5A\255\222" #"\3410OJ\v#\0y\tjT\5\255\232\224A\327.)x\2" ) 500 ( #"\222A\37\3223 \314\204\300\\\311\344v\241\2454\225Rc\b\325P\tkT" #"\37\244i\3739L\363\f\247Y\205\17" #"\35r\212\312\273\352\21\347\210\31\214\241" #"\353\221\235\321$X\243xE\205\274N\301\311\222u\246\254\1\r\327Ryqd" #"F\262V\35=\344(\234\215(\332tBT7y%\333H\272)\e\244@>" #"O\312\2\216\234\224\371\251v\314v]" #"\207a\350\3019\343\366\366\26?\370\301" #"\17\360'\177\362'x\372\364)\210z\275\17\a\31\367jN~.\231\240\31d" #"{\360)%\354\366\a\270\320\341\260;" #"\340\235w\177\202o\177\373\333\3109\341" #"\336\275\v|\370\341\207\350\373\1\337\374" #"\253\277\302{\277x\17\257\274\362kx" #"\373\355\267\361\323\237\376\24\17\37>\304" #"\235;w\244\214\352\34.//\353&\232f\244\230$(o\215\220>\263R\312" #"p\256P\e\274\253\rsm\346%\364\220\254\e:-\214\36\25$\327$H\224" #"o\v\326@\252\312\0221\4\361\270\276\276.F\252ut\366g\360\1\221kC" #"\302s\1N\350\0203K9\202\319Y\251d\251Q+\b\274\350\347\356w\267" #"j\204\225\377\235\245A&E\351\25\17" #"\316#\223\3030\fx\361\305\27\361\346" #"\233\177\217\267~\364\26^}\355\23\370" #"\344\353\237\324k3c]\321\244\20<" #"\276\363\235\357\343\355w\336\305\351\311\t" #"nnn\360\315o\376\25\274w\30\206\25\306q\3064\0350MSY;s\20" #"\5q\2078\226\224\263\210^\223\4\266" #"\235\225-\235I\370\310\376\237SB\37" #"\302\202~\320VRZ\343\332\6\2\226" #"\234\330\301g\216*\264\357@j\234\230<\\\20\236z\6\3\234\305!0\v\r" #"\2519\367%!TT\310>\377\30\2257\345\214_\205\206\332\365\307\246\314" #"U*\6\215\203l\203bs\0-:\334\336\177k\3249\327\246\237\f\351" ) 500 ( #"\eh\21({\277sN\rw\\|N{\16\212c/\23\34\265q\220e/" #"\345\\\e\177Z\312\205\203\252\240t\35" #"\310\376\256\373\215Y\364\301\213q\2068" #"g\215_\3659qqf\262\346\215\275" #"\3223r\330\357\361\325\257~\25\177\363" #"7\177\203\337\376\362W\260Z\2551\215" #"\207\305u\267\215r\255-\17N\222\371" #"\26\345\263\317\a\327\312\217\255\225\215\377" #"\16\r\232b\312\200Y)B\3169DDA\356tm\223\356[\250\223\355\272\212" #"\224M\323\204\f\tzv\273\t\343(" #"\345\370\353\353\e\354v7\30\307\t\373" #"\375\0016\250\301\32\356\256\257\257\313\365" #"N\323\204\223\223-\236={\206\307\217?\324$Cv\314x8`\2163V\303" #"\n]\327)\302\32\220&\251|\235\234\236b\30\6\\]]\t\215'\4\344\224" #"\261\333\357\301\211\21\24\230\350\372\36\336" #"9\34\16\at]\207{\367\356\201\210p~~\216\30#V\253\25^}\365U" #"\354\367{<z\364\250\354\367\355vS" #"\3567\306\210\315fS\367\t\271\2|\330~\263\347\325\367\3rNj?2V" #"\253\241H\242\355v\273b/\35H\244\302\210J\323\264!b\362\334Y&)\262" #"\224\371\rm\317smD\264}_\1\241jW\314_\24\24\217*Pb\277k" #"1\202\370\204\328\266v\376\330\367Y\363\0243\27$U|h\35Z\340\340\n" #"\367\267\375\234\266rC \4\343s\232\337Q]\341Y\203f\"B\"\31\251[" #"\252$Y\366\256\17\276D\367\22\4\306" #"\322$%:\316\256$\fs\234\225\307" #"\252\324\201$\315\210\246\252\0\343\252\323" #"r\210A\213V\e\300\326\242\256\26$" #"\226\265G\355\253\321\232\233\372j\363\265" #"\362[\362~\31\235-U\360\345\3638\346~\267\317U\236\247\331U\361\331" #"\302\235\aX\233+3D\212\316\254ZA\334\1\265\321v\327\332\277\225\245" ) 500 ( #"\17\246E\367\333~'\0\315\260\n\24" #"\273b\210\266\320u,\336\214\245\"d" #"\343\276\241\311o\331o\266\246\215O\210" #"\312\347\235R\0245\27\243/p\26\374\222\b\1\310H\352\314\2554\337r>Z" #"\344\204\234p=,\373tN8WFq\b\324\341v<\3003c\350<8i" #"F\342=<\262t\30199\34\226\225" #"\266Qy\231\231\334\374\254t\371\n\354" #"\241%W9\24>\4\344\230\212\316\241" #"w^\371\205\325)\16}\217:\331\246\240\357e\3\0(\304s\331M\252\250\0" #"A\212\276\364\245\177\212\357~\347{\270" #"\270\177\17o\274\361\6...\360\225\257|\5\26777H\372`\275\353P&" #"7\241fX\266\206\366`\373\276\307\367" #"\277\377w\370\265W_\301\217~\364\26" #"\336y\347\35\20\1\257\276\372*>\373" #"\331\317\"\204\200\377\343\337\377{l\326" #"\e|\357{\337\307\eo\274\211a\350" #"\361\360\341C\374\341\37\376\367x\360\360" #"\1\366\327\2678\323ig\253~P\302vm|0ZC\213^\265\322c\266\271" #"\354\331\246\224\244$\351=\246y.\204sy\237/\274Y{\2570\361\274>\a" #")[\333\346\266$B\264i\247\202:\17\303\200\207\17\37\226\315\331&\0Y'" #"\276\344\2142z\261\315\252eo\205z" #"\320\313(\311t\264\331cA\267\373\276" #"\307\345\345%\316\316N!\35\240\242\316 \r4\256\224\3112g|\365w~\a" #"o\277\3656\340\b\377\371\277\374\27\234" #"\236\234\342\321\243G\210\2616\211\331Z" #"\375\374\347?\3077\377\362\233\30\206\1" #">\4\214\352lN\317\316\361\371/|\36/\277\364qL\363A\235\360I\341\24" #"\265\a\e\301\v\2627\327\300\257#%\357\23!)\304b\215;\314R6\16\r" #"ZR\202>-\317\313\354p\371w{~\25I\365\305" #"\371\265g@\220\0IT\301\222\230\224\317\17A\22\332" ) 500 ( #"\306Xss=f\244)\4i`#\323\\\25\343\333\6\26559\315:>\234" #"\313\236\260@\2405\312\366\262\357\214\\\235\261}f[N4\36\262<+q\21" #"\326\371n\1]\233\\\31*\340\34!8\200H\344\254R\252\223\234\f\305t:" #".\323\221\27}`M\274\341=X\eA\315\350\317\312\277\5\v\301Fz\2T" #"\3174&I\350I\202vC|\r8 \266F\226e0\17H\345\253E\224\314" #".\336\273w\201\177\367g\377\26\37\177" #"\371\3430i\261\366\214\267\347\214\210\n" #"7\324\253]\313\316\t\27\\\317\241\1" #"\35]\350\26I\205#\302z\275.\374" #"\321\256\353`\343\222S\314\370\350\243'`p\31;|yy\211+EJ\341\35" #"\246q\306\341p\300\207\37~\210\307\217" #"\37\327\244\202\201.\4P\20\277s{+\311\3518\216E\27\e\20I\306\375~" #"\257\240\303\260h\270\232\246\31\316\21\206" #"\241\307\341p\20tV\257S\344\5'\txW+<|\370P)\27\300z\273" #"\205#\340\341~\304\351\351)\302j\300" #"\371\351)NNO\321\205\16]\337a\275\336 h3\213s\256 V\307\25;" #"\333\373\206\330\231\2037\307o\243\204\345" #"\34\v\30\261\333M\317%\374V\361\23[-\225H\233\246\231\264\"`t\"\260" #"\241p@\257\215\316U\211F\246J\205\20\200$\225\265\2Px+w/\321\365" #"\326G\35\227\210K\300i\25\261f\37\330\2133\3\326G\244{\247m\326*\t" #"\251\"\240q\216\317\235\313\266<>\315" #"S\321\323n\203\360\362\36B\321\203G\316J\1\222\246@\311\21\31\34er]" #"\201K\211\212\33535\b\243\27\20\23" #"\322\254\237\aF\360\244\301\271P6s" #"\322>\21\322J\256Q\27\234\202kr\205\b\326\0\325\304/\326\307" #"\21u\344\2615&'TZFYC\3115K\220g\2034\304\336\352" ) 500 ( #"\36 \3\230\24P\"\250\32\203LC[\364\n\261\224\356SN\350\372\36q\236" #"\341=\211\316m\223H0e\244(\212" #"\b\310,\304\265&\261\221\312\206\330\377" #"\256\v\210\323\254\325o\t\224\315O\207" #"\20\312\371m\3\323\343\3271=l\31?\2504\35\226@[\v\342\224\304\\_" #"\336\207b\177K\217\22\327f\310\2343\202 \6j\\S~\356\203\t(\22@" #"\234\322\202\aJ$\345\17\357\35(F\360\320c\350;\3444cJR&\236\247" #"\31\303\252GJ5\273\264\357)\\\30sVj9,\270\265\r^\240w@\265" #"5\345\373\347i\26\355\332\340\341\242\262" #"8\265\331\6\244$\371Y4q\345\234\245\22\354\230\6c\v\245w}\2474\213" #",\343Ls\306\213/\276\210\337\377\357" #"~\27\377\371o\277\215\355\351)\276\365" #"\255oa\263\331\340\263\237\373\34no" #"n\324\20\t\237N\320\20\31\245\373\321" #"\223\247\370\331\317\376\21\337\373\336w\361" #"?\374\361\37\343\301\303\207\30\372\16\336" #"\21~\360\203\277\3ky\370\376\375\373" #"\370\362\227\277\204G\217\36!\245\210\377" #"\375\177\373_\361\355o\177\e\357\276\373" #"\23\0\214\323\323S|\355k\377\f\367" #"\357_\340\260\333\203B\300~<\340\23" #"\257\276\212\357~\367\2738\vA\272\346" #"]Eg\354\0\265\301\256\31\336j\240kCTKX\27>!\20\347\2640|" #"%\270\340,\223\362\310\0254\247\216\303" #"\254\210\200\367\0011\336\226\344\251-A" #"\35g\376r\230\244\4i\323n\344w\244\201.Fs\32\226tI\326]\317\220" #"C\bR\336\237\246\to\277\375\16\356" #"\335\273\217\337\375\335\377\26\3634\353\231" #"T\331#v\310\320.]r\330\236\234" #"\340\17\376\360\237\343\377\372\213\277\300\341" #"\275\17\360\316;\357\342\225W^\321\322\n\203\262+\274\326" #"o}\353?a\265\356\321w\3\346\30q\347\342.>\365" ) 500 ( #"\251\327\361\225\377\346+\350\206^\262}" #"\275\267q\34K`E\272\27\23$8\315\0\302\320k\203gB\366\265\251\219" #"I\220\355\34\240\345\270\250{\277E3" #"\245\242\21\224n\340\4\345\266uS\3!\t\202\5d\226\241\3\222\3177\315H" #"\320\6&\202\352\264\2\344i\341\364\234\2532`\24\2\30\16Q\e\214Dj\211" #"5\310U\344\243qP\5Q\260+!*\274M\333/vO-?N\236\2548" #"\21\316\22\214\373b\354jP\341\235S" #"\224\221\301\304\242\362\240\277\337~\377\362" #"\273\207,\327L\0\0 \0IDATL:\315\214\257\252\270\344T\354\vk" #"\260\212\200\242\340!\2438\217\364j\275" #"\214\324MJ\331\262\241\34\306\217+^" #"Q\21\25\273w{\231\344\223\375\275U" #"T\260\237\265\r\257\244\211\375\27\276\370" #"\5\354\16\273\302\311k\eG\2554\354" #"\275\307\365\365u\31\242\342\210D\307\326" #"{t\235\360K\257\256\256\3129\274\275\275\305\315\315\r\326\3535NNOqs" #"y\211i\232\312g\0\300\365\3655\336" #"\377\345\a\210)\342\346\346\2728c\v" #"F\317\316\316\260\337\357\261\333K\2406" #"N#\0\24\356\252}\327a\32K\200|{{[\202\231\303\341\240\203Yz\251" #"\2501c\277\337\203Y\324\r,\360\334" #"n\267\205J\360\340\301}\254\327\et" #"C\217\213\273\278\335n\261>\335\302\223G\257A\2319}f\321\213\37T\16" #"\314\32\330\30\3008\217\2427\v\241\323" #"X\322R\374P\252\252\5V\3018\16Z+\nY\337\313$\200\212=#\240\6" #"\22V\3327\3443/\374\23768fH\251;e8o\3010\364\\\313\231\263" #"\251s\235\236\213\210\232\234\312\36\257\224" #"\244\26\360h\317\37hY\325\260?%\20\253\301f\342j\277}\360\332D" #"^\207\3\244(TB\v\200RJ:\2\35X\r\203T\200\25e\265\200" ) 500 ( #"\363\270\372\323Vx\b\312\273$\24\372" #"c\bT\344)c\224\221\356\26\354\220Rb\304\326\23\240R\220V\371m\253U" #"\202\320\346\202\202Yr\3f\200\35\234" #"\227\365\317\272\3069\3472\246>\221\330" #"\220\316\327\ts\204v\332\235Q\347H\327O\366!A\e\246|\323\300'\234-" #"\3617^\300\17k\2547\0;\261R\317\370y\300(\305:\23\1l\250,\27" #"n\276T\264\225\233\313\342[e/X\223Z.jZN\325v\274\17\210s\23" #"<\36U\370m\272\232\355\223\266i\260\215AZT\331\354[\333\bHJ\205\350" #"\272\36\0343\2328V\356;\325\306\273" #"\266jeg\322\276\337\ew\31\313\312" #"}\20\347\252\372\212]\a\307(\16\r\20\247V8\2329\203U\343\322.D:" #"\261\245\f\3131*\347D\37$32\262t\233s\243%\327 +D\322\245\30" #"B(\332\264\206\256:\347\212$\0211/8|@.\223B\222\222\215\275\323F" #"\17+\261\260\\\213\225M$\3433\375\277e9\246(:x.\331\216-\346\37" #"\375\321\37\341\361\343\307x\373\235wq" #"\347\316]|\375\377\374:8g|\372" #"3\237\321R\212\330\235\247\37=\303\207" #"\37~\210\247O?\302\317~\3763\\>y\202\337\372\322\2270\f\3:r\270" #"\272\272\306f\273\301\255\226\326_~\345" #"U|\3463\237\302\203\a\17\364ay" #"\f\303\200\337\373\275\337\303\327\276\3665" #"\304(\223\315\326\3535d\3169\203\300" #"\360.\340\343/\277\214\213\213\v\\=" #"\273\304k\237|\35\253~\205\224\353\4" #"\270\326\30{_\207\177\230\361\265\337;" #"\226:\221\262\203\223L6[\t+\227\3\312\26\f8\e\313(\277/\353e\306" #"\251\362\304\354\32\256\256\256\360\261\217" #"}\254lz[\177q\310\272\307\220\1\366z\330k\23" #"\\\337W\341\352\212\30\324\240\3059\3024%\254V+" ) 500 ( #"}\236\300j5 kv\312\331L\251t\36\373.hu@\214\344'_\177\35" #"o\277\376:~\374\343\37\343\3157\377" #"\36\367\357\337\303\347>\367\31\225\312\23" #"\323\225r\302\247>\365:\276\361\215\37" #"\342c/\275\204\317|\372\323\370\352\357" #"\376\16\316\316N\221\22#E\t(\231\333\262s^\32y9pz\310\243\0017" #"R\212C\235\346\5R\247\234D\246\311d\340J0\214\6\221\321+t\314E\251" #"\300t<eF|\213\352\312F%r\242l\22*:\220\223\342E\224\325!W" #"#u\334\\\306E)E\a\217\344$\243\36\301\332\251n\1\362\222\263ND\b" #"$\243\242[\304\332\214\236\375\335\202\310" #"\362\322\352\201]\207P\232d\374$\30" #"\345\276I\321\252\254F[\256\277\362\343" #"\314\311\0036\260\243M\272\262V\25\254" #"S[\203`\35\347\231X\6\240\204 \\Cf\341\346ff(\303Ml\225=" #"\17\357\253\324\237\253%\300R\375\n\226" #"\300\261v\374\e\275`\231\240\332\340\233" #"\303\341P\326\344\352\352\n\227\317\49" #"\35\347\21\253a\5\0\270\275\275\305\355" #"\355-V+\341\240\206\20\360\321G\37" #"\341\361\343\307%\20\346\314`\r\370," #"x^\255\326\230\246\3\306q\304v\273" #"\305v\273\3058\216\270\271\271\221`P\313\364\3234\25'>\3172\4f\236'" #"\304$=\n\273\335\16\275\216l\277\272" #"\274\306j\273\1\b\270\270\270\220*\210" #"\27\305\202\365z\215\276\357qrr\202" #"a\30\212_\260\237\231\\ZQ\v\320" #"\275a\210\247\214\226e\254V\275\372\f\323.\365H \304XG\2573D\205\300" #"\312\301-\3028\305X\350[P:\212\365\237$\25\253\257N\265Q\376YT\6" #"\253l\333\361^\26\307\37J\343WTU\200r\216I\350\37}\337\301\250" #"R\326Pm~\3144\252=\4\311\24:L\213\374Z\5\316t}\205\352]" ) 500 ( #"\372Q\34t\337\326\357\255\r\207T\202" #"\337\320u\310:j\376\370UJ\336\254" #"\224\35\345\327wV\221\345\266g\202 " #"\232\260\225\207_\222\266\\\3078;\220" #"HO\365]\241\34-\252\2730\332\25" #"\352\0\1\316\352\343\233\3062\225;l" #"\357\305*\234\5\221\244F\207[\237\21" #"gV\232\242\302\274 \200\305v\221i\265{k\350\22\320\201I\22^\37\274R" #"\v*j:G\341\277\213\206|\35\372\301\312{]\254\217k\256oN\360}'" #"UMT@ \353>\2402\346X\233\352@eh\214)H\225\30D\23\r!" #"ZT\276j\326\375/\223\362&\204\256C\232\365\226\271\306r`\345s\307(U" #",\230td#X@\0255\2655cT\340\322\354V\213\272.*D\256R\305" #"\354\357\31698\n\262\306\231\221P\207" #"\6\331\357\305t\254\24S\23J\3V" #"\210\250H\250Z\242_\252\211\322\304\4" #"\275\1\26\35\323\224\321\r})\247\330" #"\a\312&\325\22\2153\343\342`\272\251" #"9G\244\270\334\264\26\275\17\375\200y" #"\232ly\226\260r\203*\266\243K\365" #"\224\351>4\351\32\311\260\300\326\264\243" #"\315\20\314\200u\24{\341\307I\20G" #"\222\n\213{\223\316[_;\274\315\21\267\20:\200Rv\237\347\031777\370" #"\323?\375S|\343\e\337\300\377\373\346" #"\337\343\376\275\a\370\306\177\370\17x\343" #"\3157\361k\257\274\202U?`\267\333" #"\341\27\277\370\5>\370\340\3\234\235\235" #"\343\321\v\17\360\373_\375*\316NO" #"\301\336\1\216\260Z\257\360\350\321#\274" #"\374\362\313x\355\327?\201\2302NN60M\273\266d\331\252C\34k\326\315" #"qB\327\5\374\233\377\351\337\340\335\267" #"\337\306\331\335;RV]\214\304\254\304~1\322\4d*H\235\5\373\255\4" #"\226lPq\364\322$\22\220\362\f\347" #"\244q\320y\t\200\272\256S\371\31\345~" ) 500 ( #"f\24\236\226\361\247M\353\323d\220\214" #"\354o\327f2:\265\304\5\f\241C\234ECP\320a\31I\334\226\325\332R" #"\237\375L\344\201V\213\222\232\361\340J" #"@\254F\23\204b\30\344\371KI\372+_\371\n\336x\343\r\314\363\214\357|" #"\347;x\355\265O\224\306\30\aI\376" #"\276\370\305/\342\316\235\273\340\234\360\233" #"\277\365O1\215\a\21\357\346*\215\325" #"\226\222\354`\226\3\253\377m\262S\216" #"\235\326\320\264\31\207mT\245p\211E)\307!s*4\31;\17\346\260\211\b" #"\321\222\25@\313\224U[\272EF\314hH\260\30\341\330+\222)H\200\17A" #"G\204f '\260\363e\235\210Tq\221\b\336\tW:')\3639O`d" #"\335\aS\341\340\313\365\211\32G\233y[8X\23\25W\222\1\357\\\221\2763" #"a\361\326\270\1R.\363\305Hz i\260n\1\204\226vE\343\267\256U;" #"X\306\222\253z\3765\360o\354\204W>c \a\342\332\205-\364.\a\244\214" #"a\275F\360\36\273\333[\214\207\3\306" #"y\306\263g\317@@\1\17\366\273\35\246i\204h\253\n\277\276\357{l\267'" #"8\34\16x\357\275\367\260\333\355\v\217" #"~\32'\34t\254o\2143\346i\326\340\35\252Mkg\24p^P\227\325j" #"\205\234sA>\211\34\272\320\259C\346\214\333\353\35\"gLq\256I\25\4" #"\241\265\4\352\362\362\022777\345|" #"N\32h\357\306\21w\356\334\301\203{" #"\27\270\276\276\301Kw.\360\350\205\27" #"\260\335nqvv\216\224E\216\253\353z\234\235\236a\232f\260w8;=\5" #"\221pjK\260\255\250N\353[Z{`\373\315*4\255\2434j\358K\t" #"\\\23l\357C\231\204T\354\2315Y\2\205k\334\276,\360\265\227" #"\331!\351\374\326FQ\255\200\310\317\333\1=\342Q\234\2(m\231\276" ) 500 ( #"$j\214\202.Z\220\225\2626\311dE\35u\337F\223\360\323DT\374\34[" #"\6\5r\222L\e\200\300,\372\3512\241\255N\357\352|@\324\240\3149*\215" #"g\355\32\333\177[\202g~\235iI" #"\245\260\375^|\262.\225\351\303\266\275" #"<Z>\221\177\v\276\254g\313\367-" #"\325\6\26\351H\23\363o\257\251\335\3" #"\366\34\1\240\0065\2320w\35\362\34\221]E\312\255B#1\205q\200\303\342" #"3\344\261\261>\27\343\255\222\330;\345" #"5\264\366\225\301\205V\306\0B_\207X\31\265Gb\345\266\234N\332\17!h" #"n\333\250m\34\370\266:S\326\32:" #"\3726gt\244\262\\\266\6\31\345\371\3303\212Q\3Xh\320\r sB@" #"=C\6;\302\202}\206\366\340\2406\245\222\370\362\224\31AU2r.\365\267" #"\362\\J\\\2212@\232\b:I\262\332 \266\275\306c\32U\vV\221V+" #"f\235K\20B\2074Or\327\5\301\26 \263\262\bZ]\377\332\b\335\356#" #"\373\256\322\214\351=\202\323C,Dh\205\217\233\300\26352\0jFm\302\351" #"\363$\260:3B7\200(\225\215\260" #"Z\255j\3B\224\262\227\21\230\333\210" #"\337\214\3\201\4\301j\26\304\206\6\4\r\370\03412y}\0\1\331\250\265P" #"\302\2646S9\247#y\25e\263Q{\231\353}\36\227M\353FE)!1" #"s\t>\376\345\277\374Wx\370\302C\374\340\357\336@\327ux\357g?\307\373" #"?\377E\321\261=;;\303\213/\276\210\327_\177\35\237\373\314\247$``!" #"\305GEe\276\364\245/A\246\230\214\270{q*\235\271X\216\343k\215e[" #"\302\312\254\345\25ft\235\307\366d\213" #"\317}\3767`\235\356\202\254V\343\"k\233@\20\264\215T~\303" #")\331\234\233{\265\373\27^S\225:\"\362`\265cfH\204/" ) 500 ( #"\244\201\211v\224\36w{\312\365\e\17" #"\211\341\234\314\246'\342\347\312\323\314\302" #"\223\312$\310\201\211X\v\275\243f\213" #"m\371\266E\245%!\2310O\342\30" #"\357\334\271\203\323\323\263\"\327S\320\371" #"\346\220\245(\316\214\274\203\217\204{\367" #"\356\341\317\376\354\177\306\337\376\355\337\340" #"\367\177\377\367\v\202\5XW}\0e\306'_\373u\fC\217i\267/\327F" #"\271\226T\3048>\177\360\0\200\275\323" #"\306*m\340\362\4\a\6sT\254\36\340(\16/\303\220\t\255\236S5f\366" #"\254J\351\260A\2232U~U\2533\274H\36!\n*\2005\362\5\20\313\264" #":+E\301;\311\17\27h\b\220r\24I\32R\305\216\34\1?@Ja\325" #"Y9\2574%\206&CZ\"4-d'\316|\221H\27\364\5\312\201\255\222" #"x%\21\263\3655\373\240\243\243\345~" #"\f\305\221\362\\Jh\316\266\360\277d" #"\364s=\347D\204\315f\243\201\2664\343y\347\260\333\357p\371\321S\\^]" #"\341\331\3453E\253\a\334\334\\\211P" #"\377\24\361\370\361\aR\255\"\251J\355" #"\367{l\266[\354\367{\314\363\214\355f#e\332i\302\341 \315b\3030\0" #"\0nnn\220rF\37\2\326\233-B\360\230\306\21\323$\262wO>|\2" #"\347\34NNN\300\0nnnkpaCE2\320\365\1\375\240\324\2229!" #"g\321\346\36\372\25\316NNqvv\206\223\323Sl\326k\f\353\25\30\300\253" #"\257\276\n\357=\366\373=\372\276/{(\4_\316\214%\330f\3ONN\212" #"M\37\307\3\20\31\3750\bb\32m\350KEX\2746\246\32\335\301J\313!" #"\210\355\226\221\355\332\330\323\4:v^" #"j\211\177Y\322\26\3316\t\352\222\32&\v\326bL\5-c6$" #"M\234%\3247\230\216\265\3559\373.\300\206=\30\270c\200CT\304" ) 500 ( #"\265\6\213\307~\303\316s\331\207\232h" #"\300S\241 Y\205J\366\234\f\312a" #"\a\364\335\nS\232\21\34\201\310#\246" #"\250\315|\2228Zu\206\271\362^m\275\314\2662\243<\303\2446\242M\"[" #"z\202\254cE\310\255\t\330\344\36\271" #"\4\327\365y\24{\323\6\361\266\266\206\232*X#\271;k0\311\213\376\20{" #"\266\4\v\266*\310\324\322\344l\377Y\fp|\35\245qIm\3424\251F\263" #"\22\220[\324\260\255X\266g\3369\251" #"\6\v\r\301\201\23\3$\373\311\356Q" #"\326\206J\205M\222\213y\341\353\204S\253JM\200$51\213\232 \35\5\262" #"M\305\207\32\273*(nE\227-@\266\336\v\213\271\210\bs\316e\340\216\353" #"\264\207\6e\266\253\330\360\224\313TP" #"\321\312\255\215n\254gGV\252\325\257V\372KNVBD\316u\22\246\351\207" #"\307h\243\334\353Y\5DL\300\326\250" #"\365\315\366g\251\3269_\206\221\304dU\23\213[Di\2\32\236[\203^n" #"&\20.*\4\262\222\220jX\254~\25\265\242\20c\224\330\324\16\345s\a\36" #"\365p\210\241\212\30\372:\241\244(4 #P\3201v\251\224m\333\317\263@" #"\212\34\211X\372\34\1u\302\226P\267" #"\301\256!\301\206\nZf\330:\364\345\246\21'\6UK\220\216^y\250\301\373" #"R2i\17\211\5Mm\346a\306\243" #"\345I\225{Q\204\372\267\277\362\333\370" #"\342\27\276\210_\376\362}\274\377\213\367" #"E6\203\31\27\27\367\260\335n\360\322K/a\325w\245|\306\220\304!3\253" #"\223\223\340\315\207\01612\206\325\240M{5\23j'.Q\tv\252v\254\r" #"L\360\316\v_0\210#O\251\216\275\265\2064\257\2452bW\20\6\357\205\323" #"iB\337\307\315j\242ei\r\16\204\314I\b" #"\354$\31$\224\272HZ\6.\e\232HKk\251" ) 500 ( #"\30TAn\2544,\243P\333\256\343\222\354p\2\2624\272\245\"\a\206\346\31" #"W!l\273N\322\3573Z\312\323\313" #"K\370\20\260Z\255\361\322K/\226\216" #"\345\226\312!\222]\26\230\2\224\22|" #"\220\1\22\277\376\353\257\341\345\227?\16" #"+\315Z)\320\34\233\361\262\16\207\303" #"\242\32\321f\260m5\243\335\257\314\252" #"d\240\353\23B\247\250\237\376\235P\366" #"\214\355\e\351_J\350|\r\354\201\345w\35\277d=\227:\252\255a5\a\347" #"}\a\357{\260\226\341\311\273:\265\210\314\351&\2556$X\3 s\2\273\0" #"\220\204\346dh\277\236g\357=8e\260\316X7\301\3116\3206\311;GX" #"\354u\326r\34\231\363\360N\317q\345" #"\351\211|^\3028\356\261\331\254\245\203" #"\2373\342$\242\3771%<{\366L\233f\214k(\234\356y\236tx\t\353" #"\31O\270\274\274\306nw\203\20:\274" #"\367\336{pD\270\272\276\301\341\260\307" #"\320\367\330\357\245\271p.\235\304\244\262" #"q\214\353\333\35\16\207\3B\b\270\270" #"\270\207n\30pss\213\335n\217\234\23nnnqr\262\25\244\"3:0" #"nnn\313\36:\331\236 !\343\331\263g8;;\307js\202~-\335\376" #"\237x\3555\364\353\rNN\266\350\202" #"P\232\206a\300v\273\205w\36w\316\316\0\6\206U\217\320y9\263\352\\S" #"L\230\342\254\222MT\321~=\3\366" #"\34\316\316\316\312\336\20\333\347\27R>\3260\330:\255\303\341 g.8\rV" #"%\250am\372\24gd\t\36\324\271\3319\252\347\335FKW\eB\nZT" #"~h\353\330\nb\252\32\260\226\\{!s\1\240\322yM\320\240P\3_\257" #"S\270\240j0%\303\307rt\253\255M\2552\230(\275\323sR\201" #"\31;k\314\204\2563\177W\221_P\r\330\355\275N\203\26(\312\213\314" ) 500 ( #"\230\362\254\337\241\25(\347\e\333\3554" #"A\\\322\315\314\377\332\265w!`\232" #"k\317\211\255M\233l\253\345X\200W" #"\4\300\223$\223\326\314\323\3322\"\341" #"\216\346\306\356\332\313\6\357\330z\25\240" #"F\251\220\t\\J\310\245d\217\32\254" #"\n\374\370\253\325N\4\261\267\36\203e" #"\271\333\354Wp\36p\306\35\365\232\24\210\215)CA\232W\355G\320*\21g" #"\244\244\rkii/[\t+@8\275 ,\366e\35\215\216b\257\1 \232" #"\314\237\363ZIm\321s.\t\3441\".\237\245\225F\365{^\a@IE" #"Ry\312T{1\322$\215\206\231j\242\343\314?(\337\253]\377\266A\214s" #"F&\251\34\222\23\225\32r\16.g\321\37O\t\301\23\214\2166\317\313\317q" #"\244*X\234\n5\302*$mU\246\5\f\215\256\243\227\6\343-3\211\255\207" #"\252+y\222\375h<j\357\253\256o" #"\365i\346\317\254\257a\220\200\235\204\302" #"7'\31}\r\"\314\322C\324a\236" #"'\235\267n\255\37\265\373\325\26\305\273" #"\312\355)\331\276\221\254m\263\266\334\336" #"\346\260\0244\6\265a\243E\345\304X\324y\365m\6j\31\0245\357i\241{" #"+\223J\371\250\31\215i\350\31\224\330" #"\255e\0\3132m\3\264\215[\366\231-L\337\32\266\366}\257\274\362q|\354" #"c/\211\343\235g\220uT*\327\326" #"{A\262\234s\312\361\253\206\335\373\200" #"<\315\225'\232\363B\216H\214\230\242Y:\4\233\270\32d;\24\234Y%\252" #"H\221\212e\226e%\314\26\275\rA\263TTnS\233%\345\224\341\2748L" #"+}C\212\37\222\215!\227\317s\256\"\227\345s\2162X\273\217\247O\237b" #"\275^\343\366\266N\237k\0031\347" #"\2\34\244\264\347\310\253>\241\362\204]XP,JR" #"D\212\230\350^\31\307\21\344\30\257\275\366k\213\317\266" ) 500 ( #"\375\n\222C\223\231KI\217\354\236\235" #"\303\3410\252\303\225R\216\35\332\302%" #"o\366\367q {\34\270\267\311S\213" #"\252\224\204\305\2_\22$\312\221\253\245" #"\275\254\262N\232\3412\213>\265\234\253" #"\345\264\32{\325\275\252\345\326,<\303" #"\326A\331\265\311Hk\241\241\304\230 om\306\n\253j\206Mz\262\222n\337" #"w\300$\323\262\242\3567Nu\2\234u\343\23I\243\234\367\276p\355Z5\3" #"\243\4\345<c\232d\314\251\255\3618\216\230\347\251)\21K >M\23./" #"/1\216#\356\335\273'\311\242\353p}\363L\271\244k\34T^.\347\214'" #"O\236\210\256\351\315-@\204\323\223\23" #"\214\343(\243\264\203G\337\365\230\346\t" #"9g\fC\207g\317.\365\357r\317\2342V\233u\31\32\3\6\316\357\234\343" #"\342\342\2\347w\356\300w\1\2677;l6[\334\277\177\27\207I\324\5N\267" #"'899\301f\263\301j\265\222\240\230\4%v\0\272\320!\346\204\230#<" #";\204\241\216\a\27\16\247\214\263\236\323" #"\214\241\e\20SDJ\263:e\325\26\235gqhNh#1&0G\304\234" #"\320\373\1\31\265\324\32\25Q=\16\30" #"\333\2067s\356\22\2509M\272*\325" #"\350\330iY\371\265$\335\221\201\304\310N\235\262w\202jiiR\234\\\213h" #"\322s\347E~\16X#\240]\263U\1\240%}\331O\20\365\36,\301\222\224" #"\23\274:}A\325\264\254\34\23\20\202" #"\2\6\200\224\372\353Yn\257\241=\337" #"f\373\354\34\267\225\224\366\275\246\367\v" #"\0\326P\346\272 \264\4bU\365I\310YA\0-\271ZB\32\323\\\374h" #"\361\225j\343\217\177\326\3324\273\246Y\317\211suP\301q5)\204Px\261" #"\255O\227\177\27\335y\243F\24\205\aUIb\345" #"\377\266\23\320r\22T\316Y\245Q\237\203\346;\232" ) 500 ( #"\270\326&\342\2vQ+\257'Mz\206\362\325g\256\\\343\\'-\266@\a" #"3cJ3z\327I\300\252\24=\347\234R@\204\2`\201a\273\337\205G+" #"(\237%^\254\250\270\305\27\26\224\265" #"\0250\273\376R\261\322\312\205\260z+jZ\224\22$\312\4\250\241l\271:}" #"\265\355\213)v\\\239\a\233\212\n@{\324\26Ug\215'Bp\372\314\23" #"\254\326\37g\225\2\314\274\270\17\263\301" #"f\343\235\367\bp\345\34xW\253k\0060&\353\277I\\&\246\225\347\250t" #"\31G\256\f\206aMn\354\371\e\362o\300R\e\244\347\234u\302]\222\4\v" #"\320&K\331O]\337#N\23\262s\245o\253\356!(\3507\227\0\\\270\325" #"^\372?\310\264\243\5L!x\204\314\265\241'\307\4\247r(\241ha\272\"" #"\373\5R.\251fY\203\357\212S\360N\272\335L4\335x\203\320\e\233\247\t" #"\235v\314:\37\0\222\200PJ\331\t)\315\b\241/\17\305J^\266\261\354u" #"\214b\265A(Q^p\"A\2049Et}\17$.\204o\373w\"\302\24" #"E{\315\220\2146\310]\224\34\32\343,\16\20748:H\311\200\31\320\240[" #"\fO\204w\35\234ra:\347\305\351\350fm'\265\330:IF_%\334\244" #"\304&\e\271\315\320\312\341\360\32XC:L\245,(\207\26$\e&MM\320" #"O\4\260u\376jS\217Q\327I\6V\210\2607\264\254`<Y=G\254e" #"\202,A\266%Ge$\264\32\226\241" #"\357t\3\233!\225\317\331\355v\360\236" #"\300\\\365\360\314\0303k\e\243\t\305" #"gq\216\254\1\330\2616\37P%\305\3109L\207\3\36>\274\207\333\3355~" #"\3637\177\263t1\233s\27DP\311\365\3402\252\325\366\253\r" #"mh\235\32@\vc\307Z&\5*\267\271M\222X5V\333" ) 500 ( #"\354\271\345\t\225@\271I*\210\314\201" #"\346\222\312\267\311C\221B\313vN%" #"\203\35\202\224Y\205] \t\210\367\16" #"}\327\203I\32r\210i\321\351n\245\327\375~\17\343`\255V\3\3061.\202" #"x3D\3238\225\211K9g\221\214\2\243[o`O\342z\267\303\345\345e" #"5\222\343Tdf\256\257\256p\263\337a\277\337\27\203k\35\376\242czS\276" #"7\306XD\367\333\4b\232&\354v;l6\e\354\367{\0\300[o\275\245" #"\3371!\245\319W4\322\207\0N" #"\262\276\207\375\210\223\355\26\347w\356\340" #"\275\367\336\223I\202\252\331x8\34\20" #":\217\365z\213{\367\356\341\v_\370" #"'\b\301\343\366V\224B\316\317\317qvv\6\357=\326\3535V\303\n\253\325" #"\0\327u\330\355\5\355\225\0Q\207\315" #"\250\241\267r\2454\351\306f/\210\373\"bpd\370P\253;\246jc\b\32" #"C\232\211v\363\r|\27\26N\30\320\262\34\325&K;K\16\20MjEI" #"\231%\210\bD\230\217\202\313\234sA\35Y\221Xqp\1)=\257\261k\177" #"\267 \327F6KuJ\320\317\322\310\25%9\5,\31\227\304\337\20.\263\241" #"\245\367\240 \202j\233\265\243\\\344\350" #"\262R\262\24\215n(\3m\345\244\245\250\30\32\eTI\1\301$\232\n\240\4" #"RD\312~\332\366\206X\223f\213`\3315\333>\267W\e\20\331w\370`\223" #"Fu(A\212\350}\207L\265\331M>\302\270\273\320$\274\366c\264<U\v" #"\30l\2\234T*ha\23\215\213\332N\352L)\225\1B\206\226\225\222s\23" #"\264\331\264\274B)\342\212\362\203\271\360\341[IPk@\226}\247\31\4kb" #"\241\210\266\200\b\tQ?k\321\370\315\262_\272 @\233M\32K" #"\252\264c{\362\30\325\a\344\371\n\207\25\360\254\0\1g\231\210\332" ) 500 ( #"\366\375D\6\274H{Y\2gU=\3Q@\206E\242\354\301\2\242\34\371\352" #"\26\210\253\245{\350=\313\240\32r\16P\312\t\2\25\337h6\264V;k`" #"\337\205 \1:\243$\260\301wB5`\3533i\324=\34\301\263&}\20\277" #"Cz\226\311Y\325\203\3133bp\321\3\226\331\aVI\38K\237H\365c" #"F\277\20\300\251\214\263\323\275]m\2" #"\0320B\366VI\4\304\374\350>\351\340Hl\2\23\225\337\253\1\263~\246\17" #"\332D\31KU\212\274/\3647,\222\17B\214\2\206H<!\t\239I\2" #",\2414\4\231XG\0\233\341\314\231\205\3\247\202\273]\20J\202D\337NE" #"\303\245\303\233\270r-\3058\261\226\367" #"\204\360\\\17\240\36z\205\303\315 \310" #"K\350\5\362\340\227|\232r@\201\305{JP\324f+\256\31\305\353D\300Z" #"\264%5\214\213:5F'\246\21\21\16\373\203\360\b!\210h\275\336:T\242" #" \20\220\305\312\250\201\220\35\\\37<" #"8\261n\232\212v\222\3534\323\267\236" #"Q*z\206V\302jI\355\355\241\266" #"\177\227\2031IS\214\35\304\202\204\372" #"\205a\312\234AI\236\252\\\277dP\0344s\326l+\345j\34\35\264\224\223" #"\201Z\n\220\253\355\272\2564\335\224\262\36gxHy$\23P\334\4Q\21\224" #"\27c \322r\24\0026\333M\23\250V\244\306\236ek0\\\321\313U\203\347" #"\226N\326\214Q[\n\262=2\f\3" #"\376\305\37\377q\31\367\374\34\227\207\253" #"\212\4R\226\353\327\21q\316{\304," #"\231\345\322q\231[\324\22\254\6\351v" #"\237mIF\276\247\352\310\256V\353\362" #"^\0\305)\225\0006&\364\275q\307\314p\270bh\353wV\347\267;\354\221" #"f\321\236\35\307\0217\267\267\230\306\31\273\335\16" #"\3438b\277\337\201\b\370\350\351\23Y\233\224\v\222" ) 500 ( #"\316\314\230\247\251t\354:\347KC\320" #"a\277\307j\275Z$\224\306\307\356\373" #"\36\347\347g05\200i\2361\215#\230\b+\235\374&\201\263J\240E\3217" #"\205s2\376y\275\6X4A\355\336.//\21B\217\27^x\241A\316\200" #"\325J\4\3767\233-\326\353\25\300\214" #"\256\357\261\335nq{\273\3030\364\330l6\330n\267\30\206\1\27\27\27el" #"g\353@\234\23I\251\315f\213)'" #"\270\254\316\234\34\272\276C\347j\302\353" #"\364\231\e\37U*K\302\35\263&F\322\240aN\251L\27\263!\a\v\244\5" #"h\32F2\254\204\17\0\216\3258\a_\20\211i\216\352|\253\32M\273GP" #"\222\241\206\303\243F\237\224\222\305,A" #"\205%\311\31\25a\264\353\233\217\202\37" #"\"\322\21\351b\330d\335\214si\210" #"\232 R\234U\303\231\244\274\331\332\344" #"\316\2227\361\262\213\241\37\244\34\357\\" #"t\326\227\r-\226\244\266\266\240\374I" #"b\263r\2518q\261\e\305\237\270\343\n\27\27P\5\0l\"\242k\354RN" #"I\22if\310\335\350Z;']\346$\34bs\304F\35k\233^\27\374L" #"\256*5\26\210\333u\331\23s`d\325\356\226BK^\\\273)10\270\370" #"\203\3055\347:\310\247$:M\240\0H\222'\rBT\221\315\243\236\6N5" #"H\263\317\260?\315\357\2644\242\366u" #"\\\375<F\300\355\277\213\377pPn\262m\r\235N\312\6T\325\2759\3519" #"\252\210\253_\234\ef^\370\314\262\aR.U?iNUI5\275\337y\222" #"\211gr\r\313\365\25p\311K \227X\3K\241j\21[\235\2409od\t" #"M{\337ZI I<\203\2\34\266os\\V>, l\351\17\345Y*" #"pT\2\340\fdj\0060\314\f\233\372Q\366" #"w\360K-\334\346\271Z\\\342\310!'\255\264\261" ) 500 ( #"\215\314\365%\330\365^\220\337\230bm" #"\320\a\203\340\341\234\304\f\6V\305\330" #"\2002\231\221\35\220\346Y\221l\211\201\"E\255\4C\24 \330\3724j\254&" #"\252/m%\267V\315%a\251{\317\22S\311\t\227\225%{\17\347\48\241" #".\3059\211\4]\256\264\323\234\205\257" #"\34X\271\255Qu\326\0\300\5\aJ\254\6?K\350\306\fN\21\236\34\22C" #"\262x\235\"bQ\274@\333\25\256o\17\6\353\305VTA?\233\234v8\367" #"\3109-t\367\354\1\0367\323\b\245a*\233\306\21\225n\334\272\231md\260" #"\360\210\t\0eFb\315\26\235m\20*\17^\312\270A\35\321R\34\337\261J" #"\2364\6J\276[\b\3741K\363\v\210\21\274q\341\22\272>\210\332DZr" #"u\226\345\271\347\225\37\332\3aA\256" #"\361\204E\263V\326^\312\334\262)bN\350;\17\316J\36W\203c\335\245\4" #"\323#\26\341\356\232u\211\241\344\243\203" #"\323R5\314\350\330\177\347\30\21z\257" #"\"\324\265\214&\206\332\3\231t:\321za,\227\bhE,Z*C\233\375" #"\266\6\264]\237\26\t\262=b\306\270EC\354\272\203\17\0-\273z\275S\355" #".GXu\2418\a\273\237\276\357U\333W\3260\216\"\361\326\17\38g\314" #"\32p\332uJ@*\3377\216\a\214\243\f\3158\34\16\345\340\225}\2353\234" #"\257\315r)I\263\3424\35p8\34D\207t\267+\347H:\320g\214\373=" #"\346\30\21\247\204\224S\231\2207O3" #"\372\325\200\361p\300\366d\203\234\201\375" #"a\207\20\2>\374\360\t\262\0314r\222\3549\222\201+\3520.ov\210\252" #"k\232\2311(\17\225h\217\307\37|" #"\210)%\314\343\4\350 \206A\203\313\276\357\341\35p~~\216\276" #"\37\260\331\236\302{\221\221\332n" #"\267 \"\234\234\234h\343\222\354\221" ) 500 ( #";wd\24\352\305\335\273e\b\215i" #"\235\316\332I\354\234\207\363T\32A\3559\266{\260}\276%a\202\3303V\16" #"\236\360T\31]\267\322\0\2070N#\\\bpDE_V#H\210\214]*" #"{u\316\31A\277S\306R\352\340\b2\372N-e\332(T+\361u\312\351" #"\6\30\231\23\\\250\252\31&\37\244f" #"\261\234\2376\221\267\275o\373\222H\203" #"7\257\245:E\367-Y\2179\243\363" #"\36\354\253]\261s\215\346\263\235\253\203" #"Z\3002\265\317)\232\244e\r\251\3205\347\213\0\221p\354:\0314A\2041" #"\306\332\344\222\263\240\374\336!\220G\234" #"f$\222a(\306\347\254\316N\222\177K$\320<K{\236\255]\260\237\265e" #"\330z\1775\3403T\233\265\n2%]{\363\eZ9\223\311X\fQ\222Q" #"\275U6MN\6\221\251\361\230\224W\267,\2753+\207\321K2\322\240\312\355" #"^,%kB)\277\266\311q\266\301" #"\16\224\301\211\e\373Y\223\2576\300\254" #"\350\246\366Y,\366\216\1o\\\324;" #"\242\362n\221\226h\250\331\343\326\326\37" #"\237'\242\212t\232_\265\317h\203\375" #"\205\237\264\340\234\31\340j\323\355Y\a" #"\347a\n>\366\\\216\23E=\304\317)#\265\266\3238\256\22S\b(b\327" #"\222SEe\345^\240\337\305\256~&\307\0\0 \0IDAT\360dS_" #"]\35\203\254U\230\26lb\215\320\275" #"s\30\347I\371\266\326\247`\324\312\f" #"\313\a\354\\\22\327\347g\327\323\216\272" #"m\357\303\236O\353\363\216\367\277\374N\29\2253d\343MGQ\201Q:\300" #"\0220\223D:\305\4\nBE\312Z\331YP\355\22\27\e\31\224b\306\314\n" #"rb\1\30\211\37h\232\222U\247\34\250\373\332i\262h\315\314^u" #"\366\345,\325\330\215\f\351\327\340\337\324\255,i4\273\n\2\2\34\22$" ) 500 ( #"\236\314\315\371k\343\r\357<\306\24\341" #"a#\253\263$\357\32445\246\214\0\09M\32\374\5$\23\22V\376\276\313" #"\f\250\b\264s\36\f\271x\3435\226" #"\3H(\216\254\374\311\31\316\365\310<" #"K\244\237E\262\307\2024\357\3\34D\203WF\317U\325\200\343\256\3336 #" #"2\344Ux[V~.\310\202\6\260@\r\222S\316\202\312j\326Q\17\247Q" #"(\344\0\v\362T7\260'\341\375\4'\274\2316\263oK\31\310\322Y>\254" #"\6\260\242\323R\322K\v\3h\306\271" #"-\273Q\226\203\225\233\203m5\203Z" #"\376G\331\\\322\1\351\e\243\331\313$" #"\262\316\346\233k\3\5\221\362\200\2654hA^\226R\202\35<3^\366,\333" #"C\327v\27\267\306F6\353\3623j\20\256%\224\231\361\364\351G\0 \22K" #")\nJ\344\234L\3\343\266d\262t" #"\360\255\1n\313W\255\361\263\365\2131" #"\342\344\344d\301!\264\317\16!\3400\2168(\352\30cED\247i\302\365\355" #"My\26\206V\265\\%\347\\ij;\34\16\340,\345t\20\312xQA\e" #":\334\336\356\312Z\216\343\241\210\335w" #"\312\321\273\271\275U\312\203\203\207\303\254" #"\350\3728\216\322\3549\f\230\246CA" #"V\256\256\256d\332\333\376\200a5\310" #"\336\211\242F \350s\300\305\305\5\356" #"?\270\178\207\355f\203\256\v\360\241" #"\303v\263\306v{\2\346\214\373\17\36" #"\310s\365\36\267\273=\300\\\f\214\367" #"\2764\324u]\207\230\22\372\256C\216\261\341\354\n\1779F\t\nsJ\270s" #"\367\242$\252\253\365\200y\34\261^\255" #"\213c\263\275dA\321s\310\274sZ\232\223\237\317\32\\UE\26\200\331#O" #"c)\245\32\342j\201\27\31411K\302\25\202\216\244\254N\27Z\255\"" #"5\3423\213a\347\234\1\337r\377\355,\1\244\250\204$\00450\261\212" ) 500 ( #"M\3261\243\256I\250<)\362\e\245\31\312\1R\376\363^\357E\22+\347\205" #"S.\202\371&\201V\371\227\363<i\223)\225&\21;[\362]\31L\313\375" #"m\301\243%\303\305\371\346\214\240%n" #"\202\3\23\243W\36\34\2634m\310\4" #"\251 \250\25\224\232c\316\246\261\203f" #"\a,\200\217\26\f\233\243\3262a\234\"\\P\4\311\213@\277\203Q\23H\222" #"FE\211\5P\256\272\345m\0\325&3\317\5BPP%\327j\244\346)\310" #"\220F\31\200\3207Clb\24\220\206" #"\210\220f\225\227\3\300\31\210<7\301" #"\244@6\25\224\240\2\276X\362\355I" #"\316\36\300\0g\235\314)\27e\301\220\4\aMe0\327`\241\3320\275\23\256" #"<\343\326\316\265`\210\5\2\265jQ\327\276\202GU\312\314\2\336Y\e\267L" #"\324\257\365\331\355\177\267Al\261\303\244" #"\374\331\234\27\317\246\265\257\355^\253h\272+en@\0246\0\306\234*\b%" #"4\257z\177-\230\342\365\357I\367\330\261/8^\227\26\354(\34e\0`\a" #"\37\0N\214\276\263\246Y\277x\257U" #"\265\320\330\23y\2774\254\265\323(\227" #"\234i\300T\t\244\252\201r\16\262R4Zn\256\371\2226a(\201\365\321\363" #"n\357O\32\22\35r\236\3133\17j\3478g8\235 g~\331d\22\301\32" #"\200B\355\254\23\32In\22\306\24\e" #"4\230\264z\311\f\307\16\241\357\221\"" #"+\245\324\344\354\346\3427\n]\261\271" #"V\341\365\216\0Q\2512\330:\324\337" #"\255\325\b\263\345\307g\336|[\212\242\317N$j\23uM\232\230\b\254T-" #"\321\272\367\301\v\343\200H\3452\0310" #"\352\202<@\a\255`#\307\210\316\v" #"\2471\221\360 \306q*\372\2376\334\241,\222#$-\351\21\221N" #"\341\260\fB\345\222\314I5\2318" #"\263\222\252\235\360\202\23\23:-\27\271" ) 500 ( #"\320\6\314V\326\312Hi.\323t\346yR'-\215=\254\201\27A\210\332)" #"%tN\2;\a\22:C\27\nw\256\6L\242w\31\243\360ys\0230M" #"\343(\301\24W%\1\3338m\251\237\250\3#b\236\304YJv\t\0\313\256" #"T{\350\3030 \316\263\216Pue\372\r\232r}\315\332\233\240.\211\321\310" #")\302)7\316F\200\226\203\17)\315vN\306\372:_9~T\210\367\25\365" #"9\316\352\333\354\266=|m\331*x\2\250N\2072\353\222bF\314\21}\267" #"B\316\t\303 \323\2312\t\237\261\267\346(-\323[\322AD\vD5\347\254" #"\210\352\\x\313\303j\205\303\341\200\30" #"#noo%\360d\31;\372\223\237\374\244\30!\23\313\237\246\t\37|\360\201" #"f\233\16QG\206\312h\322\t1I" #"\371\364\372\372\6\306\247\363\36\350\373\1" #"\267\267\267\272\16\302\177\263&\245\303\341" #" \363\346\275\f\0!\"\234\234\235a" #"\267\333#M3\272\241\303<\311\330\321" #"\233\eB\316\302\17\223\6\253\0\"\217\276\ve:\26\221t\361[ \275\331l" #"prr\202;w\316p\367\356]AE\235\23\245\22\2\36<x Z\276\0" #":\225\203\342\4P \364\235\310 \231l\220e\377\"\257\307`\"l6'H" #")b\350\245\243\336\232A\354L\4\245" #"\311\370\256+\334\336\f\340\374L\232\252" #"\214\247\27u\340\205\234w\31 2k\202Z\220OC\257\213s\320\206\25\r$" #"MH\277\255\326H9[\354\256\313J\37q(\234B\373=\261X\32\260\251\241" #"\316\305`kW8\224\333\346dpuDu\242mbe\210|\355\274\26$(" #"g\341\225e9\24R\372\326\204\257\4" #"\263\220\4\224\311\32|\254S\330/\f\274\355o\233V\26\3125\344" #"\n\313\261\310\215qV\232\20u\305\246\241\370!-m7IBk" ) 500 ( #"_\262%\1\260\322\237U\205\344\3\262*\2328\201\31A\22\336\26\em\334O" #"\343\270\273\346~\0AE\255\262d(\263\331\f\260TA\220E\346\169\201\274" #"5\201\351\272\252\342\205\243\32\304\267\25" #"\273\22,9w\264o\252\235 ]si\276e\250\230\265\240\345\4\345\361z\250" #"\ne\261\245\262\177\270\4\350\262\17j" #"`!\310S\275\246\272O\226([\316\31\203\357\220\330\6|(\5\302|\266=" #"OT\373\315.\213\24g\351\245\260@" #"\235U\27\236\25\335\226\306\351\343 \262" #"Eb\217\237M\261\337\240E\362\2215" #"\241\310*#\330\212\360\333\0311I'" #"\253\242\332y\260\240\334~\277\275\236v" #"\337Y\0\16\240j\225C'\226\221|\226%\374\344<\322<\301\273f\364-\213" #"ov \214*\255\306\220\352\2\307\b" #"\0165\2709\16\322\355z\216\257\311\236" #"\253\327\341\t\231D\217\332\22h\241N" #"T\255]\323\3576\337\e\347\b\362K\244Y\232\361Ss\337uo\302*#\315" #"`\2326\0211\237\324\356!\373\323\202\363\26\375\265\263\26c.\34TkD%" #"\22\352@\27:mT]Jy\311\300\36\359\354=fM\312\1\261\241F9" #"\365\336\206&A9\325z\237\252%n\323\320L]\3019i\30/\373\273Y\353" #"\340\3\3464\225\304;\305\204\224\227k" #"P\366\220\236\305\334\374\274\r\324-\370" #"\315Y\24x\370\310\326\264\24\220\22\30" #"\373 \317\327Y\343\253\332\22M.\311\21\202d5\275:G\250C\4\346(R" #"\r^3\26\23X7\231\241\34#\330\211l\215\3279\310fpM\316\306\16\250" #"5{\305hS\325L\277\316\312\354\202" #"\266\6\0\324h\247\332\4\26{\300\265" #"\373}\31\20I\326d\216K\21\211\222\365\326\322\213<x)9\325," #"U\\\326<e\315\6M\202F\321\306> \3538\\)w\20\2\211^" ) 500 ( #"!\312BW\331/G@J3@\2554M[F\27\324 k\271\20T\21\321" #"\316\234\b'H\23V\25\3636\264\r\20zH\b\1\301\axJ5pHU" #";\325)\255\301\202\25\31\261\354@\252" #"\250\20S\222\321\241\32\250\30\37\216\365" #"\320\223Y\vT\343\336v\207\307\6qg\26j\207\31\323>HC\ee\241\203" #"\344\0341\356\367\350\273 \235\274]\a" #"\200\320\373\16\373\303\36g\247gp^" #"\220\323q\0341\215#\306\375\1\37M" #"\23\236|\364\4\327\227\327\270\335\311\324" #"\247\353\333\eL\323\204\224\22\316\316\316" #"puu\265\340\320\265\2169\347\214\333\333\333\"V\337u\241tc\367}\aG" #"\1\363\24\341|\300\346d\v\351\344\367" #"\30\372\200\365j\5\327w\322\320\242\a" #"\353\336\275{\370\370\307?.\222V\32" #"\210\17\2335\256/\257\261Zo\260Z\r\b\316\366eD\316\226\3409\25\355\a" #"\272\256/\3575\216\342<\317\30\6\341" #"\247\316q\206\30559e\260\257\210\244" #"\30\227\240\316e\256\306/\310\276\37\307" #"\261yVu\312\216#\240\353<\246\234\220xB\b\36s\32\265<'\22>\205" #"\243\6m\236\f\25\3713\364\314\316aJ\"\337\323:Eu\37\b\235t\303[" #" v\214X\30\332e\237U\367m='\316\241h J\323I.\\<K\246" #"\347\30\5\245Pd\3$\2161\224\353\326\363F\202\32F\r\202\211\227\310Z{" #"]\323<c5\f\30m\260\215:\356\240\r\230\244\353i\3159&\311\303\271v" #"\4\27$\373\250\37\241E,\263\6\304\323<#\220C\344\32 /\2215\243\215" #"\211]\366\244'[8\23rv\217\232" #"\263\254\321\246:\20m\26Y\360\342\324" #"\346\346J\e \252\323\6mM\332\344\331\316=\314y9:\262k\22" #"\320%mr\224\1\r\t\200Ty\b\20\336\36\b.tR\372'\210." ) 500 ( #"\350\221CDYW\231\226\330\207\36\254" #"@\210\323\244\267\v\1\276\353q}}" #"\205\367\177\361>\356?z(\274H\347" #"\220\34\203\202\330\317J\201\223\35\232\263" #"\214]\245\242\271j\252=K\251\247\226~`UCS\320\310,\375(\3202\254" #"\254\275\365+\264\0245\v\312\222\202\v6rU\20M@\270\253\230\31.H5" #"\323Az\350A\322#c\243\350\333\312" #"\331\361z\331~\363\336\201c\252\223\2" #"\35\201\243M~\253\252E\25\221\255Z" #"\251\366\271\355\253U9\260\357i\367D\t6\0\221\r\205\322hl\177d\343T" #"jr\32\265:\203\32\344z'\262R9+2\336$\242\344\250\240\254\266\6\265" #"\322[\221\367\343\363\5\26\265\37bQ\225\221F4\351\237\220X`F\327U^" #"\277\334|\23\324z_\220\341\20\304g\265\374l9\243\271<K\333?-h\324" #"\242\315-\n\177ls\274\363\"\363\2454K\213;j`\237J\354c\211\32<" #"\340\233\4\215\233\367\264\327\350\210\340:" #"I\2348ib\3\351I\201\332\25\271wA\3579K\302a\357\3159K\177\264" #"R!\203\243\342\367[\273n\315~V\21!\357\212\215\264W\e\334g\210\177)" #"\324\r\347\312\360\212\266y\273\322C\353" #"\232\332\336/\t\17\3L\265\262c\377" #"\356\341\224\235\240\t_\315\310\254\203X" #"\2\24\203\334M$\272\275`f\326\222\234,\304\314\265<Tn\252qb%\323" #"b\355J\265\2052\275\273&3\232\347" #"\31]\257\372\236M\23\202s\244(\225\221\362kf\27\25A\26\f\232\340Xx" #"6\254\316\250\35E*\211\213Q\b\344s\215`l\a\23z\177\0\nE\2035" #"\220%\222\251'v\260\224\25\246IN" #"\6\310\303\a\331\220\255!\262`\323!\313\270T\316\200[\216\215\f!" #"(\367\265\323\353\256\1B\335\0\226Uiy\226\245\224\n\273\36\25\214" ) 500 ( #"6\236\ne\b?\20\242\313\30s\6\221\3228R*b\352\355\201\321\23\\6" #"\263\225\356l\255\345\236\32\356`\346\202" #"\210\203\2441m\2343V\353\25\356\336" #"\275\213\177\374\307\237a\30\6\\~\364" #"\24\207\303\1\31\300/>x\37\373\353" #"\e\370\276Cp\16O>\224\6\252\313\313K\20\21v\373]\321b\225 U8" #"\234\323<c\234\306\212\2566\r\24w" #"\356\334\301z\275\306v\273-A\376v" #"\273\305\305\305E1\2gg\347\360\336" #"\241\37\6\221\235\323\340\234\274\303vX" #"c7\36\344\273\214N2G\4\325\375" #"\35\206\1\373\375\276\34\332\256\353\209" #"\3\37\347\222\204x\370\302\201\265\375o" #"\6\240\353\332N\375Z>\223\306\313\31" #"9\213L\20Y\242\310\31,\376\264\224\227c\254Y\1775\252fP\253\261nu" #"!m\24%\353\30S\200%\310\1 \23\315\244\263\2703\307\325\234w}\330\305" #"\330\330^\264rg\2134q\206&\221\25Qj\235\362\262\304v\334\324BM\300" #"\253\335\307$\16\332\223N,S\21\365" #"\342\344\315\331\232#v\225\2\343\25\31" #"\25\203\252\222\206 \4\357J\320\336\"" #"/\254\201\360\24\253~\2434Z\0\211" #"gx\362\365L\302\22\0211\3726\326" #"\2715\376\366\231-*\324\256\5\21\241" #"W\356u\337L\tk\321\233\224d\"" #"\236\31\373\304\306\247\323\244\202\b\246\371" #"`\274Q\337\367e]\222\"\2339G\325%\26\16];\341\313\22BC\tm" #"\357\264\216\332\256\2054\310\3\f\3412" #"\231$\221-\254\367\354J\340U\246&" #"\251\263MN\234\20\b\305\271\265\24\20" #"\373\323J\275\353\365\6\277\370\305/q" #"\367\354\0247\2672}\362\355\37\377\30" #"\253\315\6\36\1\317.\237\342\255w\336" #"\301\277\375_\376\35^|\360P8\265G{\316\34\256\234\17" #"\221>\v\3324]\3\220\345\220\2056\350\226K\322kd\206" ) 500 ( #"\rY\262R69\335'\271v\246\3m\"W\327\262\5g<\21\300\3198" #"\304lh;j\2\234\222T\372\364\274\264t\271zO\265\234\315\f\220\23\n\n" #"\351\372\246,\274m\v\30-x.\1@\231bf\224\267\212\356\332\271\26651" #"\260\343\270\222@^\372`\34K\"\332\2\16\326+CV\311\321\240\315\252Xr" #"\3265a`\24\32\213\355\261\24k\243" #"\346\322\236X\363n\5\303\n\222\347\0" #"p\322\311s&\223iA\351\22\265\226" #"s/\275\0016*\230\225\226`\272\360" #"\240%m\317\366\351B\256k\261\317\226\1o\233\310\333s,T \351\26\3d" #"\330\237\f\240h\316\241H\376\325\357t" #"\256\256\205}\227\365p\330\357\224DM\262Kmh\225\375kT\r\347}Q\316" #"\1\331\210\341\246\312\344B\351\343\261\317" #"\234S\355+hc\26\241RLp\256GF,=\n-\305`QqfFB" #"U\307jE\b\254\"ek\35\365\271XP\336\236\201\22<7\212\32\326t\237" #"\251\252\244\b0c\301[\316p\4=\\\2561\\\26\300\326\r\330:8n&" #"\315\330\313\fX{\223\206\24\331\205\232\250uLQ\350\5\372^)9\212d\206" #"t\311.\263 \311\16\215ST\211\311\205\3\5\24B4\331\3676\vc(\27" #"\253\b\276\5v\366\3751\245\205\241\24" #"'#\3316\313\236P)*\311\226\311\3sL\b\276G\312\222\25\231TUJ" #"sq(N\247\31\205\320I \n\202w@\214M\31\b(\245\322\212\16\325r" #"Q\346\352\234\301\320q\227\325\250\346," #"\216\320Q\345:\32\2\1Eq\59" #"\235\245\31\317\365\245\314i\233\266-\21" #"\330\263\353\325\360VT\201\0b\f\375" #"\6\207QF\227\216\207\21\273\335\16\363<c\267\333\343v\267\307\315" #"\355-~\372\356? 8\207\267\337z\e\3277\227\"f?\315\30\347" ) 500 ( #"\21\233\325\6\4\3024\v=D\344\253" #"\200\335n\207\355\311\tN6k\254\372\25|\327a{\262\305fXc{\262\305" #"\307^~\31''[\235\224\347p\347\356\235\347\312x\316{5\360\326d\250\22" #"z9a\216R\272'r\2304\253\354|\300~\34e\337\306\212\306\371P\211\357" #"\26\344\332Z\347\234\305(\21\2413\375" #"O\"0\262T\b\270\256\251\254qT\347HZE\261\346\265\244\245!\200Y\367" #"\236\212\305\207\320\2038\225\203_\317O" #"\315\226\v\347\252\311\266KC#\0\17{nU\336\f\236TOXdd\214F" #"`A^\373\"f\231\270\304\\\202:@y\231lN\22\245I2\253\305\356\372" #"\276\f~\360T\371\352jx\352\347\223" #"4\204\232\201\216\332\220&\347}\6\214" #"?\t\341\246\ebXJ\333\26\234X\320\232\205f\0\222\246I\"\202w\202\2" #"g\252\335\353\317!c\250A\212\30P\2sD \327h\204\333y5\304T\34" #"Ck\200\313\36lP\352\340\353\32\3\22$34\250I\206\340\09W\204\312" #"9'\334bu\270\2344\330W;j\34F\323\360$_\307\334\26\212I\214\205" #"7/\311\257\331\212\212f\205\6]\261" #"\22792\327\370\a8W\232\275\b\232" #"\354\246\210\276\e\n\367\260\353|\251D\5_U\5D\326O\222|Cc\354\36" #"\203se\177Y0\331w\35.//\361\27\377\361?\342\235w\336)\266{\32" #"G\234\237\235c\267\337\353\364l\302\260" #"\32p\347\374\fSJ\202\\\2638F\t\206\252TTj\0\n\20J\207x\r" #"\332\314\277\31\177VP\330\343\344\214\210\20Y\320X\2!\352Q<>;\26\310" #"\311\275\326f2\251\310iC\224\275\307\232\3i\251\331JDJo[&O\365" #"\377\346\344k\202[\320\256\234\320\205\256\332@" #"]\217e\302\325\352\331\347\242\f\24\202(\e\330" ) 500 ( #"\367\266\210\3451\245\201H\364y\315O" #"\4\347\313\220\5S\201`9\350\245\v" #"?g\241;\241\234<I\336\354\276\354" #"\263\275sH\220\0\317\232\306\200\226\242" #"`\324\313J\237\311\234\241\22\17\20\251<I\270$\340\25\333%k\17$;O" #"\315\263\263\21\356\2342\346,\266\246]" #"\377\347\327\260&\270\265R\\\2533\307" #"\264\5\373\fK\n\231\345\371x'\225\1\257\25\17\373}\243\4XP^\22{" #"T?\335&\353\366j\0237@\306\276S\226{g_\355\223P\211\244\37A\246" #"\316\2404\177\331\323\241\0\360\\Q\340" #"\366\36\2542\302\231\313\372\373\6\324h" #"\23\vy\316\325\376\21\21:\357%\321" #"p\256\350\36\267\327O\f\245\206iu" #"\203\344\32K\214\322&\226Y\373\300\270&e\3169\204r\1D\360\fENC" #"\221\223`\26\a\355]\345c\t\252A\"#\302&\203R\307\320B\271B\231#" #"b\254\v\322B\370\302k\2@:\275b\236\321\205P\264`\345!\213\201\357L" #"\342\202\225\3\222\236\227\365\221\340\30R" #"Zk\262Ps\376\323$\2\370^\247\266T\324\301/\262P\322\2407\267AC" #"NR\232w\214\224\31\24\34(e\221'! \370\0166eE4\201\241AI" #"W\271AR\251\322\0\24\310\263\b\373K)[Q\277\234\201R>T$ \a" #"\355\264\366\350\272P\32\243\254\233P\356" #"\234\340\274\34zA\206\332\344\0\305\321" #"\204n@\316B\231X\365\353\342 \v\267&\325NK\313\22\275\242\1\3434\301" #"\21\341\260\337\343\311\223'\30\307\21\37" #"\274\377>v\343\36\3638b\236\23\366\273[\344,\250l?\f\230\346Yb*" #"\37\320\365\1\227\317\256Db\311w\32" #"\300\3\233\315\32\3677\367J)\377\245\227^\302\331\311)\36\276p\37" #"]\327\203YxG)2\372>`\326\2405')\367\225\314\26\202\312\232" ) 500 ( #"\350>X\262t3\26-\252\"\235\2523\30\31\24z\244Y\232\203\310\273\"D" #"\257\25\233E \324:\260\326\250\345," #"\323\232\344\231\310y\352\373\16\363\f0" #"K\260F\344\32\376Q*%\251e)\316\303\270\265\234\31\301u2l$/i" #"0\266\257\315\270\265\350J\233\320\331\341" #"\27\24/7\225\23E\371I\371{\32H%\210|\34A\2O\311\1k\327\275" #"\59\"7\245\315\243\310`'\225\17k\366 \260\210\236\23\20E+\a\21\362" #"\276\30+\37\276\355\214\266\263d\306\332" #"\220v\20)g\225ulI\323\244\244\327S\236\205\5\5v\357\32$z\275?" #"\253*\325n\342\206*\340\\\31vR\202U}\326\316\213\0y*6\202\25\360" #"w\0\226\264\v\273\266\366g\0000\251\321\266'=\353:\2\0\23\253cs\232" #"\350\324JFV\244%i\2nIp\25\367_6\343\34\227\247\333`\253\rl" #"\314A\265\350\235%\345\366\276\343iX" #"\266\236p\16s\322Q\3200\265\21\a" #"\23\372/\237\223\255+\333\370w\241\336" #"WS\312M\232\224X\300\221Y\20\371" #"\277\376\353\277\306\273?\375)\234\367\30" #"\247\t9%\245\371\f\340\3148Di\216\331nO\213\304\234\214<5\n\227+" #"g\241m\344\312$T\253\343R\275\355EYK;S\25\2413j\220% V" #"-\351\203\250\263\34\a9\342\3\254\342" #"a\245Ui\224\26\344Q\252a\254#\23\345\214R\211}SJ\310m\300\333\4" #"\27\365\234+m\342(\360l\321zQ\374\1LE\241}\336f\343[\377L\32" #"\240F0\222\242m\324 \247%\2705" #"\245\212\234\205\333\351\250\214\2445\312\243" #"w:\370\206\354\333\245'!\345\214\201" #"\234\312\227JrJ]\320 \251\242\336\242x\264\354\259F\377-\236" #"\0Q\31\246b'\317F\330\2m\305E\2\334V%\201h\251\335\217" ) 500 ( #"\324Hb\265\240\227\355\241_\361\254\355" #"\354\35\323\24l\335\332gh@\235\363" #"\272~\250\323\326r\343\207\355\263\n\205" #"\310\a\1Ft\336\201%\234v\246sL\205g[\222\f6\364\325\3\20U\205" #"\242\270\3209x\4Eyu\177\306e%\331;\207y\232\341\250+\373\264\265w" #"\202\330k\337\0\1\316+mE\325-" #"\216\237\27 \0\251\v5\211\356\216\244" #"\355\216\201\2\246\n\376h\261t\221l\264}\5\26\237N\363TdjC\320R" #"F`\3222G\a\233]n#\\\315A{\347\313\264\245\230X&\317\240\"\217" #"\322E\fu\200\0\330\241\vKi\b\311\252\4\321\225\207\0360)ojJ3" #"<\234f/\225ck\3155\36\f\307\302\261\224\21v\22Pw>\24\207\267\314" #"4$\233\32\247\tC/B\372Y\21\343\30\233\356\275\246\224)\210\202)\b\4" #"\2449\303\5EZI\265\0\223\240#\fq\320\222\255f=\320\276\30\2248\v" #"%\244\360\232\263\n(;\aO\322)\376\354\331\207\b!`\275^\243\eV\302" #"\245\34e\22\222#\t|\f\271\221\256\307A\220A\b\332\30\202\362\a3\260Z" #"\257\220s\306\315\215\b\361O\323$\245nrX\r\353\"\235t8\2148\250\364" #"T\213n9\347\360\370\361c\20\311\240" #"\1f\306\341\260\3074N\270\276\271\1" #"\2031\36*\372\272^\255\340C\207\333\353+%\204Op\316c\265^c5\f" #"\350\372\36\327\327\327p\316\343\341\375\373" #"\370\324\347>\215\227^|\4k\356\32" #"\206\1\241\v%3%\242\242\346\3009" #"\312\372\6\341\356\372\320)o\334\20,hs\231\242xN\232\315|h\262o\345" #"\214\211\215L\0\252n-\221\226e\24}\362P\364L\263fn\16R\353\4\314" #"\250\265]\330\266~-\332a\22@\346\370\315\330" #"J0\270\224!\262Cj\t\236u)\313u\372" ) 500 ( #"r\16\344\374,\345\366\332k\2643\326\212\332\267\6\243-?v]/N\25@" #"b\351\214\327\304_\203v\2\21k0W;\354-X\24DF\365\37\275\320\205" #"D\333\225!]\344\302#\366:\5\256P\37\344\6\27F\2129\203J~+g" #"\32\215!\265&\n\233Z\267x.MI\221H:mc\0224)i\225\207\355" #"\377Y\272\224\333\365\2622\"4\1\252NE\370\241!\4 \263V\200\304Q$" #"\355I(\22;G\201\356\261\203j\235$iU\301)\"\333\331\304)\235\354c" #"cu\v\217\322\326\2748i\2257\3J\340m\367cF\275E\231\352>5\372" #"\3272!\312\226DX\20\255\327e\250QA_\251\226bC\b\245\262e{\275" #"\332O\251\270\265\301\365\261\243kK\271" #"m\302C,\350\231%\250_\375\352W\361\2037\336\3000\f\370\330K/\341\225" #"W^\301'?\371I\334\275{\201\303" #"\341\200w\337}\27_\377\372\327\361\345" #"/\177y\221\370\225\317k\316B\333\300" #"\345u\300\212]\213\321\301J\320\335\234" #"\347V\312\360\330^\332\337\r\230\240f" #"\215\352\276\250kh\n\20\306\323\a\344" #"\254u\241\3034\317z\336Q\256\245E\2\355{l\275\244\31)\1,\242\227m" #" \230\e\177f\211\256\371\244vO\2\225&\241\fc\tPs\6+\237\25a" #"\211\340B\253\n%i\212I\233\32QhEV\271\255\t\251\30\324lH\261\236" #"\345IA R\24N\316y\5^\346y.\25]\243[\24\37\255(o\335W" #",\224\24M\230m\35*:l\215\352P\240k\2717\27\266\0@\350\273Be" #"l\177/)\22\331V\366RJ\205\212a?;>g\226h\265\2242C\262\235" #"\r\204\360B;\fM\300l\367\356\203\327\336\240\f\370\32\310\267" #"\337a\373\324\306\2253\226A\272\201=\25\4\314\310\231\0D\31\266" ) 500 ( #"\0\306<k\0\356\232>\3\0]\30T\202\317\25:\247\370\221\256\4\322 E" #"\3243)\350\360\253\355c\5\22\270\f" #"\330i\351\34\265\32)\211s\324`\333" #"9\217\230g\300\325\6Q\2737K\312" #"\215\347\\\200\247,\264\254\300L\350\\" #"\247\3\21\24\271\241\2124\231\262\201\35" #"J)\221d\375= \252\236\234P\21,*\317H\261r\301\f:o9x\342" #"\300\305\31\366:\345\311\303-\f\210\t\26733\3469-xd\4C\223c\21" #"[\256h\25+\267GJ7!\4\221\247H\t\31\366\273\31V&.H&\333" #"\375\a\220\207\242\e\4$\202t?\232" #"\3502\v\332\5\247\223\253\30\234\201\315" #"\346\24\227\227\317\20z\271\316\353\353kLqF\234f\2003\372^\2060\\]" #"]a>\214x\372\354\31\36\277\377>" #"nw;\364\303\32\353\355\26\336\5\334" #"\271s\246\1\242\360\205\366\373\21\253a" #"\300z\275\301\24g\274\374\362\313\210\223" #"\214&\335\35\366 i\v\307~\277/M\177F#\0d\372\3148M\250C\0" #":\0201V\2535\346y\256\202\377\352" #"\20L\2771\347\204i\224\340\332\5!\21\345,\\\325;w\357\240\357zl7" #"\e|\372\323\237B\337\367\270{\357\16" #"6\303\26\333\355\246\254\3477\377\362/" #"\361\323\177\370\31\36\276\360\20\277\361\231" #"\317\242\eT\236$\v\205aJ2\231\316F}\6\310\374u\366\362\375\234\204v" #"A\260N})k\263\363\v\3\4\24046\250p%\20\265\v;[G\265\5" #"\1K\303\227\225\226\342\365\232scT\27\331tX\226][\307j\16\256\"g" #"f`\243\6\213\346\324\315\0/9[\325AU#h\306\t\320\361\236,\250_" #"\e\304\266\327i\257\326\350\231!n\r\214\327I?)Kv\37\310\32" #"r\214\16A\5\321j\203\24\"\341\b{\35\251\235\254\2\4\2|@\234" ) 500 ( #"+]B\234h/h\264\253(@\360\0361\347b\250\315\350\266\202\351\244(\232" #"iD\242u\232G\16\254r\306\227\335" #"\351\260\256\337$p\226\271\225\266I\254" #"]\23\375\241\312\223\325!/R\326\223" #"Q\233\340\4f\a\e|\222\232\373\260" #"\227\355\223\242\341\2303\222Ng\24\16" #"\273\"]\362\244\365yC%\350$\340p\216\n\250P\2322\234\253rK\26\344" #"\333\323:\332\17m0\323:\357\3320" #"\262\f>\223\30YE\207\204:\265\220\204CM\230:g\25\247_\205\274p\371" #"\36\343\213\267\310\227\234\207\232\250\264U" #"\a\240i@\201\4\361\347\347\347\370\363" #"?\377\363\5Zc\266\372\344d\213\20" #"<\36>|\210\337\372\255\177R\276\303" #"\372M\332\317&\252:\353\v\224.\330N5\307\271l\202\261u[\354\263#T" #"\324\2>\311\315\"\230\227A\220\354\361" #"\0\357I5\263\353:\4\37\300\256\225" #"i\342b\a\325I\226\357\220\244\256\252" #"\357d@\377[\232\24\223\0024m\271" #"\272\332$\333'\365|\265(\2440\321\234R\216\234>\357\372\\\354z[*\202" #"\2351O\265\322\4\326\306\315\224\26g\264E\360\v\200\224Y\316\250wp](" #"\340\222\370\343\32\250#3\20\2346\251\327`I\220\317\254U e\2008 G" #"\321\5o\251w\314:\225\v\202\344\202" #"\344M\266>\213\352\227\331c\2562\223" #"\345\367\274\200X\263\236G\353E(\364" #"\3046\330T\37\332\236\313c\177e\343" #"\355\301\f\312\20~\265&\265(\376F\351F,\324\16ON\2\343,\321Z\353" #"\237lX\2\347,Mg\213\304\0\213{l\321f\v6\333^\246\343W\361!" #"\315\320\214\266\272 {\303\201I|\273" #"hVc\361\314J\242n\310\257\332\327\326n\3059\226q\320`\5\23\225" #".\231R\204v\344j\362d{\212\255\24S\32\206\333\365\3169#pfL" ) 500 ( #"\34\225\b^\365\355H\341m\333\4u6\263\34w\243(H\260j\204l\2\221" #"\350\vz\17\230\22\202@\353QQ\277" #":\21\307$\226R\26\31\260\230\227\372" #"\262\22\364\306\22L\30\357\314\36\256\\" #"\t\220\0345\277\237\224[\244<\326$F\203I\344?\34HOE\335\204\206," #"\310\347\22\340d\327\211\344\2104\373(\350\3\"\31\6@\344\340|FN\202z" #"^_\337\2`\374\362\227\277D\6\343" #"\207?\374!B\b\370\350\243\217\312\303" #"\366&\23\26\34NO\266\200\223\00618\302\345\365%\236]>\5\3x\377\375" #"\241\224\347nno0\254V\242\255\351" #"\204\202\361\366\217~,\331a\27d\344" #"+\344\332r\212X\255V\270\275\275\25\371\262(b\3471\216:~\30\270{\367" #"\2\227\227\227p\316\341\352\362\n\375\320" #"\343\336\275\3730y\251^\3074w}\217\340=\36<x\200\355v\213\365z\r" #"\"\302\371\371yY\353\315f\243\243\5" #"U\303\316;t\241\327\361\305\16\37=" #"y\202\247\317\236b\30\206\342\370\346y" #".\306\270\35\271,\17\303\312u\225\223" #"\224\225\227)4\215\4\300\27\324\3265t\213VT_\262nmHb\206\361\301" #"\333 t\201\352\251lJ\213\326\266hM\273\337\332\337[\34`\255T\264<=" #"\343\256Z\207\2568\32\2413\330\24\264" #"6`\223\346F\24\343\343\311c\212\243p\314\0\304,\262nm\251\322^mP" #"\321\6\350\305\2315\6\227\331\253\312\206:7\252|w\233\346gF\266\6/*" #"\317\347h\361\271-\367\252}\3319\6" #"H\245\344\344\376\243\2427v=\0T\201`\202\211\221f\v \25e\fM " #"j\317\267\r\354\333ka\346\312\17\3" #"\200\206\257.#e\217e\210\332\2061\35\244\2F\214\326@C\272\6" #"\326)_\203\36\343\335\312(\336\372LZ\n\2208\16-\3659\6\222\310" ) 500 ( #"*\302\ax\252\\5\347\244R\301`\260\3\2468\253\336o\203\22\251\3,\b" #"\253\242=\241\261}\307(\225\354\211\0" #"\"\0311*\343u+\227\323\222{\v" #"\210\315\326\346\234\213\243\207\31\227N\273" #"\0\0 \0IDATsE\367\266\356\205%g\274}\2778\304\334\214\231M" #"\260\261\302\6t\264\347\3578(b\226" #"Rv\360\36o\275\365\26~\370\303\37" #"\342\237\377\301\37\300\251\336\263\371\204\227" #"^z\t\377\372_\377\217\345\232\244b" #"\305 \342e\203\313\257\250|\264\301w" #"\333P\224r~\16\271\265@BN\203" #"\350\214\312}'\264\274^\343\313\332\365@w\216LK\254\22SeH\f\317:" #"\rR\320vb\241\\Y=\307(xD\22^GHDg\211\242}\207M\5" #"\255\310\335R.\257\255\0u\235GQ| \327\240\226\262\377Y\317\204k\354R" #"\233\210\260cm\366V\333\207\372,m" #"\357\264\211\277\275\257>gM(\210\220\364|\315\323\fjz!L\353\326i3" #"j\241\3\250\270\177\241P\260 \202\316\300\3}>m\0222\307\31\344\224za" #"\366\331\236e\23`Y\f`*E\323<\251M\257{&E\221\35s\312\331o" #"Q\333v\37\267\211F\373o\255ml\367\254Uz,\3304\273k\2246\333\323" #"\320\366\261y\226*-h\331\354/\324\227Z\321(\366I\355Ak\363\332\0\377" #"\330\237\331\231h\301\203\226\26e\357/" #"\325\200&\200\265}GD\22\224\266\300P\226\1<\3240\1Z\364;\347\214l" #"U4H\374\351)\224\204B\n\351\254U\247*]I\216J\323\242T\331\4Y" #"\266\346h]\v'\250\231\6\2449\251\374\nYvR\t\364\22\254H\211\255\314" #"x\36753\b\241o\16\206l\330\30\345P\313t\231\210.\4\r" #"Z2\234vc\372\20\244th\31\237\216D\224C\22\340\\5\334\265" ) 500 ( #"\323\227K \4G\30\265\fb\350\22+\271\337;B\314\252\33563\270\364," #"g\20\252`\274-\270\17]\321g\rA\272\344w\273=\306q\304\323\247O\261" #"\333\355\261\333\335\340\203\17\36\313\265\373" #"\200'O\36\27\356\3540\f\270\272\275\301\272\4\234+\3212M\t\303j\205;" #"g\247\0\211\1y\364\350Q\t\340-\320q\316\341p\330\353};\214\363\214U" #"7`\34G|\364\321S\234\234lpvvVx\307\344\bsL\330\236l\320" #"9\351\200\274{\367.\316\317\317\221R" #"\302j\265\2\21a\275\331\300;\207\355" #"j\215\314\"\222\316,\233u\34g\234\235\236\312\4/\347\320w=\206~\3004" #"O\305H\26^\37\3 \311\304\343,:\254]\27\200\t \256\3340C\266\210" #"<\346y\217\323\3233\364}\217q\236" #"\312}\36\243\243-*/\377-\373\210\231\321\367\235\6\37U\355\1@Az*" #"\337\263\"\242\317#\235A\371\262\366\357" #"f\244*\332\320\322^Z\24\302\366\237" #"\375\254\r,\216\263ds6\365\376\254\324)\34V\373\273\375\256s\256hpJ" #"\6_;P\273 \31\177\212\t>,9~\355\275Y\31\251u\352\266\36\355\237" #"Iy\335\245dD\276i|\320\353\207" #"C\326Y\343\365\363\22\376\177\272\336\255" #"\331\262\253:\23\374\306\234s\255}n" #"\251\314\224RH\240\4\335\20\325M\t\214\333\335P<4Du\207\35\341\300T" #"\207\337\374\202\237\313\377\307/\325\325/" #"\356v\204\243\273\252\v\333a\273\215\375" #"\340p\204\303@\331`\300\6d\203\20" #"\350\206\320-\357\347\354\275\326\234s\364" #"\303\270\314\261N\252vD\206\224y\366" #"\331{\255\271\346\34\227o|\343\e&" #"\216\356%\357\20\340\230C\263\327p|\326|Q\344\273\265\204\t@U" #"\4\312\30\22\0011lT\n\250\v:FI\6\fTf\347\264^\346)" ) 500 ( #"\232\261\215h\235;\30M0\230\205_" #"\312M\320\0353\212\275\3671\235\a\320" #"\16e\341\27\203:&\335\347\235:\0" #"\e\337\v \25\254\241\4?\25\21\347\217A\356h\16\224r\237L)T\364V" #"\365l\301\4\316\20\365\216DH\254k" #"\250\2501\22\2208a\312\31\213\312\372]F\2128\254yt\334\376\334=)\322" #"5iB-\310:\246\327\364\217\243\215\265\275\351N/\250\256X xy\17n" #"\2\36G\352%A(eBJ\346\344\323\306\346\306\363cg\312\222\327o\177\353" #"[x\345'\257\200\231\361\345\177\367\357" #"d\274\264\276NOOqvv\346\301\234\354\rI,D*\315\320\335\221\34\332" #"~\225\275\253A\244U>\2724\313YIb\240\324B\337\241M\251\34\0\6\232" #"i%W\263{]}\223Q~.\333\270\336;\240\16[>\223\220\274\242\232\220" #"J\306\2522\206\36\2040\\)\206H+\257\30\1T\fV\342\376\3\266\311\235" #"\17M \331\23\302i\325D\203\244\321.V\232b\22b\311Q\2643\21 \210" #"\264\211\270\326\e;\247I\20\302\365\22" #"H\350$\n\244\365n6\323\232\3\263" #">\313\355}\232T(\251\322\222\275\234:\321\241tKI\342mP\222_\17Y" #"\345m\f\3450\35pi\234\334\312\6f\222\304\335h(\361\371\304\363g\353o" #"\376)~OL\20\243\255\262=\245N" #"\326\327\300\206h\231\0264\31\272\31\374" #"\215\335sU\265\222\256\376#\202\20\227" #"\1\211\210\366\216\4\2257?\217c\227/'\264\361\272eB#\220\262&\372J" #"I\244\254\364\26@\251\256\360u\2608 +\325\265w\353\21\31U\2438\230B" #"*\211\352w\302\310g-E\351g\4\255c2\226\2\241\304\233J\332\b\2258" #"am+|\2066F\251\246\265\216\243#)\377" #"\22\351FH$\23fj\5\221\240\276\262\341\255" ) 500 ( #")@\e\332(#\23\224\207%\244eK\361,\363H9\241sCo\333\322\242" #"9\330y\236\5\365\350z\23dNW\235)w\341\362&\21\211\27\243\253\34\37" #"$\225\36a\2401\312\221\6\24\255c" #"*\362\271\207\303\1\3234\343\3157\337\300/~\3616..\366x\363\3157\235" #"\367\312\f,\313A\37V\325&\252\202" #"\213\213\v<\365\324S\330\355f<\377" #"\302\363h\255\341\352\325\253\240D8;=\303\351\351)\216v\228_\271re" #"\23\f\31\32\16HB\260,+\346y\202Y\334e]\320k\307\361\361\21(%" #"\327\221-\2234\301\355vG\262\321\325" #"\350Z\320=\3153\250[)\247\243d\302~\335\243\224\214\243r\242j\f*\223" #"\325V\314;\221\360\352\334\361\340\342\\" #"\306\304\232q\0034\1\222s\310Dh" #"\320y\352\255\201&\223\205\32\207\252\265" #"\212;w\356\240\224\351!\243\0273\334" #"\313\2070\0322f\226\356\355\336A$\303AL\357stvn\263:$\341t" #"\266`\204\f\341!2t\301&\342}\360\341'\4\224\215yC\233\211\216u8" #"\217\344\210t\274\217\234Bs%\211\263" #"\227\237\215\177\227\203\233\24\261 \347\233" #"\3\30\323\302@\233\306\236\230\245G'" #"6\356\307\252/\343\337\274\314\3q\356" #"\334T\212\207\00009\27J\320\179'\246!+\22P\17\v\373[\322\21\237" #"\255\31r['q\202\2236\325I\207" #"1\221\f\270\260\240\227@\302\377#\323" #"\314\225\275V\230\307\310\335\200\32\331}" #"\305D\303\326\302\244\202,\3103\304t" #"\251U\a\322\250\222'\321\6\365\263\265" #"7\235I\2\334\360\v:,t\247\336\201)\0174\213 <2\356}\343\30\342" #">hm\5z\2v\"]W@h\260 U\236\305T2V\326f\36" #"H3\244H,U\374\323\367\277\17f\306\307_xa\263\26\206dY\323" ) 500 ( #"RDe\335\340\203\335\331H\323\216R" #"wH\325\30\260\325L\215\245X\347\265" #"\246\344cA\255\352`\212\"\226\250\ee#\226\327;\200\242\266M\232kyL" #"|\323\3656\312[\334\247v\35\317?" #"\377<^~\345\25\234\236\235\351g\213\r&\332&\236\206z\256u\0045#Y" #"\16A\232\333\237\246\366\244;g\234\0\364Z5\0DH\34%I^\226E\223" #"'S\240\31\350tL\212=\361J\3063dG\261\352*U\267\270\266\266\177@" #"\t\254\276\252@\313\301:`b]%\320\251\252\222\"\3\222D&\22\26\310K" #"d\3446\312\320s\3\254\304?g\214\376\1\5\16\224\3j\222q\266g?h" #"/\30rwy\370\204}g\374o\334" #"\217\376\231\210\353\237\275B\221\0\2244" #"\241\331>\331$/\343\274\267\332\221\262" #"!\320\303\306\3666\2526\333\201&\t" #"e\262f\331\276\261_D#\300\275\f\264H\225\251\241$ru\by\277\335\253" #"\254y\4>\"\310\21\367\\L\b,\270#\n\243\214\303z\271\32\312\b\215@" #"d{q\4}S\231\\1\302\327?\6\316jS\235\6\200-]\345\262\17\23" #"\3778\374t|\216\36\350'\362\251o" #"\226\330\331\275\247\334\325\a\230\335\325j" #"\225\372f\0\256\250\20}\277\354'U" #"\310\321X\245sS`\244\351\32\350\276\202493w44UMa\364\252\17" #"G\255\351<\3178\350\240/K\366\312" #"\252]\352\25\360\v\257l\250\204\"\256^\316\eh*Q\6\367&\310\203se" #"\272n\204\346F@6\207v\362\366\206rt\264)+\331\202zF\301\242\307\371" #"\301H\221\362'\223\226\\\221\274\251l" #"\232l\303\f\251\223\252]\340}\325\211" #"h\334P(a]\305H\327\303\202\265\353H\340\276\340\336\275s<8" #"\337\343G?\372g\334\275{\17?\377\371\317a(\255\3203\244\334~" ) 500 ( #"t4\341\332\265k\22\330\36\25<\362" #"\310U\234\236\236\242\224\202\223\223\23X" #"\203\237=\\s\210\265V\234\234\234`" #"9\34\306\204\244 \355#A\352\301\215" #"\222\255\347<\317h$%\316\246\206\310" #"J,\310\204\272\212\370\377\312\fn\262" #"\206f\244\333\272\202\232\224\36ABI\0\3U\271\243) \22 \373^k," #"Ln4@@\246\342\e\316\f\224q" #"\253J\22\312\212\335\367\\&\234\234\234" #"\342\370x\a\242\242<Cr=\334\313" #"\201\255\35\274X\16\262\3\221\222\214\362" #"\263M+\216Q\320\32\226\r$\304w\v\214\23\241\365\200DP\22\32\3\34\254" #"\201M\305\211F\306\366\234\377\236f\244" #"\275\265\301?\265\357(\31`\333s\22\204\247,\201\321@&4\371K@J\223" #"\"\246\222\244\21Y\323\227f\246\255\351" #"\260\270m\t\311Y\240I\216\271\350H" #"\257\37\30\30\230\223\222\346\32\322?\306" #"I\23\204\300\321\315\326\274\\\226\221U" #"R\1\340\246\345l\222 \327\312?\265\e\342\267EO#\22\376A\3459\371\235" #"$\352#\220J\3214\251\3\fHyN\3119w\204\201\372\226R@\212\"!" #"gA\203X\325B\202\375H)\t\302\n\2702@\207\2247K\270V\206P!" #"zH\224\34\225dAfe?'4m\210d\226r\231$\360\315;\374\375\367" #"4`3T\202\2\367\254\244\244\212\vY\234\263]\017323V\335\305\224H" #"\244\35\315\21O\5\27\367\356\341o\277" #"\376u\274\365\363\237\343\375[\267\320Z" #"\303\335{\367\360\371\317\177\336\3JG\2460P\222\207Q\"\335B\2524>@" #"#\362\347\\\3J#{\312\222o\370" #"\376\224\317\200\217k6\247\36\253\t\227y\354\"\17\325\24U\326Nl\16vQ" #"\377Xw~\254\314L\323\204W^y\5S*^\201" #"0T\317l\22\22\271\336\347ZeZ\244\275\f\325\223" ) 500 ( #"\373\0322S&\a7$\277\264T\337F\262c\n!\361|\305\221\245\314b\213" #")\351p\1\255\332@\225\af\263\263" #"\255\252\22AR\276\241\320\5b\207\277" #"\311\316uf\31\234\224\r)\264\200\244" #"\243\223\2009E\247\2125\36eb\267" #"Y\212\230\331\372\17\216\251L\1\333\2" #"\16\32\304\266\212\\\6U\305\256\311^" #"\206\352\371~\342\3550\231\313\1\242\5" #"\267\2612&`EQz\217$\321\306\245\\\265\312\305\211\320\211U\315Bl\206" #"\5\325\361\31D*\220\234\337\356\362_ ll\202\311\214\212,\37\303Pg[" #"{\3\303\243\3771\352Ek\ryJ@W\e\2574\257\310\341\266g\36\23\235" #"\230|E\372\302\345uuE#h\237C\332V\251L\206\222H\24@\314\241\370" #"\371n\335\203X\263\1\227+\233Mu\231}\330Kxf1!#\322\211d=" #"(\364`\304`v\37\244:\3119\354" #"\v\243\t\2\333\352\252\235\317\355=\361" #"C\0016\0000\t\0\231h\22\312!\t\205'\2\e\314\254\200\vD\241\a\214" #"\272J\262\224\224^\232RF.\262\17" #"\"\305\225\210P\246\234\245\274\307\354s" #"\205\355\20I\343I\366\250zS\232\204" #"\226\342T\323\f$\335\310\26\4\fN\226L\316(\20#`\374$\203\366\r\375" #"\261\316E\"B\355u \t\331\370R" #"\302\377m\334\204\367\221\244\340\302\272\331" #"\"\227\210\222H\243H\6\270\202\223\310" #"\201\201;\16\207\212\273w\357\343G?" #"\3761\352Z\321j\307\322\32\356\274\177" #"\v\267o\335\301\241\257hU\256\355\370" #"\370\30O<q\3\217=\366(\346\335" #"\16\217\337x\f\3234\341\344\344\30\363" #"<\343\352\325\253\230\346\221\365K5*aY\16`\256 \232\306\206\327\r\a]" #"\307\2655\225i\32|1\361\343\354\bGk\0s\363" #"\4dsX\344\306as\322I\35\a\262H\24y@6" ) 500 ( #"\351\224\26246\361\224\262\224\315B\346" #"F\352\374\[email protected]\326\256\317\16\223\35\30C\200.\277\334\261\2005)" #"8\306\255[\267\345\240\3220\3041[" #"\214\235\315\242\22202\277\234\255;=" #"#\0251|\275\211\21+\271\b\207\2533\250k\327*3\4\274\32\6\243g\235" #"\365\336\267|\265x\315\226\304\231\363\236" #"\246I\e\323\324\241L\305\e\fd\2772JI\250\353A\3/ M\23Ls" #"\251\250\330\271;\1\6\220:\270i\343\v\251.d\223\6\244\234\263 lAo" #"\323\326\4\tXzU8\301:g\a\242\22\251\34\226\2402\23\210\304\20x>" #"\314\303X\326\272\3024\357$\t\225\347" #"\205DZ\254\325\222SI\372\350\2042!\336a \212Q\6\347\362K\234QV" #"\aQ Rk\22PY\227\262]\277\177^.\233\204\332\23`+\211\22\t\272" #"\17l\6-\330\313\350\4\366\375n|" #"S\2\265\206\236\244:\220\20\270~\301" #"\260{\t\275K\343\251\364\26L\301\361l\221\30&\32:\216I\206\0Xu\312" #"\356E>W\0223@\0022k\310I$%\353\245\e(1\320\353o|\363\233" #"\370\356w\276\203y\236qqq\201\323" #"\323S\374\365_\3775j\255\370\374\347" #"?\357\373\324\32\270(\240\32\266\356f" #"cmM\244\273\233\220H\222\211\225C\23Z\bP%\230\bN\2635A\340\231" #"}\374\256=\e[\377\350#\"\25\302" #"\331\255LH$\235\336\223\242\371d\317" #"\223\273\363B\3151\246$}\0%\27" #"\234\237\237\253\366\364h\234%\2253\373" #"\331\317^\305\223\37~\22\307\307\307X" #"\366\a \4\350\366|\205\27\316\0031" #"\v\367\314\320@\5\4p\307\244I\23" #"\345\201\310\331=\371\3752\243\213K\3\257\35Tt\20\tC4\233\325V" #"\310}\220L\200#\241\0055t\177>\276F\34\252;\212D\n\365\203\275" ) 500 ( #"\374\332j\303\36\253N\304T\5\17\245\3\201\314&\300ugK\312\216\2~\20" #"M\254\256\325\351\3~f,ak\252" #"\17\36\22\227\224\22\372\332\260\264\305\317" #"\257\5!\221\266ag\327\316\246\320\35" #"\342\200\31k|\"t\5\255\22\254\31Ns\"\337\307b\3237T\31bMR" #"\6?\227\325\277$V\vU\24M\327{\262\353\264\347b\201\240\311~F\324x" #"|\217\270\330\316\320\201\bY\206\203$" #"\v\364\266\362c\0006\237\37\375\230\255" #"\261\375\275\224\202\272\256(\3234\2r" #"f\355\21 \265\225\25\3234#%\3261\275\3\214l\320aW\30AzD\215" #"\355\34\231.\262\370w\341\300\232\316t" #"\244O\244DX\333\352\1w\f\22\243\35\216\24KK\306\314\327\2pmj{" #"]\356\31\271\374\373\362\0\204>K\304" #"\350M\0QA\205\31\244\262u\211\22\320\bkoB/\342ao,Vtn" #"o\357Z\255jC6\325P09\202zSU\34\3024M\36\334D#f\206" #"\336J\20I\235\30P5\212W\304\2525t\6&\32%\342\2242\326\265b]" #"E\310<\226D\214\f\36\263f\200D3u\3128\264\252C\27\212\e\\\223\314" #"\261Lm\236g1\30zP9%\20:\210\23\3462\243\247\214\177\374\307\257\343" #"\a?\370!r\232\244\244_\24\355<" #"\232q\226\216p\264\233\361\374\v\317\341" #"\354\364\4\217\335x\fW\256\234\342\350" #"\350X\357k\313\351\265\300]\306\n\356" #"t\23\317\232i\f\302\265\r\321@\36" #"\342\310\f#\324\e\212\227\264\264[\375" #"0\224R|\204m48\265V\220\336\243MqC\357X\353\202\251\314\322x\227" #"\244{\236\222\240\337\334\265\tJ\3Q" #"\0\356$\273>\264\234\344\340\255k\365\200;nT?@\364p\31b" #"\363\3570\302\372\214\326\30'\312\21" #"\336\37\16n\20\3559O\323\204\266V" ) 500 ( #"\247^\240C\351$E\2723\273\32\315<\202\375\224\222\276O\221\311D\32$H" #"\262\341\310\32\rj\f\215\304x\30\233" #"Z\5\347\n\201\243;3\2\320\330\177" #"f\377\316\372=\302\271\225\373(\356\270HE\321\273\32-+\275t\25Q\27)" #"\2562\331\310]\221\364\351\255c\205\314" #"%\267\362\356Z\e&\310\31\313%\373~\227G5\2\215(\255\"\206\304\262Y" #"S}\210\23j\b\313\262\242\24\323\332\245M\240\311]\232T:\0JpG9" #"J\374b\\-\t:\34\16^\302\276L\333P\253\243\201*6\6\321\f\362\22" #"\306\355\306ri\334WFA\211\1u\311\331\355\220\e\325\244*\v4>_8" #"\\j{r\26\305\2\335\357\366\235\261\334h\327&\377\265}:\246;\305 \254" #"\326\352\315\\\214\221lz\360\257\2457" #"\263{B\263\262\373\e%\307\306\300\244" #"\200B\355\0062T\334\274y\23\337\376" #"\326\267Pk\225\22\376\313/\343\370\370" #"\30\177\3637\177\203'\236x\2\317<" #"\363\214\30qO\202GP\252s\202\335\276\372\371%FNe\4\363\220\0\335\232" #"\332\200\321\234\325\353*\3317$\251\260" #"\200\330\20dK\6J\241M\225\316\276" #"\313\320ps\236\240\206V\311\327\221Y;\252\233\330g*[\16_\357\35O>" #"\371$\276\377\203\37\342\336\335{\341\f" #"fQ\216\311\to\274\361&\376\237\377" #"\374\237\360\310\225+\370\320\343\37\302\227" #"~\343KH\272\317\r\r\25mP9{\2244\360Q\a\330\24\275\325\20[)" #"\242$`M\274\27\326>\17m\24b)e\311\363,\212\320\a\e = v" #"7:?S5s'\232@E\270\3271\361\366\244\216\3-\205B\347x)." #"\213V[E\346\354(11$\211&\321\223\226\341\nMm\301\254\270" #"\310%\e\247Ccl\177$M\0023\311\304\2759\240b\fF]F" ) 500 ( #"\242\37\301\227\350\27\342\265\307\230!\242" #"\273f\204\355\367(is\27\2216ho\207{\364\2004\227\\P\373\320\246g" #"\222\340\212\233J\242\262\321Z\266\327\26" #"\21W_\3{\356\264E(\241\317J\366\2675\266\v\365d]D\205\212\222\0" #"\1\361\31\rN\376\303\275\32\26\360\271" #"\177l\315\233\342\255\2\224R\nt\"\e\321\254\237\237\255FgI\202\0\329" #"\245Q\365\243\361\376H\e\2613Y\246" #"\242:\3236\362]\252\331`F\257\254" #"\263\22\22(\17;|\231\206\21\343\263\244>\262vm\202\263fA\36\\s3" #"\200\261A\322$S\211\205wm\225\225" #"\210~\23\311\336\354\6\n\4\333\323z" #"C\342m/B\244c\330\265\333\260\227\326\32\212\177X.\0\367\r?\20`\254" #"\332<\4$u\356RV\23\n\200e/\222\341'\b\217\217t\367\264V1!" #"_\232\213Nn\254\230\t\353:\246\256" #"\331\301q9\263\326UC5\373\342\21\221\a~^vJ\343f\215\327\1&\31" #"\362A\0u-\31sCk+>\365\251O\341\357\376\356\357q\343\306\r\244\334" #"p\345\312\31n\336\374(n\334\270\201" #"\353\217=\206G\36\271\202\243\343\35v" #"\273\t\347\347\347\212\364\205\a\20\16\217" #"\35\240R\f\365\201S#\344}\03245\21y\216(\352\262,BA\310\331'" #"\272\31zF$2&%\347\215>fgF\321\341\3\306\37m\301\350\310F\354" #"`t$\332!e\16\eHu\200s\221\261\301P\244,)g\223\341\335\214@" #"\202=\262\313\343A\355\271G\3\351%\2\223VJ\31{\336\343\366\355[\230v" #"\223\20\303\3033\36\6O\240\360\24\312\313P\343-e\21A\243M/uk0" #" \372\255\332\5lM\aP\35\317\316M\255\3I\351\254KF+" #"h[\366\4\17\0002\223\3533\3735\266\256\334r\23\272\37\237-\25" ) 500 ( #"\213\242k\"em\271%\373\314\4PwjH\255\243\304G\211\320\326&\3/" #"L\2034\4 \fS\212\20\252@\a#\261 \213\262\247\fI\327\361\275A\312" #")\242\t9'\324j\347\216\365\272\31" #"\323$\224\237\230\270E4\300\0\25\226" #"Hw\323d2\236\221\251\256\f~\256\2756I\231\a\255\312\327M\0035\35\\" #"\271\255\22F,\177{ \20\34\245\31>\223\37\263\367[P\25\337\v(J\225" #"\263?[\177\16\372\371\353\272n\312n" #"r\375\325\355\213\30\343\221\210\332:\20" #"\321f*\217%\n\216\340\310\n\251#" #"2\2642N\352K\303\240\203\205\273K" #"\204E\257c\267\333\201\1\234\236\235\341" #"W\177\365W\361\305/~\21\177\370\207" #"\177\210\326\32\276\363\235\357\340\271\347\236" #"\223\n\a\b\231\272\237WQ\271\331\332E`\333\304\27\233U\232\5\31\b2B" #"z\336\233I)\351\207\273\343q\356\345Vz\317\276\2070\3208f\6\243\2417" #"\350\236\254c\2172\203\223\360\362\214c" #"\332\252\360\225\211\b%K\257B\r\334\364W_}\25?\377\305[x\373\355\267" #"\361\340\301}\234\236\234\242w\306\371\305" #"9\346iB\253\203\27\232T\247\330\202" #"kR?f\201\270\251\236\23\1]\307" #"\245\202\245\22\220\270\243\23\\U\310\324" #"\36L]\301\206\36u\26$\216\311BZ\250\336\267 VVjO9\217\261\262" #"a\255\355\31\331\3763\377\346\216<\215" #"g'\315\\\242\21\r2\24\32V\16\360k\23\316.K\242\231\6\220\342\264\215" #"~i\337\362V!\300{3,`MY\314N\37g\3532\232i\3739VY" #"\272V_\326V\207\255\365\222}@\312\25E\2271\344f\a\6\35F\350\6\254" #"]\371\23\226e/\237\303@c)\237\e%\214`4(\336\330\363\270" #"?\315\367~\20\335*V\34\305mv\344Db\322UR\24]\200\301X" ) 500 ( #"\222\277\\\371\214\310\245\335\a\221T\270" #"\265\36-\303BX\2\366\255O\225\231" #"\4\200\362\377\301\2419.\213\244\251&" #"\355#\2605z\16o\356\301mO\357\343\314\353Xx\363\v\344<o\1+\263" #"S\265\206\177a\09\370\03138\231" #"2\262\312\201\202\245?\6\200\16\24\21\36v)\5k]\201F\220\341)y\263" #"F\303g]\242p\200\261\36V\344\251\210A\265\241\32\220*\0\0\237\336hg" #"\323\252\216@\e\34\335B\tU3\214\234\3113\364e9\200\250(\"'\31\325" #"\332\32J\226n\272C]\241\303`A*\177\301)#u\302~=\310\347\320@" #"\340\354\360\266.\"\320P>\210!Tvx\242\323L\271\240d)m\305\2541" #"\36\220\310\5r\347\t\6\345\2nM\202\355<!\25\231R\6\20\36}\364Q" #"|\341\v\3773\356\336\275\215\247\236\272" #"\211\e7n\340\370\370\4\273\223c\0\26\270T\\\\TG\210\5=\232\374\241" #"\23\306d\30\200\244\214]\r\341k\200\226\26Z[\321\e\241L\263s|~\362" #"\223W\360\267\177\373\r<\371\344\223\370" #"\215\337\370\22..\316\221\213\300\367\26" #"h\370\314gE\37l\313&\315d\255<\352\e\"\30\34\0\312\211\222\3\322\264" #"\361\4\220R|]\32\246\251\240\253F\255\225J\254<bk\32\215\214\255y," #"\311\305\222\214Q\32\354\347\207\303\1w" #"\357\336\305\376\260\307\311\351)\366\207\203" #"Ko\31\352HdH\331\266\224\30\263R\202\354\333n\23\261X\360\24C\215)" #"\221\226\17\206x~\r\223]\3002\230" #"#\3452\360\25\262\362T\366\200W\220\344a\34\314\tMZ\242\263F\24q\350" #"\243\2qt\264S\243\202\315>dM\32SQNbJ\232lY\271R\6\212" #"X@\337{\37\306\213\233\f>\250\r\r\35D" #"\35\340\221\241\217\304\303\2\\1fB\365I\332" ) 500 ( #"\231Nz\236\341k,\373QJ\307\326\320'\315y\333\322\265\335\3\202\3L$" #"\3470%K\200T\275!\21\230\267\234" #"\276\313\245R\2231\233\362\244\362b\342" #"h?\210\376\342\25\220K\225\2\21\326/\233\353d\"\357j\357~m]\367c" #"\207\f\274 \237|XR\332 \217\3669Q\255bp\322\310\215\246<\337\201r" #"\310\36\eM;\360\375\224\274R\"\345r)\317\27JXC7\260\357M\2757" #"\350YgV*\4\t\347\2735\241-" #"\335\277\177\37\275w<\361\304\23\370\360" #"\207?\214\333\267o\343\342\342B\34\3\221V\352\267rF6E\321\234GD\330" #"\230\205s\334\225\253hA\233]W\2" #"\304Y\245\204\211\206\252\203\243&]\"\n?Oi\250\364\370Y\2018 \17\346" #"\333\320oN)\241\255\25(E\220\311T$\231\203\360\342QD[\365\373?|" #"\tw\37\334\307\351\331)\336~\373m" #"\374\356\357\376.\216v;\234\357\367\216" #"\3323w\334\273w\37\207\303\1/\274" #"\360\202<3\36\264\211\256\327*:\305M(\353\231|\315K\312B\207\2036@" #"\26\361Gk\223I\211B\245R\233\352I~R\eo\311Ru\276h\16\2668" #"\251D\345\272J\345\6\235u\360\320V" #"\362\311\203\313@\341\353]\207\321\260\4" #"\22\312j\221!\336$>\252\266\206<M\22\350u\210}i,\303`R\203\214" #"X\342M\25k\240\231\344J\5\234\266\215g\360x\300(uY\252^\4o\324" #"\263\365\210\274\336xf\355\225H\313\354" #"\24\252 !\301\215\225\24\253^N\323" #"\254k\316\32\354\t\232\276\266\25h\214" #"\241\226\23\222\372T\320\255\35\201\245\302" #"\32\307\214\307\304\331\246p\216\344x[" #"n\337$\376\244\315\271\350\240\256rf$|z\221*\203\373\265\210\316" #"\307\376\242X\241\222*P\a\207\0\331\253\253>\351l+\337'\260\211\365" ) 500 ( #"B\30-Dx\377\334\273\253\343\30pd\tw\f\32\301\360d11\251\235Q" #"\333h U&\260\r\243`k$V\212\3w\257\364o\3743\21z\257hM" #"(\fQ\222\326\366\221U\276\t\tI\327#\366\30l\21o\363S\252\31\217\356" #"\364Pb\3\274\224\277NM\237\373\30xc _\347\356\322y\0P\26\343\341" #"6\343\330\312\27D\350\273\265\212R\346" #"\260\1\232\360\35\223f\312]\2;bv\304&\203tL\335\230~c\215f\235" #"e\223\b\377v\3318\274\336\304\0216" #"\225\333i!\203\374@g\214\241\365W" #"\212\20\336\v\262>\274\254\250\230eJ" #"\31\353\332\2213\360\271\317}\26\322\301" #"K\230&1\310\207\266\2427\31}\352" #"\315\\\272a\243\361a\226\206\37\342\210" #"\206I\306lS\255\344z\245\221\212\23" #"<\360\241Dx\353\255\267\360\340\301\3" #"\374\340\a/\341S\237\3724>\372\321" #"\247\224\0021\34\274\2241\3107\205;" #"\330\326p\244\32\271#c\223Me\306" #"\303~f\306\247X\226\317@\312\223\257gO@!q\316\224,\223\3376d9" #"\277G7\243e\255v\215\e\324-l" #"\334\224\22\216\346#\\9\273\"\242\340" #"\211\320\203\364\230%\204\211\222s #" #"B`{\302\312f\31c\232\21\31\22\315\342\264z\357(Y\271N\4o2\262" #"=2\331p\t=\300~\bY\313\213\f\rl\2609\3001\30\3326\266\310U" #"\230l\221\225\362\275\314G\354\323\333\306" #"{G0\354\211I\32\317L\366\261$\233\371\3\32fdjV\3378\vk\212" #"\362\262f7J\220q\274\r5W^p(\353I7w\362\244\300\366D,\277" #"mP^\335Ws\316\32$[`O\376\0351a\31\317N\253*Z\236\243\234" #"\2654:J\211\346\20b\245f\23t\352\267\f\307" #"D\252\"b\2451rn\230\240\25\22\344\366\306(S" ) 500 ( #"\0014H\266{\211\250S\264%\321\31&\304\216~Cuy\343\200Fp\275-" #"9G\344\306\370\370\366s[\347\313\334" #"2I\306\364\f\351\200\1\223\6\354\275" #"c\277\337\243\326\212\303\341\340\347\322m\"s\bL\254ApL-\362\0221\r" #"df4\2&\330\20\23f\221\2322\312\r`M_C\247\334\222^I\2524" #"0bAl3\251r\207& \235\266\311\301\0061,*\321\244\303G\320\31\244" #"\25\216<M\370\351+\257\340\317\277\366" #"5\354\17{\\\277v\r\313R\261\337/\270}\373\2668R\345'\336\274\371\21" #"|\366\263\237\305\315\2337qvv&=\31\30Iz&\251b\265\332\244\341E" #"Gi\367&\310U\353\rH[\332UJ2\362\274\4i<Y\307\201\314G\e" #"\221\35\301\333J1Ep\306PU\323\364\216\266\323>/>#\0\e\304\221\222" #"Is5\tXR\302\\&\310DW\tX%ahX\226\2036\aw\235\267" #"`|\323\240\t\314\354\2247;[v-6\202\3268\340\255V\5D\340\327h" #"v\350r\200\e\203GR\e[rF\a9\232\330\2311\205\340oTE\207l" #"\235%\0201\b\235\246\31\346[c\360XJQ=\352a\217eX\215\356\325<" #"\366j\f\"\343\272\v\"<\374i\246" #"\204\254\225\304x^\1\355a\v\311\265\255I\264!\26/D\177\356>)m{" #"s\374\\jp\32\253\272\213R%z\37\374ef\253z\353\271\2151\221\334\f" #"\204\252h\240P\332\254\265\374\233\334\247" #"T\203\263\255\200\336\223Pdr\326DH\e9S\360\217\275w\17b%\306\226" #"\n\244\375,\245\364\220T\31\2107\367" #"\234r\366!\27\366o\255W\341\20\353\215\20]J<r\226JF\316\0\v\325" #"\"\247\321\307\341\211\34\4T5\333S\34\366" #"M\206\212i\346\213\4\242*\350R\226&\e" ) 500 ( #"\347V\350\2033\270\2752#u)\3\265^5\260\22)\20}jj\34e\226" #"u[\5\272\257}u\4\331\210\374F\260NI\312\17\255w%d\247\20\300\t" #"\212\302\235\321\327\n*\31%e\254:\2\2667\271FJ\20Y\226b\345\365m" #"#\202d\16\302\307\251\20\324\314\344\321" #"\354\300\371p\213Z\235B\360P\300\262\t\314\352\206\306@$=D\275UGf" #"k\225\200\344\370\350\30\337\374\3067\361" #"\354s\277\205\375~\257ew\v\30d\335L\300\334\21H=d\311\22\212,\222" #"5Y\251\f\bH\32\b\322x\6\35{\3101[\262r\235\225$\307\24&O" #":lc\205WD<\243\221\23\324/y3\225\225*Zk`JRR\354\326" #"pb\201\225\350)6^%K\327$\307\326:\226\232\0\200\230\234\a\4]G" #"\310\371q\207\f-\373\e\372k\347\336\16\223\30\32\22\235X\b\27mJR\26" #"\251\335\306\201n3\315\330aoh\216\234\16\206?\0\0 \0IDAT " #"`\227\313M#p#\275\26\21\316O\332\204\326\221\247\"M^\4\355vf=" #"k\322=\232\222\214n\24\24\266\353\376" #"\261\262d\244%\214R\346\254\32236UI\256\375\341\341\1q\317\312\277eH" #"\303Z\320\224\324\r\313\372L\r\25Y\"\252_E\215@\246\"\1\235Uw\26" #"Q\276\a\276\307\0\231\334\224\23A\234" #"\257\360\327\271o\313\2661x\360$N\221E{\31\337Sx\335\253OT\263{" #"k\255#OY\307q\253\23\365\317\e" #"\347&6\3039\262\242\237\341\324\t\375" #"\372\234U\373{sm\333\252\201\211\374" #"g\273\346\360\212\301|\334S\265V\354v;q\322Ix\212%\v7\264w\340" #"\344\330*L\305\345r\336}\367]\354vG\270q\343\361\241\222" #"\323\eRb\251d%\343\221B\3577m\316\221\335su\247\320\265" ) 500 ( #"\v^\367GX\217y\236q\276\337\373\357\35\16\207\207\22\203\242%}C\266|" #"\217&+,b\223x\333\357Ybi" #"\241cJ\311\355\335\272\337\343\321\307\36" #"\363\4\2775\306\376\260\340\311'\36\307" #"'>\361Y|\344\251\217\340\221\253W" #"1\317\23\216\216\216\344\231k\363Q[" #"-8\32\315j\334\32\322\224\225\233^|;\211\362F\361=*\234yY\357\\" #"\2127\223\2326\347@a\311\223H\326\240$\2\0006\205-\322\272\349$\333" #"\326\274\375wl\253\2251H\362\367ibgI\206\a\312\4\200\2651-'L" #"\272\307\223\22)$\b\36\201\236=\237\306*\321\304#@1\305 \vV\264\303" #"e\263\177cS\336C\334\323\20\374I" #"\5\267\341\260,\36;\344\224\220C\303\223}\357h>\317\30|x\255\24X\222" #"\34\364\364c\22 \r\303\331\367\273n" #"}\225c\24\364\257\363\266\261z\223\204" #"\200\264/!\360\3723<\310\215\1u" #"\274\367\201\216'\264u\25\200\202\200\255" #"\17\b\311\213\30\315\241\375\e\301\24(" #"_\335m\312\260\35\21A\35g;@\353a\375\253V\337sJB\27bFA" #"A\347\252t\"\vj%\351\262~'$\32\323)\255\"\222\310\2518P\232E" #"Rf\300\b:I\221SyW\311\5\207\276\370\25FK\230\22\34ief\217" #"\325\222\372\35\253\24\331\3244\221\325[" #"\301\334.\355+M0\221\260\256\213\364" #"\362h\6\220sR\316w\337\234\311\344\aN#y`4s\b\362\243\eYa" #"r#\211\v_E\246\205\2104\205\20\301\23\217r\2425\233\221f\372\235\31k" #"k\322EW\214\244\256:\250\312\235\242" #"\234P\271\343\260\332\304 \240\367\25\275" #"W\244$%\e\2;\342\302\4\314\212\bJ7\36I\311P\r\3234" #"M\350\0\0321V\214\240T\234\254NqQ\aI\220f,\343^E\31" ) 500 ( #"!C3d\303\17\351\0351\200\232\375\260\241ib\244\326uE\255\302=\233w" #"R\342\26\224v\4\222\357\275\377>\356" #"\337\273\217\224\262\226\363%\20l\215\225" #"?\270H\31\26\252.\340\231\241 \3552H@\20\241\36\16\341d\\5R\216" #"\217\226b#\365\0\374p0k\e\303" #"\202\374\261I\a\177:\273A\352\341\240" #"\222\360\220\345I\202\308\\\354qq\330c\177q\201\323\32331\336l\345\r" #"\300\204\313\205\303\326]\32h\203d\204" #"\f\\\16\341X\333\230\355\23\221\254\301*kS|\177\rCe\367\301]\16v" #"R\271\270NC\26\315\222\230\210do" #"\262\330n\302\335c\235\314`\31\361}" #"\343\274\300 \345\n\v\242\254<\352d" #"\6\"o\276G>\313\214\250\24\255\354{\"Jmh\t\221\224\321$8\256\17" #"!*\321 G\247\4U9%\rV\255)\261\266\206*_\210\306\214\265w4" #"-\373\213@\275\"\266)\311\271a\35[\211\201:w=[@FN\223\4\3" #"\220\367\312\363[\235\233lA\352\270\2561y\214Y\306\273P\37\234AKBe" #"XJr\364t\4\273\203\177F0\375\307\321x\27Q\305XF\265j\205}\377" #"Hb\365\214c 81\251\261=m\1o\27\bb\363\f\354\25\3\r\v$" #"\1q\224I?c\355\222\334\27\2450\355v;03\216\216\216\360\322K/a" #"\277\337\343\374\374\34\237\374\344\177\357\327" #"[(\201\e\271\357\2233\3\277_[g\347\3062c\316\31\273)a\312r^" #";\367Q\371\320}\325\302:D;\341" #">\3\fP\367r\253\241\331\256\230\321\265I%\4\f\316\0016n:D\245\300" #"\232\304H\367\351\325\253\217\340w\376\375" #"\277\307\263\317>\213\265.`4|\371\177\3732~\345\177\372\37q" #"\363\346Gqrr\2\251\320i3\360R\261.\v\226\272\372>A\a" ) 500 ( #"\216\217Oq\365\221k\230\246\31\307\307" #"\3070\24\254\353\376`\346\315\363k\314" #"Xt\377\215@s\234\347\254\245\323Q" #"\331\31(\233\371\n\321@\37\257\270n" #"\306\341\276\234d\231o\261@\313\376\335l\ny@1\316\264UJ%\340\2004" #"gu\6\233\nG\316\356\313\2536\264\332{S\36\1\244u\375{r\317\"\17" #"i\223<\37\n\354\302\263\216\373b\2230\233\235\327R?AT 4\203\366\365" #"\215\1\314\270o\250\r\354\250u\25\3766m\e]]\"\f\326\234<\256m<" #"_i\300\26\312\342HH\242M\207\201#\227\354\375\345gd\366\3422\325\2\0" #"\320\2047\254\221\234'\n\366\214<\340\315C.-&N\346\363m#\tH5" #"\252!\226\0\3103\322)z\332Y\35\237\217\307\27!\330/$R\234\t\2$" #"\325.t\30WN!\265\311\352\267\354" #"\332\343}\3Z\331\265\375\322;v\273" #"\235\373\346<\331s\27\220\246d\321y&\"o0O)\3\\<\362MI\225" #"\26\240\203\305Z\5\21\220\221|O\333\3766\233\"vEm\30F\354(\361\203" #" \312`\351Y2z\243\375I6\222\325\246\303\230~\253\314s\37\\;\341\v" #"\211\203#\226\316\355\252\323\235\304 \312" #"\373[\e\255\27\265U\341$\2614\324" #"T\36\31j\255\253f\27\346$\245\304" #"\264\254U\2069\244\241\227\347\306\232\345" #"\246\22\b\320\261\301\231\22j[\261\256" #"\r\373\303\212\336\30km\22\264kpG\206b2\243\221JVP\a4\373Z" #"\227E\263\t\331\367R\336\332\242\266\361" #"@\213@\272\5\300#o\261Nx;\300\362\300\212o\24\6p\261\277\200\21\275" #"\2713\216\217\217q8\354aH\244l\254\216\\\204\367;\3153`e\37\335<" #" i\316\230\247\311\17\304<\317\e\276\243\31\335" #"\326Uv\2537\324\272\272\303\a\340%\312\321X2" ) 500 ( #"\214\262\241N\21Y\250U\234\311\272\f" #"\371\267y\322\357\225tQ\357S\320\344\326\32\16\27{\\9\273\2\250a4\3" #"\321\232\2156$\b\257\31Z\332\330\362" #"\215\335 a\240\203\226\300D\343k\6S\370d\31\350R~*zP\354p\371" #"g\252\21\347&\177R\32\352\25\227Q+\vr#\32\300\34\324\37\302g\313\372" #"\261\237\35\r\a\204\227jFE\263ZK\306\354\271\f\303\262\35qk\257\210~" #"\230X\274 \351&\344\215\315\232D\324" #"\304\221\34\336\32\356\224\314 \214\206#" #"\333\321&\360\r\375\214\254\1\331\244\353" #"@jpl\375\345\271\215IL\f\31\336P\333\b6-1\204~S\334{\316" #"U\16kI\372\340MN\310\e{\222h@W\265=\361\334I\343\373h,\224" #"\365\32\315\"\216>hW\271\r`\211" #"\347\306\356\307\2\215\207\253\e\243\237\200" #"\324a\232Q]M\215A\367J,\307" #"\332\276\212\201\37\230\261\364A\335\361\357" #"7\204J\355\357\267\276\365-\264\326\360" #"\370\3437\360\364\323Oo\222,\v\256" #"\222r\25\231%`\216H\271\243\273f" #"\317\r\251K\t\251\303K\240v\335\207" #"\310C\306\b\374\342\232\266\n\325\3014" #"\e\276-\351\202GC\220\255\267m2" #"R\310\334\366\235\3551\6pq\261\307\331\331\31>\377o\376\r...0M" #"\273\321\a\320,(\324$\220;Zo\336\354*\310\234(I|\355k\177\201\377" #"\373?\377'|\365\17\377\20/\275\364" #"\22v;\265\247]\370\357 \322^\16" #"\241\325\304\227\235\v\343\26G\272\bs" #"H\320\223\321\236\342H\326\261\216\266\227" #"#\22\273M:G\302\267\225%\eg\327\313\346\341:\34a\255\r\304P\225d" #"\n\250\340eu\34\222\246\260\2246g\315\336\243\213\351\31706\rF\260" #" ~\246]K\264\303\352Dq\250\25" #"\215E\363\327\374\326\330\e[\212\330\270" ) 500 ( #"\337\214\250\341\234U\177\327le\357\335" #"\225Z\354\274wn\332#\27\233\336U\306o\332V\332\326u\4\275\0\224f\223" #"\335\271\330\275E_\32\327(N:k" #"\255\211R\1d\234\200\331\313\370}\223" #"\252\225X\f\224h;\302\334\355_\b" #"zSJ\340\265\372\344\306\261\366\326\37" #"a\311\222Q\304\330{zr\32\225\4B\240\306\331^\353C\372\220[\367A\e" #"~\376B%\302\376-\202NFW0\220@*\aB!`\255p\330\202\260\210" #"U\350y\253nw\355<\220R:\23" #"\205\357\221\254\331\327\26@\260\303\302\344" #"\27*\335\270\347a\237\330\375Do]@F\3T\f\272\266n\373\224\nz\355" #"h\rhM2\a?\20:\335%\247\204\243I2>\3217\23\221\376i\312\230" #"\246,\323M\230\261\256U\f\220m " #"\210\303\337M3\b\354\345\4f\311\250" #"\220ID\315sB\355\253\227\233\23\21" #"\nH\e\26\214\353\243\345}\266\16\370" #"\254\234\275\310E\"\325e\223\315a\231" #"\245)\f\210\265\225\3035\347\"\35\270" #"\f\355\250\0342_\376\2207A\2174\2321\17\3d\17\304\312L\202\3546G" #"\235J\316B_P!gAb+\366\207\3\246\351H\37\252\2401\2113\320e" #"m3\21\224i\r\256\332\25l\323\204\202\361\213F5:fS\0244\343Q\353" #"\352\e\323\256=\6H\202$\e\27o4\221P\"\224iB)\22\300'J\250" #"\353\n\202\240\251\206V&-7]\\\\\250\364T\3024muS\207A\330\352" #"q\266\256J\vt\251\360ARj!\251\rcpW\267\334(7\330,hj" #"\257\335\a\21D\343\336Z\223\0221X\220\20C\240\0\254k\335 &5 <" #"v\255\206\22\304`\310\376.\357\353" #"\343\372\3\345\247\1\250\2155\t\263R\362\26\35\256" #"M\366\201 |R\326F\f\322\223\362\257\232\374n\n" ) 500 ( #"\2161\256\2079\316-]a\273\336\275" #"\213\4\323\345\3515k\37\364\5\266=\246N\2141\232%Gyp<+s\222" #"`i\\\352\3148,K\370L`TA\330\253\v\246\35\32\317\234T\223\244q" #"\306\326\327\21C\2026'\260\ai\22\320&\263\227^\26\357\3346Ar|^" #"\276\367\332\340\205\30731\20-\370\363" #"2\233\3\273\336\200\302\350\366\333\4$" #"\321\231\3pI\266\234\2637\203t\32" #"\274\275\265V\34\366\"\305w\262\333\341" #"\207\337\377>\336x\343\r\234\237\237\343" #"\177\370\345_\226\35\303\f\326k\266\261" #"\334\255\256>\355\256\224\202\243\343c\274" #"\374\343\237\340\373\337\377\301& \261Q" #"\332\266\6q-\354\31\26\2757K\0/'\240\254~\3\314\350\265\t%'\200" #"\3\206\226&\300%\320\314\276\224$\n\4\306\235\216g'\301\32\230\178;=" #"\223\265\355\352\370\230\201\36\257E\366\177" #"\231&\20K\340\222 #\352\277\372\325" #"\257\342\273\337\375\16^\371\321\313x\355" #"\325W\361'\177\362'\370\203?\370\3\rB\5\201\352\32\224\255}[-\261?" #"\346\3b\360b\201\254=\317Xi\261" #" .\"\261\335\355\312\352\367_\253\310" #")\202\255s>i\23\364\226\276`\237" #"k\257\315\332\32\342\34\376.\373V\354" #"j\257\242\333M\246\251\313\3\235\333\234" #"/\333\267\1\354\350\275{b\"\317Q\366x\n\373\232\335\247\4\312@2\35i" #"`\322~\20\v\270\254\347DlgW\333\23\e\aY\ei\307\36\265\204,\351" #"\250\362\224\322CC\207\244\221\32\260a6`A\373J1z\331H\26\354y\324" #"ZQ\327q\306\"\320\239\326\227\2532\266.\343w\306\4:\266u\t~B" #"|\232\252\0\360@\306#b<\206\241H\262\331T\306m*\5\263J\225" #"\242[\0>\301T)\200\256\367)\317@\354\362\0\245$\326\331\0027Y" ) 500 ( #"%\277\230\200T2(\211~{\311\23\210d\374nNB\325\212~C\334\231P" #"\31.\307\v\207eA\355\22\210.k\38\2039\2018\203 C\207r\332m" #"\373\ntM\310\277C\224-\30\35\275" #"\t5\256\266\352\25\e\251\3626\220\202" #"\251\346\337%\210\207\257\271p\234\205W/I\t\320\e!Yv\211> `1" #"\330\342\250{\267\300\261\211\0215}\23" #"t\20w\364\272:\242\"#\36\a\3224M[#f\233\313\271A\272\t\32w" #"\345\b3R\311\312\225\324r\f$\270" #"\223\303l\370/\24\375T\336\222n\356" #"\244\210\3230\266VZ\227\337\265\362\264" #"\5\325\f`\255\213\a\307\6\335C9" #"g\362\367a\350\354\25\eQ\254\1\307" #"\214\220\4\334\5\250\332\210\23\265t\273" #"Hb\334\272u\a\307'\307\0\261\n\367\3\2\311\v\267q*\322-O\t\232" #"}\217\254\253\326m\6\b@GM>\\\6\263\303\324\225\273'\315\30\214\\l" #"\224\344\b\216\"\177/\32zA\3335\200\202p\340z\227\306C(\232%%\223" #"\264\371\316\303\341\200G\36y\4)\25" #"<\270\177\216\a\367\357o\202G\250\tdC\251%4\221\315L\35\f\tj[" #"_\301\\\321\332\352\317:\27r1|1,\243\1\310\r\276R\34H\345\205\320" #"\330\263\\\357\210M\t\275\311XQ\215" #"\34`]\2431h\276\214\332\312\236\346" #"P\372\336\242/\245\210\243\265krC" #"\223\244\264\25\203\321\234\363\246\3\270\265" #"\346rH\255K#!\367\16\205\351\4\261a\326\275\1=\213Rb\267=\346\316" #"\3\330 \23\342\234\266\245F\30\367\267" #"\213\364\32,\373\307\b&\22\263>\337" #"\206L,\206\250W\335\333U\215}\350" #"\320\266=\225d\"\235\225\235H\254\272\3525\20\244\364$\22n2^w" #"4\210\331^N)\241W\225Mb\255\352\4\233\222\210\0341\242\4Q\271" ) 500 ( #"P\211(\371\35\v\0b3\3240\2661\21\260\240\3452\262\21\221H\"\321O" #"\266\275L\32\370[\322\31\203!\16\t\207}v<[\36\2540\v\321#\240<" #"D\204\263\2633\344\234q8\34\360\303" #"\37\376\20\273i\302\265G\36\301\177\367" #"\257\376\225e\vH)\341\325W_\305" #"?\375\343\367\261\256\r\310\5\267\357\334" #"\303\275\373\17\360\213\267\337\301\237\376\331" #"\377\207?\371\323?\305_|\355/\360" #"\177\376\336\377\245\250\213q\352\206m\212" #"\234O\253V\331\251\254\241Ll/\273" #"\376R\n\220\204\27\27u\243\343\275\332" #"\3245bI\332\217\347\331i\n\261\251" #"\326\34\225\0B\343\354\355\346\35zo" #"x\377\275\367\245\4\236\263$\372M|" #"\r\32\17\16\265\16\243\370\301\17\276\217" #"7\337|\23y*x\3613\237\306\263\317=\207\\\n\336z\353-\374\376\357\377" #"\276\4\306D\200\322\212l\270G\f$/ST\6G\265\302\232\376\"\222)\177" #"\32\254\341L\316?|]\355\363,\230ZYh|r\237Qnl\e\310\306\212" #"ED,m\257\f\35v\32\211]k\222\370(p\220\312\326\276\203\307^\265\300" #"\322\0\206M\360\353\347L\252\203kW" #"}\360\326\221)\243w\1\307r\236\320" #"\e\244\17\00418&\345\346G\340\210\34}\203\356\373\4B\246<\252H\222*" #"\202t\334o\312\344\276\306\375\232\201\e\0d\2406\364\271\0e\312jc,V" #"\30\343w\275jY\222t\364\207\4\316\350\t\346\23#\330e\237a?\227>\224" #"\212\265\256\250\275\241\232\377\b\225\1o" #"6$\251\34$\220j\334\253mI[\331C\e\321m\17\244Y\277\bX\223S" #"Q\312\31\325)\361\317\260\263C\203b" #"\211\224\260.\253\357=K<\305N\351dO\5:Z\353\322\353\243\3\272" #"\230F\342\324Y\306.K\205\276+\22\e\25209\353Hh\265\377e\350" ) 500 ( #"\327\16\233\333dr\250\323-\204\322\"" #"\215\212F\235\325\347\316\254~E\343'" #"\5\f%f\314\340N\201\366\240v9\215\252\213-\236T\265V\264VQ\314\0" #"IP'\233\304\272LS\322F\252\336<\0\260\22\272\240\241\31\363n\16%\16" #";,\320\2151\2\20\333\224>5\205\245y\242\365\246\35tj\370ZCAB" #"f M\206\246\311\341\310\220\246\30\321" #"\212\e(\303\220\0\253:=\347 \353" #"\225\254LM0%\t\317\334\224\20\237" #"\251\310\350G\214\367Z\266N\235\300$\rtq\230E\f\fm\363G\343X\327" #"U\263\327\204VG9\236\1\324\332qvv*\277W$\313\336\357\5\371\334\357" #"\27Y\373\236\260\264U\257\231`e0\"\3024O`n\242\16\301\241\e\324\202" #"'u\376\0364\5C\355%\314l2\\\333\21\227\206\246\21\r\336f\34\377\350" #"\1\b\6\251<\331\340\201\20\200\0\360" #"\254;%\31)]\373\270\226\326\342\230@\322\303\253D{R\2<\311F\216\372" #"\234\261C9\247!\b=:\232\265\334\eP\313Xn%\310\241\311\206x\360\b" #"\354\2423\211kv\371\277\303h\230|\2255\247X\3605T\v\34\241\325\340^" #"\3260\4\223\341=\3\rR\204\246K\243\236\5\a\206\246\332\300\17)\333/z" #"\335\343>c\240\5\rV.\e\352\270WGG\256L$\234sQ\5\16i\272" #"4h\324\344\224\f\235`\330\270\352\344" #"FE\202\262=@\22\370\254\335$\267" #"\204#\256\346G\232\204\364\367L\236L" #"\326\300\370y[\204Q\256G%\362H\34EQ\221|\t\3463`\216\323\2\1" #"K\6S\362\200\320\250\17#\301\nh\207\256\273q\202/'\37\362\221[>\366" #"4\315\202h\247\344\272\276\276\3374A@\332\226g/7\263\30\357" #"\331\306\2o*1I\2328\367\32P\257\353\212\27_|q\323\250" ) 500 ( #"y\367\356]\374\331\237\375\31\316\317\37" #"\340\307/\277\214\267\337y\a\347\347\347" #"8;;\3\0\354\367\a\34\237\236b\377\340\201T4Z\a\25\271\316I\265\245" #"\221\206}\360\244Z\274\26\n\221#\316q\357\330^#\322>\r\375Y<\243f" #"O\242\335\265\375=\224Al\244\2738" #"`\253\0\330\371\0I\340\272\277\330\273" #"\0172P\305\326\252V\323\357\48\21" #"\326\272\342\237\377\371\2371\3173~\345" #"W~\5\237\373\334\347\320Z\303\307?" #"\361\2\276\366\347\177\2167~\376&\336{\377=\\\273~]m\217T#{\247" #"K{/9PavK\226E\24\203.W\373\342\236\2215\200\177\276\355ek" #"\36cf\rz\272s\334\207\rf?\327q\277<D3\b\347}4,[\262" #"\26l>\340\237-H_Vi,Kr-H\202Vs\333C6\320\276K\202" #"\241\2144\37\341b\277\a\21\341\365\327" #"_\307\307\236y\6y\32\23\321\0\223\245j\250\255cR\nH\364K>\220\5" #"p\360\2533\3m\364d\260\202]Q" #"\263\326\355\233\30\24\35\253L\200N\375" #"\22\2059\253\f\216\3006\256YR\177c\272\306Vi2\331\305\b\320E\233j" #"\b\343e%\221d\ro\1\24\2613k\266\277\314\223\330.\355[\250kU$" #"\325>_c'\226\312\267\f\307\250\322HN\6*X\245P\373\213\2\230'\361" #"Z\240,\326\266\331+\356\377\223T\342;u\277F\363=\246|\303\r>\275\323" #"h~9\r\375\370A\247\330*\22003V\2255\214\353#\373\330\300\20\31\257" #"\16\326\352_[\365\374\305ff9{U\253D\244\224\300&f\t\255\221K\246" #"b\334\242\357y\231\310\333\235\376\220," #"\3127g`\243\347\254\274\302,\321\275\301\3142\243\\ {\221\245" #"QD\f\243\354\335\231\221ur\215\35\374x\320\242\343\265W\221!\306" ) 500 ( #" \345=-\275b\331\357\305\245\252\301" #"\353\4p\26\225\a\322\300\305\36\216\4" #"\23\t\255U\20\25P*()\253\310\362%}^5\6\36\240\207\322\261\212\207" #"\270\23\2\v\237\3058i~\217}\b\245\333\275\331\317(%!\355 \360\243X" #"P\254\224C\371I\245\327\f\235\314\251\0\224\24u\223!\25\2273\330uY]" #"\353\320\236\35\207\354\333\0346.\5\343" #"f\25\244A\244\201\300\17!\216\2434" #"?\16\317\272.!\273\222\200\326\16nR\252\211$@\212X\207\200m]\26\225" #"\246!\334\272u\313\237}kR\346\264" #"\322\303(\17\205\256K\vV\261\325\1\35\245Ai\222j\265a\255up\221\231" #"}b\215\e!\313f5Xl\272\37\255<\343\317\215\6\331\336\f\232\5\345\366" #"96-\320Gtj\345#%i\2521\364\317\366\230\243^\4\345\250' \21" #"\262\256\275E\223\26H\0\22$eJ(! 2\244\313*\e#\350\222\4#" #"\242\b\3\20P\352@\b\246\2674\v\v\340\265\341\206\t\231\324X\222\"\5]" #"\270e\235\233\17G`\356r\266|-h\254!\262 4\301\201\20\313\276AR" #"\32\r\221\32:\2667\300*4\255\215\6\4\0^\332\312\332\234%Y\274\254[" #"\347\246h@S\204\233\36rjv\226\207\341\3255\"Q\36H9k\a:\373" #"T2\250\361\217\211J\f\260F\320,\25\240\326dm\232rs\241\367\335c\322" #"\201\255\243\361\263\252?_\3\03766#\3256t(/..\360\334s\317\371" #"\336\316)\343\215\327\337\304rX\221\362" #"\214\267~\361\vuZ\31\357\276\373\36" #"\356\335\273\207\367\337\177\37\267n\337\302" #"\365\307\36\305o\377\366o\373}\24kzJ\0%A\277\272\352S\32\235\315J" #"\342f\303\342\377\333z\232\223\\[\303\332\266" #"\345\377\315\371\1\36\372][\23\233\24i\347A" ) 500 ( #"\366\277\374\177&\340\354\370\4\307\363\316" #"\253B\275w\324UG\262\222\214\201\205" #"\6\312%g\374\354\325W\361\316;\357`\236g|\353[\337\302\203\a\17\220R" #"\302\315\2337qtr\202\316\214\333w\356\300\200\227\224dpQl0\36\\\373" #"\361\22$v\e\0\332\271\215\266\303l" #"\251%\277\261\352\303\352k%\311\6lr`\244\322\340\222]\264={\331\207]" #"\336O\266\366\342ldPIc\251\272\255\353*\345}\330\340\e\tZz\223\203" #"\331\332\340\344\306\200\332\366\241!\264\245" #"H\363\356\332+\256\\\271\202\37\376\360" #"\207\370\243?\372c\374\37\377\373\177\304" #"\355\333\267\375zz\227)\235\224\310\e" #"\307m?\225\\\264\2225\217 \336\202" #"\251\340\263\2102\262&\267\214m\203\230" #"\a\342^\331\323\365S-r\323p\2166`\370\3014\202g\343\371@\316\264\361" #"\235\r<\261\227\255w|yR\252>\213\231\201\234\264\t]\220^\211y\206?" #"\342&\276\271i\225\252\353\4S\356\343" #"\271\260&\316K\357J\373\224\341ZD\t\231&AbI\252\315\265\213\r\364F" #"\267\4 \t\3204\357\212W\306%\0\314J\343|x\212XLD\331\203GY" #"\263\303r\220\357@r\355d[K\263\267\275w\a\222\354\357\361UJ\321*B" #"GGC\262f:\266\t\256\243\252\24\377L>uS{\277\230AY\232\17\231" #"G\177\at\242'\263!\326\312\345\355" #"\f\356\204\322Z\303\244\232l\2{\357" #"\205\310_\25E\253U\202\326\4yp\244\31\"\304)]v\242R6\351\240\242" #"\213\e\32@\304\220Xyk\bN\23\0i\32N>\326/S\22JC\357\240" #"$t\6{(\315\214*\213|\226\31\209\230\335\203^\352\204VW\247&\230" #"!\210\210\204l\326\22\262`EUR\22\225\6" #"f\341\354&\345\26\321 \252G-\316\310\377\21\331" ) 500 ( #"\f\343q\31\312\223\320\272\312\"u\223" #"\215\352R\236t\355Z\371\276\336\204\243" #"q\31QpC\240\245\342\2223\16\352\220\275\34\235\222\21795\271\34KP$" #"\336\26\312\1R\1\372\26m\30N\26(e\207\224\244LW\253\214B\334\355\216" #"\34!\264\216\334D\20i2J\350\t" #"\36\200\23\21\256^\277&\6\207\201\373" #"\367\357\341\344\344\4\367\356\335s\203\224" #"(+\307o\4g\"\35g\342\331\214" #"\252\323\224\36\222v\201\4g\244\210\262" #"\241\3309g\314\3073z\25\r\310\252" #":\201\27\373\v\354v;\354\367\347H" #"\2458Z\314\341\2602\263\243\366v\350" #"\"\312\e\235tl(\260\301\17\32\265\371\363\210F\0Z%\3559\241/+\346" #"I\206'$9d\301iA\215\356p2^Z\266\200\35\220\340N\35\4c\360" #"\302\4\5\2212\0317\331g9\r\315\311-jOX\3271\205)\347\2357w" #"\255\272\37\301MP\22\32\301\231\5\361" #"\321@\312\232M\310\3058\314j\300Y\324\e<\250OI\366\212\362\363;\4}" #"\261\221\3316|\302\34\277\225\321\271\313" #"\370\23\302p8\2279_\227\3\250\3105\274<^\234H\320r\373\235\222D\314" #"\\F\271\212\\\220\377,43\232\256" #"e\244\312\330\272\220:=\323\222\265\304" #"\304\221\372\276\245\215\230\343\377o5&" #"\245\224pzz\212\a\367\356\341\371\347" #"\237\307\347>\3679\\\275zu\354Gn\270\270\270@m\r\363\3611\366{\221" #"\377z\364\321G\361\361\217\177\34W\256" #"\\\301\263\317>\213\323\323S\234\236\236" #"\242\36\26\354\216&O\262\241\216\303\236" #"\345RW\24\222f\272<M\322\270B" #"\333\352\203Q9\266\334\312\355\364)\v" #"\366\241'\342\260,\3228\e\316Z," #"\247\356\346Y\366k\22\232N\311\242\333LD\270z\355*" #"\256\\}\4\357\274\367\36\316\37\234{p}\264;\362\276" ) 500 ( #"\22B\326!\eRR,i$J\242\316 {\341\301\203\ah*]xvv" #"\346\347\v\216\26\332\372o;\363-\0013i\262\326\306 \235h\227#\232mg" #"\36\356\207;2\222_\243\r3aJ\336\361o@\220\275\214bc\201o\4\214" #"\354;\254\352feyG\242i \275\362;\4\253\336\210\24\0356v\256\325\246" #"v\242\302\206\207\\\6\250\210H\306\260+hs8Hcrg\302\375\a\17\360" #"\37\376\303\177\304\213/\376k|\342\23" #"/\340\205O\274\200y\316\330\357\17`" #"\2\226\365 \317L\313\342\231D\363\331" #"\256_\366`\301\230\336&\203P\326\326" #"\320\3210\225\264\271\336\3134\16\231\316" #"\232]M\300\244,\355\36\342\364Df" #"\225\303S\236\266\351\365\212\337'0\344" #"\231\330\376v\e\216\241\212\21Q\336\315" #"s\241\244}8\n\244\314\331\334\202\370" #"\6f\341\233k\325\\\316\202\354'\351\3430y\314A\355 \375]\2\243AK" #"\363,IWo\243!\226\364\315\266\217" #"\227\265\243\361\252\0\233\200Q\215\eR" #"\317\e\35s;\277\265V\3651CO\337c\256\332@\23\243\217\355\271\1\25\b" #"$\262\216!Y\262\337u\240\200\324\aAi\224\0040\204w\354My\366y\227" #"\237\261\304\305B7\324q\305\222\370\r" #"YS\353\203\351\314\340u\5'\222&" #"p\261\357\222\305d\"\200\30\322\265k" #"\310f\362\251\e\3460z\357\336\20v\371\302\346yVI+\303|\215S*\213" #"\262\256f<\310\17\234\225:\210\310\313" #"\3352}\255{\211<\265\301e\252\265a\2322\2303\320\233\363[\"Ln\372" #"k'''\303\360\246-r\31\3sC\266\300@)3\214\323\223\264\304Z\271" #"\353\203\331N8\211\24593\364\342\224\201R&/[\b\22J\202\216" #"U\323\37%,\213\30\335y\236=s\227\30044\351\4\303i\233q\232" ) 500 ( #"e&]*\23\216\362$\223\325\362p\216`\326`zL?A\327\365l\r\363" #"\356HG/\17\364\305\276gl`\366" #"\254\310\250\34\353R\261\233g\254\255z" #"\25\240\266\6*\302=\235\246\tK]\335\330\202\bO<\361\4\336\376\305/p" #"\330\37\\_\322\202\36K(\300\2142" #"O\216\16Y\366\331jC\311\303\240\304" #"\204\242:\347V\20\315\275N\274\332\357" #"\367x\345\225W\260\34\26<x\360\0" #"\313r\300\203\363s\274\373\356\273\270w" #"\357\36r\316\370\267\377\366\177\301s\317" #"=\353\237g\372\207\334\2553v \32" #"\26\374\333\376\267k\271\34x\3\360n" #"\346\308\313\177\305y\316s\306b\316" #"Q\351&\275\265\320\\\221\0\230,\315(;\331\363\350]\264\3-kF\"\357" #"jel\203\216IE\324\255\24,\223&\267\201\225\354\2271\276xY\2443\226" #"8\311(N\256He4~\304\200\337(\vI\365'\307\2049\241)\310\276\221" #"\363*\325 A&Z\225$\30\20\24\203\351\222\"@\260'D\344\2102\254\356" #"b\311T\b\334\37\252\250\204d\304\316{\344\325\333\250Y+oB\317>,\221" #"lc\355c9\330\20@\273\276h\377Z\37e\342\304\354\264\"K\f\355\36[" #"\370lJ\311\3\342\246\17!\376|\236" #"g\224\224\260\337\357\361\3143\317\340\251" #"\247\236\302~\277\367\317\231\312\16o\274" #"\376\6v'GX\16\a<\363\3143" #"\370\321\217\376\5\277\371\233\277\211+W" #"\316\260\327\322\262\354\247\25G'G^" #"V\0041r\231\304\371t\263\323&\331\30\22\6MF\"w9\336w\377\0\373" #"\273\371S\n\250_\342T\22m\236[]VL\3634\232\362\364\3544}>\247" #"g\247\230\346\to\276\365s\30\202\332\224N'I\270\315\350\4\16\207\3" #"\236~\372i|\362\223\237\304\267\277\375mOnZk\370\356w\277\213e" ) 500 ( #"Yp||\214\e7n`\277\337c\267\333\301\246s\nrn\203\37\314\311\313" #"\366\230\346\204\336\204j\227C \34\317" #"\2059\365\246\3\35\314\6\243\17\rVA\313\265\231&$]q=\314\316\e\30" #"dU\260\330\324\30\25\21bI\337\337\207\255\356\353\240F\f{Z\2624\356p" #"\207\227\320M\36\323>\327\324m\226E" #"\206\331\230=\254\225qq\361\0\317\177" #"\3749|\343\233\337Dg\306\321\321\31" #"^\372\227\37\342\237_z\t\363n\306" #"\265G\37\301\243\327\37\305\213/~\nO=\365a\321.7\240\202\1`\0\v" #"\262\247mb\246\330\207\316\35\214\321\377" #"1\312\332\303.\332\32\254\353*\312\a" #"\252on\201\245%\t\2557d\210\22\207<3\6\nyPm\22r\f\1\232" #"$X\35\25\271X\361\213\347\330\366#" #"3\203\223\30{J\242\344\260i\220\222" #"\333\325\246\354!\263gUP\260P\324" #"\3044m\253R\215\315G\31\245\260\1\225\201\251x\"\315D\16x\200\2012\t" #"M\202\330x\260@\323\276\n\206)\330" #"\230\17\316X\353\212\254\225Gb\362\375o{\315F\0223w\224<\207$Q\23" #"\246R\264z \225!\3673]{j\372\240\323\210\335`\177\206\203W;l\277" #"\275\257d\351\37k4\324\274\22\31%" #"H\317\16\266\372\347\21\20\205\356\343\222" #"\300\250\0044\356Hk\363MHi\30iX\366B$\\8\222ng\323^\263" #"\3\266\256K\230B\262j\3408\371&" #"\262\367\245T|\263\304\377\372\370\301\332" #"d\2566\200\324\30ME\226E\250W\202\330y.X\e#\25\231\342\301m " #":9g\314\363\214eY\206C\237\212\37\20{8\216f\346\354\372rI\3\2" #"$\v<\225\363\t\262e\360\207~\226\327\177\0\0 \0IDAT" #"\26\r\272\aw\30\177\267\357a\26\4.'i\3308::F.\t3" ) 500 ( #"[0,(J\311:\32618\216XJ\262l\277\256\ro\376\374u\274\376\306" #"\ex\364\321G\361\342\213/*\25c\0313\300\355\2253H3\35\200\5\35\257" #"c\335}C\351&\331\355v\250\365\0\241+dL\223L\320\222\2013\312\321*" #"I\0026\326\200\4\22\234\257m4\226\364\336qrr\"\332\225)\341\375[\267" #"\274A\253\352\300\1\213\260\322\224\335\t" #"\254\265:\327Q&\252\t\237'\2533\2235\31\274esbD\204\277\372\253\277" #"\302\337\177\353\357q\264;\322\6\230\216\335,(\345\262,8::BJ\204\273" #"wo\3\20U\220\244\245\35\"\25\r" #"\247(\21d\315e\243\23\337\366\261\31" #"\300\230\335\307u\214\207X\244\216*:\251\243a\241\341$@\r* \rw\v" #"r\236@*\314\315\2541\230;4\35\tm\32\230\350\17u\307\332\265\30\332\4" #"@\5\271\341\316\325\367\254\216|\36e\275A!a\226\254\331\320YSU\360," #"[\"\3\364.\224\233\332\214\356`\362b\r\313\302:8\240\203{R\3\e\202" #"9\"\330\200zC`\24231\233\303" #"\275\373\310\314\325\252\24\227\356\327\22\317" #"x\266\235nP\2337%Z\0\352(9\34494E\236\2236\243\30\22\26\235" #"i\344\226GD\363\241@\235\214\f\205" #"\3155\266\326\334\351\260,\346\250(hP_\222\320\0R\2223v\375\372u\274" #"\372\352\253>\21\315\200\1f\3064O" #"x\357\316-\254\373\3N\317\316\360\245/}\t?\371\311']\2\311\366\354@" #"\355\254\21T\34<C\244\330\254\2PJq\216\362\6\251\16\211\260=;G\300" #"B\325\302+\34\1=\337\254\263#\216cuz\357 \345\347I\"\2234\347P" #"\224\253v\34\35\35\243\326\212\367\337\177\37D\204\335n\247v\263" #"`\236gh\36\217\267\336z\v\363<\343\221G\36\301\365\353\327}" ) 500 ( #"\320F\255\25o\275\365\26\276\373\335\357" #"b\277\337\343\363\237\377\274\3541E\360" #"M\321\243\271\17\3212/7\335\v\322" #"\270\223\22\320V\214\t\215\301\337\330\336" #"p\264\333D\364;@\231D\3060$_\366=rV\306\236\315\261)\256\17\37" #"\20\375\214\0034\30\225\260\313HcW" #"i\317\270\a\205J\241\b\276>\277\335" #"n\347`\314~\277\307O\177\372\n~" #"\366\263W\261\256\v\326u\305\203\a\17p~~\216i\232\261,\a\310$\3211" #"DiY\16x\354\306\243X\226\5\267n\335\302\321|\204R\304\336\335\276u\v" #"\357\274\3756NO\216\361\341\17}\310\1\34\204\347{\271Z\2461\337vO}" #"\300\32D\304\331A\b\"4n(\0302\240\254APNY\22\217d\200\226 " #"\312\335\371\311~*\221\213\251=l\23" #"\264\215]\342\21\250\3119\223*\254N\302\225\337S\37aU 6{M[\335" #"a\271nV\e\b\267\273\314\320\246\361" #"\214\246\310%\367A\357`\213U\254\312" #"\316\242\204\301 \254\275\302\306\344vb" #"\257:2C\251\250\202\2243\253\215\326\6oi!\331*\244\20\1)wp+" #"\272\241\205\23\277\256\25\363\254\347\\)" #"\253L*\245\31\350\32\31\"#k\25>I(U\"P\375zN\2\230\200\267" #"\225\362\336:*\213\206oIEe\344\272\307bb[\b\275U\av\ft\351" #"\2351\355\212L\v\25i\16\rp\223\2242\217\246\tU\35Y\311cRJ;" #"\0340\353p\b\326\177\263\361\256\3229" #"M\16\243'!\255\310gC\202\324\261al\354\3340*\366\312I:E3K" #"\251?:\211\24\312<\256\251\250#\2149'\364U&\r\331!\221\22]G\232" #"\312\306`\330\347yy\32V\30\30%*\200\260,\aLS\21\35P" #"-s\210ao\312\325\e\316\326\345\2060J\335\346,\201.\210\345\322" ) 500 ( #"\2204\353;\354\178>:\1\300x\344\221\253rou\34\244x\370#w\351" #"\350\350\bk]\361\336\373\357\343\e_" #"\377\257\310e\302c\217\335\300\265k\327" #"\0-\3\230\276\243\224e\306x\345Q" #"\22\17\31\27\217\262\244\225\217\354\373%" #"\373\223@\1\220f\217\256\310b\231\n" #"\320\214s@\et\322x\240\247\247\247\230w\342l\300\204\272,H\244s\3145" #"\212#\311,\374\373c\363\eCJW\211\254\253Y\32<@\326%=\22\255\177" #"\370\207\177\300\267\277\375m\\\277zM" #"\16\334\376\2\245\354\260\333\35\341\354\354" #"\f\265V\274\367\336{\350\312Ge\r" #"\334\355{\2705\315\212\341An\334G" #"\226\271\17\324Q\f\337\244S\311\252\"\331\221\263-FBHSYg\323\23\353" #"D\230\336\235+\\r\201Pc\254\\eF\274!\245\31\343%\321j\343\16\352" #"\35\320q\246f\364m\317\\F\316l\217\332s\216NE\326\200\365q(j\234" #"\345\232\255\31F\344\345\304\300\0\330d" #"\316\356\254\354\3630\272\372\223\242\257\4" #"-\337%Y_\347\261\er\23P\232\210\\u\r\4\355|\25]\267\244\201q" #"\311y\23x\305\240k\323,Z\262w\214\233C\350`Gq+\200B\204b\237" #"\e\236\241\331\232\350X\355\317\6%6" #"\357\254g\307\252\0\227\3;Xp\224\4]\352$R\206\231\b\25P\325\32\261" #"\257\306\243M)\341\356\275{`\356\336\250H)c\331/ \6v'\3078?" #"?\307W\277\372U<\373\354\263\370\227" #"\177\371\27\334\274\371\24\256]\273&\232" #"\243\211\221\252\5g\226\314X\22\243U" #"'\r\372\354\372\355~\32668\266\335\236[H\300#\2329nq\240\341\376\34" #"5a\211\353hg\257\265\256IS\27T)\0042\206\310Y\340\374\316" #";\357l\202\305\333\267o\343g?\373)\336|\363\3478\34\168??" ) 500 ( #"\307\27\276\360\5\\\273v\r\275\313\4" #"\274\337\373\275\337\303\225+W@Dx" #"\374\361\307\361\305/~\21\17\36<\300\356\350h\23l\306\227|\a\aYDy" #"\3174\25\245\365\215s\24\203\266\30\374" #"\22\244\342\22\351\b\233\363\3A\376\6" #"\325C\222\221b\334\302\244\324\301R\244" #"'\241w_C\377.\f\331\262\230x\324\376\260\312\0%FI\23v\363\316\317" #"\315\253\257\376\f?\371\311Oq\353\326" #"\373x\347\235\267\5\371?:\306\262\310ZZ#\255%N)%\\\\\\\300\364" #"\205K)\270\177\377.N\257\\\1\243" #"\341\336\375;\260\0\362\370\370\30w\357" #"\336\305c\217=\206e]0\355\346\215" #"B\204\355\215x\376\243\r\355\275\203\32" #"\274\327gs\337\227\367\252\6\212^u\353B\35\261\352\234P$2\326C\335<" #"\3\v`\343\336\265\346{(\310a\t" #"\252W#1h\37\246\344\324\270\241\320\345\275;\2026[;yf\32O\250l" #"\242\5\305\262\27d\370\17\240=\362\254" #"\264\227\234\221\b\240)c\255\213\307B" #"\240Q\305\"R\20\2457\2242C\270\271\362\31I\3170\205\312vN\31\215\e" #"zL\250\222(2\345$ D\357,\262\255\260\353\326\346g\326X\6\332\214\255" #"U\200\242vM\356M)d%)\315U\316\320\272\36\0\310D\\\356\244\265:" #"\t\342M\215\313\326X\344\t\25\365\201" #"U$\322\306\266\220:\e\16\317I\222" #"\270\311+\250\245\263 \2312\341L\232" #"\241\0\2+\252\232\362\204\224\30i\232" #"\300\200\376\242\310x\245<h\b\256e[\212\36\306\214\326\253|n2y\f\310" #"\"\2714\221mVV\200H\311\3316cY\205\220\213E7\224\220H\220S\e" #"\301h\a\274\265\206\3354\273\2434g\223\213f\0014\f\230\361'\355\377" #"\3550\257\353\352\6\225\271{\320\346\364\3\210c0\331\30\313N\4!\225" ) 500 ( #" \3278G\261\\j\16%eC\3442\366\347\27@'\\\277~\35\373\363\213" #"\341\224\364\305\314C\234Z\203\252\\\262" #"\360\226\1\374\344'?\5\21\341h\267" #"\223\314\317\207\16\f\335[ps\307!\r}\322\334\305\206\304\206C>\2341;" #"\355\3023X\22n\244g\330M\336\347NK\357\333\34\237m\300\303\341\200+W" #"\256\240\367\212\363\213\a\270w\357\36\36" #"\235\257\203H\34nJ\220F\22\323\346" #"K\2641\326`i\200X\233\360\310\211" #"\200D\326\331\333\334\301\354\367{\274\374" #"\362\313\330\355v8\177p\216\233\37\275" #"\211\317\374\362/a\236wx\354\261\307" #"0M\31G\273c\374\355\337\375W|\343o\376\26\257\277\366\32~\351\227~i" #"\203\260\0pD1\242\16\304\222\241\232" #"\321\262\265\22\rXI\332\6\305#m\326U\246\236)p\335+\250w\2442\215" #"\303\311,\372\226}\1Q\332\250z\b\252<\34B\f\16\222&[)\trb" #"{\304>\327\366\264\\\253\1\347c\312\216\ae\212$ \4m\245\310~\216\34" #"2\331\363\273M\2\20\23\305Xn\207" #"\226\17\215&\221\222!\211:\r\260\311" #"\240\23\31\252\0\335\v4P|\315\366" #"\275\1\20\242)\e\247\345A\327\200\273" #"I\370my\275\320\337\261\216\366\352\24\5\b=\301&\376uQi\260F\264\377" #"\26Zt\231\36\1\f\3316\333C\227\327\326\370\341\366r\307n{\313>C\257" #"\331$\270\342w\240w\\\271r\5gggx\363\365\327q\367\316}\34\35\37" #"\241\242\202;\343\300\213ha.\262\366" #"\257\277\376:\336x\343\r\364\3168=" #"=\306W\276\362\25\314\273\31\231\200F" #"\261\372\321\24\241[u\3172\230\245'" #"\202\230\221\247)L\201,\242\230\2h\377@s\31\264\336\207\215\264u\273" #"\34\324\1\241\371V\327\301\242JK" #"\364\374\216\231}\32\233\255\303/~\361" ) 500 ( #"\v\274\366\332\253n\23\376\350\217\376\310\21m\343\246^\\\\x\3PJ\t_" #"\373\332\327\360;\277\363;\370\330\307>" #"\206W^y\5\363<\343\335w\337\305" #"\262,\370\255\337\372-\234\237\237{\340" #".\301\200)\343<\234$Y\223\244\335" #"g\255\206\352\217\252\201\355\203X\201\213" #"\311\224%\275\321/y\202\313\22\2145" #"m\3465\231\264\234\205\322a\323\377r\22;x|r\202eY0\317\363\6T" #"h\255\341\370\370\30\3234\341\316\235;" #"\330\355f\244\234q\353\326-\334\277\177" #"_+\256+\356\335\271\2177^\177C$\261j\305\235;wPJ\301\311\311\21" #"\226\345\200\273w\357a\277\177\vO?" #"\375\2644\357\35\35\241\367\216G\37}" #"\324\307f\237\234\34\343\372\365\3538?" #"\277@)\31\3634\341\374p\300\255\333\357c7\357PJ\301\371\3719J)\270" #"w\367\36>z\363\243\302o\206\240\251" #"6<&\332+;\333\0215\225\252\217" #"\234\3338\330 \6\336\266\366f\273\243" #"\37\262\237\331\331[\16\2137\226\307\212" #"O\264\227\366\275S)hZ\331\315\20\235e\223\n\27\20489\340\307i\250I" #"E{h{\326\32\233\315\36\256\253J" #"\302\321\n\221\371\222j]\347\25\32\235\303*l\321v\0J\255I\223&Q\f" #"\206\5\271\330\254\345\250\274\351\32\204\363" #"\30\367\270\5\267\266\206\235U\26\326m" #"\272tFXu\301\366\0\21\241\243\2T\244\247\210F`*k$\317,\247I" #"\203};\342\214LB\231\32\n/\312\34`B\255\272'\31283\324EmA" #"\354\227J\340bPF\354}\363,\n`Q\257:\345\204\332;JF\306\322\27" #"$\202p\")\241\247\204\236\23Rg" #"T\252\342\f\25\251\225/\226\347\21\205\364'5\216\342\264d\352EF\6" #"j\223@\211%\230\225 \323\370\230\22\34\212ZB\307Z\e@M \352\6" ) 500 ( #"0\244\276\333\273qS\6\332*\210\377\330\264^2\346mI\323!}\336\312\202" #"\305\rd\a\303\f\207\35&9\210\326\2340H\372\26`1\213*\301@I\200" #"i\236]\330\332\16\5\21\341p8\b\32\273\256\270\361\370c8;;Co\35" #"\363\\prr\342|:w\f}\224(\5\302o\310i\302\262,\376\375v\375" #"S\2310\317;\0\243)\302\2e\0.M\5\356(et\272\332}\22me" #"P6\210\240\375=\211\312\6\251\256\235\320\a\206Nc<8f<\0\340\361\e" #"\217\343\370\350\bS\226\200T\22\212\5" #")1z\327\306\206\324\220-(\314\244\243\246m\r5a\340!G'}\274\360" #"k\221.\377\204+\247g\370\314g>" #"\203\217\277\360\234J\aU\337\23\r\300" #"\376\3769j\223\1\35\313\2628\207\333\3565\356\a){.\310\231\0M\6E" #"\336*\32\213\2\353\254\336\226\337\f\255" #"X\221\363\fA\203\272j;\2+\17*I\357\35\r\214\214\330\25<\312Zr" #"\260\267HX\322\373]\326\5S\236\324" #"\270\220s\204I\35\245t\222\357\364:\266r8\262.\0'\315\310\215FTY" #"9\212\34\326c\234\5\333\223\261\251(" #"\227i\360\262\222p\324s)\320\23\254" #"\250\3610\270\304b\17L\355\240\230\1" #"\f\211\3410\302y\343\370\34\201\357:" #"\221\n\330\234\347H+\310I\214\234\361" #"\3003\244j\305\232<s\32\215{\b\t\212=\207\370Lc\20*\211\326\226\343" #"\36\3\177sn\366\f\355s\0323\332\272bw$\\\331F:\2563\224\234#" #"w\317\202\271\303\341\200w\367\v\276\376" #"\215\257\343W\377\327_\225n\366\2341" #"\317;|\3463\237\301\37\377\361\37c" #"\236w\212\304\313\370\353{\367\356\341" #"\e\337\370\6~\355\327~\r\313\376|c[\306\367" #"\310\231n\215A\304\230\224\212\263A\260{\367\312\r\247" ) 500 ( #"\3442b\260g\255AV\344Z^\266!\361\2764{\23\e\246\317\273\266\206\242" #"\276\305\24\30\230\245z\365\372\353o\340\335w\337s\eeky_\25\30r\316" #"8;;\3033\317<\203R\nn\334\270\201g\237}\26'''\370\365_\377" #"u\374\345_\376%~\372\323\237\342\364" #"\364\f_\371\312o\342\372\365\353\220f" #"\237\344\377\235\2162j\375\0\364]V\f)]\262\305}$T\227\201\2C\177" #"[\e\266\365p8`\236g\a\202\214\313=\227\311\23;A\322d\357-\313\212" #"\303a\301\235;\367p\367\356m\5\227" #"\0\260\354\253;\267o\343\301\376\2\27" #"\17\316q\367\356\335\315\367\333\376=>" #":\306\322W,\a\261s\26l\254K\305\311\3611j]q\377\376\36D\35w" #"\357\36\220\322\r\274\360\302\v\370\360\207" #"\237\304\323O?\r\343\347Zpq|" #",\225\304\336\272\a\223\327\257\263Z1" #"\340\321\234\361\221\17?\351\343\223\247\234" #"u*\309\205\220\210\274\252\345\3769" #"\236u\365\317\336\324\227\263\312Xv\227" #"\337\263`\326\222\6\257\4N\223\340\240" #"\241\212\262\251\210\226\214V\325^\245-2\e\317\0323kb\247UJ\0310\240" #"6D\250\2\335\252\245\350@N^*\267\317\263$7VyF\334A\230\347\t" #"D\t\334\r\315g\364N\202\360g\0l\re\303n\306?\215\233\360^\233\1" #"E\26\366\214\240\317lXVM[\326\231\3\6\16X0\30\301\274\266\256\2\242" #"h \34\201\267\30W\0\332dK\2\264x\23`\260[\255A\253\313P\300j" #"\4\333\35\25N\31IR\311\266\340;\27\241\312\365&~\211kG\355@\316\222" #"\214\e\365\312@\322\207\23HQ\1770" #"\344\272\366&\224\260\326W\235N\323\244\243\22@\255\207Qv\321@!" #"\6\210=\1\324\6\00276_\21\316Wb\264U9K\312\215m\272" ) 500 ( #"\301\245\34k\201\2419\267\206\332D\326j*3Z_\1\312^\232l\275\371\4" #"\235X\346\270\34\30t\36\323|\374\320\220\20\263\17\373\275#\0Q\24::1" #"\373\357@(D/\221@(Yxav\264\207\6m\366\37374\273C\320\2" #"3\344f4\2544\367\340\376\5\246iB9*8\\\b\367.\21aVE\6" #"\206\b4\333\346M9\r\242x'\274\366\332kx\367\335wQ\312\204\363\363s" #"\234_<\300\321\361\221n\262\3J\316899\222ND\325\241k\32\260\f]" #"G@\246\252\f\364\331\3\nX\371M\351\24^\372J\232}1\246I\312\311\242" #"\350\240\277E\306S\2068\306\306\312\213" #"\325&\272i\366\306\2\373.)\343K" #"\247\251\220\350\v\232\36@!\355\2237" #"\211\355\312\16\260\201%\234@}\240\352" #"\317?\367\34^~\371e\274\370\351\177" #"\215\335t\344\215\0\0000\315;T\256" #"\370\310\315\247\220\377\361{8\337_\340" #"\260?8*\22\345\243l_\311\3777\244<\5JI\363\0\337\250\v\26\371\216" #"\3\36(1\234\374\263S\312 &T4$\356Hy\2\250;'\233xp\322" #"\244B\0\b}`p\37\347yVT\311&\313\351\241'yf\324\3058\212r" #"\1c\236\217\264\223\226\34\311\217h\a" #"Y\240\330C\231\236\273\326\273\f\301\227" #"\346\24A\360\215\246dg\307\370\252\343\334\31*Fm \230>aK\203\276\332" #"d\334*\221(\37lyUA\267\23" #"2\35\307\34\210\5\343\4\355\276\355\315" #"\203p;\327V\252\2252\30\371$'\333O\265V\364$\372\264\32;l\354I" #"Df\243\3\216F\374rC\226\331\237\350db\"i\373\335\212\373\353\272j9" #"Z\233%h\360C\343\357\357v;\\\277~\35S\331\341\342\342\34" #"\367\357\335\323\302V\322\317Y\360\211O\274\200\257|\345+8:\332\341" ) 500 ( #"\312\225+X\327\212\377\362_\376_\234" #"\237\237\343\307?\3761\276\370\205/\f" #";\252\1D\344\221\367nIWB\277\324M.\216B:\321\3430\213Z\205\"" #"\326\232L\275\34\272\335\2468\23G\345F\312\2308\363&_7\222\262i\362=" #"m\250\214\1''''x\360\340\201T\301\366{\\\271r\0057o\336\304\363" #"\317?\217\17}\350C899\301\325\253W\221\263\f\3260\373]U]\341\313" #"_\376\2626\235\3158\34\366\2562B\301\16Y\220\e\355\177\234\nf\353$\0" #"\203\350wC\223\24\351\27\231\am\206" #";r\236P\25\305\263\200\347\275\367\336" #"\303~\277Go\214\373\367\356b\177q" #"\201\326\32\336~\373m\0\204\375~\217" #"\245\311\210\365\224\b\247'\247\350\220f\273\363\363s0w,*\251v|t\204" #"\253W\257\342\335w\337\325}2\343pX\34,Y\327\25\367\357\337\3074M8" #"\254\v\36\334\277\217u]\261\233gm\222j899\305\23O\334\300\27\277\370" #"E\34\37\37\343\364\364D\317[\363\265" #"\217\24\247E\233\30\375|\205`U$\234:r*8\232\a\337\332\320o)\233" #"\353\371-\212\320\265\321(*@\2254" #"\305\332\220)fvT\221\231\321h\313\321\5\340\276M\206.Xi{\333\360\351" #"\347\224u\237&I\356\355\373-h\366\n\215V*M\217\336\22\353D\t\r\35" #"k\255\330\225\331m\312a\35\343\210\307~\32\376\204 ~\335J\350\4k\\e" #"\5lxH\231u\243@\252*\23W\r\370\222\a\232\26G\264\246\211&\217\351" #"\253v\357v\337\366\234RJ@\202>" #"\243\244\261\200\250\211H\363\245%\3\202" #"\344r\226&\305A\275\34\276\311b\35" #"\206\330!i\n\226\236%\227G\263\347\323\252X\361\16\344I\345`" #"\25tK\232<X\f\201\336C\2#6\204*\244\37,I\223\236$" ) 500 ( #"\345\325\23z\333\179\234S\"\225\241" #"\205\350\204wU\264(\244\206V\301S" #"\264:f\275;\252\247%\207\256\316\6\3341O\5\255\t\314mF>\321V\214" #"\336\276\334\16\211\a\204yH/\31j" #"\220\222F\375Z\326\266`\313\16\327\345\f0fl)\r\331\37\237\316\243h$" #"\365\216\365p\360\306\246\350\314\314x\r" #"\272\302\340\203\331\265\265*\e\3116\216" #"\3155_\226u\243#\332Zs\330\336\320\252h\354;3\262\6\317\247'\307\250" #"\313\212\371D\204\337\271V\224y\226\0" #"\231\331\3211C\257[\357\250u\301k" #"\257\275\206\327^{\35\267n\335\306~" #"\277\27c>\315\370\336\367\376\t\357\274" #"\3636\356\337\277\217y\232\361\331\317\376" #"\n>\375\351OA&8\r'\313<\326\21648\265gUk\225D\247*7" #")'mV\242\207\215\206:FP\r\331\233eZ=\334s\307n\236\221RF" #"\3163n\337\276\203\217|\344IA\266" #"\227E\312\317<t\357`\32\210\20\364\0316e\206er\324\332V\3149\203a" #"\23\207\200\373\367\357\342\312\2253|\372" #"\323\237\306'?\371I\2244\301\346\334" #"\347\244\215-\255\2\275\343\364\364\4\251" #"\213a~\367\275wp\355\3725\247\334\f\276\2264{Y\371\276\325\361s\2200" #"\271\5\241M\372\276!\247b/G\31Br\26K[)\27U\22\220W\343\16" #"Pv\215YY\356\fR\375j\333\233\226a[\320\220\22\213C%\341:31" #"\b\31&K#\306I\236\225q\316\"R;\234L\21e\221\336ezM\27\24" #"\271(*;()\200Q&z\aRR\235G@\370\257$\372\247#\320\37\310" #"\2579\rO\214\225\357)\316\307\f\346" #"\250\200\330\231\232\224\a\267\251\302\250Q\266f\221X=qd\205\310G" #"\217G\371\242\234\201L\252O\313\20" #"\273p)\310\266\365v\303\331\267\223\21" ) 500 ( #"\243\3751\347\22\221\314xVL\200\335\35\276\"*.\252O#\1\261k\260\317" #"<\34\16\310\251`]e\304f\236&LS\306~\201W\26\246\251\340c\37\373" #"\250;\270\223\223\23<\365\324S\370\336" #"\367\276\207\217<\365\224\333\\{\271\255" #"\16\316\323i%]\220ZJ\311\3\361)gp]a\212\f\245\24/_\346\254" #"\3%\252h\"OY\371u!Q\30\366\32\36\\Z_F\377\377\331z\323&" #"\313\216\343J\360\304r\357{/3+3kA\241\260\222\0\1\n 9\334$" #"P\323\243\346\210\224\265\272[\323&k" #"\261\365#\364\303Z6\326\323f\243\17\372\244m\2446k\243\330&j\aIA" #"\4\v @T\25P\v2+\267\227\357\336\210\360\371p\334#\342%\2302\31" #"\bT\345[\342Fx\270\237s\374\270+u@@\317\20\364\373\344\365\327_\303" #"\37\374\301\37\340\311\223'\2101\342\316" #"\235;\265\340\263\263\265\331l\266\366L" #"\353K\20\\^\256u-\265\267 F\335\a\241\"\255\226\230X\354\357\a\274X" #"3\321r\261D\210\1'g\2478:\376\24\353\363\vl\246\t\233\313K8M" #"T///qzr\212i3A\34pzv\306\341A\276\321\260\3430`\210" #"\3\316UN`I\326\311\311\tV\273;\270X_\340\362\362\22OON\220s" #"\306\345\345%vV+,\226K\304\0201\214\3\306\2011\365\363\237\377|-\36" #"\207!bo\357\32\226\313\245\312]v\353\363\3129c\271X`\\,\260^S" #"&g~\320\353\365\272\26\327\366l(ii\367\255!hZ\337\353\177o^\254" #"l\356\342z\263\331\212\222\3/\315\365\207\317G\275}A{J\0X,\26\365" #"9r@@\3\241\354\2310F\264sY\231W\241\225\\MN" #"sA\226\204!r\250\222\355\331\20\2\206\20\220\235\261-\2512" ) 500 ( #"AM\327/(\216\311\227\353\0\264\32\0034^\307\20\325\311FA\212\320&B" #"\332?{\344\23N\207`\231]\237\256\217\327ifl\226\vHy\202\17\261\372" #"\3207\231\22665\352k\233-\340\20(c$\203\323dT\375g\356\343\227\210" #"\331pYNE\240Bd\256w`\17L\344B\20\247N\257\323;\320\300\276Z" #"\354xO\2351\266{\23\32`\0\210" #"+\232{0\251\255\205\0\320\32\357\321\3301\273G\346\216Y2`4F_\321" #"\334\272\277\305f\36\0\bj\257Z\24" #"\231w\4\231\242A\324\274@L\v\351\220\241\342sp\364[\365\222\f\36(L" #"\364\354w-\341S\ru\275|\254\332\265\303\310\v.mU=\336\233\206\"\2" #"\340\24\2258\320\206\250d\242\212\375\357" #"[\22a\377n\e\314,\272\346\224\350" #"\234\20\332\305\24\324\363\260\270\355n\331" #"^\27t\225\266\267\303/\335\277\267\212" #"i\373\242\3P\223e\v\222(\205n\16]\20742\23\227\234\350\"0O3" #"n\34\36\326\206\5v\204GVX\"" #"\270{\367.\316\316\316q\367\375\367\361" #"\344\311#\224\2E-\34\206\201\266d" #"\27\27\27x\373\237\337\306\301\341\1n" #"\335\270\211\2343\256\37\36\242$\232f\euo\24\260}\306>\2717}M\236" #"\223\6\216R\307\352\366\e\327t\314D" #"\337\214\272\245^\264h\2271\363A\251" #"\233|\271Z!\4\217\315\346\2P\357" #"\276\315\264\356.=\201\241\205\26\230\352" #"hY\341\226\252\315\24\316\201#\0\v" #"\326\353K\374\351\237\3769>\374\360\27" #"\370\342\27\277\210\337\371\217\377\236\16\17" #"\"H\231\336\201P\335\222\271y\4\365\234\2356\ep\354!\e\24r6]q" #"\206\331\323P\233G\255Q\r\274\316" #"\320L\240\224\4\347\206z\271\2\255\362\276\352\0\300\340" #":\327K'AmS\240z5\0\275\355\217\212Ia~" ) 500 ( #"\210=\372\306\251X\271\256\265\250\326\331" #"\22\211\206r\3160\243q\e-\335\223" #"\262\26\b[\22\333\6\2440\350\240\356s&&j17+\245\244\310~\26\332" #"\24y=OE\203W\257\227\265@\325" #"\243\r\321S\347f\323\300j\345\322\375" #"\16\2451\315#\322\342F{\375\355\342\267\377q\272oRiT\246@\355\2142" #"\375\300\241&\34495*\324\342A\357\25[5\343\300\326s\3555~W\337\277" #"GCj\322\a\260\311\327\321\327\222\243" #"\322\255T\330\216K\245\260#~\\\f\2653\371\371;w\220\25p\b[\211u" #"\256{L\2445l]\333\333\303r1\342bM'\23\213\341=\245[Y\201\356" #"r\267\365\215\236\305\256\363\264\304\272\252" #"i\254\254L\320\211u\306\332uIJ\237\304p-zV\256Q\263\375so\205" #"DF)\1\373\373\a\330\335\335\255\361" #"\367\362\362\262\332^\231\314(\347\\'" #"\306\365\0224k\266\e\307\261J\37\216" #"\216\216`\210\371\275{\367pq\261F" #".\31i\236\261\273\273\v\323\263>}" #"\372\264j\177\317\316\316\260\231'\34\37" #"\37\303|Ws\316\330Y\256\352\331." #"E y\306b\261\254\2730\345\214\363\247O\1\0\213q\304\5\310b\234\257/" #"\340\340\260\273\263\203\203\353\207\270}\373" #"6\\\f\370\302k\257\341\340`\37\253\235],\27\v\34\36\36\324\2759(\345" #"mr\262\253l\3\223t:\233\330\335" #"\304\"\312i\334g\2030\373/\370\347" #"\266f\3753a\2\273]\274\233\203\3" #"\317U\204\215\301&\302\230\265\240\323\311" #"\215`L*b\275\e\2016\2109\3\226@\aW\e\324\255\20j\5\212\0356" #"e5\375\2665__\210\232\325b\353\324'\222h\337\277\336[]\322\24\35-" #"C\r\320\252\257#\333c\226\257\256q\375\273%o\305" #"\4\210T\326\263?\363N\223/2Wh\256\17&\\" ) 500 ( #"S\e\326\254\2038\234\247\237q\237(" #"\a\37\224\3355\266H\221p\241\255\26" #"\256\24\371\275W\270\25s\366\347FayO\331\3\34i\376\"\333\347N\0046" #"\31[\237y@NB \252\256\227\324" #"\3652\226\315\336\327\303\30\343\242\262\250" #"\2144)\343\335\0251\315\373\275\255m" #"\315\v\273\30\322\356\216\306&\366\240\206" #"\203\231\22\304\372\231\315#\337\5\346\27" #"\261\247\350\f\31\355\321\3269\317\r\361" #"\2)R\216J\344[\f\221\35\343RX\235\330\27/\277l\342\213H\255\344\354" #"AX\"I\255'u\230\222\212z\373\265\216r\223\6X\303\230\275f\37\264\315" #"\36'DN\273\241\f\200\331\222\17\275" #"\377\247\"=\3)\246\212:\251\266p\243\350\260\236{\r\222I+\237\0011\6" #"L\323\6!z\314\363\6\3030n\35\254m$C\203}*D\273|\300\365\353" #"\3271mf\214\v\2079\251uF`e:\245\31c\210\330\254g\274\375\366\217" #"\360\363\17\177\216\325j\205\315f\203\305" #"r\205\27^x\1\267o\337\302\375\373" #"\17\360\360\341c\214\v\242\e\257\276\362" #"\n\276\366\325\257\342\271\347\236\303z}" #"\316\312\26D\240\203\217\330\364\24Eh\rx\"\2_\34\6Eu\250\271t5" #"\351\354\3i\257\335\203(\375'v\250" #"\251\23\32\206\240\215bD\203\3620`\34G^\24\233\r\223P\327\22BK\244" #"\306q\201y\342\204\253\224\4!\262+" #"\325\v\324\30\236\225\343<'\370!b" #"\34\330\34uzz\212G\217\36\342\364" #"\344\24\a\373{\360! '\247\346\375\332\2606p_,\306\21\313\235\25.7" #"\e\16\352\b\244\345C\0\251\240\300\271\354\364j6a<0\f\vL\233M\r" #"\322\326=j\207\317\222E\243\225z\352{+I\267@\340\334V\241\a\240" #"\332\343\231\37+\237\223\rrivj=\352h\25n\223\243LZ\30\232" ) 500 ( #"|\201g\324\253?/\247\32jlFC\37j\3G\2274\364\227\34\21aK" #"\312\202&\271Z\265\227vA\364S\361" #"\254\b\355\327\243\277,\0\350\371\324 " #",\333hH\215\35\2\235w\337\306\245" #"FC\352\313g\v\316\276\21$\233\216\326\23\321\26\311@&e\b\b\\\340\245" #"E\224\246Q\251=Jk\337\345*KU\203z\207\276\3245+\302\275\222\2615" #"\236z\3336\260\336Q\365=\256J\36" #"\234s\270\2708\a\234\340\332\336\16\276" #"\374\225/cN\3156\256]\370|\346{{{\370\263?\373s<|\370\20\316" #"9<\377\302\v8_\257\371\31\212\264" #"s\324\241=\346\254\1G\231\202\305\356" #"Rl\376<\343\222\351\23\371nm\330" #"\17?\253N\n\324\317<\233l\313\356" #"\225\340\241\206\317\260\301 m\30\2o" #"\337\236i\262q\340\266\236\245d,\26\213\372\236gggx\374\370q}V\247" #"\247\247\370\360\303\17\361\360\341C\204\20" #"\224\352\347\371\260\270e@\310f\263\251" #"\357e\26\224;\313\0256\323\204\\\n]\26 5\331g\322\307D}\34\a\\" #"\234\237c\232'e0\25\314\211\4s\306a\300\301\255\eX,WX-F\214" #"\343\2\313\235\35,\227+\334\272u\23" #"\313\325\n\233\313K,\227K\306\242\345" #"\262\242\255\233\315\6\263z\364\222\35d" #"\22\322dJ\36sNl\216U\271\34\343\203%g\266\367yV\251\217\24\230\223" #"\n\321je\b\225\376\265b\325\326\303" #"\316\237\255\373V\363\255\347\231\241)?" #"\213\263\30-_\210X,\306\272V1*P4M\210\252C.\"\20\2574\275" #"\356\v\26S\16>:\244\231w@J\363\326\271\352A\261\317\376h\323\272Hw" #"\266X0\323\217\267\e:\240\361\3\302B\316\345\216\231\21Q\37\365v\266" #"-\311\272z\316\371^A\345^l\322B\320\4\fMV\4the\21" ) 500 ( #"\24d\215_l\322\217\242wo\244o7@g\230>w`\34J\20\330\360\e" #"\321$\222\311c\357d\322\3135*kve\335hEI;K\373\35\321\t]" #"\6T1'\340\334\200i\2325>j^\243\236\306\366>Y\32758Wm:" #"c \372-.\353\35d@a\217\314j\236\341\"|0\307\37\17\310\266\216\277" #"/hZ\354\365p\16]l\320{'\204*\245\5P'M\232\17x\354\233\271" #"~\231\27e\257\347jA\330\3\340,f\21\365h\273\262\21=<\302\320F\267" #"\232\b<\f\241UUJS\214\213\5\274#\375\3'pQ\232\334\224j\0\0" #" \0IDAT\265+\335\347\260\313\307h3\373\351\221Y\273L\246y\302b" #"\261\340!\250\t\3\341\370>y\313\363" #"\274\265\241g\24\204\322.\31h`\237" #"\347\31\367\356}\214w\336y\a1\6\354\356\354B\0|\371\313oboo\247" #"jQ\352\341\275\242m\1\200\223\247'x\364\360! \f&\a\207\a8==" #"\305z\332 \v\315\242\255p(E0" #"\214\36\253\325\222\243`c\304\233o\276" #"\201\e7n\340\231gnc\177\177\17\377\363\177~\37\217\37?\306<\317x\361" #"\305\27\360\225/\177\t\207\207\207\330l" #"\326\35\315 \30\206P\2078\344\354j\365d\1d\30\6\n\302;\3152\377\274" #"\243<\272\v\337\aN&\21\227!\230\21\34\375\vE\253U\323\374\360:l\215" #"\0034f\17\212\6l\266\252\363\30I\27\16#\321\1t\0033\372\313\271(\302" #"\350\235Cv\300\301\301\1\226\313\5NOOqr~\216\303\e\207\f&\252\367" #"*\231\201\225E\30\260\330[a1.\261\331\\\342\364\364\4\"\317\361\31+u" #"\354\207\210\371\362\22\336\17x\372\364\f\213\305\2\233\315\204\224N" #"\331<(\5\313\245u\244ky\f6\325\331z\366\311m\377\263" ) 500 ( #"Q\346\243\350\2636I\6\vH\246^}\302d\373\317<\3y\16(g\240\316" #"\335\320d\363F\25\r,\212\206\267\332" #"\273\242\n\20\255\322\355\374\350\221\355?" #"/i\244\346\177\312`S\364u)\327\350\365u^\221Y\247\377\336;!\364h" #"v\245!\215\331\261X#\206\22p\f\256I\30\252\346L_\323\1\265\251\314y" #"\217\234>;\235\310\201\5\216\255%/1\250\4\206:\330\344P/\213hLQ" #"g\363\303\357EI\226\355\321~\26|" #"\177\246\321\275O\213E\252\355K\354\272" #"\17\35\216n\346\356\245\24v\374{C\224\nR\312[\301[\204R\225\335\335=" #"\\\333\277\206\337\374\315\337\304\336\336^" #"cT\320\222\355a\30\360\360\341C\374\361\37\377q}&\313\345\22_x\365U" #"2\24:n\326a\250\322\e\2\a4\2577\a\213\240\227\5QcM`\203\207" #"\244D\326G\327?\245T\21sChu.Sue\20Q7\5\221:\366\324" #"\325\242\240\311B\32B\323\344l\3438" #"\360Y\245\214\234\23\216\217\217\361\360\341" #"C<x\360\0\237|\362\tNOO\353\376\204&\343\373\212|\2\3004mp" #"\251\t\245\25r}\302h\373\317\t\237\325\331\331)\316/.\260\263Za}q" #"\16\347|\265\215z\366\331g\21c\304" #"r\271\3040F|\341\325/\340\340\372" #"\1n\336\272\205k\273\273p\216\250(" #"\0\366Xh\302S\237\245\20\341.\312\32.\27\213\32+.T\247k\227r\316" #"\31\331)Z\250\205\305\240\16%>\68\361uL3\23\221MMv\235\22\"" #"\2454\344\353jq\331K4Z\"\265\315\214XQ\300\270\334l9\213\"\262N" #"H\re\350\360\243\20Q\204\303\30\266(wl;\2230I\316u\244o)\202" #"q\34P\262 \315Yc\334\266'\2719\246\364" #"\347\313\326\325{\17I\271N\320+\340\327\340T" ) 500 ( #"P\372\252z\235\220g\254d\3646h" #"\244\235\303\232\34\346&a\264\242\327\362" #"\37cJ\3464\353\347G\375<\3169xxdd\326r\205\315\240\206\314\362{" #"0\216\16\3328\6\337F\312{\3471\353`\n\357\34\20\266\255\n{\246\31\"" #"\2247Xl\225\306&5\351\335\366\220" #"\34\347\\\a^\352\364\277\255\244\226\317" #"F\212\351\2409\265N3=\265\276\344\276\vC\373,!\204:\362\273\350Y\17" #"\301!%@\247\23)\362\r\210zP\367\337\311\\4\350Z\244\357\347\266%u" #"\275\344\307+X\1\330]TZ>\322\345\1775&\306\250\240\200\207\344\202X4" #"A\261J\256\247\363-\23\267\377f(\\/|\266\312\263?<\226\225\227T " #"J\37\333\a-sC\265\4\202\3050r\334o\311JG\251\237Z0\203\353V" #"Mm\243\200m\212\214]D\366\367\314r*\4\216\222\f\336!Ms\375\16\226" #"\b\32\375U\233k\0VW\276\215Wt\bx\367\335\273\370\233\37\376m\245\315" #"\346y\206w\300\243G\17\361\237\376\323" #"\177\0\260]\r\367\225\350<\315\370\307" #"\177\374g\374\354gw1o&\3143\355/\26\313\205\"\317\1\233\215!\310\372" #"\235\35u;\377\341?\3766\276\371\253\337\200\17\36\a\a\aX\255Vun\373" #"\376\376\1\262\35\316\304\361\274\274\234S" #"\247\301s\230u\0042\327\221\224x\261d^\23\224Y+\357R\22T:T\321" #"i;8u\315\235\243\23\206p\212^\364\1%\315\304\342\213%\35\333\215;S" #"\232\365\342\340\324\31K\250\355\3204\324" #"\177[\17\304@\323\6E\270\300\352w\236fl\324}\302\306'B\224ns-" #"\240\213k4\254\v\1\313\305\262\216\261" #"\346\347\353\232\31A=\345\275\217" #"\36\340\357\377\376\357p\377\376\203jLOy\316\210" #"\203\203}|\367\273\337\301\347?\3779\225\220\fz" ) 500 ( #"P\vD|\267\317;g\3\v\230\232\24X\3\301\20[c\331\30bM\16{" #"\212\316\220$&\372=*\352\365}\233" #"\356}\30\266\251r\0005\31b\23\231" #"\337z&\336\271\352\217\335\237/\333;" #"R\266\vH^z\366\252\r\305g\254\230\353\236\261\30\335S~\275f\267G\272" #"\257V\354\26\324\372\377fA\326\276\220!&M[\247\311\266cR\34\\+8" #"\215\2\23PkO<\304\251\246\317\2239\350\2%\237\31\355\342L[k\216\27" #"=\22\321'\361\266W\373\357\222\245\25" #"\351\2454\200\240O\2Z!\303\313\307" #"\336\243\247\20\1\340\225W^\301\313/" #"\277\314\213V\e\204\274\206{t\317\377" #"o\376\346oj\a\376z\275\306\367\276\367=,\227\244\320\223\"z18Z\1" #"\211\300t\271=\352e\347h\316\211Z" #"x\307\2,\351\271\267!\3\226\212\220" #"\276D-D\235s\265y\271\200\362\34\26$\34W:\353\245\26t\237\f\303\200" #"\345r\211\365z\215\223\223\23<}\372\24O\237>\305\335\273wqqq\216R" #"\4\27\27\27U\307\n\0\313\345\22\253" #"\325\n\27\27\347H\323\214\351\362\22s" #"J\270\\\257\341\207\200\375\375}\274\370" #"\342\213\20\221\332$\266\277\277\217\235\235" #"\35\230\376~oo\17;;;X,\26U\346\260\331l\260\267\273K\212[\n" #"\302\270\300B\21\337\345r\251\237\203h" #"w\260\206\251\334\246?\31\23b,B\b\241u\337w\317\275GO\373\375c\373" #"\335\356\265:\360\305\221\25\260\342\23\216" #"C\4\6\37;;\3026\275\312^\307\336\253\337K\375s2\24\230{\16\265\260" #"\262\304n\261X\264\337\367\224\371\24q" #"\20\24\270\242\3\234\352F0vE\266\342\f\277\37\e\216\212\2\20v/:g" #"=?\326@j`J;/R\264\321\314\327\260\263" #"\365#64\250\3603V\375\251sH\322@\260R\n" ) 500 ( #"\274lK\314\372X\303\2427T\260'\206\240}1\2558*E\345\225Y\252\223" #"A\177~\fL\360\201\361\312k\214\315%\267\ty\372\303\311y\312~\30jn" #"\275\30\271px\227\201;\26\263\235\257" #"\205b\317\310\220\237o\340H+^\266%A\0005\326,\200Z\222k{O\\" #"\27\313\272|!g\363\266UF\2474" #"\266\315\232Paw\26\320\331\222\211\21" #"\240\265\270\355u\370\375P(\216\237\216" #"h\23\n\233\307qo\271\331\330\207\216\1\323iw\375\2367\6A\337\0341\4" #"D(d\337WxD98\260A\nT$\275m#\346=m5\\\326L\32" #"\5P19\341\0\2171F\255\4h\221c\311\234%\225A\27&\271\0I\352" #"\337\6\"q\242~\202\0\r\203\223X\27f\353\374\356\37\224-\250=d\ee" #"\310\340\234\260X\230~\251m\222>\300" #"\20A\2301\f#\234>\214i\232\360" #"\321/\36\340\355\267\337\306\311\323c\34" #"\34\34\340\316\263\267Qr\301\375\a\367qt\364)NO\317qm\177\27\326\214" #"\306nBZu\210\0\177\365\27\377\3\367\37<@.\5\313q\304\356\341>\216" #"\236\36W\1\365\371\37196\233\rV\253%}\211\235\a|V\313\35\207gn" #"?S\277\247\255!\0\34\34\\C\b\332d\346\254\223\232h\362f\242\277f\21" #":ip\335Z\223R\rF\245tzQ\201\3636\22\226\335\2301\2327\254\327" #"\351R\26\200\255\1/\301\201\24\216\255\241s\242\25\264zu&6\al\326\e" #"l./\231@(\200\330_\356@\353\200Ms\326B'\301!\242\310\f\247\b" #"\246xWi\376\323\2633\312\22\364\271" #"\223\212\\\327\4\305{\216\265Ed\203" #"A)\300\263\317\336\306G\37|\210\323\323sxo\250\35\340|\300" #"\274>\307{\357\377\34\357\275\367>vvv\324\302\210t\275\367\21" ) 500 ( #"\17\37>\304\a\37|\210\27_|\t\320\6\2158\fH9UINO\325[" #"afkN\32\336\303\201U\246\223v" #"\271\365T\260\375\220\22\16\265\32.\245" #"\5\215z\320\265\30\310\277\344\260S\3k\27\334vRSDQ\270\16\321,:" #"\302\321i1\323\177\37\276\256I5\354" #"\371\361\277\331\353\233v\315\264\305\225\311" #"\351\222Wc\21z\375[\225zt\237" #"\335\366<c\221\202\320W\212\207\306>" #"\350\224(\17\0n\313\26\307Y\24\a" #"\v\206\0\207\2\307i{\316\350\315\274" #"\365Y\270\347\233\274\240\350En\353\336" #"\243A\266\367\266d(\245\300\314t\372\4x;\351 \322\223J\322\6]\2350" #"\324\25\1\275Gs_<\305\30\341E" #"*\242\222Rb\327\376\304\316\373\267\336" #"z\v\257\275\366\32\31\263\224jA\233" #"\263\242B\352\335\2715\251\n,\362\r" #"5\237!(3\255\250\340\34\212s\352" #"\232\243\264\"8\274\322\372\0\372\276\t" #"[w\223D\204\340\260Z.\261\202\303" #"\275\373\367\360\364\344\24\367\356\335\303\351" #"\351)Y\255\365\32ggg888@\316\326\365O\257\365\263\263\263\32\363\26" #"\213\5\366\17\16\260\277w\r\267\337x" #"\23/\277\364\22\226\213\5\\\360\364\353" #"F\263\250\263X\322\263RY\22\202\v" #"\365\302\254\250\27\200\275\2337\341D\324" #"\227\\\260\336l\252\213\203\365\260p\357GHnH&\344\212dOQ\300\236\t" #"\260\246H+\4\ra\254\305\5\266\23^\213\35A\345l\222\210\244Z!\352|" #"\2238\361\334JMr\355\0362\227\214" #"\355x\22\352\373\327\221\361\352\341\333~" #"\\m\366cA\3541\247\31Q\245\0\36\332\310-6\f\307b\2015\3216\266" #"\260/\334\206\221>\374-\306\21\fk,\6\317\232\355/\355\303eL(-" #"a\263\34\245gq\214=p\316QK\334\1n\226\263\2449U\6\272\242\201p" ) 500 ( #"\314YtM\315}\306\2226\e\346\341\304$;\16>\266\330^\223h\265I\345" #"\324XQ\6J\1\6\327\261\30\226\374" #";\337\355\315\2\210\26\343\242\r\277\2" #"\370\241I6\2344\351e\37/\275\367\252\261%k`\26\241}!n\357!\22" #"\30\223\214\301\351\326\210\317D\364\221h" #"o\210\356w\210\331\251A\1\207\6x\31+Y\231\257\234+hYA\23\347!" #"\236\205@\316\31\213q\244\264Q\350\331\356}\200\vv\2474M\177VW/C" #"\234\1+\212\364\336\255.\31}\263x\3G\34\200 \36\320\6\331\310=^\252" #"\316\224\t\23sU\347\35\2469!\6&p\2467\253#\0003\235\26B\320\316" #"\346\242\346\311>\";5a\327\205\272\32t\b_\3.D*\346T\203\2t" #"\223c\274\203+\334@c\34\220J\206" #"\rl\250\272Z\357\253\255\212u\342\222Jb\346\357u\32\23\221\31==h\325" #"\236U\b\245\220r\27)\32d\271Y" #"\336\376\321?\343\341\303\207\270y\363&" #"\276\360\352+\370\346\257~\23Y/\247\a\17\36`\\\20\335\206Z,9\3478" #"O\336{\374\375\337\376->\272\367\21" #"\34\2\356\334\271\215\257~\355\253\270\363" #"\334s\370\370\343\a\370\363?\373K\352" #"\215\343\200\307\217\237\340\346\255[\20\260" #"A\n\232\224\324*O\332\230CK\36" #"vV4\16\217\253]\304\201\246\356\326" #"\235.\245 O\t\342\267\23\2\242\367" #"\274\210cT\255\361<\3\316k@\361\330\314\e\325\263u\302p\257~}\232M" #"\264\4d\273\341\312\241@YJ\304h" #"\376|\36)\317\330\244M\365a\206\373\2549\277=K^>\203N\310K\240\b" #"\177\254\305\224\35\240a`\ar\221\202" #"\233\317\334\302\301\365CL\233u=\304\2006\322\0\220$\220\350Q\346" #"\31q\240\350\237v6\202~\264\355" #"\301\376!b \355\373\374\363\317\343\340" ) 500 ( #"\340\0;;;\0<~\362\223\237`" #"\232\326X\257\327\32\330\325\367\267H\245" #"\363\256&\354}\362ik\346\205\26\334" #"f\316\355\34\235N\372u\2603\302\244" #"\220\227c{\255\246\207\356\21\367>\371" #"\362! j\300\261\357X\312g=Z\255X5OE23\200u\372Z\243\230" #"\rh\341\231\353\307f:\314s\253\326\333y2)\305g\365f5\251\355\22K" #"\373n\246\275\265K\271\241&\255[\2776Dv\315b}\322\\J\223\340\330\332" #"\333k\25\0)\vlB\eG\207\233N\17:3\335ibkk%\ba\374" #"\fk\3247\316\330w\250C-\234\324\306\305\355\271\365MO\354\375P\es)" #"\373\320A6\336#\351\367\263\342\321~\307\276\257%!!F$}vo\275\365" #"\26\0\340\3157\337\304\233o\276\211K" #"\265S\254\311\23\27\220ze\200.\e" #"\271\rk\240\305]K\376\274\363\330\270" #"\202\31541\251\365\315\245F4\221r\32\217,1\262g\335;\31<}\372\24" #"\367\36>\306\333o\277\215'O\236`" #"\232&L9!\347\204\345r\205\335\335" #"\335\372w\357\335\273\217\325j\211\333\267" #"o\343\340\200\rh_\373\3327p\375\372u\354\357sp\306\250~\251y\232\341" #"@\327\6:\355\24\3449U$\336\316\217\355-\376\223\243QM\372a\275\36V" #"\300\217\272\247JV\267\tgn\3\206" #"\306\265\344\nE5\357\202\212t\243\333s\266/,)p\372,\371ZMr\322" #"\27~}\2346\244\331{\17\27\351\aj\353k\32]\357\34R\241l\316zJ" #"b\210j\311\344\267\3720\354\376\230\347" #"i\313\1\6\216\340J\201\261\22\364\210" #"\255Z\375\340\21\244\ro\21\265*\3143i\344\36\305t\35*\330\367+\224\"" #"\25\325\354\31/\37l,\3706\233aM\252\244\277" #"\v\342\30+\253\323\356$\6AJhh\275\351\355" ) 500 ( #".\362~\vE\257\332W\264fx\347\370\277\5\333\36\360F\363\327\204X<\20" #"\234\16\366h\354\257\235-kB,\332" #"\260\313|\221\377\aO\220\3114\356}" #"\222^\223d\27*\300e'\265\336\177\20\330\24\323\376N\2603X\31i)\360" #"\235t\244GN\331d\27 \5l\306\357\342m\215\2350yMK\334E\377{" #"\333\313M.U\357\266b\366\242m>" #"\201\340\263\23Wm\302#\327\274\365\212" #"T;14\215\260\230\252\316S\274\252\3123h[:\254w\267t};\305Q" #"-a\226\270P4_\0\315?\0051\16\36R\272\352\3019\304H\23\361\254\32" #"!\357i\25\"\322\32Wx\1\331\207\311\230K\252\272\v\27=\202\224jO\5" #"l7\322\344\234\261X\214\230\205\231;" #"<]\1r\241\345O\255\200\341\340\243\372\336J\273\314,\241\265Ko\34GZ" #"\361\204P\273H\371=\6\3444\303\25" #"\201\217\21\5\34ql\232\252\366Z\276" #"\212\367E\247\340\244\234p\367g\357\343\341'\217!\"X.G|\375\233_\305" #"\260\b\220M\306\316\316\no\276\371F" #"\355j\264\321\230\363L\232\376\203\367>" #"\300?\377\323\217\261Z\256p\343\306\r" #"|\353\177\377\26\16\17\256!\214\21A" #"]\23\316\316\316q\375\306\r\272B\244" #"\231\324\230/\360\302$\252Q\330M\22" #"\301\r\0361\304\201\32\336\310\346\216\345" #"r\311\252\20D\320\231\341\365\224\254N" #"\352\202\250\206\225\210\236\357\16\223s6" #"\266\230;N\n\223\201\236\352\361\256]\"DX{\203x\17QJ=\4v\220" #"\272\2,\207%6q\256\303.\234o\a\27zx\332\204\245\2)\334O\3548" #"%\372D:\250IS\330\321\231\253\27\356b1B\\\243\207Y\3440\251\6(" #"{(^'mM\23\234^\16\233MR\213\274\200" #"i\232\361\353\277\376\353\370\366\267\277]\0174\0|\362" ) 500 ( #"\311#\334\275{\0271\216u\2340\265ss\325_\365\27\233%\201=\335\335?" #"G\17W\203op\36.n\323\361V\265z\37j\262d\335\361\374nM6\320" #"\377\330\2322\211.\365r\270J\227\366" #"\301\260\2273\364\315ciN:\275\313\222\30\0pHI\247\235\345\317&\224\f" #"\310\264\35\263}\267\235\0o\353\377m" #"Mj\222\337\275^C\34\f\21\315\360\276%\226=:j?\275\204\240\25\16\364" #"\"\325\32\1\342\211hz\264};\6\245\315\324i\243uU7Z\267G\207\372" #"\365\23i\236\332MJ\243\376\333\316u" #"g\213\2102\351\271\256I\6\274\250\247" #"\234\341u\r\372d\310.U\213y}" #"\241\220\346\271\256\331\363\317?\217\337\377" #"\375\337\307<\317\25\211\354/G\357}" #"\325\300\301\366\202\236\25\"WL\324\210" #"\200\23}\212!p*\245\256s\354\206\36\4E\220D\4\237~\372)\eMS" #"\302z\275\306\207\37~\210\263\323S\234" #"\234\235\341b\275\206\210`wg\a\331" #"\25\244\234\260\331l`\326\207\273\273;" #"x\375\365\327\360\342\213/a\271\\\340" #"\360\360\20\273\273\273\b\201\276\271\336\373" #"j\361UD\260^\2571h\374\236\22ef2%\304\320\250\353m\266\2439M" #"Tk\275.\241\364\336W\327\rk\236C\227\254:\257\373a \262\346\364l\365" #"r0\21N9\223\302I\224m\257\227" #"\226\4\351\262\262\340\244>\325\342^\177" #"\36\372\275\314\317*j\341\264\355\30\4" #"\1\212g\323\225\240\25yEi\374\376" #"|\264\204\263\363\2626\215\273p\304\353" #"\224\232&\277\327E:\264\363]\4U\232aI}C\242\315\247=m\305\226\312" #"\272\b \256\e\31\356m`\307v\214\f:n\326{2\2736\201\254\202+\316" #",\257\264\21\rD\365JQ\24[\367\260%c\26\213" #"}\b\325\223\333\3261C\20}d\261\253Ij\34\6" ) 500 ( #"\242\230\306\330\344\214\30\206\212\334\333\231" #"oI\2561^:\304\310y\314y\302\340\"\334\225{!wEx+\364\233W" #"/D\301-\20D\204S\324\337w\343" #"\314\273\30\355\234S\31\3046\262\336\263a(@\34\3250@\200lS\303J\351" #">\273\n\272Dj\3342\244\267\168qlp\316e\252\377nq\351\252\234\254" #"\337C\266\17x\277D\314Sb!\26\32` \242\203\266,\207\20\336yI\213" #"I\37[O\6\343/cG\375|\372,\371^\215ys\276\223\235\20\246\337\26" #"\250Ss\302\212k\236&$\a,\324|\267\bmo\246i\326\277\257&\361\311" #"\32F\24B\357\22 \17\247U7Q\254\20=\326\353K\214#\223\263$\2d" #"J\36\212\3\6\255(\353\fo\0215!o\e\270\247|D\4\213\305\242R\26" #"v0s.\230sA\254\20\270\337\272(\0;x\355\"\367\201\315l\353\363K" #"\374\374\347\37\3009\207;w\356\340\255" #"\267~M\3\0037\24}\a\225\"\315" #"\315\25\225\311\205\307O\377\365]\275\30" #"\27x\345\325Wq\373\316m\355(\245" #"A\372\371\3059\256\355\357c\265Z\341" #"\231g\236\321\215\310\n\17\271\0\203\257" #"\35\225\26\f\355\36098\214\213\221\322" #"\21\21\346r`\323\335<'\24\307n" #"|\357\232\226\223\364n\206\24\207\2\r" #"\310h\332\36\2766\237\245w:\0064e\4[;q\310\23;\325a\225\227\306" #"ek@\2(\2\257H\34\24\311(\5\271d<z\364H\327\260\324\352\320\236" #"\241uYK\321\v\vD\21]\218\247\364\223Z\216\331\201\\\250/\3448\362" #"\31\316\305#:\217\340\35/(\365Rt\212\2229\35\345\e\342\200\243\247Gz" #"P\6\30\35c\27O]g\347\360\336{\357\343\373\337\377k<~" #"\374\30\3438\342\e\337\370f\225\31\4\327\252\334\36u\263\3\336;+" ) 500 ( #"\324\313P\330\244\344\365@\243\360\337i" #"\224.\260q\244\26\230\fE2\372\306\16\263}\276\376\363\206\300&\b&sL" #"\240\230\263\3308\341\26\f\373\357h\237" #"\321\34M\30\274\4Q\251\375\334i\255" #"Z\342d\35\362\333\t \320\264\305\366" #"\271\3552\vj]\a\235k\376\313\264e\226\320\231\36\255\r\222p(e\336j" #"\364\334\16\354\271\16\300\260\265\344\373\362" #"\\\t<G\341\n\324\377\22\0\2\242" #"\17\264\240\362\1D\242{=\335\266\375" #"\225\5\377\36}Oi\273\371\224\232r" #"\243\363\266\255\212X\v[\362\313B\314\n\263Au\201AQ\fv\267o\243#" #"\276\323i;\347\332\332\210T\244\307^\317>o\337\bh\377\215\23736\35q" #"V\317\314R\260Z\255\352\371M\233\r\304{<y\362\4\237>y\202\323\3233" #"\234_\\\340\342\374\34\237|\3621\346" #"\211Z\316\224\346\232\250\354\355\355\341\351" #"\361S x\\\277~\35\347\347\347u" #"z\332\265\375}|\353\327\336\302r\265" #"\302K/\275\214\305b\254\373\307\316\215" #"I\306,\221\200\320R\321\201\311\36\e" #"\342\240\211\255\207(\30Rt\203K!j\325?\263\276\2506w\237\234[\323\\" #"\377\\\253\314\243\224F\201{\312\250\0" #"\232\355\323\31\241\250\276\233g4K\"" #"\332\\\237\201R\373\n\330\264-\313f" #"\245y\316`\323n\v\244\315\305\"\350" #"\367p@q\310:\32v\v\205\323\317\3078Ld\267~W0!\365\35\222f" #"?\26\233\242\351\346\v\231\327\36\5\264\3638M]\357\210Y\24*\315n?\\" #"\a\207\260\30\253\a\277%:D\214\311" #"\304d\347UX\236[\221\fT\235\247\346\334hu\206\207 \21\351L\26+x" #">\2635\344u\337\313\206\242\364\240" #"\203\25\322,b\332y\262\365\213>\330\22\3Zh\272\"" #"U\243j\373\307\254\301Z\302g\310>\224\31\342\347v`" ) 500 ( #"\303t\210\3J\21$\265\340\f\32\313\235\343P\26\37\314B\255Y+z\357\264" #"\32\320\206\333\340\20\234\215:\346}\276" #"}_\26\30\200hwb\277\36|\206\1\16\1Y\22P\2\357\eE\273\255\30" #"\200\356>cFL\306j\240_q\215E\5\4C\34\325E\5Hj\321\31|" #"\304\fN\270t\335\373C\343\213y\355" #"\346D\360\323\17\276\3461\250\n\211m" #"v\327\212\0\333Kc\214\352\6\223\266" #"\300\207P\357\t\215\301rE\17\255r" #"\327\350\324\215\300\304\317v0&\311\b%\"\252^\252\312\24\274UjuIu" #"\341\241:\305\2\357:4G\200\315fVk\23\1\234\257(V*\234\224\22\212" #"T\361}\320/d4%\300Q\211\263$\335,\333\225dO\t\227R0g\245" #"\33249\f>@\324b\245\344\251\311\"\244\257\310:\332$\4\224,8==" #"\307\247\237\322oq\271\\\342\205\27^\4|\363\e\344\345F\21u_\1\t\200" #"\217~q\17\367\357\337\207s\16\257\275" #"\376\5\274\366+\257\301\222\224\20\2\246" #"\315\6S\232j\263\310b\271T\252E\253v\357a\240AP\261\266W\32\304{" #"\217\f`g\265\322\244Z\2507\364\1" #"Y\215\260\207\350\24!n\235\314\f\270" #"\315\244]\256\330\264\265\v\325.\3@ \230S\1\244 \204\2616\211S^\321" #"6\262\5\226\236F\347[z\210p,\3374MX\255V\224\26\300A\212\276\206" #"sZ\310$\fC\320 @\e6v\242\23\t\253\27a\351=o\333>\30\206" #"A\17\221^B\336\222\5_\5\364D\240h\217g\277[\351oE@m\177\331" #"\337\177\370\360!\356\337\277\217\275\275=" #"l6\e\374\305_\374\177\370\267\277\361op\375\346M$-\366\256^$!\320" #"_\232I@k\32\253\301\37\0\\Q\3o\353" #"\260\267\21\314W\223\"[&kr0-\234\203" ) 500 ( #"QmCl\3323\242\365\264v144\245\244\276\255\255\302\255A\256{\216\336" #"S\330O=\36\223EC\224K\307\2424\352\263~\355N\213\334\22j\356+W" #"\253\354\352\240\1\1Lw\253\347\242y\221Z\343Y{f=\nbU\374U\252" #"\227\26Z\36\316\227\232\200\333\2375\311" #"A\356\236\205\0\216N\30.\4da\317\200\305-\16\fi{\332~\317\22\263" #"\206R(\"\342\332\32\332\264\242\376w" #"\354\22\16a\250\362+C\300\e\262\242]\363z\203RZd\2724R\312\266\227" #"{\n1h\202We\n\226\2409\207\325j\205\30#\326\3535\26\213\5\316\316" #"\316pqq\201'O\236\360\273\351\232" #"\346\304&Y\323\313\236\234\234`N\t" #"\353\315\6\203\17\30\306\5\212\24L\227" #"\227p\201\323\271(\233\340\36<;;" #"\253\276\336\313\325\n\a\a\a\270~\375:~\365W\177\25w\236{\0161F\304" #"\20\252$@D\252\274\302\316\220\311\16" #",\276\326\357\251\366h\360\236\f\24\n" #"\222&x< \206\2465\264\266o\200" #"\254\350\250\235Uu\306\350\265\343\6\234" #"\260Hk\326P\266\267\235k\264\267\335O\246E\257I\264Huk\0304\216E" #"\al\354\374\241!]!\264\275d\305l\373\f\352A-D\214\203\366\22@\321" #"\332\340\2<AF\306H\375.}bj\250\364\325sn\367\224\207cq\5m" #"*\354\n_\200\215\271\246\327\206s5\1,P\264\277\26w\2\201\a2\367r" #"\320\306\245z>\213\312\254\272\304\223\b" #"\253\207\314E\363:AM\332\320\342B" #"\375wh\262\244\3678\377N\331\272\263" #"\372\347\320\263:&\17\341k9\225\22\240Zs\tt \205st\30\311Em" #"\263Z<\357\21T\373L\271d\24\3650\2078\304\20k\254\262=7" #"\fD\371\5B9\30\34\342`\262\300\f\353\3\210\221\200\211+N%" ) 500 ( #"bz\327;R\365\316\243\202\214\366=" #"\371\34\tN\331\347\232\224\255\256\305\226" #"\0\4\25\34\231b\37\20\243\257,4\300\327N\233\244\323\311X0L\n0." #"F\263\2143\264\235\272t\346\313A%Z#R\321a\24\205I/\321\375\306(" #"\3313-\245\3509\240<\314y2\265" #"\16\255 \341\272\0\360\224c\264\314Y" #"\353\276\256\237\254\224RG\206[s[\217\344\227.W\210\336yz\345\16\r]" #"\0\330h\0\r\326c`Rgq\245iM\2543/\3\372\241,\271)\2450" #"6\205\200\301\253N\307\1\0206\32%" #"\255\210\\\221\317\4\233\"\202\215u\243" #"\213 I\326\333\263m\340\372\260D\20\6RY>\4\270Y\e\f\264\361\302\201" #"]|\2A\216\266jR\27\240\35\n_/\251\3058\340\362r\215\213\2133\254" #"V\273x\343\2157\370\372\272V\334\314" #"\355r2\n\21\0\316\316\316q\377\376" #"\3\314\363\214[\267n\341\363\257~\36\276v;\n./9Qg\265\\aN" #"\263R~3\234\e0\216\21\363f\252" #"\2327\240%\271\275\177\260\35\266\335\335" #"=\34\37\23\231\264$\230\264u\2634\261\304\0\205\323\244r'QiI\236\331" #"\233\331\205\316\200\346\240^\215V\0(" #"5\346\375\0\347\2456F\210j\17\373" #"\313\201\25\257M\32\e\20\343\200\343\343" #"\247\330\\^b\\\214\b~\200\367\302" #"\1!\316\301\207\0216\31\307\201\27z" #"\325V\252e\213\253\273\236\207f\261\240" #"\254\306D\353\r\275A\355\330\205\242`s\"\372\4'pR0\304X\327\323D" #"\363f\237\222r\252\22\215\257\177\375\353" #"\370\361\217\177\202\217?\376\0307o\336" #"\304\335\367\336\303G\367\357\343+\377\333" #"\227\360\355\177\363\177\360\363\372\246_" #"\254t\216&i\366Y\355\231]\325\250\332zmk\332>" #"\213\314\225B\335s\312\363V \261\6\23k\"sp\b" ) 500 ( #"~\0\275\256\371z\303@\373\2769m@mq\243\v{\6D\217\206\322\312Z" #"\f\350\3315g\25\243&\331\314\302\304" #"\225\301\207\214\202\31\321\333g4\273\243" #"\3409\30\206{M\324\231\300U\3646t\201\252G\331\372l\232t\252%\a\355" #",;W\270g\34\352\237\365.\25)%\f1\22\315\260\317'\242\0\223\2711" #"@\223o\213\5\237\245a\373\177\332\36" #"\3473\265d\336~\277i$y\361\320\241\204Ho\352\376\336v\"\\\20065" #"\311\1\227s\337\344\bxo\322\24_/=[\257\240\b\276\355\251y\236qt" #"t\204\343\343c|\364\321Gx\360\340" #"\1\275Z\323\f\357\351\206P\364yH\316X-\227u_\f\303\200\203\203\3|" #"\374\311'\220\2240\313\214\223\223S\370" #"\340\261X,\260P\313\236\27^x\1" #"\267\237y\26\313\325\22\237\373\334\313\365" #"\274\256\226K\214\213\5\262\264\376\2C" #"\300\352\367\354\230\16;\27=\313\240\213" #"\324\320\34\257{\307\344$h\367\206\3051{V}cW\3337J\327k\23^" #"\351\343TM\202}\313\235\257\242z\316" #"u\254\305\366\30\345\\2\242'U\35B@I\364\\\217\201\2611\16f\327\324" #"b,\237\e%^W\223\361\240\375.N\272$P\357W3\352G\1\330\250\332" #"\nv\353]\351\1\240\276\340\263\344\264" #"&\t\265\250j\315\260\225\321\5\201\202" #"\20\2\n\230d\r\201\366t\323<o\255[)\245iXK\eT\341\234C\221" #"\334<\3545\301\365\242N\t\301\327u" #"4\340\"\345\214\20\241\336\263\264\0004" #"T\320\6\373\30\373\331$QP\200`" #"\373L\331\375W\237\241\347\335\350\f\221" #"V\220E\324\367\272\242\240\245\240\370\226" #"|\267}J\331\21\34 p@\2\22\0041n\373w\327;\27\252\375\257" #"\271E\326\367\324\321\305\303\310\301X" #"\252\213\346\263\262\1MM\2#\2\366" ) 500 ( #"2\311\266\315\241\215M.\245\0e{\302\253\b\e\343\202N@\363\236`NJ" #"\34c=M\263\372\324\v\2061\322\0" #"\240\320q!\270\266\az\204\325\376\275" #"\327\254C\277\237\344L\273\270\242\261/" #"OpJ\377\2464\241d\263\260\235\341\334\250\340\242::\b\317F\26\29\306" #"\222\262\350\240--\2444'\5\264\273" #"\253\337\353\25\354\351\316\277\365\322\304\"" #"\5\343b\304<\265f\v\373b\326MJ\363|Q\252\305\272V\35\274W\312P" #"\221\334l\36\222.\242\344\4\27\31\300" #"7\323\6\303\270@\324\215,\16\220\216" #"\356\267\17m\17(\347\\\273\331m\23^\325\234m\351AJFP\335c\275(" #"\273C.\271 \243\300\353\200\0\337=" #"\374\224\24~\17\3\240\306\353\233\315F" #"\347\210\2631i\377\332\36\234&\253\20" #"\352K\330\264\306\3520\272@\203tu" #"=\370\351\273\377\212q\\\340\34637\261\263\273\352\32\"\22r\26<=>V" #"\a\5&\177\17\36<\300k\257\275\216\222\247\272\36\ru\223\332MYuC\245" #"\340rs\201\\\346\332p\321?x\a\331\352\2745j\242\357*\265\"e\354\246" #"\303\364\210l\34\270\371\2110yH\311" #"\252uf'\177I\242\324\253J\27\34\351$\350EMt\205k{vv\246A" #"\200]\324\207\343uRG\302\306\230\f" #"\201\3\265\322@\323\262\266\213\246\35\336!DdO\255\n2\362\233\0\0 \0" #"IDAT\370\265k\327\270WLW\244\t\226}\17kVs\216\25wN\31" #"HD\5\36>|\204\343\343\343jAD\331\204h\"`\207\206\22\211\357}\357" #"{\370\353\277\376k\374\353\273\357R\377" #"\30\2\336~\373\307\370\342\27\277\210\353" #"\327\257c\b\241\v\4\r\361\357i\343\276\0\260`\321\27xW/'" #"\21Q\321\276\323\340A\247\0\6\231\200&\267\341\3&\35E\315\26\34/" ) 500 ( #"Fg\346\363%A|\324\347\245t'P\233>\274wD1@\213\266\30#\32" #"\313A\31H\364\261zZ\232\226\212A\314\252h\324\213\301 Ij\351\210zd" #"m*E`\22\212y\206\370.\3411:V?\227\240M\334\n\316P\377\\\3" #"iK\306\371~\266\367\245(+\324\5" #"\352q\0300\347\202\234\346\332$I\212" #"\332W4P\212M\361\361W\212\371&" #"\207\352\v\21k\24u\276\331\301\1\350" #"\326\206\0056)\352\246\2613\315i\177" #"1\332\217G\243\245\373\204\257\24\251\354" #"\200\210 \216\315\205\340\344\344\4gg" #"g\230\246\31\357\374\353;\200w8y" #"z\202\343\343c\\\\\\\340\374\374\34" #"\207\207\207\20\0\247\347D]\317NO\340\320\n\200!F\34\36\36b\261X\340" #"\340\340\240\366<\34\34\36\342\305\227^" #"\202sN\307\313.\260\30\27p\240\213" #"\2\234\250t\203\305\316\305\305\5G\272" #"B0\27\2628F\221;\315F\244\24\270\260=6\331\326\255\367m\325\207\a/" #"P)\34\35\bJW0\266\365\336\326\345\366\211\343\325\2\305\204\2!\250Gw" #"\267w\372\4\251O\b{4\270\241\366\r\205u\216S\27\35\34\322<\2438\217" #"\30\275\332\272qo\331%mM\21397$\367*\273D\206\322!K\206/\1" #"\342U\347\333\215p\347\271\335N\326\201" #"\206>\3635\tPY\2xu\315\233\236\270\1\"[\362\t{\26\245\351o}" #"\344]\307\347\310\270\231U+\3158\333" #"\264\316\3169H\3615q\361C\334\222,\31#e\237\267\0\234\230&R\345\36" #"\266\27\312\234 \336\1\232\34e1\306" #"\216\350\242\25\300\374\256\274\307K\327\271" #"o @\321\361\303\375\363\r1\322\345" #")ed\347H\255\227\216\r\363\276\356\3159M:\30\5\200w\350\335-" #"\256\242\230\\G- \2\31\272\234x?C\21P6\207\6Ha\203t" ) 500 ( #"_\240\325\327p\369O\ba\204\25\313\264\3\315\360\36U_>\3173\357\347" #"b\376\346\224\2129o\251\275\250\234e\326\201Lv\27\b\3402\244\0F&\364" #"\254\225\3551\356\37\5\313\242\203\223\b" #"\347(\27\200w\230\325I\250\250o\275" #"s@N\4\36,\346\331\220\246y\346\360\f\247\0034*s\343\240\222K\356\23" #"\323h\317\245\271g\24-\352z\331[" #"Kl\t\256\265Q\367\231\315\331\314\234" #"\211\230\231M\222\t\234\363\234[Wa" #"\255\236\230\241\263\0325Z\200\224\34\354" #"r\326\n\244\224BDr\30\0\327t.\215\306\vu1ms\360\303\353U\351" #"\34JG#\365(dV]Y\325\331\\\tr\225\nr\16\363\274Q\e\21\216" #"\17\265\0066\373\f\206\344\332\305\\r" #"\306\305\305\5\0\3726.\226\v\2449" #"!D\337\274\21\205\310!\352\324(n" #"\232\223\223\247\324\254\25\340\326\255\233\330" #"\335\335\321\221\213Y\221\315\214O\217\216" #"\260\\.\264\251)\340\311\223'x\375" #"\365\327\251\335\324K`\265Z\251\226l\332Jr\eeI\252}\271\\BDp" #"~~\216[\267n!\253|\302uk\322#\17\226\204\211\b|\1t\376\37g" #"D_Y?\302\6\200wD\347\341\274" #"\352\371\300b\305\350%\317\304\252\324\344" #"\254\351g\366\367\367\261\\r\362\317\345\345\204)M\212\236Qt_2@\340U" #"\23\26\27 \256i[K)\210\203v,\273\200y\336 \350\210\350\343\343cX" #"r\25|\200\351\270\2509W\355\2413" #"r\234\264\314s\317?\207\237\374\313;" #"\32\214\355>\325\252\25\234\235\356\364B" #"f\22E\353\242\377\374{\277\207\263\363" #"s|\377\373\337\307?\374\303?\0k" #"\340g\357\276\207\257\177\343\253\30\274\321%\276C8\eReU~C!" #"\r\241k\227\274\375P\"\324P=Q\272\307\346v\3238\304\20b\a@\365" ) 500 ( #"\236\232\344\362\367\224^\315\242\262\206v" #"\t\0\246a-\365\321\247R\252\205O" #"\210\261j\265\354\307\251t\201\254e\321" #"\242\220\354M\b\355\273\3623\331>\352" #"\223\372\b\221\204\"\300\350\325\215C\317f)e\253\21\326\201To\bAQ\17" #"mR,\245\376;\v?k\320\262\342\227#\217-\361\264\347\332\350lR\202\2" #"A\264d[_\263&ab]\347-y\256\211\205%J\335\5PY+\347a" #"~\274|\357\316\306\360\312\347\351\377i" #"L\rQ\367\241\26\361\224\367\0A/\315\315z\215Rh/xvv\206\243\243" #"#\\\\\\\340\235w\336\251\276\332p" #"L\360ONN\266\354\255\326\3535\247" #"\201Ap\347\316\35<\367\374\363\270y\363&n\336\270\311\21\301\313%V;;" #"\230u\254\256]\222\3030\300;\207\213" #"\315\246~\376q\\P\306\344<\346y\202i\3536\eJ\214\306\256\241\204gi" #"\233\341\211!@\24\221\26\267\315jT\226C88\304\342\262Y\25\331Ye\27" #"9@\241I\373\271\232\254\266gg\326w\206\3665\266\t\322\330 \300uw\\" #"KZ\354\247\277\253\372\273\320\342\276\327" #"\6[\347\35\242k~\315}\327|\177" #")\367\240\322\226\244\311\276O\360\220\254" #"\311\264k\211\\\373\0356=\32k\324" #"3<\255O\200\237\355\227!\234\26\223" #"\354\237u\277\272\317:\v\364\322\f\257" #"lI\21j\\\215\311\353\v\17\373\34\214'\241\2626E\357}\353\3\330z^" #"\252\243U\343}\3149\325\td\366}\352\340\32ee|h>\264\354\231\341\275" #"gK\331\373\335\362\275(\203\354\235\17" #"j\323\251\336\23\"\5\310R\343J\b\276\306\32\3S\270\227#riR\n;" #"\377\266\316\206\260\327\t\177\305\263\351/OM.!\16\316Ic\31:" #"\260\303\326\325\366B\364K\224\222\261= \310\30\323\0hoG\312\255P" ) 500 ( #"6\220\307b\227\261\262\266N%7\371" #"&'\e\232d\260\215\270\266\375\271\305" #"\26\210@\22\340\234JzJ\306j\\\324\1\r^\207j\210\b\321ke#\214" #"\261\267\242\312\342-\340\252\305i\316\224" #"z\210+\210a\250NR>4\206\324" #"\316\323U\300\263\345\220f\271\331\356\245" #"h\310\e\340\260\30G\6\31M\32Z\26\36j\360t\316a\34\27\372@8\256" #"\325*S)\322\32\200\2/-Wi\233\6\177\367IL\237\344RJ`\264\352" #"D\312\25\r\361\355)*\376]\324/i\a\266\257n\213^\340F\303K)4" #"\251\b\3/x\325\200\266\4~\203R" #"\250Q\231f\16\206X\255\226\244\274\273" #"\ad\2111\277\v\17S\6\27\376\374" #"\374B\17s\304\235\347\356\300\232\301\364" #"\223b\275\236\220\347\254.\21\254\366\36" #"?~\214\2349\b!x\217q\30\361\223\37\377\4\253\235%^{\375\vm\370" #"EMBm\270\0067\272\5P8`\316\23\306q\t\323\373\2t\232\30\206\1" #"!\204j:\17PGV\253\374\"\30\234\307\246pM\322<\303\253\201|\321\273" #"\305i'\254]\344E\f!\261\v\345j\242LJ\367\2157\336\300\17\376\372\177" #"\341\342b\215i\352\320/b\220H\331atF\21g\372:\26\243\210\300\2468" #"=\b1\306\212V\317\323\f\300c\265\\)\3\247\250II\6*\262\372FK" #"\372W\273+\204\340p|t\204\263\263S\354\354\334\20698\2102\22\206.\0" #"\25527\375\340[o\275\205\217>\372" #"\b\217\37?\301\207\277\370\20o\375\332" #"7\352\336\366\336\320\253R\3c\323\344" #"q0\200\215\354\265\213\267\356}Q\276" #"\3247\235!\2\23\206d\1\264\b\\" #"\210\310\310\372x\r\201\314\200\217\210" #"Z\\\262\236\366\365\334Y0\254Mb\35h\300}S" #"\0\37i\366\357H\224\26a\202\355\225.\325\217\6\21" ) 500 ( #"+\n\333%Z\v\34C_\212\311\a\0\273lMk]\317\232H\355\372\267u" #"\352\265\267\316\321\337\22*\r\t*\277" #"i\227^/m\2613\340\352\305\322#\2729%chiu\250\326D\266\217\354" #"\375z\4\327\34\5*\345\355\\\243\334" #"\365\363\17!\3241\230\271\273\334v\226K&\260\201C\3N\317N\220&^R" #"=rf\336\267\336{<z\364\b\353\365\32\27\227\2278;;\303\345\305\5\326" #"\233\r\316\317\317\341\264h7f\347\342" #"\342\2\373\373\373\325/8\3153\212\b" #".ON\220S\302\356\315\233\330\337\337\307\235;wppp\200W^y\205q" #"64y\307\340\350\263\235KFJS\355\275\260\347\227s\306\246\264fX6\211" #"m\350\26\0\251\27\31\327\270\250\e\20724%#&A\210V|q\2\e\234" #"C@g\367\324!\245\372B5!v\316A2\355\221l\232\226GC\36C\360" #"[Vb-\206wE\223\263=\b\5c\\m\36\4\2149c<\243\353\216\253" #"\tk\277\227\355uM\367[\21\321\356Le\335+^\266\231\200>\3516\3\376" #"\226t\362w\373$\261\355]\201sv\317I}\277\36a\354\237\327\325uh\f" #"\23\303\230%N}b\320\27\5\366\337\f \352\337\263/V\372u\350Y\212\276" #"\230\263\357\335'\311=\342\3267\351\262" #"\350\r\250\r\202\35;\6\307B1\250w/\n\252\315%\317q\370L\314\260_" #"\354Q}\213\25\3169Nt\2036\3\327B\344\252\214\313c\30X<\233\327z" #"\37k \36\22\244\353#\331\6\225j" #"\221f\372\376~\340\aP\367\245\367\206\240\268e4\364 \300\\$L\26G" #"\3043@|\3,\314\"S\243l\5\227\3045\375y\217\360\367\f\243}N{" #"\26\225Q\350\n#\373\16\266\257\372FE\333" #"O\6\316\315\226\274:\240$\e-\274\355\256" ) 500 ( #"d\337\303\30<T\177\376\336>\323\301" #"\a\240\24\2079M\30\342\2\263L\365\316\n\316\303\215\256:r\264unV\200" #"\366\f\1>\257a\30\350\272\20\207\320\2504\247\27Ya\246\340#\3}/\266" #"\266\17$b\b\254\351hh\236\20\207" #"\260\245\257s\256\331\f\365\227\177\37\4" #"R\232\352\a$26\0\240,A\312\325\303k\366-L\204\nxi\332\303j" #"\257Itd\34G\16Q\350(\205y\346t\226\234\333D\31\242\263\202i\332\340" #"\364\364\34\213qT\361\270C\210\1s" #"\352\202N\34\252\345\205m\236,\5\217" #"\236<A\26\301\265\235\35\\\273v\200" #"\3154\325\216@\347\34\216\216\216\360\340" #"\376\3\35\342\0\0#\316\316Nqtt\204\203\203k\08.\370\336\375{\230" #"\347\31/\274\370\34E\340]\320pN\315\344=)\\C\203\274\363\30\207%;" #"\357E\340\274 \370X=\26S\207\224\224B\313\eg\1 g\35b\301\344]" #"\204\rbN\2\2123\261\271U\300\235\233\203&`\206>\242CBl\335\16\16" #"\17P \330L\23\326\353K\242\374c" #"\204O\5\331\323\304\337\276\a\v)\242" #"\355\264X\261j\317\0021\221\340,\5" #"\233\313KD\37\260wm\17f\376\222" #"\212\312K\274\257\363\267\201Fu^\333" #"\275F\372\4\0361\216\32\314\25\311\n" #"\320\303\251\32P\321\224\261C\213RN8??\307r\271\300s\317=\207!\16" #"\365\365{\351A_\230\264=Y\220R\v\372}\243\32\324\336FrFq\16\342" #"=b\226:\225\252&ifU\344\274^\336\234\360\345`\214\2115\224F\235\22" #"\247A:q\277\v\330\274\230\245\223.8^4\25aV\f\274\344\2\4\216\323" #"\214qD\221\214d\377\273t\r\214 \373\322<A\e\333\1\25\247\0" #"\276\26)N\377\244N2\362\232\224\27\35b\241\214\316\356r\211\313y" ) 500 ( #"\206\344\f\27#&\r\246=\305k\305^K:\266\223\206*i\260BB/\252" #"\336\212\252\227\312X@\267\327_,\26" #"\365\265*\302\347\351\314\362\370\311\247p" #"\216MT%g\234\237\235\341\350\370\30" #"\217\36=\302\331\3719\343\3144Q\323" #"\250\27\203\305\260\224i\3078M\23\306" #"a\304\356\336\36\316\317\317py9a\\\216p\336a\265X\326B\342\311\223'" #"[ZS\21\372\325\356\356\354`\357\332" #"5<\377\302\vx\376\316\35\f\213\5" #"\366\256]\253\177g\30\6\"\272B\370" #"\336\25\352\361\263v/\233\356Rt/\304\320\6@\210\26\3C'o*\352\e" #"]\320\32B{\311A\3205.\0c\34\314+\265\311\250<\210\16\366Z:\356" #"o\236]C\226\213\240\242i,\234\244\2\r=R\267\25o\272$\303\230\5C" #"\363X\\R\276\303\317\336\342\2765L\2\354K \245^\277vM\230l_\360" #"l7\304\327\366\316v\262\n\225\303\330w4Y\f\364}LOk\257\323\320e" #"\276FG\257_i\212\352\21\342\312v\246\\\a\350\330\272\0303\355\273/cq" #"\247Gs%\27d\243\322\245\331\236\365" #"\250^\237\334\366Ek}\366\2419\37" #"\330\375\336'\265\366:\366\32\6\236\225" #"\"d\365\\7\332U\237\241@\0356r\307b\251|\241\26\4\32\344\2350\376" #"\207\20\1\245\317C\177\376u-\230\331" #"X\16\301\275\321\367k\230\224\243>s" #"\361u\360\212}/\2767\331\3064\333 \235m\371e\377\373p\232@z\372U" #"\333\35\333#\301sJ\0321\257\254A" #"\5p\32\20\330r\201\226c\331\210\361" #"\276x\274Z\230Y\374\260\263\323?S\200H\275i\255mO\367{\316^{\210" #"\21\311,\357D\321\363b\240\247\201be\353\367\256\26\217\346\216dk" #"\1'\220\222\341\335\22\5:\266\3305\263\200z\6\234G\t&oi=" ) 500 ( #"Vv\346\354\16$\22\254\276\353\31\202" #"<\221N\246\336Q\5\304e\256\272F\353\\\357\27\230\24\337@4I\247m8" #"\307/l\213\32B\304\224\330\250\325#\\\266X=\0054\214K\352vyk\"" #"B\205\374\20L\340\203\351\347V\23w" #"\"Z\31b\244\266\a\355\260\30\375\226" #"\205\362\211\3008R\27\336\2I\255\374" #"a\"\354\214\325j\211\315\345\206\323\262" #"\246\215\352[\1\347\24\t(\205\223\211" #"\24a\261\215\222\264\1\304\373\1\273{" #"\234\275.%\303\305F\255\34\35\35#" #"\227\202\375\375}\354^\333\303\307\17>" #"\201\240\340\321\243Op\363\346u\234\235" #"\235\342\361\321\23\274{\367.\276\363\233" #"\377'\221\276\314:\324\327 k\250(" #"\327\357\362\222\276\231\233\315%\314W\321" #"Gt\227L\37\360\333\310B[\217\36" #"M\0032\234\24\24\263\203\361\34\204\321" #"h\0\17\216|\345\245\21BDq\263n\356\256\370(\5\303\20\260\231&\354\37" #"\34\340\372\215C\\\\\254)\353\20\300" #"\27\3724\aQ\232\241\322,\202\20\272\213E\364\357\5_/\204R26\233K" #"\254\247\t\16\202\315Fik\253n\325\376\304P;K\206\206! \2046\217~" #"\232f\r\344A/p\333\307\324\330\21" #"y\322\0\253\257\275^\257\225\365\360\370" #"\312\227\276\244\343\201\207\255\3135\227\314" #"\252\266\333\217\25Q\310\251\356\317\252\203" #"\323\346f/B\277_\241\366\2548W\233\264j\241\243\210kC\205\264!\314i" #"S\224\20Y\346k\30\0354s9\364\357@\251\326\\\244:6\330w\254\27\231" #"W/^EQ\346<W_BCt+\322\20\251\337\365\235\316\320\212F\306\n" #"\26\306u0\205\276W\360\234\312\224e" #"\326\240\225\341CDT\235l\312\352(" #"\240\1w\313\225A\367A\243\362\232\24\244\277\200\373\244U" #"\364\202\361!\324.s+\376b\214:(\205\277wtt" ) 500 ( #"T\331\226\313\313K\34\35\35\341\350\323#<>:\302z}\201\323\323\323zi" #",\227Kx\357qzvV\233\272\274\367\325&\253o\26\2327\e\26t b" #"}\374\351S\354\354\356`}\271\306\305" #"\305\0052\4\207\221^\262\3038\342r" #"\263\301\363w\356\340\316\327\277\16\21\301" #"\341\341!c\307\356.bl\26{\313\345\262\"N\227\35355\223@\35\241\333" #"\307^\0]\343JC\362\270\02751\0\213\340\330%HA\331\21N\177j\332" #"\322\232\274+\270a\366L1\4\344Y" #"\20\206\226\30\3324\245`\243;\235\2418\169\251\365\226!\360\216IMMp" #"\352s\357\220\241+\311\326U$\321\220T\2238\31=\332\243\226L({i\201" #"NKt\236R\215_\"[h\357\333\246\375]\355-\20-\370\252u\242X\202" #"\330\351\n\235\243\233BP\306\306Yq\330d\26[zY\264\2\257\377o\"\235" #"+\202\236q+\30]A\225\304\331^" #"o\347\224\177\325\2076\244\1\256\25\212v?^MX\t\6P\313\337\337+1" #"DN;\355\220B\333\37\275F\270\377" #"\354\316\241\216f\257\337E\232'x*" #"\355\356\203\356\313>w\240\324J\345W" #"\2\225\235y\362q]\222o\215|\265\b\6\233\241\255!\320b\223I\30\31\303" #"\22Si\215\2075~\301\300\r\322\352\16m\332X\377wz\4\335\206Q\350n" #"\324u\3463Oy\346\20/\317)\204\222\373&f\247\373q\e\354#\273\321\326" #"\302\222\314~\255\373\2\275\337\273\366\357" #"\336\371\32\327S\312U:\322\3\0005" #"G\262u\314\271\372\347\333\353\330\232\22" #"@t\360\305\325b\312>\217\275F_\byP\6E\351kA\360\243&\333^" #"\345\0346^[\vBQ_\345,H\336\301;\366V\260\327\330\0" #"\316\276_\311\244\v\336\301\213V\345E\352\37\210^\3761Dd\321\31" ) 500 ( #"\345\b\350\3\3134M\364\220\0030j" #"7e\323\200p\n\215\363\240\3709\350" #"\353\305\241^\224\375\5\300\274M\a\36" #"D\323\367\n\306\30\231\256]\241-\255\361\313\201UA\26N_\2610Skm" #"\265E\361\212&\265\315\3346FJ\364@\204\27ZZ\210`\243# \227\273;" #"<H\236[?\245\\uxU\177\4\242\214p\300\323\323S\204\340\361\374s\317" #"a\265Z\342\362\362\262&\324E\n>\376\370\23x\357qmw\17_\375\332W" #"\361'\17\376\24\245d\374\360\207?\304" #"\233o\276\201\207\17\37\343\a?\370\1Bp\330L\23\206aD\2327z(\200" #"R\332\344\26\36r\322\342\227\227k\354" #"\356-\265\222)\24\276B\275\350\260\255" #"\17\3\370\\\255\270\341\32\314J\2533" #"\321\364\302\216R\b7\e\23\r\242\354\3169\fCD\316D\342\341\0\17mP" #"p\250\376\236\2`\30F\34\34\354c" #"\271\\\342\350\350)\216\216\216\352A\5x\256ra\201Cm^\253\314\32Ef" #".\4\1\316e\304\30\20\252\21170\2500\37 a\317\16\341X\337\247\357\246" #"\236\246u\335w\347\347\347x\366\331[5\231\25-x\330\4b\243\260C-\0" #"\327\233\r\376\345\307?AI\t\317<" #"\373,\2068\324\204\241\322\333\205M\217" #"\260\306\277\216\332\263\275\336\357A5\270" #"\201\203p\\\241\5A\376\217V@\24" #"\241\205\217\327\206\36\235\362\307\357G\177" #"da\324\241>\27\16\305e\2732Q\320\374\262M\a\25B\e\347m\237\251\247" #"\251\30\314\241E\36\221\2239%\214\343" #"\260\25\354E5\375\306\254\f\252\203\263gX\264`hH\2302\3\3161f\350" #"8\233\30\207z\251\362\331\265&\206\206" #"$Y\360$\272\317$\202{\203\353\321\306\200\333\32\307\30k\221l\317" #"k\265Z\325)wGGG899\301\307\37\177\214\17>\370\0\227\227" ) 500 ( #"\227\265\3113\2046\204\206S\275\332\234\366y\236qyyY'3\306\30qy" #"y\211\305b\201\20\2n\337\276\255\32" #"u\332\b\306\30\261Z.\261\\\214\272" #"'y\21\355\355\355\342\340\340\0\3234" #"agw\27\271p\272\243\367\36\347\27" #"\27X\216\364\3146\373\250\253\24$\a" #"\237l\232.\322\223J4\351D\237\310" #"\366\350\253\b\255\224\2023\204i{\220" #"\200\215>54\272h\361h\223\5\355" #"\202\353\223\313\\\232\275[)\r\370\260" #"\330\223s\346\353\352\236\366N\275G\205" #"\3153\206\214\315)a9\f(h\347\337\276\263\271Y\330`\214>\266]M\242" #"\314\220\237\277\307a41l\237\301z\351{\373\376:m\v\202<\23h\20!" #"\273\322\243\216\366\375\215\21\262\265-\312" #"\2548\357\325\345\246\3051kF#\332" #"MF\2548\355M\b\375\330\347\206\274" #"\365\350\340V\322\253\f\215\23\332Iz" #"\275c\245\24\304\201\203\20l\226nC" #"\230\355\306\356\23J\312\212\2744z\335" #"\354\376\354\314\366\f\254\241\320lFg" #"\303\356<O\32\347X\354\364\t\255\375" #"\330s\270\212N\347B\200\301&\217\331" #"\363\250\261\22\r0\240\34\315\353\3711\224V\237\0352\\iI>\4\312TQ" #"\246\243\202z\"\331\312\26J\221-\271" #"w\e\364\221\20\302\22\5\219O\b\2100\6\243GL\355\263\232\236\266\a\0" #"\256\2 \326w \0\340\4i\266\341\e\346Z\241\37\244\264fe+\316R*" #"X,\332\304\301V<\3500\34@\247\253\311\326=\323\237\205~-\355\34e\311" #"\b\316$9\306\372\266\347\336\347{\225" #"\225W\200\"\372\300\336\221\232`\252\305" #"\244\276\276\27\337\235\221\346FQQ\361" #"\314{\303\3539\31\207\201\22\b\27\351}\237fx\27Q\222T/`b=" #"\36\316q\317H\316\265\310\264\237\276\331" #"\267\306\275\340< j\355\221f\325\n\262" ) 500 ( #")e\236g\265\252\32\364\220vv;\212\340\214\201^\271%'x\37!\5\324" #"fIa'\243\203\352\23i\260\235\363" #"\4\350\0035\264\312\36\236\200\206\351F" #"\241\231a\371\240\227T\177\271\332\242W" #"\215\216'\372\345\24\1*\302\311A\274" #"\2109\31\315I\337\261\255p\267t\335" #"\265\340\301 \215\301J\361_\337\371)" #"\276\375o\177\203\272\240B\e\20\257\223" #"\334 L\322\246yB\360\16i\3168::\3028\214\330\331\335\301\345f\326\3" #"\312E?~r\202\367\337{\37\336{" #"\274\376+\257\341\316\235g\260\277\277\213" #"\363\3635NNN\360\337\377\373\377\213y\236\260\331lpxx\3/\277\374\222" #"\242V\200\v\2029ohq\246\372\301" #"\30u4\242\203\36\206\355&\2\300\200" #"\315\266a\355\363\244\234\20\340\264\331g" #"\326\313)\300\206F\210\327\206(\21]" #"#\323\356\25P\307\306q~\213\30Q\220a\220a.\274`m\363\32\335\23\265" #"[\367\364\364\224\366ieF\245\300\274\6\347H\17e\270\256\273X/NV\213" #"\24\273\307\350\220\322\\i\371\375\203}" #"\244BK0ff\332\324\345\215\255\356uF\355\262\247\a\2525z$@he" #"\347\4\310\336!\250\211\241\355\273\247\307" #"\307\270\373\376{H\363\214k{\327\260\332YU7\0\357\275v\276N\210Y\17" #"2\254\312\244^\250Gw-\360C\244" #"\16\334\240\216<\327\375J\301?\203T\364\3 L\22L\37I\271G\204\b;" #"hQ\240\t\254^\270\232 \f\303\bQ_X\"\260\215b\2544qG\357Y" #"\342\333$J-hX\345\317\357\242\223\247\34;\267e.\235o\245\322\3215\31" #"\352\a\2238\245\0205\321Q\253$\306\225\202q\\\340\362r\203a\b5p\365" #"I\f/\341v\1\2639\316(\337\201\26X\213\5" #"D\204~\260\363\214\17?\374\20!\4\274\363\316;8" ) 500 ( #";;\303\351\351)6\233\rL\303\265X,jRh\332\317\313\313K\\\\P" #"s\277\273\273\213\2343V\273\273\330\337" #"\337\307\355\333\267qxx\210\203\203\3" #"6t\255\226\330\335\335\3\300\6V&\325#8$\2461'\"\252\275\323\240\334" #"\243WF\237\306\300\346?Q\204,\345\314\201'n\233\31\v1T\24,z\355" #"\205\bl\334\34b\204T\31\3136\335ik\351\f\271\vDO\270\325\202z\22" #"\263\253~\236\23\26q\340^\363\261k" #"\30j\311\241\275\266]\202\215n\367\25" #"q\350Q\237\36\215\215\336#\251\354\310" #"\371\200<\315lD\321\275\322\373\342\366" #"`G\257\317\265}uU\343\331\212\265" #"\250a\201\16\34\222\t\4\244n\230N\217|m%'qP/\324\36SF=" #"\307\374\376\255{=\245\304\363%\205\372" #"\362\3569\367z\327\340\325\23\274-\20" #"\233z\335v\27\277Q\260\0\352\364." #"\321.w\323\365\273\340\21\320\244!\255" #"\301\216\300\214\244\2048\214\25D\340\232" #"5\331\b%\17\1S\232k\363\347\325\347\n}\257\246\323t\265x-\305\6\310" #"Pr\345\260\255\311\355\377iEt\237" #"|y\215\331E\332\340\231\376\367D\204" #"\371\204\1F\271\324\316|\37\fU\325\202E\244uVx@\262\25\17d\32\254" #"H\35\"\331\352\20\eh\304\367c>\354B\250v\214(\16S\332t\367F+" #"6\270\26\375\4\3136\275\263_\3\373" #"\36\255)\217\317\221d\0035\277\200S\0051%FL\300\255\220SD\26\330:" #"?\226\373x\317\206eAC6\2572[\336\373z\236\262\262\t\266V\3169\315" #"\373\314\347\326d\0m?V\204Ws\2439\247\255\367\260d\276\336\275\330v)" #"\251\271c\207\306\213\26/\374\275Y\357\263\2)`\342;%e\220\\" #"M\240-\36@\32\3\331\313V{\325\200\235\357\2304y\235gR\223\203" ) 500 ( #"W\215O\312\35\225\220\233\236\316qA\303bDI\231SE\0\270\302D\31\321" #"c\256\1\257\17\rV-q\302\6\343e\243'\2\34$F\370\"\234\356\25y" #"\200S\311\25q\3537\343f\263\3010\2145\230\365\372St\17\26 M\227\347" #"Tmm\270\t\370:\324\317\370*\21" #"\360\336\343\374\374\2\313\345\210\2242\246" #"y\302\237\374\311\237\340\367~\357\3670" #"\317\326\0\21\341\235\307fZc1\322" #"\243\364\307?\372\t\36?\376\24\273\253" #"\35\234\235_\340\321\223\307xsxSQ\4R\e\37}\364QETo\334\270" #"\216\203k\373x\371s/\342\307?\372" #"\27\f\303\22\367\356\335C\214\36\a\a" #"\373\370\312W\336\3040*\245\241]\342" #"\305[\207w\300r9\342\374\374\f\253" #"\235\21\237\377\374\313\330\331\335\251\233(" #"\4\321\344\315,\273\370\23\225b\16>\300\253nH4\270\314s\322j\3374;" #"\255B2d\246\30\2#\200\244\202A'\276\20M\264\304\261\e9\nMh\234" #"\303\316\316.\212\24\334\273w\37\347\347" #"\347\30\207\250\366\"\32hGV\335l\20\32!b\357\257\250r\326\204M\3$" #"\307\202n0.\27\370\370\343\ax\365\325Wx\1\20\250W\244\200N\aD." #"'\204\320\306\211\256V+\34\37\37\343" #"\371\347'\354\356\356\"\245\346\253\354\274" #"\322\257>\324*\3259\207\237\276\373." #"...\260\263\267\207;\317\336\306b" #"\244N\333\202\a\351C\245s\34\213\2771\f\350\273\360{t\255\26e \315)" #"\320=\e\230\270X\340\346\357\26\35\333\310\2-+;RT\37\355E\247\2169" #"\21791`\270L\344\315\262\215\234\e" #"%k\276\215\355Ym\a\344\36\221\361\36\277$\200xM\36\0300K.\320\330" #"S\v\333f\263\325\320\216z\216\t-\220f\254\250" #"\35\377\314F\277\232\356\312.\347\345bI\237G-\264" ) 500 ( #"\0`\236'\210\24\\\\\\\340\370\370\4\347ggxzr\202\237\376\364\247\365" #"<\234\235\235a\271\\r\230\301\222\315" #"\2459\347\372>\233\315\6\363<cN3v\226;8<<\3043\317<\203g" #"o?\213\303\353\207\270v\355\32}\234" #"\3\a\3508\260\17a\263f\242\274X\321\366&g\372J\317I\245D\323\5 " #"m\370\210\241\32%\4\214zi\332\372\e\255\t\236\32\306\t\aN\3\353\264h" #"\\\27\233l\306[9\210N\256\322\263" #"b`\223\23\245\261\235\257\305\324Uz" #"\235\354\201\a\234v\275[\213\250sp" #"\371\312H[\327\261\r\322P\273\376\242" #"3\2138\306\220\31\301\2175a\273\212" #"\3449\3470\345\48\257\364q\206x\242T[E\21Z\242\330\377w\373\337\"" #"R\237i\277\246\366\273\374;\252\vW=\367\224f\202\25\20\335{V(\361Y" #"TOP\0003\266{D\0323\326\313dh\231\224\22/\346\266\307yn\206\330" #"\6\27\360\317\224)\323\244\255tIX\317j8\0\210\36\321q\357d\325\224:" #"t\5 \300&\326\224\365;Qs+\242#\306\307Q\277g\217\344R7\37T" #"r\310\365h\250\270\355\305\224\22\222\r?)\246{\247c\0\31F\324\370bV" #"\243W\21\317\36\361\267}\260\225\\\n" #"\345iWc\214%1\366\231\341\0\247\303\24\4\264\251\253c\233u|\267!\271" #"W\1\5\347\34F\37\352\250XK\326\221\5ahn\0d\30u\4\262\3051" #"O-\273\375\35C\272\255\270\262\"u" #"R\213VK\272\214\25\260d\313\3160" #"\363-&\316S\2321\250\355\343\224g\365\32V\26\304t\247&\21T\231Q\1" #"\240JM\304\350\353\240\v\17\247\312\203" #"\266\336=\200Q\23t[\23\215\a\203i\345\205\t\265H\321\236\254" #"T\223\366\255\270\341P\327=\250\324\257\37\2725D2\232\3332\263m" ) 500 ( #"\306\303\316\214\203W\224\276\355\2456\21" #"\215i?\301\273\320h\372n\337\264X\306\206\351-\335y\2072GC\242$g" #",\306\21iN\265r,:VV\241KP9\314$G\222j_\262v~J" #"\251\263\246\303\300\351?s\316\210>(\255\321:V9\363:\3301\256\232.z" #"4\233^D)U\317$\270\350\27\224" #"\234\24.\267\207i6\35\372\200\215\222" #"\350*FRo\201\211\263\301\353\6\367" #"\1\252\t\24\210\372\22.\226#n\335" #"\272\216O?}\202q1\342\356\335\273" #"\370\303\377\372\207\370\322\227\277\202\317}" #"\356%\314\363\214\323\223S\234\236\235\341" #"\27\277\370\0''O\341\275\303<\315" #"X\257\351\220\360\376\317\337\303w\276\363" #"\35\344\274\301\224f|\360\376\273\370\321" #"\217~\204a\30\360\322\313/\340\231gna\232'\374\326w~\v\323f\306\277" #"\374\313;\0<\236{\356%|\351K" #"o\340\245\227_\300\2503\335\e\232\334" #"\202\376\265k\327\360\333\277\375\357\361\203" #"\37\374/\34\36\36`gg\247n\264\206\234\330\306a\0\261 \223sBA\201" #"\313\2As\220\260C\21\am\4\324f\222\20\232&\17%c\320\21\2266h" #"\20244\23\326`\25\231H-PJ\1V\253\245Z^e<z\364\t^\371" #"\334\3475\250\25\204\350\221r\302\20i" #"\223\342\34M\255SbR\2362\221\334" #"&]\241\265\332b1\342\344\370\4\177" #"\377w\377\200\313\3135\276\373\335\357V" #"\304R\224\222I\2114\224%g\27\27" #"\347\25\21\372\313\277\374K\374\354g?" #"\303\357\376\356\357b\271l\3038\310b" #"4\344\22\0\356\336\275\213\177\374\307\177" #"\304j\\\340\306\255[x\353[\277V" #"\351b\253\352S\236u\257\222\346\17\212" #"\210\333\350\312\272\357\272\177\262\323\225(\204]\r\245\24$" #"\264\t`\20\247(\240\236\237b\225\253N\23\364\264k\3429" ) 500 ( #"lvL|{\253\200\215\312\262\211NWe<\330:3}\325\r\210\2426-" #"\250\260P\f\220\222\20=\255vf/\210(\25\341\266}u\25\325\351\eU\254" #"\1\321\376\234\201v\304<\263 4\n" #"\367\342\342\2\357\277\377sL\323\32\247" #"\247\247\230p\272\332\232\0\0 \0IDATR\302'\17\36`\223\22d\246" #"u\2318\207\235\325\n\233\365\32\213\345" #"R\207\261\360\331\177\374\361\307\365\34\304" #"\30\361\374\363\317cow\267N\361z" #"\366\331g\261Z\355`\265Z\300\232\225" #"R\236\231\364u\337'\245\r\0\26\240" #"E\22\340=6\227\23l\240\211\25\320\265[\276C\34\354b0\352\332d\21\375" #"\264\267^?j\376\240P\205~+<\370>P\17\313\342\370yC\210l\306\264" #"\300\17\353\342\326\270\352z\272}\333\262" #"0\245\304\vO\365\313\366E\\\312@wABD\345\t\26\264\v\274\201#\262" #"\335<\325'\235=\245\v\3478\272\\\367c\210L\262\275J\255\242\vZt\243" #"\16\312\351/o\333+\26\17\354\357\331\375\322\30\0c\nxi:O\35\177\321" #"\303aq\252\242\221Z\340\333\300\36C" #"\v\203&\246\242\277\333\257_/\231\250" #"IN\315\270P\277\257\335Yv\331\331" #"\336\360\241k\350\224m\324\327~7\250" #"\336\235\211\35\357\262,b\231\1RI\30\334@i\t8\24\240_\213\276[\276" #"\177\36\346\261k\311\253sM\272b\210\231YRB\301\241\306jZG>\v\4" #"\e\346\20\266]\337>\23Wz\351V\275\317\30p\266X\246_\3320'\242M" #"\334-\216\364(\236\363\34\\`\377\336" #"?\27\1\245q\342\24\361.\244\300\223" #"\314p\272\2161F\314\235KR\257Q\265\265\353\35;\266\22J)\20$\0c" #"\3753C]R\311p\271}\16~\366A\317l\e" #"I\334\n\240R\245\244\336\231SD\0\aq\t\206" ) 500 ( #"\5\31\203\242m\30327\326\323\27\266e\233.\271\377\354\25d)M\26\"E" #"\2723\306\373\302k\303f\237\314\367y\5\367x;{\245\314(j^\300\275\342" #"\365\373\204z\266\346y\276\342\330\301\275" #"\312\354\324\274\201\267'^\346\\\20\\" #"\244f\337\345\255\363\301{Z\231\377\324" #"\356w\3\350\270W\354\376\321\1h6\373x\232&\214\332E.h\263\3069\326" #"P\351I)\bQ\255\224\320Ft\332+\272\2\224Yi\344\222Q\300\0\354\\" #"3\313\206w\2307\23\254\242\254\26\35" #"\231A\3179\265kQ\252\265(M\226\347\204a\350\232\\\240S\264D5Mv" #"!u\372\fC\315\0Q\275\224\200\250" #"c\256\a\226\225G\323\205\372\344\361[\337\371\16rJx\367\356],W\2738" #"=9\305\377\370\253\277\302\336\356\36\202" #"\0320\17\303\200q\f\270~x\2007" #"\277\364\6\236\275\375,\376\350\217\376\b" #"\307GgX\237\3\377\317\177\373o\370" #"\3067\276\211\237\335\375\31\36~\362\240" #"\332\225\275\371\346\e\260D2\347\214\177" #"\367[\277\205\357~\3477q~v\201\2248Q-\327\"aV\35n\243\233s" #"\246=\331\v/<\207\377\362_\376\263n\212T\223\231^;\327o\366vQ4" #"\324\21\272>\336Q)\232P0\245\271n\310R2PT\343\252\350\272d\0\212" #"|\366\210N\b\1%\261\322\266C\336" #"\314\255\271\251\243\232s\213\250\310\\H" #"\355\6m@\352E\353\16\369\225\252" #"=\26350\312\321(\342\325\316\252\6\244\252\217s&\23\340Fw\336c\34\2" #"NO\317\252\326\221\310\r\321\16\16S" #"0\232\220\226jv\360\347y\302?\375" #"\323?!\3153\0261\342[\337\372\265" #"\232\240\232\2166+\2\335[\331\261" #"\e\325\250\315\206\250X\360\266gc\305B\25732I" #"\17\320\32\310l\236\273\315@\367\325\373\330t\231\333\343r" ) 500 ( #"\273k\4=\302\312\263\334(\346>\201\350\367M\vdv)Z3\r5\352\226" #"D\3\262\225l\367\376\233\206B.\26\213\255\200{zz\212\263\2633<y\362" #"\4\27\27k\254\327\27(%coo\17''\247\270{\367.)x\355\"?" #"88\300\345\264\301\234&\354,WH\245\340\350\370\4\263Z\4\16!`\326\363" #"\344\234C\276\270\300\27\276\360\5\\\277" #"~\35\313\345\22\327\256]\303\263\267o" #"#D\242\262\227\233\r\226\252\203\265\206B&\324k\30\35\rl{Qz\317F" #"9(\3629\304\2616\3218\1?CE\335<J\6Bp[I\254!)F" #"A\366\364\332\26\265\35\234\306$AC+\274&\e\t\336+\232\257\205\254Cl" #"E^Q\333\244B\312\327\206\347Xb" #"\270]\304\264\346\246\215\306\362!F\265\1#\35\333_0E\310$\344\2344n" #"t\3150\335\336\263\275t\225-\200F" #"\37\361\264\b\362\232\274i\26\315\270b" #"M\222\356\263\26G\365\222+\3453\332\274\36\3012\244R/&\272OL\ex" #"\37\20<)\333yn\211\213\375\376\26" #"\255\256w\217\227V\20\332\367\351\v\205" #"\2534u\203\236ZGy\245\212]\213" #"\317}\217\212\275\367\226\3\b\204A:" #"\270\n\"\4\0274\366\262{?\247\214q\30\250\241v\r\325\362\32\17(\2450" #"\327\202\306\254\330?\373{\262\267\242\252" #"I\236\216l\255\373\22&\301\3615\271" #"\262\242\244\177\355\36\365\356\327\253\202)" #"W\334S \235\347\356\225\370c\277[" #"\3274P\246c\343_\3553\333\337\255" #"\210e\367\377\3369\3149\303\307\200\222\v\304\27&kvo\200`N\360\276z" #"\267\366\r\213=\313e\2371g\272\\\2609J\357\337\212:2\321\23)\364\311" #"5\373\315\234!z)\331\264\273\226 \352\235\243\257" #"=\4\332u\271\302x\v\307\306\340\222\213\312\223\230" ) 500 ( #"\234\26(K\302\343C\211\6Z\23o/\eh\r\323\245\312\\\2\202\316\t`" #"QX\244I;\257\356y+ \230\2647\0\244\364\211o\316\312B\267\202\324\326" #"q\373,\3\3161\237\24\327\215\276\206" #"Yu\362>\215\372Lm\335\373\263\326" #"\306^\333\331\243E\240I\210,\4\304" #"\36z\317)\261\242)\324\350\346\254\272" #"\30o\302o\36\342\224\1_\350\267k" #"\325\257\35\226\326\\\306\313'i\5\301" #"\vK\233\312\222\215\36\314(\2,\"" #"\265qvq\e\234\216\302D\311\304\347\336i5\35c\205\277,\370Zr\313)" #":\276n\34\201\351\211=JN\0\270(1\f\330\314\23\6Ez!4\265\27" #"\255\22B\b\370\277~\347wpt|" #"\214\357\177\377\373\370\331{\357c\210\21" #"\347g'\30\206\1\313\325\0027o\334" #"\302\227\276\362\6\256_\277\201\345r\211" #"\30<\276\375o\177\3\377\365\17\377o" #"<\367\354\21389=\301\237\375\371\237a\34\27\230\2465vwv\360\215o~" #"\r7n\\\337\n\2246\274`gw\a\213\305\242\26\17\265K\263n\26\r\177" #"\":p\242m\214\276j\356\251\311\236\2326J \372\2009\247\246y\0216\354" #"\315jY\346\34;\240E]\35b\360\355\322p]\302,\234\0167\fC\363$" #"\325\240j\a\204\26^\5;;;(\211\177w\2652\231\205\232}\353X\324\253" #"\237\35\320F\217\234T\357\247\tc.X-WD\375\3\235-n\\\277\256\207" #"\261\215\244m\276\252\1\336\321\336\354\315" #"7\177\5\177\367w\177\v@\360\352\253" #"\257\342\e\337\374f\275\304{j\215\347" #"\202\350\364\17\177\370C\334\275{\27\377" #"?]\357\266dY\222\\\207-\217\330" #"\373\234\314\312\314\272t\365mZ\0" #"\206\303\31\202F\202\270P\222\311\370$\351A\306'\210" #"\337!\343\377\211_\200'\352E&\223\31%\30`\0\210" ) 500 ( #"\351itOOWWU^\3169;\"\\\17\313WD\354\354Q\302\6\335]" #"\225yr_\"<\226/_\276\374p8\340O\377\354O\361\325W?\333\275\273" #"\32\354\314\222r\267\346\352\331p)t" #"\0051\272\204\224Z \277\277\371\235\325Z{y{d\275\3365L\273\357W\211" #"\246\16\215Y\253Q\2650&\246K\4S\5\17wLAk\310\212\346R\"\337" #"\227F\201\316\240\v\2405\222Xz\376|\255[\34\362\300\361x@2\303r8" #"0\216l\27\234NdT\237\236\236\3607\177\3637\370\353\277\376k4w\\\202" #"ie\271\357\322\1\313U\370\317\352\371" #"\233\31\336\277\177\217R\n\316\347S\357" #"\21\270>^aY\26\374\362_\374\n" #"\237\274z\203\327\237\274\301\341p\300\341" #"p\300\2337op}}\315\347\27\340R\225\aw\17k\260\215\32\275Z\177\2" #"\230\270~\242\322\220\207\341\273\273\323\304" #"~I\341P\234@\273\f\312vj\255\260\234\260\36\16@-l\230\0:S\241" #"\203\23q]3h\323\227\330,6\233\315\232Z&*\347\355\202\204\34\22!%" #"(\\\e[!(N\226#.D\311O\24[\220\as)X\a\223\326A\217" #"\331\265b\215\36\204\213\27\0343\3433" #"\337MB\213q\360\226(\231\200\217\337" #"u\271\320\5G\314\233G\274v\204[\215\261\213\36M\354\22b JA\303\250" #"\16Ik9W\261\346d}>\360\346?\237\301.GW\2235\275\\.\34E" #"\17GB\v\322c<{`\226\356\204m\225%x!k\337Zc\251\324\306\300" #"\235\31(j\17\347\234{\3078\17g\1\3i\207\a)0\3139z\262\240J" #"e\346\264\253u\311=\226\241Q\233[" #"J\241\226\266\205\274E\317\213!\222k\306i\277\224s\356U\327R" #".\343y=\273v\335\377sY\201o\215u\362\210_\330\375\214$" ) 500 ( #"\26\243\351SV\223\26\211\214\366]-<\203\347\212\226\316\246RKo@\237+" #"=\302&3\260I\341\352\320\246k\24" #"\313\276\257\226\331n-\214dm\326\260\22\24z$\16r\370\340\272%SN\220" #"\234\206\226Zk1\3005A.\207\250\260\261\20\220,\244\ak\223\224pJ\322" #"\226\5\2652\361)\365\22I*\275\302" #"e\211\246\367\213\220vq\322\31\302\317" #"\372@\22\252RN\224\301\252\1\214\222" #"\a\16\332h1\210)\222Y\310\241\202\230h\311+\20\326w\275z\21\353VD" #"S\263q\236\315\t\257\310\0U\17:\251a\26\373\235U\r9\355h\235K&" #"\313=4O\263c\322L25\366M\2543K|\266k(\5t\35\262Xm" #"\215\236\346\227\355L\300\0271Q>\310" #"9\247\220.\264\206\255\24\264\260\312Q" #"7\36\271\207\20\1O\233#[\355\202\367Z\302\324;\16\347yT%\355>F" #"\31\2757c\350aeY\200\220m\235" #"\31\215\326\32\322\222\3p\323\333\316b" #"\3065\351\266\204\32`{\240y\304f" #"\343\313\223\260\331R\302\266)@\306u" #"\200\231\2602\5\312\3h\3054\227Voon\360\277\376\345_\342\207\37~\300" #"w\337}\a:Gd\274}\373\226\335" #"\325\207\5\352\2\2077\374\374\217\376\20" #"\377\376\337\377/\370\317\377\371\377\200\371" #"J\333\30/\370\362\313\317\361\307\377\342" #"\217\361/\377\345\37O\223\322FGr\212\347<;KH\377\302\30502\0263" #"\204;\302\332\201Ak\2557\251\3552" #"\334\264\240l\336\347\207\257\307\245\e\315" #"\353\331*\203\357\357\305\22*\242t\224VXH\27\226e\351c\226\1\240U\0" #"\317\306Gz\244\245#\23\346f]\327\25\t\206\247\247\247\316NI;7\3;" #"\261\21\235\321\314\341\230\321\b\274S\342@\215\373\373" #"\217\374\331\224p\367\362%\376\340\17\377\260\337\a\301\327" ) 500 ( #"h\242\"\3\2$$\274xq\203\377\370\37\3777\234\317\227.\r\231\327\334|" #"\200\36\16+\376\313\177\371\177\360W\177" #"\365W03\374\362\237\377\22\377\335\177" #"\377\337\228a\350\330\232\27\270\245~" #"\337\32\221\351\360\256\375\356\357Z\ai" #":D\246\316\311a\222\352\314\231\367\34 P}HD\2T\211Q\a\200\313&" #"\300\30%\337I\2423\16eGk\314x\305\220\357\23\vi\333,2tI^" #"\206.\367\352\352:\336\337\22\207\211\341" #"\341\201S\272\276\377\341\a|\367O\377" #"\204\363\371\214\217\37?\3665u\271\\\360\311'\237`Y\226\30W{AZ2" #"\336\177\370\0w\307\241V\274y\375\32" #"\267\267\267X\327\25\237|\362\tR\342" #"D\272\333\333[\274}\373\69'\34\16d\205sZP\234Lnml\354\231" #"\253\30*\263\265\26\215\32A\30\246u" #"\205\2111s\357\214\307\336\245A\25\205\251D\2465_+\2545XZ9l\1" #"!\342\214A \235\336o\316\3709\35" #"\0\252hd\35\312\261F\364\216\346r" #"\270\342\211\16\343d\200\247\225\f^k" #"h\316\312\231\0305\336\333\314\332\246\376" #"\276\305$bb\321\346k\322\357\353\354" #"WJ,\363\261\226\216\354\34\321\215\320" #"\222\246\30+\332\f\35\210\3629\307A" #"\2273\2545\34\246\246\"\217Dp5\226\\s\316\321D\313$an\230\e " #"\312\201\6\34\326\5^\351\361=W\250" #"f\355\341\274\316g)\201\366O\211$" #"\240\2\335\2662\345\321\3346\263\351\4" #"`\223\a\352\364\16\253\207+\218\304" #"\245\5pG\262\311\3475\342\210\243\257" #"\207\301\334\322\203\34N6QL\256\b" #"\215\0160\365\276BG\17\2474\260\264" #"\306?\v\26U\223\311t\275\203<\211\365\356#\246\251\32\244X y\321\234" #"h\351\271*\371k\1\2644\216\27\360" #"]\374\37\367;\366\211\222\24s\202\303\22" ) 500 ( #"\361p\376\32\311\4k\26s\214\24`U5K\377\214\vAB\243\203LT\0" #"=\22\255\256)\336\n\252\5@\256\"" #"\tB&\26\225\0032\231\t\353\272\240" #"\2345\362]\356I\301B\266)\331\217" #"\336\230y\242W\251\222\v\204\227|b\367QN\6\367x/u\3\340\364\242\a" #"}\332[\215\6\374Fw\215\262\25\244" #"5\367\21\350\332\303)\245\250\250\f_" #"\366\236\214\366\275\225\200\3268\a!\330" #"h\230\241\2262|\302\301Q\322\26\t\271z\243\226e\5\32\231S4\312I[" #"\310\332\334\e\355\376\302\nshp\t" #"\220\217\327\34\0\223\221#\21COv\201\30\330\4\204\24i\257e\236eM\275" #"r`tShUM\357\0\235G\370\376g\211PN\v`%\316K\312_\315" #"\32\266zA\225\374\ta\257\231\302\242" #"\314\35\213\265\260\221i\303\6)\245\214" #"r)\310k\242=X\245\345\203\330S\215\27]\362\201\231@i;&L/K" #"\331\20\221\271w\233\236^\2760\351\24\267x\220|\371C&\201\b4\\\320U" #"\231\255\r\e\263\346\r\207\3431&\17\215\3k\tp-Fw\224\236\320\263+" #"D\340\253\256lvx\265\312\302G\332" #"\326\273\273;\274|\371\262\177\276\32{" #"\20\32\302\303\272\4\230o\370\263?\373" #"s\374\352W\277\302\337\375\335?\242\226" #"\212\327\257_\341\263\317?\303\325\361j" #"W\262\236\3\213%\226\0234\335JA" #"\232\222\343\214\234\271\220f;\250\31\230" #"\315e71\e\36\357*e\e\372\264" #"\351g\236\227\23\346@\335\34\235\311\365" #"\0\244*\207s\243S\222\262\246\304f" #"\264\310$7/\354\0\3671\316\26\316" #"\304\361\260r\"\335\367\337\177\217/\277" #"\374\274OH\322A\365\274\354\251\r\355\2152\23s\261B\t/^\274\300'" #"\257\337\340o\377\337\277\306\277\373w\377" #"\3\356\356\356\246\262\37\247\307\351^Y" ) 500 ( #"F\311\310\306\252s\331\230A\263\354\221" #"\203\271\35%*=\317\307\307\a\374\354" #"g_\341O\376\344O\360\253_\375\n\277\370\305\317\1\a\256BW9J\234\241" #"\363\2165A`\332(IX\227\236<" #"x\344\271<\350\305:\247\301\224\265\326" #"\265\212\275T\334\206~\0320Z\240\221" #"$\b\366\204\357\244\37L\375 \331\37\372\3$x\aw\363Z\321~-\336\200" #"J\275\276\376N\301\365\361\361\204\257\277" #"\376\r\276\375\366[|\377\375\367\370\346" #"\233o \246\217\1\256\365\21\271JT" #"\344d\360\341\303\a|\376\371\347x\373" #"\331g\310)\341\315\333O\360\305\347_" #"\340\366\366\26\26777\270\276\276F\211" #"L_\323\373\206O5\307?W\224\241\321kL\20Z+\270\224\313\356\36\264\366" #"u(\325\266\261I\260\2241|\4\350\211\345x\16\6\371E\317\345[J(\22" #"Z\v\355m\37\333)\335\364\260\353\22" #"\223\244\231\357rX\230-\367\b\3265}o\2165\303\237Z\23\233$\206qh" #"\230\206\24346\202R\203\276\365\365\313" #"\271\363\373\322\364\254\31\355\a~\35\223" #"\236\4|\270\26\227\16\222\372\341RE,8\1b\2\nGm\21\364,\v\26" #"\20\370)f\31F%i^\177\336\331)\240\6\2133\2445\3\20Z\342\201l" #"ya\265$%\224pY\230\307\24\v\0\310\201\1FB`\326n\362s\r\315" #"#\2610\353`U\222\203\371yq-\f\tF\25\303&\342\1\300y\edH" #"N\ter\v\220<on<sX0\226\264\344\222,\257\201\225\3109\1i" #"\201s\5R\264\16\0016\341'\310qc\\;\327m\35\353\252TV\226,|" #"\311\27\236\205<[IF\344H\220\24\323\21I\16\332\250ph_\4\2576\201" #"\2209N\3738s\345J\20\337\317\377\37\322*\323" #"\271\275\177\336\v\263\346\2766\211\361Y\251\30\169" ) 500 ( #"\225\243\342\215R69V\210\271-\245\0J\252l4\365Q\306\300L\261c\3" #"\304\20\0221\355\221\24r\352\244\6]" #"\251q\213k$E\5\314\227\220\261\3043aB\23\362\246h\330\206\30m\e\222" #"\20\30\17\300R\251\233\27\261\305\347\300" #"\2445\5#\\\303\362\317\334w\225&\275\213\31\b\253j\323\23\3156\275Ka" #"\f \306\25S\202\2303YQ\313\4\365\265\354\23F\272\0365&*N\217`" #"\202I\272k,\353\312J\26\370}\375\b\234\336i'W\254\2055\345p~\350" #"DN\253\30='\214-\35418\223\237\21684'\300\232\256hf8\34\27" #"\224\255F\2\347X\227\25\331\347\361\3051\0Jk\263\2054a]3\312V;" #"j\317K\356>o\313\232\307\241cl\f[\363\302\5U\3319\227\227Q\276\230" #"\1\247B\231;\372g\314\0r>L\365\245l\317\3\200\347\224;\240\256\233|" #"vG\6\330j%\325\335\330\274\242\356" #"Q\30\242\254\330\302\277m\205\f\366\245" #"\177\243\376\330\372\364\251\271t\242\227\247" #"\305\245\177\227|B\367\277XV\r\4\305y\330\277|\371\n\177\376\347/q>" #"_z\300c\311q\332\0\30e\221V\350\357\230\"0\262[w\224\270t@I" #"\0262\177\315\345\35\375}\317\376\2423" #"?M\363\264\365\373U\272\325\227\256\223\a\34\242\3344\34*\b\304<J<*" #"\2372\200&s\324\324\220Z\330\253\344\f\25y[\255\270~qM o`\343" #"\34\b\32zGxd\376[\31\226%\243\314jh\245\4;\16\224\306N\325\377" #"\361\177\376\237\360\27\177\361\278\36\217" #"\270\275y\201\363\345\314k\252c\263I" #"\221,\340\324gv\273\232\t\34\314\305" #"\a{\240\3&\347\214\253\343\25\376\303\177\370\313\16\242f\0\246\337" #"\261.k/)\246D\213\230\256\375jc-#\264\300\2647\342\224" ) 500 ( #"\e9Y\310:'\307\337\267\16\4bO\230\272\201\207,\247\257\3\3j\321$" #"B2\375\356\3\254\314,UPu\273\254\332\214zgK\t\2539J\331p\377" #"\361#\36\356\37\0\30\276\371\346\e\374" #"\327\377\372\217\370\207\177\370\a\244\224\b" #"J\313\350\310m\255a\273l\270\177\270" #"\307W_}\205\327\257_\343\347?\3779>\375\364S\\]]\341\345\313\227\375" #"\300\\\16+Z%\b\246\27\352\5\315\35\217OOh\265b\25\220\2054z<" #"\f`\300b\vJ\241A8\314\272\27\346\274~\265O:\270wG^\327\0\236" #"\2657R\365\203 Yh\350FEA\2155\372<\202\30\304\244=\353\200\211E" #"\234\326\31\266u]z\3475\3675u\366\36:\263ZJ\a\272s\\\0210\n" #"\256)\336\313h\36\214~\352\210U\361" #"\357\255\341\260.@\245\4H\372K\225" #"\311\231\34\244!\27\250\16\263\272\323\34" #"S\273\351\375@\263\304w\237\323(\361Z\30487G>\260\363[\376\272b\306" #"S\222L\243\3662\271\326\232\252\2JX\310v\217\n\1\260\227\34\230%d\3" #"jRrM\17\346y\334\247\366\335\360[\6,\252\24m\222_\351\235\3668\16" #"\v7\224I\346\326\23\312\272{\206:\313\fc\37-)q\0347\320%\0315" #"\300\255'u\207\217\244Y\373\236\367\306" #"u\334\237Es\244%\364\311\321\273f" #"9\1\225\367\213\351\234\234c\266\312\354" #"j\302\26\363\237BK[\316\e\345L\245b9\254l\264*\25-\342F\266\4" #"9\304\251R[J\211A\17\255\237\21J\"\20\361\333\315{eG{s\256 " #"\316I\271\356{\\o\350E{\303Z\350\310\341\21\323\26\312\222,\365D~7" #"y\321\22\220<\372U\226\336\370N\371]\330\213\251\304>%\272?" #"\255\22\4H\265q\326\311\357\274\324\202RKgR#'\343\376\316" ) 500 ( #"\374{\276\227\321\177 )\ab/p2\350\34\217\206\334\2131A\236%\203\344" #"\"X\315\221\370\306TO\e=\es\365e&&H\4\321+\271\263\367A@" #")\266u\302l\215\317\17[@^\353>a\21f\310yA\253\241\355\217\241." #"\313\22\246\4f@\270\377\364\370,\2e\212\277=\311\b\311U_K\\\256t" #"\355\n\327\230\344\322\22[\364\336\260\n" #"\257*\266t\333\0005\365)k\355\305" #"y\354\336\343\204\254I\343&!\257\362R\n\245\v\226\250\311d\3E\353Ad" #"0j\206%\257\354*\17\200gF\375\31\247o9j%\373W\312\376\220\340a" #"3t2\355\331A\243\2277D\305{q\377\346\215\32\316\32\337o\216\206ay" #"1Jf`\306X\e,\36\264&\231\b\20\317\214\217\26\216\306\317\246){\332" #"w\370\373\356\340\354\31KkhfX" #"\362\202\313v\351\367\232`\270\264\206v" #">a\211\201\2\312n\225\245\352`\320" #"\200\5\n\340\231\305\226\255\240\31\17\305" #"\335,k\337k\352\264\240\346`:6" #"\330\0\254\325\343pC\2162\357\236\r\236\337\223\16]6:\r\v'~\237:" #"\250U.\0\264ms\342\201\212\312\r" #"\341 \233\273\306\330h\331\245\234N'" #"\334\334\334LY\375(\227\302L\220fw\177:\270S\342(b\213`\346\261a" #"_\275~\5K\tO\247S\17(b\261\372{j\373\22qk\341_\351K\337" #"\210Z\263\fz,Q7w\26441R\30\357@\353\271\263c1\21\6-\301" #"9j#\200,\3y\3\235\"R2 Y\260p\234\350\6'\250\225\357m\n" #"\v\235y\315\361\237\215N&\301T\250\361B\31=\237\231\367\0\352=\b\b\\" #"\321\251\302l\260A\277\376\365\257" #"\361\273\337\375\16\337|\363\r~\363\233\337\300\335q" #"\377t\17K\206c^qu\365\2\0\17\375\343\341" ) 500 ( #"\n\227\355\214\247\247'\\__\343\213" #"/\276\304\333\267o\360\352\325k\334\334" #"\274\300g\237}\206\353\353\353a\373\347\32[I_\340RJ\37O\255\362d\37" #";\334\244\211\35l\335\341p\210\262\256" #"$G\21\334\247\203\vf}\332\326\274\17\346@oF\246$\247!b\34q\310" #"b\321I\3361\0\236\231\32\4cU6&\244n\354+\320\301\30\27\202\326\20" #"\3q\306\365\2250\3207\0\266,\234~\367\354\332\0\354\254wfp\346\0164" #"\37l\35\233H\324U=\37~\203\351i\t\310\3169\362X\203\325j\r\16&" #"\344*C&\313pk\260\344a%\311CW\223\205\304h\272\261Y4E9\332" #"1\232\227\326ue\225\2j\274R\2713cY\0zHK\327\230\341)\372." #"\342\f\321\263-S\202[Z\303\22C\30j\0\304\271iln\330\232\301.`" #"8\36\17\250u\364\27\314_<+F\31\224\237iX\226\301ZI\373\3345\264" #"f\260\0\35\201G\273W\260\30\200\271" #"Yj\256\b\365\353\r\17\353x\343q" #"\217\343L\253\230\306\354\246\0044\353\261" #"\225\204\305^^d\221li\230Mg" #"\337\275\206\213\3\260.\v\233\372\362\202" #"\255mH\316\322=\e\2602\262[0\244L\236j\217\31\302#\1\200\304\202\273" #"cY\227\236\4\316r\223y\35\253B\205\304{`L\253HH\35\240\246\234Q" #"\260E\323$\340\265D\331\334\3734\254" #"\316TZ\274\333~\376\215&\3335S\362\265Db7\237g\363\363\237\253\2049" #"k\260Q$\35z\266\221@p\210\301\260\370\252\245\242Za\5\"\330\343n\321" #"i\234\30\271L\216R\233\372M<!" #"\345\250\244X\306\222\255\353\316)iS" #"\3234\1\344\326\266~\275\302\35\3738\340\2735/\231\32\t@&" #"\"Q\0\357$\210z\215\3446!\371\242\231\310\3049\301\34{L$" ) 500 ( #"_\363\202\34SJK\35\225d\355\323" #"^\321\330\271)\304\365\206\366\336\235\370" #"J\316)l\230\16\354\222\22z\231\0" #"\343\376\32\302\321\313\332\316Ek=\254" #"X\262q\244\272{\227\37Y\262\336\257" #"\302\204\227\353\343\262\25\30bPS\3636\254/\246\203[`sY3\340\t\245" #"\220\231\254\245\340x8\340\262\225x\240" #"\2\n\232\367,v\302q8\4h\212\27\340\255a9\320\v\325\232^6\302\367" #"s\335\1Pm\336]c\216;Z\341P\t3z\307\255\241\25\364\320\352\345\224" #"P\313\320\300\216\3u\224\363\273]\211\202\206?7\35\316\2204B\366jZh" #"\263\326dY\226\336\351\256\303\261\264\332" #"K\364\300XD\4XQ\306\211\306\252" #"\352,!\265\n\254\353\21\34\217K\363" #"\353\241\263\e,\0250\16D\261\273\356" #"\336K\237\263\365\211\273\3\265a=\254" #"(\225\272\342K\253\375{\365\277\347\vwv\321`c\314e\4\213`\25\325|" #"\326\246\315H\206G\345-\226\202\232\r\357<N[\3118\237/}R\24\237y" #"\370\245\326\212\226F\a\355\0\236+R" #"\212\22}\260\322\300`\177sB\327C\36\16\a\224\b\374]\216#Vbb7" #"\251\vJ\273\3\2633/\21\214\314\251" #"A\314a\304\257\322l\363\326\365\310Z" #"3\374\2476y\t\363ve\312\361\367\226\205\261\246L\236@\330\301& kL" #".(\360\27\260\eeD\263\204%\355" #"Y\252\24\354\277\260\230\326\201\336\341\341" #"p\304\373\367\357\261m\5\337}\367\35" #"\276\376\372\327\370\346\233\177\302o\177\373" #"\333]\200\373\362\253\237\341\356\365K<||\244'i)(\245\340r9\343\345" #"\313WX\327\214\177\363o\376\24\237}" #"\366)\276\372\352gX\26\256\215yo\345\30Vp>?\305\375'\310D" #"\275L%8\375^w5_I\2077:l\307\272\376)373\321\200&" ) 500 ( #"\352\345\377\337\6\226-\254\263\262\331\216" #"\215\0301\"\a+:\0\0230J\306;Fh\t\263`\233\30u\314\16\25S" #"\203i\0346-\326a\255\265k#gp4k\320\304$\352*\212;R\354/" #"\201\216\24\207C\235,\203\24\217j\255" #"\34\257\335\302\266\253Fc\223\265`_" #"\225\264Uh\"\235\365C\322v\366M\275\262\242C\245n1\242z\337\224Uk" #"\305q\245\275\325\371t\351lWkb\233G2\303\22e\236\342m\351\277K\377" #"\\V\311<<\254\264\366\6\3603\303)f\330\261\1H\21\23\302s\323\366\216" #"'f\332s{\251\202\22y`\234\3\235\205r\357\207-\200\2766c5\364C" #"\373\3719\362\374:\335\2757j=?C\22H6m\333\206E\211\177</\352" #"x)Q\341s\v\31\36\202@\2e1\34k\35\376\361yo\211\245\353]," #"\1\331\30g\22:\263\236\fd\300j" #"\303\26\25\200\204\360\2667&\231\331\254" #"\203Q\305\231y_\214\216yt\351\325\266qT:\1\354\334o\300\241<\2\210" #"\"=\2749\265\347au\326\334a\30%z\276\0\306L>\"\371\360\213(\332" #"\357{>\v\16_\231\367(\34\235\4k\255\366\206-\221I\252b\300,\0-" #"\237\225GSYv\371\204/XS\270.(A\215wV\202d`\377\0\372Y" #"Y#vt]<Bz\350\262\245\34\25\251\31\254\353\372\25\37:\31i\353\220" #"\3\4\2710\3\372\332\327fC\253\32" #"\334\265\48E\217\377\363Y\246\353\262" #"DY\337\345\242\3308\300\350\214\205\236" #"_'\311\315\324\253$3p\3179\246\251\305{\227;\304\300H\243\177AqN" #"\373\16@\367\30163\312#\v\a\363\230\32\360\234\362\317\3139*Bq\335K" #"\22\252\367Q\372\206\17\255G\212\214\34\215\224" #"3\17\3710\372\265\310\316\203q\223\276\366pX" ) 500 ( #"c\316;\203\207K\217\2303.\2473" #"\256\16\307\30\4\0016V\304\246\236\301\234^\270G6\271\36\168]N\235e" #"\276\\.#+\3139J\30\265\3\324" #"\347\264\274\26\306\\r\246\216\264\354\300" #"\304\34\250\370\331\32Y\\\273\266i\356" #"X\355s\264\203\371P@\324|\365\231" #"\25\25K\240\346\210\4\3J\353\235\266" #"#\v\32\e\233\372\337u\224\210\243\374\256\337\277m[w\276\340B\231Jp`" #"f\5\204\340\177z\36s\23\2326\371" #"\360\357\214\6\305\3552\226\230\211c\240" #"\336\b\215\345\362\365p\340\206*\5K" #"42zm\240\375\321\260\230\3326\226" #"~>\371\344\r\226u\355L\27\313\242" #"\203i\336*\273-\17\353\312\322\221W" #"x\313\321\374H\261|k\25\245\320\372" #"\233#\242\3217\272\305\263\323d?\35" #"\304\207H\260\304\346\222]\35\200\260\3\251X\373]\37\324\32jR\tuHI" #"f\266\265DIz\211j\a5\340d\334\244\a\327{\223\214F@\20\34r\32" #"\1(O\240\217\327T[\245\17\243\243" #"3\325\335U\304\200\303\361\210\323\351\4" #"\270\343p<\342\341\341\1\177\377\367\177" #"\217o\277\375\26\177\373\267\177\e\316\a\\\23\2\330777=\250=<<`" #"]W\374\356\267\337S\272\260\254\370\347" #"\377\354\27\370\203\257\276\302\247\237\177\206" #"O?\375\24\336X\202>\237\330Q_\252\343|~\204\354\256\20\343\302uO\322" #"\332\233E \212\321\276\332c\263_b/\257\345\314\301!q0\r\r\251V\362" #"\330gZ\267\363\36g\3\214\367=3" #"\373u\36\203\241\20\313\337\273\266\343s" #"\244\221\226\264H\317j>\310\305 X" #"\34\236\332?%\200\225\326\17\17\335h" #"\344\234\0\272\232M<\22l\3056\370\220\331\314{\276\2038\376r\256I3" #"\244\2109\0266bz.\363:N)@(<\272\300\203U3\3\314\3415Q" ) 500 ( #"\202`rOQ\371\260v\2730}\246\201\36\224u\3338\245\22Q\372\237\264\316" #"|/\334\2179\345\360\27\346\272\20\250\367`p\324tLP9\3444\2D\265" #"q\216=c\214\301m\224\303\365N\346\204\6\bG\22\254=\31wo\270\\\266" #"\335\236\237c\246\222F\367\36\256!\271" #"\234\312\371zG\303\355}\0Z\275#5\v\317\372x\206\220\21gS\232+@" #"q\306\316\25'\17w\b\eM:\200\243\245\204\324t\317{\277\336N\2\230\210" #"\23\203\207t/-\211\314\271\267Nj" #"\270\207\354%\247\30H\300\2013\360\306" #"\3049E\a\275\267I\337:\215\337\255|w{`K\222b\226\314\351\231 [" #"w(\251\315\221\220\202\351B\267\367\322" #"\272\327>\316\306\322\275;\233\360f\r" #"w\v\254 `\254Z\242\6\213\270=\237D6\366S\233\264\306\2R\324Z3" #"N\327Rh+\26\372k\271\350\f\222$\32x\363\220\326\20\177\ri\244\2002" #"\327\"\245Ol\3222jc\341p\237,\333f\tK\260\273\332I\272\210\32\333" #"\0\0 \0IDAT3y4'\322s\\\30\373<\b\263)QN)\365" #"k\355\v\222\272\230~\237r\225\2214" #"r\216\251Z\347|\367\31\333ex\210\367*x\336\217\365\3562\301\370\fJ`" #"\330\204\a\250!TN6\341\324\265\25" #"h\36\350\f\204\1\360\f\27{\355\36" #"\204\23A\257S\212\317\311q\6\236-\334\270\274\26D\25.$P\255\322Bn" #"I\2421\342yx#\253\302\362\310(" #"\333\257\353\212\324\22\362\232\307\315\4\240" #"\342\310\321\275eN\316\"\351\31Di" #"\377pA\266\214s\267\307\330\227\351\224" #"\305\364\206\266h\36\321\314\360\343r\340" #"\241\217\275\247\233\231E`;\"\347\241=\235\201[\317>r\2\32\255" #"\240rJ\330\266=C4^\374\314$\23\270\225\32\326e\3016\324\b" ) 500 ( #"\370)\31Za 1w2H\353\32I\300\b\20C\3734<\365f?\323%" #"<C}b\261\344b\1\e\322\2\215" #"\235\235\263$\226\224\302\325\242g\214\34" #"w,\246\266\347,m\330\270\0dn\345+\253@\240\311j\235a\205wfg" #"\3336\0304\217\272\354\01730\230y" #"\260&\4\231k\az\247\313%\246\207\251\244q\200aL\262\343\272pl\265\"" #"'\216\27^sLcs@\vU\211\323\34|\347\246\3039P\360\237\343\317\274" #"\32\346r \365Nkhy\2`\211\205k\314\20\31\253G\202\220\2\260\264\30" #"jA\366\254\2063\210\222+\206\v\256" #"%\337=w\356\231`\315\340\360\32\332" #"\336\34\303.\362\322\3\312z8\364&" #"\224\224\22\36\37\37\361\356\335\217x|" #"|\304\337\377\375\337\241ld%.\2273\276\373\356;<<<\300\314\360\346\r" #"m\354\236\236N\270\273\273\303\351t\302" #"\341p\304\371|\306/\177\371K|\372" #"\351\247x\375\3725>\375\364S\254\353" #"\202\303\341\210\253\353+\264Zp:\235" #"\340F)\r\367\17K\227\2455\272E" #"\30\233\2634\n\224\214\230\264\357\210=" #"\223\261,\326\273\207\327\260\231\232\315\340" #"\371N\30\220\227\274\257\200\3142\221Y" #"\322\260\323\340\2\235\5\233\331ZUl" #"\274Vxb\331\177\363\341~\340\2562b\v\211PH\261dr\216\320\357\316z" #":\17\346S\207\250\336gU\223\206\17K\242i\337[\34H\226s\227\3048X" #"\356\27\330\236\247b\315\a\334l$/" #"\260\v\260\334\313\303\340\371\232Oh\226" #"\340\215\311W-\254\16-\371\30k\315" #"\272\364K\a?\257\321`>\234<\366\325\n2\233\262=zn\257\225r4\217" #"\264\26\222\1\4x\23s\31#O'\240&f\307\343s\207n7\216\243" #"6$\26\332\303s\303\363\363$D\373" #"\370\367\35\302\363:\242\304d4\337\216" ) 500 ( #"\252\322\304\260+.\312\17\32@3\202" #"\361\231\271\254\255b\366z\36\361\230\215" #"g\212)\343Y\2413O\210w\241?g\257\f%\"\265UX\363\230r6\342" #"\227\211\0341\353\226Z\r\216\255\266\236" #"\344-k\2\34\354e\231\22\262\234\302\266-\222|Ka\3U8^\372p8" #"\240\332`\240\325(\227\226\214R)K\333W\332D\a\0\313\"+\264\25\16\237" #"\206\226\204f6@n)\245K\rs\200k]c\334h_c\234\2305\334!" #"\34\212\1\214\259/\0047\205\23\321r\26#\37V^U\375B\324\276+1" #"\350\372m7xcU\272\337W\200)\16i\300\350A\312c?\363\354C\237P" #"Z\353p\240\312\221\2447K`5\213\357X\211d\236\316+\255\275>i-\b" #"\24%\fs|\321\272\236\253@\235h\301\300B\375\274K)\6|\351gW`" #"\32\2440W\34\4\270\373:\305H\354rV%>\4KS\302\0\227\316\177T" #"\277\225X\345%\310\240\344\0217V\244" #"\354 \267e\234\340g\26\223U\207\214M\353e>\267\227\24\362\6p\271Q\16" #"3z-\2043y\37\v\200HRK\351\347A2\303\"\206\313\300rE\303h" #"zB\366~\220\227Z\2\324\34\343\1\223\325;\206\223@\337 \215e\236\24f" #"\310\311\22\362\32\17\301rG\341\275\223" #"\364\231\276I\300If\320\264\206\b6" #"\307\e\365\223\211\31\340\357+\237\350\277" #"\365\362\264HT\326\333\"\3237\214f" #"\206y\201\315\22\212y\261\1\306\216\317C\202\a\243\236\3p9rxd\2\305" #"\e\256\256\256@&\267M\201adY\345\262\341x<2lM\332:w\357B" #"y\5GQ\371-\230\214\26\214\222@^J\t\347\363\251\3&\213\262\2145\a" #"\300\5i\211&\360\233W\344d]\3335'" #"\v\32\207\312R\31\357k\327X\30\a\204\22E" ) 500 ( #"\263\375\206\325\273\32\31\376\312\r\356\336" #"\345\nl\210a\303\310\274^\266\355\22~\273!8O\322B;\222-\330j\3" #"\28\215\222g\260dQ\222V\6\250\6\223\270J.\364\224\321\4n\e\3s" #"m#{\355\31%&f\27\223\26j\343\230_\215\254\216=\307\340\302\205\213V" #"\310\272\2660\366\376}\201J\233\330r" #"\16&\206\214\327\325\325\1\260\204Z.xxxB)\e\336\275{\327\23\217\257" #"\277\371\r\336}\377;<>=\341\376" #"\376\241W3\216\307\2538<\321\17\325" #"\323\351\204m\333p{{\213\2343\356" #"\356\356\360o\377\355_ \245\204\317?" #"\377\2o\336\274\306\361x\354\357N{" #"D\221\344\351\361\21\335\373\25\200\233:" #"\311\243:\221,\244\31\206J\202\260\37" #"|\255\rI\215\366\363\262\250<\235:XJ!O\320D\242U\a\362T\202\323" #"\265\t\20?O`\236\37\30\t\4\216]\4\341{\315n\r\20\330\227Fuh" #"\314\264\230#MX\4\b\374\330\e2" #"\375\236\371\363\352\250\34\345\234{\327w" #"\n\315u\211A\26\332c5\16R\5q\36\272<\234-\200\370\234pk\357w" #"yScK\332\346\25KB\37\17:w2\363\272\t,k\255\310\211>\231\235" #"5S\311\357\331\363\323\263^& 3" #"\222\220\241\367\37\215w\223\241~\23\vX\373:Pr'6\216\372\372\0\373q" #"\377u\"FRJ\360R\273U\227\336" #"\311\314`\316\207\354s\231\335\234\370\350" #"\374\230\201|\a\326uCN\353\356\314" #"\31??\331\274E\367\374y\333(\311\210=\276\367\330NPC\326%\6Q\350" #"\32\206\254\254\241\206o6{5\246\22o\5l\261\301\0346\237\34\212B^\0" #"I\230\342\35\307\347o!\37\324\311\227\30\344\370L\212\230\356I/\351" #"\36}\32\326\253\3%H\226%g\264$o\327\214\323\351<\244O\266\227" ) 500 ( #"$\314\353s^\377\333V\201L6_\f]k\225>\2729&Y\212U\17\322" #"\212\357V\356\"\343\314\36\353\222\t\317" #"<|f\226\367\364\353r&\253\314C\3510\301\211Z9\274\222\211C\266\320I" #"{m\260E\243\347\271\273\273\37q\263" #"\356\a\257\276\v\300`\313\250&i\375" #"\316\225=\255/%\232l\354+\2417" #"\206\212\363;0\372|\237\235\317\347\335" #"\372~\376\214\265f\347\3375\313\27\365" #"5\330\330\0\331\240\204\2\241\311\235\233" #"\e\2373\271J\6\346\367\r\240{4\3#\371l\321\204\0167\0304hB." #"\f\336'>\22l{$\320\373\365\324\267Be\274:\4\276\3511\201\214Q\337" #"\323\375|E\234\351\255\206\314\217\321\377" #"\371X\373\231\354ZT*I\211\326&\36\231e-5\354!\34\266\360\200\320C" #"Y\226\5\207\225\16\6\343\240d\247\360" #"\262d\264\22\331+\242\244\2u\300\351@T\220\e\32\265ySzs\226\e\r" #"\335\363\225\fo\305\22\235\304Hc\341].Cb \326\23\240\f`\326\255v" #"@\35,\217X>\315I\27X\30\0zx\331\326\272\261$\2635 lF<" #"t\231^\n|\241\313@j\240\36\16" #"\243q\355\271\346\3063\a6\34\363\332\313\234bruh\353{\267Rz&*" #"\243\373\271\263rI\263fp\257\231Us\317\0q\b3sfP\272\256Q\332" #"\363\310Ze,>\3006\2279\0\244(\275\215\fqf[\362\"\a\212\301\f" #"-9\343t9c]\231q\321\371@\315%\206\253\253k\f\357\312\206Z\25\340" #"\bv\207\365\235\314\311\247\303\332\275\227" #"\200\347 \20\333269\1\333\310X\303-cjp!\213\200>[[k+" #"Y\302f\336\355[\4`\370|\302\3738\330>M\354qCg\342" #"\227e\351\f\353%\374\223\357?\336" #"\343\361\361\t\17\17\17\370\370\361#" ) 500 ( #"\236\236\36\361\303\17?\340tzD\235\34\tj\224\330\317\333\5K4?P\337" #"l8\235Nx||\4\231\333\327\370" #"\354\263O\361\331g\237\341\346\346\6o" #"\337\276\305\347\237\177\316\2037E\347l" #"J8\237\317\20\273?\353\264\a d`L\301*\tL)\321k1\356\267\224" #"F\2269\264\213\332\37\234\2008\262q" #"\16l\230\312\240\23x\235c\211@S\17hJ\b&\300\247\300?3vzo" #"\372\"\223Qw?\207H0\4\310JQ\342\233{\27\371<T\205?\267?\334" #"\1\364De\307dvv\203\266q\36'\200\245\fZ\332Ei\32\344\271\273\207" #"n\332\353\332.\333\31\b@e\261\2267\5\374X_\362_^\23\233\"\267\262" #"\365\252\30\ai\254\21;\21\a5\23" #"\307\22\207E\a\230\301\36\373t\177\375" #"z|\277\366\347\275\264m\ec~k\335\232J\353\250I\3\35\t(\e0\31" #"+\314\350\230\343\322K\266\311\357\270E" #"\203S\251\35\204\317\340a~\3073\b" #"\320?\5\310\364\375\272\307RJ\220\r" #"\3638\364(\241\367r\251\6\313\210i" #"\235\206\359\242\373\337p\21@\352\t" #"\226\0002\201\254\32/g\340B\311T" #"\303\345R#\241\235\274\2241\264\267\375" #"\314S\t\331\32\254\252\347 \364\230y" #"\260\272\372\f1\315f\326G\240\346\364" #"S\342g\376\271\371\237\2346E\347\242" #"M\211W\36\372_\261\360\232N5\257\325y\355wR &7Rr\302\237\313" #"i\215\346\311p\n\211\370+\246D\372" #"\354y\277\217\367\265\357\253\350\311b\35" #"L\274b\300,\311\243\246\223\227Sbb\227\246\204%\vyS\254|b\210\0" #"\251\2\320\230eU\t\310)|\372\a\203.y\332\234xi\355\270\23\200]." #"\27&\357%\316\3345\357\364\364Z\353#\336\264\237<" #"\343Y\377:\307\246\2310\373\tHM\222\343X\310\a" ) 500 ( #"\227HzK\267B\324s5\263.\1\232\327F\307\35\335\221\4dok#\253" #"\341+\20r\0311\322\272\27\270\205\233" #"\210\355\366*I\262!\223\230\327\250\366" #"\374\252f\\%b\212\311\361\314\244\223" #"\227>\232\317\232\t\265\206V\314\322\v" #"\355/3\222\242\213\307\5^\302\252\303" #"LZ\300\332\313\\Z\220\0\372\242h\6\254Q\222\356\30123+B0\25\2" #"\222(\5\226S\260;c\214\255\16\306" #"\335\313\313\t\331b\302T\e%\251\36" #"\260\0\240\355Y\235n\247\3\303\341x" #"\205\22\a2=/\201\272qb\210\201\207\241\271\200\331X@\3173\234YR\300" #"\2623\307R\26\320|\31\26eGM\352h\16O,\233xi\250\246\16\346\1" #"\234g\306y]W\\j\241\t\274S4\276\246\365'\e@\233\322\334quu" #"\325\201\177\177\231\225\335\300y\236\200\22" #"\300d\333NH\266\300SL\370\311\211" #"\277\263\r}\241\202\216\364\315\3134\206qft\310\20e4\3034jv<?" #"6\233\321\207T\234\247\205\214\49\343" #"\341\376\36O\247G\374\354\352K\\]_\365\3\3@w#\340:\312?Y\264" #"\372o\35n\224i &\251\350{\0`\0nV\35*\340\0323]\372\272\366" #"\212\36@\24@\35\224\263\30\330\241OF#\343\24vK\311\22.u\303\272\36" #"\360\342\305u\a\214m\333p\271\\Pk\305\323\323\23G\333>>\340\333o\277" #"\305\355\355-\276\376\372k<<<\340" #"\375\375G\300\f\307\220\300\\]]\343\345\313W8\237O\324$/+j\245\205" #"\217;\2458\245nxxz\2\334\361\362\325K\274z\375\6\277\370\305/p\373" #"\342\5^\336\275\304\2337o\220\22=" #"\205\265\306\350w\373\330\237\237\207\357\364\245\0266R\0314\fgW\301" #"\260H$8\331f\260dzN\343pa\200\251\245\16\35U)X\226" ) 500 ( #"\3j\35\215\214*\217\352\20\322{\322" #"\3015\357\2659\31\354\200\305\321K\202" #"\203\345\20\273\245C\301\"\201\226\365\320" #"\30\225-\366V,\244\3a\r\305\16\342<%bL\214\235U\2g\360T\223" #"T\277\237\266\267\367Q<\354\240L\311" #"j\224\371\225\350\2268\334{\374\234\312" #"\350\372\274Y\306\265k\352\231X\t:" #"\215d\0\25\346\t\312\321\b\256\26t" #"\"\306\20\354\215\2418\365\240sO\201" #";%\24-\272\357=\356M\311\364\254}\235+mf\26\325\264aY\326\275\201" #"m<'N\262dB\v\4\210\f\200\321\223pwXN\354\304\257-\364\226?" #"u\266\301\364\347\363\341\230\237\201\277~" #"\353\26Z\337\251\24\333\235\203\"\21\225" #"\236^\3235\305\330\313\277\231\221k\224" #"xE\220\344\0\206\212\273\352M\321g" #"\3171*\245\341\326A\240\30\327\e\254" #"\270\300\223\264\267\324\323\16\226\30\27\262" #"\275\373$\24a\3178J\326\0\211\240d\271'\245\265UxC\357\312\37\fi" #"\234\263\336pH+\373m\326\245[\210" #"\362=\317\222\e\353\353\321\314v\300\201" #"\373\206zn\317\16\330\260\227\3136\206" #",\24\2571\226\266\365w\231z\322\334&P)\267\233\2609\v\313\257Y:c" #"\21|jeI\232\r_\2141\326B\362\322D\332q\237\20\370zL>\3250" #"\207(\305\267\341x\4P2b\311\272\315\243GuT\25[\255\21\4\220\264\250" #"\326\234\317\347\270\27\22\177\265n]\353" #"\2332\337Y-\322\302\357\261\214\236\211" #"\210\271\271\2\330\237W\242s\1-Tcq\"\241\371~\262\337x7\216Z8" #"\36\230q)\321\325\303#\6;{b\304\352\247g{k\307(\267\260<\315@" #"\331R8\263XO\f\25\243\270g\332\4~\207s\3+\20[\227\342\351" #"}\3529t\31\205{\2276\315{\311\301w\304\275S\221\22q\325\266i\220" ) 500 ( #"D\306:\271\201\314U\207\16\344\223a" #"\331\352F]\220W\230\272\371\32_\274.d\168E\f\217Q\267\304\177W\307" #"!\365?\363\306\342\215\322\320Y\35\375" #"\243\31Af\327\e4\205\304\e-\235Z\375\251&\317\235\315\25y\2\3309+" #"\353d\20\243\215\320\202K\214\2\256\245" #"\16i\206\323\250\334\323(M\213\247\34" #"\32\01718\206m\223\21\375\206\343\361" #"\32\245\264\230\270\221\261\206\317\255\2o" #"/\2534^\343\2222\222;j\36\363" #"\314\365\275=\330G\231\317\32\233\252\370" #"\362Y&\0203\240\317=\254\353\350DtG\216\251^pu\360\217\322\e\337!" #"3i\217`\236\363\2,\3265\227ZP\2\31d(\206#E\316\2\202\2\275" #"T\210\215C{\16V,!\254\353\22\322\t\307\262L\32\340\343\1\37>~\304" #"\313\273W\200spDJ\206\303\361\32O\2473\16\307#Kwi\6\256{F" #"\374\250\246+\360\367$[{\a\346\272\256x:=v\255\361V6X4H\311" #"vI\357{\260p\206\255\234\221\326\245" #"\337\217\373@\201\207\3435\2452\245\340" #"\343\307{\264V\361\375\367\337\343\361\361" #"\21_\177\3755\36\37\37\261,\31\37" #"\336\375\b\207\343tb\243\344\361x\304" #"\325\325\25\36\37\37q\377p\17K\31\307\343\1\327\a\312\5T\242zx\270G" #")\5/_\336\341r>\343\365\335\35\276\370\342s\\\277x\201\27/^p8" #"I\2>{\373)nnn\b\262\17\a\344\26%\305\360$\3159\357&+i" #"\330BZ\207]\325\fTy\330\f\0%@\220\335\261\246\214\212\237\36\334s\0" #"\34\214&'t\241Q\327\332Z\200\334HV\332\342,\23\232,\235\206/hg" #"\0\200>\6XAS\26Z\r\200\325q \260|&\266qh\201\201" #"!\263qWc\6'\ey\343\3414\17&\311\311\320\2\314*~\360" ) 500 ( #"\271\350s\255\357\245\271B\320\331\267)" #")\6B\307'0\"\0200\271\272\270s\202\225\32y\1\354\32JgFzf" #"\344v`\323\200\255\25\344\320\17\363:F\\\234\337\23\0\270%\\.\e4\321" #"\b>\6\37\250\n\242\1':H\334\331\204\263\330\254]\3353k\2526Y\334" #"oN!1\233\374g\273\206vz\307%\200q\277>1V\202\250\261n\6\210" #"\332ky\347\4\3409\273\245\357\237\231" #"\366\371\300\e\366c\16M\"S\265\201D\216O\tT\236\256Q@\177\317\342\17" #"\220\255\222\274b\314<a\16}\235\356\236c\260R\253\376\333\2517\24 gy" #"{T<Fr5\312\345\336\245dS)\335\32\266\22\322@\320{\224\215G\206" #"R\306\271\0xL\300\222\245h\231\236o\201\330@>\353A:<g\243\373{" #"H\322b\267i\17\200\0254\247\264O\276\315J\6\275\277n6(\233\241\3\222" #"\234\226`\352\306;\346\277\200\262;\a" #",/\200o\235\311\245\354'\367\365S" #"\303\252,\207+\323\16\350[\302\245m" #"Xr\32~\332\6\232\326\204\3375b\350J\r\220(K1\335\3632\355\211\341" #"P\304\367\337\275\215\323TI\324:M" #"l\354\177\276>\5r\237\263\221\203\321Lp\e\256;\210\230\222mAs5\255" #"F\263X\215k6\357\316(\322\251\326J\373\255l\31\233s\337\253\27a^\337" #"3\336\322M\30\26\344\274\227\21\351\375" #"\364\373\303\22\225\345\221\270\212`\32\373" #"tT\214\346{}\236\310\316\211\200X{\305*\2365u\252f\221\234\233\311R" #"w\357\325K>w`Y27\177\216\316H\203\355lx\364\2252K\240-\214" #"\310\341\350\31\360a=\260[\266\354\35" #"\17fv\315\302P\277\227l\214VT\333v\6\r\243G\371\312\21" #"@[\17R\3017tt\t\326\263\22\336\34\233\3058\376\264\242x" ) 500 ( #"\31\315B\215^\210\20\eX\344W7" #"\353\341Z\200\313\21\340\274\245\310\24*" #"\200\350\32\f=]k4\340V\20\323\275\272;3Ch\277\304\301\17\333}\357" #"\310\334\nd\f\257\221\253)\364\277}" #"\0364\2005\16\377\32e\2539\360s\376zd\251&\rW\355s\343Y\232\221" #"M\316\336\306h.{\260\241h\224\252Zs\\.\e\326\303\32A\275B\363\253" #"k\21\373N@\274\244\5mQY\214\1k]2\256^\274@\331*Je)" #"\376\341\361\1\345\333\202\377\375?\375'" #"\374\354\313/\351\207\a\340\361\351\tf" #"\206\307\217\367\270\276\276\306\333\267\237\342" #"|f\343Tk\216\323\351\t\17\17\367" #"\270\273\273\303\361x\315\ts\333\31\207" #"\303\21\367\367\37\221\22\265\250\255U\274" #"|\371\22WW\327\3109\341\352\352\252" #"[\231\275~\375zw\230\325\312n{\351\320Zm\370\335\273wxzz\302\375" #"\373\217\370\247o\277\305\367\277\373\36\0" #"\375\177\357\357\357q\210ia/^\274" #"@\253\r\227\262\341\372H\6\265y\343" #"?[\305\351\362\210\253\343\25\336\274y" #"\5\263\204\233\333;\274z\365\no\336" #"\274\301\335\335\35\334\35\327\327\327\270\271" #"\272\306\213\233\233\16\320\325\360\247C\355" #"\274]\372\4\2355/8\337?\"\257+\255\325&\371\301\34pzy+\366\251" #"\2Kgdt(\317la\0\375R\330Tu\331.; \326=\253c}\r" #"P\251\362\346\320\266\"\263\\\231\215\332" #"\277\322\306\250\322\316\334\4\223\334\3\360" #"\244\231\274L%{9\24\344\224\302\336M\0w/\233\231\3dN\34\vlH" #"H\313\370\374>*\333\351\347\312X1" #"\356\237\326h\203y\326\347\353\347\365\273" #"fFB\214C\251\25\a\5\346\270\302\26\300R\25\202\316\370N\340z.\343" #"\315\a\215\16\e>g\306*\210qb\320\243\f#\336\261\336;\223N\246\352" ) 500 ( #"WW+Z0\246\2114\26c\311\262\364\201\17yY\3402\375GXH5v" #".\317U\2259Q\232A\330\374\354\225" #"\304\314\357d\276\256Z\331\364\264j\354" #"vc#U\a\3423\223m\303\211\a\266g\377\364\274\232;\326\t\204\315@\177" #"N\342\347\265\241\367\332\335\1\22+\220" #"\262x\22h\221\256\\\223\356\24\37\365" #"=\22625\220\306\206\243y\20\220\316" #"\270a\2538\30e\1\320\322*\213\236\360\316\f\16`\277@^\304\212\3\\\37" #"\215%y\275w\327`\237\326m\3138\"}\211s%@\222K\n0y7'" #"\3219\3\220\223\235\226\213\322\36\220\315" #"\373t\2562\314\311\247pJ\a-\255" #"\241\365g7\364\244=\251\232\22^\225" #"\375\305\374Z\340\220f\261\26\262\301\252" #"\365\3470\257\273N\322\300QC\316\3" #"\227_\275u)Z\262\0300\201\251\332" #"\4\222@\224\257\16\240\352\336\260\254+" #"\352\266\241\"\252Z\266\367d\337'V\0G\207\a9\4gs\240\251\21rT" #"\205\264/\236\177F\255\4o\302T)%x\5\252\25XSS&\23+\0H" #"\v\207\335\2!\355#Z\207\31\260\304" #"^\254\323^M)\354\267\302\213\36!" #"\345@\333\313\224\346s\304,\252A(" #"\201\327\306\367\3503\223\205<$\205c" #"\225\355\3078k\376\202\244\214\272oL" #"\tM\257\314L\304[\227\334\205\v\30" #"\22\345\30\232C\260u\302n\310\202\364" #"\363s\254n\265\341\214\306f\264\224," #"l\250\302$_\231\265\267\20\230\23\264\315,\255\254\"\0\340|9\263C>X" #"&\371p\252Y\307\215L\255~\266\204Lb.\217*\253^\243{\271Vv|" #"J\324\37\321\rH\216\3239\0\364d)\302\0\23b\370\360\35TiH%\223" #"\313v\16{\260\260+Y\6\353\3257\\<\260\212\206" #"\325\2260k\217\222vk\275!I\vHY\n\300L:" ) 500 ( #"U.\20 \202ys\3302:Kg\272\236\a\353\334mLo>\367\341}\350" #"\221\265j\\\351\371r\351\323_\"\264D\226\e\323D\"1\310\213\0]\1\302" #"'SSd\316g\16nx\316\36\315\301\215%]N\313\311)\23\334\265\212\355" #"\22\354h\253h\227\212o\376\351;|" #"|\377\2413\211\347\363\t\2454l\245" #"\340\376\376\201\376\220\2473\356\237\36\361" #"\342\3055Z\253\370\361\335\217xzx\302V.8\237/p7\274zu\a3" #"\303\303\303\3\336\275{\207\367\357?@" #"\215\34)\31noo\361\355\267\337\342" #"\356\346\16\37\336\177\300\341j\355f\347" #"J\22\30LW\\.g\334\334\334\340" #"\376\376\36\307\3435\0\340\366\3666\300" #"\241cY\16}\360\300\375\375=\35\6\34X\327\3\350\332\301\3738\36\217@$" #"\16\324\374\241\227\252\216\307\3\356no" #"\360\372\345K|\376\257>\307\262d\274z}\207\227/_\365i`\2\2135\262" #"\377\234\310^\256Q2TyN\262\207E\345\236$\251\210,\227jh\237\226\16" #"\230\304N)hh\17\254\v\307\246f\37l\212\2i\vvq\20i\3\270\251" #"4\330AC\e\200\273\24\262\203b\367" #"\365uX\17\375`\254\255\304\340\200\fXBmd\254\314\fhN\t\205\17\371" #"N\a\e\30\327R|\330\365\345\0G\2655xJ\321\243\344=\270\231YL\307" #"\31\346\376\352\4OQ\2473\313\221x" #"%T\255q\355\251\260\t\22\v\276\327" #"\315\r\26\\L\204\232j\334e\354?\236C\316\31\305\243\300\231\22R4i\1" #"\350\32\312%/\330j\211j\307\320g" #"\316\225\v\355=\201a2F\322\203\22" #"\204\245V\341\226\231tz\34\324\21\330" #"\225\374\2301\31\265\260\1,\315q\bg\0001\320\212-\322\315v}" #"y\242\346vY\26l\356}l8\202\234\230\201\254\222\36\262[\245\227." ) 500 ( #"\335y\6\314U\0\200 {\276\306%" #"\313\352\350\231nq\376\337\304\22\317\300" #"\365\260,\234\6\210aGi\b\277\323" #"\t<\314\314\257\256Y\211\312\222\26\306F\37\325E5U*\371\323\373'x\3" #"lI]\216\203\0\306c\352 \26W6\202ZC\245\24\202R\220\234@\214" #"e\355\317\27b0\a\350\330\201\24\217\6 Xo\3526p\360D\316\31\tl" #"nl\336: -\333h\360\344\273\36})J@.\227\r9\306\274\312\26q" #"f\302\265\276\365\31s\0021\316-=\343\301\3026wN\222+\5Kf\\\35" #"\36\341\326K\333\2\271z_=\tT\222\221\254\263\257\343\31\251t>~\277;" #"`9\2440)\3\311\273,E\244\30\207f\2002\328\326\2640\tM\2K" #"\274\337\352\16\2044\253\217Jn\r\265T\372\322O:r\255?\332g\221\341^" #"\26\16F\341\376l\35\234\317\261x^\357}\379%\20\336\330\204\272.+\20" #"\3L\364\316g\222*\5\226Y\227\5\255\202\23\5}8\",Q\5\326sk" #"\255!-\262R\240\364\264\226\312I\235" #"\323\373U\225\240U\300\262c\t\22\361" #"r\271t\262\207\241N,\352h\6\4\200d\254\362\246\0\253\t\vj+t\340" #")\254X\253Q\217\22\331H\246\332\210\273\222[\rf\eXVZ\211q\375\f" #"\31\354Ny\20\204\343\22D\n\237\257cqxo\314I0Tk([\201E" #"\271\273\225\202\264\344^\346x\36<\266" #"m\3\aJ\304\301\35,\250\223\"`" #"\366\272\320\326\213z\247\332K]C\307" #"\201\236\251\314\213\335\235\0\271\324\2\317\211r\200\bDsIvdFA{/" #"\264\243\342\271\347X\16\a\232\250\333\234\375{o\244\223N\2616YVqa_" #"\234@}\211C\216\267\224\340f]\2279\203" #"\345\274,\360\354d\225\266\202\6\3&\313\244\371" ) 500 ( #"\220\320\213\34\367\1\0\324\314\305\356\5" #"\314p9\237\373T\221\2769\246`\236rb\242a!\317X\26\376\336\256\a\266" #"\336I\233rB-\216\273\333\273(\353\256\20J\322a\363$v\365\361\21\245T" #"\274\377\361\3\316\227G|\377\375\17\370" #"\335\367\357P\312\326\3P\vm\253\16" #"\257\343\341\b\367\206\373\373{\300\r\327" #"\267/Pc\36u\262\206\373\373\367\270" #"\272\272\306\273w\357\360G\177\364\a\310" #"\vp}}\304\375\375\23\356\357\357\361" #"\311'\2370#\a\2723@\316\31\345\262q\f\343V\360\361\343{\324\3448?" #"\235\320\340}\322\226\26\373\345r\351\377" #"[\327%\356\207\233\343tzDk\216" #"\253\253\343\256D\244\237-\345\202m\343" #"s\270~q\215O>\371\4\237}\361\31\256\257^\340\372\372\5>\371\344\r^" #"\276|\325K%)\252\4\374\214\322ATJl\374\332\242\371\214\fEB\225}" #"X\4\26\225\276(-\t\37\307))\354\0\f|\317s\351\177n\336\321\230D" #"w\307Y:\333\234YB\307`\341B\252\5o\2557`\366\206\243d\235y\225" #"\344\3072-\304r>FBV\241\321\304\\[S\300w\262/\364\314f \353" #"\0C\212\20\37\340Yk\277\aV8" #"\326\360\367T\0\25\23\350\21\240\5\252" #"\225\234\17\37\337\4N\232\363\376Yf" #"j\310HC\213\326\274O\324\343\341\246Djn\224uh\\\253\342\204{\235\252" #"\37d\360Z0\314\262;t\a\252\31AL\254\307!\363\242\246\361p8t\363" #"\372\26\201}\36\2720\3\336\21\a=" #"\312\322\354\346\16\30\201yL\361x\206C;\247/2u[<\223\206R\b!" #"\347\246\340\35\330n\4c\325d\367\26ZE\23\323\206\16<fVW\317\304\333" #"^B5\237\25\303\22(\306\232\a\375\374\373X\355" #"\347\214\346\ft\304\316*\26\266)Qy\16\210W" ) 500 ( #"U\v\246sB\373c\374>\4\23\332\372\317\17\246n4\321 \217r9\277F" #"C5A\16I\221\352\241\203\6\331\322ZJl<\351?\243\374\34`=u\354" #"<\230\360yo\314\254j\262\321\207P" #"\314\221\305t\233\1\325\343\234\325s\245MW\212d5\331\22\347^CZ)o" #"\231\317\257\231\255\327\263\237YG`/a\"3<\200\357(\361S+\17\327H" #"z^\a\23e\256=&\251C\01623\306p\207O\r\200\317\367\206\222@=" #"+\306T&\257\236\20>\334\t\260\fk\341\245\16\22Ni:\213e\2279\307" #"m\305\344\346\255\17\202\240\245'\207/" #"\315g\371\214?\224@\264\246\261\17LD\36499\230\311y}\317\225\254XN" #"\235i\355R\237\210\37u\252\336t\f" #"\343\321/\21nH\306\251\b\35\307h\237\bk\314NM\nZ\232\320\6\37{" #"\215R\204\214\226\242\321\314\5.\327\335" #"\332h\336\"y\332;^\365\373K\v\222y\0\375D\255r\16\26\330\1\36H" #"\6$C\312<\aK\255\335G\267\266=n\352\32x\367^5\353\261\301\254\217" #"fw\f'\a\305\205\345\270\6\325_*.u\303rX\261F\266\351\356\221!" #"\214\a<\227~\373\a!\365L\20\316\216\341\36pml\216A\335\307f\216\21" #"vb\3\5\334d\241\325\274\365\315\322" #"\342\245\240\16k\17\225\211\6ha\371\340\34\343w\371;+Q\376t \350\332" #"\364\340\266m\353\213\271\324\2065\345(" #"\2539\2742kn\261\241\331u<\214\220\21\32/\300\272\300}k\36\354\230w" #"\177C35\224\320\302M\236\257\2655\34\22KG\245\204/pN=0\3139" #"!\347\34\232\324({\204\310\236%1" #"2\272\260\204\352\324!\226:|i\267\215\36\253\307t\215\323\351" #"\t\357\337\277\307zX\361\370\360\210\207\207{\324Z8\214cY\361" ) 500 ( #"\343\217?\262|\177\377\21\37>\334C" #"\26I\324\244\36\330\255\276\25,\353\2" #"\240\321\205 '\332\245\305P\215W\257" #"_E)\305\200c\303\335\335-\276\374\362K\274xq\215\2242^\277~CY" #"\301\365ul \32\273?<<\340x8\300r\246\2167\0267'[-\275\21" #"\355\262m\250\205\376\274\245\24\234\317'" #"\274x\301\321\302\224\17P3[\312\206\17\37>t\326v\333.q \265\16\350" #"u]b\355>\373\374S\274}\373\tG\345\24684\300\322\366\371|\331\261\31" #"\2\270\363\206\332\263\35\3238kOQq\300O\2\367h\200\350\22\261\276gF" #"\203\313\236\225\322\346\227\356\263Kc\24" #"3g\226.\366\316\2329MN\21579ti\224+M\345\375(\355qD," #"\17L\221X}|l\32\327\322+3&\375\253\365\0\255\203Y\354\241O\207\212" #"\300\220J\305\324UO\f\22F\265\241" #"\224\241\353\32,\333\370\375\317\301\22@" #"VX\23\362\220\22R\336\353?#\332" #"\217\203\257\221E\352Cq\3426\346\4" #"\203%\352\330\357\336b\4\346H>\3248\332\301J\354u\317c\332O\215`~" #"\210wW\202h\320\341\255\330\242\347v8\344`\376\324 GVJ\214\215X\314" #"yb\222\256\25\250H1\330\207\353\223\207\316\334(\253/\1Bvh\307\360\a" #"4\2267\241f\246\271d\313\275\321\232" #"wW\210\2343`:\360\367\235\341\36" #"\353E\353l^\333\2\367\252T\350\36" #"\352\344\275\252\203\254\263\304\361^s\32" #"\326g\336\32r\34\310k\a\2221\274$*\22\326\27\327H\n\224 i\235\217" #"?\37\177oF_O\257t\310qH&Ta\210\n@B4K\373\330\207\311" #"\372\332\352\357\2519JL\376\e\f\362\376y\315\327&\34\34<'\337" #"Wm\323\367\240[\214\277D\367~\0\0 \0IDATYJ<" ) 500 ( #"\2673\337\343x\317\1h\243\231t\226" #"\335\361\31O\315d\323\357\356\216:\23" #"\360\345`\220h\3626\2714\244xw\352\251\t\r{\350xS\342\367\272{g" #"\344\304\342\r\26\231 \6u\2370\1" #"\303\366t\226\334\361Uz\257\264\3668" #"\350\216R\317\275\301^`h\216\321\265" #"V\3703\262j\256\326\n\210^.\27" #"\332\271\265q\226\317\t\210\230\377\316f" #"\307~\260d\3105\301\23\373\25\226u\231\342\3103\6\25L\224,*\322c@" #"\3\327|\316y7\327\300\335\201 \34\26\313\260L\35kci\256\357g\213\344" #"{\311Q\311k@\305\363X:\372n" #"\340\300VN\310\351\320\361\23\223\246\324" #"\367\202\256\275\17\312\331-V\364\270\250" #"\206^\236K\255'(\304b\t\216\32\4E\2037\333M=s\fk\271\371\31" #"\271;{\311\246\4\241F\242\307F\352\5\365rA,\2668\37\n\26\371\356\361" #"\177G\202\336(\275\254k\306a=\242\372\30\314\220R\302\351t\332m\22fo" #"\2433\177f\25\304\354h\221\226\255\4#9\261[\206\316&%7\2346\262R" #")\272\304\35\4\334,\333\330nL\345l\256\2342;\363\326e\2059\260m\27" #"\30\202\251\202\207\315\3108\30mZ\370" #"\343\205YL\23B\200\234\206d\v\f" #"\216\255\214\206\222=\350\30\0262j\22" #"\3119#e\v\207\206\24\201\217\354A" #"\235J\37\26Q\352t\276\364\331\324\314" #"l\302\301\301mL\370q\216\21\266\370" #"\234V\35\265\25\254K\306\22\243T\237" #"\236h[\365\341\303\a\234N'\374\372" #"\327\277\306v)h\25x|\272\307\315" #"\315\35\36\237\36\261\206\216\354|>\343" #"r\331\360t\242\6U\3722\226\375\217" #"\270\276\272A^\27\34\217G\334\336\336" #"\340\366\366\16\207\303\212\267o\336\342\346%\365\246w77" #"8^\35puu\205Z\e\236\236\36q<\36\260,+" ) 500 ( #"4\264b\316\366\244\237\322\251rzz\fFx\215\347\330P\313\326\365\2329'" #"l\225.\4\3348)\30\244\202\343\325" #"\212eM\335\22\355\346\366\232%\37{" #"\215Z\v~\236\177\316\200\354cM\36\217G\344LFC\345\30\17\226\253\24N" #"\364\333\266\22\a\363\260icp\336k\20\231l\215\353\26@iq\360vF5" #":pgF\206\237\21`\24\350\346\3500&2I\223\214$\252k?m\324\230" #"\247h\1Q\352]d\v\323ht\357\200\f\361\17\232*\245\203=\0q\355 " #"\305\"N\216\211;\n\212\334'\362`" #"\34\207\217@^\204\374\236\3009\f\25" #"\36\345\3721\216\26\276?0\370\347+" #"\344\26\360\\\257Ip3\202-\1\256\330\310=\343\367\234\1+\265vw\0\201" #"4~\237G\23\337\22\237)\366\221\247" #"\301\30m\356\230\313\271\262 \204\205\271" #"\275\17\346K\327\255\367\f\200\1\270\2039I\235\22dt\a\4C<5\200\314" #"\254\r\a\221l@\343\1BVe2}\327s\232\0\253bT\a\35\323\337\311" #"Qb\214\303\35\254\b\365\215\216\2\300" #"[\301%\32\225\e\27\334.\241\350\t" #"C\363\16\302\334\321\313\305jN\22\320" #",\356}R\334\274\236\364\2455\244\367" #"8\353\302\365\2541\375,\214\275$f" #"\241\211\4\265\334j\376\315)\241l\e" #"\34\26\325\256\214\2345\205\314\372\332\342" #"\250\3461*W\332q\356+\336\330,-(zGf\35pj\32\223\32.\21" #"\340\16\20\200\365(I{\367\220UC\250,\240\4v\305\302uMr#\210S" #"%\202\214t\32\a}\304\211\16<\340" #"=\336.\313\32@)\232\306\"\251\263\351YvF\24\0\332\0\357\272_\340\247" #"N!\2555 Q\nW\275u\220\373\374\275\266\0w\36\314\246>C" #"\340\31\316jA\r\a\20\0\324??\223\\\315\f\267\256Ykw&\n" ) 500 ( #"\370\236\242\271\260yO\316\304\224c\372" #"\335\264\270dL\234\23\314.\177\212l" #"(\31\253\321\245\324\356\257\373\334\2475" #"\231\241\31\253Y\252Rk\277\f\251b" #"\220S\301\360\247e\377\274\310\242\206\345" #"\35*\274\31\226%\365\2063\351\255%" #"\231\322z\243\264#\364\371\321H\234&" #"rQ\211\210\e\244\333`\324i\r\266" #".\360\352\301\202\32\340r\3548\302C\255D\220kq6\356\a\375\\\266K\20" #"\1\23\336\3\335\216\364\334j+p\317" #"8\34\17\361\375\211\251\214\252\rJj" #"S\306\232\330\220Y\312h\302\237\277\204" #"!\365\316\2268\257z\377C\374\214\254" #"9\371\275\341\253=\227\227\24\230\264\230" #"j\255\310\261\211\227uA\251\245\353h" #"\265\b\251\217\262\220\364\5\353jC\240" #"O\346\267\305\314\347\32\332\fjNZ\350ur\f\227\350/~Z\320\354R\317" #"b\270\331\r\311_5\256\205?\30\0171\241^\3108J\1\330\340\360RQ\1" #"\352\375\342\341\316\32A-\310\2328\335" #"\n\321E\356\276tw\206\31\260\357\203" #"\301`\227\0t\375'\"\360{\350\250\304P\317Y\274\32\36r^\251\361M\232" #"\220B\266\364\20\345\22%\27\2556\324" #"mC\251\25?\374\360\16\17\17\3678\237\317\270\277\177\300o~\3635noo" #"\260\225Kw\1\220\34\201\301s\305\273" #"\37\337\1^\321V\312\f\216\307\25\237" #"}\376\269\263\311\352p \23\376\342\305-Z+\370g\177\364s,\353J\35" #"\20(\245\270\275\275C\363\212l\300\371t&\373\16\2\aw6ZQ\3321\262" #"k\2S\353\201\32\300.p=\177'r\22 \363oHy<\343\326\330uj" #"\240\254\5\276\367\374\354\346\350p\224J" #"\a\6\367\32\223\256\270\246\364\265\256k" #"\377o2\221\374\35\252\"8\360\223\265\242\257^\6\212\353" #"H\261\276t\235b\232z`\262\341\31\253\317+\265 %" ) 500 ( #"G\37[\a\372}\232JB\255\205m]d\310\206>x`f\a$\333\0\200" #"\3449\22\272\6\v\206\304B\332\322\eD\301C\r>e\376I\240Z\323\335\366" #",Jk\203\345\224\26q\256\216p\302T4 \345L\240\2213\16S\311L\254" #"\346\34\304,\0c\303\2340z/\311\346\351\373\325a,\373\252\231mU\351Y" #"\a\30\17\377\301\30\16v\0\35\324\360" #"\373\306Zd,\330\353\360g\326\243\337" #"\263\305\341\35\226Db\353\304\372\1C" #"g<\230\343Nt\263\324\30`\272\224\341\361\314g\271aMK\224a\359-" #"}\n\32\1ut\313\267\241\327\333\217@\215F\214\0[c\332\322p\22\350c" #"\302#\321\221\327p|\2Z\211\301\t\226\220\255\365AB3\263\"`j \371" #"\2008\0305\371Q\317J\26N\26z\262l#\231\321\236\235\237m\177W`\242" #"\0001\315\23\360q \314\375\303\315R\361\303,\200\304\0221Ar66\35\351" #"3\364\374,\207L\307\206\an\37\230\0t\360z\271\\\370<bd\371\336o" #"]\254\225w\177q91(\256\271S\362\245\2411\32=?'O3\253\330\367" #"\213\261y-KV\264\344\316\3066M-\234\330G\335GJ\34BA\256Y\325" #"\224\360#\205\326\353\334X\205N\372\bl\353\35\353\375\350KZf.V6`" #"\223\201\313}\357\\.\e'd\325\32g\273u\240\t\20h\205\201\f\26\233\222" #"\232 \177\224\230>O\\\367\25\231\275" #"\224\202\357a\351I\370\0\304\25\265\242" #"7\227+f\350\376\206\214\5\340D6" #"\235\37\221\260\30:&\351$\206M\222" #"\215V\272\334lW\271\266IV\331\t" #"\214\0213\224T\250\272m\256)\201\254" #"\f\324v\211g\22\340;\1\336\206\5\232\31\272%\232\300\263\227\332" #"\223_i\361{\\\3\345\4\304a@\253j\332wp\202\211\241z" ) 500 ( #"En!\311\210\24R\367\240\30#\300\273\344%\206D\354%\6b\233\371\261\t" #"\325*\2005\206\217\35p.\234\220\v" #"\244\350\263\221]\35\337\237<\252\3655" #"\377~\275\363\326\32ZJ}Z\341\374=3\371\351\3168\274<gF%?\330" #"\227\0\32`\224\5<_x\343\200\340\313\21\r]12\225Z+\266ZqX" #"\17\330.\er^\2210,/\364\245\213\354%\270\230\0\0050\363K\36\r$" #"\215\ai\2\302\302\210\254)\300\221\245" #"K\377L\353\243\17\267x\b30\340\365'\344eA\331.@^\220\22\375\360" #"h\300^\372\241\302\373\35\331\252\2\323" #"\325\325\325\216U\323a\313g\31\223\203" #"\240IX*O\212\201K8\235.\370\370\361\35\330x\325\360\303\17? %\16" #"\31\340\244\253'\374\370\356=\316\333\5" #"7W/\220\22\247\216\374\370\343{\274" #"~\365\22\347\323\211\337\vj\5\37\36=\272\3703no_\340t\272\340_\377" #"\353\177\205\343\361\n\313\222\361\362\345+" #"\274zu\a\225\343\5Pnnnz\266\272H/Zi\242\355\301jX^\302" #"\16\352\34\301\272\305\224;\a\254\305\304" #"\265\255\277C=\223\221mG\0\310\203" #"\31\234Y\224\271Ig?\314\201\233\320}\310^`,\325\244>]n0k#" #"\213\216@W\eR\346:\322\3062x\227&\344\34\350\3m\374\314\24@-\347" #"`\3\t\260\24 \25HY\375\240\336\271l,\247\326\360\374sd\264hT\260" #"e\337\325\n\20\354 \300BJ\251\217" #"\235\325\6\337\0370\251\a\221\31p\270" #"\17\235\264\330\4\225\215\25\24\264\267\347" #"\262\233\3]&\223\304\274\307\301\240\1" #",s\22\374\374\232\364y3\340G\214\200Up\27\250\221\237\253X\3255\307!" #"\310\17%p\334\242\331S\0J\261\306G\347\376\374" #"\365\274T\331\331\251)\300?\177\227\264%\3323P" ) 500 ( #"\263\16T hfc\346?\233\313\251" #"\374\235d\25\252\312\232q/\372\374\376" #"\254}\310\220\346r\254\276\4\312\1 " #"\201\211\364\266\25\244\f6\205\330H\214" #"u\20\f\311V\211\30\224\"\316\210=\346Z\337\3T]{'\365v\353\1\36" #"\354\341\32\243h\267\326Y\223\224\306\350" #"kU\262:+\32\377\227\302uC\266E\246\277w\357\226M}`\305\4\354f" #"&\220r\0\22\32bou\235si\263\3251\4(\245\241\227\357\0'\30\254" #"\2243G\272N\0\262\277\367\211x\350" #"\327\333jo\256\36\200o\301\345r\306*\366MDP\0\314\"S\376\270\326]" #"\374\3501\320Gc\324\24\3\346\3650W&\264\3368\252\236\3234\233&\310M" #"\332\362\236\374wRa\350\217\371\371\200" #"wy\225\254\344\32\372\311\35\25GU" #"\20\237\307\34^\207\220K\352g\225~\357\272\256@bS^\212D_\340M\311" #"~\316\2713\216f\354%\1X\301U\35\240\353R[?\316\373\375\315\26_\372" #"\347\374\357\317\1lJ\363\271cP\5" #"c\336\367sb\2410\344\352\343\311\4\274iJ(u\355J\220\225\244\270X\1" #" \22\275\375\344=\375\363\22.?\346" #"\350=K\2727\366\317\264\316\272fI\r\234C\212la\345 e\372\342\312i" #"C\233\330\3623W\r\37kL2\242\2348\242\230e(Lg\205#\347C0" #"\251y\f\205qC25\254Nl~\274\27I\220\250\375\215\244;\316:&\366" #"\tiab^k\301!\372B\16!U\344\275o;\a\36\272{\216J\373l" #"\261\372\374y*\26\3142/\375\267\366" #"\303\266EE\221\277`\230_\327\306I" #"VB\357\265\262\253o>X\21\354\320" #"\222y\270\313\232\4\21\370\nj\274\200\2514\345,\331\347D\377\306\312" #"\373\351\vx.Ui\323Sw\0217\356d\352\274(xN\233\246\203" ) 500 ( #"\3261\355Je\202\326j\30\311'\310\353N\336{\336\2\210y4#\270#\305" #"\213?_.X\227\310\266\34=k\231\231\n\6\243\341?\310?\317\260\260y\201" #"\3[\253(\365\202\17\357\337\343\267\277" #"\375\36\247\323\t\347\363\5\353\272\342\375" #"\217?\342\351tFk\216\307\207\207)" #"\300\25\34\217\4\263/^\274\b\377X" #"\307\371\361\t\327\327G\374\370\343\217\301" #"D>\342\305\213\27\370\362g_\320\334" #"yYp\367\362\16\237~\372\26\327\327" #"\327\375\331\277|\371\262\37\334\2\240\203" #"\1 \200/\245\304\302%\203*\2731\236H)\2343j0Y\16/\34\2\322" #"4\350\301h\361\262?\330s_C\2727.\312-\2\4z\300x\16\352\364\363" #"\265T\316o\307\bxJ~\24\260\254\207l\354\2\2316\317\316\2774\37\242T" #"\202\360\263t\30\226`\336\1\351\236\24" #"\34\24HX\272\31\236\226s\202H6\225\216\36y\311\330\nKh\333V\260\36" #"\216,\321\370\0U\f\256\344Z\315Rw<1\213\314\336\366\315Ef\224f," #"1`e\333J\227\263\314\a\267\236om\341w\372\fp5\247f|nBs" #"O\374\335K\202\244\1j\314Y\226\334" #"\203\310`\274\316\0\6\230\32450\260fh\364\265\16\220\236\330G4H@\337" #"\257\235!\250\321\341\34\245(\1\322E" #"\214\276\263\341h\206\206\317\201\344\\^" #"\326\373\327s\221O\247\30eK\v\34\4\201#Y\371\351\30\331\347??\307&" #"=\347\313\246&\237q\260\260\f\334\272,i\351\300s\337=\256\347&f\232q" #"Tc3\e\2539U\245\347\326\367\253=Ktf\300C\315,\242z\"\0207" #"\0a\216\330>\254\37\371\216\244\237\326" #"3*[\2140\5\302\355&\236\223\22\230\224\242\32\300\347Q\266 -" #"\34]\2762\307\202d\374\254eb~\362\262`\233\232z;Xk\215" ) 500 ( #"\357iY\260L\211\305e;c]V\344<\b\21\335\307>\271I\235\275e\303" #"jx\252\233\365\23i]\226\30 \242" #"x#\e\256\210\1\246\262:\203\302\341" #"\260\340:\35\3\254[\217O\203\371%\253\251*\243\31656\rF3NkH" #"0\344\214\276\316\347\3654\3\326\271\212" #"\324u\233\241\375l\221\354j\f\252\16" #"\375>\360\">\267\273\256\210Ew\222" #"\32\305\231\220\361\375D\2251\313\331a$s\317\1$\357\223{|YR\a\266" #"\0\372\344A\22$c\234\263@-}" #"\234\311\222\352\372\370\231\t\325\320{?" #"\16\207\3=\375\261O\30z\322\320\23" #"\250\341=\273'\334\306\263\24I\245\4sn<\356\261\25S\225&\366\213\ay" #"\301\306\363}B:\307\30G\304\235\352" #"@\266h\336\245Ln\267\366\203\325\357" #"\326\2546I\177\342\263j\f\f1P" #"\312\241\206\266\236\300[\fE\300\5\6" #"\331\226\21s\215}\227\272\376\225\r\177" #"\32\201\314\252H\231@*\200]\25\210" #"\256\30S\225\332\202A\366\204R\266\300" #"z\230\222\301\221X\231%&\206\325\203" #"5\216\252fX\266!\310(\312\366<\232\322\6\3418\223))\236\241\267\341v" #"\243k\255Sb\373\374\374=\34\16\270\\.=n)\246\2737\324\255a\261d" #"\3357\221\5\r\204\16\221h?GY\2725\6\262V\302\226%2xe\345\363" #"\5\310\250\330lt\2612\343\31\206\357\263\275\2304\25ssD^\22\263\275`" #"pyxx?$\275y\aws\351E\1p\v\355\244\2316\251XhN\227" #"i\240\215\223\202\206g.\206\32e=" #"\276x.\354m\333p\234\256\361\372\352" #":\300\257\367\201\24\227s\301\303\303=" #"\334\eN\2473\1\355\351\204\177\374" #"\3157\270\177x\300\2223\36\36\36\320Z\301\343\323\23\274" #"\262\31\345xu\r\352HF3\323\272d\334\274\270\306\177" ) 500 ( #"\363\325\317\360\352\365\253\2365^\35\217" #"\270\271\275\306\335\313;jkj\305z8`\273\\\360\362\325+l^\261]." #"X\2265\16\347\2G\370\16\247=\e/\263n\226\321\aXH\341\271\353\306\222" #"\27R\3361\eWW\34m\333\22\200`\215\270\341\a\360\351\266Zb$\264)" #"y\244\202\3B\30\300f\0201\203\265" #"\16\4\240r\22\201\241\202\206\2\337\354" #"\2579\a\261\231!13\224m\303\262\262\353}Y\207\217)\257ic\331Q\243" #"\253\343\271\370\274\261\353\357\3)\0012" #"k\305\252\21\254.\315R0\230e4\342((\247\254\256W\376\257\211a\234&" #"\23\315L\25\327\207Ec\20F\247\365" #"3P\327;\306\273\273\300\260i\321\367" #"\313v\205?3\366\316\314Z\212\375\240\226z\34\n\32mj\223\4c\260\233-" #"\262\376\264[\3\2555dDCV<\334\26\211\r\346\4H\ax<S\361\371" #"r)\230;\206\aS3\336\205\276f" #"\6\315\237\335\273\256\213\335\350c\372\233" #"\0\202YL\373\232\22\r\367\341\31623\v<tY67\vO\332x\376e" #"\333\372\360\35\244\230Ld\340D\370i" #"]\316\327+\217\312\347A\\\327\254u" #"-\320\372\274L\312\375\307\341\35|\227" #"<(\330\351\276\257\226\f\243{\4\1" #"0\364\267\255\37\224\31\32\t\236\362J\17\327HH\3144%\215\r\213l~E" #"0\363\350`dW\202wg\334\215=\355\225\343\255\179\343\2tO\317R+" #"\e\aS\352l\223\3341$C\31\25\263=\243\331\301~\3*3K\262\321*" #"\205\6\221\263\256+\252k\210F\356\a\243*?\256he*\31S\272\320+\224" #"\323Y\307\375\254Iz\266\273\276\1\276" #"F\343\242\327\321\244\247g3W\n\364\336w\362\233\220\226\f\356S\214" #"|\355\361S\337;\223\5\212\37%\310\230\224\250\225\236\343bg\314\303" ) 500 ( #"\226\212\373\30\235\21\325\331i\6\220\355\345\277o[\1Wt4\3315\312*J" #"ae\261\301'\351\226\5N\30\243\177" #"\373}az\366\317\236\235G\305w\336\323z>\311\367\353_{d&\b\270\206" #"\307\250g\255\1771\370\0\340\230\2523!\27c\325\201\rd\255az\217\243/" #"\203\347t\2700(\351\333x\266\20\304" #"O\304\303\263J\224\273\357\344*\274\217" #"\250z\305\232\324\357Y\327\25\r!\301" #"\263\4\264h\262\212\246R \307\314(" #"&\264n\2121\224\227\314\347I\266\34" #"\366s\326\223\3519\216\250\241\277\224-" #"\374k\271\0364\210d\6\244#Q\341" #"\322i\26:\360\304F\327^\331\257\25\313r@+@K-d\204\21\263*\302" #"\376n\310!t&\263\222\365\323\330=" #"'\20\214Y\321\213\341\265\17\307rw" #"\230\357\373\257\226-\254O\226\225l\212YF^R/O\247\b\\y!p2" #"\213\222\266\205\2260\354,\2709\207\177" #"\232F\272\346\224`9\343r>\343\260" #"\254\f\216\20\260\342\364\226\363\345\f8" #"\242\373>\30\f\223f\306\340\241w\242" #"\226/\0322\202\351\30\f\37\300\201\a" #"\243\334\243k\261\350\274\34\300F\326Ma\322_\e-WR\302z<\240\326\v" #"Z\243\5\323\371|\206\273\343\376\341\1" #"\347\23;\325\277\376\365\267\234\306\365t" #"\302\375\375G\274\177\377\36\245\24<>" #">\341tz\304\351\364\324\273\250/\205" #" \352\325\313W\270\272Z\221\363\25\336" #"\276}\215\327\257\337\340\270\36\340\6\\_]!\245\204/>\377\2W\327W8" #"\36\17\330J\301a\245^E:\322\304j\n\2545\344Chm,\341x<p" #"\372P\316\270\275\276!\250\bYA+" #"\265w\376J-\310\240\201\316\266\356\364" #"\255\1\26\315\251\207\246\202G\363\3363N\247'f\311\321" #"\3242\a&\35<\332\24\\\214\5\222\0030X\266^\252" ) 500 ( #"\320\367\315L\263\312!=@\230c\333" #"j\a(\363\204\255\316\240\371~\202\325" #"\34\360\373&\231\0\265E\"\326\371F\263`!\3643q\340\204\eG\367\2244" #"C\16\v\270\26\207>\3$\313\3609\232\26(\222';\347\31\310H\18\1" #"\v\255\325\310\350\247\322\31\350\316\360\34" #"\244\251\213\27\301.\314GYg\4&v\243w\21\a[\203g\311\3\2402\272" #"\377\344s\206\34\201%r\35v\3X\217L|f>\371\273\307\241\243@\224s" #"\246\377\357\264\276t\20uY\3003\6\t-\254\372|d\364\372\331\301,Me" #"\356\266\267\273\232\1D\327\221\332>\350" #"\357\17\362\251\241\f\373\262\262~\366\367" #"i\264\1\352\376.\227\321\250\2\37\22" #"\204\322\350\250\342\340\344I\27X\231\16" #"]>\217\214\234\265\367\366vO\363\336" #"\0343\336uX\214\312\206\312\317jRA\300\r\351z\177\337\201!b@\345j" #"\261\310\254\360\251[\236\262\211\32\215\220" #"\206\341Vc\16Xr\250AS#\233\347\204Ze^\201c\331\36Y\316(\225" #"\336\313b|\353\224\310P\303)\2664#%\226p\t(Sg0g\31\202\273" #"G\342H2\346\22c\241E\342dKh\211\315u\2\262\254\344\4\253\272\304t" #",\271H`L\275\334U\220~\17H\21002\342\213\326u\200\365d)F\250" #"\267\376\3673\233;\357\301y\257\316 " #"KI\251\326\202t\362\300H\212\366\200nL\353\264e\205T\340*3\367}\241" #"2:F\345l\376\235\32\2040\252\nc\275\260_\305\0\243O\264\331\350M\360" #"\312\204;'\371\344k\255\361\f\366x6\317\3671\300\330\213L+\251RF\5" #"\353'\f\257\215\352\344s\242\303\214\325" #"ZU\351\324\b\253)\210Z\247\303\31\a@s\364\241\24<\260~" #"\362<g\320\235#\366\247\376\336Ue\32\367b\261\357\21\16\3\263\264" ) 500 ( #"\204\25\214q~)\256\355\206k\205f\330@\374c\251\301=\243nqV\247\250" #"v\a-4\326\b\377\37\233\345\370g\206\204\255l]\3369\23R\36$Ln" #"\"\1r\237^\370\373\22)\305o\275" #"G9\362\214x\25\325\236\272\221\241\257" #"\262\35\223T&|\264\321v\361U\t\246\246[j\275\315I\303\254I\347\367S" #"2\250\365\257\346G]\307\242\0\265m" #"a\357\223\32\332\266\317FZ\253X\355" #"\20\240\23\335\346\253\31\e'rJ=\243by7\300e\334\264W'\343\25\272" #"\222j\374\341e\t\32\277\312^\251\366" #"\3039\327\24\17-\312\t\255\300\221\261.1o:%6\6D\b\252\265\240\224" #"\215\323\264\352Tv\366\301\6\361+l" #"\321\226\25\227J\17`o\25\245\25|\367\375oq9QV\360\370\370\21\247\323" #"\31e\273\340\341\361\21\2654\274\177\367" #"\201\2\308~\373\333\357q<\36\261,\v\216\307C\fJ\330Xn\364\206\325" #"V\334\336\336\340\253?\370\n/\357\356" #"pu}\205\233\333\e\274\274\271\205D" #"\350\307\343\241o8\6\356K,&\340" #"\372\352\330\301\304\351\364\24/\323\220\226" #"\204r\251h\265\340x\\\341\225\rM" #"n\206\203\31\232\205\310\2779\275|\325" #"\221\272\0256\307\264\212\206\24\366kb" #"\342c\223;\23\35\303d\367\223\r\311" #"s\200\245\204\224\256\310*u\26\222\"" #"\367%-t\245\310{\346\370\371\30I" #"\367Q\326\234\313s\335S\326\2471\304" #"\211\23\254\2265c\273l\260\24\35\353" #">d\21\363\301\2522\363\34\220\365\325" #"\334\273\345\232\206\202\300\34\336\32\226\264" #"\302p\210\246\16i\324\321\203\353\20\301" #"\313N\307\6\e+\326%\245\316Y3" #"\2506\344\306\352\b\22M\261\371\347\313" #".(\353\32\25XB}\310\356\332\3001\224\231;\324\221" #"9w\365\367@:\1\275Z+'\364\351 l\316\312\310\4" ) 500 ( #"T\347\6\313Y\343\224\222\200\276\241V\272\22p+\265h6\331\353Zg@\246" #"\3Q\357\242?\373\211}\326\365\16\366\330v\f\326,%x\376;<\0\20\3" #"k0#Sb5\3\327\371\263fp\342\256\363k\34\364=h\2\330\242I\310" #"+\17\227\371\376\346\373IS\31\366p8\2145\350\336]\16\16\313\202-\2{" #"\253\206\274\250\1H\317Bky\257\r\236\355\216:\23\277,\\K\320=D\231" #"\24\210R\376\260tRB(\251\326\234\364\2619X#\277[\200T\364{\321\236" #"e2\244\303\20\210\240K2\244\265\356" #"\267+\209\257\303\371]w\306Y\200" #"\301U\224\245D\306[\303!\364\210\326l\367\316HTP7\272\353!\341\315\4" #"\350\346:\36\2777\16\311\32\322\vo" #"1\231\222\367\331\20\325\5\260|\257\204" #"\212v\226\274>\372\253\32\352ec\272" #"\20\277K\327\246\304\3679\260\324u\211" #"\261\225%&'S\332\216\224\331\263\361\373\1%3i\240dT\207\3772\r\37" #"\232Gb\317\300o\\\217J\3249\336\365\320\332\316R\301V\bX/\27v\321" #"\367q\360\265\364j\337\234\370\351\336\365;\207m[4~YT(\246&\272\261" #"\216\"~\244\245OK\265\224\272\324\252" #"\203\373\364\334\355e\257\21m\1\364s\220Z\272&\261\240\2747p0G\321:" #"\362 \207\364{\206\335\343\222\27\324m" #"\353\315\352\0\302+~\310\rv\347I\eU\354\271a\257\26\n\214SZ\220\273" #"n6\303Q\373>\3\6\220\34594\32\355\304\22\367{\2\367:\253\35\5)" #"\363\272\335+u\271\276\261\a\b\252N" #"d\224\272\r6\27\350Zi\v\334\344" #"\30\222\3=\337\336g\324\223\355B\227" #"\241m\0201\263t@\317{\336\223\325\a\221\324\32\201w\a\242f" #"\250[\5\222\2439\260`E\303\6$\320\373WU\32\263\336D\227S" ) 500 ( #"\356\311\223~\337\374\273\5\320%\247y" #"\336\224\253k63V\b{\200\313\303\214\335}\4\251\224\22\266z\201WJ\n" #"\274\201c\371\342\240\324\n.\227\r5\262E8\3\213F\270\365\5\26\26C9" #"\246\264\260\f\244\f \26Q\37\317\311" #"\362\31\17dY\4\21\224\225\320B\325\326zysY\26\226\247\212\200\202|y" #"\e\201\231\31l\311\310H\370\366\267\277" #"\305\377\371\177\375\337xz<\243\18_N(\227\202\363\371\214e\245HZ\326" #"8WWWH)\343\335\273wx\375\3525\256_\\\343\213/\337\342\356\346\26" #"W\307#\16\207\02577\267\270\275\275AJ\t7\257nq{s\vw\232L" #"_\35\217\4\343\215\323J\266\313\31K" #"\232\307\212\"\330\224c\4\233\264;d" #"TF\27p\247\177\246\303C\n\275d\216V\264\224\242\274<\32sRb\6\273" #"\256\224^$$ 1\2533\210=\210\22\246<\207\305\332\31\0351\32\0327I" #"\224\304[\2132\212%\202\3170\3O\231MM\245\16\373\264\361?\304}\1\347" #"\363%\254o\366\214\306\274\241\244u\253" #"u\214.\206\265\35\v\375\234\245\23\333" #"T{\326\30\243\254\343P>\34\16\223" #"vN\245\327\320\347\"\300A\251Q\26\312\250\205\3668\35p :\251\r\260<" #"\300@/\227\300\202A\2\266\v\265\355" #"e\333\240Q\220\227m\203\31-\\\3622\22\0\5\316%/H\31\360\306\214\327" #"\254Q\256\340\350\332% E\251\210U\23m\354\236\361n!\312\17yF\312:" #"\234cJ\222\321/s~\356c\322\217" #"\200\217\30\e\213}\233\373\241\240x\321" #"\355\243\372\340\202\271\313y\326Q\311\377" #"\325b\235\rF^\367\256Cw\6\335\273\270d\34%\214\0&]j\20\354\34" #"\313~\t\233tn\317\327\305\4\200u\315\313\222" #"\2\20\356\313\354\207\264\354@\356lg3@\312\202" ) 500 ( #"R|\372\214\301v\365\353r\272]\310" #"\372\306\214>\256@\354W\263\260\333\331" #"OJ\232\345 \277\257\274\215\256)t \6\16\17{\252\n\331\245\245dXW" #"\35`K\177G\343\331\320\205en\260\225\236\367\371\272\224\24G \320#0I" #"\v\2364\345h\222\242\350\3751)\214&@\263n\364nF\231H\341\207\5\371" #"\240\221\307\2\315\322a\253c\236\347\202" #";\320\234\225HI\255:\303\266\32\266" #"2\326\247\222R\201\247\22\22\204\331r" #"\16)$\1r\320p\217\241\3y\354\213i\274\375s\366\251\3\363\250:v\v" #"K1u\262S\234\276\346\n\306\236\30\260\335\337#&k\251\f\257\204t0\315" #"b\345\24g[_\343\353jS\2\244\341$|\236\274\357`\t!\333\273\34\211" #"\356\210g\32\363\253k\234\327\342\30\277" #"\352,\331\27:\340X$[\222\260h" #"\215\271\243\307\0271\351\356\16\16\21\333" #"7\351\346\244\301\a\203\341\207\205\263C" #"\304\216\34IV\21\211\343\373q\335\235" #"\345\237\326=\247\242J\3721\22\3:" #"\332\354\e\361\314(\27sx\267?\233" #"\31m\376\267\307\372\355\v\267'\234\222" #"\16\r\2104\366\0240@X\t\367\3" #"\256U\372\235\253I\272E\345\265\271\343" #"\260dT\314^\272j\226\215}a\6\257eH\207\344\247\e$\211\313\3138\326" #"\2177\0030$\243=\231\201\323\365\241;\"Lr-a\275\t\250\357\300/F" #"\365\b\377_[W\264k[r\23\313\335\275\367\2713\32\22\20QF\214\340\1" #"\36Q>\0\b\202$\b!\361U\363\235\360\234/@\204\334\263W\267y(\227" #"\355\265''\32\335\223{\317Y{\255^\335v\271l\227Q\230\362\250d\17\b" #"\365\256P!\231\367\246\346\32*\263" #"@\355\371\372\334w\302D\347\240\333\320\36|\310~\3" #"\300\222\366^2{(\aS\254\230Q^j*\315\23" ) 500 ( #"\351\204i\360k\303\326\214\362\206\205\31" #"\2230\374\334\35\230f\"\317g\324\b:\353\245f\213*h<wLW\2730" #"\354\340a\305\374\2545k\272\6\f\232Fu\234 \301\335q\371\301z>(w" #"\346\36\215O\\\264\275\t\330\376\360\277" #"\377\203?\374\361\17\370\375\357\177\217\217" #"\307\267\370\277\257\177\210\310t\343\347?" #"\377\16\37\37O<\327\302\227/\37\370" #"\356\317\276\303\307z\2\6\374\362\227\337" #"c\330\300\227o\276\340\317\177\3763\370" #"\341\250[1:\0\351x\207\343\363\363" #"\5\233\224\352\372\372\372\304\343\361dZ" #"{L\312r\274v\326Q\222\345\251T\\\337T+\30@F\227\255\3760\271l" #"\202\335W\253o\316\0240*\r\373z]Xk`o\300\257\250\267\356is\217" #"\364\332,\243\306\3&\203\17v\215\6" #"\223\5\360\340\210\5Y\241\357\371\365\372" #"\2322Z\374=\261\t/2\370@L\242\2532\227\234F\323\30Z\261\3056\310" #"\256\222L\272\203\2\335cnrw\370\256Tm\357\314\204W\255e\37\237{\24" #")'\317\344\3001\214\a3\r\212\0343UOj\207NM\371J\306\256\351\244" #"\374p\374\245\273\343\261\26\206\r|F" #"\215\360\276>C\342\245u\233\253\374\344" #"\345\321a\217d\206x\357\6\370\314f9\32\202b>\273\361\264AG# \331" #"Y\"\213\363\305\365-0\"&Q\1.\377\2763)2\314\2\264\213@`\220" #"\375\227\1\353F\257\34\265\230e@\303" #"Nz\312\2517\243\312\370\367k\2111" #"\244\343\215\177\217\2773w\f\34\312\352" #"\34\2\317s\220\201GoR\221\323c@\371\214!5dS\201rx\372\334." #"V\336A'\232\243\321\320\n=s\312" #"\225\235j\352u\263\266\26\25\210\275" #"\253\0\3645\353\351K\375\177\r\325\321\236\246\255\251\32" #"\\>\346\310\300x\357b\204\345\224\0\325`V\272\266\324" ) 500 ( #",\256`\354{m\270\354\377\300\201\343" #"9W\356\253r\314\265O{\246\245\227" #"\\\330\30X\36\203\204\364\263@\375^" #"\326\367o\270\367=H0\177\216\236\217" #"\367\2x\246\244\347Z\314X\304\361\335\241J \262%\317P\\\257Ow2\v" #"\351\272\260\243\32\37\252\236\21\213\363\344,<NV\267\263`z\207Y+{m" #"\\ x\2639S\272\254\203\201\2W\222Js\310\224\\Q\362\300\353\223PP" #"\237\211\326W\373H%,\375\214*\23" #"4\203\371\215\4\344\255\276\361\272Z\343" #"\340(\215T\336\333\n{W\fs\337" #"\247\35\240\317\331\312\226b-\216\23\32" #"\342m\270\2\277\27\353\\\366\"\317\31" #"\352\234\311\256\355\275\223\205;\36\0\0" #"\31\303IDAT\201\301\202\n\217\32" #"\342(\367\3152\263x\261\251\\P\331" #"\202\21\244\332`\t\214\203\377\37\3\227" #"\263L-'\220\5\220\36V\215\217I\324D \214M\177=\343\31<H+\312" #"\201~&\340\0371\275\225\1\250\245\357\3443\326\230d5R\212p\321;Bd" #"\315\335\3314\b/\25'\a?\337f" #"k\350\234\23c\262\301\213\a\207\232\344" #"\347\332\300\354\312\v\233\3s\266\324\21x\2m\0kq\224\273\0z\6 1" #"U\257\ac\335>\366\375\260\26\345g" #"\235\25\4\341\21k\337\367\340Pk\2422\17MY=ph\332\345\331\16\240\372" #"\21:\233OlP\231\264\356O\24\244\365{{\275^X___\3\340\b<" #"T\264v\2770b\363FA\262\207\30\376\30\254\2770\300Q\372s\242\343u\240" #"\25-_\257\353Fi\3330<\306\223)\367\255\"\345\210`\23547\35\22g" #"w\37\227\376\36\3315\237\3x]8\203\16\346\371x\362g\2\24n\260\250\334" #"C\357m:\3450\376\353\277\376\e\337|\363\r\f" #"\300\17\177\371W\370\273\277\373[\0\216\237\377\354;\330" ) 500 ( #"0|\373\355\267\370\362\210\206\244\343\241" #"q\313)^\177\374\343\37\261\17#\222/\337|TD\256Ew\340\343\vY\334" #"s\16\226\221%\232\0214\234\23SR" #"\372\372\242\234}\32\301\311\317\34\36\362" #"Efm\323\261+\331\334R\276\345\336}\3122\4jt\36\254\365\214\r\0\30" #"X\303\347\333q\305\30\327s]\370x~\244\216d\a\224\257WIw8(\361" #"\306\e\345\347\254\\'\0\20\23\35\23\223\6A:S\340\a*w\335\37337" #"a\202\bZ\204\230\310\24\2513\30|E\nr\24\273\312\351B\4\24\311@4" #"\207\226\353\350\av*}\256\264\260\f" #"\a\233,\27p\251\316\b\200\31\256\327" #"\306\307\3073\17Q\36\270\255ts1\32\35\0qE\3520\"\214\322z0\30" #"D8\3~\272:\331\243\236-\34\3159\a\260\223\303W\366!\23\257k\n<" #"\365\2105S?`I\320\353\25\rPQ\3\206`q\336K\3,\367T9\340" #"\236\256\247\301 $\233$\240:8X\0.\213\205\376\245R&9D\202\30" #"\261!5\226\265\203<\31\301\367\324S\326l\237\3;l&]s\341\240Ri" #"\5\30\325\360pg\210:\23\323\233\231" #"\b\376\256\e\303\374n\324+\20\20p" #"\227\332\212\337\326\276\237\335lxzc" #">\212\275\320\234\367:\377\356U\266\323" #"\331\272\316b\350Y\370\334\4)\265\374" #"1\350\304\21)n\4\30Q\20\255\31\361b\214\365\356=\337\211>[\272\2731" #"\363\v\200\343k\210\264'\303\24\32\346" #"N#\306\321\234\247& \345Y\3\262.6A\246\263\244-5\257}\304\311\251" #"w_gL A\332\300\300X5\35\251\237\377nS\325\210\t \6o\264\372" #"K %\3024v\273\3\311,-\210)\201\275A\350\36\4\334\211" #"\5\276 J\251}Y\17\\a+o6Dl\327\250A\"n\321\300" ) 500 ( #"\205{\303\235\232\17\373\240\242\16\224U" #"\267\375x\314v6\311\206\37\353%\6v\273\216\0\217\364_\273]T\366F\245" #"1\375s\365}\202\217}\230\335\215!" #"\26\aT.\242\204\326\314\265\322\237\235" #"\204\350Am\337\343\335\266\355]\rV" #"3\262\205\34\276Q\373\244\333\236lV" #"w\6\17\232\v\260\0351\212~\340!\345\234(M@\6Q\255L*&\217\232" #"\260\206;TX\346\246\317)\25\247\307\254\240\3n\330\221\rc#ye\271{" #"\271V\22\t\307\260\202\360r\237\267\365" #"\352\314\264|\245\255b@\335=\224\6" #"x\276\346\210\376\27\213\3460\23h\217" #"\346\257\21\354n\374o8\25\37\34\6" #"\233A&\4\273\177\371\306\334\365\256\337" #"\325g\272\35%\251\303^\242\343\367\261" #"\316\335\356\326>0\300.\234\303\206:" #"\225K\371\361\254\261\277v)\252\330\30" #"9eVS\20\25\310\322V\364\222\236" #"\372\254\234\352\367\357\277\373\365\217+\352" #"\360\30]\335\233\213\264\351n\354\206\253" #"\354\200\rh\bu\205\276Yu\215\316\n\303\232V\356d\255\255J\27\366+j" #"D\0067W\357\260\345\314\351\316\272\214" #"\222\233\330;&\372\0\210\3668F}" #"\254)\324t\211\307\243\204\204\307\234\370" #"\341\207\37\360|.\374\352W\177\217\277" #"\376\233\37\360\375/\177\201_\374\342/" #"\360\335w\337\341\361\3400\20218B" #"W\353\300\306\244\235)\377\307\342$\17" #"xE\231#\304\263\207\31.\217\332\237^Z\2012r\0\362\260t\215\337<\264" #"f\331\20\245\b\31\36]\27360\215z\267\322\3723+\275K\355\366r\346\25" #"\351x\334?|\300\340\320\30\350\272G" #"\245\230K>\215\351+$\230's\315" #"\3729\245\245\265\371:\343\352\207\207\t" #"V\205\377\332'%\330\37\215j\347\304`\212H\35\216\201O" #"\211S\257\205\353z\2453R\251\302\bP,\203\247\347L\326" ) 500 ( #"\266\31\367\373\336\214\16\341Au\t\25" #"\362\233\318\360\244\327\226\211\275B\212" #"uk\366x\235\v\256\221\300\250:\271!\305\2200tI\335x\323\273\34\226R" #"wj\324`\203\207Gz\226\214\245\202\3124\374\255 __s.\354\323\30\267" #"\270\377\317\353\225\365r=\345#6\23" #"-C\320\235\232\232\t\321\330\b\e1\312\367D\31Rc|\336\301\30095\216" #"v\255\251GO\375\353\36\240\25\203\374" #"\323\246\23\255_\331\0002\a\272\306\375" #"\347[\352l\334\e$\373\331{\a\34\375\347+\230\21#\274R\26O\35\325\272" #"\206~'\317\226\316\237G\243b\254\307" #"\34\224\377A\254\335\f\346\355\375\35\322" #"\236\334\301m?\277\375\35\315P\373P" #"3\232\231\262\25\21g\315\331\326\231\231" #"\243\252}E|\177\37\357\232M%c\300\2742~s\262V\177\315\t\234\230\272" #"\27N\333f\350\232\213yi\316\355:UZ\323}\312|,\226D\361\350\322\236" #"\305YR\346\242\256\aTS\253\335\206\ny\v25\366z\214\201\203\220\230Z" #"\325\375\177\263\203\247\352\b\307\30\251n" #"S\301\237\275\365w\334\201\346\373W\337" #"Gf\6\267\23765v\37\306\r\354\241jt\304\e\344h\325\332\253#\317i" #"\a\301\235,\222*\214\316\v\237\241\316" #"\272\344\355\372W\177\216\367\275\205\226\202" #"\356\301\250\354\267J~\364\245w\16\340" #"F\234\275\257Y/-\350\373\372ns\2120\b\327\201\217(\275+6\264\364\350" #"\335='\347\355\350\243\350C\211\24\244" #"\274?;\240\332q\336{\22w\372\267\275QC0,\263\6\274\300\200Al\255" #"\230Gk6\243g\266\330\307\242\v\344z\234\21z\301\325\20xN\225W)x" #"\355k\307\237\246/z\206\257T@\1\260\266\334\f\270\256\27>\236\37" #"\20\t\343\356\300\3405\35\210`xa\214\231\345\5\0262\261\3621\346\226" ) 500 ( #"\375\3\307\367-\243\254\275\316\263\34\362" #"po2\241\312<\355s\37\364\301\237" #"\231\321\300\e\1\253\r<\243\224\n\256" #"g\251\21\366)]\227v^\3149\313" #"\217z\20\325\317a\372\273\177\373\315\257" #"\177<\273\322\277]xW)\3451L\20\22\303\6\276\306\324\223^\37\370n\254" #"\373\3139A9\354\246\371\247\224-\334\323\330\22DQvF\v\300\306\250S\f" #"QD\344\212nV('\274w!g\375\341\3369\255f\316Y5\303\373\340\373" #"\357\277\307\307\307\23_>>\310t\4" #"(\231\306R\r\32C\246\307\346\34\241\355v\227G;\373\264M\316N\3424\34" #"\2634H\357`\244\364e\307\230\31`\270[n\16\6\0241S\234m\225,\327" #"\b\347%]D\204\301\326\325U\310-g\247\357\337\313\2\3169y(\334+\n" #"\342\317tC\304\365~D\255\352u\356" #"\306\355\346\344\333&\313\177\e\26\373\306" #"\262~\273\214\245@\221e\304\376R\240" #"u\350\0,6\270@\203\234\3209\354\314g\252\254lPOs\3644[Oo" #"\360\376\242S~L\314\331@\312\274\377" #"\274\236\217\327\v#:\242\323\365\370\315" #"y\323x\5\260v\334\336\371vv\232#R\353\2\242\356d\266h`\35\303\252" #".\220\323bF9z\250A!X2\277_'\336\312\375}Jjl\26\223(" #"\306\2V\f\27\353h\177\312fj\r\20\237,FS\357T5\250\357\223\271\306" #"\350\365\331M\26l\223a\367Q \267\203Q\375\331Ao\377;\235\37w5!" #"!\234\374;S[\201\213@\332=\360\276\227Pp\315\324\261-\306B`\232\365" #"\312<\227wg\325\337\275\0e\336w{\16\4(\314\35a\300\276>\23\0\352" #"\336\306\260\320\230\274\263T:W\235%\21\253\253\24\337\234\367{!" #"`\260\212\261`\230\303\260\215\254\316" #"h\343\223\273\35\237s\221\201\325$" ) 500 ( #"\303\267\367sEZ_\332\273\2\302f\226*\n\2179\261\343\271;hK\20\23" #"v\1\26\214\361\220s\5NLi\32" #"\246\301+\367\272\311\276\247n\31\236\370" #"{\5^n'\210\207\273_\352\327Xs%XF\334\373\237\2\263\a'\203\334" #"\332\203wU\204\316\326\276\337g\377\3741\242\t[g\\\1\232lf\3D\36" #"\376Q\237\251{|\314\371V\3\376S\220\253\275\245s)FN~\271\333\352:" #"\23;\366y\5\221\335\6T\223\350\35" #"$+\v7\202\250\362\366\274\31\330\274" #"\5\346\371\347\250\363}\316!\2110c" #"\20\320\331x\314\225\201M\255\273$\360" #"\332\204V\331\227\0\216\210\301R\177\352" #"\335s\257z\245\330\3351\0363\355\245" #"+\320\2X\256\327\300\24m\235@\25\355C\371M\371\332\vs>\240Q\367\36" #"t\212\316\222\231\262\224\3\303\330L%\240\35\355E@de\265\305zPo\b" #"U\244Xlo\373\205\215\200\362\335\3" #"\16\252\27\255\361\f\222%/\b\233E\363\244rC\2\361\3\315L\260I\255\\" #"\355\347\336\330h\306Ix\211[\270(eO\"p^\215\220\363\263!\21I\367" #"\235}V\3550e\340\334q\246\2315\302p '\250Ye \273\337\30\203\323" #"~\347\177\376\307o\177\224X\264.\3327!w\2776\264\301\6G\274\22l~" #"\336\234\210\276d\314t\260\36\217\a>" #"\257\327\r\360\261V\220\300\331\206e\207" #"\254\234\323\353\365\212C,\207U\e_\315I\4R@hP\300QQ\3739M" #"\210~\314\222w\n\346\365\343\371\f\220" #"\20\362'Q\n\1\367\320`\e\t," #"\326\\\331\274\245\303u\355\22\260\237\203" #"\222l\352l\27\320PJJ)h\32\222\23,\331\304\234\217\f.\202zN\360" #"\253\b\313\346\202\211\315\36\216\347|\"\224kq\355" #"H\347\307s+\25\232\207\31\226\214\305;\233%\3" ) 500 ( #"\325\301\t\215P)#\24\213\360\346\304" #"\301\303\315\367x\262\236J\0\250\322\274" #"\301\340\2778\\\242w\321W:dA\335\263C`\300q\233\355n\301\244\366\257" #"\16Zd\220\356\300\305o\316\257\263\362" #"\372}?\apJ\313\245\36p\214-\356\314\236\326I{\220\306`\244\6d7" #"\334c\214\324\214uW\27~\30\266\254" #"Cb\223e\216\232\235\3\373\2454,\327]\357Rk\310w\300r\36\31\265n" #"\264\213\315\f0r\261\236z\210i\eu\306\315,\24,\304\20]\371>\317a" #"Y\215XE\256\3\201#I\233r8\307\331<\240\367\324\35q\332\253\31ML" #"\207\365`\346\200\315us\32\35\\\364" #"\375\210X\313\276g\5b\23\320\234\272" #"\a}\266\200\353\336w\240\336\31-\256" #"\321u\373\235;`\225\234\2352\"\a" #"R\240\350\357\273w\372\352?1\320\32" #"\255;\306\310\6\35\236\241\315\375c\315" #"N\270\232~\264~Ikb\230\341\325\b\b>\213\307\371\4\202\23E\37z\360" #"\36`(\200\6\2005\rfb\305\330x)I2\367`\257\267\337\234K\255k" #"c\226\332\232\3\255\204#\34\35\274R\213bKu\2359\270/O<\353\bp" #"\362\272.\6\357\r\214\351s\337\247c" #"\365:\340n\313\306\\\200\a`\22\240" #"\346\35\337\200\347-k\203*\355\351L" #"f\276K\324\276\253\263^\201c\367\177" #"\332\177:\273\247\355O\355\273\371X\350" #",m\6\205@\2023\221!\357g\212\365\220;\331.}~\17p\372\204\307\16" #"\220\264\256\335\37\3655%\273/{S\366O_=\310z\a\330i\213\342>." #"?\311\264\n\370\364\363S\314\e\367\312" #"Z\v\242\367-\376\16F\346\262\257{" #"\177\227\364!\217\333\277\213\1\324\227" #"\313\6;\222\375\3235\222\305\5\3+\225\314\255Q\231" #"\2=\343-\300te1A\200\e\31/\300\363\fj\254" ) 500 ( #"\355\206'k\252=\333\3\207\314\3404y\313a3\311\r\352\250\227\22R\267i" #"*AP\220T\372\275\6`\200\25\1" #"\2\314\25\201\314\260\313\272\356{\223\343" #"\16\20\357\16\f[\25<\246]Q67\330\327\321\313*=\311\251G\364o\365" #"fL\235\17\22>3\3\35\0\325\2146Xz\244\n\0\355\255j\234\6\262\277" #"\"\346:\274\227oj\275\346\30\230\377" #"\366\233\177\372Q\233\2567\266\364M\274" #"f\237\244\23\16|\227\324R\337\350=" #"\212L\0261\251\361\350\f\277v\326\6" #"!\36\330,LI\34\22\251\22\20\251\217\2106ZZ\307<\243\24\213\310\2~" #"gTTh\316\5'`T\215Y_0\200\221 K\21\220l\255\236/_\214" #"\16s\324\352\210m[k\325A9\345\274\327\230\2512\241\3Bf\232%\17\31" #"1\362\250\247rB\202RE\366\1(\334\2\224 \\\203\34\217dt\346$\240" #"\204\f\233\347&\376\370\370\310w\312\303U\251p9\2569k\204j7\204:T" #",\370\237)\363$`\373|<n\6\256w\220\177~\375\214\206\207q3\3327" #"\240\346\254O\273\316.\335>4Pn\234bf\203\fO7n\311\234\31\203\223" #"9\35\207\271\375\e(\233\223\215S{" #"+\320\250}\333\367\265\356\273\a\a\0R6\252G\263\332\23b@:\30\20\323" #"2G5\223\344AW\251\207!\242\353" #"\273\264\220\273G\335s\244\314\274\232\302" #"\224Z\322\27503R\314\263\366\347\343" #"\361\240^u\324\37N\335W\260\347\373\234l a\247~\234A\2634>\3\223" #"5no\214\205\336\341\1\22\314\275\357\27M$\364hZ\213E\214&HO\20" #"Y`{\337\344\346\34\340\364\2751\336\34s\353`w\271*\0\373\24\23\221N" #"o\244\354\233\fl\261\36\5\236\273\363\351\254\\" #"\201\334\267N\342Q%\32\353\361`w\262\305\350" ) 500 ( #"]1\366c\244s([\243\306\306\320" #"\365\336\0052\336\301\203\30\36\325\266J" #"\311\1q\346\324\264a\6\314\371\300\353" #"\365\231A\270\336O\177\26\255G\262\322" #"\361\367k\221\3459\315A\274b\177\367\354\b\eH#x\35T\273\320\332*`" #"\323Y\252l\316\275\314\342\235M\317\32" #"\316`\244T\236\246\340\17\227\30\251\330" #"\363\326\232\227\332{\324yS\203\3379" #"$\30,\32g\307\262d\375%\313\326\357)m@\260n\35Hd\240\327\336}" #"\326f\346\271\270\357\251l\300nl\251" #"\203\323\330\366\326@\214;\213\251\317\264" #"\b\350\5\306\372u\37sf)E\377L*O4m\334Q\200\246\203\372^\362" #" \e\327Y\340\16\0265RZ\243\247" #"\365\336\356\231\e\356'j\262\6\230\261" #"\b\226#\3309\n\330\20\223Q\243\266" #"\232\314e\371\25\211\375\353\371\244\203\372" #"\\\217\252\265vJ\231\365\200T\367\253{O[\23kg\312\26\240\202\5C\225" #";\f\233)\203\n\247\252\324\264G\226" #"\265\364\0\272\276'\30\345\237;\326:" #"\b\212\255^\203\305q\302\355L\364\373" #"\322>\341\277\205\\\347\344\271W\206!" #"\203\223\310Ipm\0\5Hf\306\221\320Z\353sr_I\245f\237\213d\242" #"\335\375\257\273c\343T\315}\263=\347" #"\34\344\241\214\275kQ\333\373\276\327=" #"\2c\217\21\330#\2y\313\317a\334\313\376\32fmOH,\252\227\302-\324" #"\26d\257\32.\352\31\361N* \355" #"\16\3\370\327\237\220\374K,\2727\346" #"\357\376\365\37\177T\212Su!i\34\315\340\273M7\203\232\34<\323\3\232m" #"\374~\370\0224\314\225\rC\251\210\3" #"1\253\1\262bA?\257\27\340\236\300)# \204\223\17G\317\372\335\5w\212" #"\r\303\371\320\275N\251\352Y\2\23\307\241xW#P\32" #"\306t\320\336\214D:7#}\177I\347wT\241sg" ) 500 ( #"\245\344\0\231n\216\27\344eL_\257W\310Z\265\372?\30|\4\3\345\4\216" #"b\321\5\326\307\30pu\364\216\352\274" #"\245$\17e\205r\263\6\23v\20\351" #"\31\322\25\t\16\267\23\324\323Q\257\322" #"\270\214u\226\374R<\2\334G\233Z53\315g\326\346]w\240\25L\333u" #"\256\233`\274\326\224\206`\336\234\200\273" #"\3\241\367\267Q\245\at\260,\323`" #"\327\177\261s\274f\311\337H\306\212\32" #"\2773E\337\305\312\220$`\35\260\202\265~_\335\twgE\3z\227\253\22" #"\b\342\367a\\G5A\246!\35j \343}L(\2031X\16\324\352\370\304" #"\356\323\371\261F\24>\360\272>\271\306" #"VB\377\2\0\3146\\\355\360\357\224Nrx0\250\374\2145K\272\213\343u" #"-\336\261R\375<06\6\245\353\322" #"\311\1\331\24\244\373\365b\226\265\347\320" #"\241\231\31,\202=\255\37@f~\16I\375T\315\36m\313\212`6$\321\24" #"\240Zgz\301\206E\e5`\300Y^D6\375\320\261\271\347\373QP\375\36" #"L\310Vu6\256\247\360\365\325\317v\277\206~\36\206\310\251T`U&\264\a" #"\312\e\317\347#\266bI\223\225\355\324" #"~\26\20\16\243\337\356U\3677\202\311" #"\225D\232\330F\rT\321}\247\0354\376l\356u\345G\203\275\2011}\353\1" #"\202\366\333\331\0203\242\2579\6\256S" #"\215\240\365\334b\232\357\347E\266\274\257" #"\261\312\317\4\252\5@\251\233\36\16>" #":\351;\363\370\316\344\312\206$\311\21" #"Y1\252\22\360w\37\353\1\f\225\1\334\313s\336\311\219\331\3763h>\244" #"\226\241X\336\376\36\373~\322=\363\214" #"X`\276\2\263\35\\\376\2515\177\337" #"\203p\317\211\241\3\203*3\240\314\233F3\273\363&5\210\245\223,\35" #"\334\2\270\261e\216\373\231\320\232t" #"]\347\276\17\365{\224\302\252\241\23\235" ) 500 ( #"(\32s\246,e\17\212l\f\372E]g\214\250\303$05\24\213\256L\325" #">\0254\3479h\1\305{\352\332\201,\201P\263\241M\325pW\177\204\331$" #"\310\264\344x\323\366e\220\221\23\350\4" #"\362h_\324\243\300\355\351\231\361\223J" #"P\277\237s*\300\367\360G|?\200a\361w\270\enl~P\273\200\251\310" #"\300K\31!H\234\251 *\374\3430" #"B\210\341\3\226\311\234\"\b\30\230\317" #"\334\333\373\334{\263`\\#\2\367\215" #"\265j\310\223\356\311\314cn\2K\242" #"\310\320\336\313z\364\247\312`m.\234" #"K\244J\224\f\305\231\3578A\31\213\"#\245\375]\1\300\212\362\35kvI" #"g\245\333\352}\200\371\357\277\373\347\37" #"\225\226\245\243\t\6(6\336jiF" #"\35\6\351\231\272\313\301\2354\354\357\314" #"\260\2157\311!\223.\236\303\a\250\241" #"g\367I\26\352T\206Q\r\200\357\210\265*s\r\274\366!\3005\213q\304\1" #"`\36\317\333a\314\r\215\273\223\350\6\270\242\34a\241`D\20M\2Wh\363" #"\305s\f3<f\315\266\267v]mN\r\32\0\0[\4\\\252S\236\26\216" #"y\16FH\301P\35G\2=xE\266\271&q]\326\0235\201q\250Q\254" #"\325\323\r\303\327\353\225\f\317\230\305\24" #"\230!'4\2159q\366\5*m\324Z\364`\6c\340\204\374\314\2303S\v" #"\t\346\332}j\177\230\263\3169S\375" #"\347\356\0\2121h\201\3219X\335I\303\300\245PQ>\277gC\223\34\251\2" #"\263\0035\18<X\177\334\234\274Xl\31\257:D\225\16\352\317\322\323l\31" #"\1\a\e'\346\tF\rD\334\200H\375~wd\0\31zF\230\367\301\bZ" #"\233\356t\350\324\f6\31I#&\5\246\21\27\20\17\203\231\367\253\211" #"C\207\200\263\200\252Rm=\353\301\364O_3\252\235\0SI\22G" ) 500 ( #"\200\2520\342\256\6\2400\233\341|\21\0G\201\343\f\247\321\237qLfp\20" #"b\361f\34\222\242/\326\270\357\352\256u\a\16B\34\276\1\b\581J\331" #"\343\376\324\301\257\363\240\372\270\314\202\366" #"3\322\367\236\373m\335;\373%\6\341" #"\35t\364\357\307\254Te\375\375{-\342I\320%\200T\r\274\265?%\373\a" #"'+\177\332\275\351\313\342\274\4N\255" #"w\342\305V\365}\5D\300\34\357\37" #"\336@i\234\347k\327\300\n\335\3632" #"\203\217;K)\306E\207\262\257\247~" #"\177\276\331\256\336\200\332\301w\255M\257" #"\375\254/\r\\\20p\352\347Y\177\246" #"c\216g~\314\225\314\20E\362\225\201;)\347H\311\303:\263:#\324\32\225" #"-\e\225\251h\266\223\256L\303s\356\315\223\375YT:\320\3{\355SM\204" #"\352\316X\353\243LV\377;\365\247\314" #"\265\30\310\205\377\20(\312\206\303!\251FD\215f\1ufrFd\2\212Q" #"\24\0F\354\303\256\343,\226\226\327\251" #"\367X\201To\374\261\2643\02670\6\323\326'pZ\342\213\267w\254\367e" #"}\257\315I \237\345Cd\30\307`y\301\312:a\225(\332MrL v" #"\254\310\0327\3405\215R\235\16\343\177" #"\361\254\310\363i\200\357<g@/\267S\323w\224\202!z\2152\310W\246\366" #"\247\301\214\366LjU\207\37\231s\205?V'\324=\340\240\256{\355uea" #";\353o(\300\307w^\1\205o$\351\346N\334\325qY\267\23\231\335\35\265" #"n+j~G\3737\341\36\326Js\35Ywo\351\257u\355\317\317W+\341" #"Q\6/\0020\17,\207\362\323\17\251\271\bWe\0hE\256x\365@(\320" #"}'0\372^\230\277\375\227\177\370Q\207\304a\330\327\305\250\f\243" #"\242\255\233\301F2'd[\265\320\26t5\245g\326,\rS:^" ) 500 ( #"\202\223\2718\345\n&'\301E\353#\357\334(Yu\366\306\n\6\344\234+\353" #"k\306\252Z\321\210o\242\240\273@\206" #"\272\2145\376\366l\326\336t\0\323\1" #"i.\fw/\365\363\216\343\343\233o" #"\223\361\200\223\221\22-\257q\3063\24" #"$\256se\371C\374\20\25\a\"\335\fw\254([\360S\2659\4.\367\321" #"\200:$Y3\23\0212\342@\310If\264\273_X\253\346g?\37O\320\271" #"\6\210\365\203\211\221\rw\212\242^\241" #"E|\235\315\6\awv\v\363\267a\306Q\277=P\350\207\24277d\324o" #"H\a\255N\322s\366=}omt\2433\2451\"\222\365\275\243\31@\214\302" #"\274Er\2\252\16\352\325\306\v\344=\311\374\217jN\352{B\222db\242\325" #"P\226\373\24\216s\305\276\f\347w\355" #"\253\366\271Y\6\20p\326f\245J\303" #"\336X\217g\214\23&\30\310q\253\261\267z=\222\242\374\276&Z\2274\2Q" #"\243^M++\17v2\251!\357\323Y\310\271&0\b`tmw\326B\302" #"=\265\30e\3403s\20\251\263\r\0" #"\207{\215\1\255R\265\305T\250\216\252" #"\227N\310\t\230s\357\250\261\321\314rb\341\356\r\233m?i\235l0\25\367" #"X+\5\374\273Vow&\257\326\314v\253\275K\346\377\16\214\0d&\306\263" #"\241d\374$\313Bv\357\336\334u\3\333hRY\206 \0\"\265\273/:5" #"\343{\233S\16\273\00015\205\213\361\230\203\n1;\0\273\303p\355\n s" #"\f5\4Rw\4}\234\212\246Z\333}v\202\302\2361A\342\323\n>\362\331" #"F\250A\204M\2759\220f\37\23\274j/5 \247\311c3\312\334\212\371\222" #"\262\314\35\f\313\266\275\263?Z\327\2641Cg\2411\270h,)" #"Z\231S\4@y\236\200\234|vN\224\202y(1D\23Z\356" ) 312 ( #"\215 \20\30\220\315\264\331r\266Y>" #"\23\366<5\320\217\30\255\0\266\20 " #"(\266\235\331\227\30l\24\201\27\337E1\357\f:I\356\214x\27\235I\255 " #"b\344}\211uCmI\304\257\n\27\346\232W\334Q\323\361\362\371;\240\361{" #"\0\301\345\261\370\257|\223\374\216\3361" #"\aS\360\372\251\307\355\224Y\223m\351" #"\366_\354\355\200\265sQ\303g\250\263" #"\277\361|\220\334\371|\275X\2\211\326" #"\344<8\251\321A\222\304P\373\224\3018\245\267:\323k`\311!\242\6\226~" #"\245\0\266\333\201y\364\3\265\276\23\331" #"\227\2\246#@]\275\37\236#$3" #"\376\336\240\373\376\275|\311\214\322\30\345" #"\22\306\340=\216\31Q\274+\2602|~~\306\367\fz\270G$\337\251\6\307" #" ?\214\240S%\214yF\f\267s\r\3\233\300\265C\3343\240\32K\373\267" #"\225\344\204\337\244\357\214\36\233PgP\343\377h6K\272\324qtp\316f_" #"\21i\357\237\254G\32+\20G\314\265" #"8$\v\255\344\311\330\370:\0273\232\357\345Bz\266\23\301\374\377" #"\3C\266\356\373x\267\bN\0\0\0\0IEND\256B`\202" ) 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 17 3 10 #";\347\275\221\344\270\212\347\232\204" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 14 3 5 #"index" 0 0 24 3 5 #" " 0 0 21 3 1 #"0" 0 0 24 3 2 #" " 0 0 21 3 1 #"1" 0 0 24 3 2 #" " 0 0 21 3 1 #"2" 0 0 24 3 2 #" " 0 0 21 3 1 #"3" 0 0 24 3 2 #" " 0 0 21 3 1 #"4" 0 0 24 3 2 #" " 0 0 21 3 1 #"5" 0 0 24 29 1 #"\n" 0 0 14 3 8 #"the-cars" 0 0 24 3 4 #" " 0 0 14 3 2 #"n1" 0 0 24 3 1 #" " 0 0 14 3 2 #"p1" 0 0 24 3 1 #" " 0 0 14 3 2 #"p1" 0 0 24 29 1 #"\n" 0 0 14 3 8 #"the-cdrs" 0 0 24 3 4 #" " 0 0 14 3 2 #"n2" 0 0 24 3 1 #" " 0 0 14 3 2 #"e0" 0 0 24 3 1 #" " 0 0 14 3 2 #"p2" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 17 3 30 #";; the free pointer will be p3" 0 0 24 29 1 #"\n" 0 0 17 3 29 #";; x will be p1, y will be p3" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0 24 29 1 #"\n" 0 0
false
43862094db9e59d91833ca2c54e1ec085399684d
662e55de9b4213323395102bd50fb22b30eaf957
/dissertation/scrbl/introduction.scrbl
aa232c7ef41bf7868ec5d0fc02a490539ec4b008
[]
no_license
bennn/dissertation
3000f2e6e34cc208ee0a5cb47715c93a645eba11
779bfe6f8fee19092849b7e2cfc476df33e9357b
refs/heads/master
2023-03-01T11:28:29.151909
2021-02-11T19:52:37
2021-02-11T19:52:37
267,969,820
7
1
null
null
null
null
UTF-8
Racket
false
false
8,419
scrbl
introduction.scrbl
#lang greenman-thesis/include @; TODO @; - [ ] cut out "articulate" @title{What It's All About} A language that can mix typed and untyped code must balance three conflicting dimensions: @exact{{\renewcommand{\labelitemi}{{\large\decothreeright}} %{\raisebox{0.4ex}{\tiny\(\bullet\)}} \begin{itemize} \item \emph{Proofs}: Static types should be accurate predictions about the way a program behaves at run-time. If a type makes a claim about an expression, then other code---typed or untyped---may depend on it. \item\emph{Performance}: Adding types to part of a codebase should not cripple its running time. On the contrary, a smart compiler should use types to generate efficient code. \item \emph{People}: Untyped code must be free to create all sorts of values and typed code must be able to interact with many untyped designs. Programmers should not have to work around tough constraints on the boundary between typed and untyped code. \end{itemize}}} @|noindent|@; The ideal mixed-typed language would satisy all three goals, letting programmers add descriptive types to any component in a program and supporting those types with deep guarantees and fast performance. This ideal is not here yet. Friction between the dimensions raises a whole host of problems about how to enforce types at run-time. In particular, @emph{performance} is the driving question. Type guarantees that can (in principle) be enforced against untyped code often bring an overwhelming cost, slowing a program down by several orders of magnitude. Researchers have addressed the performance question with designs that advertise low costs, but overall progress towards the ideal is marginal because these designs are incomparable. For one, the performance of a new mixed-typed language is intertwined with the implementation of its host language; comparing performance across different languages is hopeless. Second, the new designs typically compromise on proofs or people. Lacking an apples-to-apples comparison, it is impossible to decide whether a language has solved the performance question. The first half of this dissertation untangles the design space. I present a method to measure performance, a method to measure type guarantees, and basic requirements concerning the expressiveness of such type systems. I apply these methods and conclude that there are two promising designs: @|sdeep| types via the @|snatural| semantics and @|sshallow| types via the @|stransient| semantics. The impasse leads to my thesis question, which asks whether a language can effectively combine both techniques. In the second half of this dissertation, I provide affirmative support for the thesis. @section{Thesis Statement} @|sDeep| and @|sshallow| types can coexist in a way that preserves their formal properties Programmers can combine these types to strengthen @|sshallow|-type guarantees, avoid unimportant @|sdeep|-type runtime errors, and lower the running time of typed/untyped interactions. @section{Dissertation Overview} Looking ahead, the first order of business is to lay down ground rules for expressiveness. My goal is to combine typed and untyped code in a @emph{migratory typing} system, in which types accommodate the grown idioms of an untyped host language (@chapter-ref{chap:why}). Languages that fail the expressiveness criteria, however, can still benefit from the results. @Chapter-ref{chap:performance} presents the first systematic method for evaluating performance and validates this method through an empirical study of two migratory typing systems: Typed Racket and Reticulated Python. Both languages guarantee type soundness, but come with very different performance characteristics; more surpringly, they compute incompatible results for seemingly-equal code. @Chapter-ref{chap:design} brings these two languages, and several others, into a common model for a precise comparison of designs. The design-space analysis motivates a compromise between two semantics: @|snatural| and @|stransient|. @Chapter-ref{chap:transient} presents the first half of the compromise; namely, a @|stransient| semantics for Typed Racket. @Chapter-ref{chap:both} formally proves that @|sdeep| and @|sshallow| types can interoperate and reports the performance of a Typed Racket variant that supports both @|snatural| and @|stransient| behavior. The dissertation ends with a view to future work (@chapter-ref{chap:future}) and reflections on the wider research context (@chapter-ref{chap:conclusion}). Overall, I present four major contributions: @itemlist[#:style 'ordered @item{ the first performance-analysis method to systematically explore the interactions enabled by a mixed-typed language; } @item{ the first design-analysis method to articulate the meaning of types for both typed and untyped parts of a codebase; } @item{ a scaled-up @|stransient| that handles a rich language of types and employs ahead-of-time optimizations; and } @item{ the first language that lets programmers migrate untyped code to two type-sound disciplines: @|sdeep| and @|sshallow| types. }] @; @|noindent|The first two contributions helped to develop my thesis statement. @; The latter arose from my work on the thesis. @section{Specification, Implementation, and Naming} @; http://www.ccs.neu.edu/home/shivers/papers/whats-in-a-name.html This dissertation is about different ways of mixing typed and untyped code in a programming language. Each ``way'' starts from a rough idea, comes to life via a formal semantics, and is tested against formal specifications. Different instances of these three concepts need names. My primary focus is on two rough ideas: @|sdeep| types and @|sshallow| types. @|sDeep| types are nearly as good as static types. If types in a statically-typed language provide a certain guarantee, then the @|sdeep| versions of those types strive for the same guarantee no matter what untyped code throws at them. @|sShallow| types are weaker than @|sdeep| types, but better than nothing. A @|sshallow| type may provide a temporary guarantee, and may permit more behaviors than the corresponding static type. These two ideas are accompanied by two leading semantics: @|snatural| and @|stransient| (@chapter-ref{chap:design}). @|sNatural| realizes @|sdeep| types by carefully monitoring the boundaries between typed and untyped code---either with exhaustive assertions or proxy wrappers. @|sTransient| realizes @|sshallow| types by rewriting all typed code to check the basic shape of every value that might be from untyped. The two properties that distinguish these semantics, and thereby provide a formal distinction between @|sdeep| and @|sshallow| and weaker ideas, are @|scm| and @|sts| (@chapter-ref{chap:design}). @|sNatural| satisfies @|scm| while @|stransient| does not. Both @|snatural| and @|stransient| satisfy a non-trivial @|sts|. Weaker mixings are unsound. I use informal words to talk about different ``ways of mixing typed and untyped code,'' including: methods, strategies, and approaches. There is no hope in trying to be authoritative because the research community is still seeking a best method for a useful combination. @subsection{Names in Prior Work} @citet{tgpk-dls-2018} introduce the names @emph[sdeep] and @emph[sshallow], but use them for the @|snatural| and @|stransient| implementations. @citet{gf-icfp-2018} use @emph{higher-order} for the @|sdeep| idea and @emph{first-order} for the @|sshallow| idea. @|sNatural| goes by many names. @citet{vksb-dls-2014} and several others call it @emph[sguarded] because the semantics keeps a firm barrier between typed and untyped code. @citet{clzv-ecoop-2018} introduce the word @emph{behavioral} for both the semantics and its characteristic wrapper values. Foundational papers simply call it gradual typing@~cite{st-sfp-2006,tf-dls-2006,htf-hosc-2010}. The name @emph[snatural] comes from @citet{mf-toplas-2009}, who use it to describe a proxy method for transporting untyped functions into a typed context. Earliers works on higher-order contracts@~citep{ff-icfp-2002}, remote procedure calls@~citep{ok-popl-2003}, and typed foreign function interfaces@~citep{r-jfp-2008} employ a similar method. @citet{nla-popl-2019} present a semantic argument that @|snatural| is indeed the only way to enforce the key properties of static types.
false
c1c68ca9f68ac4f76988e3b5d23dd3d902651a24
ca4db8fda12d92e355b002fa83e45d57f64817e6
/work/progs/6709559.rkt
e149146cc2043ce4390a974e728c3d222580fcc5
[]
no_license
cmentzer/Redex
4655ad1efb52a388d819b7501220c7525dc7cc22
36ef8bc61464708d8ee984a9b06b14e2c8b1c5e1
refs/heads/master
2020-12-31T04:56:06.952818
2016-05-19T01:48:04
2016-05-19T01:48:04
59,129,117
0
0
null
null
null
null
UTF-8
Racket
false
false
102
rkt
6709559.rkt
(module f racket (provide (contract-out (f (-> any/c (=/c 73))))) (define (f x) ((λ ((H num)) H) 8)))
false
e36edbbbaa3bdf4964017d17d6d896c5d804f14a
453869ca6ccd4c055aa7ba5b09c1b2deccd5fe0c
/tests/basic/quasiquote.rkt
d6a85a383344ad453e6dc0a66084ade8ed15d8db
[ "MIT" ]
permissive
racketscript/racketscript
52d1b67470aaecfd2606e96910c7dea0d98377c1
bff853c802b0073d08043f850108a57981d9f826
refs/heads/master
2023-09-04T09:14:10.131529
2023-09-02T16:33:53
2023-09-02T16:33:53
52,491,211
328
16
MIT
2023-09-02T16:33:55
2016-02-25T02:38:38
Racket
UTF-8
Racket
false
false
172
rkt
quasiquote.rkt
#lang racket (displayln `(1 2 3 (4 5 6) ,(+ 7 8 9))) (displayln `(1 2 3 (4 5 6) ,(+ 7 8 9) ,@(list 10 11 12))) (displayln `(1 2 3 (4 [5 6]) ,(+ 7 8 9) ,@(list 10 11 12)))
false
29b073ba691c65513f865d8bcc74d8d183471c29
319356bd82bae9c8aa8606771abfc991b1bea2c1
/model/lang.rkt
d2f9ccc0c979eeca888c50f70133b07fe3b1524d
[ "Apache-2.0" ]
permissive
pnwamk/sst-tutorial
f01cab3b11d98ba289c81afc3da84f460135c6d1
c7ce1a35e3ba688ee275144941e729ff8b3b0c40
refs/heads/master
2021-11-25T23:23:06.426933
2021-11-23T04:02:12
2021-11-23T04:02:12
124,287,442
12
3
Apache-2.0
2021-11-23T04:05:30
2018-03-07T19:59:01
Racket
UTF-8
Racket
false
false
1,837
rkt
lang.rkt
#lang racket/base (require redex/reduction-semantics racket/match) (provide (all-defined-out)) (define-language sst ;; base types [ι ::= Int Str True False] ;; user-level type syntax [τ σ ::= ι (Pair τ τ) (Fun τ τ) (Or τ τ) (And τ τ) (Not τ) Any Empty] ;; types (efficient representation) [t s ::= (Type β Prodb Arrowb)] [β ::= (Base ± B)] [B ::= (Set ι ...)] [± ::= + -] ;; Lazy Binary Decision Diagrams (BDD) [b ::= Top Bot n] [n ::= (Node a b b b)] [a ::= (× t t) (→ t t)] [Prodb ::= Top Bot (Node (× t t) Prodb Prodb Prodb)] [Arrowb ::= Top Bot (Node (→ t t) Arrowb Arrowb Arrowb)] ;; Base type union/negation [P ::= ∅ (set-cons a P)] [N ::= ∅ (set-cons a N)] [bool ::= #true #false] [idx ::= 1 2]) (define-term Any-Pair (Pair Any Any)) (define-term Any-Fun (Fun Empty Any)) (define-term Any-Base (Not (Or Any-Pair Any-Fun))) (define-judgment-form sst #:mode (equal-to I I) #:contract (equal-to any any) [------------------ (equal-to any_1 any_1)]) ;; an ordering on symbol/null/cons trees ;; sym < nil < cons (define (raw-term<? t1 t2) (match* (t1 t2) [(_ _) #:when (eq? t1 t2) #f] [((? symbol? x) (? symbol? y)) (symbol<? x y)] [((? symbol? x) _) #t] [((list) _) #t] [((cons x xs) (cons y ys)) (cond [(raw-term<? x y) #t] [(raw-term<? y x) #f] [else (raw-term<? xs ys)])] [((cons _ _) _) #f])) (define-judgment-form sst #:mode (less-than I I) #:contract (less-than any any) [(where #t ,(raw-term<? (term any_1) (term any_2))) ----------------------- (less-than any_1 any_2) ]) (define-judgment-form sst #:mode (greater-than I I) #:contract (greater-than any any) [(less-than any_2 any_1) ----------------------- (greater-than any_1 any_2)])
false
ee173349f7efe7882d449cdda03d27d355d88233
cbdf773c05364e99f8c689c86d96b110173d5266
/courses/2017/01/cs2500/code/25-bigger-sets/bst-sets.rkt
b7c4fbe6c6c8cac4da41dc949582419f617b6f7c
[]
no_license
NatTuck/khoury-ntuck
4ca4cc3cbeb193e007674afb6921bfa25829887e
a0f1ea5f506408bb5dfa287f476b616d57d39d56
refs/heads/master
2023-06-14T20:47:12.336828
2021-05-13T23:27:02
2021-05-13T23:27:02
28,753,895
1
0
null
2021-07-12T18:59:17
2015-01-03T20:28:10
Racket
UTF-8
Racket
false
false
3,375
rkt
bst-sets.rkt
;; The first three lines of this file were inserted by DrRacket. They record metadata ;; about the language level of this file in a form that our tools can easily process. #reader(lib "htdp-intermediate-lambda-reader.ss" "lang")((modname bst-sets) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f () #f))) (define-struct node [num left right]) ; A BST (of Numbers) is one of: ; - empty ; - (make-node Number BST BST) ; ; Where (max left value) < value <= (min right value) ; for each node. ; BST -> List ; Extract the Numbers from a BST in sorted order. (check-expect (extract empty) empty) (check-expect (extract (make-node 5 empty (make-node 6 empty empty))) (list 5 6)) (define (extract bst) (cond [(empty? bst) empty] [(node? bst) (append (extract (node-left bst)) (list (node-num bst)) (extract (node-right bst)))])) ; Number BST -> BST ; Insert a number into the BST. (check-expect (insert 5 empty) (make-node 5 empty empty)) (check-expect (insert 7 (make-node 5 empty empty)) (make-node 5 empty (make-node 7 empty empty))) (check-expect (insert 4 (make-node 5 empty empty)) (make-node 5 (make-node 4 empty empty) empty)) (check-expect (insert 5 (make-node 5 empty empty)) (make-node 5 empty empty)) (define (insert n bst) (cond [(empty? bst) (make-node n empty empty)] [(and (node? bst) (= (node-num bst) n)) bst] [else (if (< n (node-num bst)) (make-node (node-num bst) (insert n (node-left bst)) (node-right bst)) (make-node (node-num bst) (node-left bst) (insert n (node-right bst))))])) ; set insert: ; - worst case: n ; - balanced tree: log n ; [List-of Number] -> BST ; Build a list of numbers into a BST. (check-expect (extract (build-bst empty)) empty) (check-expect (extract (build-bst '(3 2 1))) '(1 2 3)) (define (build-bst xs) (foldr insert empty xs)) ; Number BST -> Boolean ; Does the BST have the number in it? (check-expect (contains? 5 (build-bst '(7 2 5))) true) (check-expect (contains? 5 (build-bst '(7 2 6))) false) (define (contains? n bt) (cond [(empty? bt) false] [(= n (node-num bt)) true] [(< n (node-num bt)) (contains? n (node-left bt))] [else (contains? n (node-right bt))])) ; Set: member ; - worst case: n ; - balanced tree: log n ; Number BST -> BST ; Remove a number from the BST. (check-expect (extract (bst-remove 5 (build-bst '(7 2 5)))) '(2 7)) (check-expect (bst-remove 5 empty) empty) (check-expect (extract (bst-remove 5 (build-bst '(5 8)))) '(8)) (check-expect (extract (bst-remove 5 (build-bst '(3 5 2)))) '(2 3)) (define (bst-remove n bt) (cond [(empty? bt) empty] [(= n (node-num bt)) (if (empty? (node-left bt)) (node-right bt) (make-node (node-num (node-left bt)) (bst-remove (node-num (node-left bt)) (node-left bt)) (node-right bt)))] [(< n (node-num bt)) (make-node (node-num bt) (bst-remove n (node-left bt)) (node-right bt))] [else (make-node (node-num bt) (node-left bt) (bst-remove n (node-right bt)))])) ; Operations: ; contains? ; union ; intersect
false
5510ba019da1aaf21fc691dc50b8bd3ba6468799
3e9f044c5014959ce0e915fe1177d19f93d238ed
/racket/com-spacetimecat/racket/syntax.rkt
e2ae166c8675031d2112bfc4789600779bec8ae3
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0", "LicenseRef-scancode-public-domain", "CC0-1.0", "BSD-2-Clause" ]
permissive
edom/work
5e15c311dd49eb55fafbff3455cae505fa51643a
df55868caa436efc631e145a43e833220b8da1d0
refs/heads/master
2022-10-10T22:25:11.652701
2020-02-26T19:42:08
2020-02-26T19:44:58
138,504,284
0
1
NOASSERTION
2022-10-06T01:38:07
2018-06-24T18:03:16
TeX
UTF-8
Racket
false
false
4,201
rkt
syntax.rkt
#lang racket/base (require (for-syntax racket/base syntax/parse ) "require-provide.rkt" ) (require+provide (for-syntax racket/syntax "syntax-parse.rkt" ) syntax/parse/define syntax/srcloc "syntax-parse.rkt" ) (provide identifier->string string->identifier $eval1 define-syntax-case define-syntax-rules $if syntax-srcloc syntax-position-1 ;; one-based index syntax-position-0 ;; zero-based index stx-append-map ) (define (identifier->string id) (symbol->string (syntax->datum id)) ) (define (string->identifier ctx str) (datum->syntax ctx (string->symbol str)) ) ;; The form ($eval1 Exp) expands to a datum syntax object that wraps Val, ;; where Val is the result of evaluating Exp at phase level 1 at expansion time. ;; ;; Example: ;; ;; (define-for-syntax x (+ 1 2)) ;; ;; ;; This produces 3. ;; ($eval1 x) ;; ;; If you need only Val without the syntax object wrapping, ;; you can use syntax-local-eval instead. ;; ;; Beware of Racket's Separate Compilation Guarantee. ;; The expression evaluation should be free of mutation, ;; and the returned value should not be mutated. ;; The following is an unrealistic example of bad (legal but confusing) code: ;; ;; (define-for-syntax port (open-output-string)) ;; ;; ;; displayln inside the eval. ;; ($eval1 (displayln "foo" port)) ;; ;; ;; displayln outside the eval. ;; (displayln "bar" ($eval1 port)) ;; ;; ;; This produces "foo". ;; (displayln ($eval1 (get-output-string port))) ;; ;; ;; This produces "foobar". ;; (displayln (get-output-string ($eval1 port))) (define-syntax ($eval1 stx) (syntax-case stx () [(_ Exp) ;; This let-syntax form could be replaced with the shorter expression ;; (datum->syntax stx (syntax-local-eval #'Exp)). ;; However, there is no need for eval here, ;; because Racket is going to evaluate Exp anyway. #'(let-syntax ;; bring-down is bound in phase 0, ;; but the lambda is evaluated in phase 1. ([bring-down (lambda (stx) (datum->syntax stx Exp))]) (bring-down) ) ])) (begin-for-syntax (define-syntax-class Define-Syntax-Head$ [pattern id:id #:with stx #'stx #:with head #'(id stx) ] [pattern (id:id stx:id) #:with head #'(id stx) ] ) ) ;; This is a common pattern that combines define-syntax and syntax-case. ;; ;; (define-syntax-case Head ;; Opt-Literals ;; Case ...) ;; => ;; (define-syntax (Id stx) ;; (syntax-case stx (literal-id ...) ;; Case ... ;; ) ;; ) ;; ;; ;; Head ::= id | (id stx-id) ;; ;; ;; Opt-Literals ::= ;; | #:literals (literal-id ...) ;; ;; Case is a case as in syntax-case. (define-syntax-parser define-syntax-case [ (_ Head:Define-Syntax-Head$ [~optional-seq #:literals (Literal ...)] Case ... ) #:with Literals #'(~? (Literal ...) ()) #'(define-syntax (Head.id Head.stx) (syntax-case Head.stx Literals Case ... ) ) ] ) (define-syntax-rule (define-syntax-rules Name Literals Clause ...) (define-syntax Name (syntax-rules Literals Clause ...) ) ) ;; Conditional expansion. (define-syntax-case $if [ (_ Cond True False) (if (syntax-local-eval #'Cond) #'True #'False ) ] ) (define (syntax-srcloc stx) (make-srcloc (syntax-source stx) (syntax-line stx) (syntax-column stx) (syntax-position stx) (syntax-span stx))) (define (syntax-position-1 s) (syntax-position s)) (define (syntax-position-0 s) (define pos1 (syntax-position-1 s)) (if pos1 (- pos1 1) #f)) (define (stx-append-map f stx) (define (loop stx) (syntax-case stx () [() #'()] [(head . tail) #`(#,@(f #'head) . #,(loop #'tail))])) (loop stx))
true
fb69d6d3d83ada3be678de28cbb96ed5b252f8f9
e553691752e4d43e92c0818e2043234e7a61c01b
/rosette/lib/util/syntax.rkt
2b418004b21bea34aa6e8bff9cb63303a39e75f0
[ "BSD-2-Clause" ]
permissive
emina/rosette
2b8c1bcf0bf744ba01ac41049a00b21d1d5d929f
5dd348906d8bafacef6354c2e5e75a67be0bec66
refs/heads/master
2023-08-30T20:16:51.221490
2023-08-11T01:38:48
2023-08-11T01:38:48
22,478,354
656
89
NOASSERTION
2023-09-14T02:27:51
2014-07-31T17:29:18
Racket
UTF-8
Racket
false
false
4,677
rkt
syntax.rkt
#lang racket (provide (rename-out [syntax->location location]) location? location-source location-start location-end location-contains? read-module path-string->string syntax->readable-location rebuild make-transform keep-lambda-properties rebuild make-transform define-disarm make-add-annotate-property) (require syntax/parse/define syntax/parse (for-syntax racket/base)) (struct location (source start end) #:transparent) (define (syntax->location stx) (let ([pos (syntax-position stx)] [span (syntax-span stx)]) (and pos span (location (syntax-source stx) pos (+ pos span))))) (define (location-contains? outer inner) (and (equal? (location-source outer) (location-source inner)) (<= (location-start outer) (location-start inner)) (>= (location-end outer) (location-end inner)))) (define (read-module path) (parameterize ([read-accept-reader #t] [port-count-lines-enabled #t]) (read-syntax path (open-input-file path)))) (define (syntax->readable-location stx) (list (path-string->string (syntax-source stx)) (syntax-line stx) (syntax-column stx))) ;; Convert a path to a string (define (path-string->string path) (if (path? path) (path->string path) path)) (define (keep-lambda-properties orig new) (let* ([new (let ([p (syntax-property orig 'method-arity-error)]) (if p (syntax-property new 'method-arity-error p) new))] [new (let ([p (syntax-property orig 'inferred-name)]) (if p (syntax-property new 'inferred-name p) new))]) new)) (define (rebuild expr replacements) (let loop ([expr expr] [same-k (lambda () expr)] [diff-k (lambda (x) x)]) (let ([a (assq expr replacements)]) (cond [a (diff-k (cdr a))] [(pair? expr) (loop (car expr) (lambda () (loop (cdr expr) same-k (lambda (y) (diff-k (cons (car expr) y))))) (lambda (x) (loop (cdr expr) (lambda () (diff-k (cons x (cdr expr)))) (lambda (y) (diff-k (cons x y))))))] [(vector? expr) (loop (vector->list expr) same-k (lambda (x) (diff-k (list->vector x))))] [(box? expr) (loop (unbox expr) same-k (lambda (x) (diff-k (box x))))] [(syntax? expr) (if (identifier? expr) (same-k) (loop (syntax-e expr) same-k (lambda (x) (diff-k (datum->syntax expr x expr expr)))))] [else (same-k)])))) (define ((make-transform expr disarmed-expr annotate phase rearm) xs #:expr [e disarmed-expr] #:annotate [ann annotate] #:phase [ph phase] #:rearm? [rearm? #t]) (define rebuilt (rebuild e (map (λ (x) (cons x (ann x ph))) xs))) (if rearm? (rearm expr rebuilt) rebuilt)) (define-simple-macro (define-disarm disarm:id inspector) (define-syntax disarm (pattern-expander (syntax-parser [(_ pattern) #'(~and x (~parse pattern (syntax-disarm #'x inspector)))])))) (define ((make-add-annotate-property disarm annotate-key) s) (let add-annotate-property ([s s]) (cond [(syntax? s) (define new-s (syntax-rearm (let ([s (disarm s)]) (datum->syntax s (add-annotate-property (syntax-e s)) s s)) s)) (syntax-property new-s annotate-key #t #t)] [(pair? s) (cons (add-annotate-property (car s)) (add-annotate-property (cdr s)))] [(vector? s) (for/vector #:length (vector-length s) ([e (in-vector s)]) (add-annotate-property e))] [(box? s) (box (add-annotate-property (unbox s)))] [(prefab-struct-key s) => (lambda (k) (apply make-prefab-struct k (add-annotate-property (cdr (vector->list (struct->vector s))))))] [(and (hash? s) (immutable? s)) (cond [(hash-eq? s) (for/hasheq ([(k v) (in-hash s)]) (values k (add-annotate-property v)))] [(hash-eqv? s) (for/hasheqv ([(k v) (in-hash s)]) (values k (add-annotate-property v)))] [else (for/hash ([(k v) (in-hash s)]) (values k (add-annotate-property v)))])] [else s])))
true
28a93fbae4ea83eef4b737fa42ce750863f05305
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/fail/poly-struct-mutable-parent.rkt
09d2932123fd1a25aeab4c23611c79fcc7bb57e5
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
racket/typed-racket
2cde60da289399d74e945b8f86fbda662520e1ef
f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554
refs/heads/master
2023-09-01T23:26:03.765739
2023-08-09T01:22:36
2023-08-09T01:22:36
27,412,259
571
131
NOASSERTION
2023-08-09T01:22:41
2014-12-02T03:00:29
Racket
UTF-8
Racket
false
false
360
rkt
poly-struct-mutable-parent.rkt
#lang typed/racket ;; The call to `set-foo-x!` below should fail because the ;; predicate filter on `bar?` has to be restrictive. (struct (A) foo ([x : A]) #:mutable) (struct (A) baz foo ()) (define (f [i : Integer]) : (foo Integer) (baz i)) (: x (foo Integer)) (define x (f 1)) (: y Any) (define y x) (if (baz? y) (set-foo-x! y "foo") 2) (foo-x x)
false
91a1b50668f1a680debdc27b2c880c6954699cf6
39551ef8b2a615c31885b907ed95d2c49247317a
/S2/Funktionale/demos/demo5b.rkt
6b5d99962b522463da8f25b060e3fd3d103cd6ba
[]
no_license
ariez-xyz/LectureNotes
cfbc07d60a39719971f5073f513f467198059cf2
5cba22f5c3c3554d02897e0aca646f05d3e9882f
refs/heads/master
2023-06-09T20:20:03.147705
2021-07-08T20:52:16
2021-07-08T20:52:16
null
0
0
null
null
null
null
UTF-8
Racket
false
false
2,077
rkt
demo5b.rkt
#lang racket ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; SICP chapter 3 (define balance 100) (define (withdraw amount) (if (>= balance amount) (begin (set! balance (- balance amount)) balance) "Insufficient funds")) (withdraw 25) ;75 (withdraw 25) ;50 (withdraw 60) ;"Insufficient funds" (withdraw 15) ;35 ;;encapsulation (define new-withdraw (let ((bal 100)) (lambda (amount) (if (>= bal amount) (begin (set! bal (- bal amount)) bal) "Insufficient funds")))) ;;withdrawal processors (define (make-withdraw balance) (lambda (amount) (if (>= balance amount) (begin (set! balance (- balance amount)) balance) "Insufficient funds"))) ;Make-withdraw can be used as follows to create two objects W1 and W2: (define W1 (make-withdraw 100)) (define W2 (make-withdraw 100)) (W1 50) ;50 (W2 70) ;30 (W2 40) ;"Insufficient funds" (W1 40) ;10 ;; a bankaccount as an object (define (make-account balance) (define (withdraw amount) (if (>= balance amount) (begin (set! balance (- balance amount)) balance) "Insufficient funds")) (define (deposit amount) (set! balance (+ balance amount)) balance) (define (dispatch m) (cond ((eq? m 'withdraw) withdraw) ((eq? m 'deposit) deposit) (else (error "Unknown request -- MAKE-ACCOUNT" m)))) dispatch) (define acc (make-account 100)) ((acc 'withdraw) 50) ;50 ((acc 'withdraw) 60) ;"Insufficient funds" ((acc 'deposit) 40) ;90 ((acc 'withdraw) 60) ;30 ;;;;;;;;;;;; (define (cons x y) (define (set-x! v) (set! x v)) (define (set-y! v) (set! y v)) (define (dispatch m) (cond ((eq? m 'car) x) ((eq? m 'cdr) y) ((eq? m 'set-car!) set-x!) ((eq? m 'set-cdr!) set-y!) (else (error "Undefined operation -- CONS" m)))) dispatch) (define (car z) (z 'car)) (define (cdr z) (z 'cdr)) (define (set-car! z new-value) ((z 'set-car!) new-value) z) (define (set-cdr! z new-value) ((z 'set-cdr!) new-value) z)
false
80a7ad756e5f775bc5c84211c326f330981f53d9
b544188e9e7517a216abeb93f2aec6d7bb64acd5
/oauth/header.rkt
bf65e2cce32d9bffa8d4d98a380029d4b3b50114
[]
no_license
lyons/twitter
fc6818cb76ce783a21229415d35179eac7b5f2d5
ba109f18d78d9a2957ff465fac32b687cef354de
refs/heads/master
2016-09-05T23:36:03.862956
2014-08-21T02:52:06
2014-08-21T02:52:06
23,165,047
2
0
null
null
null
null
UTF-8
Racket
false
false
3,156
rkt
header.rkt
#lang typed/racket/base (provide oauth-header oauth-multipart-data) (require "types.rkt" "parameters.rkt" "private/header-helpers.rkt" "private/multipart.rkt" "private/signature.rkt" "private/type-helpers.rkt") (provide (all-from-out "types.rkt") (all-from-out "parameters.rkt")) (require racket/match (only-in racket/string string-join string-replace)) (require/typed net/uri-codec [uri-unreserved-encode (-> String String)]) (: oauth-header (->* [HTTP-Method OAuth-URL #:client Client #:token (Option Token) #:signing-method Signing-Method #:data HTTP-Parameter-List #:other-oauth-fields HTTP-Parameter-List] [#:oauth-realm (Option String) #:timestamp-method (-> String) #:nonce-method (-> String)] String)) (define oauth-header (λ (http-method url #:client client #:token token #:signing-method signing-method #:data data #:other-oauth-fields other-fields #:oauth-realm [realm #f] #:timestamp-method [timestamp oauth-timestamp] #:nonce-method [nonce oauth-nonce]) (define base-params (append `(,(Param "oauth_consumer_key" (Client-key client)) ,(Param "oauth_nonce" (nonce)) ,(Param "oauth_signature_method" (symbol->string signing-method)) ,(Param "oauth_timestamp" (timestamp)) ,(Param "oauth_version" "1.0")) (~token->spliceable-oauth-parameter token) other-fields)) (define signature (Param "oauth_signature" (match signing-method ['HMAC-SHA1 (sign-HMAC-SHA1 (signing-key client token) (signature-base-string http-method url base-params data))] ['plaintext (sign-plaintext (signing-key client token))]))) (define params (sort (cons signature base-params) parameter<?)) (define header (string-append "Authorization: OAuth " (if realm (string-append "realm=\"" (uri-unreserved-encode realm) "\", ") "") (parameterlist->string params #:transformer parameter->quoted-string #:joiner ", "))) header)) (: oauth-multipart-data (-> (Listof HTTP-Parameter) (Listof Path) Bytes Bytes)) (define (oauth-multipart-data params paths boundary) (apply bytes-append `(,@(map (λ ([param : HTTP-Parameter]) (param->multipart-data param boundary)) params) ,@(map (λ ([path : Path]) (file->multipart-data path boundary)) paths) ,(bytes-append #"--" boundary #"--"))))
false
ac86aa4aae96d51a17de80383a0e0567a1a3edcf
d875100235f2178660408aaf77ba6dd47753ea21
/Programming languages/Racket/Week 1/racket_basics.rkt
48c51a8dfed5138590b78af661933f00ce81a254
[ "MIT" ]
permissive
lukasz-pyrzyk/Learning
5cc8f7ff5d7e6d302d12d72352c9f19f5710f28f
4a3eac8c3feac2105ec76c1e4462935e13ac877a
refs/heads/master
2022-12-17T16:31:57.707037
2017-11-15T14:37:25
2017-11-15T14:37:25
95,455,119
1
0
MIT
2022-12-07T09:19:40
2017-06-26T14:26:39
C#
UTF-8
Racket
false
false
430
rkt
racket_basics.rkt
#lang racket (provide (all-defined-out)) (define x 3) ; val x = 3 (define y (+ x 2)) ; + is a function, call it here (define cube1 (lambda (x) (* x (*) x x))) ; x * (x * x) (define cube2 (lambda (x) (* x x x))) (define (cube3 x) (* x x x)) (define (pow1 x y) (if (= y 0) 1 (* x (pow1 x (- y 1))) )) (define pow2 (lambda (x) (lambda (y) (pow1 x y)))) (define three-to-the (pow2 3))
false
005d4ba73767854d0285e93baa3264875dc3718c
65939926c03f939e205a0d0293a774dd970c6903
/hive/client.rkt
7289ab0f30d40c627f01428eb0141f41c60df017
[ "MIT" ]
permissive
Kalimehtar/hive-client
a34033d0b4ca15b9a11076234daf424fea311cbb
605dd70cdeb4bcc88e9c79d744bcca6fc89c611d
refs/heads/master
2021-10-29T05:51:55.968148
2021-10-17T15:08:13
2021-10-17T15:08:13
61,033,730
0
0
null
null
null
null
UTF-8
Racket
false
false
4,515
rkt
client.rkt
#lang racket (provide application% log-event) (require racket/gui (prefix-in txt: "client/string-constants.rkt") (rename-in "client/commands.rkt" [disconnect real-disconnect]) "client/users.rkt") (define ((log-event text) data) (send text set-position (send text get-end-position)) (send text insert (format "~a\n" data))) (define application% (class frame% (init [program-name ""] [width 800] [height 600] [default-host "locahost"] [init-status "Started"]) (init-field [port 1313] [on-event (λ (data) #t)] [on-connect (λ (the-connection) #t)] [debug (λ (data) #t)]) (super-new [label program-name] [width width] [height height]) (inherit create-status-line set-status-text show) (define user/pass #f) (define/public (get-menu) menu-bar) (define/public (get-settings-menu) settings-menu) (define/public (set-user-pass! username password) (set! user/pass (cons username password))) (define the-connection #f) (define/public (connection) (unless (connection-alive? the-connection) (define (on-fail e) (cond [(exn:fail:network? e) (message-box (txt:error) (format "~a\n~a" (txt:cannot-connect) (exn-message e)) this '(ok caution)) (send frame-settings show #t)] [(exn:fail:user? e) (message-box (txt:error) (exn-message e) this '(ok caution)) (send frame-settings show #t)] [else (debug e)])) (set! the-connection (if user/pass (connect port on-event on-connect on-fail (car user/pass) (cdr user/pass)) (connect port on-event on-connect on-fail)))) the-connection) (define/public (disconnect) (when the-connection (real-disconnect the-connection) (set! the-connection #f))) (define/augment (on-close) (disconnect) (inner (void) on-close)) (define menu-bar (new menu-bar% [parent this])) (define settings-menu (new menu% [parent menu-bar] [label (txt:settings)])) (define settings-menu-item (new menu-item% [parent settings-menu] [label (txt:settings)] [callback (λ (m e) (send frame-settings show #t))])) (define users-menu-item (new menu-item% [parent settings-menu] [label (txt:users)] [callback (λ (m e) (when (connection-alive? (connection)) (define f (new frame% [label "Users"] [width width] [height height])) (users-form (connection) f) (send f show #t)))])) (create-status-line) (set-status-text init-status) (define frame-settings (let* ([dialog (new dialog% [label (txt:settings)] [parent this])] [server (new text-field% [label (txt:server)] [parent dialog] [init-value (or (get-preference 'server) default-host)])] [username (new text-field% [label (txt:username)] [parent dialog] [init-value (or (get-preference 'username) "")])] [password (new text-field% [label (txt:password)] [parent dialog] [init-value (or (get-preference 'password) "")])]) (new button% [label (txt:save)] [parent dialog] [callback (λ (b e) (put-preferences '(server username password) (map (λ (x)(send x get-value)) (list server username password))) (send dialog show #f))]) dialog)))) (module test racket/base) ; gui
false
81cc691e8f8a1c7b00d913b246cf1efe8103c052
f987ad08fe780a03168e72efce172ea86ad5e6c0
/plai-lib/tests/gc/other-mutators/error.rkt
d811c4825a5b116b3bd0532a138527f76c372b09
[ "LicenseRef-scancode-unknown-license-reference", "MIT", "Apache-2.0" ]
permissive
racket/plai
a76573fdd29b648e04f8adabcdc8fb1f6825d036
ae42bcb581ab02dcb9ddaea98d5ecded589c8d47
refs/heads/master
2023-08-18T18:41:24.326877
2022-10-03T02:10:02
2022-10-03T02:10:14
27,412,198
11
12
NOASSERTION
2022-07-08T19:16:11
2014-12-02T02:58:30
Racket
UTF-8
Racket
false
false
121
rkt
error.rkt
#lang plai/mutator (allocator-setup "../good-collectors/good-collector.rkt" 400) (error 'error "plai/mutator has error")
false
b5e64eb99cf00d964cd63fb81fa1d5104e19259a
9dc77b822eb96cd03ec549a3a71e81f640350276
/media/application/octet-stream.scrbl
78f2ba34c6103b9404ac4a1f8a0ef4dd61948196
[ "Apache-2.0" ]
permissive
jackfirth/rebellion
42eadaee1d0270ad0007055cad1e0d6f9d14b5d2
69dce215e231e62889389bc40be11f5b4387b304
refs/heads/master
2023-03-09T19:44:29.168895
2023-02-23T05:39:33
2023-02-23T05:39:33
155,018,201
88
21
Apache-2.0
2023-09-07T03:44:59
2018-10-27T23:18:52
Racket
UTF-8
Racket
false
false
3,059
scrbl
octet-stream.scrbl
#lang scribble/manual @(require (for-label racket/base racket/contract/base rebellion/media rebellion/media/application/octet-stream) (submod rebellion/private/scribble-evaluator-factory doc) scribble/example) @(define make-evaluator (make-module-sharing-evaluator-factory #:public (list 'rebellion/media/application/octet-stream) #:private (list 'racket/base))) @title{Octet Streams} @defmodule[rebellion/media/application/octet-stream] An @deftech{octet stream} is an immutable byte string whose last byte may include extra bits of padding, making octet streams semantically similar to @tech{bitstrings}. Octet streams are @tech{media}, and their @tech{media type} is @racket[application/octet-stream]. @defproc[(octet-stream? [v any/c]) boolean?]{ A predicate for @tech{octet streams}.} @defproc[(application/octet-stream [#:padding padding (integer-in 0 7) 0]) media-type?]{ Constructs the @tech{media type} of @tech{octet streams} padded with @racket[ padding] bits. @(examples #:eval (make-evaluator) #:once (application/octet-stream) (application/octet-stream #:padding 6))} @defproc[(octet-stream [bstr immutable-bytes?] [#:padding padding (integer-in 0 7) 0]) octet-stream?]{ Constructs an @tech{octet stream} from @racket[bstr]. If @racket[padding] is nonzero, that many bits are ignored from the last byte of @racket[bstr] when the octet stream is converted to a @tech{bitstring} with @racket[ octet-stream->bitstring]. @(examples #:eval (make-evaluator) #:once (octet-stream #"Apple") (octet-stream #"Apple" #:padding 3))} @defproc[(octet-stream->bitstring [octets octet-stream?]) bitstring?]{ Converts @racket[octets] into a @tech{bitstring}. @(examples #:eval (make-evaluator) #:once (octet-stream->bitstring (octet-stream #"Apple")) (octet-stream->bitstring (octet-stream #"Apple" #:padding 3)))} @defproc[(octet-stream-bytes [octets octet-stream?]) immutable-bytes?]{ Returns the bytes contained in @racket[octets].} @defproc[(octet-stream-padding [octets octet-stream?]) (integer-in 0 7)]{ Returns the number of padding bits in @racket[octets].} @defproc[(media->octet-stream [m media?]) octet-stream?]{ Constructs an @tech{octet stream} containing the bytes of @racket[m]. Octet streams are the most general @tech{media type}, so all media can be converted to an octet stream regardless of type. However, the returned octet stream will only have nonzero padding if @racket[m] has type @racket[ application/octet-stream] with the @racket[#:padding] parameter set.} @defproc[(octet-stream->media [octets octet-stream?]) media?]{ Converts @racket[octets] into @tech{media} of type @racket[ application/octet-stream] with the padding parameter set if @racket[octets] has nonzero padding. @(examples #:eval (make-evaluator) #:once (octet-stream->media (octet-stream #"Apple")) (octet-stream->media (octet-stream #"Apple" #:padding 3)))}
false
b4e772eb2fe2facafb4c03cbdf2bb0363e41455f
08e96f6b3df11e0be94aca562be18b3b2732b444
/aoc-day04.rkt
87f04e327f81614a5c7e79643e27fbe5ab58ff62
[]
no_license
ruliana/aoc-2020
05750ec9c23f04e6bc00b9930fe7741d17f30e98
5ecfcba31c7f429ee9123edb74f7774f409388fe
refs/heads/main
2023-08-11T20:26:51.337044
2021-09-18T00:11:44
2021-09-18T00:11:44
317,688,031
0
0
null
null
null
null
UTF-8
Racket
false
false
11,490
rkt
aoc-day04.rkt
;; --- Day 4: Passport Processing --- ;; You arrive at the airport only to realize that you grabbed your North Pole ;; Credentials instead of your passport. While these documents are extremely ;; similar, North Pole Credentials aren't issued by a country and therefore aren't ;; actually valid documentation for travel in most of the world. ;; It seems like you're not the only one having problems, though; a very long line ;; has formed for the automatic passport scanners, and the delay could upset your ;; travel itinerary. ;; Due to some questionable network security, you realize you might be able to ;; solve both of these problems at the same time. ;; The automatic passport scanners are slow because they're having trouble ;; detecting which passports have all required fields. The expected fields are as ;; follows: ;; byr (Birth Year) ;; iyr (Issue Year) ;; eyr (Expiration Year) ;; hgt (Height) ;; hcl (Hair Color) ;; ecl (Eye Color) ;; pid (Passport ID) ;; cid (Country ID) ;; Passport data is validated in batch files (your puzzle input). Each passport is represented as a sequence of key:value pairs separated by spaces or newlines. Passports are separated by blank lines. ;; Here is an example batch file containing four passports: ;; ecl:gry pid:860033327 eyr:2020 hcl:#fffffd ;; byr:1937 iyr:2017 cid:147 hgt:183cm ;; iyr:2013 ecl:amb cid:350 eyr:2023 pid:028048884 ;; hcl:#cfa07d byr:1929 ;; hcl:#ae17e1 iyr:2013 ;; eyr:2024 ;; ecl:brn pid:760753108 byr:1931 ;; hgt:179cm ;; hcl:#cfa07d eyr:2025 pid:166559648 ;; iyr:2011 ecl:brn hgt:59in ;; The first passport is valid - all eight fields are present. The second passport ;; is invalid - it is missing hgt (the Height field). ;; The third passport is interesting; the only missing field is cid, so it looks ;; like data from North Pole Credentials, not a passport at all! Surely, nobody ;; would mind if you made the system temporarily ignore missing cid fields. Treat ;; this "passport" as valid. ;; The fourth passport is missing two fields, cid and byr. Missing cid is fine, but ;; missing any other field is not, so this passport is invalid. ;; According to the above rules, your improved system would report 2 valid ;; passports. ;; Count the number of valid passports - those that have all required fields. Treat ;; cid as optional. In your batch file, how many passports are valid? ;; Your puzzle answer was [spoiler]. ;; --- Part Two --- ;; The line is moving more quickly now, but you overhear airport security talking ;; about how passports with invalid data are getting through. Better add some data ;; validation, quick! ;; You can continue to ignore the cid field, but each other field has strict rules ;; about what values are valid for automatic validation: ;; byr (Birth Year) - four digits; at least 1920 and at most 2002. ;; iyr (Issue Year) - four digits; at least 2010 and at most 2020. ;; eyr (Expiration Year) - four digits; at least 2020 and at most 2030. ;; hgt (Height) - a number followed by either cm or in: ;; If cm, the number must be at least 150 and at most 193. ;; If in, the number must be at least 59 and at most 76. ;; hcl (Hair Color) - a # followed by exactly six characters 0-9 or a-f. ;; ecl (Eye Color) - exactly one of: amb blu brn gry grn hzl oth. ;; pid (Passport ID) - a nine-digit number, including leading zeroes. ;; cid (Country ID) - ignored, missing or not. ;; Your job is to count the passports where all required fields are both present ;; and valid according to the above rules. Here are some example values: ;; byr valid: 2002 ;; byr invalid: 2003 ;; hgt valid: 60in ;; hgt valid: 190cm ;; hgt invalid: 190in ;; hgt invalid: 190 ;; hcl valid: #123abc ;; hcl invalid: #123abz ;; hcl invalid: 123abc ;; ecl valid: brn ;; ecl invalid: wat ;; pid valid: 000000001 ;; pid invalid: 0123456789 ;; Here are some invalid passports: ;; eyr:1972 cid:100 ;; hcl:#18171d ecl:amb hgt:170 pid:186cm iyr:2018 byr:1926 ;; iyr:2019 ;; hcl:#602927 eyr:1967 hgt:170cm ;; ecl:grn pid:012533040 byr:1946 ;; hcl:dab227 iyr:2012 ;; ecl:brn hgt:182cm pid:021572410 eyr:2020 byr:1992 cid:277 ;; hgt:59cm ecl:zzz ;; eyr:2038 hcl:74454a iyr:2023 ;; pid:3556412378 byr:2007 ;; Here are some valid passports: ;; pid:087499704 hgt:74in ecl:grn iyr:2012 eyr:2030 byr:1980 ;; hcl:#623a2f ;; eyr:2029 ecl:blu cid:129 byr:1989 ;; iyr:2014 pid:896056539 hcl:#a97842 hgt:165cm ;; hcl:#888785 ;; hgt:164cm byr:2001 iyr:2015 cid:88 ;; pid:545766238 ecl:hzl ;; eyr:2022 ;; iyr:2010 hgt:158cm hcl:#b6652a ecl:blu byr:1944 eyr:2021 pid:093154719 ;; Count the number of valid passports - those that have all required fields and ;; valid values. Continue to treat cid as optional. In your batch file, how many ;; passports are valid? ;; Your puzzle answer was [spoiler]. #lang racket (require threading racket/file racket/struct math/base srfi/1) ;; list utilities (module+ test (require expect/rackunit expect)) (define (struct->values stc) (apply values (struct->list stc))) ;; Get a string or false instead of a list ;; I should extract this one into a library (define ((regexper-first pattern) input) (let ([rslt (regexp-match pattern input)]) (and rslt (first rslt)))) (module+ test (check-equal? "183" ((regexper-first #px"^\\d+") "183cm")) (check-equal? "cm" ((regexper-first #px"[a-z]+$") "183cm")) (check-equal? #f ((regexper-first #px"[a-z]+$") "183"))) (module+ test (define test-text "ecl:gry pid:860033327 eyr:2020 hcl:#fffffd byr:1937 iyr:2017 cid:147 hgt:183cm iyr:2013 ecl:amb cid:350 eyr:2023 pid:028048884 hcl:#cfa07d byr:1929 hcl:#ae17e1 iyr:2013 eyr:2024 ecl:brn pid:760753108 byr:1931 hgt:179cm hcl:#cfa07d eyr:2025 pid:166559648 iyr:2011 ecl:brn hgt:59in") (define test-normalized-text (string-append "ecl:gry\tpid:860033327\teyr:2020\thcl:#fffffd\tbyr:1937\tiyr:2017\tcid:147\thgt:183cm\n" "iyr:2013\tecl:amb\tcid:350\teyr:2023\tpid:028048884\thcl:#cfa07d\tbyr:1929\n" "hcl:#ae17e1\tiyr:2013\teyr:2024\tecl:brn\tpid:760753108\tbyr:1931\thgt:179cm\n" "hcl:#cfa07d\teyr:2025\tpid:166559648\tiyr:2011\tecl:brn\thgt:59in")) (define test-records '(("ecl:gry" "pid:860033327" "eyr:2020" "hcl:#fffffd" "byr:1937" "iyr:2017" "cid:147" "hgt:183cm") ("iyr:2013" "ecl:amb" "cid:350" "eyr:2023" "pid:028048884" "hcl:#cfa07d" "byr:1929") ("hcl:#ae17e1" "iyr:2013" "eyr:2024" "ecl:brn" "pid:760753108" "byr:1931" "hgt:179cm") ("hcl:#cfa07d" "eyr:2025" "pid:166559648" "iyr:2011" "ecl:brn" "hgt:59in"))) (define test-invalid-passport-text "eyr:1972 cid:100 hcl:#18171d ecl:amb hgt:170 pid:186cm iyr:2018 byr:1926 iyr:2019 hcl:#602927 eyr:1967 hgt:170cm ecl:grn pid:012533040 byr:1946 hcl:dab227 iyr:2012 ecl:brn hgt:182cm pid:021572410 eyr:2020 byr:1992 cid:277 hgt:59cm ecl:zzz eyr:2038 hcl:74454a iyr:2023 pid:3556412378 byr:2007") (define test-valid-passport-text "pid:087499704 hgt:74in ecl:grn iyr:2012 eyr:2030 byr:1980 hcl:#623a2f eyr:2029 ecl:blu cid:129 byr:1989 iyr:2014 pid:896056539 hcl:#a97842 hgt:165cm hcl:#888785 hgt:164cm byr:2001 iyr:2015 cid:88 pid:545766238 ecl:hzl eyr:2022 iyr:2010 hgt:158cm hcl:#b6652a ecl:blu byr:1944 eyr:2021 pid:093154719")) (define (normalize-text text) (~>> text (regexp-replace* #px"(\\s|\r?\n)" _ "\t") (regexp-replace* #px"\t\t" _ "\n"))) (module+ test (check-equal? (normalize-text test-text) test-normalized-text)) (define (line->record line) (~> line string-trim (string-split "\t"))) (define (line*->records text) (~> text (string-split "\n") (map line->record _))) (module+ test (check-equal? (line*->records test-normalized-text) test-records)) ;; Keep fields in alphabetical order for predictability (struct passport (byr cid ecl eyr hcl hgt hgu iyr pid) #:transparent) (define (record->passport record) (define (field name . conversions) (let ([match (find (λ~> (string-prefix? _ name)) record)]) (and match (for/fold ([rslt (regexp-replace #px"^[^:]+:" match "")]) ([f conversions]) (and rslt (f rslt)))))) (passport (field "byr" string->number) (field "cid" string->number) (field "ecl") (field "eyr" string->number) (field "hcl") (field "hgt" (regexper-first #px"^\\d+") string->number) (field "hgt" (regexper-first #px"[a-z]+$")) (field "iyr" string->number) (field "pid"))) (module+ test (check-equal? (record->passport '()) (passport #f #f #f #f #f #f #f #f #f)) (check-equal? (record->passport '("something I don't care:123")) (passport #f #f #f #f #f #f #f #f #f)) (check-equal? (record->passport '("ecl:gry" "pid:860033327" "eyr:2020" "hcl:#fffffd" "byr:1937" "iyr:2017" "cid:147" "hgt:183cm")) (passport 1937 147 "gry" 2020 "#fffffd" 183 "cm" 2017 "860033327")) (check-equal? (record->passport '("hcl:#cfa07d" "eyr:2025" "pid:166559648" "iyr:2011" "ecl:brn" "hgt:59in")) (passport #f #f "brn" 2025 "#cfa07d" 59 "in" 2011 "166559648"))) (define (text->passports text) (~>> text normalize-text line*->records (map record->passport))) (define (valid-ish-passport? passport) (let-values ([(byr cid ecl eyr hcl hgt hgu iyr pid) (struct->values passport)]) ;; required fields ("cid" and "hgu" are not there) (and byr ecl eyr hcl hgt iyr pid))) (module+ test (define (get-test-passport n) (~> (list-ref test-records n) record->passport)) (expect! (valid-ish-passport? (get-test-passport 0)) expect-not-false) (expect! (valid-ish-passport? (get-test-passport 1)) expect-false) (expect! (valid-ish-passport? (get-test-passport 2)) expect-not-false) (expect! (valid-ish-passport? (get-test-passport 3)) expect-false)) (define (valid-passport? passport) (let-values ([(byr cid ecl eyr hcl hgt hgu iyr pid) (struct->values passport)]) (and byr ecl eyr hcl hgt hgu iyr pid ;; required fields ("cid" is not there) (<= 1920 byr 2002) (<= 2010 iyr 2020) (<= 2020 eyr 2030) (regexp-match? #px"^#[0-9a-f]{6}$" hcl) (regexp-match? #px"^\\d{9}$" pid) (member ecl '("amb" "blu" "brn" "gry" "grn" "hzl" "oth")) (or (and (equal? hgu "cm") (<= 150 hgt 193)) (and (equal? hgu "in") (<= 59 hgt 76)))))) (module+ test (define valid-passport (passport 1920 147 "gry" 2020 "#fffffd" 183 "cm" 2017 "860033327")) (define invalid-passport (passport 1919 147 "gry" 2020 "#fffffd" 183 "cm" 2017 "860033327")) (check-true (valid-passport? valid-passport)) (check-false (valid-passport? invalid-passport)) (check-equal? '(#t #t #t #t) (~>> test-valid-passport-text text->passports (map valid-passport?))) (check-equal? '(#f #f #f #f) (~>> test-invalid-passport-text text->passports (map valid-passport?)))) (define (answer strategy) (~>> "./aoc-day04.input" file->string text->passports (map strategy) (filter identity) length)) ;; The answers (printf "Day 04 - star 1: ~a\n" (answer valid-ish-passport?)) (printf "Day 04 - star 2: ~a\n" (answer valid-passport?))
false
75f2e0f9d437b617aa2a5a5af9901bb21a25ceb3
bc81feb34483928e761f78506fcdb95b3e82e032
/rackparse-parsec.rkt
123b574b76daf613bc57c8f67ac68d6b72811f1a
[]
no_license
stchang/rackparse
3f7fed56842ff6c1c6973960e675b953401ef1f6
8e19611238601d745d1811a43cdc804a0ca94f37
refs/heads/master
2021-01-22T08:58:57.876474
2012-04-26T18:29:15
2012-04-26T18:29:15
4,091,095
1
0
null
null
null
null
UTF-8
Racket
false
false
10,343
rkt
rackparse-parsec.rkt
#lang racket ;; Implementation of Parsec, based on Leijen and Meijer's 2001 TR ;; Parsec implements LL1 grammars ;; returns first successful parse, even for ambiguous grammars ;; no laziness ;; ---------------------------------------------------------------------------- ;; Type declarations ;; An Input is a [ListOf Char] ;; [ ] in function signatures is type instantiation, not a list ;; A [Parser X] is a function: Input -> [ParseOut X] ;; where X is the type of the result, ie a Tree ;; Parser identifiers have a "$" prefix ;; Parser generating functions typically use a "mk$" prefix ;; A [ParseOut X] is one of: ;; -- (Consumed res:[ParseResult X]) ;; -- (Empty res:[ParseResult X]) ;; where res is a struct containing the result of parsing and remaining input ;; The Consumed case indicates input was consumed and ;; The Empty case indicates that no input was consumed ;; INVARIANT: ;; If applying parser $p to input inp produces (Empty (ParseResult x rest)) ;; then inp == rest (struct Consumed (res) #:transparent) (struct Empty (res) #:transparent) ;; A [ParseResult X] is one of: ;; -- (ParseResult x:X rest:Input) ;; where: x is the result, with type X ;; rest is the remaining input ;; -- 'Error ;; (ParseResult is equiv to the [Reply X] datatype in the Parsec paper, ;; where the non-error case is equiv to the Ok constructor) (struct ParseResult (x rest) #:transparent) ;; ---------------------------------------------------------------------------- ;; Helper fns ;; str-cons :: Char [ListOf Char] -> String (define (str-cons c cs) (string-append (string c) cs)) (define (empty-string? s) (string=? "" s)) ;; ---------------------------------------------------------------------------- ;; monadic syntax for combining parsers ;; (~ x <- p1 ;; y <- p2 ;; ... ;; f x y ...) ;; expands to ;; (>>= p1 (λ (x) (>>= p2 (λ (y) (>>= ... (mk$nop (f x y ...))))))) ;; ;; currently doesnt handle: ;; - guards ;; - "any" (ie: '_' identifier -- it'll work but if _ is used in result, ;; then things could go wrong) (define-syntax (~ stx) (syntax-case stx (<-) [(_ e) #'(mk$nop e)] [(_ x <- $p rest ...) #'(>>= $p (match-lambda [x (~ rest ...)]))])) ;; ---------------------------------------------------------------------------- ;; basic parser combinators ;; mk$nop :: a -> Parser a ;; makes a Parser that consumes no input and returns x as result (ie, a no-op) ;; (equiv to result or return Parser in papers) (define (mk$nop x) (λ (inp) (Empty (ParseResult x inp)))) ;; mk$sat :: (Char -> Bool) -> Parser Char ;; makes a Parser that consumes a char if given predicate is satisfied, ;; else fail ;; (equiv to sat Parser from paper) (define (mk$sat p?) (λ (inp) (cond [(empty-string? inp) (Empty 'Error)] [else (let ([c (string-ref inp 0)]) (if (p? c) (let ([cs (substring inp 1)]) (Consumed (ParseResult c cs))) (Empty 'Error)))]))) ;; >>= :: Parser a -> (a -> Parser b) -> Parser b ;; bind operator (define (>>= $p f) (λ (inp) (let ([out ($p inp)]) (if (Empty? out) (let ([res (Empty-res out)]) (if (ParseResult? res) ((f (ParseResult-x res)) inp) (Empty 'Error))) ; else Consumed (Consumed (let ([res1 (Consumed-res out)]) (if (ParseResult? res1) (let ([out1 ((f (ParseResult-x res1)) (ParseResult-rest res1))]) (if (Consumed? out1) (Consumed-res out1) (Empty-res out1))) res1))))) ; error #;(match ($p inp) [(Empty (ParseResult x _)) ((f x) inp)] [(Empty 'Error) (Empty 'Error)] [(Consumed res1) (Consumed (match res1 [(ParseResult x rest) (match ((f x) rest) [(Consumed res2) res2] [(Empty res2) res2])] [err err]))]))) ;; <or> :: Parser a -> Parser a -> Parser a ;; choice combinator (ie "plus" or <|> or ++) (define (<or> $p $q) (λ (inp) (match ($p inp) [(Empty 'Error) ($q inp)] [(Empty res) (match ($q inp) [(Empty _) (Empty res)] [consumed consumed])] [consumed consumed]))) ;; try :: Parser a -> Parser a #;(define (try $p) (λ (inp) (match ($p inp) [(ParseResult #t 'Error _) (ParseResult #f 'Error inp)] [other other]))) ;; ---------------------------------------------------------------------------- ;; derived parser combinators ;; $fail :: Parser a ;; (equiv to zero Parser in paper) (define ($fail inp) null) ;; $char :: Parser Char ;; (equiv to item in paper) ;; parses one char of non-empty input, or fail (define ($char inp) (if (empty-string? inp) (Empty 'Error) (Consumed (ParseResult (string-ref inp 0) (substring inp 1))))) ;; ---------------------------- ;; combinators derived from sat ;; mk$char :: Char -> Parser Char (define (mk$char c1) (mk$sat (λ (c2) (eq? c1 c2)))) ;; $digit, $lower, $upper :: Parser Char ;; parsers one number, lowercase, or uppercase char (define $digit (mk$sat (λ (x) (and (char<=? #\0 x) (char<=? x #\9))))) (define $lower (mk$sat (λ (x) (and (char<=? #\a x) (char<=? x #\z))))) (define $upper (mk$sat (λ (x) (and (char<=? #\A x) (char<=? x #\Z))))) ;; ------------------------------ ;; combinators derived from <or> ;; $letter,$alphanum :: Parser Char ;; parses any one letter or alphanumeric char (define $letter ($lower . <or> . $upper)) (define $alphanum ($letter . <or> . $digit)) ;; $word :: Parser String (define $word-no-do (let ([$neWord (>>= $letter (λ (x) (>>= $word (λ (xs) (mk$nop (str-cons x xs))))))]) ($neWord . <or> . (mk$nop "")))) (define $word (let ([$neWord (~ x <- $letter xs <- $word (str-cons x xs))]) ($neWord . <or> . (mk$nop "")))) ;; mk$string :: String -> Parser String ;; makes a Parser that accepts the given string (define (mk$string s) (if (empty-string? s) (mk$nop "") (~ c <- (mk$char (string-ref s 0)) cs <- (mk$string (substring s 1)) (str-cons c cs)))) ;; <*> :: Parser a -> Parser [Listof a] ;; kleene star ;; (equiv to "many" combinator in paper) (define (<*> $p) ((~ x <- $p xs <- (<*> $p) (cons x xs)) . <or> . (mk$nop null))) ;; <+> :: Parser a -> Parser [ListOf a] ;; (equiv to many1 in paper) ;; at least one, then kleene star (define (<+> $p) (~ x <- $p xs <- ((<+> $p) . <or> . (mk$nop null)) (cons x xs))) ;; $ident :: Parser String ;; parses a Haskell identifier (begins with lowercase) (define $ident (<+> (($letter . <or> . $digit) . <or> . (mk$char #\_)))) ;; $nat :: Parser Int #;(define $nat (let* ([op (λ (y x) (+ (* 10 x) y))] [eval (λ (xs) (let ([lst (map (λ (x) (- (char->integer x) (char->integer #\0))) xs)]) (foldl op (first lst) (rest lst))))]) (~ xs <- (<+> $digit) (eval xs)))) ; using chainl1 from sec 4.3 (define ($nat inp) (let ([op (λ (y x) (+ (* 10 x) y))]) ((chainl1 (~ x <- $digit (- (char->integer x) (char->integer #\0))) (mk$nop op)) inp))) ;; $int :: Parser Int (define $int (let ([$op ((~ tmp <- (mk$char #\-) -) . <or> . (mk$nop (λ (x) x)))]) (~ f <- $op n <- $nat (f n)))) ;; $ints :: Parser [ListOf Int] (define $ints (~ _ <- (mk$char #\[) n <- $int ns <- (<*> (~ _ <- (mk$char #\,) x <- $int x)) _ <- (mk$char #\]) (cons n ns))) ;; sepby1 :: Parser a -> Parser a -> Parser [ListOf a] (define (sepby1 $p $sep) (~ x <- $p xs <- (<*> (~ _ <- $sep y <- $p y)) (cons x xs))) ;; $ints-sepby1 :: Parser [ListOf Int] (define $ints-sepby1 (~ _ <- (mk$char #\[) ns <- (sepby1 $int (mk$char #\,)) _ <- (mk$char #\]) ns)) ;; bracket :: Parser a -> Parser b -> Parser c -> Parser b ;; brackets Parser b with Parser a and c (latter 2 results are ignored) (define (mk$bracket $open $p $close) (~ _ <- $open x <- $p _ <- $close x)) ;; $ints-sepby1-bracket :: Parser [ListOf Int] (define $ints-sepby1-bracket (mk$bracket (mk$char #\[) (sepby1 $int (mk$char #\,)) (mk$char #\]))) ;; $sepby :: Parser a -> Parser b -> Parser [ListOf a] (define (sepby $p $sep) ((sepby1 $p $sep) . <or> . (mk$nop null))) ;; $expr :: Parser Int ;; $addop :: Parser (Int -> Int -> Int) ;; $factor :: Parser Int ; left recursive #;(define $expr ((~ x <- $expr f <- $addop y <- $factor (f x y)) . <or> . $factor)) ; right recursive ; cant just do (define $expr ...), get $factor not defined error ; must eta expand to (define ($expr inp) ...) #;(define ($expr inp) ((~ x <- $factor fys <- (<*> (~ f <- $addop y <- $factor (cons f y))) (foldl (match-lambda** [((cons f y) x) (f x y)]) x fys)) inp)) #;(define (chainl1 p op) (~ x <- p fys <- (<*> (~ f <- op y <- p (cons f y))) (foldl (match-lambda** [((cons f y) x) (f x y)]) x fys))) ; avoids creating intermediate list (define (chainl1 $p $op) (define (f x) (($op . >>= . (λ (g) ($p . >>= . (λ (y) (f (g x y)))))) . <or> . (mk$nop x))) ($p . >>= . f)) (define ($expr inp) ((chainl1 $factor $addop) inp)) #;(define $addop ((~ _ <- (mk$char #\+) +) . <or> . (~ _ <- (mk$char #\-) -))) (define $factor ($nat . <or> . (mk$bracket (mk$char #\() $expr (mk$char #\))))) ;; ops :: [(cons Parser a b)] -> Parser b (define (ops xs) (let ([ps (map (match-lambda [(cons p op) (~ _ <- p op)]) xs)]) (foldr <or> (first ps) (rest ps)))) (define $addop (ops (list (cons (mk$char #\+) +) (cons (mk$char #\-) -)))) ;; chainr1 :: Parser a -> Parser (a -> a -> a) -> Parser a (define (chainr1 $p $op) ($p . >>= . (λ (x) ((~ f <- $op y <- (chainr1 $p $op) (f x y)) . <or> . (mk$nop x)))))
true
f14c69fd537360b4b6814af86fe4158e73ad95a8
7b8ebebffd08d2a7b536560a21d62cb05d47be52
/tests/all-tests.rkt
b25f5bbfd2d88c863b75333c743e1587896cae83
[]
no_license
samth/formica
2055045a3b36911d58f49553d39e441a9411c5aa
b4410b4b6da63ecb15b4c25080951a7ba4d90d2c
refs/heads/master
2022-06-05T09:41:20.344352
2013-02-18T23:44:00
2013-02-18T23:44:00
107,824,463
0
0
null
2017-10-21T23:52:59
2017-10-21T23:52:58
null
UTF-8
Racket
false
false
591
rkt
all-tests.rkt
#lang racket/base (require "monad-tests.rkt") (require "tag-tests.rkt") (require "arity-tests.rkt") (require "functionals-tests.rkt") (require "tools-tests.rkt") (require "patterns-tests.rkt") (require "curry-tests.rkt") (require "partial-app-tests.rkt") (require "hold-tests.rkt") (require "formal-tests.rkt") (require "formal-out-test.rkt") (require "formal-in-tests.rkt") (require "regular-app-formal-tests.rkt") (require "rewrite-tests.rkt") (require "tacit-tests.rkt") (require "nest-tests.rkt") (require "types-tests.rkt") (require "ordering-tests.rkt") (require "testing-tests.rkt")
false
52314fa89965da186d32c6d5c53d3471d8a19da7
bc38b888675e831a3ec99268be7f5f90a3b5ac9a
/fontland/struct.rkt
722ee3dd030329433c4f43b1aa566079a779afdc
[ "MIT" ]
permissive
mbutterick/fontland
c3dd739a5c36730edeca3838225dc8a0c285051b
1c1d7db48f2637f7a226435c4fef39a7037204b7
refs/heads/master
2022-02-03T19:48:29.543945
2022-01-08T15:58:14
2022-01-08T15:58:14
157,796,528
12
0
null
null
null
null
UTF-8
Racket
false
false
1,580
rkt
struct.rkt
#lang debug racket (provide (all-defined-out)) (struct ttf-font (port decoded-tables src directory ft-face hb-font hb-buf crc get-head-table-proc) #:mutable #:property prop:custom-write (λ (f p w?) (display (format "<~a ~a>" (object-name f) (let-values ([(dir name _) (split-path (ttf-font-src f))]) name)) p))) (struct woff-font ttf-font ()) (define (ft-face this) (or (force (ttf-font-ft-face this)) (error 'ft-face-not-available))) (define (font-directory this) (or (force (ttf-font-directory this)) (error 'directory-not-available))) (define (hb-font this) (or (force (ttf-font-hb-font this)) (error 'hb-font-not-available))) (define (hb-buf this) (or (force (ttf-font-hb-buf this)) (error 'hp-buf-not-available))) (struct glyph (id codepoints font is-mark? is-ligature? metrics) #:mutable #:property prop:custom-write (λ (g p w?) (display (format "<~a ~a ~a>" (object-name g) (glyph-id g) (glyph-font g)) p))) (struct ttf-glyph glyph ()) ; glyphs = list of glyph ids in the subset ; mapping = of glyph ids to indexes in glyphs (struct subset (font glyphs mapping) #:mutable) (struct cff-subset subset (cff strings charstrings gsubrs) #:mutable) (struct cff-glyph glyph (path _usedGsubrs _usedSubrs) #:mutable) (define (make-cff-glyph . args) (apply cff-glyph (append args (list #f (make-hash) (make-hash))))) (struct index-item (offset length) #:transparent #:mutable)
false
62332741848706b1801bc5a1fee8e0cc1af2f601
bfdea13ca909b25a0a07c044ec456c00124b6053
/mischief/examples.rkt
691c2af5bd384e3a25542c316eb3e207ccaad2ad
[]
no_license
carl-eastlund/mischief
7598630e44e83dd477b7539b601d9e732a96ea81
ce58c3170240f12297e2f98475f53c9514225825
refs/heads/master
2018-12-19T07:25:43.768476
2018-09-15T16:00:33
2018-09-15T16:00:33
9,098,458
7
2
null
2015-07-30T20:52:08
2013-03-29T13:02:31
Racket
UTF-8
Racket
false
false
1,893
rkt
examples.rkt
#lang mischief (provide examples/evaluator make-example-evaluator define-example-evaluator define-example-form) (require scribble/eval racket/sandbox (for-syntax mischief)) (define-syntax (define-example-form stx) (syntax-parse stx [(_ name:id lang:module-path (~or spec:module-path ({~literal for-syntax} phase-1-spec:module-path)) ...) #'(begin (define-example-evaluator evaluator lang spec ... (for-syntax phase-1-spec) ...) (... (define-shorthand (name body ...) (examples #:eval evaluator body ...))))])) (define-syntax (define-example-evaluator stx) (syntax-parse stx [(_ name:id lang:module-path (~or spec:module-path ({~literal for-syntax} phase-1-spec:module-path)) ...) #'(begin (require (for-label lang spec ... (for-syntax phase-1-spec ...))) (define name (make-example-evaluator 'lang #:requires '[spec ... (for-syntax phase-1-spec) ...])))])) (define-syntax (examples/evaluator stx) (syntax-parse stx [(_ lang:module-path (~optional (~seq #:requires [(~or spec:module-path ({~literal for-syntax} phase-1-spec:module-path)) ...]) #:defaults {[(spec 1) empty] [(phase-1-spec 1) empty]}) body:expr ...+) #'(begin (require (for-label lang spec ... (for-syntax phase-1-spec ...))) (examples #:eval (make-example-evaluator 'lang #:requires '[spec ... (for-syntax phase-1-spec) ...]) body ...))])) (define make-example-evaluator (dynamic-wrap-procedure make-evaluator (lambda {proc} (parameterize {[sandbox-output 'string] [sandbox-error-output 'string]} (call-with-trusted-sandbox-configuration proc)))))
true
640238ab6c5abf797b1bed4300c08a47a0b4358b
0270165427f0c03219972228e3b3b80f38ce25ce
/half-sheets.rkt
b65a0e669976381862c69091164eb0a18d79b060
[]
no_license
thoughtstem/ts-curric-common
8100cf903bafd9f89663487f3cccac55b8222086
1a8c2d03fd2b4d44595e8bf2ad0e1e654b83f14b
refs/heads/master
2020-03-30T17:42:58.579594
2018-12-06T18:27:49
2018-12-06T18:27:49
151,466,965
0
0
null
null
null
null
UTF-8
Racket
false
false
20,522
rkt
half-sheets.rkt
#lang slideshow (provide activity-move-resource) (provide (rename-out [make-activity-instructions activity-instructions])) (provide activity-edit-code) (provide activity-repeat) (provide with-award) (provide choose) (provide settings) (provide pad) (provide logo-for) (provide instruction-open) (provide instruction-open-file) (provide (rename-out [make-instruction-basic instruction-basic])) (provide instruction-goal) (provide instruction-goal-side) (provide instruction-folder) (provide instruction-image) (provide instruction-subtitle) (provide instruction-qr) (provide tagged-link) (provide video-qr) (provide code-qr) (provide image-qr) (provide search-qr) (provide download-qr) (provide ++) (provide INSTRUCTOR_TERM FOLDER_ICON) (provide super-flatten) (provide is-reminder?) (provide make-picts) (provide generate-qrs) (provide ts-magic-loader-img) (provide codify) (provide text-with-image how-to-use-launcher-card analyze-activities) (require simple-qr) (require pict/shadow) (require slideshow/text) (require pict/color) (require pict/code) (require racket/runtime-path) (require "./materials.rkt") (define (scripts>launcher-img) (bitmap (build-path images "scripts-launch.png"))) (define (how-to-use-launcher-card) (activity-instructions "Launch Codes" '() (list (instruction-basic "Open the launcher") (instruction-basic "Fill in the blanks") (instruction-basic (rendered-launchable-image (launcher-img hello-world))) (instruction-basic "Move your cursor to the end and press enter.") (instruction-goal "the mystery success image")) (scripts>launcher-img))) (current-font-size 40) (set-margin! 0) (define-runtime-path images "images") (define-runtime-path qrs "qrs") (define (local-bitmap s) (bitmap (~a images "/" s))) (define ts-magic-loader-img (local-bitmap "tsMagicLoader.png")) (define save-my-work-image (local-bitmap "SAVE_MY_WORK.png")) (define GALLIUM_ICON (scale (local-bitmap "galliumos.jpg") 0.2)) (define INSTRUCTOR_TERM "Game Master") (define ++ string-append) (define (pathify-url url) (++ (string-replace (string-replace url ":" "_" #:all? true) "/" "_" #:all? true) ".png")) (define FOLDER_ICON (local-bitmap "folder-icon.png")) (struct settings (bg avatar avatar-choice avatar-reminder)) (struct tagged-link (tag url) #:transparent) (define (video-qr url) (tagged-link "video" url)) (define (code-qr url) (tagged-link "code" url)) (define (image-qr url) (tagged-link "image" url)) (define (search-qr url) (tagged-link "search" url)) (define (download-qr url) (tagged-link "download" url)) (struct instruction-basic (words) #:transparent) (define (make-instruction-basic words) (instruction-basic (if (string? words) (add-period-if-necessary words) words))) (struct instruction-subtitle (words) #:transparent) (struct instruction-image (path width height label) #:transparent) (struct instruction-open (program) #:transparent) (struct instruction-open-file (file program) #:transparent) (struct instruction-goal (words) #:transparent) (struct instruction-goal-side (words) #:transparent) (struct instruction-qr (url) #:transparent) (struct instruction-folder (path) #:transparent) (struct activity-instructions (title refs steps video-url) #:transparent) (define (make-activity-instructions title refs steps video-url) (activity-instructions (string-titlecase title) refs steps video-url)) (struct activity-edit-code (file-path) ) (struct activity-move-resource (src dest) #:super struct:activity-instructions) (struct activity-repeat (times) #:super struct:activity-instructions) (struct with-award (award activity)) (struct choose (number activities)) (define (codify s) (pad (colorize (with-size 35 (with-font "Courier" (t s))) "blue") 20 cb-superimpose)) (define (text-with-image . things) (define (maybe-convert-string thing) (if (string? thing) (t thing) thing)) (apply hb-append (map maybe-convert-string things))) (define/contract (logo-for s) (-> string? pict?) (scale-to-fit (match (string-downcase s) ["piskel" (bitmap (build-path images "piskel.png"))] ["drracket" (bitmap (build-path images "drracket.png"))] ["chrome" (bitmap (build-path images "chrome.png"))] [else (ghost (rectangle 0 0))]) 40 40 #:mode 'preserve)) (define (string->open-pict s) (hc-append 5 (t "Open ") (t s) (logo-for s))) (define (instruction-open->pict i) (string->open-pict (instruction-open-program i))) (define (bgify i c) (cc-superimpose (filled-rectangle (pict-width i) (pict-height i) #:color c #:draw-border? #f) i)) (define (instruction-goal->pict i) (if (not i) (blank 0) (let ([title (bt (++ "Show " INSTRUCTOR_TERM "..."))]) (shadow-frame (colorize (vc-append 0 title (para #:width (+ (pict-width title) 150) #:align 'center (++ "..." (add-period-if-necessary (lowercase-first-letter (fix-quotes (instruction-goal-words i))))) )) "black"))))) (define (instruction-goal-side->pict i) (if (not i) (blank 0) (let ([title (bt (++ "Show " INSTRUCTOR_TERM "..."))]) (shadow-frame (pad (colorize (vc-append 0 title (para #:width (pict-width title) (++ "..." (add-period-if-necessary (lowercase-first-letter (fix-quotes (instruction-goal-side-words i))))) )) "black") 0 cc-superimpose))))) (define (is-eos-punctuation? s) (or (string=? s ".") (string=? s "?") (string=? s "!"))) (define (add-period-if-necessary s) (let* ([last-letter (substring s (- (string-length s) 1))]) (if (is-eos-punctuation? last-letter) s (++ s ".")))) (define (lowercase-first-letter s) (let* ([lowercase-first-letter (string-downcase (substring s 0 1))] [rest-of-string (substring s 1)]) (++ lowercase-first-letter rest-of-string))) (define (instruction-subtitle->pict i) (if (not (instruction-subtitle? i)) (blank 0) (colorize (t (instruction-subtitle-words i)) (dark "gray")))) (define (instruction-folder->pict i) (path->pict (instruction-folder-path i))) (define (instruction-image->pict i) (hc-append 10 (scale-to-fit (bitmap (instruction-image-path i)) (instruction-image-width i) (instruction-image-height i)) (t (instruction-image-label i)))) (define (instruction-qr->pict i) (vl-append (scale (display-video-qr (instruction-qr-url i)) 0.75))) (define (instruction-open-file->pict i) (arrow-between 100 "Open with" (path->pict (instruction-open-file-file i)) (t (instruction-open-file-program i)))) (define (fix-quotes s) (string-replace (string-replace s " '" " ‘") "' " "’ ")) (define (format-basic-instruction i) (let* ([words (instruction-basic-words i)]) (cond [(string? words) (fix-quotes words)] [else words]))) (define (instruction->pict i) (item #:width 600 #:bullet (if (or (instruction-basic? i) (instruction-open? i)) bullet (blank 0)) (cond [(instruction-subtitle? i) (blank 0)] ;These don't render in the normal place [(instruction-goal? i) (blank 0)] ;Nor do these [(instruction-goal-side? i) (instruction-goal-side->pict i)] [(instruction-basic? i) (format-basic-instruction i)] [(instruction-open? i) (instruction-open->pict i)] [(instruction-open-file? i) (instruction-open-file->pict i)] [(instruction-folder? i) (instruction-folder->pict i)] [(instruction-image? i) (instruction-image->pict i)] [(instruction-qr? i) (instruction-qr->pict i)] [else (t "ERROR: Unknown instruction")]))) (define (activity->pict a) (cond [(string? a) (para a)] [(activity-move-resource? a) (activity-move-resource->pict a)] [(activity-repeat? a) (activity-repeat->pict a)] [(activity-instructions? a) (activity-instructions->pict a)] [else (t "ERROR: Unknown activity")])) (define (url-without-dashes? s) (displayln s) (and (string? s) (or (= 0 (string-length s)) (and (is-url? s) (not (string-contains? s "-")))))) (define #;/contract (write-out-qr s) #;(-> url-without-dashes? void) (displayln s) (displayln (pathify-url s)) (qr-write s (~a (path->string qrs) "/" (pathify-url s)) )) (define (_generate-qr a f) #;(displayln "We generatin a qr..") (let* ([maybe-tagged-url (f a)] [url (cond [(string? maybe-tagged-url) maybe-tagged-url] [(tagged-link? maybe-tagged-url) (tagged-link-url maybe-tagged-url)] [else maybe-tagged-url])]) (if (string? url) (write-out-qr url) (displayln "Tried to _generate-qr for a non string. Mistake?") ))) (define (generate-qr a) (cond [(activity-instructions? a) (_generate-qr a activity-instructions-video-url)] [(instruction-qr? a) (_generate-qr a instruction-qr-url)] )) (define (path-item a b) (let* ([is-file (string-contains? a ".")] [folder-bullet (scale-to-fit (local-bitmap "folder-icon.png") 20 20)] [file-bullet (scale-to-fit (local-bitmap "file-icon.png") 20 20)] [bullet (if is-file file-bullet folder-bullet)]) (item #:bullet bullet #:width 50 (if is-file a (++ a "/")) b))) (define (path->pict p) (frame (pad (foldl path-item (blank 0) (reverse (string-split p "/"))) 10 cc-superimpose))) (define (display-video-qr a) #;(displayln "display-video-qr") (let* ([maybe-tag a] [icon (if (tagged-link? maybe-tag) (scale-to-fit (local-bitmap (++ (tagged-link-tag maybe-tag) "-icon.png")) 20 20) (blank 0))] [url (cond [(tagged-link? maybe-tag) (tagged-link-url maybe-tag)] [else maybe-tag])]) (if (eq? url "") (blank 0) (ct-superimpose (qr-or-image url) icon)))) (define (find-subtitle-instruction a) (findf instruction-subtitle? (activity-instructions-steps a))) (define (find-goal-instruction a) (findf instruction-goal? (activity-instructions-steps a))) (define (activity-header a) (vc-append 15 (vc-append (scale (bt (activity-instructions-title a)) 1.5) (instruction-subtitle->pict (find-subtitle-instruction a))) (activity->reminders a))) (define (activity-move-resource->pict a) (vc-append 20 (activity-header a) (ht-append (display-video-qr (activity-instructions-video-url a)) (vc-append (arrow-between 100 "Move" (display-video-qr (activity-move-resource-src a)) (path->pict (activity-move-resource-dest a))) (apply (curry vl-append 10) (map instruction->pict (activity-instructions-steps a))))) (instruction-goal->pict (find-goal-instruction a)))) (define (is-url? s) (or (string-contains? s "http") (string-contains? s "file"))) (define (qr-or-image p) #;(displayln p) #;(displayln "qr-or-image") (cond [(pict? p) (pad p 20 cc-superimpose)] [(rendered-launchable? p) (pad (rendered-launchable-image p) 20 cc-superimpose)] [(= 0 (string-length p)) (blank 0)] [(not (is-url? p)) (pad (bitmap p) 20 cc-superimpose)] [else (qr-or-path p)])) (define (qr-or-path a) #;(displayln "qr-or-path") (let ([url (if (tagged-link? a) (tagged-link-url a) a)]) (if (eq? url "") (blank 0) (if (is-url? url) (url->qr url) (path->pict url))))) (define (url->qr url) #;(displayln "url->qr") (define img-path (~a (path->string qrs) "/" (pathify-url url))) (and (not (file-exists? img-path)) (write-out-qr url) ) (define qr-img (bitmap img-path)) (cb-superimpose (scale-to-fit qr-img 250 250) (colorize (scale (hc-append (t "Scan with ") (string->open-pict "Learn")) 0.5) "gray"))) (define (activity->ref-pic a) (bgify (pad (t (activity-instructions-title a)) 10 cc-superimpose) "gray")) (define (activity->reminders a) (let ([refs (activity-instructions-refs a)]) (if (empty? refs) (blank 0) (colorize (scale (hc-append 10 (t "Reminders:") (apply (curry hc-append 10) (map activity->ref-pic refs))) 0.5 ) "black")))) (define (activity-instructions->pict a) (vc-append 5 (activity-header a) (hc-append (display-video-qr (activity-instructions-video-url a)) (apply ((curry vl-append) 10) (map instruction->pict (activity-instructions-steps a)))) (instruction-goal->pict (find-goal-instruction a)))) (define (arrow-between dist label pict-a pict-b) (let ([label (scale-to-fit (t label) (/ dist 2) (/ dist 2))]) (pin-arrow-line 30 (hc-append dist pict-a pict-b) pict-a rc-find pict-b lc-find #:label label #:x-adjust-label (+ (pict-width label) (- (/ (pict-width label) 2) dist)) #:solid? #t #:line-width 3))) (define (arch-over-arrow dist pict-a pict-b) (pin-arrow-line 30 (hc-append dist pict-a pict-b) pict-a ct-find pict-b ct-find #:start-angle (/ pi 2) #:end-angle (/ pi -2) #:solid? #t #:line-width 3)) (define (arch-under-arrow dist pict-a pict-b) (pin-arrow-line 30 (hc-append dist pict-a pict-b) pict-b cb-find pict-a cb-find #:start-angle (/ pi -2) #:end-angle (/ pi 2) #:solid? #t #:line-width 3)) (define (open-arrow dist pict-a pict-b) (arrow-between dist "Open" pict-a pict-b)) (define (activity-repeat->pict a) (let* [(main (apply ((curry vl-append) 10) (map instruction->pict (activity-instructions-steps a)))) (times (number->string (activity-repeat-times a))) (label (para #:width 200 (++ "You can earn $s for this " times "x"))) (label-with-arrows (hc-append (cc-superimpose (scale-to-fit (local-bitmap "repeat-icon.png") 100 100) (t times)) label))] (vc-append 20 (activity-header a) (ht-append (vc-append label-with-arrows (display-video-qr (activity-instructions-video-url a))) main) (instruction-goal->pict (find-goal-instruction a))))) (define (pad i w f) (f i (blank (+ (pict-width i) w) (+ (pict-height i) w)))) (define (make-bg sequence settings wrapper) (let ([avatar (if (is-reminder? sequence (with-award-activity wrapper)) (settings-avatar-reminder settings) (settings-avatar settings))]) (lb-superimpose (settings-bg settings) (pad avatar 20 rt-superimpose)))) ;;Creates a bunch of bitmap files (define (generate-qrs seq) (map generate-qr (map with-award-activity (flatten seq)))) (define (repeat f i times) (foldl (lambda (_ n) (f i n)) (blank 0) (range times) )) (define (award-amount->pict amount) (let ([icon (scale (local-bitmap "coin.png") 0.5)]) (vc-append (colorize (t (string-append (if (> 0 amount) "-" "") "$" (number->string (abs amount)))) (cond [(= 0 amount ) "gray"] [(> 0 amount ) "red"] [else "black"])) (repeat hc-append icon (abs amount))))) (define (make-award-overlay amount bg) (rb-superimpose (blank (pict-width bg) (pict-height bg)) (pad (award-amount->pict amount) 100 lt-superimpose))) (define (same-title a1 a2) (eq? (activity-instructions-title a1) (activity-instructions-title a2))) ;Something is a reminder if there is some activity ;that references. (define (is-reminder? sequence activity) (not (empty? (filter (lambda (s) (< 0 (length (filter (curry same-title activity) (activity-instructions-refs (with-award-activity s)))))) (super-flatten sequence))))) (define (wrapper->pict sequence settings wrapper) (let ([middle-ground (activity->pict (with-award-activity wrapper))] [foreground (make-award-overlay (with-award-award wrapper) (settings-bg settings))] [background (make-bg sequence settings wrapper)]) (cc-superimpose background middle-ground foreground))) ;Swaps the normal and the choice avatar (define (flip-avatars s) (settings (settings-bg s) (settings-avatar-choice s) ;Swap this (settings-avatar s) ;and this (settings-avatar-reminder s))) (define (choice->pict sequence settings n wrappers) (let ([new-settings (flip-avatars settings)]) (map (curry wrapper-or-choice->pict sequence new-settings) wrappers))) (define (wrapper-or-choice->pict sequence settings wrapper) (match wrapper [(with-award n activity) (wrapper->pict sequence settings (with-award n activity))] [(choose n wrappers) (choice->pict sequence settings n wrappers)] [x (error "Something wasn't either a with-award or a choice")])) (define (wrapper-or-choice->activity wrapper) (match wrapper [(with-award n activity) (with-award-activity wrapper)] [(choose n wrappers) (map wrapper-or-choice->activity (choose-activities wrapper))] [x x])) (define (super-flatten seq) (flatten (map (lambda (s) (match s [(choose n wrappers) (super-flatten wrappers)] [x x])) (flatten seq)))) (define (add-page-number pict n quest color) (cc-superimpose pict (rb-superimpose (ghost pict) (cbl-superimpose (filled-rectangle 140 65 #:color "White" #:border-color "Black" #:border-width 3) (colorize (pad (with-size 50 (t (++ quest (number->string n)))) 25 cc-superimpose) color))))) (define (make-picts color quest seq settings) (let* ([picts (flatten (map (curry wrapper-or-choice->pict seq settings) (flatten seq)))]) (map add-page-number picts (range 1 (+ 1(length picts))) (make-list (length picts) quest) (make-list (length picts) color) ))) ;Utilities for curriculum develoment: ;Do these need to go into half-sheets?? (define (analyze-activities seq settings) (define card-datas (flatten (map wrapper-or-choice->activity (flatten seq)))) (define card-imgs (flatten (map (curry wrapper-or-choice->pict seq settings) (flatten seq)))) (define thumbs (map (curryr scale 0.25) card-imgs)) (define launch-imgs (map display-launch-target card-datas)) (define ret (apply vl-append (map (compose frame (curryr inset 10) (curry apply (curry hc-append 10))) (map list thumbs launch-imgs)))) (pict->bitmap ret) ) (define (display-launch-target card) (define launcher (activity-instructions-video-url card)) (if (rendered-launchable? launcher) (curriculum-developer-display (rendered-launchable-launchable launcher)) (colorize (text "No Launcher") "red")))
false
5ff5a2052ec6a55f685b4dd856e889295893edbf
1affee41c600b845a6f2bc27c02a7f38b72194ad
/Lisp/webserver/models.rkt
cde35c584a39bff9c803d47a54f4ca73056e2491
[]
no_license
PascalZh/Practice
f33702a0e5d04737943e35ed3a02d29165123634
6ba455b18404cc25f275043ff277edafe626b237
refs/heads/master
2022-06-01T02:55:04.886150
2022-05-14T04:54:32
2022-05-14T04:54:32
107,367,122
2
0
null
null
null
null
UTF-8
Racket
false
false
2,422
rkt
models.rkt
#!/usr/bin/env racket #lang racket (require "../libcommon.rkt") (require "manipulate_db.rkt") (require web-server/http/bindings web-server/templates) (provide render-admin-login-content) (provide render-search-page render-search-items) ; return html as a string (def (render-search-page request) (let* ([search-name (extract-binding/single 'search (request-bindings request))] [search-html (render-search-items search-name (query-fortune))]) (include-template "./template/page_search.html"))) (def (render-search-items search-name query-result) (def (render-fortune) (css-search (css-search-item "<h4>在服务器上运行命令:</h4><div class=\"table-responsive\"><table class=\"table table-bordered table-hover\">" "<thead><tr><td>索引</td><td>运行的命令</td><td>结果</td></tr></thead>" "<tbody>" (apply string-append (map (λ (vect) (string-append "<tr>" "<td>" (number->string (vector-ref vect 0)) "</td>" "<td>" (vector-ref vect 1) "</td>" "<td><pre>" (vector-ref vect 2) "</td></pre>" "</tr>")) query-result)) "</tbody>" "</table></div>"))) (render-fortune)) (def (css-search-item str . rest) (string-append "<div class=\"search-item\">" str (apply string-append rest) "</div>")) (def (css-search str . rest) (string-append "<div class=\"search\">" str (apply string-append rest) "</div>")) (def (render-admin-login-content) (string-append "<li class=\"nav-item dropdown\">" "<a class=\"nav-link dropdown-toggle\"" "href=\"#\" id=\"navbarDropdown\" role=\"button\"" "data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">" "<img id=\"admin_img\" src=\"/images/admin.jpg\" height=\"20px\"/></a>" "<div class=\"dropdown-menu\" aria-labelledby=\"navbarDropdown\">" "<a class=\"dropdown-item\" href=\"javascript:onLogout()\">" "<strong>Logout</strong></a></div></li>"))
false
323db76f5b1897eed1bfb9c9ad01e463f53b6227
413657adf304820ac7b728815c6025782395b98b
/templates/basic-clip.rkt
5533af2b7a8dc4c19168250ec08d711b0fa230e7
[]
no_license
srfoster/meta-viral-videos
8eda3df5a4d629facab688c21d4cac8cc03cf112
98a9b9e0701135e31a120f6e983a36884958f92c
refs/heads/master
2022-04-22T13:55:30.665239
2020-04-22T20:46:12
2020-04-22T20:46:12
255,483,603
0
0
null
null
null
null
UTF-8
Racket
false
false
7,107
rkt
basic-clip.rkt
#lang at-exp racket (provide basic-clip) (provide basic-clip-in-out (rename-out [basic-clip-in-out clip])) (require meta-viral-videos/util/util) (define (basic-clip path duration) (define len-s duration) ;Maybe do some checking on the formatting here... (define speed 1) @~a{ <?xml version="1.0" encoding="utf-8"?> <mlt LC_NUMERIC="C" version="6.19.0" title="Shotcut version 19.12.31" producer="main_bin"> <profile description="HD 1080p 25 fps" width="1920" height="1080" progressive="1" sample_aspect_num="1" sample_aspect_den="1" display_aspect_num="16" display_aspect_den="9" frame_rate_num="60" frame_rate_den="1" colorspace="709"/> <playlist id="main_bin"> <property name="xml_retain">1</property> </playlist> <producer id="black" in="00:00:00.000" out="@len-s"> <property name="length">@|len-s|</property> <property name="eof">pause</property> <property name="resource">0</property> <property name="aspect_ratio">1</property> <property name="mlt_service">color</property> <property name="mlt_image_format">rgb24a</property> <property name="set.test_audio">0</property> </producer> <playlist id="background"> <entry producer="black" in="00:00:00.000" out="@len-s"/> </playlist> <producer id="producer0" title="Anonymous Submission" in="00:00:00.000" out="@len-s"> <property name="length">@|len-s|</property> <property name="eof">pause</property> <property name="resource">@|speed|:@|path|</property> <property name="aspect_ratio">1</property> <property name="seekable">1</property> <property name="audio_index">1</property> <property name="video_index">0</property> <property name="mute_on_pause">1</property> <property name="warp_speed">@|speed|</property> <property name="warp_resource">@|path|</property> <property name="mlt_service">timewarp</property> <property name="shotcut:producer">avformat</property> <property name="video_delay">0</property> <property name="shotcut:hash">b311f5837112df2bd14fffda4013497c</property> <property name="shotcut:skipConvert">1</property> <property name="global_feed">1</property> <property name="xml">was here</property> <property name="shotcut:caption">@path (@|speed|x)</property> </producer> <playlist id="playlist0"> <property name="shotcut:video">1</property> <property name="shotcut:name">V1</property> <entry producer="producer0" in="00:00:00.000" out="@len-s"/> </playlist> <tractor id="tractor0" title="Shotcut version 19.12.31" global_feed="1" in="00:00:00.000" out="@len-s"> <property name="shotcut">1</property> <property name="shotcut:projectAudioChannels">2</property> <property name="shotcut:projectFolder">0</property> <track producer="background"/> <track producer="playlist0"/> <transition id="transition0"> <property name="a_track">0</property> <property name="b_track">1</property> <property name="mlt_service">mix</property> <property name="always_active">1</property> <property name="sum">1</property> </transition> <transition id="transition1"> <property name="a_track">0</property> <property name="b_track">1</property> <property name="version">0.9</property> <property name="mlt_service">frei0r.cairoblend</property> <property name="disable">1</property> </transition> </tractor> </mlt> }) (define/contract (basic-clip-in-out path in out) (-> path-string? video-length-string? video-length-string? (or/c mlt? procedure?)) (lambda () (define in-len (video-length-string->video-length in)) (define out-len (video-length-string->video-length out)) (define original-len (video-file-length path)) (define original-len-s (video-length->string original-len)) (define len (video-length-subtract out-len in-len)) (define len-s (video-length->string len)) (define abs-path (if (absolute-path? path) path (build-path (current-directory) path))) (define speed 1) @~a{ <?xml version="1.0" encoding="utf-8"?> <mlt LC_NUMERIC="C" version="6.19.0" title="Shotcut version 19.12.31" producer="main_bin"> <profile description="HD 1080p 25 fps" width="1920" height="1080" progressive="1" sample_aspect_num="1" sample_aspect_den="1" display_aspect_num="16" display_aspect_den="9" frame_rate_num="60" frame_rate_den="1" colorspace="709"/> <playlist id="main_bin"> <property name="xml_retain">1</property> </playlist> <producer id="black" in="00:00:00.000" out="@len-s"> <property name="length">00:00:09.800</property> <property name="eof">pause</property> <property name="resource">0</property> <property name="aspect_ratio">1</property> <property name="mlt_service">color</property> <property name="mlt_image_format">rgb24a</property> <property name="set.test_audio">0</property> </producer> <playlist id="background"> <entry producer="black" in="00:00:00.000" out="@len-s"/> </playlist> <producer id="producer0" title="Anonymous Submission" in="00:00:00.000" out="@original-len-s"> <property name="length">@|original-len-s|</property> <property name="eof">pause</property> <property name="resource">@|abs-path|</property> <property name="audio_index">1</property> <property name="video_index">0</property> <property name="mute_on_pause">0</property> <property name="mlt_service">avformat-novalidate</property> <property name="seekable">1</property> <property name="aspect_ratio">1</property> <property name="creation_time">2020-04-17T17:35:16</property> <property name="shotcut:hash">b405d4c9c4dee4e0104878654242d92b</property> <property name="ignore_points">0</property> <property name="shotcut:caption">@|abs-path|</property> <property name="shotcut:skipConvert">1</property> <property name="global_feed">1</property> <property name="xml">was here</property> </producer> <playlist id="playlist0"> <property name="shotcut:video">1</property> <property name="shotcut:name">V1</property> <entry producer="producer0" in="@in" out="@out"/> </playlist> <tractor id="tractor0" title="Shotcut version 19.12.31" global_feed="1" in="00:00:00.00" out="@len-s"> <property name="shotcut">1</property> <property name="shotcut:projectAudioChannels">2</property> <property name="shotcut:projectFolder">0</property> <track producer="background"/> <track producer="playlist0"/> <transition id="transition0"> <property name="a_track">0</property> <property name="b_track">1</property> <property name="mlt_service">mix</property> <property name="always_active">1</property> <property name="sum">1</property> </transition> <transition id="transition1"> <property name="a_track">0</property> <property name="b_track">1</property> <property name="version">0.9</property> <property name="mlt_service">frei0r.cairoblend</property> <property name="disable">1</property> </transition> </tractor> </mlt> }))
false
ff9260d669a607f0aa0cdf331381d6999e68aa2d
5d4ed049f8e7a63ce03507b2f7fba2f61819be00
/test2.rkt
95341370b97176e609671261621dc9f27d8d4b0f
[]
no_license
pbpf/autosolve
0809768416e6952caba668231863fa38753b0a56
60bccdcf974d5732b6200fc5212f490b6448b61a
refs/heads/master
2020-03-12T00:13:31.922841
2018-07-29T04:31:23
2018-07-29T04:31:23
130,344,191
1
0
null
null
null
null
UTF-8
Racket
false
false
345
rkt
test2.rkt
#lang autosolve v:=sqrt(vx^2+vy^2+vz^2);r:=sqrt(x^2+y^2+z^2); sinphi:=z/r;gr_phi_r:=-mu/r^2*(1+J*(ae/r)^2*(1-5*sinphi^2));gwe:=-2*mu/r^2*J*(ae/r)^2*sinphi; #with(t){ x'=vx; y'=vy; z'=vz; vx'=gr_phi_r*x/r; vy'=gr_phi_r*y/r; vz'=gr_phi_r*z/r+gwe; } %*#ivp{ %* [0 0 0 0 0 0;0]->[10] %*}
false
df9d2d32eda073a6e3f4decf3c6a2175060324ab
d6b905b841a3c812ff1805879f681111f164e87c
/itscaleb/ch06/snake.rkt
318b65385f29aec6ebd4cb50a65784bf50e6bed3
[ "MIT" ]
permissive
SeaRbSg/realm_of_racket
40398e89ab2d39b7499bb97ee2a6b07bdb79c586
b4383c6cab68b4cea04f514267c58397e8cc69d0
refs/heads/master
2021-03-12T22:50:14.935166
2017-11-30T23:40:10
2017-11-30T23:51:11
12,911,347
1
2
null
null
null
null
UTF-8
Racket
false
false
7,126
rkt
snake.rkt
#lang racket (require 2htdp/image 2htdp/universe) (struct pit (snake goos) #:transparent) (struct snake (direction segments) #:transparent) (struct goo (location expire) #:transparent) (struct position (x y) #:transparent) (define TICK-RATE 1/10) (define SIZE 30) (define EXPIRATION-TIME 150) (define ENDGAME-TEXT-SIZE 15) (define SEG-SIZE 15) (define WIDTH-PX (* SEG-SIZE 30)) (define HEIGHT-PX (* SEG-SIZE 30)) (define MT-SCENE (empty-scene WIDTH-PX HEIGHT-PX)) (define GOO-IMG (bitmap "goo.gif")) (define SEG-IMG (bitmap "body.gif")) (define HEAD-IMG (bitmap "head.gif")) (define HEAD-LEFT-IMG HEAD-IMG) (define HEAD-DOWN-IMG (rotate 90 HEAD-LEFT-IMG)) (define HEAD-RIGHT-IMG (flip-horizontal HEAD-LEFT-IMG)) (define HEAD-UP-IMG (flip-vertical HEAD-DOWN-IMG)) (define (start-snake) (big-bang (pit (snake "right" (list (position 1 1))) (list (fresh-goo) (fresh-goo) (fresh-goo) (fresh-goo) (fresh-goo) (fresh-goo))) (on-tick next-pit TICK-RATE) (on-key direct-snake) (to-draw render-pit) (stop-when dead? render-end))) (define (next-pit w) (define snake (pit-snake w)) (define goos (pit-goos w)) (define goo-to-eat (can-eat snake goos)) (if goo-to-eat (pit (grow snake) (age-goo (eat goos goo-to-eat))) (pit (slither snake) (age-goo goos)))) (define (can-eat snake goos) (cond [(empty? goos) #f] [else (if (equal? (snake-head snake) (goo-location(first goos))) (first goos) (can-eat snake (rest goos)))])) (define (snake-head snake) (first (snake-segments snake))) (define (fresh-goo) (goo (position (add1 (random (sub1 SIZE))) (add1 (random (sub1 SIZE)))) EXPIRATION-TIME)) (define (render-pit w) (snake+scene (pit-snake w) (goo-list+scene (pit-goos w) MT-SCENE))) (define (snake+scene snake scene) (define snake-body-scene (img-list+scene (snake-body snake) SEG-IMG scene)) (define dir (snake-direction snake)) (img+scene (snake-head snake) (cond [(string=? "up" dir) HEAD-UP-IMG] [(string=? "down" dir) HEAD-DOWN-IMG] [(string=? "left" dir) HEAD-LEFT-IMG] [(string=? "right" dir) HEAD-RIGHT-IMG]) snake-body-scene)) (define (img+scene posn img scene) (place-image img (* (position-x posn) SEG-SIZE) (* (position-y posn) SEG-SIZE) scene)) (define (img-list+scene posns img scene) (cond [(empty? posns) scene] [else (img+scene (first posns) img (img-list+scene (rest posns) img scene))])) (define (goo-list+scene goos scene) (define (get-posns-from-goo goos) (cond [(empty? goos) empty] [else (cons (goo-location (first goos)) (get-posns-from-goo (rest goos)))])) (img-list+scene (get-posns-from-goo goos) GOO-IMG scene)) (define (direct-snake w ke) (cond [(dir? ke) (world-change-dir w ke)] [else w])) (define (dir? x) (or (key=? x "up") (key=? x "down") (key=? x "left") (key=? x "right"))) (define (world-change-dir w d) (define the-snake (pit-snake w)) (cond [(and (opposite-dir? (snake-direction the-snake) d) (cons? (rest (snake-segments the-snake)))) (stop-with w)] [else (pit (snake-change-dir the-snake d) (pit-goos w))])) (define (opposite-dir? d1 d2) (cond [(string=? d1 "up") (string=? d2 "down")] [(string=? d1 "down") (string=? d2 "up")] [(string=? d1 "left") (string=? d2 "right")] [(string=? d1 "right") (string=? d2 "left")])) (define (snake-change-dir sn d) (snake d (snake-segments sn))) (define (dead? w) (define snake (pit-snake w)) (or (self-colliding? snake) (wall-colliding? snake))) (define (render-end w) (overlay (text "Game Over" ENDGAME-TEXT-SIZE "black") (render-pit w))) (define (self-colliding? snake) (cons? (member (snake-head snake) (snake-body snake)))) (define (snake-body sn) (rest (snake-segments sn))) (define (wall-colliding? snake) (define x (position-x (snake-head snake))) (define y (position-y (snake-head snake))) (or (= 0 x) (= x SIZE) (= 0 y) (= y SIZE))) (define (grow sn) (snake (snake-direction sn) (cons (next-head sn) (snake-segments sn)))) (define (next-head sn) (define head (snake-head sn)) (define dir (snake-direction sn)) (cond [(string=? dir "up") (posn-move head 0 -1)] [(string=? dir "down") (posn-move head 0 1)] [(string=? dir "left") (posn-move head -1 0)] [(string=? dir "right") (posn-move head 1 0)])) (define (posn-move pos dx dy) (position (+ (position-x pos) dx) (+ (position-y pos) dy))) (define (age-goo goos) (rot (renew goos))) (define (rot goos) (cond [(empty? goos) empty] [else (cons (decay (first goos)) (rot (rest goos)))])) (define (renew goos) (cond [(empty? goos) empty] [(rotten? (first goos)) (cons (fresh-goo) (renew (rest goos)))] [else (cons (first goos) (renew (rest goos)))])) (define (rotten? goo) (zero? (goo-expire goo))) (define (decay g) (goo (goo-location g) (sub1 (goo-expire g)))) (define (eat goos goo-to-eat) (cons (fresh-goo) (remove goo-to-eat goos))) (define (slither sn) (snake (snake-direction sn) (cons (next-head sn) (all-but-last (snake-segments sn))))) (define (all-but-last segs) (cond [(empty? (rest segs)) empty] [else (cons (first segs) (all-but-last (rest segs)))])) (define (position=? p1 p2) (and (= (position-x p1) (position-x p2)) (= (position-y p1) (position-y p2)))) (module+ test (require rackunit) (check-true (position=? (position 1 1) (position 1 1))) (define test-snake (snake "up" (list (position 1 1)))) (define test-goos (list (goo (position 1 1) 4))) (check-equal? (can-eat test-snake test-goos) (goo (position 1 1) 4)) (set! test-snake (snake "up" (list (position 3 3)))) (set! test-goos (list (goo (position 2 3) 4) (goo (position 3 3) 4))) (check-equal? (can-eat test-snake test-goos) (goo (position 3 3) 4)) (set! test-snake (snake "up" (list (position 1 1)))) (set! test-goos (list (goo (position 1 2) 4))) (check-false (can-eat test-snake test-goos)) (set! test-snake (snake "up" (list (position 2 3) (position 3 3)))) (check-equal? (snake-head test-snake) (position 2 3)) (set! test-snake (snake "up" (list (position 2 3) (position 3 3)))) (check-equal? (next-head test-snake) (position 2 2)) (set! test-snake (snake "down" (list (position 2 3) (position 3 3)))) (check-equal? (next-head test-snake) (position 2 4)) (set! test-snake (snake "left" (list (position 2 3) (position 3 3)))) (check-equal? (next-head test-snake) (position 1 3)) (set! test-snake (snake "right" (list (position 2 3) (position 3 3)))) (check-equal? (next-head test-snake) (position 3 3)) )
false
0f02467d053031f4f55bc07224bc16fe8a51c62d
ec97baaaca0c4cbfdd1bbff9a9e7df368caeb401
/static/board-choices.rkt
93052dc79d238779824c2c199a0d99f4c9007f88
[ "MIT", "CC0-1.0", "LicenseRef-scancode-public-domain" ]
permissive
concurrency/plumb
dd7ce14df1e9957ae1e730bdc1b4d49f4b8f4d43
886643c572a20f99ef27aa6a5023a6f6789c9fdf
refs/heads/master
2021-03-12T20:15:13.884614
2014-03-30T21:20:15
2014-03-30T21:20:15
10,464,765
5
1
null
null
null
null
UTF-8
Racket
false
false
102
rkt
board-choices.rkt
Arduino Duemilanove:arduino Arduino Uno:uno Moteino:uno Freeduino:arduino Arduino Pro 3.3V:arduinopro
false
f5212151771c1a70109d8c5726f0e849b82643f0
09420b91f32aeb34ec607c8f034805e3d86fe505
/koans/lists.rkt
2853504c9cf242bbce6627bb1775afc99c84c509
[ "Apache-2.0", "MIT" ]
permissive
zyrolasting/racket-koans
66e36f95e7c4fb882cc772730104954ee8a69c92
358673d765cbded90b1b6b54528ad88caedcdecb
refs/heads/master
2022-12-26T09:38:08.224375
2022-05-31T14:37:29
2022-05-31T14:37:29
141,904,502
86
16
NOASSERTION
2022-05-31T14:37:30
2018-07-22T14:50:46
Racket
UTF-8
Racket
false
false
1,027
rkt
lists.rkt
#lang racket/base (require rackunit) ;;; https://docs.racket-lang.org/guide/pairs.html?q=pairs ;; Make a pair matching expectations. (define pair "?") (if (pair? pair) (begin (check-equal? (car pair) "first") (check-equal? (car (cdr pair)) "second")) (fail "Define a pair")) ;; Make a list of the first 1000 positive integers. Do not type it longhand. (define thousand "?") (define (counter-matches-element lst i) (if (null? lst) i (if (eqv? i (car lst)) (counter-matches-element (cdr lst) (add1 i)) i))) (if (list? thousand) (check-eqv? (counter-matches-element thousand 1) 1001) (fail "Define `thousand` as a list")) ;; Transform `thousand` into 'only-punc', which is a list of ;; characters such that every element matches char-punctuation? (define only-punc "?") (if (list? thousand) (check-true (and (foldl (lambda (e r) (and e r)) #t (map char-punctuation? only-punc)) (eqv? (length only-punc) 32))) (fail "Define `only-punc` as a list"))
false
7cda76095888cfb851a803d91927d2c60fd802fa
fc6465100ab657aa1e31af6a4ab77a3284c28ff0
/results/all/stlc-1-ordered-mildly-unfair.rktd
1347d073f34b0d2af602676314f318caca5b5034
[]
no_license
maxsnew/Redex-Enum-Paper
f5ba64a34904beb6ed9be39ff9a5e1e5413c059b
d77ec860d138cb023628cc41f532dd4eb142f15b
refs/heads/master
2020-05-21T20:07:31.382540
2017-09-04T14:42:13
2017-09-04T14:42:13
17,602,325
0
0
null
null
null
null
UTF-8
Racket
false
false
1,846
rktd
stlc-1-ordered-mildly-unfair.rktd
(start 2015-06-17T06:32:38 (#:model "stlc-1" #:type ordered-mildly-unfair)) (counterexample 2015-06-17T06:32:40 (#:model "stlc-1" #:type ordered-mildly-unfair #:counterexample (hd 0) #:iterations 3775 #:time 1889)) (new-average 2015-06-17T06:32:40 (#:model "stlc-1" #:type ordered-mildly-unfair #:average 1888.0 #:stderr +nan.0)) (counterexample 2015-06-17T06:32:42 (#:model "stlc-1" #:type ordered-mildly-unfair #:counterexample (hd 0) #:iterations 3775 #:time 1870)) (new-average 2015-06-17T06:32:42 (#:model "stlc-1" #:type ordered-mildly-unfair #:average 1878.5 #:stderr 9.5)) (counterexample 2015-06-17T06:32:44 (#:model "stlc-1" #:type ordered-mildly-unfair #:counterexample (hd 0) #:iterations 3775 #:time 1875)) (new-average 2015-06-17T06:32:44 (#:model "stlc-1" #:type ordered-mildly-unfair #:average 1877.3333333333333 #:stderr 5.607534613753574)) (counterexample 2015-06-17T06:32:45 (#:model "stlc-1" #:type ordered-mildly-unfair #:counterexample (hd 0) #:iterations 3775 #:time 1874)) (new-average 2015-06-17T06:32:45 (#:model "stlc-1" #:type ordered-mildly-unfair #:average 1876.5 #:stderr 4.051748593714402)) (counterexample 2015-06-17T06:32:47 (#:model "stlc-1" #:type ordered-mildly-unfair #:counterexample (hd 0) #:iterations 3775 #:time 1866)) (new-average 2015-06-17T06:32:47 (#:model "stlc-1" #:type ordered-mildly-unfair #:average 1874.4 #:stderr 3.776241517699838)) (counterexample 2015-06-17T06:32:49 (#:model "stlc-1" #:type ordered-mildly-unfair #:counterexample (hd 0) #:iterations 3775 #:time 1839)) (new-average 2015-06-17T06:32:49 (#:model "stlc-1" #:type ordered-mildly-unfair #:average 1868.5 #:stderr 6.657076435393155)) (finished 2015-06-17T06:32:49 (#:model "stlc-1" #:type ordered-mildly-unfair #:time-ms 11218 #:attempts 22650 #:num-counterexamples 6 #:rate-terms/s 2019.0764842217864 #:attempts/cexp 3775.0))
false
e2a25e16283acb10c3316a3bec1f11fa13cf54cd
f2d71a23005486a5eff162105d199408bce5f5ec
/check-syntax.rkt
39fdfbd764ee066442292ef611b8f89951a87688
[]
no_license
Runi-c/racket-langserver
828ab55ee0e0ec65b6d76983ad1d8b37f20ad20e
f6a2040cb7f1a07eaddf0dc91b8cf07e759b9c71
refs/heads/master
2023-04-10T17:00:06.190370
2021-04-17T17:07:45
2021-04-17T17:07:45
351,997,796
0
0
null
null
null
null
UTF-8
Racket
false
false
5,796
rkt
check-syntax.rkt
#lang racket/base (require drracket/check-syntax racket/class racket/contract/base racket/gui/base racket/match racket/set racket/logging racket/list racket/string net/url syntax/modread (only-in net/url path->url url->string) "msg-io.rkt" "responses.rkt" "interfaces.rkt" "autocomplete.rkt" "doc-trace.rkt") (define path->uri (compose url->string path->url)) (define ((error-diagnostics src) exn) (define msg (exn-message exn)) (cond ;; typed racket support: don't report error summaries [(string-prefix? msg "Type Checker: Summary") (list)] [(exn:srclocs? exn) (define srclocs ((exn:srclocs-accessor exn) exn)) (for/list ([sl (in-list srclocs)]) (match-define (srcloc src line col pos span) sl) (Diagnostic #:range (Range #:start (Pos #:line (sub1 line) #:char col) #:end (Pos #:line (sub1 line) #:char (+ col span))) #:severity Diag-Error #:source "Racket" #:message msg))] [(exn:missing-module? exn) ;; Hack: ;; We do not have any source location for the offending `require`, but the language ;; server protocol requires a valid range object. So we punt and just highlight the ;; first character. ;; This is very close to DrRacket's behavior: it also has no source location to work with, ;; however it simply doesn't highlight any code. (define silly-range (Range #:start (Pos #:line 0 #:char 0) #:end (Pos #:line 0 #:char 0))) (list (Diagnostic #:range silly-range #:severity Diag-Error #:source "Racket" #:message msg))] [else (error 'error-diagnostics "unexpected failure: ~a" exn)])) (define (check-typed-racket-log doc-text log) (match-define (vector _ msg data _) log) (when (and (list? data) (not (empty? data)) (syntax? (car data))) (define prop (syntax-property (car data) 'mouse-over-tooltips)) (when (and prop (list? prop) (not (empty? prop))) (define-values (start end msg) (match prop [(list (vector _ start _ _) (vector _ _ end msg)) (values start end msg)] [(list (vector _ start end msg)) (values start end msg)] [else (values #f #f #f)])) (when (string? msg) (list (Diagnostic #:range (Range #:start (abs-pos->Pos doc-text start) #:end (abs-pos->Pos doc-text end)) #:severity Diag-Error #:source "Typed Racket" #:message msg)))))) (define default-indenter ((read-language (open-input-string "#lang racket/base")) 'drracket:indentation #f)) (define (get-indenter doc-text) (define lang-info (with-handlers ([exn:fail:read? (lambda (e) 'missing)] [exn:missing-module? (lambda (e) #f)]) (read-language (open-input-string (send doc-text get-text)) (lambda () 'missing)))) (cond [(procedure? lang-info) (lang-info 'drracket:indentation #f)] [(eq? lang-info 'missing) lang-info] [else default-indenter])) (define (check-syntax src doc-text trace) (define indenter (get-indenter doc-text)) (define ns (make-base-namespace)) (define new-trace (new build-trace% [src src] [doc-text doc-text] [indenter indenter])) (match-define-values (src-dir _ #f) (split-path src)) (define-values (add-syntax done) (make-traversal ns src)) ;; Rewind input port and read syntax (define text (send doc-text get-text)) (define in (open-input-string text)) (port-count-lines! in) (when trace (set-clear! (send trace get-warn-diags))) (define valid #f) (define warn-diags (send new-trace get-warn-diags)) (define lang-diag (if (eq? indenter 'missing) (list (Diagnostic #:range (Range #:start (Pos #:line 0 #:char 0) #:end (Pos #:line 0 #:char 0)) #:severity Diag-Error #:source "Racket" #:message "Missing or invalid #lang line")) (list))) (define diags (list)) (define err-diags (parameterize ([current-annotations new-trace] [current-namespace ns] [current-load-relative-directory src-dir]) (with-intercepted-logging (lambda (l) (define result (check-typed-racket-log doc-text l)) (when (list? result) (set! diags (append diags result)))) (lambda () (with-handlers ([(or/c exn:fail:read? exn:fail:syntax? exn:fail:filesystem?) (error-diagnostics src)]) (define stx (expand (with-module-reading-parameterization (λ () (read-syntax src in))))) ;; reading and expanding succeeded, clear out any syntax errors before the ;; heavy stuff in order to be responsive to the user (display-message/flush (diagnostics-message (path->uri src) (list))) (define completions (append (set->list (walk stx)) (set->list (walk-module stx)))) (send new-trace set-completions completions) (when trace (send trace set-completions completions)) (add-syntax stx) (set! valid #t) (done) (list))) 'info))) (define all-diags (append err-diags (set->list warn-diags) lang-diag diags)) (display-message/flush (diagnostics-message (path->uri src) all-diags)) (if valid new-trace (or trace new-trace))) (provide (contract-out [check-syntax (-> any/c (is-a?/c text%) (or/c #f (is-a?/c build-trace%)) (is-a?/c build-trace%))]))
false
c4e1eaa172cc955f6a4135b882711b062b3d900a
bb9140e05d2b493422d65084bc9df4fb6ae88ba9
/racket/web-test.rkt
39a0f5122eed47f8efc2feeeead7594f0e6ea180
[]
no_license
8589/codes
080e40d6ac6e9043e53ea3ce1f6ce7dc86bb767f
fd879e36b6d10e5688cc855cd631bd82cbdf6cac
refs/heads/master
2022-01-07T02:31:11.599448
2018-11-05T23:12:41
2018-11-05T23:12:41
null
0
0
null
null
null
null
UTF-8
Racket
false
false
137
rkt
web-test.rkt
#lang racket (struct post (title body)) (define BLOG (list (post "First Post!" "Hey, this is my first post!")))
false
7a9f84c1de79a5d6b8118fd7a645e48a5369756b
5bbc152058cea0c50b84216be04650fa8837a94b
/experimental/micro/tetris/typed/bset-full-row.rkt
53e76840fced91bb3602a216e7ae914ecb966c2c
[]
no_license
nuprl/gradual-typing-performance
2abd696cc90b05f19ee0432fb47ca7fab4b65808
35442b3221299a9cadba6810573007736b0d65d4
refs/heads/master
2021-01-18T15:10:01.739413
2018-12-15T18:44:28
2018-12-15T18:44:28
27,730,565
11
3
null
2018-12-01T13:54:08
2014-12-08T19:15:22
Racket
UTF-8
Racket
false
false
600
rkt
bset-full-row.rkt
#lang typed/racket/base (provide full-row?) (require "data-block-adapted.rkt") (require benchmark-util) (require/typed/check "consts-board-width.rkt" [board-width Integer]) (require/typed/check "bset-blocks-count.rkt" [blocks-count (-> BSet Natural)]) (require/typed/check "bset-blocks-row.rkt" [blocks-row (-> BSet Real BSet)]) ;; ============================================================================= ;; Are there a full row of blocks at the given row in the set. (: full-row? (-> BSet Natural Boolean)) (define (full-row? bs i) (= board-width (blocks-count (blocks-row bs i))))
false
0cae690f1fc3881db3f587846168dd54217a0041
2ae5f80ee69bca9ffd5911174143dbdab8808a82
/lbdd-semantic-subtyping3.rkt
f504081dab9241691aa85bf03042e8e75e6f68d5
[ "MIT" ]
permissive
mafm/simple-semantic-subtype
40cdb2f59510e45972452f3a1720663f3a4c84db
388771b05dcdba1337a780b3a7736ec591f127b7
refs/heads/master
2021-07-24T13:26:18.231846
2017-11-02T08:03:24
2017-11-02T08:03:24
null
0
0
null
null
null
null
UTF-8
Racket
false
false
3,169
rkt
lbdd-semantic-subtyping3.rkt
#lang racket/base ;; An implementation of the semantic subtyping algorithm ;; in "Covariance and Contravariance: a fresh look at an ;; old issue", section 4 using binary decision diagrams ;; (BDDs) to represent DNF types, caching of the results ;; of calls to empty-Type?, and constant time hashing ;; functions (i.e. we store the hash code in a struct field). ;; ;; Note: this is a significant improvement over the version ;; w/ caching and standard structural hashing. (require racket/match "lbdd-lang2.rkt" "subtype-test-suite.rkt") (provide (all-defined-out) (all-from-out "lbdd-lang2.rkt")) ; (-> Type Type Boolean) (define (subtype? t1 t2) (empty-Type? (Diff t1 t2))) (define empty-type-cache (make-hasheq)) (define (clean-the-cache!) (hash-clear! empty-type-cache)) ; (-> Type Boolean) (define (empty-Type? t) (define hc (Rep-hash-code t)) (define bucket (hash-ref empty-type-cache hc #f)) (cond [(and bucket (assoc t bucket)) => cdr] [else (match-define (Type _ base prod arrow) t) (define res (and (Bot-base? base) (empty-Prod? prod Univ Univ (list)) (empty-Arrow? arrow Empty (list) (list)))) (hash-set! empty-type-cache hc (if bucket (cons (cons t res) bucket) (list (cons t res)))) res])) ; (-> (BDD Prod) Type Type (Listof Prod) ; Boolean) (define (empty-Prod? t s1 s2 N) (match t [(? Top?) (or (empty-Type? s1) (empty-Type? s2) (Prod-Phi s1 s2 N))] [(? Bot?) #t] [(Node _ (and p (Prod _ t1 t2)) l u r) (and (empty-Prod? l (And s1 t1) (And s2 t2) N) (empty-Prod? u s1 s2 N) (empty-Prod? r s1 s2 (cons p N)))])) ; (-> Type Type (Listof Prod) Boolean) (define (Prod-Phi s1 s2 N) (match N [(cons (Prod _ t1 t2) N) (and (let ([s1* (Diff s1 t1)]) (or (empty-Type? s1*) (Prod-Phi s1* s2 N))) (let ([s2* (Diff s2 t2)]) (or (empty-Type? s2*) (Prod-Phi s1 s2* N))))] [_ #f])) ; (-> (BDD Arrow) Type (Listof Arrow) (Listof Arrow) ; Boolean) (define (empty-Arrow? t dom P N) (match t [(? Top?) (ormap (match-lambda [(Arrow _ t1 t2) (and (subtype? t1 dom) (Arrow-Phi t1 (Not t2) P))]) N)] [(? Bot?) #t] [(Node _ (and a (Arrow _ s1 s2)) l u r) (and (empty-Arrow? l (Or s1 dom) (cons a P) N) (empty-Arrow? u dom P N) (empty-Arrow? r dom P (cons a N)))])) ; (-> Type Type (Listof Arrow) ; Boolean) (define (Arrow-Phi t1 t2 P) (match P [(cons (Arrow _ s1* s2*) P) (let ([t1* (Diff t1 s1*)]) (and (or (empty-Type? t1*) (let ([s2 (And* (map Arrow-rng P))]) (subtype? s2 (Not t2)))) (Arrow-Phi t1 (And t2 s2*) P) (Arrow-Phi t1* t2 P)))] ;; this last clause was just #t from the paper...? [_ (or (empty-Type? t1) (empty-Type? t2))])) (module+ test (run-subtype-tests ->Type subtype?) )
false
e017b9a657ae87d0d80484fbae52d4d46a32d129
0884f0d8c2cd37d8e3a6687e462862e4063b9aa4
/src/lang/forms.scrbl
75e4138408ccaceed2c5a9821f210504072e48a8
[]
no_license
brownplt/pyret-docs
988becc73f149cbf2d14493c05d6f2f42e622130
6d85789a995abf8f6375cc7516406987315972d1
refs/heads/horizon
2023-08-17T03:32:51.329554
2023-08-10T20:44:14
2023-08-10T20:44:14
61,943,313
14
20
null
2023-09-12T20:40:41
2016-06-25T12:57:24
Racket
UTF-8
Racket
false
false
74,204
scrbl
forms.scrbl
#lang scribble/base @(require racket/list racket/file (only-in racket/string string-join) (only-in scribble/core make-style) (only-in scribble/html-properties attributes) "../../scribble-api.rkt" "../../ragged.rkt") @(define (prod . word) (apply tt word)) @(define (file . name) (apply tt name)) @(define (in-code . code) (apply tt code)) @(define (justcode . stx) (nested #:style 'code-inset (verbatim (string-join stx "")))) @title[#:tag "s:forms" #:style '(toc)]{Language Constructs} This section contains information on the various language forms in Pyret, from binary operators to data definitions to functions. This is a more detailed reference to the grammar of expressions and statements and their evaluation, rather than to @(table-of-contents) @section[#:tag "s:literals"]{Primitives and Literals} There are several different literal token types referred to in this documentation. @subsection{Names} Names in Pyret match the following regular expression: @justcode{ ^[_a-zA-Z][_a-zA-Z0-9]*(?:-+[_a-zA-Z0-9]+)* } @margin-note{The convention in Pyret is that @pyret{kebab-case-names} are used for names of values and fields, and @pyret{TitleCaseNames} are used for annotations.} That is, they start with an alphabetical character or an underscore, followed by any number of alphanumeric characters mixed with underscores and hyphens, ending in a non-hyphen. So, for example, the following are valid names (though not necessarily good style): @pyret-block[#:style "good-ex"]{ a a1 a-1 abc ABC a----------b a-_-_-_-__--b a--_ _a __ } The following are not valid names: @pyret-block[#:style "bad-ex"]{ _- -_ a- -a -a- -abc a1- a-1- a_1- α 1abc $abc } @subsection{String Literals} @bnf['Pyret]{ string-expr: STRING } Strings in Pyret come in several forms. First, they can be enclosed in double quotes: @pyret-block[#:style "good-ex"]{ "a string" "a string\" with escapes" "'single quotes' are allowed unescaped or \' escaped" } They can also be enclosed in single quotes: @pyret-block[#:style "good-ex"]{ 'a string' 'a string\' with escapes' '"double quotes" are allowed unescaped or \" escaped' } String literals with single or double quotes must terminate by the end of the line: @pyret-block[#:style "bad-ex"]{ "multi-line strings not allowed with double quotes" } Finally, multi-line string literals can be created by starting and ending them with three backticks (@pyret{```}). For example: @pyret-block[#:style "good-ex"]{ ``` This string spans multiple lines ``` } Multi-line string literals strip all whitespace before the first non-whitespace character and after the last non-whitespace character. All whitespace at the beginning of intermediate lines is preserved. @subsection[#:tag "f:number_literals"]{Number Literals} @bnf['Pyret]{ num-expr: NUMBER } Pyret has several types of number literals. The most traditional allows for decimal numbers, negation, and an exponent: @justcode{ ^[-+]?[0-9]+(?:\\.[0-9]+)?(?:[eE][-+]?[0-9]+)? } That is, an optional sign, then some number of digits, optionally followed by a decimal point and more digits, optionally followed by an exponent. These are valid number literals: @pyret-block[#:style "good-ex"]{ 0.1 1 1e100 1.1e100 +1.1e100 -1.1e-100 1.1230e-0 10 19 19.0 } Note that a number literal cannot start with a decimal point; some leading digits are required. These are not number literals: @pyret-block[#:style "bad-ex"]{ .1 1.1.1 1.+1 0.1+100 } This first kind of number literal represents an @emph{exact} number, or @pyret-id["Exactnum" "numbers"]. Number literals can also be prefixed with a tilde, to indicate that the number is an approximation, or a @pyret-id["Roughnum" "numbers"]. So these are all valid rough number literals: @pyret-block[#:style "good-ex"]{ ~0.1 ~1 ~1e100 ~1.1e100 ~+1.1e100 ~-1.1e-100 ~1.1230e-0 ~10 ~19 ~19.0 } And these are not valid: @pyret-block[#:style "bad-ex"]{ ~.1 ~1.1.1 ~1.+1 ~0.1+100 } Finally, numbers can be written as exact ratios of whole numbers: @justcode{ ^[-+]?[0-9]+/[0-9]+ } These numbers are interpreted as @pyret-id["Exactnum" "numbers"]s. These are valid rational literals: @pyret-block[#:style "good-ex"]{ 1/2 -1/2 +1/4 1234/9 0/1234 } It is a syntax error to use zero as the denominator in a fraction literal. These are not valid rational literals: @pyret-block[#:style "bad-ex"]{ 1+1/2 -1/0 1.1/9 1/-3 } @subsection{Boolean Literals} @bnf['Pyret]{ bool-expr: "true" | "false" } Boolean literals are the lowercase words @pyret{true} and @pyret{false}. @section[#:tag "s:comments"]{Comments} Pyret supports two forms of comments: @itemlist[ @item{@emph{Single-line comments} begin with a @pyret{#} symbol and extend to the end of the line: @pyret-block{ # This is an example of a single-line, standalone comment fun example(n): 1 + n # This single-line comment starts after some code end } } @item{@emph{Block comments} begin with a @pyret{#|} symbol and end with a matching @pyret[#:style "force-comment"]{|#}. @pyret-block{ fun example(n): #| This comment can extend over multiple lines |# 1 + n end } While the text of a comment block contains everything between the @pyret{#|} and @pyret[#:style "force-comment"]{|#} symbols, it is preferred to put them on their own lines, so they are visually distinctive and can easily be added or removed: @pyret-block[#:style "good-ex"]{ #| prefer this style |# } @pyret-block[#:style "ok-ex"]{ #| instead of this style |# } The one exception is when block comments are being used to comment out sections of a single line of code: @pyret-block[#:style "good-ex"]{ rectangle(30 #|width|#, 40 #|height|#, "solid", "red") } They can be nested within each other, so long as the delimiters are matched: @pyret-block{ fun example(n): #| this is in a comment #| so is this and this |# and this |# 1 + n end } Within a block comment, single-line comments are ignored: @pyret-block[#:style "ok-ex"]{ fun example(n): #| This is a block comment. Even though the next line starts a single-line comment # the block-comment ends here |# 1 + n end } (Naturally, this style isn't preferred, as it is easy to ignore the end-of-comment marker when reading quickly!) } ] @section[#:tag "s:program"]{Programs} Programs consist of a sequence of import or provide statements, followed by a block: @bnf['Pyret]{ PROVIDE: "provide" STAR: "*" END: "end" PROVIDE-TYPES: "provide-types" program: prelude block prelude: [provide-stmt] [provide-types-stmt] import-stmt* } @section{Import Statements} Import statements come in a few forms: @bnf['Pyret]{ IMPORT: "import" AS: "as" PARENNOSPACE: "(" COMMA: "," RPAREN: ")" FROM: "from" import-stmt: IMPORT import-source AS NAME | IMPORT NAME (COMMA NAME)* FROM import-source import-source: import-special | import-name | import-string import-special: NAME PARENNOSPACE STRING (COMMA STRING)* RPAREN import-name: NAME import-string: STRING } The form with @py-prod{import-name} looks for a file with that name in the built-in libraries of Pyret, and it is an error if there is no such library. Example: @pyret-block{ import equality as EQ check: f = lam(): "" end equal-always3(f, f) is EQ.Unknown end } @section{Provide Statements} @bnf['Pyret]{ PROVIDE: "provide" END: "end" STAR: "*" provide-stmt: PROVIDE stmt END | PROVIDE STAR } @bnf['Pyret]{ PROVIDE-TYPES: "provide-types" STAR: "*" provide-types-stmt: PROVIDE-TYPES record-ann | PROVIDE-TYPES STAR } @pyret{provide} and @pyret{provide-types} statements specify which bindings and declarations in the program are available to other Pyret programs via @pyret{import} statements. @pyret{provide} statements must be the first non-comment code in the program or a syntax error will be raised. @pyret{provide} statements have no effect when the program is run as the top-level program. When the program is in a file that is evaluated via @pyret{import}, the program is run, and then the @pyret{provide} statement is run in top-level scope to determine the value bound to the identifier in the @pyret{import} statement. @margin-note{Any interactive windows spawned by code in the @pyret{providing} program will appear when its code is @pyret{import}ed.} In the first form, the @tt{stmt} internal to the provide is evaluated, and the resulting value is provided. This is usually done via an object literal, where the key represents the binding passed to the external program and the value after the colon is the local identifier. @examples{ provide { x : x, draw-character : draw-character, external-funct-name : internal-funct-name } end } Types can only be @pyret{provide}d by @pyret{provide-types} statements. If types are included in a @pyret{provide} statement they are ignored. In practice, types shared via @pyret{provide-types} also need to share detector functions to fully work as anticipated in @pyret{import}ing programs. The second wildcard @bold{*} form is syntactic sugar for sharing all top level bindings and declarations other than types defined in the file. To share all bindings and declarations in a file: @examples{ provide * provide-types * } @margin-note{While the wildcard form is somewhat simpler, specifying which names are to be shared explicitly through the object literal syntax can prevent namespace pollution, especially if you expect programmers (students) to use @pyret{include} to add the names directly to their top level namespace.} Programmers working through @url{http://code.pyret.org} can @pyret{provide} and @pyret{import} code via Google Drive sharing integrated into the development environment. To allow other programs to @pyret{import} the @pyret{provide}d values in a program, click the @bold{Publish} button at the top of the window for the providing program and then the blue @bold{Publish} button on the resulting dialog. The published code can now be @pyret{import}ed using the provided code: @(image "src/lang/publish.png") Any time you make changes to the providing program that you want to be available to @pyret{import}ing programs, you must re-publish the providing program, and reload any open instances of the @pyret{import}ing programs. @section{Bindings} Many syntactic forms in Pyret need to designate names for values. These are uniformly represented as @py-prod{binding}s: @bnf['Pyret]{ binding: name-binding | tuple-binding name-binding: [SHADOW] NAME [COLONCOLON ann] tuple-binding: LBRACE (binding SEMI)* binding [SEMI] RBRACE [AS name-binding] SHADOW: "shadow" COLONCOLON: "::" SEMI: ";" LBRACE: "{" RBRACE: "}" AS: "as" } @subsection{Name bindings} The simplest form of binding is a @py-prod{name-binding}. This form simply associates a name with a given value: @pyret-block[#:style "good-ex"]{ PI = ~3.141592 five = num-sqrt((3 * 3) + (4 * 4)) hw = string-append("Hello", " world") } @subsection[#:tag "s:annotated-binding"]{Annotated bindings} Slightly more complicated, a name binding may also specify an @seclink["s:annotations"]{annotation}, that will ensure that the value being bound has the correct type: @pyret-block[#:style "good-ex"]{ PI :: Number = ~3.141592 hw :: String = string-append("Hello", "world") this-will-fail :: Boolean = 5 } That last line will fail at runtime with an annotation error. Note that the annotation always comes after the name, not the value; this is not allowed, for instance: @pyret-block[#:style "bad-ex"]{ PI = ~3.14 :: Number } @subsection[#:tag "s:shadowing"]{Shadowing} Pyret does not permit a program to implicitly bind the same name multiple times in the same scope, as this can be confusing or ambiguous: which name was meant? @pyret-block[#:style "bad-ex"]{ ans = 3 + 4 ans = true # did you mean to use a different name here? ans # which one was meant? } Pyret will signal an error on the second binding of @pyret{ans} above, saying that it @emph{shadows} the earlier definition. The same rule applies to names defined in nested scopes, like functions. This program is disallowed by the shadowing rule, as well: @pyret-block[#:style "bad-ex"]{ ans = 3 + 4 fun oops(x): ans = x * 2 # Shadows the outer ans ans end fun another-oops(ans): # Also shadows the outer ans if ans: 3 else: 4 end end } The general rule for shadowing is to look "upward and leftward", i.e. looking outward from the current scope to any enclosing scopes, to see if there are any existing bindings of the same name. But sometimes, redefining the same name makes the most sense. In this case, a program can explicitly specify that it means to hide the outer definition, using the @pyret{shadow} keyword: @pyret-block[#:style "good-ex"]{ ans = 3 + 4 fun oops(x): shadow ans = x * 2 # <-------------------------+ ans # uses the ans defined the line above --+ end fun another-oops(shadow ans): if ans: 3 else: 3 end # uses the function's parameter end } @subsection{Tuple bindings} Tuples are useful to package up several Pyret values into a single value, which can then be passed around and manipulated as a single entity. But often, the most useful manipulation is to break the tuple apart into its components. While there are @py-prod{tuple-get} expressions to access individual components, it's often easiest to give all the components names. We do this with a @py-prod{tuple-binding}, which binds each component of a tuple to its own name. The number of bindings must match the length of the given tuple: @examples{ check: {x; y} = {1; 2} x is 1 y is 2 fun sum-two({k; v}, {a; b; c}): k + v + a + b + c end sum-two({10; 12}, {1; 4; 5}) is 32 fun sum-vals(elts) block: var sum = 0 for each({k; v} from elts): sum := sum + v end sum end elts = [list: {"a"; 5}, {"b"; 6}, {"c"; 7}] sum-vals(elts) is 18 end } It is also possible to @emph{nest} tuple bindings, if the tuple being bound has tuples nested inside it: @examples{ check: {{w; x}; {y; z}} = {{~5; true}; {"hello"; 4}} w is-roughly ~5 x is true y is "hello" z is 4 end } Nested bindings likewise must match the number of components in the tuple being bound, and follow the same rules of shadowing as normal name bindings. With nested tuples, it is sometimes also useful to not only decompose the nested tuples into their components, but to give a name to the nested tuple itself: @examples{ check: {{w; x} as wx; {y; z} as yz} as wxyz = {{~5; true}; {"hello"; 4}} w is-roughly ~5 x is true y is "hello" z is 4 wx is-roughly {~5; true} yz is {"hello"; 4} wxyz is {wx; yz} end } As with any other name bindings, you can provide annotations on any of these components. The rule of annotations adjacent to names applies – the tuple components and the @pyret{as} name can have annotations. We demonstrate both permitted styles of annotation below: @pyret-block[#:style "good-ex"]{ check: { {w :: Number; x :: Boolean} as wx; {y; z} as yz :: {String; Number} } as wxyz = {{~5; true}; {"hello"; 4}} w is-roughly ~5 x is true y is "hello" z is 4 wx is-roughly {~5; true} yz is {"hello"; 4} wxyz is {wx; yz} end } But this is not allowed, because the @pyret{{Number; Boolean}} annotation is not adjacent to a name: @pyret-block[#:style "bad-ex"]{ check: {{w; x} :: {Number; Boolean} as wx; yz} = {{~5; true}; {"hello"; 4}} w is ~5 x is true end } @section{Blocks} A block's syntax is a list of statements: @bnf['Pyret]{ block: stmt* user-block-expr: BLOCK block END BLOCK: "block:" END: "end" } Blocks serve two roles in Pyret: @itemlist[ @item{Sequencing of operations} @item{Units of lexical scope} ] The @py-prod{let-decl}, @py-prod{fun-decl}, @py-prod{data-decl}, and @py-prod{var-decl} forms are handled specially and non-locally within blocks. A detailed description of scope will appear here soon. Blocks evaluate each of their statements in order, and evaluate to the value of the final statement in the block. The @py-prod{user-block-expr} form @emph{additionally} creates a scope for any names bound inside it. That is, definitions within such a block are visible only within that block: @pyret-block{ x = 10 ans = block: y = 5 + x # x is visible here 42 # value result of the block end z = y + ans # error: y is not in scope here } @subsection[#:tag "s:blocky-blocks"]{Block Shorthand} Many expressions in Pyret include one or more blocks within them. For example, the body of a function is defined as a block. Technically, this means the following program is legal: @pyret-block[#:style "bad-ex"]{ fun weather-reaction(forecast, temp): ask: | forecast == "sunny" then: "sunglasses" | forecast == "rainy" then: "umbrella" | otherwise: "" end ask: | temp > 85 then: "shorts" | temp > 50 then: "jeans" | temp > 0 then: "parka" | otherwise: "stay inside!" end end } However, the program probably won't behave as expected: rather than returning some combination of "sunglasses" and "shorts" for a warm, sunny day, it will evaluate the first @tt{ask} expression, @emph{discard the result}, and then evaluate the second @tt{ask} expression and return its result. Pyret will warn the programmer if it encounters programs like these, and complain that the block contains multiple expressions. Often as in this case, it signals a real mistake, and the programmer ought to revise the code to comprise a single expression --- say, by concatenating the two results above. Sometimes, though, multiple expressions are deliberate: @pyret-block[#:style "bad-ex"]{ if some-condition(): temp = some-complicated-expression() print(temp) # make sure we got it right! do-something-with(temp) else: do-something-else() end } To tell Pyret that these multiple statements are intentional, we could write an explicit @tt{block} form: @pyret-block[#:style "ok-ex"]{ if some-condition(): block: temp = some-complicated-expression() print(temp) # make sure we got it right! do-something-with(temp) end else: do-something-else() end } ...but that is syntactically annoying for a straightforward situation! Instead, Pyret allows for block @emph{shorthands}: writing @tt{block} before the opening colon of a blocky expression signals that the expression is deliberate. @pyret-block[#:style "good-ex"]{ if some-condition() block: temp = some-complicated-expression() print(temp) # make sure we got it right! do-something-with(temp) else: do-something-else() end } The leading @tt{block} allows for multiple statements in @emph{all} of the blocks of this expression. Analogous markers exist for @py-prod{ask-expr}, @py-prod{cases-expr}, @py-prod{fun-decl}, etc. However, even this marker is sometimes too much. Suppose we eliminated the @tt{print} call in the example above: @pyret-block{ if some-condition() block: temp = some-complicated-expression() do-something-with(temp) else: do-something-else() end } Why should this expression be penalized, but the equivalent one, where we inline the definition of @tt{temp}, not be? After all, this one is clearer to read! In fact, Pyret will @emph{not} complain about this block containing multiple expressions. Instead, Pyret will consider the following to be valid "non-blocky" blocks: @bnf['Pyret]{ non-blocky-block: stmt* template-expr stmt* | let-decl* expr | user-block-expr } Any sequence of let-bindings followed by exactly one expression is fine, as is any block containing even a single template-expression, or (obviously) an explicit @tt{block} expression. All other blocks will trigger the multiple-expressions warning and require either an explicit block or a block-shorthand to fix. @section[#:tag "s:declarations"]{Declarations} There are a number of forms that can only appear as statements in @tt{block}s (rather than anywhere an expression can appear). Several of these are @emph{declarations}, which define new names within their enclosing block. @py-prod{data-decl} and @py-prod{contract} are exceptions, and can appear only at the top level. @bnf['Pyret]{ stmt: let-decl | rec-decl | fun-decl | var-decl | type-stmt | newtype-stmt | data-decl | contract } @subsection[#:tag "s:let-decl"]{Let Declarations} Let declarations are written with an equals sign: @bnf['Pyret]{ EQUALS: "=" let-decl: binding EQUALS binop-expr } A let statement causes the name in the @tt{binding} to be put in scope in the current block, and upon evaluation sets the value to be the result of evaluating the @tt{binop-expr}. The resulting binding cannot be changed via an @py-prod{assign-stmt}, and cannot be shadowed by other bindings within the same or nested scopes: @pyret-block{ x = 5 x := 10 # Error: x is not assignable } @pyret-block{ x = 5 x = 10 # Error: x defined twice } @pyret-block{ x = 5 fun f(): x = 10 x end # Error: can't use the name x in two nested scopes } @pyret-block{ fun f(): x = 10 x end fun g(): x = 22 x end # Not an error: x is used in two scopes that are not nested } A binding also has a case with tuples, where several names can be given in a binding which can then be assigned to values in a tuple. @pyret-block{ {x;y;z} = {"he" + "llo"; true; 42} x = "hi" #Error: x defined twice } @pyret-block{ {x;y;z} = {10; 12} #Error: The number of names must match the length of the tuple } @subsection[#:tag "s:rec-decl"]{Recursive Let Declarations} @bnf['Pyret]{ EQUALS: "=" REC: "rec" rec-decl: REC binding EQUALS binop-expr } A recursive let-binding is just like a normal let-binding, except that the name being defined is in scope in the definition itself, rather than only after it. That is: @pyret-block[#:style "bad-ex"]{ countdown-bad = lam(n): if n == 0: true else: countdown-bad(n - 1) # countdown-bad is not in scope end end # countdown-bad is in scope here } @pyret-block[#:style "good-ex"]{ rec countdown-good = # countdown-good is in scope here, because of the 'rec' lam(n): if n == 0: true else: countdown-good(n - 1) # so this call is fine end end # countdown-good is in scope here } @subsection[#:tag "s:fun-decl"]{Function Declaration Expressions} Function declarations have a number of pieces: @bnf['Pyret]{ FUN: "fun" COLON: ":" END: "end" LANGLE: "<" RANGLE: ">" COMMA: "," LPAREN: "(" RPAREN: ")" THINARROW: "->" DOC: "doc:" WHERE: "where:" BLOCK: "block" fun-decl: FUN NAME fun-header [BLOCK] COLON doc-string block where-clause END fun-header: ty-params args return-ann ty-params: [LANGLE list-ty-param* NAME RANGLE] list-ty-param: NAME COMMA args: LPAREN [list-arg-elt* binding] RPAREN list-arg-elt: binding COMMA return-ann: [THINARROW ann] doc-string: [DOC STRING] where-clause: [WHERE block] } Function declarations are statements used to define functions with a given name, parameters and signature, optional documentation, body, and optional tests. For example, the following code: @pyret-block{ fun is-even(n): num-modulo(n, 2) == 0 end } defines a minimal function, with just its name, parameter names, and body. A more complete example: @pyret-block{ fun fact(n :: NumNonNegative) -> Number: doc: "Returns n! = 1 * 2 * 3 ... * n" if n == 0: 1 else: n * fact(n - 1) end where: fact(1) is 1 fact(5) is 120 end } defines a recursive function with a fully-annotated signature (the types of its parameter and return value are specified), documents the purpose of the function with a doc-string, and includes a where-block definine some simple tests of the function. Function declarations are statements that can only appear either at the top level of a file, or within a block scope. (This is commonly used for defining local helper functions within another one.) @subsubsection{Scope} Once defined, the name of the function is visible for the remainder of the scope in which it is defined. Additionall, the function is in scope within its own body, to enable recursive functions like @pyret{fact} above: @pyret-block{ fun outer-function(a, b, c): ... # outer-function is in scope here # as are parameters a, b, and c ... fun inner-helper(d, e, f): ... # inner-helper is in scope here, # as are parameters d, e, and f # and also outer-helper, a, b and c ... end ... # outer-function, a, b, and c are in scope here, # and so is inner-helper, but *not* d, e or f ... end } As with all Pyret identifiers, these function and parameter names cannot be mutated, and they cannot be redefined while in scope unless they are explicitly @pyret{shadow}ed. @subsubsection{Where blocks} If a function defines a @pyret{where:} block, it can incorporate unit tests directly inline with its definition. This helps to document the code in terms of executable examples. Additionally, whenever the function declaration is executed, the tests will be executed as well. This helps ensure that the code and tests don't fall out of synch with each other. (The clarification about "whenever the declaration is executed" allows writing tests for nested functions that might rely on the parameters of their containing function: in the example above, @pyret{inner-helper} might have a test case that relied on the parameters @pyret{a}, @pyret{b} or @pyret{c} from the surrounding call to @pyret{outer-function}.) See the documentation for @seclink["testing-blocks"]{@pyret{check:} and @pyret{where:} blocks} for more details. @subsubsection{Syntactic sugar} Function declarations are not a primitive concept in the language. Instead, they can be thought of as an idiomatic declaration of a recursively-scoped let binding to a lambda expression. That is, the following two definitions are equivalent: @pyret-block{ fun fact(n): if n == 1: 1 else: n * fact(n - 1) end end } @pyret-block{ rec fact = lam(n): if n == 1: 1 else n * fact(n - 1) end end } See the @seclink["s:lam-expr"]{documentation} for more information about @py-prod{lam-expr}s, and also see @py-prod{rec-decl}s above for more information about recursive bindings. @subsection[#:tag "s:data-decl"]{Data Declarations} Data declarations define a number of related functions for creating and manipulating a data type. Their grammar is: @bnf['Pyret]{ COLON: ":" END: "end" DATA: "data" PIPE: "|" LPAREN: "(" RPAREN: ")" data-decl: DATA NAME ty-params COLON data-variant* data-sharing where-clause END data-variant: PIPE NAME variant-members data-with | PIPE NAME data-with variant-members: LPAREN [list-variant-member* variant-member] RPAREN COMMA: "," REF: "ref" list-variant-member: variant-member COMMA variant-member: [REF] binding WITH: "with:" data-with: [WITH fields] SHARING: "sharing:" data-sharing: [SHARING fields] } A @py-prod{data-decl} causes a number of new names to be bound in the scope of the block it is defined in: @itemlist[ @item{The @tt{NAME} of the data definition} @item{@tt{NAME}, for each variant of the data definition} @item{@tt{is-NAME}, for the data definition and each variant of the data definition} ] For example, in this data definition: @pyret-block{ data BTree: | node(value :: Number, left :: BTree, right :: BTree) | leaf(value :: Number) end } These names are defined, with the given types: @pyret-block{ is-BTree :: (Any -> Bool) node :: (Number, BTree, BTree -> BTree) is-node :: (Any -> Bool) leaf :: (Number -> BTree) is-leaf :: (Any -> Bool) } We call @tt{node} and @tt{leaf} the @emph{constructors} of @tt{BTree}, and they construct values with the named fields. They will refuse to create the value if fields that don't match the annotations are given. As with all annotations, they are optional. The constructed values can have their fields accessed with @seclink["s:dot-expr" "dot expressions"]. The function @tt{is-BTree} is a @emph{detector} for values created from this data definition. @tt{is-BTree} returns @pyret{true} when provided values created by @tt{node} or @tt{leaf}, but no others. @tt{BTree} can be used as an annotation to check for values created by the constructors of @tt{BTree}. The functions @tt{is-node} and @tt{is-leaf} are detectors for the values created by the individual constructors: @tt{is-node} will only return @pyret{true} for values created by calling @tt{node}, and @tt{is-leaf} correspondingly for @tt{leaf}. Here is a longer example of the behavior of detectors, field access, and constructors: @pyret-block{ data BTree: | node(value :: Number, left :: BTree, right :: BTree) | leaf(value :: Number) where: a-btree = node(1, leaf(2), node(3, leaf(4), leaf(5))) is-BTree(a-btree) is true is-BTree("not-a-tree") is false is-BTree(leaf(5)) is true is-leaf(leaf(5)) is true is-leaf(a-btree) is false is-leaf("not-a-tree") is false is-node(leaf(5)) is false is-node(a-btree) is true is-node("not-a-tree") is false a-btree.value is 1 a-btree.left.value is 2 a-btree.right.value is 3 a-btree.right.left.value is 4 a-btree.right.right.value is 5 end } A data definition can also define, for each instance as well as for the data definition as a whole, a set of methods. This is done with the keywords @tt{with:} and @tt{sharing:}. Methods defined on a variant via @tt{with:} will only be defined for instances of that variant, while methods defined on the union of all the variants with @tt{sharing:} are defined on all instances. For example: @pyret-block{ data BTree: | node(value :: Number, left :: BTree, right :: BTree) with: method size(self): 1 + self.left.size() + self.right.size() end | leaf(value :: Number) with: method size(self): 1 end, method increment(self): leaf(self.value + 1) end sharing: method values-equal(self, other): self.value == other.value end where: a-btree = node(1, leaf(2), node(3, leaf(4), leaf(2))) a-btree.values-equal(leaf(1)) is true leaf(1).values-equal(a-btree) is true a-btree.size() is 5 leaf(0).size() is 1 leaf(1).increment() is leaf(2) a-btree.increment() # raises error: field increment not found. end } When you have a single kind of datum in a data definition, instead of writing: @pyret-block{ data Point: | pt(x, y) end } You can drop the | and simply write: @pyret-block{ data Point: pt(x, y) end } @subsection[#:tag "s:var-decl"]{Variable Declarations} Variable declarations look like @seclink["s:let-decl" "let bindings"], but with an extra @tt{var} keyword in the beginning: @bnf['Pyret]{ VAR: "var" EQUALS: "=" var-decl: VAR binding EQUALS expr } A @tt{var} expression creates a new @emph{assignable variable} in the current scope, initialized to the value of the expression on the right of the @tt{=}. It can be accessed simply by using the variable name, which will always evaluate to the last-assigned value of the variable. @seclink["s:assign-stmt" "Assignment statements"] can be used to update the value stored in an assignable variable. If the @tt{binding} contains an annotation, the initial value is checked against the annotation, and all @seclink["s:assign-stmt" "assignment statements"] to the variable check the annotation on the new value before updating. @subsection[#:tag "s:type-decl"]{Type Declarations} Pyret provides two means of defining new type names. @bnf['Pyret]{ TYPE: "type" EQUALS: "=" type-stmt: TYPE type-decl type-decl: NAME ty-params EQUALS ann } A @py-prod{type-stmt} declares an alias to an existing type. This allows for creating convenient names for types, especially when type parameters are involved. @examples{ type Predicate<a> = (a -> Boolean) # Now we can use this alias to make the signatures for other functions more readable: fun filter<a>(pred :: Predicate<a>, elts :: List<a>) -> List<a>: ... end # We can specialize types, too: type NumList = List<Number> type StrPred = Predicate<String> } @subsection[#:tag "s:newtype-decl"]{Newtype Declarations} By contrast, sometimes we need to declare brand-new types, that are not easily describable using @py-prod{data-decl} or other existing types. (For one common example, we might want to build an object-oriented type that encapsulates details of its internals.) To do that we need to specify both a @emph{static name} to use as annotations to describe our data, and a @emph{dynamic brand} to mark the data and ensure that we can recognize it again when we see it. @bnf['Pyret]{ NEWTYPE: "newtype" AS: "as" newtype-stmt: newtype-decl newtype-decl: NEWTYPE NAME AS NAME } When we write @examples{ newtype MytypeBrander as MyType } we define both of these components. See @secref{brands} for more information about branders. @section[#:tag "s:contracts"]{Contracts} As part of its support for the systematic design of functions, Pyret allows developers to specify an annotation for a name, before that name is defined. The general grammar for standalone contracts is: For example, @pyret-block[#:style "good-ex"]{ the-answer :: Number the-answer = 42 double :: String -> String fun double(s): s + s end vals-to-string :: <T, S> (S, T -> String) fun vals-to-string(val1, val2): to-string(val1) + ", " + to-string(val2) end } In all of these cases, the definition itself (of @pyret{the-answer}, @pyret{double}, and @pyret{vals-to-string}) is preceded by a @emph{contract} statement, asserting the signature of the definition to follow. Pyret treats these contracts specially, and weaves them in to the definitions: the previous examples are equivalent to @pyret-block[#:style "good-ex"]{ the-answer :: Number = 42 fun double(s :: String) -> String: s + s end fun vals-to-string<T,S>(val1 :: T, val2 :: S) -> String: to-string(val1) + ", " + to-string(val2) end } The grammar for these contracts looks nearly identical to that of @py-prod{name-binding}s. Function annotations are given a slightly more relaxed treatment: the outermost set of parentheses are optional. @bnf['Pyret]{ COMMA: "," THINARROW: "->" COLONCOLON: "::" LPAREN: "(" RPAREN: ")" contract: NAME COLONCOLON ty-params ann | NAME COLONCOLON ty-params contract-arrow-ann contract-arrow-ann: (ann COMMA)* ann THINARROW ann | LPAREN (NAME COLONCOLON ann COMMA)* NAME COLONCOLON ann RPAREN THINARROW ann } When weaving function annotations onto functions, Pyret enforces a few restrictions: @itemlist[ @item{For a standalone function, the contract must immediately precede the function definition, or must immediately precede an @seclink["testing-blocks"]{@pyret{examples} or @pyret{check} block} that immediately precedes the function definition. (Whitespace or comments are not important; extraneous definitions are.) @pyret-block[#:style "good-ex"]{ is-even :: Number -> Boolean check: is-even(2) is true end fun is-even(n): num-modulo(n, 2) == 0 end } @pyret-block[#:style "bad-ex"]{ is-even :: Number -> Boolean something-irrelevant = 12345 fun is-even(n): num-modulo(n, 2) == 0 end } } @item{For mutually recursive functions, the contracts must be adjacent to the functions, and must precede them. @pyret-block[#:style "good-ex"]{ # Contracts is-even :: Number -> Boolean is-odd :: Number -> Boolean # Implementations fun is-even(n): if n == 0: true else: is-odd(n - 1) end end fun is-odd(n): if n == 0: false else: is-even(n - 1) end end } @pyret-block[#:style "good-ex"]{ # Is even? is-even :: Number -> Boolean fun is-even(n): if n == 0: true else: is-odd(n - 1) end end # Is odd? is-odd :: Number -> Boolean fun is-odd(n): if n == 0: false else: is-even(n - 1) end end } @pyret-block[#:style "bad-ex"]{ is-odd :: Number -> Boolean fun is-even(n): if n == 0: true else: is-odd(n - 1) end end is-even :: Number -> Boolean ## Does not precede definition of is-even fun is-odd(n): if n == 0: false else: is-even(n - 1) end end } } @item{If a contract specifies argument names, then the names must match those used by the function. @pyret-block[#:style "good-ex"]{ is-even :: (n :: Number) -> Boolean fun is-even(n): num-modulo(n, 2) == 0 end } @pyret-block[#:style "bad-ex"]{ is-even :: (x :: Number) -> Boolean # name does not match fun is-even(n): ... end } } @item{If a contract is used for a function, then the function must not itself be annotated. @pyret-block[#:style "good-ex"]{ is-even :: (n :: Number) -> Boolean fun is-even(n): num-modulo(n, 2) == 0 end } @pyret-block[#:style "bad-ex"]{ is-even :: (n :: Number) -> Boolean # Redundant argument annotation fun is-even(n :: Number): ... end } @pyret-block[#:style "bad-ex"]{ is-even :: (n :: Number) -> Boolean # Redundant return annotation fun is-even(n) -> Boolean: ... end } } ] Note that using a contract on a function is @emph{more expressive} than using an annotated binding for a lambda. @secref["s:annotated-binding"] do not enforce all the components of an @seclink["s:arrow-ann"]{arrow annotation}; they merely ensure that the value being bound is in fact a function. By contrast, function contracts ensure the arguments and return values are annotated and checked. @section{Statements} There are just a few forms that can only appear as statements in @tt{block}s that aren't declarations: @bnf['Pyret]{ stmt: when-stmt | assign-stmt | binop-expr } @subsection[#:tag "s:when-stmt"]{When Statements} A when expression has a single test condition with a corresponding block. @bnf['Pyret]{ WHEN: "when" COLON: ":" END: "end" BLOCK: "block" when-stmt: WHEN binop-expr [BLOCK] COLON block END } For example: @pyret-block{ when x == 42: print("answer") end } If the test condition is true, the block is evaluated. If the test condition is false, nothing is done, and @pyret{nothing} is returned. @subsection[#:tag "s:assign-stmt"]{Assignment Statements} Assignment statements have a name on the left, and an expression on the right of @tt{:=}: @bnf['Pyret]{ COLON-EQUALS: ":=" assign-stmt: NAME COLON-EQUALS binop-expr } If @tt{NAME} is not declared in the same or an outer scope of the assignment expression with a @tt{var} declaration, the program fails with a static error. At runtime, an assignment expression changes the value of the assignable variable @tt{NAME} to the result of the right-hand side expression. @subsection{Binop Expression “Statements”} The @py-prod{binop-expr} production is included in @py-prod{stmt} because any expression can appear where a statement can (subject to restrictions from well-formedness checking). @;TODO: Link to well-formedness once section is written @section{Expressions} The following are all the expression forms of Pyret: @bnf['Pyret]{ expr: paren-expr | id-expr | prim-expr | lam-expr | method-expr | app-expr | obj-expr | dot-expr | extend-expr | tuple-expr | tuple-get | template-expr | get-bang-expr | update-expr | if-expr | ask-expr | cases-expr | for-expr | user-block-expr | inst-expr | construct-expr | multi-let-expr | letrec-expr | type-let-expr | construct-expr | table-expr | table-select | table-sieve | table-order | table-extract | table-transform | table-extend | load-table-expr | reactor-expr paren-expr: LPAREN binop-expr RPAREN id-expr: NAME prim-expr: NUMBER | RATIONAL | BOOLEAN | STRING LPAREN: "(" RPAREN: ")" } @subsection[#:tag "s:lam-expr"]{Lambda Expressions} The grammar for a lambda expression is: @bnf['Pyret]{ LAM: "lam" COLON: ":" END: "end" BLOCK: "block" lam-expr: LAM fun-header [BLOCK] COLON doc-string block where-clause END LANGLE: "<" RANGLE: ">" COMMA: "," LAPREN: "(" RPAREN: ")" THINARROW: "->" DOC: "doc:" } A lambda expression creates a function value that can be applied with @seclink["s:app-expr" "application expressions"]. The arguments in @tt{args} are bound to their arguments as immutable identifiers as in a @seclink["s:let-decl" "let expression"]. @examples{ check: f = lam(x, y): x - y end f(5, 3) is 2 end check: f = lam({x;y}): x - y end f({5;3}) is 2 end } These identifiers follow the same rules of no shadowing and no assignment. @examples{ x = 12 f = lam(x): x end # ERROR: x shadows a previous definition g = lam(y): y := 10 # ERROR: y is not a variable and cannot be assigned y + 1 end } If the arguments have @seclink["s:annotations" "annotations"] associated with them, they are checked before the body of the function starts evaluating, in order from left to right. If an annotation fails, an exception is thrown. @pyret-block{ add1 = lam(x :: Number): x + 1 end add1("not-a-number") # Error: expected a Number and got "not-a-number" } A lambda expression can have a @emph{return} annotation as well, which is checked before evaluating to the final value: @examples{ add1 = lam(x) -> Number: tostring(x) + "1" end add1(5) # Error: expected a Number and got "51" } Lambda expressions remember, or close over, the values of other identifiers that are in scope when they are defined. So, for example: @examples{ check: x = 10 f = lam(y): y + x end f(5) is 15 end } @subsection[#:tag "s:curly-lam-expr"]{Curly-Brace Lambda Shorthand} Lambda expressions can also be written with a curly-brace shorthand: @bnf['Pyret]{ LBRACE: "{" COLON: ":" RBRACE: "}" BLOCK: "block" curly-lam-expr: LBRACE fun-header [BLOCK] COLON doc-string block where-clause RBRACE LANGLE: "<" RANGLE: ">" COMMA: "," LAPREN: "(" RPAREN: ")" THINARROW: "->" DOC: "doc:" } @examples{ check: x = 10 f = {(y :: Number) -> Number: x + y} f(5) is 15 end } @subsection[#:tag "s:method-expr"]{Anonymous Method Expressions} An anonymous method expression looks much like an anonymous function (defined with @pyret{lam}): @bnf['Pyret]{ METHOD: "method" BLOCK: "block" COLON: ":" END: "end" method-expr: METHOD fun-header [BLOCK] COLON doc-string block where-clause END } All the same rules for bindings, including annotations and shadowing, apply the same to @py-prod{method-expr}s as they do to @py-prod{lam-expr}s. It is a well-formedness error for a method to have no arguments. At runtime, a @py-prod{method-expr} evaluates to a method value. Method values cannot be applied directly: @examples{ check: m = method(self): self end m(5) raises "non-function" end } Instead, methods must be included as object fields, where they can then be bound and invoked. A method value can be used in multiple objects: @examples{ check: m = method(self): self.x end o = { a-method-name: m, x: 20 } o2 = { a-method-name: m, x: 30 } o.a-method-name() is 20 o2.a-method-name() is 30 end } @subsection[#:tag "s:app-expr"]{Application Expressions} Function application expressions have the following grammar: @bnf['Pyret]{ LPAREN: "(" RPAREN: ")" COMMA: "," app-expr: expr app-args app-args: LPAREN [app-arg-elt* binop-expr] RPAREN app-arg-elt: binop-expr COMMA } An application expression is an expression followed by a comma-separated list of arguments enclosed in parentheses. It first evaluates the arguments in left-to-right order, then evaluates the function position. If the function position is a function value, the number of provided arguments is checked against the number of arguments that the function expects. If they match, the arguments names are bound to the provided values. If they don't, an exception is thrown. Note that there is @emph{no space} allowed before the opening parenthesis of the application. If you make a mistake, Pyret will complain: @pyret-block{ f(1) # This is the function application expression f(1) f (1) # This is the id-expr f, followed by the paren-expr (1) # The second form yields a well-formedness error that there # are two expressions on the same line } @subsection[#:tag "s:curried-apply-expr"]{Curried Application Expressions} Suppose a function is defined with multiple arguments: @pyret-block{ fun f(v, w, x, y, z): ... end } Sometimes, it is particularly convenient to define a new function that calls @tt{f} with some arguments pre-specified: @pyret-block{ call-f-with-123 = lam(y, z): f(1, 2, 3, y, z) end } Pyret provides syntactic sugar to make writing such helper functions easier: @pyret-block{ call-f-with-123 = f(1, 2, 3, _, _) # same as the fun expression above } Specifically, when Pyret code contains a function application some of whose arguments are underscores, it constructs an lambda expression with the same number of arguments as there were underscores in the original expression, whose body is simply the original function application, with the underscores replaced by the names of the arguments to the anonymous function. This syntactic sugar also works with operators. For example, the following are two ways to sum a list of numbers: @pyret-block{ [list: 1, 2, 3, 4].foldl(lam(a, b): a + b end, 0) [list: 1, 2, 3, 4].foldl(_ + _, 0) } Likewise, the following are two ways to compare two lists for equality: @pyret-block{ list.map_2(lam(x, y): x == y end, first-list, second-list) list.map_2(_ == _, first-list, second-list) } Note that there are some limitations to this syntactic sugar. You cannot use it with the @tt{is} or @tt{raises} expressions in check blocks, since both test expressions and expected outcomes are known when writing tests. Also, note that the sugar is applied only to one function application at a time. As a result, the following code: @pyret-block{ _ + _ + _ } desugars to @pyret-block{ lam(z): (lam(x, y): x + y end) + z end } which is probably not what was intended. You can still write the intended expression manually: @pyret-block{ lam(x, y, z): x + y + z end } Pyret just does not provide syntactic sugar to help in this case (or other more complicated ones). @subsection[#:tag "s:cannonball-expr"]{Chaining Application} @bnf['Pyret]{ CARET: "^" chain-app-expr: binop-expr CARET binop-expr } The expression @pyret{e1 ^ e2} is equivalent to @pyret{e2(e1)}. It's just another way of writing a function application to a single argument. Sometimes, composing functions doesn't produce readable code. For example, if say we have a @pyret{Tree} datatype, and we have an @pyret{add} operation on it, defined via a function. To build up a tree with a series of adds, we'd write something like: @pyret-block{ t = add(add(add(add(empty-tree, 1), 2), 3), 4) } Or maybe @pyret-block{ t1 = add(empty-tree, 1) t2 = add(t1, 2) t3 = add(t2, 3) t = add(t3, 4) } If @pyret{add} were a method, we could write: @pyret-block{ t = empty-tree.add(1).add(2).add(3).add(4) } which would be more readable, but since @pyret{add} is a function, this doesn't work. In this case, we can write instead: @pyret-block{ t = empty-tree ^ add(_, 1) ^ add(_, 2) ^ add(_, 3) } This uses @seclink["s:curried-apply-expr" "curried application"] to create a single argument function, and chaining application to apply it. This can be more readable across several lines of initialization as well, when compared to composing “inside-out” or using several intermediate names: @pyret-block{ t = empty-tree ^ add(_, 1) ^ add(_, 2) ^ add(_, 3) # and so on } @subsection[#:tag "s:inst-expr"]{Instantiation Expressions} Functions may be defined with parametric signatures. Calling those functions does not require specifying the type parameter, but supplying it might aid in readability, or may aid the static type checker. You can supply the type arguments just between the function name and the left-paren of the function call. Spaces are not permitted before the left-angle bracket or after the right-angle bracket @bnf['Pyret]{ LANGLE: "<" RANGLE: ">" COMMA: "," inst-expr: expr LANGLE ann (COMMA ann)* RANGLE } @examples{ fun is-even(n :: Number) -> Boolean: num-modulo(n, 2) == 0 end check: map<Number, Boolean>(is-even, [list: 1, 2, 3]) is [list: false, true, false] end } @subsection[#:tag "s:binop-expr"]{Binary Operators} There are a number of binary operators in Pyret. A binary operator expression is a series of expressions joined by binary operators. An expression itself is also a binary operator expression. @bnf['Pyret]{ binop-expr: expr (BINOP expr)* } Pyret supports the following operations, shown by example: @pyret-block{ examples: 1 + 1 is 2 1 - 1 is 0 2 * 4 is 8 6 / 3 is 2 1 < 2 is true 1 <= 1 is true 1 > 1 is false 1 >= 1 is true 1 == 1 is true true and true is true false or true is true not(false) is true end } @margin-note{There are additional equality operators in Pyret, which also call methods, but are somewhat more complex. They are documented in detail in @seclink["equality"].} The arithmetic and comparison operators examine their arguments. For primtive numbers and strings, the operation happens internally to Pyret. If the arguments are objects, however, the operators are syntactic sugar for a particular method call, as follows: @tabular[#:sep @hspace[2] (list (list @tt{left + right} @tt{left._plus(right)}) (list @tt{left - right} @tt{left._minus(right)}) (list @tt{left * right} @tt{left._times(right)}) (list @tt{left / right} @tt{left._divide(right)}) (list @tt{left <= right} @tt{left._lessequal(right)}) (list @tt{left < right} @tt{left._lessthan(right)}) (list @tt{left >= right} @tt{left._greaterequal(right)}) (list @tt{left > right} @tt{left._greaterthan(right)})) ] Logical operators do not have a corresponding method call, since they only apply to primitive boolean values. @subsection[#:tag "s:tuple-expr"]{Tuple Expressions} Tuples are an immutable, fixed-length collection of expressions indexed by non-negative integers: @bnf['Pyret]{ tuple-expr: "{" tuple-fields "}" tuple-fields: binop-expr (";" binop-expr)* [";"] } A semicolon-separated sequence of fields enclosed in @tt{{}} creates a tuple. @subsection[#:tag "s:tuple-get-expr"]{Tuple Access Expressions} @bnf['Pyret]{ tuple-get: expr "." "{" NUMBER "}" } A tuple-get expression evaluates the @tt{expr} to a value @tt{val}, and then does one of three things: @margin-note{A static well-formedness error is raised if the index is negative} @itemlist[ @item{Raises an exception, if @tt{expr} is not a tuple} @item{Raises an exception, if @tt{NUMBER} is equal to or greater than the length of the given tuple} @item{Evaluates the expression, returning the @tt{val} at the given index. The first index is @pyret{0}} ] For example: @pyret-block[#:style "good-ex"]{ check: t = {"a";"b";true} t.{0} is "a" t.{1} is "b" t.{2} is true end } Note that the index is restricted @emph{syntactically} to being a number. So this program is a parse error: @pyret-block[#:style "bad-ex"]{ t = {"a";"b";"c"} t.{1 + 1} } This restriction ensures that tuple access is typable. @subsection[#:tag "s:obj-expr"]{Object Expressions} Object expressions map field names to values: @bnf['Pyret]{ LBRACE: "{" RBRACE: "}" obj-expr: LBRACE fields RBRACE | LBRACE RBRACE COMMA: "," COLON: ":" fields: list-field* field [COMMA] list-field: field COMMA END: "end" METHOD: "method" BLOCK: "block" field: key COLON binop-expr | METHOD key fun-header [BLOCK] COLON doc-string block where-clause END key: NAME } A comma-separated sequence of fields enclosed in @tt{{}} creates an object; we refer to the expression as an @emph{object literal}. There are two types of fields: @emph{data} fields and @emph{method} fields. A data field in an object literal simply creates a field with that name on the resulting object, with its value equal to the right-hand side of the field. A method field @justcode{ "method" key fun-header ":" doc-string block where-clause "end" } is syntactic sugar for: @justcode{ key ":" "method" fun-header ":" doc-string block where-clause "end" } That is, it's just special syntax for a data field that contains a method value. The fields are evaluated in the order they appear. If the same field appears more than once, it is a compile-time error. @subsection[#:tag "s:dot-expr"]{Dot Expressions} A dot expression is any expression, followed by a dot and name: @bnf['Pyret]{ DOT: "." dot-expr: expr DOT NAME } A dot expression evaluates the @tt{expr} to a value @tt{val}, and then does one of three things: @itemlist[ @item{Raises an exception, if @tt{NAME} is not a field of @tt{expr}} @item{Evaluates to the value stored in @tt{NAME}, if @tt{NAME} is present and not a method} @item{ If the @tt{NAME} field is a method value, evaluates to a function that is the @emph{method binding} of the method value to @tt{val}. For a method @pyret-block{ m = method(self, x): body end } The @emph{method binding} of @tt{m} to a value @tt{v} is equivalent to: @pyret-block{ (lam(self): lam(x): body end end)(v) } What this detail means is that you can look up a method and it automatically closes over the value on the left-hand side of the dot. This bound method can be freely used as a function. For example: @pyret-block{ o = { method m(self, x): self.y + x end, y: 22 } check: the-m-method-closed-over-o = o.m the-m-method-closed-over-o(5) is 27 end } Note that a method binding is not a itself a method value. Creating new objects from method bindings will not behave the same as using method values directly. For example: @pyret-block{ code = method(self, x): self.y + x end p = { y: 10, m: code } q = p.{ y: 15 } r = { y: 20, m: p.m } # m given method binding, not a method check: p.m(5) is 15 q.m(5) is 20 # self.y dynamically resolved when code runs r.m(5) is 15 # but this is not 25, because r.m is p.m end } } ] @subsection[#:tag "s:extend-expr"]{Extend Expressions} The extend expression consists of an base expression and a list of fields to extend it with: @bnf['Pyret]{ DOT: "." LBRACE: "{" RBRACE: "}" extend-expr: expr DOT LBRACE fields RBRACE } The extend expression first evaluates @tt{expr} to a value @tt{val}, and then creates a new object with all the fields of @tt{val} and @tt{fields}. If a field is present in both, the new field is used. Examples: @pyret-block{ check: o = {x : "original-x", y: "original-y"} o2 = o.{x : "new-x", z : "new-z"} o2.x is "new-x" o2.y is "original-y" o2.z is "new-z" end } @subsection[#:tag "s:if-expr"]{If Expressions} An if expression has a number of test conditions and an optional else case. @bnf['Pyret]{ IF: "if" COLON: ":" ELSECOLON: "else:" ELSEIF: "else if" END: "end" BLOCK: "block" if-expr: IF binop-expr [BLOCK] COLON block else-if* [ELSECOLON block] END else-if: ELSEIF binop-expr COLON block } For example, this if expression has an "else:" @pyret-block{ if x == 0: 1 else if x > 0: x else: x * -1 end } This one does not: @pyret-block{ if x == 0: 1 else if x > 0: x end } Both are valid. The conditions are tried in order, and the block corresponding to the first one to return @pyret{true} is evaluated. If no condition matches, the else branch is evaluated if present. If no condition matches and no else branch is present, an error is thrown. If a condition evaluates to a value other than @pyret{true} or @pyret{false}, a runtime error is thrown. @subsection[#:tag "s:ask-expr"]{Ask Expressions} An @pyret{ask} expression is a different way of writing an @pyret{if} expression that can be easier to read in some cases. @bnf['Pyret]{ ASK: "ask" BLOCK: "block" COLON: ":" BAR: "|" OTHERWISECOLON: "otherwise:" THENCOLON: "then:" END: "end" ask-expr: ASK [BLOCK] COLON ask-branch* [BAR OTHERWISECOLON block] END ask-branch: BAR binop-expr THENCOLON block } This ask expression: @pyret-block{ ask: | x == 0 then: 1 | x > 0 then: x | otherwise: x * -1 end } is equivalent to @pyret-block{ if x == 0: 1 else if x > 0: x else: x * -1 end } Similar to @pyret{if}, if an @pyret{otherwise:} branch isn't specified and no branch matches, a runtime error results. @subsection[#:tag "s:cases-expr"]{Cases Expressions} A cases expression consists of a datatype (in parentheses), an expression to inspect (before the colon), and a number of branches. It is intended to be used in a structure parallel to a data definition. @bnf['Pyret]{ CASES: "cases" LPAREN: "(" RPAREN: ")" COLON: ":" BAR: "|" ELSE: "else" THICKARROW: "=>" END: "end" BLOCK: "block" cases-expr: CASES LPAREN ann RPAREN expr [BLOCK] COLON cases-branch* [BAR ELSE THICKARROW block] END cases-branch: BAR NAME [args] THICKARROW block } The @pyret{check-ann} must be a type, like @pyret-id["List" "lists"]. Then @pyret{expr} is evaluated and checked against the given annotation. If it has the right type, the cases are then checked. Cases should use the names of the variants of the given data type as the @tt{NAME}s of each branch. In the branch that matches, the fields of the variant are bound, in order, to the provided @tt{args}, and the right-hand side of the @tt{=>} is evaluated in that extended environment. An exception results if the wrong number of arguments are given. An optional @tt{else} clause can be provided, which is evaluated if no cases match. If no @tt{else} clause is provided, a runtime error results. For example, some cases expression on lists looks like: @pyret-block{ check: result = cases(List) [list: 1,2,3]: | empty => "empty" | link(f, r) => "link" end result is "link" result2 = cases(List) [list: 1,2,3]: | empty => "empty" | else => "else" end result2 is "else" result3 = cases(List) empty: | empty => "empty" | else => "else" end result3 is "empty" end } If a field of the variant is a tuple, it can also be bound using a tuple binding. For example, a cases expression on a list with tuples looks like: @examples{ check: result4 = cases(List) [list: {"a"; 1}, {"b"; 2}, {"c"; 3}]: | empty => "empty" | link({x;y}, r) => x | else => "else" end result4 is "a" end } @subsection[#:tag "s:for-expr"]{For Expressions} For expressions consist of the @tt{for} keyword, followed by a list of @tt{binding from expr} clauses in parentheses, followed by a block: @bnf['Pyret]{ FOR: "for" PARENNOSPACE: "(" RPAREN: ")" COLON: ":" END: "end" BLOCK: "block" for-expr: FOR expr PARENNOSPACE [for-bind-elt* for-bind] RPAREN return-ann [BLOCK] COLON block END COMMA: "," for-bind-elt: for-bind COMMA FROM: "from" for-bind: binding FROM binop-expr } The for expression is just syntactic sugar for a @seclink["s:lam-expr"]{@tt{lam-expr}} and a @seclink["s:app-expr"]{@tt{app-expr}}. An expression @pyret-block{ for fexpr(arg1 :: ann1 from expr1, ...) -> ann-return: block end } is equivalent to: @pyret-block{ fexpr(lam(arg1 :: ann1, ...) -> ann-return: block end, expr1, ...) } Using a @tt{for-expr} can be a more natural way to call, for example, list iteration functions because it puts the identifier of the function and the value it draws from closer to one another. Use of @tt{for-expr} is a matter of style; here is an example that compares @tt{fold} with and without @tt{for}: @pyret-block{ for fold(sum from 0, number from [list: 1,2,3,4]): sum + number end fold(lam(sum, number): sum + number end, 0, [list: 1,2,3,4]) } @subsection[#:tag "s:template-expr"]{Template (...) Expressions} A template expression is three dots in a row: @bnf['Pyret]{ DOTS: "..." template-expr: DOTS } It is useful for a placeholder for other expressions in code-in-progress. When it is evaluated, it raises a runtime exception that indicates the expression it is standing in for isn't yet implemented: @examples{ fun list-sum(l :: List<Number>) -> Number: cases(List<Number>) l: | empty => 0 | link(first, rest) => first + ... end end check: list-sum(empty) is 0 list-sum(link(1, empty)) raises "template-not-finished" end } This is handy for starting a function (especially one with many cases) with some tests written and others to be completed. @margin-note{These other positions for @tt{...} may be included in the future.} The @tt{...} expression can only appear where @emph{expressions} can appear. So it is not allowed in binding positions or annotation positions. These are not allowed: @examples{ fun f(...): # parse error "todo" end x :: ... = 5 # parse error } Because templates are by definition unfinished, the presence of a template expression in a block exempts that block from @seclink["s:blocky-blocks"]{explicit-blockiness checking}. @subsection[#:tag "s:table-exprs"]{Tables} Tables precise syntax is documented here. For helper functions and data structures, see @secref["s:tables"]. Table expressions consist of a list of column names followed by one or more rows of data: @bnf['Pyret]{ TABLE: "table:" ROW: "row:" COLONCOLON: "::" COMMA: "," END: "end" table-expr: TABLE table-headers table-rows END table-headers: [table-header COMMA]* table-header table-header: NAME [COLONCOLON ann] table-rows: table-row* table-row table-row: ROW [binop-expr COMMA]* binop-expr } @bnf['Pyret]{ TABLE-SELECT: "select" COMMA: "," END: "end" FROM: "from" table-select: TABLE-SELECT NAME (COMMA NAME)* FROM expr END } @bnf['Pyret]{ TABLE-FILTER: "sieve" COLON: ":" COMMA: "," END: "end" FROM: "from" USING: "using" table-sieve: TABLE-FILTER expr [USING binding (COMMA binding)*] COLON binop-expr END } @subsubsection[#:tag "s:tables:order"]{Sorting Table Rows} @bnf['Pyret]{ TABLE-ORDER: "order" ASCENDING: "ascending" DESCENDING: "descending" COLON: ":" COMMA: "," END: "end" table-order: TABLE-ORDER expr COLON column-order END column-order: NAME ASCENDING | NAME DESCENDING } @subsubsection[#:tag "s:tables:transform"]{Transforming Table Rows} @bnf['Pyret]{ TABLE-TRANSFORM: "transform" USING: "using" COLON: ":" COMMA: "," END: "end" table-transform: TABLE-TRANSFORM expr [USING binding (COMMA binding)*] COLON transform-fields END transform-fields: transform-field (COMMA transform-field)* [COMMA] transform-field: key COLON binop-expr } @subsubsection[#:tag "s:tables:extract"]{Extracting Table Columns} @bnf['Pyret]{ TABLE-EXTRACT: "extract" COLON: ":" COMMA: "," END: "end" FROM: "from" table-extract: TABLE-EXTRACT NAME FROM expr END } @subsubsection[#:tag "s:tables:extend"]{Adding Table Columns} @bnf['Pyret]{ TABLE-EXTEND: "extend" USING: "using" COLON: ":" COLONCOLON: "::" COMMA: "," END: "end" OF: "of" table-extend: TABLE-EXTEND expr [USING binding (COMMA binding)*] COLON [table-extend-field COMMA]* table-extend-field END table-extend-field: key [COLONCOLON ann] COLON binop-expr | key [COLONCOLON ann] COLON expr OF NAME } @subsection[#:tag "s:table-loading"]{Table Loading Expressions} A table loading expression constructs a table using a data source and zero or more data sanitizers: @bnf['Pyret]{ LOAD-TABLE: "load-table" COLON: ":" END: "end" SOURCECOLON: "source:" SANITIZE: "sanitize" USING: "using" load-table-expr: LOAD-TABLE COLON table-headers [load-table-specs] END load-table-specs: load-table-spec* load-table-spec load-table-spec: SOURCECOLON expr | SANITIZE NAME USING expr } @subsection[#:tag "s:reactor-expr"]{Reactor Expressions} @bnf['Pyret]{ REACTOR: "reactor" COLON: ":" INIT: "init" END: "end" reactor-expr: REACTOR COLON INIT ":" expr [ "," option-name ":" expr ]* END option-name: "on-tick" | "on-mouse" | "on-key" | "to-draw" | "stop-when" | "title" | "close-when-stop" | "seconds-per-tick" } Reactors are described in detail in @secref["s:reactors"]. @subsection[#:tag "s:reference-fields"]{Mutable fields} Pyret allows creating data definitions whose fields are mutable. Accordingly, it provides syntax for accessing and modifying those fields. @bnf['Pyret]{ BANG: "!" LBRACE: "{" RBRACE: "}" get-bang-expr: expr BANG NAME update-expr: expr BANG LBRACE fields RBRACE } By analogy with how @py-prod{dot-expr} accesses normal fields, @py-prod{get-bang-expr} accesses mutable fields --- but more emphatically so, because mutable fields, by their nature, might change. Dot-access to mutable fields also works, but does not return the field's value: it returns the reference itself, which is a Pyret value that's mostly inert and difficult to work with outside the context of its host object. @examples{ data MutX: | mut-x(ref x, y) end ex1 = mut-x(1, 2) check: ex1!x is 1 # this access the value inside the reference ex1.x is-not 1 # this does not end } To update a reference value, we use syntax similar to @py-prod{extend-expr}, likewise made more emphatic: @examples{ ex1!{x: 42} check: ex1!x is 42 end } @subsection[#:tag "s:construct-expr"]{Construction expressions} Individual Pyret data values are syntactically simple to construct: they look similar to function calls. But arbitrarily-sized data is not as obvious. For instance, we could write @examples{ link(1, link(2, link(3, link(4, empty)))) } to construct a 4-element list of numbers, but this gets tiresome quite quickly. Many languages provide built-in syntactic support for constructing lists, but in Pyret we want all data types to be treated equally. Accordingly, we can write the above example as @examples{ [list: 1, 2, 3, 4] } where @emph{@pyret{list} is not a syntactic keyword} in the language. Instead, this is one example of a @emph{construction expression}, whose syntax is simply @bnf['Pyret]{ LBRACK: "[" RBRACK: "]" COLON: ":" COMMA: "," construct-expr: LBRACK binop-expr COLON construct-args RBRACK construct-args: [binop-expr (COMMA binop-expr)*] } Pyret defines several of these constructors for you: lists, sets, arrays, and string-dictionaries all have the same syntax. The expression before the initial colon is a Pyret object that has a particular set of methods available. Users can define their own constructors as well. @pyret-block{ type Constructor<A> = { make0 :: ( -> A), make1 :: (Any -> A), make2 :: (Any, Any -> A), make3 :: (Any, Any, Any -> A), make4 :: (Any, Any, Any, Any -> A), make5 :: (Any, Any, Any, Any, Any -> A) make :: (RawArray<Any> -> A), } } When Pyret encounters a construction expression, it will call the appropriately-numbered method on the constructor objects, depending on the number of arguments it received. @examples{ weird :: Constructor<String> = { make0: lam(): "nothing at all" end, make1: lam(a): "just " + tostring(a) end, make2: lam(a, b): tostring(a) + " and " + tostring(b) end, make3: lam(a, b, c): "several things" end, make4: lam(a, b, c, d): "four things" end, make5: lam(a, b, c, d, e): "five things" end, make : lam(args): "too many things" end } check: [weird: ] is "nothing at all" [weird: true] is "just true" [weird: 5, 6.24] is "5 and 6.24" [weird: true, false, 5] is "several things" [weird: 1, 2, 3, 4] is "four things" [weird: 1, 1, 1, 1, 1] is "five things" [weird: "a", "b", "c", true, false, 5] is "too many things" end } @subsection[#:tag "s:binding-expressions"]{Expression forms of bindings} Every definition in Pyret is visible until the end of its scope, which is usually the nearest enclosing block. To limit that scope, you can wrap definitions in explicit @py-prod{user-block-expr}s, but this is sometimes awkward to read. Pyret allows for three additional forms that combine bindings with expression blocks in a manner that is sometimes more legible: @bnf['Pyret]{ LET: "let" LETREC: "letrec" TYPE-LET: "type-let" COMMA: "," BLOCK: "block" COLON: ":" END: "end" EQUALS: "=" NEWTYPE: "newtype" AS: "as" multi-let-expr: LET let-or-var (COMMA let-or-var)* [BLOCK] COLON block END let-or-var: let-decl | var-decl letrec-expr: LETREC let-decl (COMMA let-decl)* [BLOCK] COLON block END type-let-expr: TYPE-LET type-let-or-newtype (COMMA type-let-or-newtype)* [BLOCK] COLON END type-let-or-newtype: type-decl | newtype-decl } These define their bindings only for the scope of the following block. A @py-prod{multi-let-expr} defines a sequence of either let- or variable-bindings, each of which are in scope for subsequent ones. A @py-prod{letrec-expr} defines a set of mutually-recursive let-bindings that may refer to each other in a well-formed way (i.e., no definition may rely on other definitions before they've been fully evaluated). These are akin to the @py-prod{let-decl} and @py-prod{var-decl} forms seen earlier, but with more explicitly-visible scoping rules. Finally, @py-prod{type-let-expr} defines local type aliases or new types, akin to @py-prod{type-stmt}. @;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @section[#:tag "s:annotations"]{Annotations} @bnf['Pyret]{ ann: name-ann | dot-ann | app-ann | arrow-ann | pred-ann | tuple-ann | record-ann } Annotations in Pyret express intended types values will have at runtime. They appear next to identifiers anywhere a @tt{binding} is specified in the grammar, and if an annotation is present adjacent to an identifier, the program is compiled to raise an error if the value bound to that identifier would behave in a way that violates the annotation. The annotation provides a @emph{guarantee} that either the value will behave in a particular way, or the program will raise an exception. In addition, annotations can be checked by Pyret's @seclink["type-check"]{type checker} to ensure that all values have the expected types and are used correctly. @subsection[#:tag "s:name-ann"]{Name Annotations} @bnf['Pyret]{ DOT: "." name-ann: NAME dot-ann: NAME DOT NAME } Some annotations are simply names. For example, a @seclink["s:data-decl"]{@tt{data declaration}} binds the name of the declaration as a value suitable for use as a name annotation. There are built-in name annotations, too: @justcode{ Any Number String Boolean } Each of these names represents a particular type of runtime value, and using them in annotation position will check each time the identifier is bound that the value is of the right type. @pyret-block{ x :: Number = "not-a-number" # Error: expected Number and got "not-a-number" } @tt{Any} is an annotation that allows any value to be used. It's semantically equivalent to not putting an annotation on an identifier, but it allows a program to clearly signal that no restrictions are intended for the identifier it annotates. Dot-annotations allow for importing types from modules: @pyret-block{ import equality as EQ eq-reqult :: EQ.EqualityResult = equal-always3(5, 6) } @subsection[#:tag "s:app-ann"]{Parametric Annotations} @bnf['Pyret]{ LANGLE: "<" RANGLE: ">" COMMA: "," app-ann: name-ann LANGLE comma-anns RANGLE | dot-ann LANGLE comma-anns RANGLE comma-anns: ann (COMMA ann)* } Many data definitions are parametric, meaning they can contain any uniform type of data, such as lists of numbers. Accordingly, while the following annotation isn't quite wrong, it is incomplete: @pyret-block[#:style "ok-ex"]{ list-of-nums :: List = [list: 1, 2, 3] } To properly express the constraint on the contents, we need to specialize the list annotation: @pyret-block[#:style "good-ex"]{ list-of-nums :: List<Number> = [list: 1, 2, 3] } Note that this annotation will @emph{not dynamically check} that every item in the list is in fact a @tt{Number} --- that would be infeasibly expensive. However, the @seclink["type-check"]{static type checker} will make use of this information more fully. @subsection[#:tag "s:arrow-ann"]{Arrow Annotations} An arrow annotation is used to describe the behavior of functions. It consists of a list of comma-separated argument types followed by an ASCII arrow and return type. Optionally, the annotation can specify argument names as well: @bnf['Pyret]{ LPAREN: "(" RPAREN: ")" THINARROW: "->" COMMA: "," COLONCOLON: "::" arrow-ann: LPAREN (ann COMMA)* ann THINARROW ann RPAREN | LPAREN LPAREN (NAME COLONCOLON ann COMMA)* NAME COLONCOLON ann RPAREN THINARROW ann RPAREN } When an arrow annotation appears in a binding, that binding position simply checks that the value is a function. To enforce a more detailed check, use @seclink["s:contracts"]. @subsection[#:tag "s:pred-ann"]{Predicate Annotations} A predicate annotation is used to @emph{refine} the annotations describing the a value. @bnf['Pyret]{ PERCENT: "%" LPAREN: "(" RPAREN: ")" pred-ann: ann PERCENT LPAREN NAME RPAREN } For example, a function might only work on non-empty lists. We might write this as @pyret-block[#:style "good-ex"]{ fun do-something-with<a>(non-empty-list :: List<a>%(is-link)) -> a: ... end } If we want to write customized predicates, we can easily do so. Those predicates must be defined @emph{before} being used in an annotation position, and must be refered to by name. @subsection[#:tag "s:tuple-ann"]{Tuple Annotations} Annotating a tuple is syntactically very similar to writing a tuple value: @bnf['Pyret]{ LBRACE: "{" RBRACE: "}" SEMI: ";" tuple-ann: LBRACE ann (SEMI ann)* [SEMI] RBRACE } Each component is itself an annotation. For example we could write @examples{ num-bool :: {Number; Boolean} = {3; true} num-bool--string-list :: {{Number; Boolean}; {String; List<Any>}} = {{3; true}; {"hi"; empty}} } @subsection[#:tag "s:record-ann"]{Record Annotations} Annotating a record is syntactically very similar to writing a record value, but where the single-colon separators between field names and their values have been replaced with the double-colon of all annotations: @bnf['Pyret]{ LBRACE: "{" RBRACE: "}" COMMA: "," COLONCOLON: "::" record-ann: LBRACE ann-field (COMMA ann-field)* RBRACE ann-field: NAME COLONCOLON ann } As with object literals, the order of fields does not matter. For example, @examples{ my-obj :: {n :: Number, s :: String, b :: Boolean} = {s: "Hello", b: true, n: 42} }
false
18168f629920ac82b517b7e47eebe1e49e991093
0ac2d343bad7e25df1a2f2be951854d86b3ad173
/pycket/test/testing.rktl
b9d0d5ee79717453bda71edb2cf36d37bd2a2872
[ "MIT" ]
permissive
pycket/pycket
8c28888af4967b0f85c54f83f4ccd536fc8ac907
05ebd9885efa3a0ae54e77c1a1f07ea441b445c6
refs/heads/master
2021-12-01T16:26:09.149864
2021-08-08T17:01:12
2021-08-08T17:01:12
14,119,907
158
14
MIT
2021-08-08T17:01:12
2013-11-04T18:39:34
Python
UTF-8
Racket
false
false
12,432
rktl
testing.rktl
#lang racket ;;; `test.scm' Test correctness of Racket implementations. ;;; Copyright (C) 1991, 1992, 1993, 1994 Aubrey Jaffer. ;;; Modified for MzScheme by Matthew ;;; MODIFIED for MzScheme - Matthew 8/95 ;;; Added a few more tests, like append!, reverse!, etc. ;;; Added testing for inexact numbers ;;; Added a lot of error testing ;;; modified for rational and complex numbers - Matthew 12/95 ;;; modified to test exceptions and more of MzScheme - Matthew 4/96 ;;; split into multiple files - Matthew 4/96 ;;; extended, extended, extended ;;; This includes examples from ;;; William Clinger and Jonathan Rees, editors. ;;; Revised^4 Report on the Algorithmic Language Scheme ;;; and the IEEE specification. (provide (all-defined-out)) ; The format of the next line is important: file.rktl relies on it (define cur-section '())(define errs '()) #| The test form has these two shapes: (test <expected> <procdure> <argument1> <argument2> ...) (test <expected> <symbolic-name> <expression>) In the first case, it applies the result of <procedure> to the results of <argument1> etc and compares that (with equal?) to the result of the <expected> In the second case, it evaluates the <expression> and compares the results of that (with equal?) to the value of the <expected>. In this case, <symbolic-name> must evaluate to something that isn't a procedure. That name is used in the transcript. |# #|(define teval eval)|# (define-syntax defvar (syntax-rules () [(_ name val) (namespace-variable-value 'name #f (lambda () (namespace-set-variable-value! 'name val)))])) (define building-flat-tests? #f) (define in-drscheme? #f) ;; used when quiet testing (through "quiet.rktl") to really show something (define real-output-port #f) (define real-error-port #f) (define Section-prefix (namespace-variable-value 'Section-prefix #f (lambda () ""))) (define (Section . args) (let ([p (or real-output-port (current-output-port))]) (fprintf p "~aSection~s\n" Section-prefix args) (flush-output p)) (set! cur-section args) #t) (define (record-error e) (set! errs (cons (list cur-section e) errs))) (print-struct #t) (define number-of-tests 0) (define number-of-error-tests 0) (define number-of-exn-tests 0) (define (load-in-sandbox file #:testing [testing "testing.rktl"]) (define-syntax-rule (S id) (dynamic-require 'racket/sandbox 'id)) (let ([e ((S call-with-trusted-sandbox-configuration) (lambda () (parameterize ([(S sandbox-input) current-input-port] [(S sandbox-output) current-output-port] [(S sandbox-error-output) current-error-port] [(S sandbox-memory-limit) 100]) ; 100mb per box ((S make-evaluator) '(begin) #:requires (list 'racket)))))]) (e `(load-relative ,testing)) (e `(define real-output-port (quote ,real-output-port))) (e `(define real-error-port (quote ,real-error-port))) (e `(define Section-prefix ,Section-prefix)) (e `(load-relative (quote ,file))) (let ([l (e '(list number-of-tests number-of-error-tests number-of-exn-tests errs))]) (set! number-of-tests (+ number-of-tests (list-ref l 0))) (set! number-of-error-tests (+ number-of-error-tests (list-ref l 1))) (set! number-of-exn-tests (+ number-of-exn-tests (list-ref l 2))) (set! errs (append (list-ref l 3) errs))))) (define test (let () (define (test* expect fun args kws kvs) (define form `(,fun ,@args ,@(apply append (if kws (map list kws kvs) '())))) (set! number-of-tests (add1 number-of-tests)) (printf "~s ==> " form) (flush-output) (let ([res (if (procedure? fun) (if kws (keyword-apply fun kws kvs args) (apply fun args)) (car args))]) (printf "~s\n" res) (let ([ok? (equal? expect res)]) (unless ok? (record-error (list res expect form)) (printf " BUT EXPECTED ~s\n" expect)) ok?))) (define (test/kw kws kvs expect fun . args) (test* expect fun args kws kvs)) (define (test expect fun . args) (test* expect fun args #f #f)) (make-keyword-procedure test/kw test))) (define (nonneg-exact? x) (and (exact? x) (integer? x) (x . >= . 0))) (define (pos-exact? x) (and (exact? x) (integer? x) (positive? x))) (define exn-table (list (cons exn? (cons exn-message string?)) (cons exn? (cons exn-continuation-marks continuation-mark-set?)) (cons exn:fail:contract:variable? (cons exn:fail:contract:variable-id symbol?)) (cons exn:fail:syntax? (cons exn:fail:syntax-exprs (lambda (x) (and (list? x) (andmap syntax? x))))) (cons exn:fail:read? (cons exn:fail:read-srclocs (lambda (x) (and (list? x) (andmap srcloc? x))))))) (define exn:application:mismatch? exn:fail:contract?) (define exn:application:type? exn:fail:contract?) (define exn:application:arity? exn:fail:contract:arity?) (define mz-test-syntax-errors-allowed? #t) (define thunk-error-test (case-lambda [(th expr) (thunk-error-test th expr exn:application:type?)] [(th expr exn-type?) (set! expr (syntax->datum expr)) (set! number-of-error-tests (add1 number-of-error-tests)) (printf "~s =e=> " expr) (flush-output) (call/ec (lambda (escape) (let* ([old-esc-handler (error-escape-handler)] [orig-err-port (current-error-port)] [test-exn-handler (lambda (e) (when (and exn-type? (not (exn-type? e))) (printf " WRONG EXN TYPE: ~s " e) (record-error (list e 'exn-type expr))) (when (and (exn:fail:syntax? e) (not mz-test-syntax-errors-allowed?)) (printf " LATE SYNTAX EXN: ~s " e) (record-error (list e 'exn-late expr))) (for-each (lambda (row) (let ([pred? (car row)]) (when (pred? e) (set! number-of-exn-tests (add1 number-of-exn-tests)) (let ([sel (cadr row)] [pred? (cddr row)]) (unless (pred? (sel e)) (printf " WRONG EXN ELEM ~s: ~s " sel e) (record-error (list e (cons 'exn-elem sel) expr))))))) exn-table) (printf "~s~n" (if (exn? e) (exn-message e) e)) #; ;g; ((error-display-handler) (if (exn? e) (exn-message e) (format "misc. exn: ~s" e)) e) (escape #t))]) (dynamic-wind (lambda () (current-error-port (current-output-port))) (lambda () (call-with-continuation-prompt (lambda () (call-with-exception-handler test-exn-handler (lambda () (let ([v (call-with-values th list)]) (write (cons 'values v)) (display " BUT EXPECTED ERROR") (record-error (list v 'Error expr)) (newline) #f)))))) (lambda () (current-error-port orig-err-port) (error-escape-handler old-esc-handler))))))])) (define error-test (case-lambda [(expr) (error-test expr exn:application:type?)] [(expr exn-type?) (thunk-error-test (lambda () (eval expr)) expr exn-type?)])) (require (only-in racket [lambda err:mz:lambda])) ; so err/rt-test works with beginner.rktl (define-syntax err/rt-test (lambda (stx) (syntax-case stx () [(_ e exn?) (syntax (thunk-error-test (err:mz:lambda () e) (quote-syntax e) exn?))] [(_ e) (syntax (err/rt-test e exn:application:type?))]))) (define no-extra-if-tests? #f) (define (syntax-test expr [rx #f]) (error-test expr exn:fail:syntax?) (unless no-extra-if-tests? (error-test (datum->syntax expr `(if #f ,expr (void)) expr) (lambda (x) (and (exn:fail:syntax? x) (or (not rx) (regexp-match? rx (exn-message x)))))))) (define arity-test (case-lambda [(f min max except) (letrec ([aok? (lambda (a) (cond [(integer? a) (= a min max)] [(arity-at-least? a) (and (negative? max) (= (arity-at-least-value a) min))] [(and (list? a) (andmap integer? a)) (and (= min (car a)) (= max (let loop ([l a]) (if (null? (cdr l)) (car l) (loop (cdr l))))))] [(list? a) ;; Just check that all are consistent for now. ;; This should be improved. (andmap (lambda (a) (if (number? a) (<= min a (if (negative? max) a max)) (>= (arity-at-least-value a) min))) a)] [else #f]))] [make-ok? (lambda (v) (lambda (e) (exn:application:arity? e)))] [do-test (lambda (f args check?) (set! number-of-error-tests (add1 number-of-error-tests)) (printf "(apply ~s '~s) =e=> " f args) (let/ec done (let ([v (with-handlers ([void (lambda (exn) (if (check? exn) (printf " ~a\n" (if (exn? exn) (exn-message exn) (format "uncaught ~x" exn))) (let ([ok-type? (exn:application:arity? exn)]) (printf " WRONG EXN ~a: ~s\n" (if ok-type? "FIELD" "TYPE") exn) (record-error (list exn (if ok-type? 'exn-field 'exn-type) (cons f args))))) (done (void)))]) (apply f args))]) (printf "~s\n BUT EXPECTED ERROR\n" v) (record-error (list v 'Error (cons f args))))))]) (test #t aok? (procedure-arity f)) (let loop ([n 0][l '()]) (unless (>= n min) (unless (memq n except) (do-test f l (make-ok? n))) (loop (add1 n) (cons 1 l)))) (let loop ([n min]) (unless (memq n except) (test #t procedure-arity-includes? f n)) (unless (>= n max) (loop (add1 n)))) (if (>= max 0) (do-test f (let loop ([n 0][l '(1)]) (if (= n max) l (loop (add1 n) (cons 1 l)))) (make-ok? (add1 max))) (test #t procedure-arity-includes? f (arithmetic-shift 1 100))))] [(f min max) (arity-test f min max null)])) (define (test-values l thunk) (test l call-with-values thunk list)) (define (report-errs . final?) (let* ([final? (and (pair? final?) (car final?))] [ok? (null? errs)]) (parameterize ([current-output-port (cond [(not ok?) (or real-error-port (current-error-port))] [final? (or real-output-port (current-output-port))] [else (current-output-port)])]) (printf "\n~aPerformed ~a expression tests (~a ~a, ~a ~a)\n" Section-prefix (+ number-of-tests number-of-error-tests) number-of-tests "value expressions" number-of-error-tests "exn expressions") (printf "~aand ~a exception field tests.\n\n" Section-prefix number-of-exn-tests) (if ok? (printf "~aPassed all tests.\n" Section-prefix) (begin (printf "~aErrors were:\n~a(Section (got expected (call)))\n" Section-prefix Section-prefix) (for-each (lambda (l) (printf "~a~s\n" Section-prefix l)) (reverse errs)) (when final? (exit 1)))) (flush-output) (when final? (exit (if ok? 0 1))) (printf "(Other messages report successful tests of~a.)\n" " error-handling behavior") (flush-output)))) (define type? exn:application:type?) (define arity? exn:application:arity?) (define syntaxe? exn:fail:syntax?) (define non-z void) (define (find-depth go) ; Find depth that triggers a stack overflow (assuming no other ; threads are running and overflowing) (let ([v0 (make-vector 6)] [v1 (make-vector 6)]) (let find-loop ([d 100]) (vector-set-performance-stats! v0) (go d) (vector-set-performance-stats! v1) (if (> (vector-ref v1 5) (vector-ref v0 5)) d (find-loop (* 2 d))))))
true
cf9d538b4ccbb0b7abde82f3ec608a9e29c12e72
4c20260f2e1d213ed8c299b7c4dcb527440790f3
/notes/redex/sysf.rkt
9063fb2d8fc88401aaad17f8fe74677576047eba
[]
no_license
tov/type-systems-seminar
b64c25955a205699f5968522fee7cc66b8d2ea0e
f9c45af743606bce4613dcf6fd4f63b2526d6aef
refs/heads/master
2022-03-06T02:54:08.978632
2019-11-05T01:23:18
2019-11-05T01:23:18
106,861,241
9
7
null
2018-03-14T04:29:44
2017-10-13T18:45:13
Racket
UTF-8
Racket
false
false
2,334
rkt
sysf.rkt
#lang racket/base (provide λ-2 ->val member kinds kinds/env types) (require redex/reduction-semantics "util.rkt") (define-language λ-2 (t ::= a (all a t) (-> t t)) (e ::= x (λ x t e) (ap e e) (Λ a e) (Ap e t)) (Δ ::= • (extend Δ a)) (Γ ::= • (extend Γ x t)) (v ::= (λ x t e) (Λ a e)) (E ::= hole (ap E e) (ap v E) (Ap E t)) (γ ::= • (extend γ x v)) (x y ::= variable-not-otherwise-mentioned) (a b ::= variable-not-otherwise-mentioned) #:binding-forms (λ x t e #:refers-to x) (Λ a e #:refers-to a) (all a t #:refers-to a)) (define ->val (reduction-relation λ-2 #:domain e (--> (in-hole E (ap (λ x t e) v)) (in-hole E (substitute e x v)) β-val) (--> (in-hole E (Ap (Λ a e) t)) (in-hole E (substitute e a t)) inst))) (define-metafunction λ-2 lookup : Γ x -> t [(lookup (extend Γ x t) x) t] [(lookup (extend Γ y t) x) (lookup Γ x) (side-condition (not (equal? (term x) (term y))))]) (define-judgment-form λ-2 #:mode (member I I) #:contract (member a Δ) [---- found (member a (extend Δ a))] [(member a Δ) ---- next (member a (extend Δ b))]) (define-judgment-form λ-2 #:mode (kinds I I) #:contract (kinds Δ t) [(member a Δ) ---- var (kinds Δ a)] [(kinds Δ t_1) (kinds Δ t_2) ---- arr (kinds Δ (-> t_1 t_2))] [(kinds (extend Δ a) t) ---- all (kinds Δ (all a t))]) (define-judgment-form λ-2 #:mode (kinds/env I I) #:contract (kinds/env Δ Γ) [---- nil (kinds/env Δ •)] [(kinds Δ t) (kinds/env Δ Γ) ---- cons (kinds/env Δ (extend Γ x t))]) (define-judgment-form λ-2 #:mode (types I I I O) #:contract (types Δ Γ e t) [(kinds/env Δ Γ) ---- var (types Δ Γ x (lookup Γ x))] [(kinds Δ t_1) (types Δ (extend Γ x t_1) e t_2) ---- abs (types Δ Γ (λ x t_1 e) (-> t_1 t_2))] [(types Δ Γ e_1 (-> t_2 t)) (types Δ Γ e_2 t_2) ---- app (types Δ Γ (ap e_1 e_2) t)] [(types (extend Δ a) Γ e t) ---- t-abs (types Δ Γ (Λ a e) (all a t))] [(kinds Δ t) (types Δ Γ e (all a t_1)) ---- t-app (types Δ Γ (Ap e t) (substitute t_1 a t))])
false
3e51e82f58c522c18ef57bb64f13736dd89d92a6
31173f24404ec7667aad9044fa868638130591f8
/monadsdemo.rkt
4ffefa1db8ed68d7ea03701aa9edd5686e6f185e
[]
no_license
wang542/B521-Principles-of-Programming-Language
3978d7f74ae1995cbd1873e4533d3abd36f6094f
ad487a89f574753ef1830e6d27b8d0e8e216ba2a
refs/heads/master
2020-04-18T06:06:22.827547
2019-02-25T19:53:27
2019-02-25T19:53:27
167,306,278
1
0
null
null
null
null
UTF-8
Racket
false
false
2,592
rkt
monadsdemo.rkt
#lang racket (require "monads.rkt") (define find (λ (x ls) (match ls ['() (Nothing)] [`((,aa . ,da) . ,d) (if (eqv? x aa) (Just da) (find x d))]))) #| symb (list (symb . number)) -> Maybe number |# (define find-and-/2 (λ (x ls) (bind-maybe (find x ls) (λ (n) (Just (/ n 2)))) #; (match (find x ls) [(Nothing) (Nothing)] [(Just n) (Just (/ n 2))]))) #; (find-and-/2 'x `((x . 10) (y . 42) (z . 5))) #; (define valof (λ (e env) (match e [`,y #:when (symbol? y) (env y)] [`,n #:when (number? n) n] [`(λ (,x) ,b) (λ (a) (valof b (λ (y) (if (eqv? y x) a (env y)))))] [`(,rator ,rand) ((valof rator env) (valof rand env))]))) #| Exp Env -> Val Exp -> State Val |# (define lookup (λ (env y) (match env ['() (error 'opps)] [`((,a . ,d) . ,env^) (if (eqv? y a) d (lookup env^ y))]))) (define valof (λ (e) (go-on ([env (get)]) (begin (displayln env) (displayln e) (displayln "") (match e [`,y #:when (symbol? y) (go-on ([env (get)]) (inj-state (lookup env y))) #; (bind-state (get) (λ (env) (inj-state (lookup env y))))] [`,n #:when (number? n) (inj-state n)] [`(+ ,n ,m) (go-on ([n^ (valof n)] [m^ (valof m)]) (inj-state (+ n^ m^))) #; (bind-state (valof n) (λ (n^) (bind-state (valof m) (λ (m^) (inj-state (+ n^ m^))))))] [`(λ (,x) ,b) (inj-state (λ (a) (go-on ([env (get)] [_ (put `((,x . ,a) . ,env))]) (valof b)) #; (bind-state (get) (λ (env) (bind-state (put `((,x . ,a) . ,env)) (λ (_) (valof b)))))))] [`(,rator ,rand) (go-on ([clos (valof rator)] [a (valof rand)]) (clos a)) #; (bind-state (valof rator) (λ (clos) (bind-state (valof rand) (λ (a) (clos a)))))]))))) ((run-state (valof `(((λ (x) (λ (y) (+ x y))) 5) 10))) '())
false
c5dd65611186ce8d654b0f78ad9273db5e5465b8
0cbf2786da37f8e7965f6dafdf2bc762c6806a52
/3.30 q.rkt
4c6d164735af23897a154099cf7a1fe77a3072d0
[]
no_license
arbores/SICP
3e0f18662610ea0dca6d85ac69cef569033c5a39
69ea1ccadf3a33e3d7e2669ef627b9653503192d
refs/heads/master
2021-01-19T18:03:43.792241
2014-09-18T02:50:50
2014-09-18T02:50:50
null
0
0
null
null
null
null
UTF-8
Racket
false
false
244
rkt
3.30 q.rkt
(define (ripple-carry-adder1 a-list b-list c-in sum-list c) (foldl (lambda (a b sum c-in) (let ((c-out (make-wire))) (full-adder a b c-in sum c-out) c-out)) c-in a-list b-list sum-list))
false
3a24b0b8d4832582173798c9e149ce6a9c2387fb
9cc74e5d99deb5d07bc433e70b5b6005464459bc
/src/time-point-gen-struct-def.rkt
1191ef3de1cb832ff0b1afa6195b06de2552c3c3
[ "BSD-3-Clause" ]
permissive
darrenldl/progschl
a8757f48f7cc77d1c22908dc82d560605809bae7
2fd711b5e0c311a29cf9ff46a580e05f0ef38708
refs/heads/master
2020-05-22T04:53:14.812356
2017-06-09T02:05:31
2017-06-09T02:05:31
84,671,267
0
0
null
null
null
null
UTF-8
Racket
false
false
2,091
rkt
time-point-gen-struct-def.rkt
#lang racket (require "hashable-struct.rkt" "lambdas-def.rkt" "time-point-struct-def.rkt") (provide time-point-gen time-point-gen? time-point-gen-hash? time-point-gen->hash hash->time-point-gen ;time-point-gen-second time-point-gen-minute ;time-point-gen-hour time-point-gen-day time-point-gen-week time-point-gen-month time-point-gen-year) ;(define time-point-val? ; (or/c #f exact-nonnegative-integer? next-time-λ?)) (define init-time-point (time-point-w-defaults)) (define-hashable-struct-for single-gen ([value 0 exact-nonnegative-integer?] [increment 0 exact-nonnegative-integer?] [lower-bound 0 exact-nonnegative-integer?] [upper-bound 0 exact-nonnegative-integer?]) #:transparent) (define-hashable-struct-for time-point-gen ([minute (single-gen-w-defaults) single-gen?] [day (single-gen-w-defaults) single-gen?] [week (single-gen-w-defaults) single-gen?] [month (single-gen-w-defaults) single-gen?] [year (single-gen-w-defaults) single-gen?]) #:transparent) ;(define-hashable-struct-for time-point-gen (;[second #f time-point-val?] ; [minute #f time-point-val?] ; ;[hour #f time-point-val?] ; [day #f time-point-val?] ; [week #f time-point-val?] ; [month #f time-point-val?] ; [year #f time-point-val?] ; [first #f (or/c #f time-point?)] ; [last #f (or/c #f time-point?)]) #:transparent)
false
3959f5321f9f1bb6cdf13d6d0bb17f5cce203cfa
ca4db8fda12d92e355b002fa83e45d57f64817e6
/random-judgments/results/1-hr-trial/rvm-3-search.rktd
a51f386a339f7bb42eaa2d390a6b005c40bb6dab
[]
no_license
cmentzer/Redex
4655ad1efb52a388d819b7501220c7525dc7cc22
36ef8bc61464708d8ee984a9b06b14e2c8b1c5e1
refs/heads/master
2020-12-31T04:56:06.952818
2016-05-19T01:48:04
2016-05-19T01:48:04
59,129,117
0
0
null
null
null
null
UTF-8
Racket
false
false
28,166
rktd
rvm-3-search.rktd
(start 2014-10-09T13:43:26 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:43:26 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:43:26 (#:amount 22853784 #:time 259)) (heartbeat 2014-10-09T13:43:36 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:43:46 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:43:48 (#:amount 64805240 #:time 360)) (heartbeat 2014-10-09T13:43:56 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:44:06 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:44:16 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:44:25 (#:amount 166184232 #:time 366)) (heartbeat 2014-10-09T13:44:26 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:44:36 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:44:46 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:44:52 (#:amount 86694448 #:time 391)) (heartbeat 2014-10-09T13:44:56 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:45:06 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:45:16 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:45:26 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:45:30 (#:amount 192981416 #:time 474)) (heartbeat 2014-10-09T13:45:36 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:45:46 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:45:56 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:46:00 (#:amount 88426824 #:time 490)) (heartbeat 2014-10-09T13:46:06 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:46:16 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:46:26 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:46:36 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:46:42 (#:amount 203202168 #:time 463)) (heartbeat 2014-10-09T13:46:46 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:46:56 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:47:06 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:47:13 (#:amount 91303816 #:time 525)) (heartbeat 2014-10-09T13:47:16 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:47:26 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:47:36 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:47:46 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:47:56 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:47:57 (#:amount 211092336 #:time 481)) (heartbeat 2014-10-09T13:48:06 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:48:16 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:48:26 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:48:35 (#:amount 99317704 #:time 546)) (heartbeat 2014-10-09T13:48:36 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:48:46 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:48:56 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:49:06 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:49:16 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:49:27 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:49:27 (#:amount 220426480 #:time 573)) (heartbeat 2014-10-09T13:49:37 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:49:47 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:49:57 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:50:07 (#:amount 96345296 #:time 548)) (heartbeat 2014-10-09T13:50:07 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:50:17 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:50:27 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:50:37 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:50:47 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:50:57 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:50:59 (#:amount 236658912 #:time 569)) (heartbeat 2014-10-09T13:51:07 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:51:17 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:51:27 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:51:36 (#:amount 98701984 #:time 510)) (heartbeat 2014-10-09T13:51:37 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:51:47 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:51:57 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:52:07 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:52:17 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:52:27 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:52:37 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:52:40 (#:amount 236318536 #:time 611)) (heartbeat 2014-10-09T13:52:47 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:52:57 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:53:07 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:53:17 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:53:27 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:53:27 (#:amount 94358416 #:time 602)) (heartbeat 2014-10-09T13:53:37 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:53:47 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:53:57 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:54:07 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:54:17 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:54:27 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:54:36 (#:amount 253224920 #:time 616)) (heartbeat 2014-10-09T13:54:37 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:54:47 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:54:58 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:55:08 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:55:18 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:55:18 (#:amount 96862232 #:time 541)) (heartbeat 2014-10-09T13:55:28 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:55:38 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:55:48 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:55:58 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:56:08 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:56:18 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:56:23 (#:amount 250733752 #:time 633)) (heartbeat 2014-10-09T13:56:28 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:56:38 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:56:48 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:56:58 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:57:08 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:57:08 (#:amount 96884936 #:time 584)) (heartbeat 2014-10-09T13:57:18 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:57:28 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:57:38 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:57:48 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:57:58 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:58:08 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:58:12 (#:amount 256856600 #:time 560)) (heartbeat 2014-10-09T13:58:18 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:58:28 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:58:38 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:58:48 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:58:58 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T13:58:59 (#:amount 102159536 #:time 625)) (heartbeat 2014-10-09T13:59:08 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:59:18 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:59:28 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:59:38 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:59:48 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T13:59:58 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:00:04 (#:amount 247953136 #:time 648)) (heartbeat 2014-10-09T14:00:08 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:00:18 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:00:28 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:00:38 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:00:48 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:00:51 (#:amount 97320360 #:time 650)) (heartbeat 2014-10-09T14:00:58 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:01:08 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:01:18 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:01:28 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:01:38 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:01:48 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:01:57 (#:amount 256818168 #:time 589)) (heartbeat 2014-10-09T14:01:58 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:02:08 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:02:18 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:02:28 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:02:38 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:02:49 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:02:49 (#:amount 106610488 #:time 661)) (heartbeat 2014-10-09T14:02:59 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:03:09 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:03:19 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:03:29 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:03:39 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:03:49 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:03:59 (#:model "rvm-3" #:type search)) (rvm-expected-exception 2014-10-09T14:04:00 (#:exn-message "stack-ref: no clauses matched for (stack-ref 0 (uninit ((ε))))" #:expression (application (proc-const (val val) (branch (proc-const () void) (proc-const () 0) (let-one (quote E) (quote j)))) (branch (install-value 0 (quote AT) 0) (loc-clr 0) (let-one (quote y) #t))))) (counterexample 2014-10-09T14:04:00 (#:model "rvm-3" #:type search #:counterexample (application (proc-const (val val) (branch (proc-const () void) (proc-const () 0) (let-one (quote E) (quote j)))) (branch (install-value 0 (quote AT) 0) (loc-clr 0) (let-one (quote y) #t))) #:iterations 7197 #:time 1235267)) (new-average 2014-10-09T14:04:00 (#:model "rvm-3" #:type search #:average 1235267.0 #:stderr +nan.0)) (gc-major 2014-10-09T14:04:03 (#:amount 257101080 #:time 682)) (heartbeat 2014-10-09T14:04:09 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:04:19 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:04:29 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:04:39 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:04:49 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:04:57 (#:amount 111447936 #:time 650)) (heartbeat 2014-10-09T14:04:59 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:05:09 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:05:19 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:05:29 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:05:39 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:05:49 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:05:59 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:06:09 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:06:13 (#:amount 254218248 #:time 680)) (heartbeat 2014-10-09T14:06:19 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:06:29 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:06:39 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:06:49 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:06:59 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:07:09 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:07:10 (#:amount 105863880 #:time 665)) (heartbeat 2014-10-09T14:07:19 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:07:29 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:07:39 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:07:49 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:07:59 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:08:09 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:08:19 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:08:22 (#:amount 266271376 #:time 692)) (heartbeat 2014-10-09T14:08:29 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:08:39 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:08:49 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:08:59 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:09:09 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:09:11 (#:amount 110958136 #:time 673)) (heartbeat 2014-10-09T14:09:19 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:09:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:09:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:09:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:10:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:10:10 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:10:17 (#:amount 255736184 #:time 683)) (heartbeat 2014-10-09T14:10:20 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:10:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:10:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:10:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:11:00 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:11:05 (#:amount 106933384 #:time 676)) (heartbeat 2014-10-09T14:11:10 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:11:20 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:11:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:11:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:11:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:12:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:12:10 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:12:18 (#:amount 269777944 #:time 659)) (heartbeat 2014-10-09T14:12:20 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:12:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:12:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:12:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:13:00 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:13:09 (#:amount 106613376 #:time 686)) (heartbeat 2014-10-09T14:13:10 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:13:20 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:13:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:13:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:13:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:14:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:14:10 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:14:20 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:14:24 (#:amount 271929400 #:time 706)) (heartbeat 2014-10-09T14:14:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:14:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:14:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:15:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:15:10 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:15:17 (#:amount 103857392 #:time 720)) (heartbeat 2014-10-09T14:15:20 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:15:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:15:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:15:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:16:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:16:10 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:16:20 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:16:26 (#:amount 276648544 #:time 642)) (heartbeat 2014-10-09T14:16:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:16:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:16:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:17:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:17:10 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:17:17 (#:amount 109538896 #:time 708)) (heartbeat 2014-10-09T14:17:20 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:17:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:17:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:17:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:18:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:18:10 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:18:20 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:18:30 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:18:32 (#:amount 268480912 #:time 636)) (heartbeat 2014-10-09T14:18:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:18:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:19:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:19:10 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:19:16 (#:amount 102763568 #:time 707)) (heartbeat 2014-10-09T14:19:20 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:19:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:19:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:19:50 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:20:00 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:20:10 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:20:20 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:20:24 (#:amount 284153920 #:time 696)) (heartbeat 2014-10-09T14:20:30 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:20:40 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:20:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:21:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:21:11 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:21:13 (#:amount 107086072 #:time 637)) (heartbeat 2014-10-09T14:21:21 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:21:31 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:21:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:21:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:22:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:22:11 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:22:21 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:22:24 (#:amount 274844144 #:time 727)) (heartbeat 2014-10-09T14:22:31 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:22:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:22:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:23:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:23:11 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:23:18 (#:amount 113057520 #:time 632)) (heartbeat 2014-10-09T14:23:21 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:23:31 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:23:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:23:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:24:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:24:11 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:24:21 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:24:25 (#:amount 265078008 #:time 710)) (heartbeat 2014-10-09T14:24:31 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:24:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:24:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:25:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:25:11 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:25:17 (#:amount 110096688 #:time 703)) (heartbeat 2014-10-09T14:25:21 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:25:31 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:25:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:25:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:26:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:26:11 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:26:21 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:26:31 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:26:35 (#:amount 271316296 #:time 661)) (heartbeat 2014-10-09T14:26:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:26:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:27:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:27:11 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:27:21 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:27:22 (#:amount 109998408 #:time 698)) (heartbeat 2014-10-09T14:27:31 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:27:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:27:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:28:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:28:11 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:28:21 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:28:31 (#:amount 277298264 #:time 659)) (heartbeat 2014-10-09T14:28:31 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:28:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:28:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:29:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:29:11 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:29:20 (#:amount 109919872 #:time 725)) (heartbeat 2014-10-09T14:29:21 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:29:31 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:29:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:29:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:30:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:30:11 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:30:21 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:30:31 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:30:40 (#:amount 275603896 #:time 650)) (heartbeat 2014-10-09T14:30:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:30:51 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:31:01 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:31:11 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:31:21 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:31:31 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:31:37 (#:amount 112489824 #:time 725)) (heartbeat 2014-10-09T14:31:41 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:31:52 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:32:02 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:32:12 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:32:22 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:32:32 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:32:42 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:32:51 (#:amount 270005432 #:time 661)) (heartbeat 2014-10-09T14:32:52 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:33:02 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:33:12 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:33:22 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:33:32 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:33:42 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:33:44 (#:amount 110277528 #:time 711)) (heartbeat 2014-10-09T14:33:52 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:34:02 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:34:12 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:34:22 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:34:32 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:34:42 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:34:52 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:34:57 (#:amount 277924112 #:time 743)) (heartbeat 2014-10-09T14:35:02 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:35:12 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:35:22 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:35:32 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:35:42 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:35:43 (#:amount 108453240 #:time 635)) (heartbeat 2014-10-09T14:35:52 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:36:02 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:36:12 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:36:22 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:36:32 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:36:38 (#:amount 275300640 #:time 635)) (heartbeat 2014-10-09T14:36:42 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:36:52 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:37:02 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:37:12 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:37:22 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:37:24 (#:amount 108360720 #:time 882)) (heartbeat 2014-10-09T14:37:32 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:37:42 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:37:52 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:38:02 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:38:12 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:38:22 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:38:33 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:38:33 (#:amount 307870952 #:time 945)) (heartbeat 2014-10-09T14:38:43 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:38:53 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:39:03 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:39:13 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:39:20 (#:amount 115645096 #:time 870)) (heartbeat 2014-10-09T14:39:23 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:39:33 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:39:43 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:39:53 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:40:03 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:40:13 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:40:23 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:40:29 (#:amount 293537912 #:time 879)) (heartbeat 2014-10-09T14:40:33 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:40:43 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:40:53 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:41:03 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:41:13 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:41:21 (#:amount 116122752 #:time 843)) (heartbeat 2014-10-09T14:41:23 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:41:33 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:41:43 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:41:53 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:42:03 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:42:13 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:42:23 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:42:30 (#:amount 295675128 #:time 873)) (heartbeat 2014-10-09T14:42:33 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:42:43 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:42:53 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:43:03 (#:model "rvm-3" #:type search)) (heartbeat 2014-10-09T14:43:13 (#:model "rvm-3" #:type search)) (gc-major 2014-10-09T14:43:20 (#:amount 115636264 #:time 842)) (heartbeat 2014-10-09T14:43:23 (#:model "rvm-3" #:type search)) (finished 2014-10-09T14:43:26 (#:model "rvm-3" #:type search #:time-ms 3600126 #:attempts 20620 #:num-counterexamples 1 #:rate-terms/s 5.727577312571838 #:attempts/cexp 20620.0))
false
5ef2eb82c3ebd77d54aa027399a43de9cd557c8c
82c76c05fc8ca096f2744a7423d411561b25d9bd
/typed-racket-test/fail/pr13893.rkt
cc07f69a891982f4f043b257070dd7a6b00b7d78
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
racket/typed-racket
2cde60da289399d74e945b8f86fbda662520e1ef
f3e42b3aba6ef84b01fc25d0a9ef48cd9d16a554
refs/heads/master
2023-09-01T23:26:03.765739
2023-08-09T01:22:36
2023-08-09T01:22:36
27,412,259
571
131
NOASSERTION
2023-08-09T01:22:41
2014-12-02T03:00:29
Racket
UTF-8
Racket
false
false
479
rkt
pr13893.rkt
#; (exn-pred 3) #lang typed/racket ;; Make sure that case-> types with multiple branches that ;; includes a * domain produce a type error instead of ;; accidentally type-checking. ;; from the PR (: x (Listof Number)) (define x (apply + (list 1 2 "3"))) (: g (-> (Listof Number))) (define (g) (apply + (list 1 2 "3"))) ;; additional case (: f (case-> (Integer * -> Integer) (Real * -> Real))) (define (f . args) (+ 1 (list-ref args 2))) (apply f (list 1 2 "3"))
false
f99c798b75a5916d29650052489ef6a57bfccf8e
314185c8e11e855274cec4835e768d3739537c83
/RacketPortfolio/CS5510_HW7.rkt
250d8fcd3dd284aa70f28ab0267352df5c8b0992
[]
no_license
519984307/Portfolio
65e8dbc9877a3b91595d45d6f1b2b9192a91c9f8
d7e443dd49479659e3334146ca0ff2d73349b935
refs/heads/master
2023-03-19T21:28:29.299266
2020-02-11T03:20:56
2020-02-11T03:20:56
null
0
0
null
null
null
null
UTF-8
Racket
false
false
13,822
rkt
CS5510_HW7.rkt
#lang plai-typed (require plai-typed/s-exp-match) ;; Andrew Katsanevas ;; CS 5510 HW #7 ;; 10/21/2016 (define-type Value [numV (n : number)] [closV (args : (listof symbol)) (body : ExprC) (env : Env)] [contV (k : Cont)]) (define-type ExprC [numC (n : number)] [idC (s : symbol)] [plusC (l : ExprC) (r : ExprC)] [multC (l : ExprC) (r : ExprC)] [lamC (ns : (listof symbol)) (body : ExprC)] [appC (fun : ExprC) (args : (listof ExprC))] [let/ccC (n : symbol) (body : ExprC)] [negC (n : ExprC)] [avgC (first : ExprC) (second : ExprC) (third : ExprC)] [if0C (tst : ExprC) (thn : ExprC) (els : ExprC)]) (define-type Binding [bind (name : symbol) (val : Value)]) (define-type-alias Env (listof Binding)) (define mt-env empty) (define extend-env cons) (define extend-env* append) (define-type Cont [doneK] [addSecondK (r : ExprC) (e : Env) (k : Cont)] [doAddK (v : Value) (k : Cont)] [multSecondK (r : ExprC) (e : Env) (k : Cont)] [doMultK (v : Value) (k : Cont)] [appArgK (args : (listof ExprC)) (env : Env) (k : Cont) (vals : (listof Value)) (func : Value)] [doAppK (f : Value) (k : Cont) (vals : (listof Value))] [doNegK (v : Cont)] [doAvgK (v : Value) (k : Cont)] [avgSecondK (second : ExprC) (third : ExprC) (e : Env) (k : Cont)] [avgThirdK (v : Value) (third : ExprC) (e : Env) (k : Cont)] [if0K (thn : ExprC) (els : ExprC) (e : Env) (k : Cont)]) (module+ test (print-only-errors true)) ;; parse ---------------------------------------- (define (parse [s : s-expression]) : ExprC (cond [(s-exp-match? `NUMBER s) (numC (s-exp->number s))] [(s-exp-match? `SYMBOL s) (idC (s-exp->symbol s))] [(s-exp-match? '{+ ANY ANY} s) (plusC (parse (second (s-exp->list s))) (parse (third (s-exp->list s))))] [(s-exp-match? '{* ANY ANY} s) (multC (parse (second (s-exp->list s))) (parse (third (s-exp->list s))))] [(s-exp-match? '{let {[SYMBOL ANY]} ANY} s) (let ([bs (s-exp->list (first (s-exp->list (second (s-exp->list s)))))]) (appC (lamC (list (s-exp->symbol (first bs))) (parse (third (s-exp->list s)))) (list (parse (second bs)))))] [(s-exp-match? '{lambda {SYMBOL ...} ANY} s) (lamC (map s-exp->symbol (s-exp->list (second (s-exp->list s)))) (parse (third (s-exp->list s))))] [(s-exp-match? '{let/cc SYMBOL ANY} s) (let/ccC (s-exp->symbol (second (s-exp->list s))) (parse (third (s-exp->list s))))] [(s-exp-match? '{neg ANY} s) (negC (parse (second (s-exp->list s))))] [(s-exp-match? '{avg ANY ANY ANY} s) (avgC (parse (second (s-exp->list s))) (parse (third (s-exp->list s))) (parse (fourth (s-exp->list s))))] [(s-exp-match? '{if0 ANY ANY ANY} s) (if0C (parse (second (s-exp->list s))) (parse (third (s-exp->list s))) (parse (fourth (s-exp->list s))))] [(s-exp-match? '{ANY ANY ...} s) (appC (parse (first (s-exp->list s))) (map parse (rest (s-exp->list s))))] [else (error 'parse "invalid input")])) (module+ test (test (parse '2) (numC 2)) (test (parse `x) ; note: backquote instead of normal quote (idC 'x)) (test (parse '{+ 2 1}) (plusC (numC 2) (numC 1))) (test (parse '{* 3 4}) (multC (numC 3) (numC 4))) (test (parse '{+ {* 3 4} 8}) (plusC (multC (numC 3) (numC 4)) (numC 8))) (test (parse '{let {[x {+ 1 2}]} y}) (appC (lamC (list 'x) (idC 'y)) (list (plusC (numC 1) (numC 2))))) (test (parse '{lambda {x} 9}) (lamC (list 'x) (numC 9))) (test (parse '{let/cc k 0}) (let/ccC 'k (numC 0))) (test (parse '{double 9}) (appC (idC 'double) (list (numC 9)))) ;; neg parse (test (parse '(neg 1)) (negC (numC 1))) ;; avg parse (test (parse '(avg 1 2 3)) (avgC (numC 1) (numC 2) (numC 3))) ;; if0 parse (test (parse '(if0 0 1 2)) (if0C (numC 0) (numC 1) (numC 2))) (test/exn (parse '{}) "invalid input")) ;; interp & continue ---------------------------------------- (define (interp [a : ExprC] [env : Env] [k : Cont]) : Value (type-case ExprC a [numC (n) (continue k (numV n))] [idC (s) (continue k (lookup s env))] [plusC (l r) (interp l env (addSecondK r env k))] [multC (l r) (interp l env (multSecondK r env k))] [lamC (ns body) (continue k (closV ns body env))] [appC (fun args) (interp fun env (appArgK args env k empty (numV -inf.0)))] [let/ccC (n body) (interp body (extend-env (bind n (contV k)) env) k)] [negC (n) (interp n env (doNegK k))] [avgC (f s t) (interp f env (avgSecondK s t env k))] [if0C (tst thn els) (interp tst env (if0K thn els env k))])) (define (continue [k : Cont] [v : Value]) : Value (type-case Cont k [doneK () v] [addSecondK (r env next-k) (interp r env (doAddK v next-k))] [doAddK (v-l next-k) (continue next-k (num+ v-l v))] [multSecondK (r env next-k) (interp r env (doMultK v next-k))] [doMultK (v-l next-k) (continue next-k (num* v-l v))] [appArgK (args env next-k vals f) (type-case Value f (numV (n) (cond [(= 0 (length args)) (continue (doAppK v next-k vals) (numV -inf.0))] [else (interp (first args) env (appArgK (rest args) env next-k empty v))])) (closV (a b e) (cond [(= 0 (length args)) (continue (doAppK f next-k (append vals (list v))) (first (append vals (list v))))] [else (interp (first args) env (appArgK (rest args) env next-k (append vals (list v)) f))])) (contV (k) (continue (doAppK f next-k (append vals (list v))) (first (append vals (list v))))))] [doAppK (v-f next-k vals) (type-case Value v-f [closV (ns body c-env) (interp body (extend-env* (map2 bind ns vals) c-env) next-k)] [contV (k-v) (continue k-v (first vals))] [else (error 'interp "not a function")])] [doNegK (next-k) (type-case Value v [numV (n) (continue next-k (num* (numV -1) v))] [else (error 'interp "not a number")])] [avgThirdK (v-f t e next-k) (interp t e (doAvgK (num+ v-f v) next-k))] [avgSecondK (s t e next-k) (interp s e (avgThirdK v t e next-k))] [doAvgK (v-t next-k) (continue next-k (num/ (num+ v-t v) (numV 3)))] [if0K (thn els e next-k) (type-case Value v [numV (n) (cond [(= n 0) (interp thn e next-k)] [else (interp els e next-k)])] [else (error 'interp "not a number")])])) (define (interp-expr [a : ExprC]) : s-expression (type-case Value (interp a mt-env (doneK)) [numV (n) (number->s-exp n)] [closV (n body env) `function] [contV (k) `function])) (module+ test ;; NEW TESTS (test (interp-expr (parse '(let ((y (lambda (x) (+ 2 x)))) (y 3)))) '5) (test (interp-expr (parse '(let ((x 1)) (+ x 1)))) '2) (test (interp-expr (parse '(lambda (x) (+ 1 x)))) `function) (test (interp-expr (let/ccC 'k (idC 'k))) `function) ;; NEW EXCEPTIONS (test/exn (interp-expr (parse '(neg (lambda (x) x)))) "not a number") (test/exn (interp-expr (parse '(if0 (lambda (x) x) 1 2))) "not a number") ;; PART 1 (test (interp-expr (parse '{neg 2})) '-2) (test (interp-expr (parse '{avg 0 6 6})) '4) (test (interp-expr (parse '{let/cc k {neg {k 3}}})) '3) (test (interp-expr (parse '{let/cc k {avg 0 {k 3} 0}})) '3) (test (interp-expr (parse '{let/cc k {avg {k 2} {k 3} 0}})) '2) (test (interp-expr (parse '{if0 1 2 3})) '3) (test (interp-expr (parse '{if0 0 2 3})) '2) (test (interp-expr (parse '{let/cc k {if0 {k 9} 2 3}})) '9) ;; PART 2 (test (interp-expr (parse '{{lambda {x y} {+ y {neg x}}} 10 12})) '2) (test (interp-expr (parse '{lambda {} 12})) `function) (test (interp-expr (parse '{lambda {x} {lambda {} x}})) `function) (test (interp-expr (parse '{{{lambda {x} {lambda {} x}} 13}})) '13) (test (interp-expr (parse '{let/cc esc {{lambda {x y} x} 1 {esc 3}}})) '3) (test (interp-expr (parse '{{let/cc esc {{lambda {x y} {lambda {z} {+ z y}}} 1 {let/cc k {esc k}}}} 10})) '20) ;; OLD TESTS (test (interp (parse '2) mt-env (doneK)) (numV 2)) (test/exn (interp (parse `x) mt-env (doneK)) "free variable") (test (interp (parse `x) (extend-env (bind 'x (numV 9)) mt-env) (doneK)) (numV 9)) (test (interp (parse '{+ 2 1}) mt-env (doneK)) (numV 3)) (test (interp (parse '{* 2 1}) mt-env (doneK)) (numV 2)) (test (interp (parse '{+ {* 2 3} {+ 5 8}}) mt-env (doneK)) (numV 19)) (test (interp (parse '{lambda {x} {+ x x}}) mt-env (doneK)) (closV (list 'x) (plusC (idC 'x) (idC 'x)) mt-env)) (test (interp (parse '{let {[x 5]} {+ x x}}) mt-env (doneK)) (numV 10)) (test (interp (parse '{let {[x 5]} {let {[x {+ 1 x}]} {+ x x}}}) mt-env (doneK)) (numV 12)) (test (interp (parse '{let {[x 5]} {let {[y 6]} x}}) mt-env (doneK)) (numV 5)) (test (interp (parse '{{lambda {x} {+ x x}} 8}) mt-env (doneK)) (numV 16)) (test (interp (parse '{let/cc k {+ 1 {k 0}}}) mt-env (doneK)) (numV 0)) (test (interp (parse '{let {[f {let/cc k k}]} {f {lambda {x} 10}}}) mt-env (doneK)) (numV 10)) (test/exn (interp (parse '{1 2}) mt-env (doneK)) "not a function") (test/exn (interp (parse '{+ 1 {lambda {x} x}}) mt-env (doneK)) "not a number") (test/exn (interp (parse '{let {[bad {lambda {x} {+ x y}}]} {let {[y 5]} {bad 2}}}) mt-env (doneK)) "free variable") ;; Eager: (test/exn (interp (parse '{{lambda {x} 0} {1 2}}) mt-env (doneK)) "not a function") (test (continue (doneK) (numV 5)) (numV 5)) (test (continue (addSecondK (numC 6) mt-env (doneK)) (numV 5)) (numV 11)) (test (continue (doAddK (numV 7) (doneK)) (numV 5)) (numV 12)) (test (continue (multSecondK (numC 6) mt-env (doneK)) (numV 5)) (numV 30)) (test (continue (doMultK (numV 7) (doneK)) (numV 5)) (numV 35)) #;(test (continue (appArgK (numC 5) mt-env (doneK)) (closV (list 'x) (idC 'x) mt-env)) (numV 5)) #;(test (continue (doAppK (closV (list 'x) (idC 'x) mt-env) (doneK)) (numV 8)) (numV 8))) ;; num+ and num* ---------------------------------------- (define (num-op [op : (number number -> number)] [l : Value] [r : Value]) : Value (cond [(and (numV? l) (numV? r)) (numV (op (numV-n l) (numV-n r)))] [else (error 'interp "not a number")])) (define (num+ [l : Value] [r : Value]) : Value (num-op + l r)) (define (num* [l : Value] [r : Value]) : Value (num-op * l r)) (define (num/ [l : Value] [r : Value]) : Value (num-op / l r)) (module+ test (test (num+ (numV 1) (numV 2)) (numV 3)) (test (num* (numV 2) (numV 3)) (numV 6))) ;; lookup ---------------------------------------- (define (lookup [n : symbol] [env : Env]) : Value (cond [(empty? env) (error 'lookup "free variable")] [else (cond [(symbol=? n (bind-name (first env))) (bind-val (first env))] [else (lookup n (rest env))])])) (module+ test (test/exn (lookup 'x mt-env) "free variable") (test (lookup 'x (extend-env (bind 'x (numV 8)) mt-env)) (numV 8)) (test (lookup 'x (extend-env (bind 'x (numV 9)) (extend-env (bind 'x (numV 8)) mt-env))) (numV 9)) (test (lookup 'y (extend-env (bind 'x (numV 9)) (extend-env (bind 'y (numV 8)) mt-env))) (numV 8)))
false
a476c6b2cc5dca38478aa6d1aac184c713f6c4fb
f6bbf5befa45e753077cf8afc8f965db2d214898
/ASTBenchmarks/typecheck-stlc/s-exp-stlc.rkt
ddbcc891f2431651ca501c88236f50540602bccd
[]
no_license
iu-parfunc/gibbon
4e38f1d2d0526b30476dbebd794f929943f19f12
45f39ad0322cd7a31fe04922ad6bf38e6ac36ad6
refs/heads/main
2023-08-31T11:39:58.367737
2023-08-30T23:44:33
2023-08-30T23:44:38
58,642,617
139
23
null
2023-09-12T20:40:48
2016-05-12T13:10:41
C
UTF-8
Racket
false
false
2,938
rkt
s-exp-stlc.rkt
#lang racket (provide typecheck-expr type?) (require (rename-in racket/unsafe/ops [unsafe-car ucar] [unsafe-cdr ucdr])) #| http://www.cs.cornell.edu/courses/cs6110/2013sp/lectures/lec25-sp13.pdf Simply-typed lambda calculus prim values b ::= n | true | false | null terms e ::= b | x | e1 e2 | lambda x:t . e prim types B ::= int | bool | 1 types t ::= t1 -> t2 | B |# (define empty-env '()) (define (extend-env env sym val) (cons (cons sym val) env)) (define (apply-env env sym) (cond [(empty? env) (error 'apply-env "Could not find variable" sym)] [(eq? (ucar (ucar env)) sym) (ucdr (ucar env))] [else (apply-env (ucdr env) sym)])) (define (type? t) (match t [(or 'int 'bool 'ntype) #t] [ls ;; `(,t1 -> ,t2) turn to `(result params) (if (or (not (list? ls)) (empty? (cdr ls))) #f (and (andmap type? (ucdr ls)) (type? (ucar ls))))] [_ #f])) (define (type-equal? t1 t2) (match* (t1 t2) [('int 'int) #t] [('bool 'bool) #t] [('ntype 'ntype) #t] [(ls1 ls2) ;;(`(,t1_ -> ,t2_) `(,t1__ -> ,t2__)) (if (or (not (and (list? ls1) (list? ls2))) (empty? (cdr ls1)) (empty? (cdr ls2))) #f (and (andmap type-equal? (ucdr ls1) (ucdr ls2)) (type-equal? (ucar ls1) (ucar ls2))))] [(_ _) #f])) ;; from 2,764,194,400 bytes allocated in the heap ;; to 1,680,458,704 bytes allocated in the heap ;; to 910,630,272 bytes allocated in the heap (define (typecheck expr tenv) ;; replace tenv with alist (match expr [(? exact-integer? n) 'int] [(or 'true 'false) 'bool] ['null 'ntype] [(? symbol? x) (apply-env tenv x)] [`(begin ,expr) (for/last ([e (in-vector expr)]) (typecheck e tenv))] [`(lambda ,args ,body) (let ([new-tenv (for/fold ([tenv_ tenv]) ([arg (in-vector args)]) (extend-env tenv_ (ucar arg) (ucar (ucdr (ucdr arg)))))]) (cons (typecheck body new-tenv) (for/list ([a (in-vector args)]) (ucar (ucdr (ucdr a))))))] [`(,e1 . ,e2) (match (typecheck e1 tenv) [ls;;`(,t1 -> ,t2) ;; represent types differently. (if (or (not (list? ls)) (empty? (cdr ls))) (error 'typecheck "no type ~a~n" expr) (if (andmap (lambda (t_ e_) (type-equal? t_ (typecheck e_ tenv))) (ucdr ls) e2) (ucar ls) (error 'typecheck "no type: ~a~n" expr)))] [else (error 'typecheck "no type ~a~n" expr)])] [else ;; i think the previous expression will capture some of the "else" as well (error 'typecheck "bad form: ~a" expr)])) (define (typecheck-expr expr) (typecheck expr empty-env))
false
e21adb4f95a9fa36666b3ef90f5ea50aa1e9d622
ec97baaaca0c4cbfdd1bbff9a9e7df368caeb401
/byoe-window.rkt
6ef3a4077611e2cb92206ba2e2dac1b2c39814d8
[ "MIT", "CC0-1.0", "LicenseRef-scancode-public-domain" ]
permissive
concurrency/plumb
dd7ce14df1e9957ae1e730bdc1b4d49f4b8f4d43
886643c572a20f99ef27aa6a5023a6f6789c9fdf
refs/heads/master
2021-03-12T20:15:13.884614
2014-03-30T21:20:15
2014-03-30T21:20:15
10,464,765
5
1
null
null
null
null
UTF-8
Racket
false
false
10,652
rkt
byoe-window.rkt
;; The MIT License (MIT) ;; ;; Copyright (c) 2013 Matthew C. Jadud ;; ;; Permission is hereby granted, free of charge, to any person obtaining a copy ;; of this software and associated documentation files (the "Software"), to deal ;; in the Software without restriction, including without limitation the rights ;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ;; copies of the Software, and to permit persons to whom the Software is ;; furnished to do so, subject to the following conditions: ;; ;; The above copyright notice and this permission notice shall be included in ;; all copies or substantial portions of the Software. ;; ;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ;; THE SOFTWARE. #lang racket (provide win-main%) (require racket/gui mrlib/path-dialog ) (require "mvc.rkt" "debug.rkt" "version.rkt" ) ; ;; ;; ;; ;; ;; ;; ; ;;; ;;; ;; ;; ;;; ;; ; ;;;; ;;;; ;;;; ;; ;;;; ;; ; ;; ;; ;; ;; ;;;; ;; ;;;;; ;; ; ;; ;; ;; ;; ; ;; ;; ;; ;; ;; ; ;; ;;; ;; ;; ;; ;; ;; ;; ;; ; ;; ; ;; ;; ; ;; ;; ;; ;; ; ;; ;; ;;;;;;;; ;; ;; ;;;;; ; ;; ;; ;;;;;;;; ;; ;; ;;;; ; ;; ;; ;; ;; ;; ;; ;;; ; ;; ;; ;; ;; ;; ;; ;; (define win-main% (class view% (init-field model) (define first-check-or-compile? true) (define f (new frame% [label "Plumb @ concurrency.cc"] [width 400] [height 200] )) #| (define hortz1 (new horizontal-panel% [parent f])) (define host (new text-field% [parent hortz1] [label "Server"] [init-value "ec2-54-226-131-120.compute-1.amazonaws.com"] [stretchable-width true] )) (define port (new text-field% [parent hortz1] [label ""] [init-value "9000"] [stretchable-width false] )) |# (define top-half (new vertical-panel% [parent f] [stretchable-height false])) (define serial-port (new choice% [parent top-half] [label "Arduino Port"] [choices (send model get-arduino-ports)])) (define board (new choice% [parent top-half] [label "Board Type"] [choices (send model get-board-choices)])) (define hortz2 (new horizontal-panel% [parent top-half])) (define choose-file (new button% [parent hortz2] [label "Choose Code"] [stretchable-width true] [callback (λ (b e) (let* (#;[d (new path-dialog% [label "occam code chooser"] [message "Choose your main .occ file."] [parent f] [existing? true] [directory (or (getenv "HOME") (getenv "USERPROFILE"))] [filters (list (list "occam files" "*.occ"))] [dir? false])] [f (get-file "Choose your main .occ file." f)]) (when f (send model set-main-file f)) ))] )) (define check (new button% [parent hortz2] [label "Check"] [stretchable-width true] [enabled false] [callback (λ (b e) (send b enable false) (send model set-error-message "") (update-model) (set-remote-host) ;; Set the main file (debug 'CHECK-SYNTAX "Main file: ~a" (send model get-main-file)) ;; Compile (when first-check-or-compile? (set! first-check-or-compile? false) ;; This loads things from Bitbucket. (send model load-error-regexps)) (send model check-syntax) (send b enable true) )])) (define run (new button% [parent hortz2] [label "Run"] [stretchable-width true] [enabled false] [callback (λ (b e) (send b enable false) (send model set-error-message "") (update-model) (set-remote-host) ;; Set the main file (debug 'COMPILE "Main file: ~a" (send model get-main-file)) (when first-check-or-compile? (set! first-check-or-compile? false) ;; This loads things from Bitbucket. (send model load-error-regexps)) ;; Compile (send model compile) (send b enable true) )] )) (define messages (new message% [parent f] [stretchable-width true] [auto-resize true] (label ""))) (define bottom-half (new vertical-panel% [parent f] [stretchable-height true])) (define err-msg-canvas (new editor-canvas% (parent bottom-half) (label "") (stretchable-width true) (line-count 5) )) (define err-msg-text (new text% (auto-wrap true))) (send err-msg-canvas set-editor err-msg-text) ; ;; ;; ;;;;;;; ;; ;; ;; ;; ;; ; ;;; ;;; ;;;;;;; ;;; ;; ;; ;; ;;;;; ; ;;;; ;;;; ;; ;;;; ;; ;; ;; ;; ; ; ;; ;; ;; ;; ;; ;;;;; ;; ;; ;; ;; ; ;; ;; ;; ;; ;;;;;; ;; ;; ;; ;; ;; ;;; ; ;; ;;; ;; ;;;;;; ;; ;; ;; ;; ;; ;;; ; ;; ; ;; ;; ;; ;; ;; ;; ;; ;; ; ;; ;; ;; ;; ;;;;; ;; ;; ;; ; ;; ;; ;; ;; ;;;; ;; ;; ; ;; ; ;; ;; ;; ;; ;;; ;;;;;;;; ;; ;;; ; ;; ;; ;;;;;;; ;; ;; ;;;; ;;;; (define/public (get-frame) f) ;; FIXME ;; No longer needed? (define/public (set-remote-host) 'DoNothing #| (send model set-remote-host (send host get-value) (send port get-value)) |# ) (define (populate-menu-bar) (define help (new menu% [label "&Help"] [parent menu-bar])) (new menu-item% [label (format "Version: ~a" VERSION)] [parent help] [callback (λ (m e) '...)]) ;; FIXME ;; Probably handled at app startup now. ;; In case we need it ;; (set-remote-host) 'JustDefine? ) (define menu-bar (new menu-bar% [parent f])) (populate-menu-bar) ;;;;;;; (define (update-model) 'DoNothing ;; FIXME This can become a menu option. (when (not (zero? (length (send model get-arduino-ports)))) (send model set-arduino-port (send serial-port get-string (send serial-port get-selection)))) (send model set-board-type (send board get-string (send board get-selection))) ) (define/public (show bool) (send f show bool)) (define/override (update) ;; When we have a file, we can check the syntax on it. (when (send model main-file-set?) (send check enable true)) ;; When we have a file, and we have a serial port, ;; it is allowable to compile and upload something. (when (and (send model main-file-set?) (not (zero? (length (send model get-arduino-ports))))) (send run enable true)) ;; Do we have any messages to display? (when (send model get-message) (send messages set-label (send model get-message))) (send err-msg-text erase) (send err-msg-text insert (send model get-error-message)) ) (super-new) ))
false
e8d041b3968a42f7015e887f46d001bad5a81d35
4b1178b66f1a666fdd78db634a380e9496b8285f
/rai/librai.rkt
880cfee99c785a198699c8cd7ea0803902ab7b03
[ "BSD-2-Clause" ]
permissive
jbclements/rai
51cf5181466c151f8d3543f8d0f56e29fe7f34d0
89bce2e4a938e2914a43b7117923c683c54fd27b
refs/heads/master
2021-01-12T21:27:34.982852
2013-12-28T20:36:20
2013-12-28T20:36:20
null
0
0
null
null
null
null
UTF-8
Racket
false
false
387
rkt
librai.rkt
#lang racket/base (require ffi/unsafe ffi/unsafe/define) (provide (all-defined-out)) (define-ffi-definer define-rai (ffi-lib "librai")) (define _rai_info-pointer (_cpointer 'rai_info)) (define-rai rai_load_bin (_fun _string -> _rai_info-pointer)) (define _rai_proc-pointer (_cpointer 'rai_proc)) (define-rai rai_proc_new (_fun _rai_info-pointer _int -> _rai_proc-pointer))
false
cbbb0b7534a1083d6fab04cf0065e490fb7c481e
01ed4efac0c29caeb9388c0c5c1e069da7c1eebf
/Motile/motilo.rkt
8c926df8f26b5e41e1aa8273219837640c38df7c
[ "Apache-2.0" ]
permissive
karinies/coast
2124d69d467130b7efb03351fbcc974f9a9f4646
b520003d9c4ebb2775db2f07688e58bbd3199195
refs/heads/master
2020-04-01T23:02:24.547845
2017-05-26T21:43:27
2017-05-26T21:43:27
33,692,208
8
0
null
null
null
null
UTF-8
Racket
false
false
1,315
rkt
motilo.rkt
#! /usr/bin/env racket #lang racket/base (require (only-in racket/function curry) (only-in "compile/compile.rkt" motile/compile) (only-in "compile/serialize.rkt" motile/serialize)) (provide motile/file/compile motile/port/compile) (define (motile/file/compile name) (with-handlers ([exn:fail? (lambda (e) (log-error (format "motlile/file/compile: file: ~s ~s\n" name (exn-message e))))]) (let* ((path (string->path name)) (in (open-input-file path)) (out (open-output-file (path-replace-suffix path #".mag") #:mode 'binary #:exists 'replace))) (motile/port/compile in out) (close-input-port in) (close-output-port out)))) (define (motile/port/compile in out) (write (motile/serialize (motile/compile (read in))) out)) (define CLargs (map (curry regexp-split #rx"=") (vector->list (current-command-line-arguments)))) (display CLargs) (newline) (define (argsassoc key #:call [call (λ (x) x)] #:no-val [no-val #f] #:default [default #t]) (let ([entry (assoc key CLargs)]) (if entry (if (> (length entry) 1) (call (cadr entry)) default) no-val))) ;(define *LISTENING-ON* (argsassoc "--host" #:no-val *LOCALHOST*)) ;(define *LOCALPORT* (argsassoc "--port" #:no-val 5000 #:call string->number))
false
7c31d4e53a74173f561ece35cc35995901dc5e21
2b922c374ecb97c8ad30d5170020fc945d8bb62c
/actions.rkt
cc1160c916be4ef31c2c51610bf141758fc112a4
[]
no_license
alphajuliet/jaipur-rkt
f3e7a2f4202c2ae509781bedb02d8debf392a30c
3d1bef110d80fa9380894c83036408b099680b0c
refs/heads/master
2020-06-16T04:23:51.335553
2019-09-01T04:33:53
2019-09-01T04:33:53
195,479,001
0
0
null
null
null
null
UTF-8
Racket
false
false
8,273
rkt
actions.rkt
#lang racket ; Model Jaipur in Racket ; AndrewJ 2019-07-05 ; Imports (require racket/hash lens/common lens/data/hash threading hash-ext "state.rkt" "util.rkt") ; Exports (provide init-game take-card sell-cards exchange-cards end-of-game? apply-end-bonus ; Action tests take-card-invalid? sell-cards-invalid? exchange-cards-invalid?) ;=============================== ; Utility functions ;------------------------------- ; Random card from the deck ; random-card :: State -> Card (define (random-card st) (~>> (view _deck st) (hash-enumerate) (random-element))) ; Move n cards from _src to _dest ; If not possible then throw an error (define (move-cards rsrc _src _dest n st) (if (> n (view (>>> _src (_rsrc rsrc)) st)) (raise-user-error 'move-card (format "failed because insufficient ~a cards are available to move from ~a." rsrc (view _src st))) ;else (~>> st (over (>>> _src (_rsrc rsrc)) (curry flip - n)) (over (>>> _dest (_rsrc rsrc)) (curry + n))))) ; Deal a card from the deck to the target ; deal-card :: State -> State (define (deal-cards _target n state) (define st state) (define n1 (min n (hash-sum (view _deck state)))) ;only deal as many as are left (for ([i (range n1)]) (set! st (move-cards (random-card st) _deck _target 1 st))) st) ; Take n resource tokens and add to player's score ; take-tokens :: Resource -> Player -> Int -> State -> State (define (take-tokens rsrc plyr n st) (define t (view (>>> _tokens (_rsrc rsrc)) st)) (define-values (x y) (if (>= n (length t)) (values t '()) ;else (split-at t n))) (define (bonus-points n) (cond [(= n 3) (random-element '(1 2 3))] [(= n 4) (random-element '(4 5 6))] [(= n 5) (random-element '(8 9 10))] [else 0])) (~>> st (over (>>> _points (_player plyr)) (curry + (list-sum x) (bonus-points n))) (at (>>> _tokens (_rsrc rsrc)) y))) ;=============================== ; Game actions ; - Init game ; - Take cards ; - Sell cards ; - Exchange cards ;------------------------------- ; Initialise the game, with an optional seed > 0 ; init-game :: Int? -> State (define (init-game #:seed [seed 0]) (if (> seed 0) (random-seed seed) #t) (~>> initial-state (move-cards 'Camel _deck _market 3) (deal-cards _market 2) (deal-cards (>>> _hand (_player 'A)) 5) (deal-cards (>>> _hand (_player 'B)) 5))) ;------------------------------- ; Take a card from the market (or all the camels) ; Deal replacement cards to the deck ; Invalid if: ; - Player is not taking camels, and already has 7 non-camel cards in their hand ; take-card-invalid? :: Resource -> Player -> State -> Boolean | String (define (take-card-invalid? rsrc plyr st) (define player-hand (view (>>> _hand (_player plyr)) st)) (cond [(and (not (eq? rsrc 'Camel)) (>= (count-cards-excl-camels player-hand) 7)) (format "Player ~a cannot have more than 7 cards, excluding camels." plyr)] [else #f])) ; take-card :: Resource -> Player -> State -> State (define (take-card rsrc plyr st) (define n-market-camels (view (>>> _market (_rsrc 'Camel)) st)) (define player-hand (view (>>> _hand (_player plyr)) st)) (define error? (take-card-invalid? rsrc plyr st)) (cond [(string? error?) (raise-user-error 'take-card error?)] [(eq? rsrc 'Camel) (~>> st (move-cards rsrc _market (>>> _hand (_player plyr)) n-market-camels) (deal-cards _market n-market-camels))] [else (~>> st (move-cards rsrc _market (>>> _hand (_player plyr)) 1) (deal-cards _market 1))])) ;------------------------------- ; Sell cards ; sell-cards-invalid? :: Player -> Resource -> State -> Boolean | String| (define (sell-cards-invalid? rsrc plyr st) (define n (view (>>> _hand (_player plyr) (_rsrc rsrc)) st)) (cond [(eq? rsrc 'Camel) (format "Player ~a cannot sell camels." plyr)] [(< n (hash-ref min-sell-hash rsrc)) (format "Player ~a does not enough ~a cards to sell." plyr rsrc)] [else #f])) ; sell-cards :: Player -> Resource -> State -> State (define (sell-cards rsrc plyr st) (define n (view (>>> _hand (_player plyr) (_rsrc rsrc)) st)) (define error? (sell-cards-invalid? rsrc plyr st)) (cond [(string? error?) (raise-user-error 'sell-cards error?)] [else (~>> st (over (>>> _hand (_player plyr) (_rsrc rsrc)) (curry flip - n)) (take-tokens rsrc plyr n))])) ;------------------------------- ; Exchange cards with the market. This includes using camels. @@TODO (define (exchange-cards-invalid? player-cards market-cards plyr st) (define (hash-min h) (apply min (hash-values h))) (define (enough-cards? cards _hand) (> 0 (hash-min (hash-sub (view _hand st) cards)))) (define player-hand (view (>>> _hand (_player plyr)) st)) (cond [(not (= (hash-sum player-cards) (hash-sum market-cards))) "Different number of resources being exchanged."] [(or (enough-cards? player-cards (>>> _hand (_player plyr))) (enough-cards? market-cards _market)) "Cannot exchange resources that aren't available."] [(hash-has-key? market-cards 'Camel) "Cannot exchange a camel from the market."] [(> (+ (count-cards-excl-camels player-hand) (hash-ref player-cards 'Camel 0)) 7) "Cannot have more than 7 hand cards after exchange."] [else #f])) ; exchange-cards :: Player -> Cards -> Cards -> State -> State (define (exchange-cards player-cards market-cards plyr st) ; Helper functions (define (hash-min h) (apply min (hash-values h))) (define (enough-cards? cards _hand) (> 0 (hash-min (hash-sub (view _hand st) cards)))) (define player-hand (view (>>> _hand (_player plyr)) st)) (define error? (exchange-cards-invalid? player-cards market-cards plyr st)) (cond [(string? error?) (raise-user-error 'exchange-cards error?)] [else (~>> st ; Move player cards to market (over _market (curry hash-add player-cards)) (over (>>> _hand (_player plyr)) (curry flip hash-sub player-cards)) ; Move market cards to player (over (>>> _hand (_player plyr)) (curry hash-add market-cards)) (over _market (curry flip hash-sub market-cards)))])) ;------------------------------- ; Check for end of game ; - Deck is empty ; - Three token piles are empty ; end-of-game? :: State -> Boolean (define (end-of-game? st) ; Helper function (define token-lengths (~>> st (view _tokens) (hash-values) (map length))) (or (= 0 (hash-sum (view _deck st))) (= 3 (length (filter (curry = 0) token-lengths))))) ;------------------------------- ; Add end-of-game bonus (define (apply-end-bonus st) (if (> (view (>>> _hand (_player 'A) (_rsrc 'Camel)) st) (view (>>> _hand (_player 'B) (_rsrc 'Camel)) st)) (over (>>> _points (_player 'A)) (curry + 5) st) (over (>>> _points (_player 'B)) (curry + 5) st))) ;=============================== ; Run ;=============================== ; Unit tests (module+ test (require rackunit rackunit/text-ui) (define s0 (init-game #:seed 1)) (define jaipur-tests (test-suite "Unit tests" (check-equal? (+ 2 2) 4) (check-equal? 40 (hash-sum (view _deck (init-game)))) ; Take card (let ([s1 (at (>>> _hand (_player 'A) (_rsrc 'Spice)) 7 s0)]) (check-true (string? (take-card-invalid? 'Spice 'A s1)))) ; Sell cards (check-true (string? (sell-cards-invalid? 'Diamond 'B s0))) (let* ([s1 (at (>>> _tokens (_rsrc 'Spice)) '(1) s0)] [s2 (sell-cards 'Spice 'A s1)]) (check-equal? (view (>>> _tokens (_rsrc 'Spice)) s2) '())) ; Exchange cards (let ([p (hash 'Silver 1 'Leather 1)] [m (hash 'Gold 1 'Spice 1)]) (check-true (string? (exchange-cards-invalid? p m 'A s0)))) )) (run-tests jaipur-tests)) ; The End
false
7b917a356324fe43f784c0547d34e6591f3cbcd7
4e5a7868df9f5ea6bf60d3e341595af11356197b
/second_year/fp/lab/lab7/subs.rkt
d00d543036a935c06559dd3574467136fe876d63
[ "Apache-2.0" ]
permissive
vtemian/uni-west
4cb2bea57f48ffb30a3c058d8b4a29347832de5a
1cf4e9176371dbf8b6b1c0842694932ddca08367
refs/heads/master
2021-01-21T05:00:44.462215
2016-06-07T14:06:43
2016-06-07T14:06:43
24,953,376
1
1
null
null
null
null
UTF-8
Racket
false
false
210
rkt
subs.rkt
#lang racket (define (get subst s) (if (null? subst) (null) (if (eq? s (car subst)) (car (cdr subst)) (get (cdr subst) s) ) ) ) (get '((a 4) (b 6)) 'a)
false
8a3912a996dbe0c7dc4f33a79103e5693abb1af6
fc6465100ab657aa1e31af6a4ab77a3284c28ff0
/results/all/stlc-2-enum-brutally-unfair.rktd
e816b5bb30869448a7a23b1856ef64feccf1379d
[]
no_license
maxsnew/Redex-Enum-Paper
f5ba64a34904beb6ed9be39ff9a5e1e5413c059b
d77ec860d138cb023628cc41f532dd4eb142f15b
refs/heads/master
2020-05-21T20:07:31.382540
2017-09-04T14:42:13
2017-09-04T14:42:13
17,602,325
0
0
null
null
null
null
UTF-8
Racket
false
false
268
rktd
stlc-2-enum-brutally-unfair.rktd
(start 2015-06-20T12:40:19 (#:model "stlc-2" #:type enum-brutally-unfair)) (finished 2015-06-21T12:39:19 (#:model "stlc-2" #:type enum-brutally-unfair #:time-ms 86400013 #:attempts 7415741 #:num-counterexamples 0 #:rate-terms/s 85.83032273386348 #:attempts/cexp N/A))
false
cab8d70d41002253f37f856a6d0358fefac8db43
b64657ac49fff6057c0fe9864e3f37c4b5bfd97e
/ch3/ex-58.rkt
3fc5e2f16831637ba03958bf415678ac9586ef72
[]
no_license
johnvtan/sicp
af779e5bf245165bdfbfe6965e290cc419cd1d1f
8250bcc7ee4f4d551c7299643a370b44bc3f7b9d
refs/heads/master
2022-03-09T17:30:30.469397
2022-02-26T20:22:24
2022-02-26T20:22:24
223,498,855
0
0
null
null
null
null
UTF-8
Racket
false
false
346
rkt
ex-58.rkt
#!/usr/bin/racket #lang sicp (#%require "streams.rkt") (define (expand num den radix) (cons-stream (quotient (* num radix) den) (expand (remainder (* num radix) den) den radix))) ; returns (3, 7, 5, 0, 0, ...) ; this does long division and returns the decimal places to the right ; in the given radix (stream-ref (expand 3 8 10) 2)
false
8cf028dd9224b313858e775a163fd28d9f5a37cb
bf3128c6b1cf2a164077bcef1ffa23c26c440a0b
/optional-assert/optional-assert-test.rkt
7469cab429ca68f02d05887569099e03a82039db
[ "MIT" ]
permissive
bennn/syntax-parse-example
9e961fefc50c265991665d5de7ec1047dd445ed7
b1616936eafd97f952af050dc41cab25c50041e2
refs/heads/master
2022-09-21T15:43:20.335490
2022-09-06T00:17:37
2022-09-06T00:17:37
423,293,870
1
1
NOASSERTION
2021-11-01T00:38:01
2021-11-01T00:38:00
null
UTF-8
Racket
false
false
418
rkt
optional-assert-test.rkt
#lang racket/base (module+ test (require rackunit syntax-parse-example/optional-assert/optional-assert) (check-not-exn (lambda () (optional-assert (= (+ 2 2) 4)))) (check-exn (lambda (e) (and (exn:fail:optional-assert? e) (regexp-match? #rx"\\(= \\(\\+ 2 2\\) 5\\)" (exn-message e)))) (lambda () (optional-assert (= (+ 2 2) 5)))) )
false
a867345de550d9ab20c8d92e3660a8a42d3c1bb1
b88f83682b494d7161ea479f5e1b94a40468e672
/test/big-bang1.rkt
698d6246e52ea6a32a86cca28172d3ce5f1bf69f
[]
no_license
ephoning/racket
0734e5eda6110443ba62752f8a8184068bd5bf5f
90b91767d145aa6577e009ca937488f9b8fb0169
refs/heads/master
2021-12-25T02:24:29.056270
2021-09-11T23:20:35
2021-09-11T23:20:35
10,650,318
0
1
null
null
null
null
UTF-8
Racket
false
false
138,856
rkt
big-bang1.rkt
#reader(lib"read.ss""wxme")WXME0108 ## #| This file uses the GRacket editor format. Open this file in DrRacket version 5.3.4 or later to read it. Most likely, it was created by saving a program in DrRacket, and it probably contains a program with non-text elements (such as images or comment boxes). http://racket-lang.org/ |# 30 7 #"wxtext\0" 3 1 6 #"wxtab\0" 1 1 8 #"wximage\0" 2 0 8 #"wxmedia\0" 4 1 34 #"(lib \"syntax-browser.ss\" \"mrlib\")\0" 1 0 16 #"drscheme:number\0" 3 0 44 #"(lib \"number-snip.ss\" \"drscheme\" \"private\")\0" 1 0 36 #"(lib \"comment-snip.ss\" \"framework\")\0" 1 0 93 ( #"((lib \"collapsed-snipclass.ss\" \"framework\") (lib \"collapsed-sni" #"pclass-wxme.ss\" \"framework\"))\0" ) 0 0 43 #"(lib \"collapsed-snipclass.ss\" \"framework\")\0" 0 0 19 #"drscheme:sexp-snip\0" 0 0 36 #"(lib \"cache-image-snip.ss\" \"mrlib\")\0" 1 0 68 ( #"((lib \"image-core.ss\" \"mrlib\") (lib \"image-core-wxme.rkt\" \"mr" #"lib\"))\0" ) 1 0 29 #"drscheme:bindings-snipclass%\0" 1 0 88 ( #"((lib \"pict-snip.rkt\" \"drracket\" \"private\") (lib \"pict-snip.r" #"kt\" \"drracket\" \"private\"))\0" ) 0 0 33 #"(lib \"bullet-snip.ss\" \"browser\")\0" 0 0 25 #"(lib \"matrix.ss\" \"htdp\")\0" 1 0 22 #"drscheme:lambda-snip%\0" 1 0 26 #"drracket:spacer-snipclass\0" 0 0 57 #"(lib \"hrule-snip.rkt\" \"macro-debugger\" \"syntax-browser\")\0" 1 0 26 #"drscheme:pict-value-snip%\0" 0 0 45 #"(lib \"image-snipr.ss\" \"slideshow\" \"private\")\0" 1 0 38 #"(lib \"pict-snipclass.ss\" \"slideshow\")\0" 2 0 55 #"(lib \"vertical-separator-snip.ss\" \"stepper\" \"private\")\0" 1 0 18 #"drscheme:xml-snip\0" 1 0 31 #"(lib \"xml-snipclass.ss\" \"xml\")\0" 1 0 21 #"drscheme:scheme-snip\0" 2 0 34 #"(lib \"scheme-snipclass.ss\" \"xml\")\0" 1 0 10 #"text-box%\0" 1 0 32 #"(lib \"text-snipclass.ss\" \"xml\")\0" 1 0 1 6 #"wxloc\0" 0 0 56 0 1 #"\0" 0 75 1 #"\0" 0 12 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 0 9 #"Standard\0" 0 75 14 #"Lucida Grande\0" 0 9 90 -1 90 -1 0 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 -1 -1 2 24 #"framework:default-color\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 150 0 150 0 0 0 -1 -1 2 15 #"text:ports out\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 150 0 150 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1.0 0 -1 -1 93 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 255 0 0 0 0 0 -1 -1 2 15 #"text:ports err\0" 0 -1 1 #"\0" 1.0 0 -1 -1 93 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 255 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 175 0 0 0 -1 -1 2 17 #"text:ports value\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 175 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 34 139 34 0 0 0 -1 -1 2 27 #"Matching Parenthesis Style\0" 0 -1 1 #"\0" 1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 34 139 34 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 37 #"framework:syntax-color:scheme:symbol\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 38 #"framework:syntax-color:scheme:keyword\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 38 38 128 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 194 116 31 0 0 0 -1 -1 2 38 #"framework:syntax-color:scheme:comment\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 194 116 31 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 37 #"framework:syntax-color:scheme:string\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 39 #"framework:syntax-color:scheme:constant\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 49 #"framework:syntax-color:scheme:hash-colon-keyword\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 42 #"framework:syntax-color:scheme:parenthesis\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36 #"framework:syntax-color:scheme:error\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 36 #"framework:syntax-color:scheme:other\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 16 #"Misspelled Text\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 81 112 203 0 0 0 -1 -1 2 38 #"drracket:check-syntax:lexically-bound\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 81 112 203 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 28 #"drracket:check-syntax:set!d\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 37 #"drracket:check-syntax:unused-require\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36 #"drracket:check-syntax:free-variable\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 31 #"drracket:check-syntax:imported\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 47 #"drracket:check-syntax:my-obligation-style-pref\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 116 0 0 0 0 -1 -1 2 50 #"drracket:check-syntax:their-obligation-style-pref\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 116 0 0 0 0 -1 -1 2 48 #"drracket:check-syntax:unk-obligation-style-pref\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 139 142 28 0 0 0 -1 -1 2 49 #"drracket:check-syntax:both-obligation-style-pref\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 139 142 28 0 0 0 -1 -1 2 26 #"plt:htdp:test-coverage-on\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 2 27 #"plt:htdp:test-coverage-off\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 4 1 #"\0" 0 70 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 -1 -1 4 4 #"XML\0" 0 70 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 -1 -1 2 37 #"plt:module-language:test-coverage-on\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 38 #"plt:module-language:test-coverage-off\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 0 0 0 0 255 165 0 0 0 0 -1 -1 4 1 #"\0" 0 71 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 -1 -1 4 1 #"\0" 0 -1 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 0 255 0 0 0 -1 -1 4 1 #"\0" 0 71 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 1 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 0 255 0 0 0 -1 -1 4 1 #"\0" 0 71 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 100 0 0 0 0 -1 -1 2 1 #"\0" 0 71 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 71 1 #"\0" 1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1.0 1.0 1.0 0 100 0 0 0 0 -1 -1 0 112 0 4 3 85 ( #";; The first three lines of this file were inserted by DrRacket. The" #"y record metadata" ) 0 0 4 29 1 #"\n" 0 0 4 3 85 ( #";; about the language level of this file in a form that our tools ca" #"n easily process." ) 0 0 4 29 1 #"\n" 0 0 4 3 256 ( #"#reader(lib \"htdp-advanced-reader.ss\" \"lang\")((modname big-bang1" #") (read-case-sensitive #t) (teachpacks ((lib \"universe.rkt\" \"teac" #"hpack\" \"2htdp\"))) (htdp-settings #(#t constructor repeating-decim" #"al #t #t none #f ((lib \"universe.rkt\" \"teachpack\" \"2htdp\")))))" ) 0 0 4 29 1 #"\n" 0 0 23 3 1 #"(" 0 0 14 3 7 #"require" 0 0 23 3 1 #" " 0 0 14 3 18 #"picturing-programs" 0 0 23 3 1 #")" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 23 3 1 #"(" 0 0 15 3 6 #"define" 0 0 23 3 1 #" " 0 0 14 3 3 #"bar" 0 0 23 3 1 #" " 0 2 181 4 1 #"\0" 2 -1.0 -1.0 0.0 0.0 0 85 500 ( #"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\1\0\0\0\0\303\b" #"\6\0\0\0my\317\310\0\0 \0IDATx\234\354\275w\230\\\347u" #"\247\371\336X9wu\16\310\350\6@\20\f\26I\200Y$\225\255`\231\246-" #"\331#\313\343]\357hm\257e\373\261\354gW\266\3448;\263\217\203,\355X" #"\36\232\262vD\211\24)R\224\231#" #"\210\304\b\"\207F\243\321\21\335\225\253" #"+\337\272i\377\270U\5\200\244@\312" #"\240\246I\341\276x\200n\240\e\335\267" #"o\335\357|\3379\347w\316\21l\333\266qqq\271(\21\227\373\2\\\\\\" #"\226\17\327\0\270\270\\\304\270\6\300\305" #"\345\"\3065\0..\0271\256\1pq\271\210q\r\200\213\313E\214k\0\\" #"\\.b\\\3\340\342r\21\343\32\0" #"\27\227\213\30\327\0\270\270\\\304\270\6" #"\300\305\345\"\3065\0..\0271\256\1pq\271\210q\r\200\213\313E\214\274" #"\334\27p~\254\327\375\335\265W..\357$\313o\0\316\356F \234\375\1\213" #"7\32\200\263q\215\201\213\313\205\362.]Eg\26\177C\253s\306JXd2" #"\31\334\36&..\357\f\302\262w\4z\323\23@\333\0\330\30\246A\245R!" #"\225J1?\177\232j\245\316\306\215\eY\265j\315\377\364Kuq\371Yc\371" #"]\2007\345\314\321_\3234\242\221(" #"\337\376\366\267\251\325jLMM\363\376\367\277\237r\271L(\24Z\306ktq" #"y\357\363.u\1\316\20\360\373hh5\322\3514w\335u\27\222$Q\251\226" #"\b\205\2\324\353\325\345\276<\27\227\367" #"4\357\36\3p\316\361\37\34\337\300y" #"\377\300\201\3\354\334\271\223P(\304\225" #"W^Iw\262\233f\263\211\327\353]\206\vuq\371\331\341]\352" #"\2\234\313\221\243\207\350\353\353ad\344j>\371\311O\2\240\252*\272" ) 500 ( #"\256\243(\3222_\235\213\313{\227\345" #"?\1\b\274.\375\ag\357\376\206\325d\325\252U\214\214\214022\304c\217" #"=J\265VE\3234\24E\371\237|\261..?[,\273\0010\3153i\200" #"f\263A\275q\266_o\221\313\345x\360\301\a\31\32\36\0@\226et\275\211" #"\307\343.~\27\227\ve\331\r\200$\tg\275/\341\363\372\0\v\255\251Q\327" #"\352x<\36N\236<\211\242(\24\212" #"9\246\246&i6\233\30\246\201\215\311\371\305B...\347c\331\r\300\331\b" #"\302\271\276\200(\212\324\353UdY\244" #"X,\262\264\264\204\337\357'\36\217\"" #"K\22\215Fc\231\256\324\305\345g\203" #"e7\0\272n\266\336\2630-\35\260\251\325kxT\5\217\342\341\256\273\356b" #"dd\4\313\262PU\25M\323\230\236" #"\236\246\336\250\273Y\0\27\227\vd\331" #"\r\200m\233o\3707\313r\216\365\371" #"b\226\27_|\21\277\337\217\242HD" #"\243Q\322\3514\252\252\"\212\"\302\e\243\207...?\1\313n\0TU\355" #"\274/INJ\317\343U0m\223\27^x\201D\"\301\322\322\22\36\217\207`" #"\320\317\374\374<C\203CxT\17\226\355\372\377..\27\302\262\e\0\0\323<" #"\367\24 \212\"\222 q\362\344I4\255\201,K\4\2\1<\36\17\351t\232" #"\23\23'\260\261\21\205w\305\345\273\270" #"\274gY\366\25\324h4\320u\r\0" #"\303\320\251\326\252\30M\35\0\333\264\b" #"\370\375\254[\267\216J\245\202 \b\254\\5\302R\271\4\b\2705\201..\27" #"\306\262\e\0\v\273\23\314S\25\225\200" #"?\200\307\343eq~\36\257\252\22\362" #"\a\220%\211j\265\312\302\302\2\343'Np\350\350!\322K\31\fL\327\b\270" #"\270\\\0\313n\0|^\0376\2405\32\330\326\31" #"\237~qa\201\324\302\"\201@\200b\261H\255R" ) 500 ( #"E7\rV\257^\215i[4\32\r\204\345\277|\27\227\3674\357\232\25dY" #"V'\26`6\233\2348q\202\\.\207m\333T*\25\216\35;\306\314\314\f" #"\325j\225Z\255\306\354\354,\206m,\363U\273\270\274\267Yv\3`Z\316\242" #"\367x<\310\212\2\226E\261Xdvv\26\313\262\b\4\2\250\252\312\332\265k" #"\261,\213\253\256\272\nQ\24\21E\21" #"]\327\227\371\352]\\\336\333,\273\1h\323Q\1\212\"\345r\231j\265\212 " #"\b\210\242\210\246iT*\25TUE\222$\26\26\268|\3700\206\341\236\0" #"\\\\.\204e7\0\222(a\331\3269\273y\251T\302\266mt]gxx" #"\30Q\24I&\223\214\214\214\260y\363f4M\243\321h\20\362\273\35\201\\\\" #".\204e7\0\0\266m#\313gZ\23\314\315\315ub\2\365z\235l6\313" #"\252U\253h4\32\\r\311%4\32\r\2\201\0\345Zy\31\257\332\305\345\275" #"\317\273\242!\210(\212\210\b\200\t\266" #"\355\4\370\f\3\261\345\16\f\16\16\262" #"g\317\36T\277\227;\357\274\223\241\241" #"!\212\305\3429*B\27\27\227\237\234w\315\t\240M6\235\246X,\262f\315" #"\32\f\303\351\b\\\255VY\265j\25" #"\303\303\303\35\277?\233\315\362\310#\217\0\274!\26`\232\246\e tqy\e" #",\273\0010L\3\313\262h\324\353X\246\211m\333\24\213EN\237>\215 \b" #"h\232\206,\313T*\25\24E\241Z\255\22\b\4\3204\215j\325i\36\322\256" #"!h\323\316\22X\226[+\340\342r>\226\335\5\260,\vY\26A\222\20\4" #"\201p8L\275^\307l\271\0\315f\23U\0221Z\361\0p\268@.\227" #"\303\264Ld\321\351\16d\3336\202 \b\2\222$u\334\b" #"\27\27\2277g\331W\207\252\250\210\202\210\242(\230\246I6\233" ) 500 ( #"\3050\fl\333F\24\305N P\222$r\271\34\201@\200j\265\212,\313\344" #"r9\312e'\20hY\326\e\\\1\367\4\340\342r~\226\335\0\264\251T*" #"\330\266\315SO=\205\307\343\241R\251t\f\201e9i\302f\263\t8\303B" #"l\333\246\321h\260\270\270\b8\273\377" #"\353\207\34-\367\320#\27\227w;\313n\0\f\323\331\265-\313BQU\16\36" #"<Hoo/\351t\332\321\373\v\2\252\252R\251T\360z\275\324j5,\313" #"B\3234$Ibzz\232F\243\361\246\213\3355\0..\347g\331\r@[" #"\377\357\367\373\251\224\3134\32\r,\313" #"\"\233\315v\26?8\6\242\255\26\254V\253X\226\205\327\353eff\206z\275" #"\336Q\r\266?\27\336\330c\320\305\305\345\\\226\335\0xUG\377/\b6\273" #"w\356\244^\257r\352\3244\345J\5" #"\217\317\213\242\25045\35\257\337G\275" #"^\307\e\360S,\26\221=2\262\"\222\311g\320\364\6\266`\201hc\363\306" #"\6#...o\3162\e\0\v,\23A\200\32333|\357\356\357\322\335\225" #"dzz\32\237/@&W\300\226dL\4\252Z\223\272n\240\351\rz\372{" #"\360zU\274\1/&:\373\17\357E" #"\267\232\b\242\200n\353\310\212\202\r\250" #"\36\0176\274I\317\0\213\263G\220\273" #"\270\\\254,\373\t\0\e\320\r\202>?]\2618\321h\264#\r\16Gb\314" #"\314\314\220+\26\b\4\2\204\303a&\247\247h4\32\230\266E\251\262D\265Z" #"f!u\32\315h`cc\333&\326\333Z\330\256\1pqY~\3 \bX" #"\315&\371|\36EQ:\271\177EQ\220$\211L&C(\24\3020\214\316l" #"\200@ \320\251\22\254\325j\234:u\312\311\f\360\306L\200\213" #"\213\313\217g\371\r\0 z<LNN\0020;;K6\233\5" ) 500 ( #"\234t\237\307\343!\36\217s\374\370q\16\35:D4\32E\226eL\323\354\210" #"~:\332\1\354sT\201gf\16\270\270\270\274\31\313n\0\314z\35D\221\271" #"\2719\202\301 \263\263\263\324\353ul" #"\333\246V\253\261j\325*\26\26\268" #"q\342\4\252\252\322\327\327\307\302\302B" #"k2\260\202\337\357\3070\ft]Gl\375\352|m7\30\350\342r^\226\335" #"\0H>\37\0\v\v\vx<\36\0\6\6\6\20\4\201J\245\302\320\320\20G" #"\216\34!\221Hp\303\r7\20\b\4" #"\310\347\363\250\252\212\337\357\307\343\361t" #"t\2\257\307M\3\272\270\234\237e7\0\0\331\371y\f\303\3004M\f\303 " #"\26\213\321h4\210\307\343d2\31\312\3452\227_~9\311d\222\331\331\331N" #"\275@\255V\353\4\f\363\371|\347\353" #"\331\255\270\277;>\334\305\345\374,\277" #"\1\320u\26\26\26\350\352\352\3024M2\231LG\343?::\312\253\257\276\212" #"\252\252\f\f\f0>>\316\201\3\aH&\223\234>}\272\3237@\20\4\247" #"\213\320Y\277\0\334: \27\227\363\363\23-\221v\215}\333\267~'z\362Y" #"\246\311\304\304\4\340(\374fff\350" #"\356\356\306\353\365211\301\256]\273X\277~=O?\3754\367\335w\37\233" #"6mbff\6EQ\270\374\362\313\351\356\356&\24\n\261\270\270H\243\351\244" #"\2\333\327\327h4/\370\372\\\\~\226yK\3P\253\325:\v\252-\265m" #"G\332\337\211 \233\250\252\354\331\263\207" #"\221\221\21\306\307\307\331\262e\v\351t" #"\2325k\326p\362\344In\270\341\6\0^~\371e\6\a\a\351\355\355e\373" #"\366\355\254Y\263\206\243G\217\222\317\347" #"\321u\235@ \200O\365!\"vR\201^\257\3331\310\305\345|" #"\274e?\0\277\337\337y\277\331l\"\313r\307\267n\a\355.\204R" ) 500 ( #">OOO\17\225J\205l6K\323lb\v\260\177\377~T\277\217\276\276>" #"\276s\317\367\270\345\226[\210\304\242<" #"\360\300\3|\356s\237\243i\350\204\303" #"\341N\354\340\354\272\1777\370\347\342\362" #"\366x\313\23\300}\367\335\307\263\317>K\241P@\20\204s\2k\357\204\v0" #"55E\245Raii\211\227_~\231X,\206i\232$\223I\326\257_\317" #"\356\335\273\271\344\222K\330\265k\27\337" #"\375\356w\331\262e\v\232\246Q.\227" #"\211\307\343\370|>\f\303p\202\202Z\r\3032:'\24\303p\225~..\347" #"\343-O\0\3\3\3\24\213E4M#\20\bP\257\327\21E\321\31\344!_" #"xC!UU;-\300-\313\352,\350d2\311\374\374<\262,3>>\316" #"\245\227^\312\345W^\201\352S\311\347" #"\363\330\202\223:\364\311^*\225\n\246" #"i:\277E\23\251\325!H\226\335(" #"\240\213\313\371x\313\25\262\270\270\310\323" #"O?\315\241C\207P\24\5\237\317\327Y\264\355\26]\27\302\335w\337M \20" #"`\307\216\35\f\17\17S\255V\31\34\34\244P(\20\n\205\210D\"\334p\303" #"\r\\~\371\345\364\366\366r\362\344I" #"\232\315&^\257\227\376\376~\26\27\27" #"\251V\253\370\375~\2\376\300;b\224\\\\.\26\336\322\0\\{\355\265\24\n" #"\5\216\36=\352\364\340k\345\352_\357\16\374{9u\352\24\e6l\350\30\23" #"UUYXX\340\364\351\323\324\353u" #"\n\205\2~\277\237|>\317\277\374\313" #"\277\320\325\325\325\221\2\277\360\302\v\370" #"|>\274^/\301`\20\21\21I\220\20\20p\273\201\271\270\2745oi\0t" #"\255\311\276}\373x\345\225W\310dRX\226\321:Z[\230\346O\330z\333~" #"\343\357XW\2O\320O\261Z&\234\210\321hj" #"x\3~\326\216\215\342\367\373\331|\351\245(\212\302" ) 500 ( #"\376\203\aX\261b\5\222$\321l6\351\357\355#\34\f1\264b\204X,v" #"\326\316/\2\"\232\241\277\361{\273\270" #"\270\234\203|\366\272\350\304\316m@p\266P\217\"Q\257U\250VJ\314\316M" #"\243\e\32\203CC\304\2421T\217B\247\244\326\266\241\25}oG\346UU\305" #"l\365\365ST\25\3330\20\20@\222" #"\300\264x\372\251'\351\352\357e.\233\302\37\r\23Q\24TU&w\272\214\327" #"\324\tG\302D\23qR\2314\303\303" #"\303D\"\21\364\206\206h\303\241\375\a" #"\bE#\316\200\20\257\207\321\r\e0\260\301\262\220E\21UU0\317\\\22\342" #"\233$\6\334\\\201\313\305\216xvU" #"\274\335\371\203\316\16\335h4\210\205#" #"l\3300\312\335w\337M6\233!\34\taaS\327\34)\256\366\272\236|\355" #"T\241 \b\230\246\211,\3134*U" #"\247\251\247$\201\r\305L\206\273\277\373?X\265z5U\255\201?\34bb\352" #"\24\345F\r\1770\200\2467\31\3350" #"\306\263\333\237CUU\266m\333\206(\212\370|>z{{\t\4\2(\242D" #"8\34\306\353\365b\30VG\1\330\341\274+\\t\17\5.\27=o\355\2\350" #":}}}\34>|\230Z\255\306s\317=\307\316\235;1,\3UU\261," #"\v\325\3439\263\325\342\b\204\354\226\23" #"\356\361z\21\4\1o \200\307\357G" #"\257\327\301\266\310\346r\354\336\263\207x" #"<\316\301\203\a\t\207\303\\q\305\25H\222DWW\27W]u\25\317>\373" #",\2336mbhh\210\371\371y\6\a\a\231\230\230@\226eFFF(\227" #"\313\350\272\216\324\232) !!\237\245" #"\a\320\232n5\240\213\313\371xK\3\220H$\b\4\2\244\323i\256\275\366Z" #"&&&\330\276};333\b\202D\271Z" #"\351\324\345\267[s\267\203\204\264O\5-\343\240\325" ) 500 ( #"j(^/\231T\212o\374\323\177\243\273\273\233t:M\177\177?>\237\217\271" #"\2719\256\274\362J\306\306\306x\342\211" #"'\350\357\357\247\247\247\207\211\211\tR\251\24SSSLMMu*\2\223\311" #"$\266m\223L&\t\205\2\200M]\253cX\216>AU\245\37\363S\201\333" #"\r\310\305\345m\30\0\237\317G\263\331" #"dpp\220\331\331Y\202\301 \213\213" #"\213\354\331\263\207\211\311\t&&&\250" #"kN\213.Z\206\300\343\361 J\222\263\360m\310\245\322\0x\374~l\313d" #"fn\226\347w\356`\375\2061&\247" #"\2470M\223b\261\310\326\255[\251\327" #"\353\2348q\202+\256\270\2UU\311" #"\345r\370\375~\366\355\333\307C\17=" #"\304\350\350(\343\343\343\330\266M\251T" #"\"\233\315\242(J\247{\260(\3219" #"\5hM\267\26\300\305\345|\274\245\1" #"\220U\225\255[\267\262\270\270\310\256]" #"\273H&\223\344r9\366\355\333\3073\317<C\271V\355\34\301\333>\37095" #"\2\266M\242\273\e\0C\323\20d\231\335\273ws\362\344In\271\355V\216\35" #";\306\302\302\2\253W\257&\30\f\222\317\347\31\35\35exx\30p\304>/" #"\275\364\22\211D\202\221\221\21\6\a\a" #"\351\351\351\241T*\321\337\337O\243\321" #"`ff\206\347\237\177\236\251\271I\252" #"\325\n\355~\177\202\360z/\337\355\3" #"\350\342r6o\255\232\21\4~\361\27\177\221'\236~\2jU|>\37\246i" #"\322h4\230\234\234d\335\2721$\331\351\302k\350MdQB\3234\247\206\300" #"r\26`\263^G\365\371\20E\221\327" #"^\333\313\377\370\356\335l\271\342rr" #"\271\34\232\246\261r\345J\n\205\2\365" #"z\235H$\202a\30\f\16\16\222\315fi4jD\243QV\254X\301" #"\212\25+\30\37?\306\361\343\307;M" #"@\206V\254$\233\315\362\350\243\217r" ) 500 ( #"\340\300\1\342\2218W\\q%\353\327\257'\344\217\360\346\v\3365\2..\0" #"\322\227\377\354\317\376\f\316\4\314\317\204" #"\362Z\273g[bk\233L\234\234 \22\211Po\324\261\201L&\303\340\3200" #"k\326\255E\224$DIB\22Ed\311\21\343 8\277\245\226`H\0\362\205" #"\2\377\360\265\257q\313-\267\220J\247" #"\360\372|\b\242@4\32\305\357\367\223Lv9\235\200s9\326\254YC\275^" #"#\237\317S\257\327y\356\271\347\b\207" #"C\f\17\017322\202\327\353\245R" #"\255!\b\2\226\351\310\211\367\275\266\227" #"c\307\216c\30\6\3C\375\370Z\5K\3029\2\2043\b\357\202\226\b.." #"\313\305[\237\0$\211H<\216eYH\222D*\225\"\32\215\242\233&\206e" #"r\340\360!V\254^\305\345\227nA" #"\225\24,\333\3022M\304\266\16\337\231" #"\324\1\262\323\341\367+_\371\n\266m\343\v\370)UK\310\252B\251T\"\237" #"\317\23\n\205H\n\t\372\372\372\250T" #"*d2\31\272\273\273\361\373\375\330\266" #"\315\340\340 \242\350\224%g2\31\352" #"\365:\275\3\2034\32\r\272\6\273\250V\253\\s\315U,-\225\271\377\a\337" #"'\227\317\360k\237\375U\2\276\20\232\336D\24$\24Y\301\306F@@7t" #"TW:\354r\21\363\266\266\277F\265" #"\312\255\267\336J,\26#\26\213\321\337\337O\245R!\24\nQ\251U\321\364&" #"\331B\36\335\324i4\32g$\302\246\211\251i I\224\n\5\346\26N\263\377" #"\300\1\6\206\6YH\247PU\225f\263\211(\212\210\242H\255V\243X,\242" #"\353:\252\252\342\361x\260m\233j\265\312\374\374<333-\267\240\201$I" #"x<\36N\2348\201i\232LNN\262\260\260\300\361\343\307i4" #"*l\335\372>\216\349\300\3\17\334\317\304\3448\36EA\224\4L" ) 500 ( #"\333i/n\331\26\212\354\266\fs\271\270y[\6@\327uV\256ZE0\30" #"\244Rq\322~\315f\23\237\317\307\370" #"\3708\207\216\34\346\350\321\243\30\246\331" #"Y\374\206\246a\233\26\222\352\34\301m" #"\333\346\207?\374!>\237\217\341\341a" #"\222\311$^\277\257\243\30\f\4\234B\36M\323h4\32T*\25\322\3514\301" #"`\20I\222H\247\323\234:u\212\331\331Y\322\351t\247QI(\24j\25'" #"\231\364\365\365\20\213E\310\345\263\24\227" #"\n\344\v9\36|\360\a\374\331\237\375" #"\237\274\374\352\213H\202\200\256\353\304\242" #"QDA$\227\317\375\364\356\254\213\313{\200\2676\0\246I(\32Eo6I" #"&\223T\253Ur\271\\'X'H\"\247\246\247\31\2378A\251T\352\354\252" #"\315f\23\241e\f\212\331,\307\217\36" #"\343\356\273\357&\22\211\20\212F\350J&YZZ\352\24\374T*\25,\313\352" #"\250\b\333\206D\327uDQ\3044Mt\3359a\264\377\237i\232D\"\21\222" #"\311$+V\254 \223Ic\230:\303\303\203\200\305\266m\3270:\266\226\256d" #"\202\207~\364 w\336\365\3174\0325\0\32Z\203D<\361\323\271\253..\357" #"\21\336\322\1\266m\e\1\247\rX2\231da\3414\315f\223X,F:\233" #"\241\247\247\207z\275\316\321\243Gy*" #"\30\342\2037\275\237h(|\306\r\260mTU\345\331g\237\245Z\255\322hj" #"\364\366\366\3224\r*\365\32[\266l!\223Iw\f@{\367\257V\253\324j" #"5\206\206\6X\277~=\361x\34I\222\b\4|\235\321\340\0\325\206\306\261c" #"\307\350\352\212388H<\32\3050" #"\232\324\353Un\276\371F\356\277\357>" #"\202\301 \265r\215\23\23\307\231\231\231\301?\32\244V\253\341\365x" #"\177zw\326\305\345=\300[\32\0A\226)\27\213\204ba$I\352" ) 500 ( #"\214\336\266,\v\325\347\245nXNs\216\2268h\303\352\265t_~\5\330`" #"64$\325C\263\331d||\234\276\276>\202\301 \252\307\343\f\377\0\346\26" #"N\223^X\3000\f\272\273\273\35\215" #"\277\242\20\16\207\251T*\234<y\22" #"\333\266y\371\345\227\311\345rx\275*" #"\252\252\262v\355Z\247& \34!\26\213\20\f\6\251V+LN\214\23\n\5" #"\20D\233/\376\376\377\201m\302\226-[\bx\2\344rE\216\36=\214\252\252" #"\304cI\f\323@\221\334 \240\313\305" #"\313\333~\372m\313b\345\312\225l\337" #"\376\34\335\275=\224\253U\242\321(\365l\276\3237P\327ufgg\31\36\30" #"$\36\212 {\274`\232\354\335\273\227\23'N\340\361xHt'1l\213j" #"\245\206\256\353\30\206\321i4\322\3561" #"\330\226\25\327j\265\316\342\36\36\36\246" #"\247\247\207`\320O\265\352\350\0214M" #"\303gY\224\313%\352\365:\311d\27\361x\34Y\26\31\36\31$\24\n\342\367" #"\372\231\234\234BM\250\b\202\300\235w" #"\336\311e\227]\301\37\376\301\227\334\336" #"\201.\27=\242S=\357 t\376h\275\25\34\375~(\26\245^\327\270\351\246" #"\233\360x\274\364\366\364\241J\n\1\257" #"\37E\22\260\365&\245b\201Z\275\302" #"\236=\273\270\377\201\373x\342\251'\251U\313 \213\314\314\31529;MwO" #"\17\261X\214\325\253W#\b\2\341p" #"\24\325\343!\30\211\340\v\6\321\f\235" #"b\251B]\323\21\5\31Q\24\361z\375x\275^TU%\34\f\321\333\335\307" #"@_?=\311nb\261\30\226n\320\335\335K__\37\266m\267\214\221\310\324" #"\251\31$IFV<\254Z\265\n\217\337GO\177/c\2336\262\377\320~\36" #"z\344\207H\242\210}\216:\320\25\b\271\374\364x" #"\223v\30\377\356\257\363N!\277\351\36(@\333," ) 500 ( #"x\374A\312\3452\202 \340W}x=~\0325\215K6n\346\265\375\373h" #"\226*\324\20\210\aC4\2535&\313'A\260\351J&\221|\n'\247O\362" #"\217\337\374\6\201X\204Xw\27'''\231\236\237C\222$\"\261(\202\30\345" #"\325\3\207\351I&\270\344\222K\210Gc\224JE<\252J&\223!\22\216\221" #"Z<\315\232Uk\321\eu<\252\312\374\364\f\215J\235`(DE\323X\252" #"\224\361x<\324\353U\302\3410\331l" #"\226\325\253W\321\324\r\22\201 \251\323" #"\v\230\246M\"\21d\365\272\225\f\f" #"\367\261s\317s\\\177\343u\f\367\215 \242\310\36tC\3030,|^g" #"\\\231e[\210\302\371\17I\356\31\342" #"\"\247\275\32\2057\377g\313>\263\251" #"X8\247[\341\254O\226~\314\246\323n\270+\311r\3539\0241L\3Y\222" #"1\260\20m\20\5\371\202\237\277\267\316" #"\2\bN\0000\30\f\2\"\237\371\314\257R\2535\210\305\22\324*U\272\342q" #"\364z\215x4L\320\357\245\257\257\317\t\340iujZ\235\337\372\355/pb" #"j\222u\353\327\23\b\6\371\320G?B\243\321@\327u\262\331,\266(\200 " #"\261\373\205\227\230\230\234\242R\253\242x" #"\274\364\366\3662\277\270H4\32\305\243" #"\372\310\246\322\344r\5\212\305\"\341`" #"\b\3130)\344\363\30\206A\255\332 " #"\225Ja\2326\242(\323\333\333\217\317" #"\347GQT\216\369\216n\332\230\266M&\227c!\275\200\250\210\4#A\376" #"\351\233\337\340\371]\317\243\310\nM\275" #"\201\"+(\212\204\215[F\354ra\264\27\246(\210\210\202\210\5\235vz&" #"V\307@\324j\265\316\3779\273\247F" #"\255V\353t\2712\f\203z\243\356\304\340Z\0377\354w\246\256E\372" #"\263\226\24\370|\264#\372\266m\323\325\325\305=\367\334C__\37K" ) 500 ( #"KE\326\255_K\275^#\34v\"\377\242(Q(\24\260l\233p8\314\177" #"\371\257\377\225K/\275\224\\6\317\272u\353XL;J\302\23'N\20\f\205" #"\310\346\363\334x\323\r\330\226\335Z\314" #"\25\306\306\306\270n\3336\16\348\200" #"e\30\310\222\204$\n4\32\r\306\217\215333\313R\261\200$KT\e\r" #"<^/\262\254 K\n\251\364\"\271\\\216J\245\354\244\"\5\1Y\226\221$" #"\211X,\206\33640t\223d\262\213l&K\245\\c\355\332\265\b8U\214" #"\272\241#K2 `Z&\242x\276\222b\367\4\340\362&\bg\336\230\226\331" #"2\2\2\242(!\211\22\"\2\206\241\243i\32A\277s\332\324u\375\234\1<" #"\262\252`\230F\247\356\246\\.\23\b" #"\4h4\352\350\315&>\217\27\335\320\221\304\v\vb\277m!|{\4\267," #"\313\364\364\364055\305\372\365\353\231" #"\230\230@\323\264N[\356\203\a\17\322" #"l6\361\373\375\f\r\rur\367\221\210\323\276+\30\f\22\215F1M\223'" #"\36\177\234\311\311Ifgg)\225J\35q\221Vo\360\344\223O2==M" #"0\30D\323\233T\253NG\241p8L(\24\302\347\363a\3336\315f\223\305" #"\305E\346\347\347\231\233\233\3030\f|>\37>_\0UU\21E\221t:M" #".\227\243Z\255R*\225\30\37\37'\233\315\342\365zY\\\\\344\236{\3569" #"SN,\212\235c\233\246i\27ts].R\316r\360\345\2636\220\263\343m" #"\212\254\20\364\3711m\253\243\236m+" #"c\313\3452\246i\262\260\260@6\233eff\6\237\317\307K/\275D*\225" #"\302\353\365\262TZzG\224\254\202}" #"\366\271\343\307\320h4\316\331Iw\356\334\311=\367\334\303\r7" #"\\\307\361\211\243\344\363Y\300\351\350[.W\211\307\343\234l\251\366" ) 500 ( #"\20E\262\331,W_\265\225\303\207\17" #"\223\354\355\351\f\364\330\375\302\36\32M" #"\215\313\256\270\2\301\266\311f\263\364\367" #"\366\321\327\327\307k{_!\34\16s\311\206\r\274\372\352\253d\27ST\253U" #"\272\272\342\244R)dQ\302\26\240\253\247\eI\221\31\34\34D\222$\6\6\6" #"0\214fg\276@\255V\351\30$M\3230L\275c\254\260\5&\306O\341U" #"\274\374\301\37\374\1W^y%~o\240\343k\235y\331\316~\373\272\ex\301" #"/\201\313{\232\363\255\36\301\3318\333" #"Rw\307.\330\35Q\2333\a\303\203(8\317V\251\\\"\235N377G" #"$\22\341\301\a\37d\373\366\355\314\317" #"\317srb\22\325\243\360\275\357}\217" #"\261\2611\206\206\206\360\373\374\27\\\314" #"\366\266\316\17\206a8;\261\246a\3336\3\3\3\224J%R\251\24\301`\220" #"F\243\326I\0016\233\6\225J\5\277" #"\337O\251T\"\24\211\340\367\373\211F" #"\243\214\214\214\360\354\363\333\271\346\232k" #"\210\307\343l\333\266\215\305t\312i1" #".\313\35\2311\300\314\314\f\375\375\375" #"LMMQ\257\327\351\e\30\300\347\361" #"\320\333\333\315\211\23'\360\252\36dUazn\26\5\eEQ\310\347\3634\233" #"M\362\371<\301\240\37\217\307C__" #"\37\221\210\217x<N:\235\246\251\v" #"\204\303ar\271\34\311\256n\326\256X" #"\207\242x8r\344\b\311d\222\261\365" #"\e\220%\231Z\275\346(\22\345\v\37" #"\177\346r\221b;z\231\366\330:\241" #"\365\247$I\30\255f\271\246ir\374\324\t\236z\374\tlQ`x`\220\257" #"}\355k,--\261y\363f\256\272\352*v\357\336\215\246i|\342\23\237\340" #"\306\eoD\222$\374>?\271|\216\256x\362\202.\361m\31\0'\0" #"H\247`G\222$\22\211\4\263\263\263\254\35]M>\237u\224u^/\202" ) 500 ( #"\340\34\371\275\255\0357,\bD\"\21\300\t&F\243QR\251\24\261X\214`" #"8D4\32\246^\2573\266a\214\255W_E\241P\340\311'\237\244V\253\321" #"\323\323\203\327\353\243^op\352\344$\315f\223\241\201\1TU%2\24#\221" #"H\340\v\204He\322\244SY\n\205\2]I'N\341\367\373\361\371<\24\213" #"E\f\303\240T*!INEbS\323\251\325\253\364\366H\234>=\207(\312" #"\244\323Yr\271\34\237\370\204\305\350\350" #"(~_{&\342\353\3-n\371\260\313\333\247\355Z\266[\345\351\246\201a\30" #"X\226\205m\333\374\311\377\365'\314\315" #"\317\323\225HP\253\327\271\377\376\373\271" #"\365\326[\331\264i\23;v\354\340\336" #"\373\357#\32\215\362\203\37\374\200\265k" #"\327:\203y\24\225J\265\322\222\262_X \360-\r@\271\\&\24\n\241i" #"\32\36\217\247\243\322\333\274y3{\367" #"\276\2\320Q\355\255]\273\226W_}\215\245\245%\244\326\347%\22\tzzz" #"\320u\2355k\326\320\323\337G\255VC\3234j\225*}\375\275hz\263\363" #"\265K%G\324\263y\363fg\347\357\356\341\352\253\257F\225e<\36\17\371l" #"\226\343\307\217\363\364\323O\263\260\230\341" #"\272\353\267\21\b\5\31\32\32b\305\212" #"\25\230\226\216\242(,--!\212\"" #"\311d\222b\261H\263\331\244\273\273\233" #"J\245B,\26CQe\322\213)\260\240T*r\3155\327055\305\211\23" #"'H&\223tw\365t\312\206]\\\376]\bNM\214\252:\"4\323\266\230" #"\235\235e\377\376\375\354\333\267\217\251\231" #"\31\302\321\20\3\303C\34>p\220b" #"\261\310\r7\334\300\350\330\30_\376\362" #"\2279\264\377 [\257\333\306}\367\335GoWw\347\313\232\226\371\216" #"M\300z\313\257\22\n\205\250T*\370|\276\316\2775\233M~\356\347" ) 500 ( #"~\216Z\255\302\304\304\4==IB\241\20\212\242\20\217\307\31\31\31arj" #"\212t:M,\221@Q\24\n\371\2\215F\3\303\266P\24\205`0\210\327\353" #"%\225J\321\225L\220Z\\ \22\16\261pz\236\271\331\31\302\241\20\227\\r" #"\t\242\rcccD\"\21N\237>\315\320\3200\37\377\344\247\260m\233B\241" #"\3003\317<\203m\333\34;r\24\333" #"\266\351\355\355\245\277\277\237\256x\202X" #",F\241\220C\221dV\254^C>\237'\32\216\220Mgh6\233D\243Q" #"\226JK\310\262\302\341\303\a\351\356\356" #"\346\207?|\0\323\324\371\304'>\205$8\1\234z\243\216\317\353k\31\4\a" #"\303t\254\270Gq\352\tl\333>GYh\3336\232\246\341\365\272\365\6\357f" #"L\323\354\324\225\274\236\366kZ\257\327" #"\317y\376\333\345\350\235\354\230e!\210" #"\"\365Z\r\237\337\337\t\f\2657\315" #"l\336\231\250\365\374\316\235\214\214\214\360" #"/\337\372\26\e6l`hh\210\37>\362\20\210\2\375\275}\374\321\237\3741" #"333\374\371_\375%\345J\205\377\364;\377;7\337t\23\321h\24\255\251" #"\341Q=\224+e\202\301 >\2173\23\323\343q\244\366\201@\0\3234;\255" #"\370-\313z\303\364\356v\32\322\343\361P\255V\361z\275?\231\v\320NI\4" #"\2\0016n\334H<\36\345\256o\337" #"\211,\313\235\201\241\301`\20A\20\310\345r\254[\267\256\323\333OUUdY" #"FUd|>\37\341p\230h,Lt)D\"\221\340\350\321\243\34;v\214" #"\376\376~g\a\356\356&\223\3110yb\202]\273vq\374\370q\202\301 \353" #"\326\254E\222$\342\3618===\334p\303\rtww\263\270\270\300\304\304\4" #"\231L\6M\323X*\325\360x<\254_?\306\322R\301I)Z\26+V\f\23\b\4\220" ) 500 ( #"$\211z]#\0304\t\207\243\344r9\32\215\6\243\243\243\274\370\342\213x<" #">>\372\341\217bZfG\30\344t;\266\221%\31A\20P\2253\307\273\366" #"\203\3246\2\202 t\216\177.\357^\316^\374\355x\270 \b\235\3024Yv" #"\236\327\366I\30\350\30\365j\265\352\b" #"\344\374~\226\226\226\210D\"\234:u\212\276\1\247_F\"\236@7\r\nK" #"K\274\370\342\213l\337\361<\345r\231" #"\336\376>\366\356{\215\355\317=\307\352" #"\261\265|\370\203\37\346\272\353\256c\373" #"\366\355\354|~\a\321h\224?\371\243" #"/\21\215F\371\363\257~\225P(\304\2557\275\237t&Mw\3229\t\244R" #")zzz\200s\323\364\355\362\372v" #"\274\256\375\263\264\177\266\366\347\372\375~" #"'\260\377vnR\373\341v\252\361\2" #"\2003\323\357\311'\37\307\347\363\221N~k\267\354\0\0 \0IDAT\247" #"I&\223N7`QD\327uB\241\20\246i\222H$H\245Rx<\276N" #"4T\3234\347\250\337\250\222H\304\t" #"\5|\250\262\310\354\364)\342\261.\32" #"\325\32\341@\200\305\305E\312\3452[\266l\341O\277\374\25dYfrr\22" #"Q\24\t\6\203\254Y\275\232\205\205y\36\270\357~|>\37+W\256\4\313\"" #"\22\211P\253\325\310f\323<\367\3643" #"D\243Q.\333|)\237\376\364\247\371" #"\352W\277\312\272u\353\250\327\353\224\213" #"K$\22\t\352\365:\261X\244s]" #"\325j\225\335\273w\322\325\25\347\312+" #"\337\a\210T\252UdY\306\333\232\206$\211\347>8\266mw\272&\265\21E" #"7^\360n\247\35\245\327u\35]w\334\307\366s|vMJ(\24\352\324\240" #"\264\313\323\275^/\242$QX*\342\367\3739t\3440]]]|" #"\353\333\337faa\201\203\207\17\221J\245\250T*|\354c\37C\267L" ) 500 ( #"\236\333\361<\271\\\16Q\24\371\360'" #"~\236;~\345\227\20\4\201\377\376/" #"w\262\264\264\304\372\261Q~\375\327\177" #"\35,\233}\373\366!+\n\3\3\3\200cx\354VP\261\247\247\247\265.\35" #"\275\212$JH\262\200\243a\2630-\35\323\22\220%\331\321\373\3434\355m6" #"5'\373\340\365\1\366\333K\3\266i" #"6\233\230\246\3319\16\325j\25\376\352" #"?\377\5\211D\f\257\327\313\334\334\34" #"\375\375\203\314\314\314\260\377\340A\32\215" #"\6[[\263\4\222]=\216U\22\205" #"\316Q\244\270\224\347?|\366\263\24\227" #"\362\255\331\203\31\374\276 \305b\221\261" #"\2611\366\355\333\307u\327]\317\35w" #"\334\201i8\2279<<\354\b\216\20" #"\261\260\220\20\331\376\334\323l\332\264\t" #"\277\337\317?\377\367o\222\311d\360x<\370|>dYdbb\202|>O" #"OO\222\313/\277\234\215\e7\362\330" #"c\217\321\335\335\315\334\334\34}}}\24\213EdY&\223\311\21\217\307[b" #"\242\n\237\377\374\177\344\312\313\257\244-" #"\f\222D\211z\243\216\330\22`x\325" #"\226l\330\262\260,\vA\20:\17\217" #"\313{\213\327\273qgs\266\e\320\216\354\237<5I\256P`fn\226\207\37" #"~\230l6\313+\257\274\302\310\310\b>\237\2175\353\327166F&\227\345" #"\341\207\37\346\360\341\303\254]\273\26\4" #"\201[n\271\205m\333\266\261s\317Ng\241\213\"k\326\254\3012L>\367\271" #"\317\361\347_\371*\237\377\374\3479z" #"\3500\277\361\e\277A\320\353#\21O\240\2654\3\206ap\370\360a.\277|" #"\vZS\243P(\320\333\323\v@So\242**\206it\334\225\366)\366\354" #"\217\353\206\376\366\f\300\233\335\30\323" #"4\251\327\253|\377\a\3670=}\n\237\317\207\242(\330" #"\266@\261Xd1\235\346\245\227^\342\263\277\366kLN" ) 500 ( #"N\322\225\350\246T*ab\343\365z" #"\261,\213\331\271i6\214\256\245\273\273" #"\213\331\331y2\231L\247\343o,\232\340\322K/\345\216\317|\6\3030X\263" #"b\235\363B45|\252\17\315\320\220\5\220D\21\263\251\343\3658?p.\227" #"#\32\215R\\*\320\223\354\341\e\377\355\e\24\213yn\273\3556b\261\30w" #"\336\371\317\235~\3CCC$\22\t6m\332\304}\367\335Gwww\347\346" #"z\275~\246\246\246h6\r~\377\367" #"\177\237\261\365c\330\330\3306\235\274-" #"\210\347\344a\333G\260\263\217\222\356\270" #"\362\367\36\206at^\267R\251\324y\266\1N\237>MOO\17\273w\357\306" #"\27\360\363\377\374\375\337\201\344\4\233U" #"Ue\305\212\25X\255\\\177:\235\346" #"\300\201\3\354}\3555\222\311$\202,\241\252*\267\337~;\3\3\3<\377\374" #"\363\2442\213\24\n\5>\374\301\17\261" #"u\353V\16\37<\350\b\325\322\31~" #"\351\27o\347\372m\327\242(\n\246\326" #"\304\347\365a\264N*\217<\362\b\215F\203\317~\366Wh\213\21\362\205<^" #"\257\267\223\301ZL-\22\b\4\3204" #"\215D\"\361\206\200\266\326\324\336\276\16" #"\240\35hh\323\256\17\30\35\35\245\\^bjj\212\201\201\1b\2618\202 " #"p\360\360a\206\207\207\251T*\210\242" #"H\243\321\3004M\252\215zG\b\221" #"\317\347\231\233\233C\222\4N\235:E" #"\255\346\344\336c\261\30\371\\\236\215\e7\262bp\5\0\271b\216p8\214O" #"\365a\330\255\361\344\222\212\200\205\342\221" #"\0\307\317\t\207\303xTO'n\361\253\277\372\253x<\36\276\362\225?e\343" #"\306\215\254Z\265\212H$\302\v/\274" #"\300\312\225+\221$\211\37\375\350G" #"\330\266\323U\30\34\35\266m\v\214\216\216255\303" #"K/\275D\241P`tt\224x\324\351\"\244\e\272\23" ) 500 ( #"\341\225}\2359\210\202pn\216\327\345" #"\335\217\246i\210\242x\316\250\373\263\215" #"v8\34\356\274_,\26i4\32|\355k_cvv\226\235\273w\361\301\217" #"~\4_8\210(\212,\246R\274\374\352+\24\212EGuZ\255 \v\"\266" #"( \310\316\24\255[\256\271\205FS\343\301\207~H*\225BQ$\314V+" #"\275P(DWW\27w\337}7+GV\360\376\233nA\2L\333\371xS" #"o\242HN\307\254\353\257\277\236\177{" #"\370!2\331\f'N\214\263\365\232\255" #"LOO\263\264\344\254E]\327\271\356" #"\272\353\370\3467\277I\177\177?\267\337" #"~;\341\220\363\263\350\206\216\"+x" #"T\317[\327\2\264\243\205\355\200\226eYT*\225\326L>\221`8\300\217~" #"\364\20]]](\212\202\256\eN\276=\233\245R\251\260q\323\246VsO\34" #"=@+8\346\361x\220$\221J\271\204$\bH\242\200(\b\344\vN\336\376" #"\322K\267\360\231\317|\6d\221F\263A4\30C\22$l@\22$\307\325\21" #"@\2\212\305\2\232\326$\340\17\242\264^<'@' +\22\262$\363s\357" #"\273\262e\254*\314\315\315\363\341\17\177" #"\bA\20\250TK\274\266o/k\327\254#\34\16S*\225\20E\221l6G" #"\263\331D\327\233\354\335\373*\207\16\35\246T*\21\f\206:A \277\317O!" #"_t\276_\353\376\264\215@;\336\341\272\2\357n\332\261-p\214A\333\205k" #"7\243\221e\231T*E \20\340\e" #"\337\370\6\307\217\37\347\370\361\343\\y" #"\345\225\334r\353\255\234\234\231bfn" #"\216\275\257\275F*\233\241Qo\20\212F\260l\eA\22ih\32c\e7`" #"\3316\233\267la\375\350(\373\366\357\247\241i\34>r\204_\373" #"\334\257q\365\326k8|\3700\267\334z+\341p\230\27_x\201u" ) 500 ( #"k\327r\335\266\353\250V\313xU/\266e:\317tK\376\336\250\327\371\372?" #"~\215}\373\367\341\367\373\350\351\351\341" #"o\377\366o\31\37\37\357\374\\\217=" #"\366\30_\377\372\327)\225J\334v\333m\35=\216eY\235\361}oy\28" #";\222m\3336\242(v\242\241\266mb5\r\252\2452W]q\25\333w<" #"\317%\227\\\202i[\350\272\316R\271DC\327\25075\346\27\347I$\22\224" #"*%\274^/\361x\234pd\25\323''8|\340 \361d\27\242(vt" #"\320[\267n\355\2443\202^\307r\231\330(-\337_\25%D\240R.\21\213" #"\306\320\r\275u\225\"N\20\304F\22\5$A\3060\rB\301\b\226mq\353" #"\373?\300\2157\336\214$\t\354\337\277" #"\237p8\312\215\177s\vw\336y'" #"\205\302\22\371|\36\333\266\211F\343d" #"\263y\302\3410\311d\17\206nr\377" #"}?\340\341\177{\204m\333\266\261i" #"\323fV\f\217\340\367\373\21E\21\277" #"\327\207 \211\255\321\352\374\204\v\337\352" #"\\\367O\366\366g\210\326}\373I\377" #"\213\203\325r\305\336\344>\331bk\324" #"\375\271\377n\267\356\237\335\372\236\325Z" #"\225\351\351i\4A \20\bp\342\304\t\236\337\271\223F\243A>\237'\235N" #"#\3132[\267n\345\372\233obff\206\177\376\327\273\210&\0234u\35o" #" \330\351eY\251\324\360x\375\204#1BkB\354\331\263\207\341\225+X\275" #"z5;w\356dhx\200'\236|\222\277\376\233\277\344\232\367]E&\225\306" #"n4\t\371\374t\207\22\374\323\377\373\r\24YF\300\302\37\360bZM\26\27" #"N\223L&\361{}x<2\217>\372otuwq\362\3448\36\217L*" #"\265@&\223\342\246\233n\242\\\256\222H$8" #"|\3700\277\365[\277E(\24\242\247\247\27\263\23" ) 500 ( #"\243\222\0\1I\224\177\262 \340\e\261" #"\250\346r\374\366\27\276\300\330\306\215\314" #"-\314\223/-\361\241\217}\204\37=" #"\372\bs\v\247\271\376\306\e0L\223\246\351D[\275\212#\212P=2\261P" #"\4\277\244p\337\275\337'\225I\23\214" #"\204A\220\270\356\272\353X\263~=\277" #"\360\v\277\200Wv\374\31\2213r\312" #"s\32\230\374\230\353:\363\202\277=\312\3452\247N\235B\24E6m\332\204a" #"\30|\367\273\337e||\234R\251D\271\\\246Z\255R(8%\311 \22\b" #"\370\270\361\206\e\270\342\212+\270~\333" #"\265\204\3431\260\241\331tz\26J\255\323H;h\244\353:\246m\341Q=\324" #"\3525\374>?z\263\211\252\312\234\375" #"\2006\365\6\252\342\345\355\31\200\3455" #"\4?\356\341y\303ks\236\247\314\320u\4\333FR\224\216~B\220\234\264r" #";2_;G\213\341D\264m\4tSC\24A\21\234\354\314\331\206\300\266\f" #"0APDl[@\20l\254\326\3776\21x\371\225\227\211'\22LOO\363" #"\360\303\17\243\353:\251l\206\265k\327" #"2==\213\327\357cll\314\231\177\331p*K\375\241 \226eu\\H\217" #"\307C\245Ra\325\3125,,,\22\216FP\25/KKN\206\351\376\a\37" #"\340\332k\267\322\333\327\303\304\3048\36" #"\237\314\370\211c|\344#\37\346\213\277" #"\363\273$\274Q\16\368\300\226\315\233" #"\261Z\317\253\204@\265^%\340\v\0\6\367\335w\37\363s3|\341\v_@" #"\222$j\265\n\177\361\27\177\301\321\243" #"G\t\207\303\324\265\6\237\374\344'\361" #"z\275\204CQDQ\346\201\a\36`\367\356\27X\267n\35\177\367\267\177O_" #"\357@\353n\213T\252\25\202\1\307E\276\260\b\225-\22\360\6Y1" #"8L\245X\242\277\247\217'\236y\206\265c\353\235\342\a\1R\3514\245" ) 500 ( #"j\211h<A2\231\300\324\r\4\4d\331\353\364\5\24\232\334|\363\315<\372" #"\370c\324\233\32\261h\30M\323x\337" #"\373\336\347\24\354\274\356\n;\213\377\307" #"4b8\367\263\336\336\342p\"\274\0016o\336\302\322\322\22\251T\6UU\371" #"\300\a>\304\355\267\337\3219\32\372|" #">,\313\"\227\313\221N\247\251V\253" #"\34\336\277\17\257\242v\202E\262,#!t\26?\234I\aZ\226\205e[4" #"\365&~\237\37\255\251a[\0066\22\246\331l\25 Y-\367\305\352\30\t\207" #"\327w-\372\3319\5\310\262\354L\222n\305Q\274>_\347uU\24\305\251\22" #"mE\261\333\ra%Yi\335K\35\277\327\213\205\205\336t\374yUv\214\201" #"eY\235\327\241P\3141q\362$\a\16\34 \30\t\23\357J\260c\307\16\16" #"\34:\302\206\r\e\30\333\264\321\318" #"\223\313\222\311d\2506\352\334\372\301\17" #"0{z\236\247\267?\307\266k\257g\305\212\25\349~\214c\307\216\261a\363" #"&\252\345\n*\260z\325ZR\251t+\332\36`~~\201z\275N:\235\345" #"\232\367]\303\320\320\20\345\245\"\202`" #"33}\212\315\2336\321\323\35\247\220O\323\335\37!\31\21321~\234\325k" #"V9iIEB\225E\226\2262\370\274^\"\341 \377\366\332\253\354\332\265\203" #"\311\311\223L\315L#\311\260r\365\b" #"\243\243\e\230\234\234d\367\356]|\350C\37\246T*q\357\275\367255\303" #"\340\340 \277|\307\257\320\327\333\207\331" #"\32\323'\211\340ie\256\232M\353\2" #"\r@\213\246f\360\350\23\217\363\331\317" #"}\226\253\257\276\232=\273_`\363\25\227q\357\17~\300\330\206\215T*5B" #"\241(>\217\237\252Qu4\321M\223J\255D)\223c\305\360\b" #"\266-\260T,3\320?\204 \b\254]\271\366\374\337\364\35t\255\333" ) 500 ( #"y_p\342\24\212\2428\242\245\226\373" #"\343\361x\316)\336\b\6\203N\260\321" #"\343\341\212K7;i\311v\20\251\25" #"\227\260\332\25\207\202\340\304FL\3\325" #"\343\341_\277\375\257\370\375~\256\271\346" #"\32\247\36\302\357\4VM\303@\226D" #"\f\303\350\210\255\374\276\340;\367C\376" #"\224\370\261/\303\333<W\232\2552sQ\24Q_\247\\\263m\e[\0\3032" #"Qp\272\353\250\36/\246e\322\324\235\262\331x<\6\200n\31(\252\17\21(" #"\24\nT\253\325Vs\232\32\337\271\373n\346\346\346\230_8M<\331E4\26" #"\343\241\37=\314\340\3100\237\376\364\247" #"i4\32\374\325\337\374u\253\356\276\312" #"\350\350(K\245\22\0?z\360\1~\357\217\376\210|\261\300k\373^\305\26$" #"\247\f~\334\221\214G\272c\34:t" #"\210\221\221\25\210\242\310\236\335\273\351\351" #"\351\241+\21gii\211\301\201\36L" #"\275\211\336lP\253\224\370\205O~\202" #"\337\373O\277\315#\317\374\e\245B\36" #"\243W\343\336{\276\307\365\327_\217\"" #"\212\34<|\210\335{vr\315\326\255<\363\3143Nj\361\325\2278p\340\0" #"u\255\201\337\357cx\345\n|j\220\233\337\177+\17>\370 \e7nd\367" #"\356=\314\315\315\361\350#\217\23\b\4" #"X\273v-\237\373\334\347\271\341\372\e" #";\367\262\375\214K\222\204i:\231\274\vs\1lh\344\362\349x\210O\377" #"\322\355\374\362g?\303\330e\233\271\367\376{)\327\e\370#\1\2\2410s\v" #"s\204\202\21\326\255_C(\24r\252\231<^\4lr\247S,\345\262,\244" #"\322L\317\316\262i\323&\6\207\207\370\342\37\376!~\277\377\r.@[f\363" #"N\255\377\266\\\23\234\224O(\24\352\370\357\355\34j\373\357\226eu2" #"\5\36\217\247\265s\275\316\3158\353\302\332G\377B\241@4\346\304)&" ) 500 ( #"''\371\362\227\277\314\372\365\353\371\370" #"\307?\316@_?\261X\f\3234\t\4\2\30\206\321\371\236g\247\243~<\357" #"\222S@\333\207\177'\222\37\302\231/y6\215V\376Zkj\30\206\201\337\37" #"\240n\324\361\310\0362\371\f\351\205E" #"\206\207\206PD\211\347\236{\216]\273" #"v\21\364\a\310\25\234\316Q\301H\30" #"\323\262\bE#\364\367\367\263T.\361" #"\17\177\367\367\314LLr\371\326\253\310" #"\347\363\344r\5\266m\333\206 \212\234" #":u\212K\266\\J&\223\301\26\240" #"\267\267\227H,\301\342\342\242\223\32\24" #"%\n\205%\214\246N4\32\243\\.S(\24X\261b\5\315f\223\r\353G" #"\231\231\235\306\266uf\347\246\271\343\216" #"_d\353\266\367\361\324\323\217\223L&" #"\271\342\322\3138}j\206\257\177\355\e" #"\254[\267\216t:M>\237\347\341\207" #"\37\347\322-\233\350\356\351\"\231L:" #"\243\370t\235k\266m\243P(\20O\306ID\23,\246\26\370\372?\374#\277" #"\373\273\277\313]w\335\205\307\343!\340" #"\17\221\313\25\370\374\347\377#w\334q" #"\a\222 \267\234\2463\0025\323\2641" #"\f\347\331\274`\3\200n\261g\373v" #"\36\372\321\217x\342\331\247\371\17\277\376" #"9\246\346\246y\352\271\355$z\273\30" #"^\261\222\302R\236\302R\231d2\301\352\325\253[\26\310\244+\32C\266Lv" #">\267\35A\22\311\346\363\254^\275\206" #"5\353\326\362\277\376o_\300\37\b " #"!\265\374\376\237\216\1h/\262v\32" #"\320\2312tF\307\337\26\370\0\347\30\3p\f\204\334zLm\321\211\36K\257" #"[\260\206aP\252\224\211Ec\224+e,\301\221a>\365\324S\374\365_\377" #"5\327o\273\226[o\275\225\261\2611" #"\272\223\335\35\221\6\320\21\36\235\217e\37n\372\16.x" #"\313\262h6\233\330\266S\336\335\276\227\355\324q0\20<\247" ) 500 ( #"K\223\5\334\375\375\357042\314\334\314,/\356y\301i>\23\f\241\266:" #"McZ\324\264\6\242$1\277\270\340" #"\314\216\350Jp\317\367\357\345\325]{" #"\270\366\346\367\343\365z\231\230\230\340\203" #"\37\374 \345J\205r\271\314\302\302\2" #"\243\243\243\b\262\344t\226\222Dr\271" #"\34\335\335\335\204\303at]\247\\\252" #"2?\277\300\272u\3538ur\222\376\376~\"\241PGB\254H\"\206\331\344" #"\344\311\343\254Y\275\212\277\374\253\257p" #"p\377^>\365\251\237\347\346\233o&\331\325\305\363O>G\265Z'\24\f\23" #"\b\4\350\37\34\240\273;\211\327\357gtt\224`\253\320.\32\215\3234t\16" #"\35:\304\226+\266P*\224\370\3067\376\221\236d/\331T\32EQ\30\e\e" #"\243^\327\370\235\337\371\35\256\271j\e\0\206i\242\353&>\257s\322lyZ" #"X\226\323\21\370\302]\0\333\346\232\233" #"nb\347\256]\224\313e\216\349\302" #"\347\377\227\337\344\310\370\t\346\27Ns" #"\365\326m\f\f\16\262\260\260\200n\231" #"\310\262\27\303hR\2514\bx\233x" #"\5\e\257\337\307\351\323\247\235\202\n\255" #"\1\222H(p&\377j\363\323\213\177" #"\267w\330\263\265\373g\333\304v:\17" #"\234\266Mg\213{\234\216C\2347\202}jz\212/}\351Kl\333\266\215\r" #"\e6p\313m\267q\360\320A\372\373" #"\373\371\315\337\374M~\370\303\37R\252" #"VX\271w/?\377\311O\220\214'\260\4\20m\220[\206\340]\233\3x\a" #"\26\277a\2369\345\230\246\351\344\344\325" #"3?78\247\264h$\212\r|\353\333\377J\245Raxx\30\23\233\311\251" #"S\354=\260\37]\323\350Jv9\212\324\231Ygpl_\37\26333\234^" #"X\0I\344\266\17~\200\371\371y\376\363\177\371\277\321" #"t\235\253o\276\21EU\311f\263\334~\373\355\24\213" ) 500 ( #"Eg\207\215\307\211\307\3434\233Mj\265*~\277\37\313\266Y\265j\25\371|" #"\236j\265\312\344\344$\311\244S\4W" #"*\225\350\351\351q\344\271\272\356\324\213" #"\210\22\371\\\212\245R\201\217\177\364C" #"l\3348\306\37\377\341\357\363\257w}" #"\233\241\241.\314F\215W^\330\215G" #"\221\30Y\277\216P4\302\306\215\227\340" #"\361z\35\367\322\347ub\21\365:\202$\222Pdv\355|\2765\n\317\313\217" #"\36\276\207t.\317\350\27216o\334\304\374\374< r\367w\356\246\24150" #"m\223ba\211D<\211$\235y\241\332\373W[\245\376\266z\2\236\27A\304" #"n4xm\377>\216\237\30g\342\344I\346\27Ns\311\246\315\354;p\200H" #"$J \20$\32\213\23\b\205Pd\17\202$\242(\36\374^\37\242ea\352" #":\247NM\341\361\371\220e\25\325\343" #"\245\247\277\207@(\200*\267\362\353\330" #"\235\337v\353-\357p\261n\263\331\354" #"\354\362\262,\267\324\216\365\216ah\177" #"\254}\np\272\nY\235Z\0\2415\16\275\215i\232\304\342qn\273\3556^" #"z\365\25\276{\317\3670\f\203\241\241" #"!\16\35>\314\211\23'\30\31Y\311\314\354\34;v\354B7MDQ&\24" #"\211`Y )\n\242 \265j\20\2057}\333\352\336\276\274\274\231!x\233\27" #"%JN\247\34\30340L\23Q\0221m\233l>\307\324\324\24\252\252\362\340" #"C?\344\361'\237\340\325\375\257137\213-@C\3238t\3440\271b\21" #"YU\235\276\21\265:\213\v\213,\25K\230\266\215\326\3249=\277@$\36\347" #"\3\37\370 \17?\362(\377\370w\177\317\352\321Q6l\332D\271R%\263\230" #"\241\\\251r\354\330q\306\3066044\214$\311d\v9B\221" #"0CCC\316\34JC\247R.3<4Djq\221H8D\255" ) 500 ( #"Z\307\353\v\20\16G\b\370\375\244\323" #"i\272\0221l\313`\352\324\4\361D" #"\24\321\266\251\327\312|\357;\377\37\365" #"j\231\341\301nTE&\354\17\322\337\323\313-\267\334\302UW_E$\32q" #"bL\266\211 @\255\336\240\267\267\27Q\222X\273n-;w\356\342\225W_" #"\243^o\260\347\305\27\21%\231\367]" #"\371st\305\273\330\267w\37\37\373\330" #"\317\363\305/\376\1\206i\22\360\5\21\5G\337 K\n\2\202\243Kx\223\324" #"\364\205\e\0\e\362\331\f\323\323\323\330" #"@q\251\310+\257\274\2\242\210n\30\324j5\2\301 }}\3\250\36/\371" #"|\236J\265\212i\232\224\312K\210\226" #"E&\225b\366\364<\361\256\4\221X\234p\324\t\304]v\311e\347<O\355" #"\215\366\314C\177\341\365\372\365z\275S" #"\310\3\347\6K\316>\25X\226E\275" #"^\a\316T\220\331\266\215$\211\b\242" #"\330i\362\3206\20\272\256\323h\225p" #"V\253\325\216\0\352\225W^a\377\376" #"\375\4\202A\n\205\2\262\254\260~\375z\24Ue~~\236\227_y\3059\n" #"\16\f\20\n\204\316{\355\347\336\213w\21?\356\202^7s\2\301yM\353\215" #":\271\\\216T&C6\227\343\324\251" #"S\354\330\261\203G\37\177\214\303G\16" #"\223\312f:}!\343\3618\323\2633\314\316\314\"H\22\222G!_,v\32" #"\325`;\256\223\252\250\370|>\374\301" #"\0\227_y\5\333\237\337\316w\276\365-6_\365>\302\321\b\317=\3768\233" #"\266l\341\367~\357\213\374\312/\3772" #"\345r\231o\376\303?\260T\255\262f\315\32\264VFaaa\2415\226Nd" #"xx\230\211\211\t\n\205\2\221H\204" #"B\241\310\306\261MTkU\312\245\22\311D\f\255Qcq\3614\303\303" #"\3\274\374\302\v\324\252Kx\24\211\376\276n\260L\"\241 W\\v\31" ) 500 ( #"\227l\332Doo/\213\251\24s\247\27\30\32\32b\315\2725<\372\350c\374" #"\322\35w`\232\26\371\342\22\311\236n" #"\356\277\377\1f\347\27\360\373\375\250^" #"\37\252\352\301\37\b`Y6\251\371E" #"\376\364\313\177\312G>\374QdE\306" #"\253z\1\201\206\326\300\353\361R*\227Q=*\246y\246\200\255\\)#\n2" #"\222$\276\3\6\0\v\277\327K\177_" #"/\377\364\317\377\204\242\252\370\3\1\f" #"\303d~n\216\256\356^l\4\272{\272i4\233LO\317\240\e\6\262\352A" #"\225\24\262\213\213xU\225S\323\323\304" #"\343]\b\222\210\254\310,..\362\334\316\355\349~\24\331##)\22\263\263" #"38\345N\26\36E\241\336h\240\310\27Vr\253(JG\r\326V\360\265i" #"OA\226$\211j\253\32\260\0350lW\217\331-\321\323\356\335\273\21D\221x" #"<\16\200\331\352{ \n\"\373\16\35`\357\336\275\324\353u\206GF:q\207" #"H$\202nYds9\206F\206\261\5h\352:\231\\\226CG\16S\252\224" #"Y\271z\25\202\340\354\222\232\331D\24" #"\245N\317I\1\260[]g\317\246\335" #"]\366\355\210\221l\333\246^\257\267T" #"\234z\307\270\265\r\343\331\322\346\366\275" #"i\e;Q\24\35\247\22\1\313\320ij\32\262,uNA\325J\3051\240\255" #"\305nX\316\30\367X\353\36\345\vy" #"\36y\3741\366\378\300\256\335\273\235" #"]~\357^\236|\352)L\313\361\335" #"\263\371\34\365z\335\31\b\2535\230\232" #"\236\"\24\16\343\365z\321\232Mt\313" #"\304\347\367\223N\245\210F\"\210\202@" #"\262\273\233\325\253W\243\250*\243c\243" #"<\364\320C<\371\344\223\254\337\270\221dO7\351L\232\217}\352S\\~\331" #"e|\374\347?\301\216\35\273\361x}|\372\227\177\205" #"\37<\370\3\26S)n\276\371&N\235rj\\r" ) 500 ( #"\271\34\3}\275,\25\213\354\337\267\227" #"k\256\276\212\275\257\276\302\206\215\ei" #"\352:\325r\225P \200\317\347\3054\35]\307\221\303\207\350N&X12H" #"\300\357c\377\276\327\210E#\364t'" #"\361z}\354\333\273\217\342\322\22\376`" #"\30\217\317\217?\20\340\340\301C\354x" #"~\27\353\326\217\362\304\23O\2425\233" #"<\373\334vT\325\213?\20\240^\327" #"\320u\203\200?\200\317\353#\34\n\363" #"'_\372c\22\261\204\243\261\361\370h+e$Y\3060\314V\337@\341\234\356" #"\301\36\325Q\341\302;q\2\300\6\tlL\356\373\376\375TkU\32\365\6\36" #"\217\212\352\365\322\333\327\203 I\b\242" #"\263\207\253>/\266 \3204t\342\261\30}]]LMOaZ\26\205\322\22" #"\252\252R(\26Y\275v\r333d2\31\216\36=\212\"+\224\312K<" #"\366\310\243\314\315\317\223\313\347X\277f" #"m\247\317\332O\213\366\202hw\e\206" #"3\225\177^\257\27I\22\231\236\236f" #"||\234\361\361q\352\365:\257\355\337" #"G(\24\"\32\211r\367\275\337c\307" #"\216\35\316\16%\313$\22\tg\27\233" #"\236\346tj\21\237\317O(\24\"\233\315v\232:LNN\242\353:'N\234" #"pJ\255{\222\234\234<\311`\337 \0&&66\215z\35\257\252vNA" #"mW\344\354\270\305[\321n \321n\370\332\306n\rum\2278\213\242xN" #"\265\243(\212\224K%<^\257\243|\224\2443\31\vA\240\251i\370\2~\f" #"\323\340\364\342\2\246eaX\26\252\327" #"\303\275\337\377>?x\350A\362\305\"" #"\367~\377^\366\274\260\207L6\313\312\225+\235\271\17\261('NN\220L&" #"Y\\\\$\22\213\22\213\307QT\225d\267S\17\337h4Zw\1\302" #"\221\377\237\2727\17\227\354\254\357;" #"?u\352\234:\247\366}\257\273\366\275" ) 500 ( #"\267\367\275\265\22mH \2201\6\201" #"\301\v\30\306\261\23c\eC\354\307\261" #"\303\200\223\214\237\a\333\23;\366<x" #"\306\3430\30;\230\361\343\0\206\30!" #"!\tI\b\201\266\336\327{\273\357\355" #"\273\325]j\337\367\345\234\371\343\255:" #"H\304N\310#)L^=\335\375\317\355.U\325y\177\353w\361\322\250\327q" #":\34,\314\315\263\262\262B\275Vc" #"\357\336\275<\367\334s\374\355\27\276\200" #"o\364\271\257on\240\331\355\334z\333" #"m\274\360\342\313<\375\3243\274\374\322" #"K\374\307\317}\216\344\344$\223\23S" #"t{\35R\251\t\254V\t\247\323\311" #"\361\343G\271\276\264\304\243\217>\302\324" #"\324\24\347\316\235czz\32EV\250" #"W\e8\335N\34\232\306\315\233\313\250" #"\252\3147\37{\224\271\331i\246\246&" #"8s\3724\245b\221\333o\273\25\f" #"\235b\251L\253\331\302\345\366\320j\265" #"i\264zT\353u\312\225*\217}\363q\202\241\20.\217\27\253lcmm\235" #"\251\351\0314\325A\263\325fbb\2" #"\217\333\303\372\306\6G\16\37\346\327\177" #"\375\327q\250\32N\207\3Ms\230\b" #"\277\361\321\365W\322\326\377\341;\362\232" #"\221\200\30:\f\a`\30|\360\203?G\276P\240X,\243[\300@\"\22\213" #"\322\323\rR\223\323\314\355[\300\27\n" #"\261\233\315\262\266\261\216\307\355\302\322\356" #"\340\261\333Y\333Xg=\275\211\313\345" #"\302\351v1\263g\232\312\350K\254U*\24rY\24Ea\337\334<\203A\237" #"j\271\302\277\374\215\337\304\353\366\361F" #"\216\304\232\315\246I\202\32C\223\225\21" #"bM\210-\b\204c\243\325\344\314\2313<\362\310#\\\275z\25UU\211%" #"\23\364\373}&''\331\332\336&\26\213\321\355v\331\315e9|\3700\235N" #"\207\355\355]\312\225\32~\277\377\25\222\346" #"v677\261\331l\364\373}\2\201\0" ) 500 ( #"\367\334s\17o~\363\233\205\26\202\335" #"A\263\323\306\245\331Q\370\307\303\337\177" #"\215\336\372\312\323\351t\0\314\327\eW" #"9\343\277?\226G7\245\255^\241\242" #"\323\250\325q\271\335\344s9\363rb\201B\241@\265^czf\226?\373\17" #"\3777\245R\211N\247\303\306V\232\365" #"\365uT\273\340S\4\375\1\362\371<.\227\313\324\212H&\223\242*QmL" #"MM\321l\265(\26\213\224J%\366" #"\356\335\213E\26\257\335\357\367\251\325\233" #"\30\222\205h(\314\334\236=|\356?" #"|\226D,\316\255\267\334B6\233\345" #"\217\377\370\217Y\330\273\227~\277O\243" #"\325$\20\16\341\366x\370\310\257\376\n" #"\317<\363\f\177\375\347\377\17\fE\373" #"\367\321\337\376-\256\\\271\302\366v\232" #"_\376\310G\30\fz\234?s\226\247" #"\237\371\26\273k\e\274\365\235\17\21\360" #"\371\271p\361<\201@\200\331=s\33057.\227\207\355\255M\346\346fy\352" #"[O\20\211\204\261\30C\312\345\"\323" #"\223\23\204\203\242\342\261Z$\226\227\227" #"9<\342\307|\3463\237A\307\312-\267\337F4\32\305\343\361P\2577\311\27" #"\vx<\36\2\376\320h=\354\"\24" #"\nq\365\352U\364!\374\304\303\357\346" #"\226\23'I\304\23\257\340\243\276\372\16" #"\30\30?\20\0\376\341\363:\4\200\1" #"\275\226(\217\177\353\267\376\25k\e\353" #"\24\362E\n\205\2\3,\244&'\270" #"\262t\235\303\307\216s\340\360\21\352\355" #"\26N\257\27\331\246\220^_\347\346\345" #"+\334v\352\26\266\267\323d\vyd" #"\233\302\236\2719\302\261\360Hq\270\203" #"b\263\242\312\n\26\3\254\222\205\313\27" #".\362\361_\373\30G\217\36C\265\252o\350*l,!>\316\206\343L\370\375" #"\f+\224c\306\24PM\323\350v\273<\362\330\243|\361\213" #"_\344Moz\23\245r\31\267\333M\253\325Bu\330M\231)" ) 500 ( #"UU1\220M\257\202\311\311I|>" #"\37\333\333\3338\34\16\f\303\240\323\351" #"\bvd\251\304-\267\334\302;\336\361\16sE\351\367\371p)\n\306P7I" #"H?\210Y\370AY\250\37<\255VK\360-F\354\311\261w\303\177\r\1770" #"n\177,\26\v\232\246\211\376}7C" #"\267\337\243\321h\320\356v\370\312W\276" #"\202\303\345be\365&\212& \275\306\250\347\17\207\303T\eu\202>?N\207" #"\3\253E|\246\245\221\323S\267/$\347*\325*\227.]\242X,r\313-" #"\26703\267\207f\263)\364$[-\236z\346i~\352\375?\203\252\252\264\232" #"M\36{\344\el\256o\260\177\377~&'&\370\374\237\3779v\257\227T*" #"%\202\267a\320h5)lo\361\336" #"\17}\210\375\373\17\262\273\233\341\e\337" #"\370\6o}\353[\231\233\233\343S\237" #"\374_9z\354\30?\363\323\357\347\221" #"G\376\236\213\347\316s\350\360\1\234N" #"\273\20\250\31U\251\211D\202;\357x\23\325j\223z\275\216a\fYY\271\301" #"\245\213\27x\313[\356'\340\363\320l" #"\326\211\307\343\364\272\35\272\235\36\325j" #"\225\345\245edY&\275\261\305-\267" #"\335\312\261S\267\320\35\364y\346\231o" #"\263\260\260@\257\327#\26\213\21\360\372" #"\4\30\314\341\340\306\215\e|\375\357\277" #"\301\275\367\336\313\247>\371I\246'\247" #"\1\30\350\3l\322kk\201_{\0" #"\240\317\260'\254\276\376\344O\376\204\247" #"\277\365\f\365fK\350\b:]\350\206" #"\205\351\271yj\355&\265f\213[\356\270\35\1778B6\237c25\301\2653" #"g\271~\365\232\240Dj*X\337\23K\0\0 \0IDAT\355n\213V" #"\273\315\255w\334J\"\221@VDVPe\5\227\323\201\323.x\372\377" #"\376\367\377wj\365:~w\340\177\330.|,\3734>\245R\t\233\246\260" ) 500 ( #"\266\266\206\256\353\374\341\37\376\241Ij" #"z\333\333\336\306\326\326\26\305R\211l" #"6\313\311\223'\331\311f\220e\231j" #"\265\312\316\316\16\221H\204nOg\357" #"\376}\254\254\254\260\263\263c\366\357~" #"\277\237\235\235\35\232\315\246Xy\215t" #"\6\302\3410\367\336{/\367\335u\217X\t\366\272HX^U\232\3\346`\363" #"\265\350\0214F=\374x\20\372Jn|:\235\346\364\351\323\342\365$\v_\375" #"\312\337aX\20\3\271\216\330\234\204cQ\32\255&\301P\b\200\356\240Oo " #"\324\242\312\3452\221P\230N\263E\257" #";\22\264\210\305\360\373\375\246\264\373w" #"\236{\216P(\304\233\337\362\200\320\217H\247E%P)\23\f\6y\377\373\337" #"\317\342\265\353,^\273\306\23\217?\316" #"\311\343'0\206:\345R\211\355\3154" #"\267\336z+\36\217\207k\327\227\360\371|\\\272|\231p4Bjj\222\263\317" #"=\307\201[n\343\201\a\336\202jwr\351\322%\36\377\317_e\356\300~\336" #"\365\256w\361\342\v\337cy\371:?" #"\375\276\367\223\315\355r\341\334Y!#\327i\261o\337\2\251D\222dr\2\v" #"2;;\31\241>\365\354\323<\374\360\273q:\3554[u:\35\241l}\371" #"\302E\232\3156\315f\233V\263C," #"\26\347\203\37\370\20\27\257\\\345\342\225" #"\313\304\222\t\242\241(\275^G\4u" #"\227\v\277\327\307\342\342\"\247_|\211" #"\351\351I\376\331/\374s\16\35>\200" #"\307\351B\221\25\206\272x\36d\353\367" #"\3\300h\216\315\17\331\375\1\2579\0" #"\f\200>\2403\354\367x\354\261\307\370" #"\375O\377\1\255f\a\303\2^\177\220" #"B\251\204\315\341\304\356\366P\254\224\221" #"5;\207\216\37%\20\f3\350\365q[e\202^\37\331B\236\305\245%V" #"\327V\230\232\236&\22\217 \3132\363\v{D\217:\232\242\e\203!\221H" ) 500 ( #"\204\207\336\366V\302\276\b\22\32674" #"\0\214A\35\257\274H\351t\32\3030X__\247X.p\341\302\5\26\26\26" #"\350t:\30\222\205/|\341\v\34=z\224\351\351i\260X\310f\263\264\272B" #"\311%\24\nQ.\227E\25\320\355\221\336\332ajj\212x<n\272,\271\\" #".\n\205\2\241\321\305\201W\267\"cg\245\17\374\314\317rpn\236\37,\362" #"^9\v\370a\316x\3031\30\f\360z\275\246\21L\261X\24\f\316Z\215\225" #"\225\25\256_\277N\251T\242\333\355\n\263\212\2337\2517E\220\360x<8\\" #".T\273\2067\340gyy\231h\\0\320\362\245\"333\364\207\3\206B" #"Q\5\253\325J.\223e:\236$\237\313q\374\370q\32\215\6\265Z\215o~" #"\363\233\264\332m\26\26\26\220U\e\315" #"\321\326\310\353\365\222\336\3362\a\226\203" #"\301\200|\266\200\305\"\364\364\321\r\206" #"#\211\257\351\211I\332\3556\371|\36" #"M\323\360\371|\234>w\226\333\357\270" #"\203\237\371\300\317\362\273\277\373\273\\\271" #"x\31l\32\264Zh\3410\17=\364\20\267\337z\212\235\235m67\326H&" #"\3434\2525\316\234}\231f\275\206f" #"W\331\335\335\346\243\37\375(\16\315N" #"\275\336\244T\254R\257\3279w\376\f\23\23)\346\346fi4k\330l2\211" #"D\202?\373\263?#\24\212p\337\275\367\23\212DIDS,^\277\301\342\265" #"\353\244&\247\230]X`ss\223H$\202\3050\360\373\375\\_\\$\237\315" #"\321n5x\323\355w\360\356w\377\4" #"\221P\230\200\327\207\5\235z\275\216\246i(\212\312`h\230\33790J\4\26" #"~\210\316O\374\374k\r\0\203A\303" #"\274\34\271L\206\17}\360\347\250\327\233\364{C\220\254h\16'\275" #"\341\200.\260\233\313\243+\n\263\vsD\343q\302\376\0\326\216\216U" ) 500 ( #"\207\335\374.\211d\222\265\2655n\256" #"\255P\251Wx\370\341\207\211'\242\334" #"\274y\223=\323\323\204\303a._8" #"\317\307?\376qf\222\302\325\367\215\16" #"\0 .\237a\30\270\\B\256\354\323" #"\237\3764\305b\221\235\235\35\366\37\334" #"gZ\240\325\353ulv\215P(\204\335n\347\374\371\363\fFJ\255\241h\204" #"f\263I:\235\306\347\363\221+\344\231" #"\236\236%\227/\322\352\364(\26\213\334" #"v\333m\370|>\236~\372i\206\303" #"!\323\323\323\334\270q\203\275{\367r" #"\366\354Y\2\201\0\272.|\v\222\311$\327.]\344W~\361\27IFcL" #"LL\274J\324\342\207\355\377_y\306" #"\314\2733g\316\20\16\207\t\207\303\374" #"\301\37\374\1\231\214\360[\34\227\336\355" #"v\e\237\317G\"\221\300\252\3108\\" #".J\245\22\212*\254\330\6\206\216\242\332h\266Z\f1\230\232\231\6Ibe" #"\365&\223\223\223\324\233\r\301\240\233\236" #"ag}\223\375\363\v\4\203A>\371\311O\342\17\4\360\373\375D\243QQ\21" #"a\2105\352\biY(\24\204,\235S\f\336\222\361\24\251x\212f\275\201\256" #"\353TJeR\361\4k\253\253\344r9\356\274\363N\316_\270 \202\241Ub" #"\371\346\no~\340~~\374\307\177\234B\251\304\313\347.\220HN`S\254\264" #"\333mJ\205\34\375~\217\211T\202F" #"\243\306\3713g\251\325+\350\203>k" #"\353\253\374\364\373\337G<\36\247\325n" #"\220\210\247\310lg\271p\376\22\225F" #"\205C\207\16\322\357w\271r\365\22VE \a?\370\201\17\341\365\372Y^\276" #"I\247;\240Y\353`\323\354\304\242q" #"\302\2618\225\206Xm\312\262D\247\331" #"\342\314\2313\254\336\\\346\350\301C|\356\263\237\305nS0t\35\233U2" #"\365\0001\3000\6\224\212\25|\201\340\210D%\276\303W~\345c\324\337?" ) 500 ( #"|D\271\360:T\0C`\200>\350#\311*\357{\370aZ\255\26\265j\203" #"r\271\214bw\240h\32C\t\332\375" #"\1n\177\200\276\1\315n\233\271\351Y\346'giVE\257\264\262z\223r\265" #"\302\315\365\2338\235vj\265\n\373\366" #"\355c\357\276y4\305F\253\331\240\333" #"\356\360o\177\347_#\3132\16\315\201" #"M\372\341d\267\377\341\317\341\277M\27" #"\36g\301\261*\222\303\341\20\346\247\272" #"\316g>\363\31\26\257/\221\234\234\300\347\r\240\e\3\6}\235+\327.3;" #"\275\207N\257\rH\348\260\217\357\276\360\"\v\vs\\\277\276\214\315&cU" #"l\344r9<^?N\247\223v\273" #"\315\342\342\"\207\16\35\342\370\361\343|" #"\367\273\337eii\211d2i\256*" #"{\275\336\310\356L\30\232\336\177\337\233" #"y\364\357\277\316\261#\207\271\367\256{\331wp\37>\267\347\277[U W," #"P.\26\311\27\213\204\2\1\376\217\317" #"|\206\314\316\16\335~\237n\273\215a" #"\261\342u\271\361\207\202\330m*C\f" #"\34\252\206\333\347e{{\e\315\241b" #"\267;\311\26\2624\233mT\273\r\227" #"\333\213\254\312$\222\23\324\eU\206\206" #"\5\177\320'\34\234e\v\233\233[(" #"V\211#\373\16\260\235\336\340\221\277\377" #"\6\375a\217P0B\251\\\300\202\25\237\337C\245\326\3000\206h\16'6\233" #"L*5I\273\335\304nw\n\217H\233\213\325\225\0251,\365\371i7[\364" #"z=\30\352\330\355vj\265\32\273\273" #"\273hN\a\16\207\360\342\223mV\216\35;A4\36gbr\206\325\325Un" #"\336\274I\273\323$\26\211\242\2526\32" #"\315\32\233\233\353,__$\32\215\362" #"\275\247\236\341\3\377\364\3478|\3700\253\253+\370\375~$,,/\256\n" #"\343N\227\235Z\263\301\372\372\32^\257" #"\227\344D\202\a\36x\200\227^:\315" ) 500 ( #"\v/\276\304\336\275\373\231\234\230%\221H\261\223\311\222JMbS4A3o" #"\325\371\374\347?Oy{\233\17\374\323" #"\237\347'\337\373^TE\341\324\361\23\270\335N\254\26\361=u;b\267o\350" #":Xt,\26\331\304R\374\27O\266" #"\316\250\5\374\307\222\343\353\22\0t\6" #"\235.VI\f\313d\253\225\337\377\364" #"\247\371\316s\337\246\\.\323\327\373\364\a:\3CG\267HH6\e\251\351\31" #"j\365&\36\277\217L&\307\236\2519" #"*\225\32\221H\4\267\317\215\307\343a" #"h\f\271r\345\n\315f\2353\247O" #"\243\252\n\367\335}\17\235v\223\a\337" #"\374\0\267\336r\222\211D\22o \b\26\5\254\22v\233\212b\25;\362j\255" #"\206\377\25RN\0\303A\27E\26\216\253\206a\240\310\n\26t\321K\rud" #"Ea8RI\221\254V\364\21,\265\337\357\243\330l\264\232M$I\342\371\347" #"\237\27\345\344\351\323,\337\\\341\350\211" #"[\311\344\262\324j\r\6\203\36\365z\223Z\263\206dHH\212D6\233'\32" #"\r\243i\16^z\351\5\336\376\366\37" #"\303\343q\361\374\363/\322\355\266\351\366" #"{\370\375~\212E!y\226\317\347\t" #"\205B\334{\357\275\334\270q\203\263g" #"\317\342\361x\330\331\331!\30\f\22\n\205(\24\n,..2==\315/\376" #"\302?\347\322\245K\24rE\336\371\256" #"\37'\32\216q\353\355\267P\310\25I\245\22\2Q(A\245Z\307\347u\243\e" #"\320\356\266\371\316\267\237c~\357\34\365" #"Z\5\253\"\361\177\375\351\377\311\352\372" #"\32\233\353ib\2118\251\304\4VY" #"\306a\267\223\315\25\220%+\36\237\27\315\246\321l\267\350w\6\270=Nl6" #"\205N\267E\267\323\aI\b\251L\315L\22\b\204\2505k\254o\244\321" #"4\e\235\376\200V\247\311\276\275\a\270|\345\"7W\326x\333\333\337\312" ) 500 ( #"\215+\227x\371\364\213\270\354.\n\345" #"\2\311\304\4\2721\300aw\321\351\266\30\364u\274>7\241`\204|!\313\374" #"\334^*\325\22\222E\246Vk\340\367\205\221e\201\373\277ycY\240/\375~" #"ry\241\342\263\270x\325\334\256\b\334" #"\206\301\364\236i$I\346\334\3513H" #"\222\314\344\304\24\357z\327\273h\265\205" #"\352\357\316\316\26\317>\373,\201\200\217" #"\313\327.\323*\224\370g\377\342W\231" #"\232\2324\321\211\251T\212\247\236x\222" #"F\261I\241P`\377\376\375\344r9\356\275\367^lv\215J\265\316\2313g" #"\250\324\252|\340\3\37 \237/\242\332" #"\35X\255V\"\3218\335n\237/\376" #"\325_\262\261\272\302\241}{y\350\241" #"\207\b\205B\4\203A\356\272\353.\302" #"#\226\343\370\274Q\213\356\327N\6\32\1A\350v\300\n/}\357y\376\325'" #"\376%\301p\210\345\345\353(\232\212\346" #"r\322j\367\t\305\242T\252\r\372\372" #"\20\247\333\203\333\343C\221\35x\275~:\375\016333\f\364>\325j\25\30" #"\1TdQ\366\25\263\31\206\375\1\275v\v\vp\374\310Qfg\347\270\373-" #"o\341\320\341\243\310V\241\177\356P\307" #"\25\201.\224\203u\241@l .\2646\2\16u{mT\233:\202\24\277\362" #"=\t\nj\257\323E\222\255<\365\344\267\370\373G\276N<\32c~\357\2_" #"\371\322\227qy\334\34;r\224b\245" #"\202\335\355\243\326l\21\b\b-\304\245" #"\245%\212\305\"N\247\323$\30\225\313" #"ea\371,\313\\\273v\215\271\2719\356\273\357>\326\327W9}\372%\302\341" #"0\351t\232\271\2719\252\325*\303\341" #"\220h4\312\301\203\a)\24\n<\377" #"\374\3638\34\16\234N\247\310\270\232" #"\306\324\324\24;\231,\365Z\223S\267\336\306\336\275{y" #"\366\331gq\271\\\374\312\257\374\n\233\233\233h\232\306\235" ) 500 ( #"w\336\311\356\356.\331lV@UC" #"!\26\27\27\371\326\267\276\305\326\326&\272>\240V\257\340t:9q\342\4v" #"\315I0\30\344\372\365e\16\37>L:\275-\344\261u\321\n\355\3313\317\346" #"\346&G\217\36\247X\314#[-\354lmq\360\360!\"\221\b\245J\231\235" #"\235\35^>s\206\\.\307\375oy\200\323\247O\23\214\2049z\364(\177\363" #"7\177C.\237\347\23\237\370\4\247_~\221J)Gfw\233h4\212\305b" #"!\225\22X\a\253\325j\222\262\3068\205j\265J8\34\2469\n\306\215z\213" #"\231\351\275XG:y+++\200\330" #"2\324\3535\241\347g\321\315\255\313\322" #"\322\0227n,\341t:\t\207\305\0" #"\362\266[\356\304iwp\374\344\211\221" #"\370\213\320\363+U\4\"q\353\346\n" #"\357\373\360\31711)\3740\243\361(" #"\205B\1\257\327\313\326\346\0267//" #"\363\362\213\247\371\334\347\377\202\225\225\225" #"\221\266\377\367\360\6\3\34=~\234\a" #"\37|\220\356h\262_\256\211\240\360\364" #"3\317\320n\2679~\370\20\37\370\311" #"\367\262\233\26\337\325\201\3\a\270\353\256" #"\273\210D\"f;\366F\237\327\36\0" #"\0\364\0216\315\242\263\263\276\316\277\375" #"\337~\207\347\237\177\236\301\240\207\303\355" #"B\262Zqy\2H6\231n_\347\346\306:\321x\202p(J&[@\323" #"\34T\3525\346\346\346py\234\270\\" #".\22\211\270\260A\256\224\4[\257\337" #"#\21\213s\345\342\5\212\205\2\271\335" #"\f\371b\231\236a\220\232\230\342\235\357" #"|\a\367\337\177?\341\220\330\235\332\254" #"\22\221W\330)Y~\240\334\357v\232" #"\3305\273\351\270\362J\250\361\370O\35" #"\203\257\376\335\337\341\17\4x\372\251\247" #"\370\316s\317\361\266\a\37\304\347\367\263\271\261A\273\323\301" #"\260\332\30\30:\335n\227P(\304\201\3\a\260Z\255\\\274" ) 500 ( #"x\221\305\305E4M#\235N\v\r\371\0215X\3234\202\301 {\367\356e" #"b\"\311\227\276\364%R\251\24\305b" #"\221\355\355m\272\335.\235N\a\237\317" #"\307{\336\363\36B\241\20\337\371\316w" #"\314^<\26\213\261\275\275M(\22emu\203b\271\304\203\17>\310\3\17<" #"`\302h\247\247\247Q\24\205b\261hZM\267Z-\266VV\230\230\2377\5" #"]\313\345\"\263{\246I$\22\302^" #"\275\257S\255Vq\273\275\246\274\225\305" #"\"\220d\251T\n\247S\200\226dY" #"\246\327\353\260\271\261\216\333-h\314\253" #"\253\253T\353B=IRd\356\276\373n\36\373\3467\331\267o\37\301`\220\307" #"\37\375\6S\363\363\374\366o\3776\377" #"\376O\376\230b>\307\364d\nC\27" #"\346\263V\253\25\207C\320\277\307\336\22" #"\311d\322\304!\b\276~\235^\257'\334q4'\372PFU5dYfs" #"s\23\253U\"\22\211\230Z\376\325\232 \367x<.S\vo\34L\25\311J" #"\275\332\"\275\261\311\332\372Mfffx\342\311'I\245R\354d\266)\26\213" #"\374\223\273\356\344\35\357x\a\317\277\364" #"<\323\323\323\244\323\233\354\331\263\207\\" #"!O\253\321\342\211\257=\312\217\275\375" #"\35\354dvy\356\271\347\250\227\313<" #"\360\266\207\230\230\236b\357\276\3b`" #"\272\273\303\227\277\374e*\265:z\273\315C\357~7\267\334r\v{\367\314q" #"\371\354\31\342\341\20\367\334s\17{\366" #"\3541W\253\377\243<%^\227\0000hw\220U\e\f\2724\e\r\376\370O" #"\376\220\277\370\213\277 \221\210\341\362z" #"\250T\253tz:\335a\37$\205z\273E<\236$\30\212Po\264\251\327\233" #"\304b1\f\311\300\355\365`\267\213" #"]\272\337\357\307\357\e\225\305~\37\26`cm\225C" #"\373\17\220\313f\261`eqe\205\233\253\353(\212\200\362" ) 500 ( #"&\23\t\336\376\366\267s`\357\202\271" #"\3O&\223\254,_\347\350\321\243\4\203AZ\255\26~\267\233\301p \326\217" #"6\325\364\31\350\367\372\224\252%z\355" #"\36\351\2354A_\220\257?\372u\364\276Nr2\311Db\202\305\e\213\324+" #"u\362\245\"\331\\\201l!\217\303\341" #"\240\321hp\365\352U\342\3618\357|" #"\347;YXX\340\231g\236\341\374\371" #"\363\304\343q\212\305\342\bC^\246\\.\343p8\30\fz\374\322/\375\22\177" #"\371\227\177\211\303\341@\226e\232\315\246" #"\351\237x\343\3125~\362g\177\232\267" #"\274\345-<\377\374\363\\\270p\201F\243A,\26\243\336l`\327\334\4BA" #"\266\267\267\271x\3724\37\371\330\307\230" #"\232\232\342k_\373\32\e\e\e\324\353u\32\3452\207\216\37'\225J\221L&" #"M\367\246\355\355\264\3204\264~_y" #"\307\246\210\200\25\217'\205\304\264\303%" #"\230u\3218\206a\260\261\261\201$\311\234>}\232H$D\255Z\241P\310Q" #"\251T\b\205B\250vM\bM\310Vvvv\3204\215d*\305\313\317>\313" #"\301S\247\370\370o\374:\177\364G\177" #"D\273\335\306\353uc\f\373\204C\1\363\362\217\315gt]'\221H\320\353\t" #"\16\200\260\322\266\263\275\275\215,\313#" #"\244e\200B\276\206\307\343EUU\262" #"\331,V\253\204\327\353\245\321h\b\37K\257K\360Nj\25SM\250V\253\211" #"ab\257\217\327\355\303\320u\302\3410" #"/\277\3742\321X\214\335\31466\233" #"\215\253\227/\360\331\317\177\236\305\305E" #"t\313\b\357\241\17\211\305b\3106\205" #"\227\276\373\2\351\2654\273\351-\362\231" #"\34X-|\350\303\37\346mo{\210\364\3166O?\375m\276\365\324S\f\372" #"}\366\37:\310\341\303G\231\231\231!\20\n199" #"\311K\337{\236#\373\366\361\276\207\337\215\323\351\244\325" ) 500 ( #"j\231\1\360\a\355\310\336\250\363:@\201ARd\364^\227J\255\202'\30\344" #"\331g\236\32}I.\226o\256\340r\273i\266:\2348u\222z\243\311\301\303" #"\207X_\337\240\331j\263\271\271I\251T\"\30\fP\251U\260\25163\373%" #"\0221.^\274H:\235&\350\367#Y,\364\272}\24\253\202a\350\370\2\1" #"|\201\0N\227\eM\23\227=\235N" #"\363\237\276\360\5\276\370\205\377\310\362\372" #"\32^\217\a\227\313E\253\325\34\311\215" #"\v\226\231\333\353F\263\333\261Xe\32" #"\255\26\303\241\201,+\224\312U\276\360" #"\305\277\346\211'\236bu}\215\317~\366sl\355l\343\367\207h4\233\\\274" #"x\205\241\256s\374\370I\366\355?\300" #"\304\364\24\315f\223\213\27/\322h4" #"\230\230\230\240\335ns\366\354Y\26\27" #"\27\371\360\207?\214\303\341\340\205\27^\240X,299I\251T\"\22\2110" #"\34\16\t\4\374<\361\304\23\374\336\357" #"\375\36\347\317\237\347[\337\374&{\367" #"\357\247V\253\21\b\4\b\307\242<\365" #"\370\343\\[Z\342=\357y\17\333\333\333lmmQ\257\3279t\3700\245R" #"\205\215\315\r1!\317d8\363\302\vT\233M\356\270\343\16\356\276\373nvw" #"wQ4\215c\307\216\221J\245\220e\331\\5\272\335.a\344*K\304cI" #"\332\355\16\325j\225;\357\274\223R\251" #"<\372\331\16V\253\204\337\357\347\221o" #"<\302\322\365%\n\371<\355v\213z" #"\275N\261P\300\347\363\n\311v\273\35\315ngee\205\355\255-n\275\3756" #"$I\22.P\203\1\237\370\304'\370\322\337\376'N?\363\f{\366\356\245\337" #"\357\322\357v\t\6E\0\360\373\375\250" #"\252\212\327+.\264\307\343\241\327\353Q\251T\250T*\346\32\324\357\27" #"\375q\257\333G\266\212\237S\24\231^\257k\256l\a\303\36\2721\244\331" ) 500 ( #"l\322\357\367i\267[H\222\204\327\353" #"\306\345r\22\b\370Y\230_\240\321\250" #"\341\365\2709w\356,.\227\223\e7\2563\324uVWW\371\344\247>E\275" #"Q\247V\253\20\213FY_]\343\300\241\2034\233M|^\37\327\256^\345\305" #"g\277\207?\350\303\351v\362k\37\373" #"5\26\26\346\371\235O\375\16/\237y" #"\231\225\225\25\36|\373\203\304\23qT" #"\325\306\314\354,{\366\314\222\210\307\370" #"\317_\373*?\366\320C\274\357\341\207QG8\vEQ\350v\305{\370An" #"\306\eu^[\0\260\b\351+\213$\t\212\257UB\222e\312\205\34\247O\237" #"\246\323i\vR\214\315F\263%\260\1" #"\273\231,\36\267\233z\263\211\313\355\301" #"\345r\23\215F\260Z%\34\16\an\267\207|!G0\30\240^\257S\255V" #"\5Lt\264\16\352\367zT+\25\\N\a\333;\273\224\253U:\235.``" #"\267\333I$\22\314.,\20\b\211\311}\251Pdww\227n\267C&\223\341" #"\306\215\e\2432\262\313\364\344,\335\376" #"\0\254V\312\3452\305j\5\273\335\316\354\374<\255f\223o=\363\fn\267\e" #"\207\333\215\333\345B\267X\310f2T\352u\32uQ\1\270\335n\372\375>\23" #"\23\238\34\16\226\227\227\315\3623\223" #"\311P\253\3258z\364(n\267\233b\261H\271\\&\34\16#\313\262I&\352" #"t:\\\275z\225{\356\271\207|\261\310\312\312\212\251AX,\26Q\355v\234" #"N'\345r\331\304\313\347\363yJ#<\201\317\347g}}\35\303je\330\355" #"\262\263\263C \24\302\353\3652;;+Z\251\21\210)\227\313\21\f\6)\225" #"JX,\2\334\323h\324q9\335\246" #"\377\235\300 \204\315\262\334\347\363q\343\3062\215F\203V\253E\257" #"\327\3050t\322[i\2~\341\207\227L&\351t:\244\267\266\314`" ) 500 ( #"\340\367\371(\24\5\231\347\216;\356\300" #"\347\363\361\354\267\277M\255\323arr" #"\22I\262\20\215D\b\205\202\246\231\345" #"X\256\272\337\357S\253\325L\37\307\261" #"\17\305++\4\v\22\252\3151\262\241" #"\e\230\212\322\26\213\5\335\20\200*\241" #"\352\364}\220\224$\211y@\255V\243\333i\323n\b\260\216a\30lmm\341" #"\367\373q\273\34\330T\205\333n\273\215" #"j\245\204\323\345$\227\313\341v\273\t\206Clnn\342p88\177\356\34\231" #"\364\16^\277\2137\275\351\237\220\317\347" #"x\364\321G\231\232\236\302\356\264\223J" #"%0\200V\253\311\374\374\34\241\240\37" #"\237\327\313\362\362\r\"\341\20'\217\37" #"\307a\263\341\260\333\315\377oY\226M" #"\343\232W\372p\274Q\3475n\1\240\337\355\215\4\34t@\247R(0\34\366" #"\370\251\367\275\217N\247\205E\266R\251" #"V\321\34\36z\203>\212\315N\337\320i6\333Xm\n\375\376\20\247K\364g" #"\223\323SH\212L>\237\27\344\240J\221[o\275U\224\251CA~qh\2" #"+\37\360\372\330\315e\t\4\303\254ml\2:>\237\217|V\210u\372\3^" #"z\275\36\275NW\300\222\273\35S\313" #"\317\343\361P\257U\230\230\234&\236\232" #" _(\341v\271\210\305\343H\26\v\231l\226n\247C4\26\303\246(\202u" #"\326\353\241\e\6VIb\345\346M._\272\304\346\346:333LL$\211" #"F\243\370|>\202\301 \275^\217s" #"\347\316\231vg\365z\235\17\177\370\303" #"\234<y\222G\36y\204\227_~\231\301`@<\36\307\343\361p\371\362e|" #">\37sss\34:t\210\253W\257\362\324\223O\262g~\36M\323(\24\n" #"d\323\333L\316\315277\307\361\343\307Y[[c#\275I\255\326`" #"zf\206F\243\301\245K\227\270\365\326[\315~\376\366\333o'\26\213\261" ) 500 ( #"\271\271\211\256\353\324j5\323\31\326\264" #"\214\262\333\211\305b\364\373}\256^\275" #"\312\364\3644\325j\225\243G\217\362\345" #"/\177\331t\240\275t\351\n\247N\235" #"2\321\200\343`\20\364\a\260;T\323\350E\32]\3241\n\261R\251099" #")t\364\326V\371\366SO\363O\356" #"\271\e\227\313E*\225\242\333n\242\252" #"\n\315f\23\217\307\203$If\351;" #"\226\336r\271\\\346\n\264\333\355\232\310" #"D\273\335\311\240\17\301`\230N\247C" #"\261X\3040\304\300P\327\365\221\231m" #"\313d4\16\365\376\b@\243\230\310\312" #"\205\3319\316\235\26\337S&\223\341\326;n\347\306\362\22sss\34;~\34" #"]\327\311\347\363T\3535\23\237p\356" #"\3349\246\367\314\362g\177\372\247\270\35" #"v~\362=\357\6$\36\177\374q\22\211\4\331L\236PT\270L%\223)$" #"I\342\341\207\37\346\201{\37\340S\377" #"\346_\203d\341\327?\376/\bz\202" #"\274\232\276\203\311\314\224e\371U\206\244" #"o\324y\315\1\240\327\351bSU\372\235\26\212f\3]\247\327i\362G\377\356" #"\337\361\342\213\317cw9\331\330\334\244" #"\335\356\243\271\234\fu\v\212\246\262\273" #"\223\305\355\365\210a\322p\200\242\250\370" #"\2^\362\205\22\261d\214L.K*\225bcc\203N\247\303\341\203\207p\331" #"\35\330\24\301\t(\346\362L\315\316\220" #"LM\23\215\307\330\336\0260Q\t\213" #"\350\325\214\201\310n\265:v\273\235j" #"\251H\"\221\240\333\355\262\265\265E\253YG\261i4;],\222\314`0`" #"cc\203p8\314=\367\334c\322z\333\3556.\227\350#\v\205\2SSS" #"8\235N1\345gH\275Z\343k_\373;\256]\273F8\34frr\222x" #"<N$\22A\3234\316\237?\317\316\316\16W\317_$" #"\222J\360\301\17~\220F\243A>\237\347\253_\375*{" ) 500 ( #"\366\354\241P(\320n\267\351\326\233\330" #"\275n~\3437~\203z\275\316\362\3622\206a\340t:)\24\n\324\353\2/" #"\261\260\260\200a\30\324\32u\34\16\27" #"^\237\317\204\350\366z=._\276l\312U\17\207C&&&\320u\21 3" #"\231\f\361x\234B\241\300\334\334\34\235" #"Ngd\244*\20u\247O\237\36\r" #"\377\32&\202\256\335n\177\337\320\265\335" #"\305b1\0\t\273]\3053r\263\31\373\336\25K%VVV\270\353\256\273\270" #"q\343\6\321h\224\271\2719\262\331,O~\375\353\274\347g\177VHlY," #"Dc\341\21\217_\230p\206B!\363\3626\233M.\\\270\300\276}\373\360x" #"<\264Z-\252\325\252\340\370\217\274\30l6\215R\261F<\236d8\34R\257" #"\327\31;D\365\373}\363\362{<\36" #"4\273M$\204\221\344X\277\337\247\333" #"\356\240 \261\270t\225\365\265M\346\346" #"g\221U\e~\277\237\271\2719\312\345" #"2\252\246\221L&\271\271\266\312\302\302" #"\2\313\313\313\34;v\214\347\236\377\36" #"_\373\312Wx\323\355\267!K\2\26>??O:\275\315p8d~\357~" #"\0\16\36<\310\203\17>\310\366\366\16\317>\373,w\337}7o{\340mT" #"\eu\374.\257\340\267X\276\317\264\34" #"\f\6\346\364\377\325\234\2237\346\274\346" #"\0000\346\266w;-T\325\6\203\1\303a\217kW\256\360\261\217}T\340\373" #";\35\32\215\16\211\311\t\326\326\323(" #"\232\312\315\2255f\347\366\bx\257d`\263ih\16\225\225\233kL\316LS" #"(\25Q\24\205\351\351i*\225\n\221P\230Z\271B\263\321`~~\36\207f" #"\347\374\305\v\354\333\177\30$\211\211d" #"\34\237\317\207\325jeee\205\351\251\tr\271\34\221Px4\1o" #"\320n\267\321\373\3\0\24\233\225r\265\216\216\205V\273K$\22!\221H" ) 500 ( #"077G\255V\243\325jQ\251TPU\225r\271L\267\3335\313\322\245\245" #"%4M#\237\313\220J$9u\352\4\211D\202\213\27/\362\302\v/\260\263" #"\276\311\236\375{9r\344\bG\216\34" #"!\22\211\360W\177\365W\202\300\343\367S\255Vy\360\301\a\351t:T*\25" #"\332\3556\36\217\307\244\1K\222\360\232" #"K&\223\244\323i\6\203\0016\233\315\4\f\25\213Et]\307\355\365P\2535" #"PF\326\353+++$\22\t\346\347\347M\307fEQX__7\305,\242" #"\321(\365z}\244/\337\342\302\205\v" #"\202\271\30\213\321j\265\0\310\345r#" #"\2713\311|]}T\221\245\222\223\24" #"\2129\354\232\223Z\255F8\0346\263\263\246i,..r\342\304\t\252\225\n" #"\325j\225\23'N\260\273\273\313\322\222" #"\310\252\231L\206\203\a\17\242i\32n" #"\267\0\363\250\252\302\346\346\246\211t," #"\225JLOO\263\276\276N,\26\303n\267\263\273\273K\261X\304j\26521" #"1\201\246i\330\355N\362\371\">o" #"\300\254\16TU\245\327\353\221\313gh" #"\265\304\234\"\32\r\233-@\255V\301" #"\347\363\231\00202\26\36\177\3541\234" #"n7\357z\327O\360\344\223O\2\360\276\237\376).^\274H0\24\246R\251" #"\240(\n\16\207\3_\300\317\213/\276" #"\310\223_\177\214\360D\214\205=\263D" #"c\202\266\254(\n\261p\4\237\317\207" #"\307\343\343\340\301\203\264\232\035666" #"\360\371|\274\365\255o\345\310\301\243\364" #"\365>\235N\a\217\303\213\204\364#\25ty\315C@S=\a\3\311j\21r" #"\330#q\210z\275F&\233ESUz\275\1\231L\206p(B\273\325BS" #"5\34\16'\375~\a}8\304\355tR\255V\261\251\n:\6^\217\227" #"\376@\\\270S\247N\261x\355\32\265F\35MU)\25\213lomc" ) 500 ( #"\30\26\274>?\305R\t\311\2\313\313\313f\246\314dv\3214\215\355\255mz" #"\275\36\36\217[\224\201\203\1\225JE" #"\250\241\310\n\212\315\206\307\3435\275\335" #"\267\267\267M\203\2201\23p\214\253\17\4\2\204B!B\241\20sss\314\314" #"L\363\302\363\3373\313\376\223'Or\360\340A\16\35=\302\251S\2478{\366" #",\253\253\253\250\252J\"\221@Q\24\\.\227\240\aom\341r\271Lf\235" #"\325jEUU\342\3618\212\242\230\370\373q\t\\\257\327\251\325j& H\226" #"e,\222\5\273\335\201}\304\34\34s" #"\n\n\205\2\225J\205F\243\301\322\322" #"\222\271O\337\330\330 \22\211p\356\334" #"9J\245\22\273\273\273LOO\343r\271\310\347\363\364z=fgg\311f\263" #",\2140\352N\247\23USp{D\25\244\2526J\245\22>\277\27\273]C" #"\262Z\250\327\4\264\27DB\b\6\203\324\353u\34\16\a\361x\234'\236x\202" #"x<n\272\346\252\252\212]\325\360x=\344\363Yl6\201\367w\271\\f+" #"0\306U\264\333m\254V\353\253\274\363TU\35y\336\203$Y\321\207\206iW" #"'\3132\6\242\r\20\237\223D\263\331" #"4\3T($\274\35\205\206\277\312\225" #"\313\227)\24\262\370\3\1b\261\30\273" #"\273\273\3429\215D\230\237\2377\305`" #"R\251\24\272\256\363\334w\277\313\345\313" #"\227Q\354*\307\216\36\301\246(,\257" #"\210J\347\350\321\243\304\"Q\16\37>" #"\214\303!0\eKK\327\271\357\276\373" #"x\377\373\337O*\236\22\342\34\26+" #"\252\242\n\22\327\217X\317\3515\a\200" #"q\371 \215\4?\214\241\316@\357c\265\312LLM\360\370\343\217\217z.\203" #"\215\315M\366\354\231'_\310c\263\251X\25\211~\277\213fWQ5" #"\e\325z\25\233Ma`\bRJ\243Y'\231L\320j5\31\352\6\375" ) 500 ( #"^\37\253$\221\311d\230\234\230\26\350" #"9\257\227\305\245%\32\255\6\205R\221" #"\265\325\325\21l\267K.\237\27-F" #"\277\217U\22\256\305\376`\200\201>\304" #"\355uc\263\2518].\332\255&\315F\35MS\361x\334(\262\225~\277G" #"\257\327\245\220\317a\301\240\335n\241\17" #"\a\324jUZ\315\6\235N\eY\226" #"\271\347\356\273\t\206\374\364\a=\372\203" #"\36\203A\237`0\200E\202\273\357\276" #"\v\3\35\273]c0\350\23\211\204\31\16\a\254\256\335DQd(P\266\24\0" #"\0 \0IDATvv\267)\24\212\257V\330A\260\360\306@\230NG0" #"-[\255\26\361x\34UU\t\6\203\364\373}4\273]L\267\255\26\266\267\267" #"h6\e\344\v96\323\e\f\365\1\231\314.X\f\34N;\225j\31\257\317" #"\303\372\306\32\376\200\217\\>K$\34" #"\305\353\365\322\353\r\360\371\274T\253U3X\310\212\204fW\361z=f\265 " #"IP\253U\351\367{\350\372\220j\265B\"\221d\250\17\260\331\0244M\305f" #"S\304*\316\343fvv\206\215\2655" #"\272\235\16\311D\202~\257K\257\333\301" #"\246\310xGA\315\341\264\233\227\335n\267\vx\264\307cft\257\327k\2526" #"\2177\3c\335\0]7p:]\30\306\367\315j5\273\315lkt}\200\337" #"\357\307\347\363\261g\317\f.\227\23\233" #"M\0040\247\313\201\317\353\343\321o|" #"\235\271=\263\2348q\2\207]C\263\2534\232u\n\371\34\212M!\223\311\360" #"\322K/\362\315\307\37\347;\337\3766\325j\25MU\261JV\341I`\350\274" #"\353\335?A$\22!\225J\221JNP(\24)\344K\310V\205_\373\325\217" #"r\354\3501\3546;\275~O\370`Z\4\213\277\336\250\243\332~8" #"(\373\eu^\2275 0B\324\31\240\e\310\262\204l\225\211\245\222" ) 500 ( #"|\351o\377\226\301`@\261X&\21\217\323l\212\236z\365\346*^\217\eY" #"\222\b\207Ct{]\206\272n\256A\254\262B\255^'\20\b\340p8H\247" #"\267\320\r\261\v\236\235\231a\365\346*" #"3{f\331\332\331\25\223\361jYl\1\342\361\221v\277a\342\0\232\315&\203" #"\21\"oL\255\265\331\24\272\335\16\271" #"\\\16\213E\0\32\23\211\30\203\301\20" #"\273]\245\321h\"I\320\353\365QU\205F\243\211\305b0\30\fGY\245\205" #",K\264\333M\226\226\226\210F\243t\273]VVVL\272\353\265k\327XX" #"X\240P(\320\355v\271r\345\312\b\245&l\310&''\211Fb(\212B" #"\251T2\305F\306\203\260n\267\313\374" #"\374<\205B\301\334\201\373\375~.\\" #"\270\300p8\244Z\253\242i\32\245r\211\326H4\243Z\255\212\352`dH\242" #"i\32/\275\364\22\263\263\263loo" #"\223\313\345\360\373\375\"\3:4\34v" #"\241S\320\357\367LS\222\311\311I*\325\362+|!uJ\245\"\201@\200v" #"\273\315\236=\263\270\335B\300c0\30P\253\325\315vA\226e\n\205\2\211x" #"\202B\241\300\223\217=\306=\367\335G\275^\27\206'\232\235H8L<\36\247" #"\333\351`wh\337/\307G+\3121\345z\214\211\260\333\355\f\6\3TU5" #"\331\231\202\227\341DU5\272\335\2369" #"\330\34\f\373#\27157\201@\300\244E\327\3535AX\32\225\362\225J\231\v" #"\347\317\221\210F8\177\376<\261X\224" #"P(H\257?`\377\376\375\370\375~\236x\374q\352\rA\307>~\3748\23" #"\243\n+\24\n\21\215F9|\370\b\267\234:I\273\323BS\35d\26396" #"\326\327\t\207\303\354\335\273\217_" #"\374\371_\304\353\361b\225d\272\2356\232\252\216\344" #"\333$ar\"+\246\304\371\217\352\274.\1\300\30" ) 500 ( #"\351\324\352\306P\2245\262\204E7\260" #"\310\22\371\235]\236\177\341\5&&\247" #"\311\347\363\354?p\210\364\326\26`\21" #"\27\332\241\342t;\350t\333t{}\361oY,\3304\e\203A\37\207C\254" #"\277\300\302\316\316\0163\323{(\24KX\255V!FQ*\243c\20\f\370\231" #"\232\232\242\321lb\0\211X\214z\275n\232}\272=.\332\235\16n\227\213t" #":M\243Q\247R\251`\267k\304\242" #"\0214\233J\241\220\243V\255\341\365\n" #"\316u\275^\301\357\363\213\v\337h\212" #"\t\263d\305\341\320\250\327\352\364\373\235" #"\221'\374\24\215F\35]\37\22\217\307" #"\330\331\331\301\351t\340\361\270i\214t" #"\346=\36\17.\227\223R\251\210\335\256" #"11\221\32!\323D\213\321j\265\314" #"\a[\254\332\304C\275\261\261\201\335n" #"gkk\213C\207\16\261\276\276\316\276" #"}\373H\247\323\350\206\20\362X\\Z\"\36\217\343p8\360x<\370\375~\322" #"\3514\311d\22\3030\310d2\314\314" #"\314\320j\265\360zE\2733\306\306\337" #"\270\276\302\364\3644\272n\20\f\206\310" #"f\205_}0\30\300\355v\323l\326\261\331l#\343K!$\351\3668q{" #"\\t:]z\303\1\325Z\35C\327\361z\275\346\234b\"\225\342\361\307\37\307" #"\341t\262o\337>\206\275>\211x\234\311\211\t4U /[\3556\241H\210" #"Z\265\212U\222\314\357T\30c\202\"" #"\313l\254\257311\201\313\351$\32\215\322j\265\b\5\203\f\a\3<n/" #"\351\3154\30:N\247\3\267Kh\345\2516\e\275n\207\\6\307`\320\305n" #"\327\220G@\243^\267\203$YF\337" #"_\217\200\317\213>\350\341\17\370E\245" #"\326\3573\350\213\215\317\302\302\2\261H\214J\255J\245Ra{k\213L" #"6\313\364\3644\307\216\235@Um\350C}\344$\274\306C\17\375\30\277\360" ) 500 ( #"\363\277\300\311\23\2478\260\357\0\22\22" #"\305B\1\233\242\242\251v,f\321/" #"\215\2\201\345\277\233\261\371z\237\327\24" #"\0D\3167\30\350:\222E\200g\205" #"4\266\1\272\216\305*\21\t\4\331\334\330`ss\213h,F\241Xbvv" #"\226\335\335\f.\247s47\30`\221$j\265*^\257\217n\277\207\313\341D" #"Qm4\232-\16\348\300\322\322u\302\3410\222E\242\335n\323\353vqy" #"=\224\313\25dE\306b\201\255\255-" #"\242QQ\326\256\256\254\210^\323n\27" #"\246\211\0367\335n\27c\264\326\31\352" #"\202\3357\316\264\222\325B.\227\303\341" #"\264\v\205\27t\21x,\306\310\250B" #"\246\323\351\320h\326\305\4\271+.\277" #"\327+\274\f=\36\2179\211\356\365z" #"\346\316\275T*q\354\3301\256\\\271\"t\343G?#\313\362\310\220b\325\24" #"\363\260\214\264\3\306\326V\26\213\205\271" #"\2719\201\320\263\331\310d\204\240H>\237\307\355v\343t9\261X,\324\eb" #";P\251TF\270\0\37\273\273\273x\275^t]\347\340\301\203\344\363y<\36" #"\17\251T\212N\247\203\335n\3070\f" #"\352\265:\255\226\230\362\213\f)z\347" #"N\267=\302\3\210\35\275\307#p\2\251\211\4\225J\5\207\303A6\227!\221" #"\234\300awb\327\4\r\272\333\355\n\0S(\304\315\2337y\360\255o%\227" #"\313\221L$L\233\371\361\214#\237\3131;3M\245V\305j\265b\263\331\320" #"4\315\224\34\263Z\255\24\n\5\374~" #"\277\251\tP\255VQU\225\235\235\35" #"\362\205\34\361X\322\\\363U\253U\252" #"\325\352H\304Th\34D\243\21:\235\216\211'\351v\2734\233M2\231\f\350" #"C\f]\247V\255\240\e\6\211D\2\303@<\23\275\36\273\273\273\264\333" #"\35Z\215&\265F\3\267\333\315\251S\2478r\344\b\16\207\223N\247\313" ) 500 ( #"\365\245%R\251\t>\362\221\217\b\356" #"FN\310\233\265[m\254\262\25\217\313\213\325jE7t\332\2356\222\305jR" #"z\333\255\226\351\201\360\243:\257}\6" #"`\30\364\a\3\24\253\25\311\302\210\200" #"<\222\353\266\30\370C!:\315&7\226oR\251V\350\17\206#\270\343H$" #"\324&1\324\373\350\b9g\305\246\n\235\370\301\0\217\317K4\32\e\201W\4" #"SJ<\260-N\235<\311\312\352M&&&i4\e8\235\0163\303\333\355" #"vd\233L\263\335\"\32\211\214@#\306\210\24\4\26I\302\351\24\2033\227]" #"d\214P \300d*\205l\265R\253TPd\231\271={\310e\263\f\a\3" #"\202~?\375n\27\213a\340\260\333\t" #"\5\203\4\375~\32677\204\315T\265" #"\312K/\275\204\337\357\347\330\261cd" #"2\31\266\266\266p:\235\234?\177\36EQ\4P&\235\306\353\25\375\266\315f" #"#\30\f\233\272{c\261Q\257\327k\nt\344r9s\3006\336a\217\177\251" #"\232p\20N$\23\364z]\362\371\34V\253\204\252\332\304F\6C\200|F\225" #"\307\356\356\01633\323|\357{\337e" #"vv\206R\251L\273\335A\222\254\314\314\314\320l6\251T\312D\243Q2\331" #"]\302a1\263\350\365zh\232\212\313\345baa\236^\257G \340\303\357\17" #"\320\353\17q{\\\350\303\1N\247\203" #"\325\325\233\348\260\237\255\364&\16\273" #"F<\22\241\\*\342u\273\261J\26\206\275\36\261h\4\f\35\331&\217|\376" #"\372\243 \3431\305V\335n\267\211\333\360\371|\346zp,W&I\302=\270" #"^kR\253\325L\302\20\350H\222\305\234ex\274n\34\16\a^\257p\363\331" #"\332\332\32\301\231%\222\2118\377\357_\177\211\371\371)*\345\n\1" #"\277\37\213d\241X,\260\266\272\212lU\310\346D\260\265H\0223" ) 500 ( #"33\334q\307\35\364\272]\226\227W" #"\260Z\255\2348y\202_\373\345\217\21" #"\364\5\31\32:\21\177\30\331\252\240\251" #"\16a\277\215Pt\266\30\26T\233h\1\f]<\375\312X1\371Gx^S" #"\0\260\214~\353u\273X\255\362\250\254" #"1\320\373\203\221p\243(s\24\311\312\345+WYZ\\B\221e\332\3156^" #"\237\207v\253\201\323\345\302*\313\264\233" #"-\334./\225zm\204\274\312\23\16" #"\205\220e\e\362\210\236\333l\264\260\333" #"5R\251$\271L\6\331*\321\351uI%\23\350C\1\367\364\271\335l\2457" #"\361\272=\310\243\tu\263Q3{T`4q\267\211\311\360\250\257\274x\361\"" #"\303\341\220\305\305E\\.\27\231Lf" #"\364\240\a\250T*\f\207C\262\331\254" #"\331\2576\32\r\326\326\326H\244\4_" #"\377\374\371\363\242\324\35\16y\366\331g" #"\321u\235\251\251)s\35\27\215\n\26" #"Y<\0367K\361\255\255m\272\275\16\235v\327\34\0v:\35<\0361xK" #"$\22\344\363y\26\26\26L0\314\30\r(v\365U\232\255\26\341H\210\233\313" #"7q{\\\4\375\1vv\267\261\253\32\215f\35\247\335\201fW\31\366\a$" #"SI:\2556\262\"3=9\2154\"\371\354\337\277\217Z\255J\"\21\27Y" #">\225@SU\354\232Ffw\27\207" #"\335\216\242\310\314\316\3162\350\17(\344" #"\363\364\272=&\247&\331\331\332\306a" #"\267\2174\373\375dw\263\334\177\377\233" #"y\342\361'\360\371\274\330\24\321\"5[-\26\346\347\300bA\265\253Tj5" #"!\236)I\370\374>\fC@|\363\371\274\310\230#M\303\315\315M\206\303!" #"\236\221E\226$Id\263Y\\.\27\321\210\200\330\266ZM:\235\356\210\216-" #"\22\304x\273m\30:\205B\201\315\315\r\316\236=" #"k\6SEQ\330\331\335a\377\201y|>\37\353\e" ) 500 ( #"i\366\355?\300\366\356.\273\231,\252" #"\246\342\365\371\204\273N0\310\221\243G" #"9p\340\0\231L\206\313\227/\23\213" #"Ey\313\3\367\363\236\237\370\311\221\331" #"\270\5\325\252\320j\267\261)b\3664\336\217Y\260\214*dF\366\361=\323S" #"\342\177\352\0\0\342\355\331\24\233\270\374\206EHDK2c}r\220\360y\375" #"\224\362\5\26\257^C\263\333\321\207\3" #"\242\201 6\233\r\325\241\215\214Bt|\376\0\203n\37}\324\27+V\31\277" #"\327K\257\327\301\202A\263\325\"\20\360" #"\323n\267\210D#\254\255\335\304\355\260\243X%,\206A,\22A\222,\310V" #"IL\362{]z\275\36S\223)\32\215:\315f\3\227\313\211\241\17\351v\273" #"8\34\16\n\245\22\212\315F \30dbr\222|\241\200\303%\346\5\235^\217" #"n\257G\257\337'\233\313!+\n\221h\24\257\337\317f:Mb\264\32\332\336" #"\336\31\21Yd\262\331\334\b\3742\317" #"\365\3537\230\234\234\242V\23^s\343\207zbb\222@ (\366\353\375\1." #"\247\203h$\314\240\337\3C\247\333i" #"\263\177\337^N\277\374\22\207\16\36\240" #"\220\3171\34\364\261``\350C\332\255&\222\5\\\0367\355v\213^\277C\300" #"\347G\323ll\245\267PlV4\233J&\273C\257\333\303\341\324\210E\242D" #"\242!\34\232\35\227\333\201\313\341$\26" #"\213R\257UI&\222X0\220\255\22\30:\325j\231f\263A\275^cbb" #"\2\311b\301\347\365\341v\271\221\2552" #"\311D\222v\253M\277\333GUl\370\375^$I\fDg\247g\300\320G-" #"\214A\"\231D\222-\244&&\220e\v\252\25214D\313\207$Z\20F\263" #"\243n\273\215\337\353E\261Z\31\366\373X-\26\206\203!\355V\213" #"\213\347/Q)U\210Eb\270\235n\312\3052\306P\2477\350\323\355" ) 500 ( #"\265\361\270=Xe\v>\237\27]\37\232[\220t:M\245R\241X,\261\260" #"\260\27\227\313M\265Z\303fS\311fs\204\242\21\256,.q\360\320a\322\333" #";4\232-&\247\246\261\251\32\255v\227\375\a\16p\340\340A$\303`g{" #"\233z\265\312\377\362\341\17s\377}\367" #"q`a\0376\331\206\202\204\25+\22" #"\240*\332\350\312\217\377\373\201;n\1" #"Y\261b\225\177\364\227\37^'g\240W\237W\276e\v\30\26,V\231T<" #"\306\2313g\330\335\336\246T,\322\357vq\272]\370\3AZ\3556`\301\320" #"u\374\201\0N\207\223\235\355m\"\2410>\277\37\233b#\20\f0\221J\322" #"\355w\311\27rd2\2734\353ud" #"\253\25\217\333\205\313\345\304\345r\242\353" #"C\272\235\366h`%v\275\343\236\3230\4\237`<l\32g\223\351\351ij" #"\265\232@\34\36>L\267\3335\373\372" #"\3610\316\353\365\342\363\371\250T*\224" #"J%\342\3618\372hk\261\273\273\313\376\375\373Y__G\3234s\22>." #"g\5\356^\364\346\343~v<\25\267 \330\212\e\e\e\4\203A\23\a\36\16" #"\207YYY1\263\342\230(\322\353\365" #"\204\nn\253e\266\\\16\273F\247\323\306\355rS*\25q9\205P\207\333\345" #"\"\24\nb\3274,\26\360z<\f\207\3\202\201\0~\277\217f\263A\320\27" #"\304a\327\260k*\331\314.n\227\223|.G(\30D\265\331\320T\25\f\203" #"d\"\201\337\347\303\353\366 Y\304\20" #"K\266Z)\226J\214\215\312\24YF" #"\226E\366\336\331\331\246\323\351\20\32q" #"2\242\321\b\355N\207R\271D\273\323\241\\)\343\17\4h\265\32\370\375~l" #"\252B\275Q\243^k\320\353\365P\24\5\247\323\211\246\t\344\337\315" #"\225UVFs\35EQ\250\327\353\2\234\245\367h\267\333\4C\1\223" ) 500 ( #";P\251T\360x\304lfjj\212`0\210\246i\364z=\322\3514\325\252" #"\310\352\301`\220b\251\304P7(\225" #"\312\270\334\36\274>\37\245r\5\207\335" #"A2\231d\337\276}\344r92\273\273\f\6\3\356\270\355v\356\276\353nb" #"\341\30\222UB\261XG\303=^u" #"\341\377\177p\267\177\250\363\332\315A\377" #"\eG\357\365\220l6|>\37\277\371\233\277\311/\377\362G8q\342\4\333\333" #"\333&j\257\336l\20\n\207\205\eM" #"\263\311\345\313\2279r\354(\232\246\261" #"\272\272\212\333\343\31\301^\35lgv\t\6\203\346P+\231L\"Y,\264Z" #"-4M#\34\16\233\353\252bQ\354\330\23\211\4\231L\206N\247c\356\234\307" #"\364\325W\252\305\224J%&&&\204" #"\224\231\242\340\363\371\360z\275\270\\." #"1t\312\347\361\371|\302\254r\204:" #"\314f\263\354\337\277\37\207\303A*\225" #"B\3234\263\314\4\314\241\230\335n\27" #"k\260\221P\310`0\20\276\203V\231" #"\265\2655\206\303!\271\\\216\301@\354" #"\256\267F\244\232\361:ol\35>\206\302\326\353u\1\216\361yM*\264$\t" #".\374`0\300\351t\342\363\371\204\305" #"\365(\250\r\6\3\2\201\0\222$\231Ai\320\27\202).\227k\4\224\21d" #"\227\361\21\3O\301\307\257\327\353\264\333" #"\355\21\344\26\332m\201M\30\f\204TZ\251T21\354>\237Op\3F;" #"{EQ\314\366\311\341p\320n\267q:\235\24\363yTU\375\2761\253n1" #"\207z\202\207\240a\30\6w\336y'\271\\\216\353\327\257s\345\312\25S2{" #"}k\235H$\302\352\352*\335n\227" #"\353\327\257c\267\333q\273\335h\232\306" #"\306\306\206\te\6Fs\27\1\6\32?\17\361x\234v\273M\273-\330" #"\251\241P\210d2\211\315fc\351\3525\272\335.\373\366\355#\32\215\362" ) 500 ( #"\346{\3573)\273V\313\217v\205\367" #"z\234\327\r\a\360_\236\221J\251\325" #"J\247\321\300\346t\20\362\373\311\347s\\\273v\215@ \300\365\345\ex|>" #"\302\2210\223SS\\\277~\35\331je\240\17Y[_c~~\236h<&" #".\233d\245\325n\323n\266\230\230\234D\327u\321\337\252b06\336A\217\a" #"i\346Ji\204k\267\216\234k:\235" #"\216\251\2703f\310\215\367\331n\267\233" #"\235\235\35\323&|0\30\220N\247\361x<\204B!\334n7\262,\323j\265" #"\260\331l\346\254@\340\24\322\346\305\325" #"4m\244\25\377}\333\255\261\317\3348{\203\350\5c\321\250)\362Q.\227I" #"\245R\330\355vS\364\2\304Tz\274\276\ec\eTU\f\345T\273\206\256\17" #"\261\333\205n}8\0346\2156*\225\212\t\217M&\223\270\335\243M\310\bw" #"_,\226\t\370\3\346{\32_RUUq\273\335LOO\23\b\4\360\371|" #"D\243QTU\220~t]7\271\373\327o\\\307j\25\227|\f\333\36\a\334" #"L&\303\304\304\204\351\261\330\351\2147" #"'^\372\375\276\340\4 \372\361q`\351\367\a\2\2619\34\242(\212iDR" #"\253\326M\251\264\331\331Y\23\331w\350" #"\310!dY\346\372\365\353\24\213E\261qH&\315yI<\36\27\314D\277\377" #"U\25\324\330\327\240X*R\257\327M\333\357X,\306\221#Gh\217\304O\365" #"\301\220\271\2719\336\373\336\367r\362\344" #"I\302\201\20\215f\3\335\320Qe\333?T\344\377Ou^\aw`\376\221\367" #"o\230\177J\222\204\5\3\213Mp\5\256]\273F\275^\307\353\367aX,8" #"\234N\322\233\233\34<t\210\341p\310" #"\361\23'8r\364\250\270\254\206`\261\215\377EM\323\260\0C]" #"'\21\213\323\357\3651F\27\0360Wjc}}\300,\25576" ) 500 ( #"6H\245R\264\333\2\3057f\357\215\365\370\306\231i\214o/\217\f=67" #"7\315\212\240\325j155\305p8dyy\231\205\205\5S\334\303\347\363\261" #"\265\265\305\361\343\307)\24\n&!\250" #"\327\353\211\17\333j5\263\215\313\345\"" #"\26\213a\223Ev\37\a\251@ 0\302\218MN\3028H\215Yv\343\327" #"\223e\231v\247\315`0\304b\221\310fs\370|~\352u\2219\267\266\266\31" #"\f\206\314\314\3142\34\352lll299E\243\321\244\333\25\27A\221\5\361" #"\244\323\351\240i\232y\271-\26\213\t" #"\351\265\331l\346{\310\347\363\246@j\247\323!\32\213\"IV\24EXY\351" #"\272A\273\335\301\353\365Q\251TQG\220\357n\267\307p\250\243(6\341uh" #"\300\366\366\16^\217\333\274\350\0\335\221" #"B\362\367\345\321\5\235\370\377k\357M" #"\203$\275\312;\337\337\373\346\362\346\276" #"gV\326\276\367.\365Z\352\246%!" #"\244F\226\204\214\5\26F\3\326\334\360" #"\4\216\331<\314\204#\b\217\347\303\275" #"7|\31_\"<\343\271\16\6\270\23\16\233/\226\215\211\2137\354\1\323Z0" #"\22\2I\320\373Z\335\265t\327\236\231" #"\225\225\373\376f\346\375p\336s\272[" #"-!b\204\200\246\363\211\350Hu\327" #"\242\312\254<\317y\226\377\322\227H\242" #"\353:\227.]\22\272~cc\350\272" #"\216\315!\22\375\314\314\f\211D\202\243" #"G\217\322\337\337\317\221#G\230\230\230" #"\340\312\225+\244R)\325\342\r\f\f0>>\256(\301^\257\17\267\313M\247" #"\335\301\353\36121>\301\352\312*g" #"\316\234app\220\337\3727\377\226\203" #"\a\0172><\206\3410\0\r\227\341" #"\202\216e\301f\355\363\357\324x\317+\200V\243\201\3350@\327\250\24\n" #"L\355\330A\243Zenn\216\251\351i\326S):\335\216\"\212\214\214\214" ) 500 ( #"\340\367\371\204\370\242\341$\231\350\303\27" #"\360\343v\v\373gI\35nw:\324\252U\22\3618X0Q\227\313E0\30" #"T\275\273\334\363\347r9\325;\3122ttt\224|>\217\323\351\24\nA\341" #"0\233\233\233j\315T(\24T\271." #"\327n\271\234\320\273\2237\364\340\340\240" #"XE\225J\352F\221\20V\227\313E" #"\245R\241V\253\251\252C\226\360\232\246" #"a\30\206\340\31X\203A\1\265\325U\"(\227\313\302.\332\322\303\327u]$" #"\277\233\\\205\234N'\215VS\225\244" #"\222\300\343\363\371T2\223\353\264d2\251\354\267\352\365:}}}\2tT\256" #"(\265cYu\310\262_0\352\352\252\237\226\30|\211!\0p8\5\2656\24" #"\nQ,\26\211\305b\24\213EB\241\20\331l\226r\271L \20\240\333\355Z" #"^\2126\305L\264\331l\4\3~\265\1q\273\335\30N\27\325jU\251\0\245" #"Ri\v\271W \235N\343r\271T\v544\204\327\357U\317\335\357\367\343" #"\365zi6\233\244R)fgg\225\243\360\310\310\210RB\252V\253\352\347Z" #"XX \24\nq\350\320!\202\301 \307\217\37'ci\26\356\335\273\227\373\366" #"\317\20\f\4\325\21o\264\32\330mv" #"\0346;\232\366\336K\322\277\327\361\256" #"\331\200o\37\226\335v\313D\263\333-" #"\272\260\213V\255J\273\335\346\367~\357" #"\367\310f\263\2348s\206B\241\300C" #"\17\177\200l6K$\32\345\352\325\253\274\357\201\373YY[\25\275z_\202F" #"S\334\f\321xL\330$;\235B\273\316\353\303p:\205\310c\275\256\16\216 " #"\0\5X]]%\32\215\252U\236a\30J3_\32hH!\6\271\233\267\333" #"\355d\263Yb\261\230\22fX[[\243\\.366\246\240\276" #"~\277_\355\243\345\316\337\343\361p" #"\362\344I\356\271\347\36\226\226\226\210" ) 500 ( #"\307\343\267P=C\241\220\22\4\311d2\204\3B\"\314gi\353\327j5\242" #"\321\250\202\3776\233M\345$l\267\333" #"\325\274\"\237\317\23\211DhuL\3653\233\246I.\227\243k\31Ld2\31" #"._\276\314\314\314\314-\375w&\223\241V\253\221H$\b\aB4\233M\274" #"^/\313\313\313$\223I%N\341p8H\245R\364Ym\212\374zY\2767" #"\233M\262\371-\365:OLL\260\260" #"\260\240\332\230H$\302\251S\247\210F" #"\243\352p\312\312,\36\217\213\304R\253" #"\220\317\347\331\334\334\4\300\353\361+," #"\277H\222\242\342\321\270\1\f\2223\32\3030hv\232\n \224L&9{\366" #"\254\2e\r\f\f\250\231\216\264\35\213" #"\307\343\4\203A\272\335.\301`\220\311" #"\211i\0\216\37?\316\342\342\"\317<" #"\363\f\273v\355\342\351\217|TTX\226L\227\303&*\245\246e\273m\266M" #"\3546\373\35\237\0\336\373\31\200\256\323" #"5MlN\a\355f\23\273\313\300\356t\362\360C\17\361O\377\364O\364%\372" #"\250\325\353\330mv\f\227\213V\263\211" #"\337\357\247V\251*\306\333\320\300 \376" #"@\200\201\201\1|^\37\245\262\30\200E\303\0214P\204\231\\.G\255V\3" #"\4\217_\316\2\344\26 \24\n\221\311d\210D\"\30\206\241\b(\36\217\207B" #"\241\300\364\3644\265ZM\340\324-\23" #"\f\3030\360x<\226\204\226x\23\313" #"\351\262\354\207%eV2\331\322\351\264" #"B\373\r\f\f\260\265\265\245>&%" #"\253\4\233\255\213\317\32\326\265\333mu" #"\313.--122\302\332\332\32\361\270\240\243J^\276\327+T{WWW" #"\t\4\2\30n\227Jv\225J\205J" #"\245\302\312\312\212\3622\30\31\31\241\257\257OXqY2d\362\0\270\335" #"n\326W\327T\277\335j\265\360x<\252z\220\263\20\277\337O\261XT" ) 500 ( #"\255\222\234o4\233M\320Eb\233\236" #"\236V\245\271<\364\200\252($\302\257" #"T*\t\235\302\262\230\376\247S\e\0" #"\312z\335\347\363\253M\212\313\345\"\237" #"/\210\337O\276\250\250\321\262\212i\265" #"Z4\315\246\22)\231\230\230`tt\224\301A!\320\322\327\327wK\273\22\b" #"\4\30\36\36&\34\16\23\f\6I&\223,\314/\362\334s\317q\364\350Q~" #"\367w\177\227O|\342\23\30\206A\314b\\\272\r7\355N\e\233n\243\203\300" #"\357\3\230m\223N\267s\213\355\366\235" #"\30\357\272\2x\363\27\337dN\374\246O\354@\267K\247-,\235:\246p\332" #"\375\340\243\277\304=\373\366r\376\374y" #"\272\32\f\17\17\203\246\261\262\262\302\300" #"\360\20\376\240\30\300y\3~t\213!\327l6\321u\235@ @\335B\314I" #":\253\34NIU\225L&\203\327\353%\225J\21\213\305\324\0N\354\255k\267" #"@P\245\353o\243\321P\223c\273\335\256\222\202t\365\351t:\204\303au\b" #"5MS7P*\225R\23q\277\337O0\30dii\211\353\327\257366" #"\306\316\235;\t\205B\252-\361{\274" #"\252\317_\\\\\244\\.\253[\334\357\367\213M\20158s\271\\j\223\260\274" #"\274\f\200\333\347\3050\f\"\221\b\365" #"z\235h4\252|\a\313\345\262\372YdK\"\333\20\331c7\25255 \25" #"\340\24\233B%\326\353uej\n(O\29\245\3274\r\263\333\261\240\326\1" #"\346\347\347oy\316\27.\\`\357\336\275\f\f\f\260\270\270H,\26crr" #"\322\342b\224q\273]\270\234v\302\3410\221HD\300x[\35\245\b,\252&" #"\241\363o\323\35\230\246\311\354\354,\327" #"\257_\27\314\316p\230\266&\222J,\26\243\\.\253v\251P(" #"\260j92\233\246\311\370\3708\251T\212\255\255-\16\35:\204\313\345" ) 500 ( #"b~~\236K\27g\371\324\247>\305\207?\364$\375\375\375\270,v^\313l" #"\342\264\337\200\351\312{\376\366n\277W" #"\1\334\0227^\2407\247\206\356-\217" #"\32bX\27\f\205\370\233\277\376kb\2118\e\353\353B'\300\353\0216\331." #"\27\305b\21\177\300Oj}\203s\347" #"\317S\267\246\352\222\247\337\355tH\245" #"R\0\212k\36\215\n\220M\253\325byy\231V\253%l\246+\25\242\321\250" #"b\230\371\375~E\242\221\tCn\24" #"n\376\23\213\305\224J\213\264\354\222\260" #"\325H$B\"\221\260`\263m5A\2277_>\237'\231L*\2730M\323" #"\b\6\203\312\311\267f\241\326\32\215\6" #"\321hTa\a\362\371<\315fS\255\35er\222et\271\\\26R\344\t\1" #"%^ZZ\302\357\367+\177\277l6\313\306\306\206r36\fC\315\35$\267" #"\276\335n\343\363\bu#\231X$)I0*\261,\320;J\223@\272\37K" #"f\236n%\203\365\365ub\261\230j" #"\243\244\267\241a\30\2349s\206\311\311IR\251\24\347\317\237ghhH\3157" #"\2666\267\330\332\312\n\373\264X\214\341" #"\241\21\225P\242\321(\16\207C\264:" #"M\321>\355\337\277\237\311\311I\326\326" #"\326\270z\365*f\307$\26\213q\375\372u*\225\n\251T\212R\251\244^\a" #"\211\"\274p\341\2\0O<\361\4sss|\345+_!\32\215\362\371\317\377" #"w\236|\362Ib\241(h\b\250.\202\206\335\245\213\335f\277\345}}{\2" #"\270s\a\200\360\23\252\0\244\305\324-" #"\337\370\266\n@\34X\255\333Q\2757@vs\213\323\247O\363\205/|\201\235" #"{vs\366\354Yt\273\0\230LNNRm\324\t\204\204F}W\27%\273" #"\315f\303\264\260\337\225r\231k\327\256100" #" \6\205\326m-o\201t:\215a\30\252\314\226" ) 500 ( #"%\275|\303\3127\242\\=\1\212F\353t:U\177)'\367\3620\311\201\226" #"\364\312s\273\5\211H*\376\370\375~" #"\v\20\263\246\204C].\227\342\264K" #"\270j\243Z\23\362^E\341\216\324l\212\2366k\211i\356\330\261C\31Q\350" #"\272\256\206\225j\360hs(\373\360\341" #"\341a\265\2\254T*\0\312\335HN\3703\231\f\341p\230\301\301A\322\3514" #"tDI]\251T\24\330(\20\b\220\313\345T\5 _\vY\325HI\257j" #"\265\212fs\320\337\337\257\34\215\346\347" #"\347I$\22lnn\322\355v\225\243o\253\325bff\206B\241\300\345\313\227" #"9|\3700\323\333&i\325\353\344\v[\224\313BT$\24\214\340t:\325\374" #"C\220n\352\320\325U{$\315K].\27\377\370\302?\362\364\323Os\345\312" #"\25\6\6\6\250T*\234?\177^%\270\231\231\31\346\346\346\230\231\231ahh" #"\210/\177\371\313\344r9~\347w~\207\17~\360\203T\n\25\266m\333\241\6" #"\225n\253\2h\266\304s4\254\222\377" #"\316>\346o\37\357\232\r(\37\337\374" #"\2I\307\235\216uS\337\230\th\226" #"\212\260\r\315f\243c\266\331\271g\17" #"\351\215\r^8\376<\333w\356\340\344" #"\211\223\354\330\261\303\"l\f\220\313\347" #"\5Q\310f\247`\21?\244\270\245\\" #"\241I9\251n\267\253\16\230i\232\252\27/\26\2138\235Nl6\233R\350\5" #"n\271\351\244\2\220\256\353x\275^5" #"x\223\30\200T*\245nb\233\315\306" #"\354\354,\223\223\223\n\271\326n\267\225" #"\37\235\234\322\313\3X\253\325\324\352\256" #"\333\355\252\3\354\260\376.\345\306\374~?\335nWIx\3\212\v/5\377R" #"\251\24\255VK\360\344\333\35\265\201h\265Z\2123 +\5\351C\240" #"i\32[[[\n\247`\232&W\257^\245Q\27\254?]\327\258k" ) 500 ( #"`@p\371\245/\242$'\335\274&\254T*\270\\.\274>?\231L\206b" #"\261\210\246\t=\306\37\374\340\a\0$" #"\223IU\312\347r9L\323\344\300\201" #"\3\354\334\271\223L&C:\235\22\22" #"\343u\261\1\0213\21\361\374\245\375\231" #"DL^\274x\211\265\2655\245\34\\(\24\4\360\312\343\262X{5^\177\375" #"u\325\6j\232\306\310\210\250&\246\246" #"\246\270z\365*\337\372\326\267\230\230\230" #"\340\313_\3762\277\372+\277\312\311\323" #"'\2319x\230H(\202\335f\267\206z\352\r,\300U\326\277\374\242&\200\237" #"\330\4C\336\367\262\22\270a\32$\246" #"\354\2\265\252\335\366J\372C!*\205\2O=\365\24\27.\\`mm\215\17" #"\177\370\303\234\277x\1\273C\250\305\272" #"\274\36!\361\275\265\205\337\322\240\317\347" #"\363,--\361\300\3\17\320\337\337\257" #"d\245\244$\265\204\357nl\210!\223l\t\6\a\a\325<\240T*\341\363\371" #"\224h\204\324\215\223}\360\326\326\26\213" #"\213\213lmm\321n\267\31\35\35%\30\24\206\230\246i288\250\254\272\244" #"\353\214\274\375\1r9\241\255\37\211D\0245W\352\333KpP\243ZS\353)" #"\311j\223\304%\233\315\246Xn\22\351" #"X(\24\324\377K\327u\232\315\232*\311\245Qa)\271\0\0 \0IDA" #"T\206a\261XT\267\371\271s\347\270" #"t\351\22###\352\326\234\232\232\302" #"\341p\220\317\347\251W\313\252\2\222\223" #"\362c\307\216\261\262\262\242\364\5d+" #"$\223J\267\333Us\t\263\203JZ" #"\253\253\253\214\215\215a\30\6v\273\235" #"\37\376\360\207h\232F\263\331\344\276\373" #"\356\343\350\321\243j\340\352\363\371\310\345" #"\263\244\327\327YZ\276F\261X\244\323\351\20\213&p:\235\364\365\36513" #"3\3\210\26$\30\bS.\227U\245344\244\320\240\343\343\343$\223I" ) 500 ( #"u\360\257^\275\252\230\224\257\276\372*" #"\325j\225\211\211\t\276\370\305/\362\340" #"\203\17\222\313\345h\323\346\211G\237\240" #"m\331k\233fKUJ\272\246\343\260\204:n;\370o?\364\272#\343]\265" #"\0\352\220\337\364o7Z\1k\rh\255\237tMz\25\277\331\213O\274\202\225" #"b\221\\.\307w\276\373\n_\372\322\227\30\36\35\21\246\26N'\333\266mc" #"ym\225LV\2300\352\16\273R\367\221*/\228#\245\256\333\3556CC" #"C\344\363y@\270\374\272\335BR\\" #"\16\335\262\331,\272\256+\27\369\361\226H\261z\275N&\223QV\325##" #"#\312\225F\16\353\354v;^\257W}m\273\335\306\345r\251-\204\334J\310" #"C\275\266\266\246\332\210@ @\245XR\353F\231 \344\224^N\256%\370\247" #"\257\257O\31]H\241\320F\253\255\200" #":\22P#\361\17r\230\366\332k\257" #"\335\3422\263o\337>\272\335.\347\316" #"\235#h\355\321\263\331,+++\324\353u>\363\231\317p\356\3349\332\3556" #"\211DB\2756\355v[\351\a\352\272.p\25\350\312-Y\266E\363\363\363J" #"(T\212aNNNr\362\344I\2659\231\237\237g\327\356\35\324+\25lv" #"1\0271M\223ZU$\255+W\256X\0,\247\0203\251\324q8\34j\36" #"\263\265\265E<\36\307\355w+c\26" #"\251\232\244i\32\243\243\243j\365\371\371" #"\317\177\236\203\a\17\252\325\241\304x\30" #"v76n?\350\235n\207\266e$\3526\336$\331\365\v\226\0~\342;\214" #"7W\0027d\215\337\336\212\273Y\255" #"\342\265Vd\273w\357\346\300\201\3\274" #"\366\306\353\34>|\230\223\247N\261\262" #"\262B\271Z\301\357\367\213\276\273,\344\237\4\177=\257zkY\232\312" #"\336U\16\317\352\365\272\352\237\327\327\327I&\223\2Jl\r\277\344\301" ) 500 ( #"\261\333\355j\".\373\320\215\215\rVWWYXX`xx\30\233\315\246\372" #"s\371\246\225\300\25i\341\275\271\271\251\206j^K\354T\3234\345I'WX" #"\345r\31\257\307\243\266\r\22~,\315" #"!\344\340\315n\267\323n\267\325Ak4\32\352\200\307bB\360bss\223h" #"4\212\333\355&\32\215R\253\325\224\320f\"\221`}}]\201od2q8" #"\34\312\360bccC\365\355o\274\361\6\211DB\241\363\272\335\256Z]6\233" #"M%`Z\257\327i\264\332\nd3??\317\342\342\"n\267\233\235;w2" #">>\316\341\303\207y\375\365\327y\356" #"\271\347\330\271s\247\302_<\373\354\263" #"\314^\271\304\304\350(^\237[\375\356" #"<n\37\367\335w\37\325j\225\325\325UR)a\266q\371\374EB\261\210\252" #"\200\204\a@\227\272\265\241\270\377\341\a" #"\231\236\236ftt\224m\333\266\361\374" #"\363\317\23\217\307y\364\321Gy\350\376" #"\207\350\320!_\314c\267\333\5\204\332&P}\265F\r\247\335\300n\323iw" #"nl\230\334N\343'}4~.\343':\4\274u\30h\371\217\337\362\3317" #"%\1\311\3276\333\26P\250\216\303\355" #"\242V\255\262\261\261\301\177\376\277\177\237" #"+W\256p\360\320!.^\274(L.\21\253\261\275{\367\342\17\6\270x\361" #"\"\36\277\217L&\255\336\350bR\356\3030\f\256]\273\246Xy\17=\364\20" #"\232\256S\255T\320t;~\257P\271" #"\315\27\266T\2\220\0\24M\323\360\373" #"\375\370\375~\316\235;\207\246i\\\277" #"~]\355\230s9\241\227'\315/\244\235\370\315\240\35y\343J\206\232\4 I" #"\177\300Z\255\306\306\306\6\206\335\241\312" #"Z\251\32\234N\247\225\273\220\224\f\aT5!\373\337V\247M:#" #"*\233NG\354\250\345P3\34\b\252\271@:\235\346\302\205\vl\337" ) 500 ( #"\276\35\335!\222\311\256]\273x\375\365" #"\327Y\234\277J,\26#\225Jq\375\372uFFF\360x<<\373\354\263T" #"\eulh\350\16qO\30\206\241\206\210r\276b\323\35\2348q\312Z[z" #"y\340\201\367\23\215\206\25\2\362\345\227" #"_\346\340\301\203\324j5\226W\256\363\310#\217\20\f\69}\342${\366\354" #"\1\255m\271A\243\3463\305\202`\4" #"J\246e\275n\251\25\331\205\22\220l" #"\25GFF\330\265k\27\317\376\363O" #"\322i\203\341r\220\335\314q\374\371\177" #"\344\303\277\374\24\273v\357`\347\216\335" #"\270\234N\332\335.6MP\324\5\177\337F\255Q\303cxi\266L\264N\27" #"\273\341\340fz\217\264V\277\355\r\177" #"s\334\355\25\200d\375\337\374(\342\35" #"\366\243\326'6\314&.\207\223\256." #"\4D\354\16\203h,\301g\377\257\337" #"\347s\237\373\34\237\377\243/p\354\330" #"#\4\375!\322\233\31\226\263\313\214\16" #"\215\262pu\1\207\313A6\235\306\355" #"r\320\250U\350\230M\f\267\233R\251" #"\210\333\235\340\342\305\v\334w\370\b\337" #"\372\326\267hw\340\336}{\251\224\3128\234.2\31\301\24t\332m\n\2743" #"::J\245\\\303\37\b\320\355@\247" #"\r\261h\2\267\333\215\323!\34}\243\2218\371\\\21\267Kh\25\3526\a\232" #"\246\vY2]\34~\247\323\251\204@\374\276 [[[x<\36\261e0a" #"sCL\365G\aG\331\314o\242;\354l\346\266\0\360V\4\24\30\233N8" #"\26\305\314d\2505\e\224J%\205j" #"\353\37\32$\265\231\301p\271\210%\342" #"\330\34\16\n\271\34\376`\0\263\331\302" #"i\263\3236M\32\226\327_,\24\306a\267s\361\302\5!u\225N\361\340\203" #"\17\n}}\247\235p8\304\360\330\bn\237G\r5" #"u\207\r[G\fi=\36\227\22$\r\307\"\214Z\304" ) 500 ( #"\255\343/\276\300\340\300(}\311\1\36~\370aJ\345\2\353k)\3266\326I" #"\255\257a\232&\273v\357 \235\331\300" #"\241\333823\303\342\334\34\253\253\253" #"\334\263{\17\232\336\261~W\206\265I\361P.\27Y^YV\t`kk\213" #"bAl\b\212\305\22\363\363\3638\34" #"\16\376\331'>\316\314\241\303\364Ec" #"\4=\1\346\347\27\371\356w_&\24" #"\212\360\37\376\355\277\347\201\373\337\317\315" #"W\223M{\363\25\245\3433D\373\343" #"r\330\271\331\25Z\306m\207\37\356\370" #"\3\377\346\370\211\340\0\336~G\372V" #"\237y\353\37M\27x\200\346M~\350" #"\272\256\253r\365\300\201\375\374\331\237\375" #"\231\270a|~\274\36/\1\177\200\221" #"\341a\372\223}|\363\37\377'\321X" #"\204V\253\211\303a\307\356p\262\266&H0\331l\226W^\371.\0\207\16\315" #"\20O\304q\273\305\320\317\347\17\322n" #"\233\326\255 \270\1+++\4\203b\345\30\b\4\330\330\330\3004MVVV" #"\224O\275\264\352j6\233\204\"aaY].cw8hw\3328\35N\212" #"\305\242\232\376\267\232\2]\227\313\345\b" #"\6\203\24\255v@\266%.\217\213\271\2719t]g``@U\26\22[_" #"\257\327\225xI6\233Um\201\303\341\240T.So\231\264\332&Z\267K\247" #"-\264\31\e\265\32n\247\201M\323I\304\343|\371O\377T\364\357~?f\253" #"E\241$\310U\23S\223\204\203\1\6\a\a\30\31\eeuu\225\265\2655\6" #"\6\6\210%\204kO\261T$\20\b02:\212\335\341\240\336j\362\247_\376" #"2\325Z\215\217>\3754\203\375#\370" #"\374\1\26\26\27X\272\266\304\334\334\34" #".\267A\300\357#\32\215\262\261!\264\t\a\373\3739s\346\f_\372\177" #"\277\300\307?\3661\16\34\334O:\225\246P\314S\251\224\310f\267\304P" ) 500 ( #"\262^\247R)\263\265\225#\233\315\362\332k\257Q\255U\350K$U{\370\321" #"\217~\224\351\351ivl\333Fv3" #"\307\253\257\274J:\225\342\303\277\374+" #"\374\353\177\365\257\230\236\332F\3334\351" #"v\204\225\333\r\236\376\233\37oS\257" #"\270\353\342g\216c\224\223n9+\220\223xM\323x\344\221G8v\354\30\215" #"F\203?\371\223?ayy\231n\267\3133\317<\303\346\346&\27/_\340\320" #"\241C\254\256.\263\347\336\275\350\272N" #"6\223a\327\216\35\240\213)t\"\36" #"\307\356p\360\306\eop\361\342E\36" #"\375\245\307\225\375\266\323\351$\350\23;" #"\357L&\243Vf\303\303\303T*\25\6\6\6XZZ\242T*\211\333^\327" #"\211\305b\304\343q<\36\17\365\246\330" #"\231wK(\272\253T\370\225\342\233+K\313\304\343q\5VjX\237#\313y" #"\217\315C4\32U\316\270R\264D\323" #"4\301\230\264\266\aB\277\377\6E\330" #"\343\361\320\356thk\226\232\256\341\242Yo`\327mBo\337pav\332j" #"\222\337\266\370\b\321h\224\265t\212\205" #"\205\5\336w\377Q*m\23\303pQ" #"\257\324h\326\32\354\337\177\0\257\327\313" #"\2713\347x\364\321G\211Z\340\236\23\247Nr\371\362efggy\346\231g" #"\30\31\37\343\225\227_E\323lLM" #"m\23\36\220\305\2\367\354\335c\201\257" #"\234\270<n\272@,\36\347\354\205\363" #"\274\370\322\213|\362\331\377\215]\273\357" #"a\361\3725\354\16\273bX\226J\25\326\327\327\25\310iee\215z\275N0" #"\20\3467\177\3637i\267\333J dxx\230\271\2719\376\362/\377\22\267\323" #"\313\321\243G9r\344\b\261XL\255\23\345\n\265\27?:~n^%\311s" #"\a\224t\226\254\b>\375\351O\23\217\307q:\235\374" #"\321\37\375\21/\274\360\2\333\266m\343\340\201\3\374\303" ) 500 ( #"7\276N\253\325\342\a\257\277\301\314\341" #"\373\24\235vb|J\331l\231\255\26n\227\227\301\301ALk\n\35\217\307\205" #"\340g\263A2\231T\324\333s\347\316\251\225Y\245RQ^y\305bQM\260" #"\3\1!0\371\374\363\317\263{\367nB\221\260\"\3178\235N\265\322\223p_" #"I?N\247\323\364'n\340\323\275^/k\353k\214\217\217\23\16\v\207_\351" #"\200+\271\vr{ a\256\225JE1\367\f\303\300f\b\334<\235\16\232!" #"|\346\f\227\v\315n\303\326\355\262\260" #"\260@z3\303\370\3708\211D\202\v\27/\322\265\340\265\345b\t\255\2533;" #";\313\350\310\270h\t\f\301{\360z" #"\374\344\363y\376\366\357\376\236R\251\300" #"z*M8\34\344_\374\213Oq\356\334\31\276\363\312\253LNN\342v{\271" #"r\345\n\271\\\216\2611!\375>==M:#\234\230w\354\330\306\267\277\375" #"mN\237:\305\336\275\367\362\370\343\217" #"se~\216j\265\f\235\16\255\226P" #"\351\2256\340r\206\342\367\a\351\353\353" #"ch\360\6\227\241Z\255\342\361x9" #"~\3748W\256\\\341\277\376\301\37\222" #"\331\310062\252P\177\22\242\f\374\324\34v\357\344x\17\311@?nt\325" #"\355/\3276r\17/WZ\36\217\207\3\a\16\20\n\205\370\370\307?\316\37\377" #"\361\37S\253\325\210\305\242\330\35\16^" #"\375\336\367\360\373\375LOMc8\\\3506a(\2618\277\300\374\345y&\266" #"M\262\266\266N\241Xd`\240\37\267\313\240\323i\v\237\370pD1\353$\344" #"\365\354\331\263x<\36\342\3618W\257^U+\255\245\245%\5Q-\26\213d" #"67q:\235\f\217\f+v\234M\267\335\242G\340\363\372\324\e\274X,b" #"Z\4\e\211\20\324lB,C\16\330n^U\206\303a\361\nu\273*\1H@\216\304\5t" ) 500 ( #"\273]!\251^(\3402\204VB\300'V\231\272\335F\241P\340\312\225+\2" #"\215h\232\212\373pun\216\373\357\277" #"\237\311\361\t\302\241\b~\277\230]\30" #"\16\27\367\356\271\207V\273\3037\376\347" #"7\270xi\226R\251\304\373\216\334O" #"(\30\344\207?<\205\303\351\340\336={YZ^\301\343\361Q\255\325\30\30L" #"r\345\352,.\227\213\245\345e\n\305\2\321h\204S\247O\263\221Zgtt" #"\224O\376\372\257\223J\247X][\245" #"X*\261\266\266\206\303n\243\230/\340" #"t8p\31.\202\2010\375\311\1\372\223\375\214\216\214\3422\334d77\311m" #"\345(\344\v\\\231\235%\24\f\362\37" #"\177\347?\321j\265\3306\271\r\227K\254\352\344\373\350f,E/~t\374\\" #"$\0\0312{\3137\251$\365HbJ,\26#\227\313\361\304\23O\260\271\271" #"\311\361\343\337bjz\212\367?\360\0\227.\\dye\205\311\211)\252\225*" #"\341P\230\351m\323\4\303!\366\357\335" #"\307\322\265%\354v;\367\354\271\a\335f#c\331\206-]_R=\367\213/" #"\276H:\235V\322_\355v\333\362w\23\306\e\311d\222}\373\366188\310" #"\367\276\367=:\26\2549\30\n*\377" #"@\207\335\241\336\220n\267\e\335\232\304" #"\227\313e\234N'\27\316\235G\3234" #"fgg\3214\215\373\216\334\307\332\332" #"\232\202\32\303\215vB\36z\t}\225:\2rUew8\260\331\355h\272N" #"\271T\0224\325\226\211\3230\350Z\366\330{v\355\346\324\251S\\[^R\267" #"\344\344\344$\243##\350hx<>|>?\233\233\233\364\365%Y]]\345" #"\322\245\313\374\355\327\377\216\371\371\5b" #"\321({\356\271\207\371\371y\32\215" #"\246%\214\22\346\245\227^\"\340\367\343t\e\\\272" #"t\21\273\335\316\350\350(\313K\313\f\17\17\263\271\231" ) 500 ( #"aaq\221\205\371y\356\275w/\17" #"\177\340!\322\3514\265Z\235n\267\303\272\305\373hY\326\353}}}LLL" #"000\310\350\350(\201@@\330\242\247\322\244\323Bh\325\345r\361\311O~" #"\222\17=\376!\334\36\17A\237\337\22" #"\344\20!\333:\311\263\220+\313^\274}\374\\%\0)\315u\363/Mb\332" #"%\23.\36\217\343\363\371\30\e\ec\367\236]<\177\3748\233\231M\356?z" #"?~\237\37\303\351$\331\327G1_\304\345r\363\2037~\300\3513g\230\230" #"\30\347\211\307\37\303e8i4\353LMNP.\25\211\204\243j\270\267\262\262" #"B6\233U\234y\t\36\311f\263\324\353u\306\306\306,)\255,\247N\235B" #"\323u\346\346\346X\337\330 \231L\212" #"7\251\341R\322S\205B\1\257\307\253" #"\312\372\241\241!\316\236>c\371\326\211j'\30\16*8s4\32\245^\257+" #",\302\315\345\276\244\300J\332\256\303\341" #"\240e\232\370\374^\234\16;\232%3" #"\255\353\32\246\331\302p:\350\322\245\335" #"i\23\211E\330\330X\307\353\36504" #"8\300\201\3\373\31\32\32\304\347\365\341" #"\363\370(\227\252\214\f\217\240\241\363\377" #"}\355\257x\375\3657\b\5B\f\16\0173::\306\251\223\247\b\205\302\f\364" #"\17\262\231\331\344\332\3425\222}\375L" #"MOq\346\334Y\\^\27\361\2768\231l\6\227\313`n~\216r\251L_" #"_\37\333\266oG\267\331\b\205\302\274" #"\361\203\327\351t\205\275\332\310\320\b." #"\303`\373\324\24C\375\203\214\217\215\23" #"\n\206h\324\352\4\374~<n/\347" #"\317\235\347\343\37\3738\17>\360 \367" #"\356\271\207\367\359B$h\251\249\34\330t\e\32\232\202B\313\366Kj2" #"\366*\200w\216\237y\2h4\352j\350'\367\326" #"R;\16P\f=Y\362J\304Y\"\221\240/\221\344" ) 500 ( #"c\37{\232\263g\317\322h4\260\3516\202\201\0\221h\4\315\232\200w\332m" #"\356\277\377~\22\3618\351LZh\355" #"\247\322\344\267r\270-\203\222\256\345\n" #"\363\342\213/\252M\300\305\323gq\270\f\216\36=\252\20\207333t\273]" #"\276\377\375\357\223\315f\331\314f-\311" #"\260\353Lo\333&\312\354fS\21\222\\.\279k\5(\tI\347\317\236c" #"qqQ\371\3\234=\177\226G\37}T\241\30[\255\26\206a\20\16\207\361x" #"<\312\35\370f\266b8\34\26\346'" #"\226\272\216nU\6\22\247\337n\267\351" #"\213'\2040h8\314\320\340 \277\366" #"k\277\306\330\330\30\271\\\216\355\333\267" #"[\312\306\3\270\335\36\22\211>\256_" #"\277\316\177\370w\377\216l^\370\16\214" #"\214\214P*\269y\352\224\330\343W" #"\253\314/\be\336\307\36{\214\365\365u.^\272@\242?A8*\332(\323" #"4\331\312f\205\243R\27\345\204<2" #"2B&\235\246\277\177\200\376~\341\205" #"\30\360\373\205\350\252/\200\327\343\26\3" #"\334l\226\265\2655\246\247\247y\377\3" #"\17\341\366\270\271g\317=\370\274>\221X\233\rtk\340)Y{\235vWy" #"!\2\312iY\2\216n\0\321z\361V\3613O\0v\273\355\26\1774\211\210" #"\223!?&\301:7\377B=\36\17n\303\340\361\307\36\307e\2708s\372\f" #"\353k\353\200F\261P\340\362\354,ccc,.,\320i\v\251.\272]\\" #"\206A\301\302\315\373\374\1E\326)\227" #"\313\f\r\r133\203\323\355\342\300\201\38\34\16N\236<\311\316\235;\25" #"\327\275V\253\t\305[\233\316\310\310\b" #"\253\327\2561\275C0\312\326\327\326\210" #"\305b\2121\327\264p\372[[[\244\323i\276\363\374K\34~\337\21\n" #"\205\202\320\f\364\270\230\230\230Pd" #"!\311i\220\334\4y\263\3117\263\304" ) 500 ( #"\343K\331\261V\263\201\303p\340\366\270" #"\3214\210'\342\3506k\6\241k\230\2356^\257\207\377\362_\377\v\227g/" #"\263s\307\16\261u\b\6\351\213\3079" #"\361\303\223|\343\37\276\301_~\365\2538\r\203` \200\337'DWl6\e" #"\373\367\356c\361\232\300\352\357\330\261\203" #"\261\2611\305F\34\e\37\243\\)\263" #"\2700\207\256\301\312\362\22\363g.\340" #"\r\69v\354\30CCC\214\217\216\262\231\3110=9\205\3414H\366\365S" #"\257\325\271\367\336\275\214\215\215\262pu" #"\16\247\303\216\313\345azz\eO>\371\313LOn\303l\267\31\36\32\346\206" #"}\266\216\335\356@\323l\250\0252\372" #"m\a\\Z\212I\225\344^\374\350\370" #"\271\331\2\374\257\206\246\353\\[X\340" #"\227\36{\214F\243A6\233\345\353_\377:\333\267ognn\216r\251$8" #"\352\206\203\376d\222\253\263\263\334\377\340" #"\203D\"\21\241\370c\211J\206\303a" #"\366\354\331\303\327\276\3665\34\16\a\333" #"\267o'\221H\220\315f\231\234\234\3044MVWW\331\275{7\a\17\36\344" #"\342\305\213LLM\n\nnv\23\257\327\313\304\304\4A\177@q\352\345M^" #"\251T\30\37\37\247\333\355r\357\201},//+)k\177\330\257\24~\341\206" #"\315\265\327\353U-\221$\337\270\\.\345g \267\16\353\353-<.18\224" #"\355\1\200f\23X})B\372\211O|\202t:\215\216\370:\263\331\344\17\377" #"\360\179w\356\22\206ST\31}}}JU\271\335\22$$\341\234\233Td" #"\241\315\315M|V\"4[-%\20r\365\312\25\32\265\32\217\377\352G8|" #"\3700\265\212\200n\247\323i\306G\307" #"\204\354\333C\0171\177u\216\337\370" #"\215\337\240\333\3560\230\34$\36\n3\220L\340\367" #"\a\225\314v\273\333\266\bdw\343f\376\247\e\357\241" ) 500 ( #"&\340\217\eo\317\21\370q\242U\253\v\255\301\272x\334L\2458}\356,\247" #"N\235`u}\r]\327X\\\\\244P(\340\361y9z\364\210\262\352\216\306" #"\373\360\370|\330\34\206\"\347<\367\334" #"s\f\f\f055\5\b\200\320\351\323\247\t\207\303JLd\377\376\375\274\364" #"\322K\240k$\223IN\234:\211\327\353e\317\236=\324*Ur\271\234\222\377" #"r\332\35\252\224\267\331l\24\266r\374" #"\371\237\3779;v\354\3004M\346\256" #"\315\361\351O\177Z\271\bK\341O\271" #"\26\225Z\177\262\254\225z}R\225\307c\30`\323U\302\251\326kj\a.\371" #"\370\221P\230V\275\301\322\322\22\241@" #"\220B.\307+\337y\231\215\215\24\333" #"\266\357\244\321\20\"\240\341\260Xg\242" #"\353\252\244\217\304\204\264W6\233\305\345\365\250Vlaa\201|&\rN\215P" #"\"\306\243\217\34cjj\212d\262\37M\323\310\2446\205\273n2I4\34!" #"\24\212\220\315f\351\213\305q\270\fb" #"\301\b\0\355V\25\303Z\367\212\20\256" #"\321R\216LS\340\334\336m\376^\304\35_\18\\.\350B\307\24k\267X" #"_\37\37\354{\224\303\207\16\362\337\277" #"\364E\316\236=C$\22a\307\216\35" #"\2348q\202\263\247\317\320\2618\5\215F\203@(D0\24bmm\215f\263" #"\251\344\242\244\212m\247\323!\32\215\336" #"\242\17(\207r\243\343c\254\256\256\222" #"H$\210F\243\4\2\1\6\222\375j\215\231\317\347\251U\252\204B!\345A0" #"22\302\364\3644\311d\222\361\361q" #"\232\235\246\222\25k\265Z\204\303a\205" #"7\2204e\3234\25\223M\316\b\244" #"\254\227\313\242\365J\221\322B\251\210\307" #"\353\245T\22\366\347#\303\303\224\312e\0346;\367\334s\17[\233Y\212" #"\371<\251T\212\376\376$\265J\25\335n\263\210Lu\312\345*\335n\233" ) 500 ( #"b\271\n\232\260\336\252TJ\370|\1.\236;K\265Z#\20\16\342p\30\354" #"\2339\304\356{w24<L\277e\307\356\363x)\25\213t\333\35>\364\370" #"\23bK\342\361\3:^\227\233h(\"\3046\200\226)\254\305\352\215\232\"n" #"y\334^tM\307p\32t\272\35\264^\21\360\236\306\35\237\0\350\352\264j5" #"\f\257\237F\271\202\341u\323n5\361\207BBb\334\357cnn\216\v\347\317" #"\322\327\27\247\277\277\37\200\371\205\253\270" #"\334^VWW\351 \312e\211\6,\227\313T\253U&'')\26\213J\t" #"H\336\254\327\257_\307\343\361(\336\275" #"\303t\340v\273)\227\313\330u\233R" #"\370\225b\235R\264R\356\372C\241\220\270%3\31FFF\0240H\202`\244" #"\305\370\315\332{7\317I\244\242\222\324" #"Gl\231\302\30\263\335n\1\35\354\16" #"\35\303\345\300\360\30th\343p\330\204" #"\337^\247\205\303i\243\277\277\217P(" #"@\241P\240\325\22\32\201tu\314\226" #"A\263\325\306\353u\23\216\b\307\241j" #"\265\216\317\353\246Z-S-\225q\270" #"\f\350\230\214\217o\243\336\250\22\217\306p:l4\353\rR\353\e\370<^v" #"m\337A}\244\201na\357\5\316\276K4\24A\353\202\313\341\3044;\30v" #"\a\32\246\2457 *\36\263mZz\373\322l\266w\363\277\227q\307\267\0\365" #"b\25\227\327G\255\\\302\355\367\323i" #"\212\255B\261,|\342\253\265\n\253\353" #"\353l\244\326x\341\205\27\270:7\207" #"\333\355fp\250\237Tz\223|\271\212" #"\341\26\375\273T\t*\24\n\350\272\316" #"\360\3600\331l\226\373\356\273\217\245\245" #"%L\323TrW\315f\223Z\243\316\241C\207\270\266t]\351\375\271-d\236" #"T\341\325\254WWRo\275.7\213\213\213JF" #"\314\360\32j#`\263\t\233n\251a \371\3657\243" ) 500 ( #"\333\244A\207\20\314lQ/U\350\322\246C\27\315f\243R\253\3420\234h\326" #"\20\254m\255\fm]\215\\6K(\20\304\201\316\365k\327(\225J,,^" #"\247\321\20*C\345r\231\262%\252\322" #"\325E\233\221N\247\5A\310l\261m\3336\216\349\302\326\326\26\37y\372W" #"Y^^buu\31M\323x\362\361'\211D\"4\233M\306\206F\1\215j" #"\275\212\307\345\23\2460\330\204\212\256\246" #"S\2577\255\327\304\206\315&\325\242\304" #"\363\253\326\204T\232\313\360XC\337;" #"\377\216\372y\216;>\1\320\321i\225k8\334\6\350:\225bN\0p\f;" #"t\273le3D\242Q\320\341\373\337\377\36n\267\301s\317='\b5N\27" #"\272\313M6WP\242\32\262\364\226\353" #"\267\233]x\344\r\356\365zI$\22" #"\234<}\212\376\376~\232\246\220\342\212" #"\305b\30\16\301\351\227\25C\307l\23\211D\330\330\330`}}\235]\333w(" #"\235\372p8L\335\254+\2\220\315f" #"#\231L\222\317\347\225\271\207\254\f$" #"n@V!\342\373\333\3506M\354\16\35\263\323f+\237\247\321jR\252\224\321" #"-Y\355F\255\306\332\332\32\321`\30" #"\237\307\303\302\334<\21\177\220#\207\17" #"\263\261\261A\313\354\340\367\v-\376B" #"\241\300\322\312\262\2408[F$\361\276" #">\306\306\306\310\27\v\312^kmm\215g\236y\206\241\241!r\371\254\320H" #"\264np\237;\200\16d67\211\307\342\200N\3334i6M\341)\3200q" #"8\355t; Lu:\320ms{\255\257[\224\361w\0\362\364Z\204w\25" #"wv\2\350\352tZ-tK\270\261U\253\341\360\2107b\263V\303f\323\260" #"9\235\24\213\5\274^\217P\310\355" #"\232\312]\347\205\27\277\315\213\337\371\16h\342\246\223" #"\6\26\225J\205L&#~:k\6\220N\247qZ" ) 500 ( #"\6$\0\233\233\233\370C\202\352\233\34" #"\350\243\321ha\263i\230\3156h\35" #"\"\341\30\253k\313\304\242\t\354\16\235" #"\364Z\232p$\210\256\331\t\4}t\332\220/lax\334t,\362\212$\373" #"\24\362y\241v\343v\263\271\271\251\370\4R\365\247Uo(w\240nW$\216" #"6]\362\305\2\21k^a7\304\326`mYX\225\235?w\216p0D\247" #"e\322n\231\350@ \20\300l\211\241\242\34\2&\372\223\354\330\261Cl\nL" #"\223={\366\360\235\357|\207\227\376\351" #"\333t\273]\36z\350!>\376\364\307" #"\321\200b\271\210\335.P\233N\353\246.[\370{\315\"\210k@\263i\342t" #"\334\4\312\271\205w\333\246\321\250a\270<@\307J\f\242\354o5\2338\34o" #"R\344ys\364\22\300\273\212\237\203\4" #"\360.\343G\375\364\232\360\"P\342\245" #"R\204\344\246\247\234+l\341\365z\271" #"|\3712\227/_\246\331l\262\264\264" #"\304\232\265\317w\273\335B\232\314R\n" #"\226\216\303.\227\213r\255*\312u\35" #"\354v\a.\227\201\333\355\261,\262\273\230f\v]\267a\267\333p9]lm" #"e\261\331\354\224\313%\\.7]\rZZ\27\303\355\245\333nS\253\325\204r" #"\220Kl\f\272\335.Q\313\274\263\260\225S+\300j\245\"4\0\v\5\2\321" #" v\247C\271\3336\333BQH\312xI\215\300\251\361\t53(\344\204%" #"\232\303\341\240/.\324\221|\226\35v" #".\227\3\340\225W^\341\257\276\3665" #"4M\343\251\247\236\342\331g\237\345\340" #"\301\203J\234D\357\212\344\350\262$\263" #"\336\372\34\376\270\375\373[K\312\364\342" #"\275\217;?\1\274C\334\374\364\336\352" #"\277\273\3356v\273N\273\323\0262^\36/\251t\212\253W\257\322\351t" #"X]]\345\265\327^#\227\313\251[Y\2vD\e\341\304\354\n5\240" ) 500 ( #"J\245B\241PP\344\37\251\343_,\26\225\214\227\364\rp8\34t5\215\353" #"\353\353t@I\201\365\367\365\21\16\207)\346\v,//340(\224\202\334" #"\36\301\222\264d\303M\323D\267\331\310" #"\26\363\324ZM\"\221\210\22\e\255\327\353LM\t6\244\335n'\231LR." #"\227\271r\345\n\27.\\\340\341\207\37" #"\26\356H\16\a\177\361\334W\4\261)" #"\225\6`\345\372uh\267\211\365%\331" #"\277\177?\277\377\331\377\314\310\310\b\261" #"h\f\20\307\263\335\271\211\276\335\273\202" #"\357\350\270\253\22\300\233\377.|\1\273\np#Wl\362s\344-\234\315f\351" #"t:lll\360\315o~\223\23'N\340\365zI\366'X\337\330P\346\241" #" nEi\274!\225\210\245\273\361\340" #"\340\240\350\273[-\262\331,\245z\25\1778B\275\331P_\323mwT%`" #"\30\6\305|\201z\275\256\0E64\305\\L$\22\364\r\r\20\f\207X\\" #"\\$\20\b\250\355C:\235\246^\257S,\26I\245R\312a\350C\37\372\20" #"333\34?~\234/\376\267\377\a\354N\206\6\207\360z\275\244\323iff" #"f\204\36\300\3513|\356s\237\343\243" #"\277\362\21\365zu\272\35\350t\224Y" #"\6\364*\360;=~\341\23\200\214\267" #"\253\4\352\365\252\202\215v,\6\235\24" #"\275\224!\327x\362\2207\32\r\205\306" #"\263\331\355\2349{\212\27^x\211\305" #"\305y\354v'\16\207\215b\261\314\346" #"f\232\231\231\303,.\316\323\355j$\223\t\266\266\362\330l\32.\227\al:" #"\231\334\26\241\210\300\366KA\21)l" #"\221J\245\30\35\36\271E\347\37\4\335" #"ucc\203F\243\301\331\363\347\2505" #"\352\324\353u\316\236=K4\32\305f\263q\370\360av\357\336\255n\375" #"\a\37|\220\367\277\377\3754\32\r\376\340\17\376\200+\27/226N" ) 500 ( #",\22W\34\2\227K\250\23\1\374\313O\375&\277\375\333\277M\267mi;J" #"\226\346M\207\337l\2338l\275)\375" #"\235\34wM\2\200\267N\2\272\216\302" #"\335\2779\344\252\356\346\220\324\\\231 " #"J\225\262\240\346\332\235V5aG\327\261\20l\0352\233Y^}\365\25\362\371" #"\"\232\326\245\323\1\323l\22\nE\2506\252Tk5R\233\31\325\2H\220\221" #"\323\351\244\325j1\277\270@\251$\264" #"\360\362\371<\245R\211J\251\204n\267" #"\323\2515H\216\16\3\360\276\367\275O" #"\271\b\355\335\273\227\23'Np\372\364ir\271\34\277\365[\277E<\36\347+" #"_\371\n\337\372\372?0\266}Z}\377\301\376!\322\3514\241P\210\253W\257" #"2<0\310g?\373Y~\351\203\217\n\377@\257\200(\337\356\374\324\213_\204" #"\270\253\22\0\334\336\22h\332\215\301\240" #"D\336I\322\221\\\315\311\341\231D\344" #"I\262R\247\323A\263\246\337\225jE" #"9\26\311\tz\263\331\304\347\365\221/\344\5{\317n\307\246\333h4\e\30N" #"\203F\263\201\3315y\365{\337#\223\311\340r\t\361\315\223gN3;;\313" #"\312\312\212\230\354[\373\365p4\242\376" #"\337\303\303\342\340\17\366\17(\375\177)" #"y\376\362\313/\263\266\266\306\307>\366" #"1\216\35;\306\337\377\375\337\363\315o" #"~\223|>\317\370\3708\23\23\23\312" #"E\350o\377\372\357\30\30\30\240^\257" #"s\354\3301~\375\237}\202@ \300\201}\373\325\341\357t;\202nl\231e" #"t\351\366z\377_\220\270\353\22\0\334" #"\232\4\252\325\352m\262Q\222\20#m" #"\274\264\267\301\243\nm?1m\267\333\337zz\335j\265-#\20\313V\332\354" #"X[\4']\240e6(U+\\\275z\225?\377\213\277\340\253_\375" #"\252\360\266\37\36\3024M\1\354q8@\327\24%\330\260\264\377=\36\17" ) 500 ( #"\261P\30\273u0\263\331\254\242\353\216" #"\215\215q\342\304\t\316\2349\303\245K" #"\227\24\217`\333\266m,,,P\314\347\261;\2358t1\277\370\314g>\303" #"\365\276\1_\0\0\5,IDAT\343\217?\316\330\310\2502:\351t:8" #"t\233\240\335\232\355[0\b\322\36\255" #"\27wv\334\365\t@\36n\251\372\353" #"\361x\200\333\333\202\233\377.\3159t" #"]W\255@\247\203\252\36l\266\233a\273\2\343\"\37;\35\321v\b4\\\207" #"\313Wf\371\322\227\276\300\363/\275(" #"\3007n\267\240\371v\332\244\323i<" #">\257p\272\31\37#\24\n\21\215\307" #"\211D\"\344\ny\354\272\r\277\333\203\331l1;;\313\304\304\4###\234" #":u\212|>\317\306\306\206\3624\224\346\243n\267\233X,\306\340\340 O=" #"\365\24\221`\204Z\255\306\375\357\273_" #"\274\36\210\e_*\355\350@\275Q\247" #"\325h\2529\210\364\36\220\4\245^\334" #"\271qW&\200\237vt:\342\360\313" #"\263b\232\302a\347\273\337}\231\377\375" #"\377\374?\250\325*\30\0361k\b\4" #"\203\202c\340\22\333\b\315\246+\231\356" #"N\247\203\315\341\240T*\21K\304i\326\e\244W\326\210\205#x<\36e\"" #":==\315\241C\207\24\243\361G\205" #"\307%\312\374\267\300\341\275\345\277\377\242" #"\31c\334\355\321\e\341\276\307Q(\224" #",2\221\20\366\f\205\204W\375k\257" #"\275\306\337\374\315_\261\271\231&\22\217" #"a\232&\271|\36\335f\23\234\373`\200\231\231\31\252\365\32CCC8]\2" #"\206\274\276\272J\265^'\24\n\221\210" #"\305\310\2452T\253U\222}}<\360" #"\340\203\34\330\277\37\237\337O\267\323Q" #"\200\273\37\365\330\213\273;z\25\300\273" #"\215wx\365\232\215\6N\303\240\323n\243\333l\24\v\5" #"\36{\3541\316\2349\303\303\307\36\241X+\261\262\272\252\f" ) 500 ( #"I\234N'\323;\266\263{\367nR" #"\251\24\331\334\26\232\246\tH\260\333\245" #"|\20k\265\32\251\365\r\236\376\225\217" #"\260\367\336{9\260w\37\16\247A\247mRk6\360\271=t\321n\301\327\275" #"\325\343\233\347\373o;\355\177\273\347\331" #"\253\0\356\350\350%\200w\e],\310\261\376\266\217\331l\232\223'N3<2" #"\310\375G\37\344\300\301}\370}AN\237=\205'\24\240a\266H$\22\f\16" #"\16\322n\267Y^^\306f\263\321\337" #"\337\317\225\271\253\214\216\216\242i\32>" #"\237\217f\263\311\324\324\24\373\366\355c" #"|t\214\373\366\35DGL\346\253U10\224\270\373v\247\255&\367o\37\372" #"\333\270;\213x\307\4p\313'\365\342" #"N\213^\2x\327\321\341G\337\261:" #"\363sW\370\37\377\343\217y\355\265\357" #"\341\365\372YYY\242\335\3562:1N\246\230\247iy\323;nR\306\221\3" #"\305x4\306\256]\273\30\34\34\344\320\241C$\22\t\206\207\207\361x<tZ" #"&n\207\23\263\331R\f>@\211k\274\223&\236\205\204x\313\217\375X\a\377" #"\266O\356\305\235\26\275\4\360\256C&" #"\200\267\216\331\313\227\371\342\27\277\310\311" #"\223'\225\337\237\337\357guu\225\225\3655\206\267Mcv\332\370|>a>" #"r\355:{\367\356eff\6M\3238r\337a\246\246\246\2041g L\267" #"+\320\2006\315fIcv\241s\273\372\255\2446\337\214h|\313\320\336\272B" #"\350%\200\273#zC@\370_\237\206i \16\377\333\177\203\271+\2634\3535" #"\306GG\230\237\237\247\\.s\342\ao\320ht\30\32\37\22\36\201v\e\371" #"b\221'\237|\222G>\360\1\f\303\300l\266\370\300\3\37\240Z\257\340uy" #"\325=\335\266|\5}^\37\215z\35\35M\31" #"\221\310C\357r\271\224\222\360;\255\351zC\375\273" ) 401 ( #";z\25\200\214\37gd\376V\217\262" #"\2x\233\217\317\317^\341\223\377\374Y" #"\262\351\f\e\2314\311x\202\221\3611\266MN\261\363\336=\fMM1:9" #"N<\32#\32\215R\253\325\bz\2\264i\243\243[\226\353\342\e\326\eu\334" #"\206\233\256\325\333\227+e\374^Q9" #"\300\r\261\20@\311\222;n\21\334|\253\247}k\345\360\216k\2777G/c" #"\334\321\321K\0?\221x\373\26`}m\215\27^|\21\247\303A<\221\340\221" #"G\36acc\3\303\351\244T.3<2v\333W\277\23#\376gz\346n" #"K\200\275\270\223\243\227\0~\n\221\317" #"\347-\341K\247\262\3742\f\243ga" #"\335\213\237y\364\22\300O9$\353\357" #"\307\351\317{\321\213\367:z\372K\357" #"qH\25\337R\251\4\334\260@\227\336" #"u\275\350\305\3172z\25\300O)\344\215/+\0I\246\351E/~\226\321\253" #"\0~\n!A= ,\320\313\345\262\252\fz\321\213\237e\364*\200^\364\342" #".\216^\5\360\36\207\354\371eT\253UZ\255\26\325j\2657\3\350\305\317<" #"z\25@/zq\27G\257\2\350E/\356\342\350%\200^\364\342.\216^\2" #"\350E/\356\342\350%\200^\364\342.\216^\2\350E/\356\342\350%\200^\364" #"\342.\216^\2\350E/\356\342\350%\200^\364\342.\216^\2\350E/\356\342" #"\350%\200^\364\342.\216\377\37\n\272\214+`" #"\316\300\220\0\0\0\0IEND\256B`\202" ) 0 0 23 3 1 #")" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 17 3 26 #"; rotate1 : image -> image" 0 0 23 29 1 #"\n" 0 0 23 3 1 #"(" 0 0 15 3 6 #"define" 0 0 23 3 2 #" (" 0 0 14 3 7 #"rotate1" 0 0 23 3 1 #" " 0 0 14 3 2 #"im" 0 0 23 3 3 #") (" 0 0 14 3 6 #"rotate" 0 0 23 3 1 #" " 0 0 20 3 1 #"1" 0 0 23 3 1 #" " 0 0 14 3 2 #"im" 0 0 23 3 2 #"))" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 23 3 1 #"(" 0 0 15 3 6 #"define" 0 0 23 3 1 #" " 0 0 14 3 4 #"disk" 0 0 23 3 3 #" (" 0 0 14 3 7 #"overlay" 0 0 23 3 1 #" " 0 0 14 3 3 #"bar" 0 0 23 3 2 #" (" 0 0 14 3 6 #"circle" 0 0 23 3 2 #" (" 0 0 14 3 11 #"image-width" 0 0 23 3 1 #" " 0 0 14 3 3 #"bar" 0 0 23 3 2 #") " 0 0 19 3 9 #"\"outline\"" 0 0 23 3 1 #" " 0 0 19 3 7 #"\"white\"" 0 0 23 3 3 #")))" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 23 3 1 #"(" 0 0 14 3 12 #"check-expect" 0 0 23 3 2 #" (" 0 0 14 3 7 #"rotate1" 0 0 23 3 1 #" " 0 0 14 3 3 #"bar" 0 0 23 3 3 #") (" 0 0 14 3 6 #"rotate" 0 0 23 3 1 #" " 0 0 20 3 1 #"1" 0 0 23 3 1 #" " 0 0 14 3 3 #"bar" 0 0 23 3 2 #"))" 0 0 23 29 1 #"\n" 0 0 23 3 1 #"(" 0 0 14 3 12 #"check-expect" 0 0 23 3 2 #" (" 0 0 14 3 7 #"rotate1" 0 0 23 3 1 #" " 0 0 14 3 10 #"pic:hacker" 0 0 23 3 3 #") (" 0 0 14 3 6 #"rotate" 0 0 23 3 1 #" " 0 0 20 3 1 #"1" 0 0 23 3 1 #" " 0 0 14 3 10 #"pic:hacker" 0 0 23 3 2 #"))" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 23 29 1 #"\n" 0 0 17 3 19 #"; start the unverse" 0 0 23 29 1 #"\n" 0 0 23 3 1 #"(" 0 0 14 3 8 #"big-bang" 0 0 23 3 1 #" " 0 0 14 3 4 #"disk" 0 0 23 29 1 #"\n" 0 0 23 3 10 #" (" 0 0 14 3 7 #"on-tick" 0 0 23 3 1 #" " 0 0 14 3 7 #"rotate1" 0 0 23 3 1 #")" 0 0 23 29 1 #"\n" 0 0 23 3 10 #" (" 0 0 14 3 7 #"to-draw" 0 0 23 3 1 #" " 0 0 14 3 7 #"show-it" 0 0 23 3 2 #"))" 0 0 23 29 1 #"\n" 0 0
false
6a4963e55e7d2b5b3cc3ac743315fc0acfbdf9b5
204668b065a065cd7a76a253b4a6029d7cd64453
/langs/jig/example.rkt
c2eb3720f3d5088934c7c2ec9170945c206844f4
[ "AFL-3.0" ]
permissive
shalomlhi/www
9c4cb29ea28132328efeeff8e57e321e57458678
8c5cd01e39aec2fbf0fb350cd56a406878a485ed
refs/heads/main
2023-02-24T23:54:15.886442
2021-01-30T14:23:10
2021-01-30T14:23:10
null
0
0
null
null
null
null
UTF-8
Racket
false
false
83
rkt
example.rkt
#lang racket (begin (define (f x y) (+ x y)) (let ((x (cons (f 1 2) '()))) x))
false
a40492e839c68e9a4ec660ceddb1da102daf4b8a
099418d7d7ca2211dfbecd0b879d84c703d1b964
/whalesong/tests/older-tests/moby-programs/setbang.rkt
43b373ee0edcecb95895194b37d549d61b200c20
[]
no_license
vishesh/whalesong
f6edd848fc666993d68983618f9941dd298c1edd
507dad908d1f15bf8fe25dd98c2b47445df9cac5
refs/heads/master
2021-01-12T21:36:54.312489
2015-08-19T19:28:25
2015-08-19T20:34:55
34,933,778
3
0
null
2015-05-02T03:04:54
2015-05-02T03:04:54
null
UTF-8
Racket
false
false
4,548
rkt
setbang.rkt
#lang s-exp "../../lang/wescheme.ss" (printf "setbang.rkt\n") (define some-value 16) (check-expect (set! some-value 42) (void)) (define song '()) (define (bottles-of-beer) (let ([x 100]) (define (loop) (if (< x 1) (void) (begin (set! x (sub1 x)) (set! song (cons (format "~a bottles of beer on the wall\n" x) song)) (loop)))) (loop))) (bottles-of-beer) (check-expect (reverse song) (list "99 bottles of beer on the wall\n" "98 bottles of beer on the wall\n" "97 bottles of beer on the wall\n" "96 bottles of beer on the wall\n" "95 bottles of beer on the wall\n" "94 bottles of beer on the wall\n" "93 bottles of beer on the wall\n" "92 bottles of beer on the wall\n" "91 bottles of beer on the wall\n" "90 bottles of beer on the wall\n" "89 bottles of beer on the wall\n" "88 bottles of beer on the wall\n" "87 bottles of beer on the wall\n" "86 bottles of beer on the wall\n" "85 bottles of beer on the wall\n" "84 bottles of beer on the wall\n" "83 bottles of beer on the wall\n" "82 bottles of beer on the wall\n" "81 bottles of beer on the wall\n" "80 bottles of beer on the wall\n" "79 bottles of beer on the wall\n" "78 bottles of beer on the wall\n" "77 bottles of beer on the wall\n" "76 bottles of beer on the wall\n" "75 bottles of beer on the wall\n" "74 bottles of beer on the wall\n" "73 bottles of beer on the wall\n" "72 bottles of beer on the wall\n" "71 bottles of beer on the wall\n" "70 bottles of beer on the wall\n" "69 bottles of beer on the wall\n" "68 bottles of beer on the wall\n" "67 bottles of beer on the wall\n" "66 bottles of beer on the wall\n" "65 bottles of beer on the wall\n" "64 bottles of beer on the wall\n" "63 bottles of beer on the wall\n" "62 bottles of beer on the wall\n" "61 bottles of beer on the wall\n" "60 bottles of beer on the wall\n" "59 bottles of beer on the wall\n" "58 bottles of beer on the wall\n" "57 bottles of beer on the wall\n" "56 bottles of beer on the wall\n" "55 bottles of beer on the wall\n" "54 bottles of beer on the wall\n" "53 bottles of beer on the wall\n" "52 bottles of beer on the wall\n" "51 bottles of beer on the wall\n" "50 bottles of beer on the wall\n" "49 bottles of beer on the wall\n" "48 bottles of beer on the wall\n" "47 bottles of beer on the wall\n" "46 bottles of beer on the wall\n" "45 bottles of beer on the wall\n" "44 bottles of beer on the wall\n" "43 bottles of beer on the wall\n" "42 bottles of beer on the wall\n" "41 bottles of beer on the wall\n" "40 bottles of beer on the wall\n" "39 bottles of beer on the wall\n" "38 bottles of beer on the wall\n" "37 bottles of beer on the wall\n" "36 bottles of beer on the wall\n" "35 bottles of beer on the wall\n" "34 bottles of beer on the wall\n" "33 bottles of beer on the wall\n" "32 bottles of beer on the wall\n" "31 bottles of beer on the wall\n" "30 bottles of beer on the wall\n" "29 bottles of beer on the wall\n" "28 bottles of beer on the wall\n" "27 bottles of beer on the wall\n" "26 bottles of beer on the wall\n" "25 bottles of beer on the wall\n" "24 bottles of beer on the wall\n" "23 bottles of beer on the wall\n" "22 bottles of beer on the wall\n" "21 bottles of beer on the wall\n" "20 bottles of beer on the wall\n" "19 bottles of beer on the wall\n" "18 bottles of beer on the wall\n" "17 bottles of beer on the wall\n" "16 bottles of beer on the wall\n" "15 bottles of beer on the wall\n" "14 bottles of beer on the wall\n" "13 bottles of beer on the wall\n" "12 bottles of beer on the wall\n" "11 bottles of beer on the wall\n" "10 bottles of beer on the wall\n" "9 bottles of beer on the wall\n" "8 bottles of beer on the wall\n" "7 bottles of beer on the wall\n" "6 bottles of beer on the wall\n" "5 bottles of beer on the wall\n" "4 bottles of beer on the wall\n" "3 bottles of beer on the wall\n" "2 bottles of beer on the wall\n" "1 bottles of beer on the wall\n" "0 bottles of beer on the wall\n"))
false
fba2abfbe63dfd563a017c915416c4600fa16b44
47457420b9a1eddf69e2b2f426570567258f3afd
/2/draw.rkt
ad2953d8d9f3fb1475ec4539afd5bb0a90081d46
[]
no_license
adromaryn/sicp
797496916620e85b8d85760dc3f5739c4cc63437
342b56d233cc309ffb59dd13b2d3cf9cd22af6c9
refs/heads/master
2021-08-30T06:55:04.560128
2021-08-29T12:47:28
2021-08-29T12:47:28
162,965,433
0
0
null
null
null
null
UTF-8
Racket
false
false
589
rkt
draw.rkt
#lang racket (require sicp-pict) (require racket/include) (require "wave.rkt") (define wave2 (beside wave (flip-vert wave))) (define wave4 (below wave2 wave2)) (paint wave4) (paint letterlambda) (paint einstein) (define (flipped-pairs painter) (let ((painter2 (beside painter (flip-vert painter)))) (below painter2 painter2))) (define wave4-2 (flipped-pairs wave)) (paint wave4-2) (define (right-split painter n) (if (= n 0) painter (let ((smaller (right-split painter (- n 1)))) (beside painter (below smaller smaller))))) (paint (right-split einstein 2))
false
6e6316cc4da0f6c974a94457a2d16195ff82d573
ff21054c103e3133a582571cc6b9dc9d16c4fbe7
/punctaffy-lib/let.rkt
b55a7b5adc1a6e8fa20c2439256fe792e59bffc8
[ "Apache-2.0" ]
permissive
lathe/punctaffy-for-racket
3e87a48886bc5a9a0123187e5bfae7d550d7b215
2a958bf3987459e9197eb5963fe5107ea2e2e912
refs/heads/main
2022-03-18T21:37:28.626249
2022-03-11T11:44:37
2022-03-11T11:44:37
104,895,828
7
1
Apache-2.0
2022-02-17T04:51:25
2017-09-26T14:31:18
Racket
UTF-8
Racket
false
false
9,852
rkt
let.rkt
#lang parendown racket/base ; punctaffy/let ; ; Binding and iteration operators which use Punctaffy's hyperbrackets ; to manage their nesting and interoperation. ; Copyright 2018-2019, 2021 The Lathe Authors ; ; Licensed under the Apache License, Version 2.0 (the "License"); ; you may not use this file except in compliance with the License. ; You may obtain a copy of the License at ; ; http://www.apache.org/licenses/LICENSE-2.0 ; ; Unless required by applicable law or agreed to in writing, ; software distributed under the License is distributed on an ; "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, ; either express or implied. See the License for the specific ; language governing permissions and limitations under the License. (require #/for-syntax racket/base) (require #/for-syntax #/only-in racket/syntax generate-temporary) (require #/for-syntax #/only-in syntax/parse ...+ expr expr/c id syntax-parse) (require #/for-syntax #/only-in lathe-comforts dissect expect fn mat w-) (require #/for-syntax #/only-in lathe-comforts/list list-bind list-map) (require #/for-syntax #/only-in lathe-comforts/maybe just nothing) (require #/for-syntax #/only-in lathe-comforts/trivial trivial) (require #/for-syntax #/only-in punctaffy/hypersnippet/dim dim-sys-dim=? dim-sys-dim=0? dim-sys-morphism-sys-morph-dim extended-with-top-dim-infinite extended-with-top-dim-sys extend-with-top-dim-sys-morphism-sys nat-dim-sys) (require #/for-syntax #/only-in punctaffy/hypersnippet/hypernest hnb-labeled hnb-open hnb-unlabeled hypernest-coil-bump hypernest-coil-hole hypernest-from-brackets hypernest-furl hypernest-shape hypernest-snippet-sys) (require #/for-syntax #/only-in punctaffy/hypersnippet/hypertee htb-labeled htb-unlabeled hypertee-coil-zero hypertee-furl hypertee-get-brackets hypertee-snippet-format-sys) (require #/for-syntax #/only-in punctaffy/hypersnippet/snippet snippet-sys-shape-snippet-sys snippet-sys-snippet-degree snippet-sys-snippet-join snippet-sys-snippet-map snippet-sys-snippet-set-degree-maybe snippet-sys-snippet-undone snippet-sys-snippet-zip-map) (require #/for-syntax #/only-in punctaffy/private/experimental/macro/hypernest-macro hn-expr-forget-nests hn-expr->s-expr-stx-list hn-tag-0-s-expr-stx hn-tag-nest s-expr-stx->hn-expr) (require #/only-in racket/list append-map) (require #/only-in syntax/parse/define define-simple-macro) (require #/only-in lathe-comforts fn w-) (provide taffy-let list-taffy-map list-taffy-bind) (define-for-syntax (hn-bracs-n-d ds n-d degree . brackets) (w- n-d (fn d #/dim-sys-morphism-sys-morph-dim n-d d) #/hypernest-from-brackets ds (n-d degree) (list-map brackets #/fn bracket (mat bracket (hnb-open d data) (hnb-open (n-d d) data) #/mat bracket (hnb-labeled d data) (hnb-labeled (n-d d) data) #/mat bracket (hnb-unlabeled d) (hnb-unlabeled (n-d d)) #/hnb-unlabeled (n-d bracket))))) (define-for-syntax en-ds (extended-with-top-dim-sys #/nat-dim-sys)) (define-for-syntax en-n-d (extend-with-top-dim-sys-morphism-sys #/nat-dim-sys)) (define-for-syntax (helper-for-let err-dsl-stx err-phrase-expression err-phrase-invocation err-name body-and-splices) (w- ds en-ds #/w- ss (hypernest-snippet-sys (hypertee-snippet-format-sys) ds) #/w- shape-ss (snippet-sys-shape-snippet-sys ss) #/w- n-d en-n-d #/w- body-and-splices (s-expr-stx->hn-expr err-dsl-stx body-and-splices) #/expect body-and-splices (hypernest-furl _ #/hypernest-coil-bump overall-degree (hn-tag-nest) (extended-with-top-dim-infinite) bracket-and-body-and-tails) ; TODO: We should let `err-name` be more than one symbol. (error #/format "Expected ~a to be of the form (~s #/^< ...)" err-phrase-invocation err-name) #/dissect (snippet-sys-snippet-undone shape-ss (hypernest-shape ss bracket-and-body-and-tails)) (just #/list (extended-with-top-dim-infinite) tails body) #/w- represented-bump-degree (snippet-sys-snippet-degree shape-ss tails) #/expect (dim-sys-dim=? ds (dim-sys-morphism-sys-morph-dim n-d 2) represented-bump-degree) #t ; TODO: We should let `err-name` be more than one symbol. (error #/format "Expected ~a to be of the form (~s #/^< 2 ...)" err-phrase-invocation err-name) #/w- tails-via-temporaries (snippet-sys-snippet-map shape-ss tails #/fn hole tail (w- d (snippet-sys-snippet-degree shape-ss hole) #/if (dim-sys-dim=0? ds d) ; We verify that the tail in the hole of degree-0 is a snippet ; with just one hole, a degree-0 hole containing a trivial ; value. (dissect tail (hypernest-furl _ #/hypernest-coil-hole _ _ (trivial) (hypertee-furl _ #/hypertee-coil-zero)) #/list (nothing) (hn-bracs-n-d ds n-d 2 #/hnb-labeled 0 #/trivial)) #/dissect (dim-sys-dim=? ds (dim-sys-morphism-sys-morph-dim n-d 1) d) #t (expect (hn-expr->s-expr-stx-list #/hn-expr-forget-nests tail) (list splice) (error #/format "Expected exactly one ~a in a splice of ~a" err-phrase-expression err-phrase-invocation) #/w- temp (generate-temporary splice) #/list (just #/list temp splice) (hn-bracs-n-d ds n-d 2 (hnb-open 0 #/hn-tag-0-s-expr-stx ; TODO: Consider protecting this expression so it can ; only be treated as an expression. Using ; `syntax-protect` on it doesn't work well with ; Punctaffy's other hyperbracketed operations, since the ; act of calling `s-expr-stx->hn-expr` traverses the ; whole syntax object and taints every expression ; appearing throughout it. Even if we somehow could use ; `syntax-protect`, it could still appear under a ; `quote`. We could quash some attempts to `quote` it if ; we inserted a non-marshalable value into the ; expression. ; #`(#,temp)) (hnb-labeled 0 #/trivial))))) #/dissect (snippet-sys-snippet-zip-map ss tails-via-temporaries (hn-expr-forget-nests body) #/fn hole tail-via-temporary body-data (dissect tail-via-temporary (list binding tail) #/dissect body-data (trivial) #/just tail)) (just zipped) #/w- joined (snippet-sys-snippet-join ss zipped) #/expect (hn-expr->s-expr-stx-list (dissect (snippet-sys-snippet-set-degree-maybe ss (dim-sys-morphism-sys-morph-dim n-d 1) joined) (just joined) joined)) (list body) (error #/format "Expected exactly one ~a in ~a" err-phrase-expression err-phrase-invocation) #/w- bindings (list-bind (hypertee-get-brackets tails-via-temporaries) #/fn b (mat b (htb-labeled d tail-via-temporary) (dissect tail-via-temporary (list maybe-binding tail) #/expect maybe-binding (just binding) (list) #/list binding) #/dissect b (htb-unlabeled d) (list))) #/list bindings body)) ; TODO: See which of these we should export. Document `taffy-let`. ; TODO: Instead of using this, use something with better error ; messages (i.e. something that passes custom arguments to ; `helper-for-let`). (define-syntax (taffy-letlike stx) (syntax-protect #/syntax-parse stx #/ (_ letlike-call ... body-and-splices) #:with (([var val] ...) body) (helper-for-let stx "s-expression" "a taffy-letlike invocation" 'taffy-letlike #'body-and-splices) #'(letlike-call ... ([var val] ...) body))) ; TODO: See if we'll use this. It would be good for a binding time ; annotation. (define-simple-macro (letlike-eager letlike-call ... ([var:id val:expr] ...) body) (letlike-call ... ([var (w- result val #/fn result)] ...) body)) (define-simple-macro (letlike-lazy letlike-call ... ([var:id val:expr] ...) body) (letlike-call ... ([var (fn val)] ...) body)) (define-simple-macro (letlike-merge letlike-call ... ([var-1:id val-1:expr] ...) ([var-2:id val-2:expr] ...) body) (letlike-call ... ([var-1 val-1] ... [var-2 val-2] ...) body)) (define-simple-macro (taffy-let ([var:id val:expr] ...) body-and-splices) (taffy-letlike letlike-lazy letlike-merge let ([var val] ...) body-and-splices)) (define-simple-macro (list-taffy-map-impl ([var:id val] ...+) body) #:declare val (expr/c #'list? #:name "an iteration subject") #:declare body (expr/c #'any/c #:name "a transformed list element") #:with (elem ...+) (generate-temporaries #'(var ...)) (map (lambda (elem ...) (let ([var (fn elem)] ...) body)) val.c ...)) (define-simple-macro (list-taffy-map body-and-splices) (taffy-letlike list-taffy-map-impl body-and-splices)) (define-simple-macro (list-taffy-bind-impl ([var:id val] ...+) body) #:declare val (expr/c #'list? #:name "an iteration subject") #:declare body (expr/c #'list? #:name "a transformed list segment") #:with (elem ...+) (generate-temporaries #'(var ...)) (append-map (lambda (elem ...) (let ([var (fn elem)] ...) body)) val.c ...)) (define-simple-macro (list-taffy-bind body-and-splices) (taffy-letlike list-taffy-bind-impl body-and-splices)) (define-simple-macro (taffy-forlike-impl forlike-call ... ([var:id seq:expr] ...) body) #:with (eager-var ...) (generate-temporaries #'(var ...)) (forlike-call ... ([eager-var seq] ...) (let ([var (fn eager-var)] ...) body))) (define-simple-macro (taffy-forlike forlike-call ... body-and-splices) (taffy-letlike taffy-forlike-impl forlike-call ... body-and-splices))
true
c283135035b1879fcfa0dc54db6cb27f74901e4d
8988f7635f576fbd1659ee9d5e8f49dc7658ac84
/info.rkt
887ce39e33d0e0e856d19ade006eb116ac02cfb3
[]
no_license
jagen31/tonart-old
326f731c16eccbfa44b0e0d58939145085fded1d
a85037ac8cd4179f414f7210756a70737281e7c8
refs/heads/master
2020-05-02T11:52:42.526969
2019-03-27T07:43:39
2019-03-27T07:45:32
177,943,075
0
0
null
null
null
null
UTF-8
Racket
false
false
126
rkt
info.rkt
#lang info (define drracket-tools '(("tool.rkt"))) (define drracket-tool-names '("Test")) (define drracket-tool-icons '(#f))
false
ded590acc814e044c95cc0b98da84671c8a6fa28
5268a8e1a64e136b52aa74c30ce9fcd1d3dbd3f9
/interpret-testing-2.rkt
c787827aab25ddf87d41716677efeec880718166
[]
no_license
mariari/Java-ish-Interpreter
4b3a8fd0ca345f5f1d576c0521ea90a4737e22f4
49e8052f9989279cdedd6e347f441c6ed4c790a7
refs/heads/master
2021-07-11T14:24:08.069553
2017-10-04T21:40:17
2017-10-04T21:40:17
105,820,791
0
0
null
null
null
null
UTF-8
Racket
false
false
3,383
rkt
interpret-testing-2.rkt
#lang racket (require compatibility/defmacro macro-debugger/stepper macro-debugger/expand) (require racket/trace) ;; This code is translated from PCL (require "interpret.scm") (require "functionParser.scm") (require "lex.scm") ;; test-name make-parameter makes things dynamic (define test-name (make-parameter null)) ;; parameterize (define-macro (check . forms) `(combine-results ,@(map (lambda (x) `(report-result ,x ',x test-name)) forms))) (define-macro (deftest name-args . body) "Define a test function. Within a test function we can call other test functions or use 'check' to run individual test cases" `(define ,name-args (parameterize ((test-name (append (test-name) (list (car ',name-args))))) ,@body))) (define (combine-results . forms) "Works like the and operator, but does not short circuit" (let ((result '#t)) ; If one of the tests turns out to be null, then result becomes null (map (lambda (x) (unless x (set! result '#f))) forms) result)) (define (report-result result form test-name) "Takes a result and the form to evaluate to check if it passes the test" (pretty-print (format "~a... ~a: ~a" (if result "pass" "FAIL") (test-name) form)) result) (define p3-a1 (parser "./tests/p3/test1.javaish")) (define p3-a2 (parser "./tests/p3/test2.javaish")) (define p3-a3 (parser "./tests/p3/test3.javaish")) (define p3-a4 (parser "./tests/p3/test4.javaish")) (define p3-a5 (parser "./tests/p3/test5.javaish")) (define p3-a6 (parser "./tests/p3/test6.javaish")) (define p3-a7 (parser "./tests/p3/test7.javaish")) (define p3-a8 (parser "./tests/p3/test8.javaish")) (define p3-a9 (parser "./tests/p3/test9.javaish")) (define p3-a10 (parser "./tests/p3/test10.javaish")) (define p3-a11 (parser "./tests/p3/test11.javaish")) (define p3-a12 (parser "./tests/p3/test12.javaish")) (define p3-a13 (parser "./tests/p3/test13.javaish")) (define p3-a14 (parser "./tests/p3/test14.javaish")) (define p3-a15 (parser "./tests/p3/test15.javaish")) (define p3-a16 (parser "./tests/p3/test16.javaish")) (define p3-a17 (parser "./tests/p3/test17.javaish")) (define p3-a18 (parser "./tests/p3/test18.javaish")) (define p3-a19 (parser "./tests/p3/test19.javaish")) (define p3-a20 (parser "./tests/p3/test20.javaish")) (deftest (test-normal-p3) (check (equal? (m-expr-global p3-a1) 10) (equal? (m-expr-global p3-a2) 14) (equal? (m-expr-global p3-a3) 45) (equal? (m-expr-global p3-a4) 55) (equal? (m-expr-global p3-a5) 1) (equal? (m-expr-global p3-a6) 115) ; 210 not 115 (equal? (m-expr-global p3-a7) 'true) (equal? (m-expr-global p3-a8) 20) (equal? (m-expr-global p3-a9) 24) (equal? (m-expr-global p3-a10) 2) (equal? (m-expr-global p3-a11) 35) ;; (equal? (m-expr-global p3-a12) 789) mismatched arguments (equal? (m-expr-global p3-a13) 90) (equal? (m-expr-global p3-a14) 69) (equal? (m-expr-global p3-a15) 87) ; 88 not 87 (equal? (m-expr-global p3-a16) 64) ;; (equal? (m-expr-global p3-a17) 2000400) b out of scope (equal? (m-expr-global p3-a18) 125) (equal? (m-expr-global p3-a19) 100) (equal? (m-expr-global p3-a20) 2000400) ;; 2000000 not 2000400 ))
false
7dbfcda519d6b6dbf31b4f264ad869bdf7683ac2
5bbc152058cea0c50b84216be04650fa8837a94b
/pre-benchmark/htdp/base/Images/fsm-a-bc-d.rkt
3f3f1c5b93333dfc71318ba5ef9d58c729bcfd1b
[]
no_license
nuprl/gradual-typing-performance
2abd696cc90b05f19ee0432fb47ca7fab4b65808
35442b3221299a9cadba6810573007736b0d65d4
refs/heads/master
2021-01-18T15:10:01.739413
2018-12-15T18:44:28
2018-12-15T18:44:28
27,730,565
11
3
null
2018-12-01T13:54:08
2014-12-08T19:15:22
Racket
UTF-8
Racket
false
false
1,962
rkt
fsm-a-bc-d.rkt
#lang racket (provide ;; Image fsm-a-b-or-c*-d) (require slideshow "ysupport.rkt") ; ExpectsToSee is one of: ; – AA ; – BC ; – DD ; – ER (def/dots AA BC DD ER) ;(define AA "start, expect to see an 'a' next") ;(define BC "expect to see: 'b', 'c', or 'd'") ;(define DD "encountered a 'd', finished") ;(define ER "error, user pressed illegal key") (define width 600) (define height 450) (define Yhigh 110) (define Ylow (- height (pict-height AA) 10)) (define X0 10) (define Xdelta 260) (define arr-wgt 10) (define fsm-a-b-or-c*-d (build-scene scene (rectangle width height) (pin-over scene X0 50 AA) (pin-over scene (+ X0 (* 1 Xdelta)) Yhigh BC) (pin-over scene (+ X0 (* 2 Xdelta)) 50 DD) (pin-over scene (+ X0 (* 1 Xdelta)) Ylow ER) (pin-arrow-line arr-wgt scene AA rc-find BC lc-find) (pin-over scene (+ X0 (* .5 Xdelta)) (/ (+ 50 Yhigh) 2) (t "\"a\"")) (pin-arrow-line arr-wgt scene BC rc-find DD lc-find) (pin-over scene (+ X0 (* 1.5 Xdelta)) (/ (+ 50 Yhigh) 2) (t "\"d\"")) (pin-arrow-line arr-wgt scene BC rc-find BC ct-find #:start-angle (/ pi 6) #:start-pull 2 #:end-angle (* 6/4 pi) #:end-pull 2) (pin-over scene (+ X0 (* 1.15 Xdelta)) (/ (+ 50 Yhigh) 3) (t "\"b\"")) (pin-arrow-line arr-wgt scene BC lc-find BC cb-find #:start-angle pi #:start-pull 2 #:end-angle (* -7/4 pi) #:end-pull 2) (pin-over scene (+ X0 (* 0.85 Xdelta)) (* 1.0 (+ 50 Yhigh)) (t "\"c\"")) (pin-arrow-line arr-wgt scene BC cb-find ER ct-find) (pin-over scene (+ X0 (* 0.3 Xdelta)) (* 1.3 (+ 50 Yhigh)) (t "not \"a\"")) (pin-arrow-line arr-wgt scene AA cb-find ER ct-find) (pin-over scene (+ X0 (* 0.9 Xdelta)) (* 1.8 (+ 50 Yhigh)) (t "not \"b\", \"c\", or \"d\""))))
false
c092294fcdcb48c39d3c2880d7323864279d3519
d0ea449400a715f50fd720c265d2b923c34bc464
/digitama/layer.rkt
b5a7c8f15c473c520cab7386d84c2062ffea47fb
[]
no_license
wargrey/psd
c3d69b8c7d6577cdac9be433be832e80d2bb32d4
73b16a52e0777250d02e977f7dcbd7c1d98ef772
refs/heads/master
2020-12-02T06:26:02.875227
2018-07-16T11:00:58
2018-07-16T11:00:58
96,830,933
1
1
null
null
null
null
UTF-8
Racket
false
false
2,751
rkt
layer.rkt
#lang typed/racket/base (provide (all-defined-out)) (require "draw.rkt") (require "image.rkt") (require "misc.rkt") (require "layer/format.rkt") (define-type PSD-Layer-Mask-Parameter (Vector (Option Byte) (Option Flonum) (Option Byte) (Option Flonum))) (define-type PSD-Layer-Channel (List Fixnum PSD-Compression-Method Fixnum Fixnum)) (define-type PSD-Blending-Range (Vector Byte Byte Byte Byte)) (define-type PSD-Blending-Ranges (Pairof (Pairof PSD-Blending-Range PSD-Blending-Range) (Listof (Pairof PSD-Blending-Range PSD-Blending-Range)))) (struct PSD-Layer-Subject ([id : (U Index Symbol)] [name : String] ; unicode name [channels : (Listof PSD-Layer-Channel)] [has-transparency-data? : Boolean] [record : PSD-Layer-Record]) #:transparent) (struct PSD-Layer-Object PSD-Layer-Subject ([infobase : PSD-Layer-Infobase] [image : (U (Instance Bitmap%) Bytes)] [color-mode : PSD-Color-Mode] [density : Positive-Real])) (struct PSD-Layer PSD-Layer-Object () #:transparent) (struct PSD-Layer:Folder PSD-Layer-Object () #:transparent) (struct PSD-Layer:Open PSD-Layer:Folder () #:transparent) (struct PSD-Layer:Closed PSD-Layer:Folder () #:transparent) (struct PSD-Layer:Divider PSD-Layer-Object () #:transparent) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (struct PSD-Layer-Header ([x : Fixnum] [y : Fixnum] [width : Index] [height : Index] [blend : PSD-Blend-Mode] [opacity : Byte] [clipping : Byte] [flags : (Listof Symbol)]) #:transparent) (struct PSD-Layer-Record PSD-Layer-Header ([mask : (Option PSD-Layer-Mask)] [blending-ranges : PSD-Blending-Ranges] [name : String] #|pascal name, rarely useful|#)) (struct PSD-Layer-Mask ([x : Fixnum] [y : Fixnum] [width : Index] [height : Index] [default-color : Byte] [flags : (Listof Symbol)] [parameter : PSD-Layer-Mask-Parameter]) #:transparent) (struct PSD-Layer-Real-Mask PSD-Layer-Mask ([flags : (Listof Symbol)] [background : Byte] [x : Fixnum] [y : Fixnum] [width : Index] [height : Index]) #:transparent) (struct PSD-Global-Layer-Mask ([overlay-colorspace : Fixnum] [colors : (List Index Index Index Index)] [opacity : PSD-Mask-Opacity] [kind : PSD-Mask-Kind]) #:transparent) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define-enumeration* psd-mask-opacity #:+> PSD-Mask-Opacity mask-opacity->integer integer->mask-opacity #:-> Index [transparent 1] [opaque 100]) (define-enumeration* psd-mask-kind #:+> PSD-Mask-Kind mask-kind->integer integer->mask-kind #:-> Byte [selected 0] [protected 1] [shadowed 128])
false
cba37d7aaccf02cd115260ae7438b205738e19e9
fbef04bbf5050b1dba9b25af67b20088b9123461
/Typed/task-2.rkt
8f6282f562e9d97257fad40b97cf4243484a1c58
[]
no_license
samth/7GUI
772906f6b86220b6875eb3a5bb3d11f74bd36748
207c3ae640c443325f5a42aade59fa6ea010dc70
refs/heads/master
2020-06-03T03:32:46.280628
2019-06-14T21:23:52
2019-06-14T21:23:52
191,419,476
0
0
null
2019-06-11T17:33:07
2019-06-11T17:33:06
null
UTF-8
Racket
false
false
1,768
rkt
task-2.rkt
#! /usr/bin/env gracket #lang typed/racket/gui ;; a bi-dorectional temperature converter (Fahrenheit vs Celsius] ;; --------------------------------------------------------------------------------------------------- (require 7GUI/Typed/from-string) ;; We need something like this in Typed Racket. ;; --------------------------------------------------------------------------------------------------- (define-type Temp Exact-Rational) (define-type CB {(Instance Text-Field%) Any -> Void}) (define *C : Temp 0) (define *F : Temp 0) (: callback ((Temp -> Void) -> CB)) (define ((callback setter) field _evt) (send field set-field-background (make-object color% "white")) (define field:num (string->er (send field get-value))) (if field:num (setter field:num) (send field set-field-background (make-object color% "red")))) (define-syntax-rule (flow *from --> *to to-field) (λ ({x : Temp}) (set!-values (*from *to) (values x (--> x))) (send to-field set-field-background (make-object color% "white")) (send to-field set-value (~r *to #:precision 4)))) (define celsius->fahrenheit : CB (callback (flow *C (λ ({c : Temp}) (+ (* c 9/5) 32)) *F F-field))) (define fahrenheit->celsius : CB (callback (flow *F (λ ({f : Temp}) (* (- f 32) 5/9)) *C C-field))) (define frame (new frame% [label "temperature converter"])) (define pane (new horizontal-pane% [parent frame])) (define (field {v0 : String} {lbl : String} (cb : CB)) : (Instance Text-Field%) (new text-field% [parent pane][min-width 199][label lbl][init-value v0][callback cb])) (define C-field (field "0" "celsius:" celsius->fahrenheit)) (define F-field (field "0" " = fahrenheit:" fahrenheit->celsius)) (celsius->fahrenheit C-field 'start-me-up) (send frame show #t)
true
d6ea9fe45d9726d70f08476e7434cc9ac517d7e2
864fa9d38277ad3c54c2eb8afa203b8934882a71
/metapict-examples/mathematical-art/olive-branch.rkt
6b08fd7523bd75771f31d1eed0cfafd095c8ebca
[ "BSD-2-Clause" ]
permissive
pykello/racket-visualization
ed7e5f53386a0cdd54173c008275ce1d1a6d677e
7c4dccfd59123fcb7c144ad8ed89dffdc57290df
refs/heads/master
2020-12-15T03:29:21.667382
2020-07-30T06:10:10
2020-07-30T06:10:10
234,979,613
8
1
BSD-2-Clause
2020-01-25T01:50:32
2020-01-19T22:49:27
Racket
UTF-8
Racket
false
false
1,030
rkt
olive-branch.rkt
#lang racket (require metapict racket/math "../common.rkt") ;; http://www.ams.org/publicoutreach/math-imagery/yeganeh ;; takes quite some time to finish (define (A k) (+ (* k (/ 2 4000)) (/ (sin (* pi k (/ 42 4000))) 28) (/ (expt (sin (* pi k (/ 21 4000))) 8) 9) (* (/ (expt (sin (* pi k (/ 21 4000))) 6) 4) (sin (* pi (/ 2 5) (expt (/ k 4000) 12)))))) (define (B k) (+ (* 0.25 (expt (/ k 4000) 2)) (* 0.25 (+ (expt (sin (* pi k (/ 21 4000))) 5) (* (/ 1 28) (sin (* pi k (/ 42 4000))))) (cos (* (/ pi 2) (expt (/ k 4000) 12)))))) (define (R k) (+ (/ 1 170) (* (/ 1 67) (expt (sin (* pi k (/ 42 4000))) 2) (- 1 (expt (cos (* pi k (/ 21 4000))) 4))))) (set-curve-pict-size 2100 900) (define olive-branch (with-window (window -0.5 3 -0.5 1) (color "DarkOliveGreen" (for/draw ([k (in-range 1 4001 1)]) (circle (pt (A k) (B k)) (R k)))))) olive-branch (save-svg "olive-branch.svg" olive-branch)
false
f777db6dcf11e23159db2ea846df2d954bc1289d
fc90b5a3938850c61bdd83719a1d90270752c0bb
/web-server-test/tests/web-server/e2e/head/server.rkt
43f938af81b648797bcbd846a94a8e1ff80d180e
[ "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
racket/web-server
cccdf9b26d7b908701d7d05568dc6ed3ae9e705b
e321f8425e539d22412d4f7763532b3f3a65c95e
refs/heads/master
2023-08-21T18:55:50.892735
2023-07-11T02:53:24
2023-07-11T02:53:24
27,431,252
91
42
NOASSERTION
2023-09-02T15:19:40
2014-12-02T12:20:26
Racket
UTF-8
Racket
false
false
428
rkt
server.rkt
#lang racket/base (require web-server/servlet web-server/servlet-dispatch web-server/web-server) (provide start) (define (start port) (serve #:port port #:dispatch (dispatch/servlet (lambda (_req) (response/output #:headers (list (make-header #"X-Example" #"Found")) (lambda (out) (displayln "hello" out)))))))
false
57c8cd63f49a89b8b54056efbcb302f7df0b4f0c
0bbf33de1afce7cace30371d43dfdeb9614be79f
/profj/tests/beginner-tests.rkt
f4749ecc7d2f57205578e8389eef55afe058ded7
[]
no_license
aptmcl/profj
e51e69d18c5680c89089fe725a66a3a5327bc8bd
90f04acbc2bfeb62809234f64443adc4f6ca665a
refs/heads/master
2021-01-21T19:19:22.866429
2016-01-27T20:14:16
2016-01-27T20:14:16
49,766,712
0
0
null
2016-01-16T09:04:05
2016-01-16T09:04:05
null
UTF-8
Racket
false
false
13,911
rkt
beginner-tests.rkt
(module beginner-tests racket/base (require "profj-testing.rkt") (require racket/class profj/libs/java/lang/Object profj/libs/java/lang/String) (prepare-for-tests "Beginner") (define language 'beginner) ;;Execution tests that should pass (execute-test "class MyClass { Object field; MyClass( Object f ) { this.field = f; } MyClass method() { return this; } } class CorrectChecks { boolean t; boolean t2 = check 1 expect 3; boolean t3 = (check 1 expect 3) || (check 2 expect 3); boolean t4 = (check 1 expect 1) && (check 3 expect 3); boolean t5 = check \"Hi\" expect \"\"; boolean t6 = check 1.5 expect 2 within .4; boolean t7 = check true expect false; boolean t8 = check new MyClass(\"\") expect new MyClass(\"\"); boolean t9 = check new MyClass(\"\").field expect \"\"; boolean t10 = check new MyClass(\"\").method() expect new MyClass(\"\"); CorrectChecks(boolean t) { this.t= t; } }" language #f "Class with many different style of checks within it") (execute-test "interface A { boolean s( B b); } class B implements A { B() { } boolean s( B b ) { return true; } }" language #f "Interface and class with cyclic reference") (execute-test "class Simple { Simple() { } } class Simple2 { Simple s; Simple2( Simple s ) { this.s = s; } } class Simple3 { Simple2 s; Simple3( Simple2 s ) { this.s = s; } boolean happy() { return true; } }" language #f "Simple classes, with fields and methods") (execute-test "interface F { int fo(); }" 'beginner #f "Interface with method") (execute-test "interface F { int foo(); } class FP implements F { int x; FP(int x) { this.x = x; } int foo() { return this.x; } }" language #f "Simple implementation of interface") (execute-test "interface F { int lessThan( int x ); } class Fp implements F { int x; Fp( int x ) { this.x = x; } int lessThan( int y) { if (y < this.x) { return -1; } else { return 1; } } }" language #f "Class & interface, containing if statement") (execute-test "class A { int a; double b; boolean c; char d; String e; Object f; A(int a, double b, boolean c, char d, String e, Object f) { this.a = a; this.b = b; this.c =c; this.d = d; this.e = e; this.f = f; } }" language #f "Class with variables of many primitive types") (execute-test "class A { B var; A(B var) { this.var = var; } } class B { A var; B( A var) { this.var = var; } }" language #f "Two classes with cycles: cannot be instantiated") (execute-test "interface X { } class O { O() { } String happy( X x ) { return x.toString(); } }" language #f "Test that interface types have Object methods") ;;Execution tests that should produce errors (execute-test "class UseNoSet { Object x; Object y = this.x; UseNoSet(Object x) { this.x = x; } }" language #t "using fields before setting them") (execute-test "class DoubleSet { int x; DoubleSet(int x, int y) { this.x = x; this.x = y; } }" language #t "Setting a field twice, in the constructor") (execute-test "class DoubleSet2 { int x = 3; DoubleSet2(int x) { this.x = x; } }" language #t "Setting a field twice, init and ctor") (execute-test "class CorrectChecks { boolean t; boolean t2 = check 1 expect 3; boolean t3 = (check 1 expect 3) || (check 2 expect 3); boolean t4 = (check 1 expect 1) && (check 3 expect 3); boolean t5 = check \"Hi\" expect \"\"; boolean t6 = check 1.5 expect 2 within .4; boolean t7 = check true expect false; boolean t8 = check new MyClass(\"\") expect new MyClass(\"\"); boolean t9 = check new MyClass(\"\").field expect \"\"; boolean t10 = check new MyClass(\"\").method() expect new MyClass(\"\"); () CorrectChecks(boolean t) { this.t= t; } }" language #t "Correct checks, followed by a parse error: should mention (") (execute-test "class X { int x = this.y; int y = 3; X() { } }" language #t "Should be forward field error") (execute-test "interface Z { int x(); } class A { int z = 3; Z y; A(int z) { this.z = z; this.y = y;//new B(); } } class B implements Z { B() { } int x() { return 3; } int oX() { if (this.x() == 3) { return 5; } else { return 6; } } } foo" language #t "Parse-error test, mentioning foo") (execute-test "class X { X() { super(); } }" language #t "Parse-error test, indicating that super not allowed") (execute-test "class X { X() { } int x() { return super.x(); } }" language #t "Parse-error test, indicating that super.x() not allowed") (execute-test "interface A { int x; }" language #t "Interface with a field") (execute-test "interface A { int x(); boolean x(); }" language #t "Two methods in an interface with the same name, and different return types") (execute-test "interface A { int x(); int x(int y); }" language #t "Two methods in an interface with different arguments") (execute-test "public class B { B() { } }" language #t "Use of public") (execute-test "interface A { A foo(); } class B implements A { B() { } A foo( String s) { return new B(); } }" 'beginner #t "Method not implemented test, overload error") (execute-test "class F { }" 'beginner #t "No constructor error") (execute-test "class F { F() { } int x; int x() { return 3; } }" 'beginner #t "Method and field name share names error") (execute-test "class badCtor { badCtor() c{ } }" 'beginner #t "Error message bug") (execute-test "class IncorrectField { int myField; IncorrectField(int x) { this.myField = myField; } }" 'beginner #t "Field access without this") (execute-test "class IncorrectMethodCall { IncorrectMethodCall() { } int returner() { return 4; } int adder( int x ) { return returner() + x; } }" 'beginner #t "Method access without this") (execute-test "class F1 { F1(int x) { x = x; } }" 'beginner #t "Set non-field") (execute-test "class F2 { int f; F2() { this.f = f; } }" 'beginner #t "Set with field") (execute-test "interface A { A foo(); } class B implements A { B() { } B foo() { return new B(); } }" 'beginner #t "Incorrect overriding") (execute-test "abstract class A { }" language #t "Use of abstract class") (execute-test "class B extends A { }" language #t "Use of extends") (execute-test "class A { A() { } } class B implements A { B () { } }" language #t "Implementing a class") (execute-test "import java.util.Random; class Random { }" language #t "Renaming an imported class") (execute-test "import geometry.*; class Posn { }" language #t "Renaming an imported class with a star") ;;Interaction tests: Mix of pass and fail (interact-test language '("1 + 2 * 3 / 4" "new Object()" "\"Hello World\"" "true" "true && false" "true || false") (list 2 (make-object Object) (make-java-string "Hello World") #t #f #t) "Tests of simple expressions") (interact-test "class Book { String title; int numPages; Book( String title, int numPages ) { this.title = title; this.numPages = numPages; } }" language (list "Book b = new Book(\"HP\", 33);" "b.title" "new Book(\"HP\",33).numPages" "new Book()" "new Book(\"\",0).numPages()") (list (void) (make-java-string "HP") 33 'error 'error) "Tests instantiating a class") (interact-test "class Book2 { int numPages; Book2( int numPages ) { this.numPages = numPages; } String level() { if ( this.numPages < 10 ) { return \"Apprentice\"; } else { if (this.numPages < 100) { return \"Journeyman\"; } else { return \"Master\"; } } } } " language (list "new Book2(9).level()" "new Book2(10).level()" "new Book2(100).level()" "new Book2(99).level") (list (make-java-string "Apprentice") (make-java-string "Journeyman") (make-java-string "Master") 'error) "Tests of an if in a method") (interact-test "interface AShape { } class CartPt { int x; int y; CartPt(int x, int y) { this.x = x; this.y = y; } } class Dot implements AShape { CartPt loc; Dot(CartPt loc) { this.loc = loc; } } class Square implements AShape { CartPt loc; int size; Square(CartPt loc, int size) { this.loc = loc; this.size = size; } } class Circle implements AShape { CartPt loc; int radius; Circle(CartPt loc, int radius) { this.loc = loc; this.radius = radius; } }" language (list "new Object()" "new AShape()" "new Square(new CartPt(77,22), 300).size" "new CartPt(21,1+21)") (list `(make-object Object) 'error 300 `(let ((obj (make-object CartPt))) (send obj CartPt-constructor-int-int 21 22) obj)) "Book Test: AShape") (interact-test "class Coffee { String kind; int price; int weight; Coffee(String kind, int price, int weight) { this.kind = kind; this.price = price; this.weight = weight; } // to compute the total cost of this coffee purchase int cost() { return this.price * this.weight; } // to determine whether this coffee costs less than the given amount boolean costsLess(int amt) { return this.price < amt; } // to determine whether this coffee is cheaper than the given coffee boolean cheaperThan(Coffee that) { return this.price < that.price; } }" 'beginner (list "new Coffee(\"Kona\", 1595, 100).cost()" "new Coffee(\"Ethiopian\", 800, 1000).cost()" "new Coffee(\"Colombian\", 950, 20).cost()" "new Coffee(\"Kona\", 1595, 100).costsLess(200)" "new Coffee(\"Columbian\", 950, 200).costsLess(1000)" "new Coffee(\"Ethiopian\", 800, 1000).cheaperThan(new Coffee(\"Columbian\", 950, 200))" "new Coffee(\"Kona\", 1595, 100).cheaperThan(new Coffee(\"Columbian\", 950, 200))") (list 159500 800000 19000 #f #t #t #f) "Book Test Coffee") (interact-test 'beginner (list "Math.abs(-1)") (list 1) "Library availability test") (execute-test "// Exercise 3.1.1 // Exercise 5.1.2 interface ALoH{} class MTLoH implements ALoH{ MTLoH(){} } class ConsHouse implements ALoH{ House fst; ALoH rst; ConsHouse(House f, ALoH r) { this.fst = f; this.rst = r; } } class Address { int no; String street; String city; Address(int no, String street, String city) { this.no = no; this.street = street; this.city = city; } } class House { String kind; int rooms; Address address; int price; House(String kind, int rooms, Address address, int price) { this.kind = kind; this.rooms = rooms; this.address = address; this.price = price; } // determine if this house has more rooms (is bigger) than that given house boolean isBigger(House that) { return this.rooms > that.rooms; } // actual: h1.isBigger(h2), expected: false // actual: h2.isBigger(h3), expected: true //determine if this house's city as the same as a given city boolean thisCity(String city) { return this.city.equals(city); } // h1.thisCity(\"Brookline)\"--true // h2.thisCity(\"Brookline\")--false } /* Address a1 = new Address(23, \"Maple Street\", \"Brookline\"); Address a2 = new Address(5, \"Joye Road\", \"Newton\"); Address a3 = new Address(83, \"Winslow Street\", \"Waltham\"); House h1 = new House(\"Ranch\", 7, a1, 375000); House h2 = new House(\"Colonial\", 9, a2, 450000); House h3 = new House(\"Cape\", 6, a3, 235000); ALoH mtlist = new MTLoH(); ALoH list1 = new ConsHouse(h1, mtlist); ALoH list2 = new ConsHouse(h3, list1); */" 'beginner #t "Error message bug") (interact-test "interface A { }" language (list "new A()") (list 'error) "Trying to create an instance of an interface") (interact-test "class X { X() { } double f() { return 2; } }" language (list "double x = 1;" "x" "new X().f()") (list '(void) 1.0 2.0) "Converting ints into doubles appropriately") (interact-test language (list "check true expect true" "check true expect 1" "check true expect true within 1" "check new Object() expect \"hi\"" "check \"hi\" expect new Object()" "check 1.4 expect 1" "check 1.4 expect 1 within .5" "check 1.4 expect 1 within true") (list #t 'error #t #f 'error 'error #t 'error) "Calling check in many ways") (report-test-results))
false
9a2a4194998c79d7772f15b3fc56e6623acea11c
c6c56b3772d7496a1460af32fa32538ad8bf350f
/c1/cont-frac.rkt
aaffcb40cf498c417e02c1d069c56bb666bdd21f
[]
no_license
TienSFU25/sicp
6adf9ff4ec5db65352643cb68c1bc259b07d0472
528d8ca80c4c3b306435bc988ceb60f83afc41e9
refs/heads/master
2021-01-20T19:20:00.180495
2016-06-25T02:51:06
2016-06-25T02:51:06
60,825,877
0
0
null
null
null
null
UTF-8
Racket
false
false
310
rkt
cont-frac.rkt
#lang racket (define (cont-frac n d k) (define (cont-frac-iter n d k counter) (if (= k counter) (/ (n counter) (d counter)) (/ (n counter) (+ (d counter) (cont-frac-iter n d k (+ 1 counter)))))) (cont-frac-iter n d k 1)) (cont-frac (lambda (i) 1.0) (lambda (i) 1.0) 100000) (/ 1 1.61)
false
16774f36331684b054a97644f3a6181ed91972e8
f05faa71d7fef7301d30fb8c752f726c8b8c77d4
/src/exercises/ex-3.30.rkt
ebdd6966864fd027d7a732bbdc96f21ded8d8c75
[]
no_license
yamad/sicp
c9e8a53799f0ca6f02b47acd23189b2ca91fe419
11e3a59f41ed411814411e80f17606e49ba1545a
refs/heads/master
2021-01-21T09:53:44.834639
2017-02-27T19:32:23
2017-02-27T19:32:23
83,348,438
1
0
null
null
null
null
UTF-8
Racket
false
false
2,339
rkt
ex-3.30.rkt
#lang racket ;; Exercise 3.30 -- Figure 3-27 shows a "ripple-carry adder" formed by ;; stringing together n full-adders. This is the simplest form of ;; parallel adder for adding two n-bit binary numbers. The inputs ;; A_1, A_2, A_3, ..., A_n and B_1, B_2, B_3, ..., B_n are the two ;; binary numbers to be added (each A_k and B_k is a 0 or a 1). The ;; circuit generates S_1, S_2, S_3, ..., S_n, the n bits of the sum, ;; and C, the carry from the addition. Write a procedure ;; `ripple-carry-adder' that generates this circuit. The procedure ;; should take as arguments three lists of n wires each--the A_k, the ;; B_k, and the S_k--and also another wire C. The major drawback of ;; the ripple-carry adder is the need to wait for the carry signals to ;; propagate. What is the delay needed to obtain the complete output ;; from an n-bit ripple-carry adder, expressed in terms of the delays ;; for and-gates, or-gates, and inverters? ;; *Figure 3.27:* A ripple-carry adder for n-bit numbers. ;; : : : ;; : A_1 B_1 C_1 A_2 B_2 C_2 A_3 B_3 C_3: : A_n B_n C_n=0 ;; : | | +---+ | | +---+ | | +----- : | | +- ;; | | | | | | | | | | | | : : | | | ;; : ++---+---++ | ++---+---++ | ++---+---++ : : ++---+---++ ;; : | FA | | | FA | | | FA | : : | FA | ;; : +--+---+--+ | +--+---+--+ | +--+---+--+ : : +--+---+--+ ;; : | | | | | | | | : : | | ;; C ------+ | +-----+ | +-----+ | : ------+ | ;; : | C_1 | C_2 | : :C_(n-1) | ;; : | | | : : | ;; S_1 S_2 S_3 S_n (define (ripple-carry-adder a-list b-list c-in s-list c-out) (define (next-adder a b s c) (let ((c-out (make-wire))) (full-adder a b c s c-out) c-out)) (foldl next-adder a-list b-list s-list c-in) (set-signal! c-out 0)) (define (full-adder a b c-in sum c-out) (let ((s (make-wire)) (c1 (make-wire)) (c2 (make-wire))) (half-adder b c-in s c1) (half-adder a s sum c2) (or-gate c1 c2 c-out) 'ok))
false
bc97c63b8772a4b9c249b5635d3ddcecb40c48e9
25e7b8f1c62067869ab4d41c88230de4d87cf226
/BookExercises/chapter3/exercise_3_51_3_55.rkt
4283de10db477050898c6a7e8cd2dac053933076
[]
no_license
LukasWoodtli/SchemeCourse
d0217ca6115a39f0256364c7493a3d63fb731bbe
e9bf13c52c2ecdfa6a7e7ff7e93d775d4dd86eaa
refs/heads/master
2021-01-23T21:46:57.489633
2019-11-25T16:46:29
2019-11-25T16:47:07
57,337,107
1
0
null
null
null
null
UTF-8
Racket
false
false
3,172
rkt
exercise_3_51_3_55.rkt
#lang sicp (#%require rackunit) ;; Needed so that cons-stream is handled as special form ;; see https://wizardbook.wordpress.com/2010/12/20/exercise-3-50/ (define-syntax cons-stream (syntax-rules () ((_ A B) (cons A (delay B))))) (define (stream-car stream) (car stream)) (define (stream-cdr stream) (force (cdr stream))) (define (stream-ref s n) (if (= n 0) (stream-car s) (stream-ref (stream-cdr s) (- n 1)))) (define (stream-map proc . argstreams) (if (stream-null? (car argstreams)) the-empty-stream (cons-stream (apply proc (map stream-car argstreams)) (apply stream-map (cons proc (map stream-cdr argstreams)))))) (define (stream-for-each proc s) (if (stream-null? s) 'done (begin (proc (stream-car s)) (stream-for-each proc (stream-cdr s))))) (define (stream-enumerate-interval low high) (if (> low high) the-empty-stream (cons-stream low (stream-enumerate-interval (+ low 1) high)))) (define (stream-filter pred stream) (cond ((stream-null? stream) the-empty-stream) ((pred (stream-car stream)) (cons-stream (stream-car stream) (stream-filter pred (stream-cdr stream)))) (else (stream-filter pred (stream-cdr stream))))) (define (add-streams s1 s2) (stream-map + s1 s2)) ;; Display (define (display-stream s) (stream-for-each display-line s)) (define (display-line x) (newline) (display x)) (define (show x) (display-line x) (newline) x) ;; Tests ;; 3.51 (define x (stream-map show (stream-enumerate-interval 0 10))) (stream-ref x 5) (newline) (stream-ref x 7) ;; 3.52 (define sum 0) (define (accum x) (set! sum (+ x sum)) sum) (define seq (stream-map accum (stream-enumerate-interval 1 20))) (define y (stream-filter even? seq)) (define z (stream-filter (lambda (x) (= (remainder x 5) 0)) seq)) (stream-ref y 7) (display-stream z) ;; 3.53 (define s (cons-stream 1 (add-streams s s))) ;; 3.54 (define (integers-starting-from n) (cons-stream n (integers-starting-from (+ n 1)))) (define integers (integers-starting-from 1)) (define (mul-stream s1 s2) (stream-map * s1 s2)) (define factorials (cons-stream 1 (mul-stream factorials (stream-cdr integers)))) ;; test (check-equal? (stream-ref factorials 0) 1) ; 0th element: fac(1) (check-equal? (stream-ref factorials 1) 2) ; 1th element: fac(2) (check-equal? (stream-ref factorials 2) 6) ; 2nd element: fac(3) (check-equal? (stream-ref factorials 3) 24) ; 3rd element: fac(4) ;; 3.55 (define (partial-sums s) (cons-stream (stream-car s) (add-streams (partial-sums s) (stream-cdr s)))) ;; Test (check-equal? (stream-ref (partial-sums integers) 0) 1) (check-equal? (stream-ref (partial-sums integers) 1) 3) (check-equal? (stream-ref (partial-sums integers) 2) 6) (check-equal? (stream-ref (partial-sums integers) 3) 10) (check-equal? (stream-ref (partial-sums integers) 4) 15)
true
562cfe512df7be2bc972eacfee75affdfe16700b
32e55dbfd94177ec581f89a3a42c635cecfe7300
/racket/rose/dyoo-brainfudge-f462031/bf/semantics-rosette.rkt
f2cd872f30887700f19ec3b931b69ae9f939ca48
[]
no_license
mkjois/sandbox
1f2723fac2edba445ad05f9e5363a06cdcf2e402
048c69f5b6a33a3ce269a162576f5704d11e5028
refs/heads/master
2020-06-02T11:50:24.319305
2017-10-12T23:13:59
2017-10-12T23:13:59
35,258,011
0
0
null
null
null
null
UTF-8
Racket
false
false
22
rkt
semantics-rosette.rkt
#lang s-exp rosette
false
f7aa0eb1ea8e81fa9eccfc0234d9763e2bf88267
4724adee3047c66991dd15da245c8c5b7ca8af4c
/curly-fn-doc/scribblings/curly-fn.scrbl
5fc5d7699ff32cbb00b0bde302f0ea2112e366cd
[]
no_license
lexi-lambda/racket-curly-fn
ab3ce8d55df68820cb71158fd9127760cb8d05e5
d64cd71d5b386be85f5979edae6f6b6469a4df86
refs/heads/master
2020-04-24T23:06:39.286589
2016-09-30T18:17:06
2016-09-30T18:17:06
35,446,863
17
2
null
2015-07-31T18:53:53
2015-05-11T20:01:16
Racket
UTF-8
Racket
false
false
2,941
scrbl
curly-fn.scrbl
#lang scribble/manual @(require scribble/bnf scribble-code-examples (for-label racket/base racket/list racket/function curly-fn namespaced-transformer)) @(define (curly-fn-examples . stuff) (apply code-examples #:lang "curly-fn racket" #:show-lang-line @elem{@hash-lang[] @racketmodname[curly-fn] @racketmodname[racket]} #:context #'here stuff)) @title{Reader Function Literal Shorthand} @section{Usage Overview} @defmodule[curly-fn #:lang] The @racketmodname[curly-fn] language is a meta-language that extends a language's readtable to support function literals as reader syntax. This is inspired by Clojure's shorthand function literals as well as @hyperlink["https://github.com/greghendershott/rackjure"]{Rackjure}'s implementation of them in Racket. The syntax for shorthand function literals is to simply prepend a @litchar{#} before @litchar|{{}}|, and the contents will be read as a function literal. Arguments are denoted using identifiers prefixed with @litchar{%}. @itemlist[ @item{@litchar{%} @kleeneplus{@nonterm{digit}} is a positional argument.} @item{@litchar{%} on its own is an alias for @litchar{%1}.} @item{@litchar{%&} is a rest argument.} @item{@litchar{%:} @nonterm{id} is a keyword argument.}] @curly-fn-examples|{ (#{list 1 % 3} 2) (map #{- % 4} (range 9)) (#{apply list %&} 'a 'b 'c) }| As a special case, if the shorthand syntax is used, but no arguments prefixed with @litchar{%} are included in the body, then the syntax becomes a shorthand for @racket[curry]. @curly-fn-examples|{ (map #{+ 2} (range 10)) }| @section{Caveats} The shorthand is expanded to @racket[lambda] by inspecting the datums within the function body. This inspection step occurs @emph{before} subexpressions are expanded. This means that identifiers are inspected as-is at read time, before any macros have a chance to manipulate the syntax. This is probably a good thing, since it reduces the possibility of identifiers being lost or introduced via syntax transformation, but it does mean it isn't possible to write a macro that expands to @racket[%] or other identifiers and have those identifiers detected by the curly shorthand. @section{Using the Curly Function Reader} @defmodule[curly-fn #:link-target? #f] @defproc[(make-curly-fn-readtable [#:readtable readtable readtable? (current-readtable)]) readtable?]{ Creates a readtable that extends @racket[readtable] to add support for reading literal function shorthand syntax. It isn’t possible to add this to an arbitrary readtable and have it produce lambdas, since lambdas cannot be serialized to syntax objects. Instead, this readtable produces @tt{#%namespaced} datums, which are expected to be bound to @racket[#%namespaced] from @racketmodname[namespaced-transformer].}
false
d1d50d8066875ad21bb499cc040502fed49e4468
e2beb81550c481f5056688c235a5007fec8aaa2b
/Scheme/lecture2.rkt
cadbec5a12b94b87a70a9fa533f77f18c1af05e2
[]
no_license
kirilkadoncheva/fmi-fp
89d05b8b895c1bebf4a4d1d29a1567d4f0c389ef
ea9cfcc09af2ed3b7b319169088d2e6690f62539
refs/heads/main
2023-03-20T20:01:16.438289
2021-03-13T13:12:04
2021-03-13T13:12:04
347,373,486
0
0
null
null
null
null
UTF-8
Racket
false
false
2,580
rkt
lecture2.rkt
(define (fixed-point? f x) (= (f x) x)) (define (id x) x) (define (branch p? f g x) ((if (p? x) f g) x)) (define (sum a b term next) (if(> a b) 0 (+ (term a) (sum (next a) b term next)))) (define (prod a b term next) (if(> a b) 1 (* (term a) (prod (next a) b term next)))) (define (accumulate op nv a b term next) (if (> a b) nv (op (term a) (accumulate op nv (next a) b term next)))) (define (sum a b term next) (accumulate + 0 a b term next)) (define (product a b term next) (accumulate * 1 a b term next)) (define (1+ x) (+ x 1)) (define (p n x) (define (term i) (* (- (1+ n) i) (expt x i))) (accumulate + 0 0 n term 1+)) (define (accumulate-i op nv a b term next) (if(> a b) nv (accumulate-i op (op nv (term a)) (next a) b term next))) (define (p n x) (define (op u v) (+ (* u x) v )) (accumulate-i op 0 1 (1+ n) id 1+)) (define (integral a b f dx) (* dx (accumulate + 0 a b f (lambda (x) (+ x dx))))) (define (p n x) (accumulate-i (lambda (u v) (+ (* u x) v)) 0 1 (+ n 1) (lambda (x) x) (lambda (x) (+ x 1)))) (define (fact n) (accumulate * 1 1 n id 1+)) (define (my-expt x n) (if(>= n 0)(accumulate * 1 1 n (lambda (i) x) 1+) (/ 1 (accumulate * 1 1 (- n) (lambda (i) x) 1+)))) (define (summ x n) (accumulate + 0 0 n (lambda (i) (/ (my-expt x i) (fact i))) 1+)) (define (exists? p? a b) (accumulate (lambda (a b) (or a b)) #f a b (lambda (a) (p? a)) 1+)) (define (square x) (* x x)) (define (twice f x) (f (f x))) (define (twice f) (lambda (x) (f (f x)))) (define (n+ n) (lambda (i) (+ i n))) (define 1+ (n+ 1)) (define (compose f g) (lambda (x) (f (g x)))) (define (derive f dx) (lambda (x) (/ (- (f (+ x dx)) (f x)) dx))) (define (repeated f n) (lambda (x) (if (= n 0) x (f ((repeated f (- n 1)) x))))) (define (repeated f n) (if (= n 0) id (compose f (repeated f (- n 1))))) (define (repeated f n) (accumulate compose id 1 n (lambda (i) f) 1+)) (define (derive-n f n dx) (if (= n 0) f (derive (derive-n f (- n 1) dx) dx))) (define (derive-n f n dx) ((repeated (lambda (f) (derive f dx)) n) f)) (define (derive-n f n dx) ((accumulate compose id 1 n (lambda (i) (lambda (f) (derive f dx))) 1+) f)) (define my-#t (lambda (x y) x)) (define my-#f (lambda (x y) y)) (define (lambda-if b x y) ((b x y))) (define (my-not b) (lambda (x y) (b y x))) (define (Y gamma) (define (gamma-inf me) (lambda (n) ((gamma (me me)) n))) (gamma-inf gamma-inf))
false
a8749a99e482b680ca02783bd09a0f40b7da6fd2
e995fce18dbdd69a757f55a2c023d07fcce3cb6b
/pcf/source/lang.rkt
4a2077bf6c5e47912b41ce1e4efdcd03e62f30ee
[]
no_license
dvanhorn/pcf
883deb8c60547f04027e9381d54849ee2e0acd7f
f04e2ff7f34b89a3dc6c2a70a6a3283f954d3a67
refs/heads/master
2021-01-18T21:52:28.126007
2016-03-30T09:26:31
2016-03-30T09:26:31
6,306,139
8
1
null
2015-07-20T20:34:58
2012-10-20T06:45:08
Racket
UTF-8
Racket
false
false
873
rkt
lang.rkt
#lang racket (provide (rename-out [pcf-top #%top-interaction] [pcf-module #%module-begin])) (require (for-syntax syntax/parse pcf/source)) (require redex/reduction-semantics pcf/source) (define-for-syntax (type-error e) (raise-syntax-error 'type-error "ill-typed expression" #'e)) (define-syntax (pcf-top stx) (syntax-parse stx [(_ . e) (unless (typable? (syntax->datum #'e)) (type-error 'e)) #'(#%top-interaction . (apply values (apply-reduction-relation* -->v-source t)))])) (define-syntax (pcf-module stx) (syntax-parse stx [(_ e ...) #'(#%module-begin (apply values (append (let ((t (term e))) (unless (typable? t) (type-error t)) (apply-reduction-relation* -->v-source t)) ...)))]))
true
e0bfb8d6395f0052c5067a5bdf0af322b7b9e1fb
9208cb48aebb722221e6a9635507a2f52e4b94bb
/profile/logic/relation.rkt
372e354fbfc0bc47f71555d90534b591ce1658f3
[]
no_license
countvajhula/relation
13fc90bfec071c98bfb782f8eefa51342293d63b
5022738f69387c5722318717db5c866c9839614e
refs/heads/master
2022-10-01T15:09:14.565556
2022-09-22T17:55:58
2022-09-22T17:55:58
222,787,178
4
1
null
2022-09-22T00:35:25
2019-11-19T20:50:21
Racket
UTF-8
Racket
false
false
556
rkt
relation.rkt
#lang racket/base (require (prefix-in b: racket/base) (except-in racket/list take group-by) (only-in data/collection take in cycle) relation) (define (check-booleans how-many) (for ([i (take how-many (in (cycle '(#f #t #f))))] [j (take how-many (in (cycle '(#t #f))))] [k (take how-many (in (cycle '(#t #f #t #f #t))))]) (let ([vals (list i j k)]) (all? vals) (any? vals)))) (check-booleans 10000)
false
eeb0a33c9f812f882d6ffab8516478ec93dff749
acb237f6b9091540474140000c222070f65059a4
/data/nsa-2020-11-04/zombie-2020-11-04.rktd
d9ca52d2b02a9359935d741dad258dcbdf2ff7f0
[ "MIT" ]
permissive
bennn/g-pldi-2022
6fef876fb332b9113f4ab2af4072a628d276b2c5
299d4d4c285cbdc2a3139b2c9b1168eff9fd79f6
refs/heads/master
2023-09-05T14:01:06.805156
2022-06-18T20:54:25
2022-06-18T20:54:28
338,459,955
4
0
null
null
null
null
UTF-8
Racket
false
false
29,456
rktd
zombie-2020-11-04.rktd
#lang gtp-measure/output/deep-shallow-untyped ("0000" ("cpu time: 48 real time: 48 gc time: 9" "cpu time: 51 real time: 51 gc time: 12" "cpu time: 48 real time: 48 gc time: 10" "cpu time: 47 real time: 47 gc time: 11" "cpu time: 47 real time: 48 gc time: 11" "cpu time: 48 real time: 48 gc time: 10" "cpu time: 47 real time: 47 gc time: 11" "cpu time: 47 real time: 47 gc time: 11")) ("0001" ("cpu time: 2252 real time: 2253 gc time: 67" "cpu time: 2262 real time: 2263 gc time: 67" "cpu time: 2215 real time: 2216 gc time: 67" "cpu time: 2257 real time: 2258 gc time: 69" "cpu time: 2419 real time: 2420 gc time: 70" "cpu time: 2180 real time: 2181 gc time: 69" "cpu time: 2273 real time: 2275 gc time: 70" "cpu time: 2328 real time: 2329 gc time: 71")) ("0002" ("cpu time: 1441 real time: 1441 gc time: 63" "cpu time: 1347 real time: 1347 gc time: 74" "cpu time: 1385 real time: 1386 gc time: 66" "cpu time: 1424 real time: 1425 gc time: 66" "cpu time: 1367 real time: 1367 gc time: 64" "cpu time: 1382 real time: 1382 gc time: 64" "cpu time: 1439 real time: 1440 gc time: 65" "cpu time: 1438 real time: 1438 gc time: 64")) ("0010" ("cpu time: 64 real time: 63 gc time: 2" "cpu time: 62 real time: 62 gc time: 3" "cpu time: 62 real time: 61 gc time: 2" "cpu time: 63 real time: 63 gc time: 2" "cpu time: 62 real time: 63 gc time: 2" "cpu time: 62 real time: 62 gc time: 2" "cpu time: 63 real time: 64 gc time: 2" "cpu time: 61 real time: 61 gc time: 2")) ("0020" ("cpu time: 56 real time: 55 gc time: 3" "cpu time: 55 real time: 55 gc time: 1" "cpu time: 57 real time: 56 gc time: 2" "cpu time: 57 real time: 57 gc time: 2" "cpu time: 55 real time: 55 gc time: 3" "cpu time: 58 real time: 59 gc time: 2" "cpu time: 57 real time: 57 gc time: 2" "cpu time: 55 real time: 56 gc time: 2")) ("0011" ("cpu time: 2204 real time: 2205 gc time: 71" "cpu time: 2272 real time: 2274 gc time: 66" "cpu time: 2204 real time: 2205 gc time: 70" "cpu time: 2232 real time: 2232 gc time: 74" "cpu time: 2238 real time: 2239 gc time: 70" "cpu time: 2284 real time: 2285 gc time: 74" "cpu time: 2225 real time: 2226 gc time: 70" "cpu time: 2260 real time: 2261 gc time: 71")) ("0012" ("cpu time: 1463 real time: 1462 gc time: 64" "cpu time: 1385 real time: 1385 gc time: 66" "cpu time: 1502 real time: 1503 gc time: 65" "cpu time: 1382 real time: 1383 gc time: 65" "cpu time: 1485 real time: 1486 gc time: 75" "cpu time: 1395 real time: 1395 gc time: 67" "cpu time: 1630 real time: 1630 gc time: 63" "cpu time: 1330 real time: 1330 gc time: 64")) ("0021" ("cpu time: 2223 real time: 2224 gc time: 75" "cpu time: 2225 real time: 2226 gc time: 75" "cpu time: 2394 real time: 2395 gc time: 72" "cpu time: 2343 real time: 2344 gc time: 68" "cpu time: 2272 real time: 2273 gc time: 70" "cpu time: 2234 real time: 2234 gc time: 73" "cpu time: 2392 real time: 2392 gc time: 74" "cpu time: 2212 real time: 2213 gc time: 72")) ("0022" ("cpu time: 1394 real time: 1394 gc time: 64" "cpu time: 1384 real time: 1385 gc time: 63" "cpu time: 1367 real time: 1367 gc time: 64" "cpu time: 1450 real time: 1451 gc time: 63" "cpu time: 1353 real time: 1353 gc time: 64" "cpu time: 1381 real time: 1381 gc time: 67" "cpu time: 1346 real time: 1347 gc time: 66" "cpu time: 1465 real time: 1466 gc time: 65")) ("0100" ("cpu time: 1715 real time: 1717 gc time: 74" "cpu time: 1745 real time: 1745 gc time: 75" "cpu time: 1736 real time: 1737 gc time: 72" "cpu time: 1790 real time: 1790 gc time: 78" "cpu time: 1766 real time: 1767 gc time: 75" "cpu time: 1814 real time: 1815 gc time: 73" "cpu time: 1728 real time: 1730 gc time: 73" "cpu time: 1753 real time: 1754 gc time: 75")) ("0200" ("cpu time: 127 real time: 128 gc time: 68" "cpu time: 132 real time: 132 gc time: 70" "cpu time: 126 real time: 126 gc time: 68" "cpu time: 126 real time: 125 gc time: 66" "cpu time: 126 real time: 126 gc time: 69" "cpu time: 137 real time: 137 gc time: 77" "cpu time: 124 real time: 124 gc time: 66" "cpu time: 124 real time: 124 gc time: 68")) ("0101" ("cpu time: 119 real time: 120 gc time: 68" "cpu time: 132 real time: 133 gc time: 78" "cpu time: 120 real time: 119 gc time: 69" "cpu time: 118 real time: 118 gc time: 67" "cpu time: 120 real time: 121 gc time: 68" "cpu time: 122 real time: 121 gc time: 69" "cpu time: 118 real time: 118 gc time: 67" "cpu time: 118 real time: 119 gc time: 66")) ("0102" ("cpu time: 3843 real time: 3846 gc time: 53" "cpu time: 3749 real time: 3752 gc time: 53" "cpu time: 3739 real time: 3741 gc time: 59" "cpu time: 3813 real time: 3816 gc time: 56" "cpu time: 3928 real time: 3930 gc time: 52" "cpu time: 3898 real time: 3901 gc time: 49" "cpu time: 3823 real time: 3825 gc time: 48" "cpu time: 4047 real time: 4050 gc time: 50")) ("0201" ("cpu time: 2250 real time: 2251 gc time: 72" "cpu time: 2322 real time: 2323 gc time: 73" "cpu time: 2303 real time: 2304 gc time: 86" "cpu time: 2383 real time: 2384 gc time: 78" "cpu time: 2332 real time: 2333 gc time: 74" "cpu time: 2385 real time: 2386 gc time: 77" "cpu time: 2361 real time: 2362 gc time: 88" "cpu time: 2427 real time: 2428 gc time: 72")) ("0202" ("cpu time: 1344 real time: 1343 gc time: 67" "cpu time: 1417 real time: 1418 gc time: 68" "cpu time: 1361 real time: 1362 gc time: 67" "cpu time: 1364 real time: 1364 gc time: 69" "cpu time: 1348 real time: 1348 gc time: 70" "cpu time: 1416 real time: 1416 gc time: 69" "cpu time: 1355 real time: 1356 gc time: 71" "cpu time: 1355 real time: 1356 gc time: 68")) ("0110" ("cpu time: 1784 real time: 1785 gc time: 69" "cpu time: 1826 real time: 1827 gc time: 73" "cpu time: 1778 real time: 1778 gc time: 74" "cpu time: 1818 real time: 1819 gc time: 71" "cpu time: 1811 real time: 1812 gc time: 75" "cpu time: 1963 real time: 1963 gc time: 74" "cpu time: 1868 real time: 1869 gc time: 72" "cpu time: 1851 real time: 1851 gc time: 73")) ("0120" ("cpu time: 1943 real time: 1944 gc time: 73" "cpu time: 1722 real time: 1723 gc time: 75" "cpu time: 1876 real time: 1877 gc time: 76" "cpu time: 1799 real time: 1799 gc time: 82" "cpu time: 1743 real time: 1744 gc time: 77" "cpu time: 1788 real time: 1789 gc time: 70" "cpu time: 1820 real time: 1821 gc time: 76" "cpu time: 1742 real time: 1743 gc time: 74")) ("0210" ("cpu time: 142 real time: 142 gc time: 68" "cpu time: 144 real time: 144 gc time: 70" "cpu time: 142 real time: 142 gc time: 67" "cpu time: 142 real time: 141 gc time: 67" "cpu time: 142 real time: 141 gc time: 68" "cpu time: 142 real time: 143 gc time: 68" "cpu time: 144 real time: 144 gc time: 67" "cpu time: 145 real time: 145 gc time: 68")) ("0220" ("cpu time: 135 real time: 136 gc time: 67" "cpu time: 135 real time: 135 gc time: 67" "cpu time: 141 real time: 142 gc time: 71" "cpu time: 139 real time: 139 gc time: 67" "cpu time: 134 real time: 134 gc time: 68" "cpu time: 135 real time: 135 gc time: 67" "cpu time: 138 real time: 137 gc time: 68" "cpu time: 136 real time: 136 gc time: 67")) ("0111" ("cpu time: 104 real time: 104 gc time: 65" "cpu time: 105 real time: 106 gc time: 66" "cpu time: 106 real time: 105 gc time: 67" "cpu time: 105 real time: 105 gc time: 68" "cpu time: 106 real time: 106 gc time: 67" "cpu time: 105 real time: 105 gc time: 67" "cpu time: 105 real time: 106 gc time: 67" "cpu time: 109 real time: 109 gc time: 67")) ("0112" ("cpu time: 3937 real time: 3939 gc time: 49" "cpu time: 3866 real time: 3869 gc time: 51" "cpu time: 3983 real time: 3985 gc time: 51" "cpu time: 3908 real time: 3911 gc time: 51" "cpu time: 3809 real time: 3811 gc time: 53" "cpu time: 3850 real time: 3852 gc time: 55" "cpu time: 4200 real time: 4202 gc time: 52" "cpu time: 3769 real time: 3770 gc time: 56")) ("0121" ("cpu time: 131 real time: 132 gc time: 69" "cpu time: 130 real time: 131 gc time: 65" "cpu time: 130 real time: 130 gc time: 68" "cpu time: 133 real time: 133 gc time: 67" "cpu time: 131 real time: 131 gc time: 67" "cpu time: 131 real time: 131 gc time: 67" "cpu time: 131 real time: 130 gc time: 66" "cpu time: 142 real time: 142 gc time: 77")) ("0122" ("cpu time: 3779 real time: 3781 gc time: 53" "cpu time: 3869 real time: 3871 gc time: 51" "cpu time: 3761 real time: 3764 gc time: 54" "cpu time: 3914 real time: 3917 gc time: 50" "cpu time: 3982 real time: 3985 gc time: 50" "cpu time: 3881 real time: 3883 gc time: 55" "cpu time: 4081 real time: 4083 gc time: 55" "cpu time: 3821 real time: 3823 gc time: 52")) ("0211" ("cpu time: 2368 real time: 2369 gc time: 74" "cpu time: 2303 real time: 2304 gc time: 73" "cpu time: 2274 real time: 2276 gc time: 78" "cpu time: 2318 real time: 2319 gc time: 84" "cpu time: 2280 real time: 2281 gc time: 77" "cpu time: 2294 real time: 2296 gc time: 75" "cpu time: 2233 real time: 2234 gc time: 77" "cpu time: 2359 real time: 2360 gc time: 75")) ("0212" ("cpu time: 1331 real time: 1332 gc time: 45" "cpu time: 1492 real time: 1492 gc time: 47" "cpu time: 1450 real time: 1451 gc time: 47" "cpu time: 1347 real time: 1348 gc time: 44" "cpu time: 1337 real time: 1337 gc time: 45" "cpu time: 1417 real time: 1418 gc time: 47" "cpu time: 1357 real time: 1358 gc time: 46" "cpu time: 1412 real time: 1412 gc time: 45")) ("0221" ("cpu time: 2373 real time: 2374 gc time: 75" "cpu time: 2393 real time: 2394 gc time: 75" "cpu time: 2499 real time: 2500 gc time: 73" "cpu time: 2344 real time: 2345 gc time: 76" "cpu time: 2364 real time: 2364 gc time: 70" "cpu time: 2301 real time: 2302 gc time: 75" "cpu time: 2541 real time: 2542 gc time: 74" "cpu time: 2306 real time: 2307 gc time: 71")) ("0222" ("cpu time: 1408 real time: 1409 gc time: 67" "cpu time: 1444 real time: 1444 gc time: 69" "cpu time: 1356 real time: 1356 gc time: 72" "cpu time: 1529 real time: 1529 gc time: 69" "cpu time: 1507 real time: 1507 gc time: 68" "cpu time: 1502 real time: 1503 gc time: 72" "cpu time: 1353 real time: 1352 gc time: 68" "cpu time: 1380 real time: 1379 gc time: 70")) ("1000" ("cpu time: 45 real time: 45 gc time: 2" "cpu time: 46 real time: 46 gc time: 2" "cpu time: 47 real time: 47 gc time: 3" "cpu time: 46 real time: 46 gc time: 3" "cpu time: 46 real time: 45 gc time: 2" "cpu time: 45 real time: 46 gc time: 3" "cpu time: 46 real time: 45 gc time: 2" "cpu time: 45 real time: 45 gc time: 3")) ("2000" ("cpu time: 46 real time: 46 gc time: 2" "cpu time: 45 real time: 46 gc time: 2" "cpu time: 45 real time: 45 gc time: 2" "cpu time: 45 real time: 45 gc time: 3" "cpu time: 46 real time: 46 gc time: 2" "cpu time: 45 real time: 45 gc time: 2" "cpu time: 45 real time: 45 gc time: 2" "cpu time: 45 real time: 45 gc time: 2")) ("1001" ("cpu time: 2323 real time: 2323 gc time: 66" "cpu time: 2207 real time: 2208 gc time: 70" "cpu time: 2237 real time: 2239 gc time: 73" "cpu time: 2368 real time: 2369 gc time: 69" "cpu time: 2304 real time: 2306 gc time: 68" "cpu time: 2209 real time: 2210 gc time: 72" "cpu time: 2227 real time: 2228 gc time: 69" "cpu time: 2346 real time: 2347 gc time: 71")) ("1002" ("cpu time: 1498 real time: 1498 gc time: 64" "cpu time: 1344 real time: 1344 gc time: 64" "cpu time: 1726 real time: 1727 gc time: 63" "cpu time: 1441 real time: 1441 gc time: 67" "cpu time: 1321 real time: 1321 gc time: 64" "cpu time: 1363 real time: 1363 gc time: 64" "cpu time: 1537 real time: 1537 gc time: 66" "cpu time: 1328 real time: 1329 gc time: 66")) ("2001" ("cpu time: 2214 real time: 2215 gc time: 76" "cpu time: 2272 real time: 2273 gc time: 68" "cpu time: 2316 real time: 2317 gc time: 69" "cpu time: 2414 real time: 2415 gc time: 69" "cpu time: 2265 real time: 2266 gc time: 71" "cpu time: 2318 real time: 2319 gc time: 70" "cpu time: 2291 real time: 2292 gc time: 68" "cpu time: 2276 real time: 2277 gc time: 72")) ("2002" ("cpu time: 1341 real time: 1341 gc time: 63" "cpu time: 1498 real time: 1499 gc time: 64" "cpu time: 1503 real time: 1503 gc time: 64" "cpu time: 1446 real time: 1446 gc time: 62" "cpu time: 1399 real time: 1398 gc time: 74" "cpu time: 1410 real time: 1410 gc time: 68" "cpu time: 1398 real time: 1398 gc time: 64" "cpu time: 1357 real time: 1356 gc time: 64")) ("1010" ("cpu time: 62 real time: 61 gc time: 2" "cpu time: 63 real time: 62 gc time: 4" "cpu time: 61 real time: 62 gc time: 2" "cpu time: 63 real time: 62 gc time: 3" "cpu time: 62 real time: 63 gc time: 2" "cpu time: 64 real time: 63 gc time: 2" "cpu time: 65 real time: 65 gc time: 4" "cpu time: 62 real time: 62 gc time: 2")) ("1020" ("cpu time: 57 real time: 56 gc time: 4" "cpu time: 57 real time: 58 gc time: 3" "cpu time: 57 real time: 58 gc time: 2" "cpu time: 56 real time: 56 gc time: 3" "cpu time: 58 real time: 58 gc time: 3" "cpu time: 56 real time: 57 gc time: 5" "cpu time: 59 real time: 59 gc time: 3" "cpu time: 56 real time: 57 gc time: 3")) ("2010" ("cpu time: 62 real time: 62 gc time: 2" "cpu time: 62 real time: 62 gc time: 2" "cpu time: 61 real time: 62 gc time: 2" "cpu time: 61 real time: 62 gc time: 2" "cpu time: 61 real time: 62 gc time: 2" "cpu time: 62 real time: 62 gc time: 3" "cpu time: 63 real time: 63 gc time: 3" "cpu time: 62 real time: 62 gc time: 2")) ("2020" ("cpu time: 55 real time: 56 gc time: 2" "cpu time: 58 real time: 57 gc time: 3" "cpu time: 56 real time: 56 gc time: 3" "cpu time: 56 real time: 56 gc time: 2" "cpu time: 55 real time: 56 gc time: 2" "cpu time: 55 real time: 56 gc time: 1" "cpu time: 57 real time: 57 gc time: 2" "cpu time: 55 real time: 55 gc time: 1")) ("1011" ("cpu time: 2200 real time: 2200 gc time: 74" "cpu time: 2232 real time: 2233 gc time: 67" "cpu time: 2198 real time: 2200 gc time: 71" "cpu time: 2245 real time: 2246 gc time: 69" "cpu time: 2189 real time: 2189 gc time: 70" "cpu time: 2183 real time: 2184 gc time: 69" "cpu time: 2233 real time: 2234 gc time: 72" "cpu time: 2226 real time: 2228 gc time: 79")) ("1012" ("cpu time: 1347 real time: 1348 gc time: 63" "cpu time: 1354 real time: 1354 gc time: 75" "cpu time: 1337 real time: 1337 gc time: 61" "cpu time: 1350 real time: 1350 gc time: 67" "cpu time: 1393 real time: 1393 gc time: 66" "cpu time: 1347 real time: 1347 gc time: 64" "cpu time: 1343 real time: 1344 gc time: 64" "cpu time: 1483 real time: 1482 gc time: 68")) ("1021" ("cpu time: 2212 real time: 2212 gc time: 70" "cpu time: 2274 real time: 2274 gc time: 69" "cpu time: 2252 real time: 2253 gc time: 68" "cpu time: 2284 real time: 2285 gc time: 67" "cpu time: 2204 real time: 2204 gc time: 71" "cpu time: 2314 real time: 2315 gc time: 81" "cpu time: 2194 real time: 2196 gc time: 73" "cpu time: 2212 real time: 2213 gc time: 73")) ("1022" ("cpu time: 1335 real time: 1335 gc time: 65" "cpu time: 1350 real time: 1350 gc time: 67" "cpu time: 1592 real time: 1593 gc time: 64" "cpu time: 1352 real time: 1353 gc time: 65" "cpu time: 1383 real time: 1382 gc time: 63" "cpu time: 1360 real time: 1360 gc time: 75" "cpu time: 1616 real time: 1617 gc time: 64" "cpu time: 1345 real time: 1344 gc time: 65")) ("2011" ("cpu time: 2237 real time: 2238 gc time: 70" "cpu time: 2239 real time: 2240 gc time: 70" "cpu time: 2174 real time: 2175 gc time: 69" "cpu time: 2251 real time: 2252 gc time: 73" "cpu time: 2192 real time: 2193 gc time: 70" "cpu time: 2214 real time: 2215 gc time: 71" "cpu time: 2180 real time: 2181 gc time: 69" "cpu time: 2164 real time: 2164 gc time: 69")) ("2012" ("cpu time: 1352 real time: 1353 gc time: 62" "cpu time: 1365 real time: 1366 gc time: 62" "cpu time: 1351 real time: 1352 gc time: 63" "cpu time: 1482 real time: 1483 gc time: 62" "cpu time: 1347 real time: 1348 gc time: 63" "cpu time: 1354 real time: 1353 gc time: 65" "cpu time: 1408 real time: 1408 gc time: 65" "cpu time: 1393 real time: 1392 gc time: 66")) ("2021" ("cpu time: 2210 real time: 2211 gc time: 71" "cpu time: 2328 real time: 2329 gc time: 72" "cpu time: 2283 real time: 2284 gc time: 69" "cpu time: 2217 real time: 2218 gc time: 72" "cpu time: 2226 real time: 2227 gc time: 71" "cpu time: 2314 real time: 2315 gc time: 68" "cpu time: 2209 real time: 2210 gc time: 74" "cpu time: 2234 real time: 2234 gc time: 72")) ("2022" ("cpu time: 1386 real time: 1386 gc time: 64" "cpu time: 1453 real time: 1453 gc time: 66" "cpu time: 1408 real time: 1408 gc time: 65" "cpu time: 1327 real time: 1327 gc time: 63" "cpu time: 1458 real time: 1458 gc time: 63" "cpu time: 1354 real time: 1354 gc time: 63" "cpu time: 1507 real time: 1507 gc time: 75" "cpu time: 1462 real time: 1462 gc time: 64")) ("1100" ("cpu time: 1755 real time: 1756 gc time: 71" "cpu time: 1744 real time: 1745 gc time: 88" "cpu time: 1751 real time: 1752 gc time: 73" "cpu time: 1804 real time: 1804 gc time: 75" "cpu time: 1750 real time: 1751 gc time: 74" "cpu time: 1747 real time: 1748 gc time: 79" "cpu time: 1733 real time: 1734 gc time: 73" "cpu time: 1754 real time: 1754 gc time: 75")) ("1200" ("cpu time: 124 real time: 124 gc time: 68" "cpu time: 125 real time: 125 gc time: 68" "cpu time: 125 real time: 126 gc time: 69" "cpu time: 124 real time: 124 gc time: 68" "cpu time: 125 real time: 124 gc time: 68" "cpu time: 124 real time: 124 gc time: 67" "cpu time: 127 real time: 127 gc time: 67" "cpu time: 126 real time: 126 gc time: 68")) ("2100" ("cpu time: 1761 real time: 1762 gc time: 73" "cpu time: 1926 real time: 1927 gc time: 75" "cpu time: 1769 real time: 1769 gc time: 72" "cpu time: 1737 real time: 1738 gc time: 75" "cpu time: 1767 real time: 1768 gc time: 73" "cpu time: 1772 real time: 1774 gc time: 74" "cpu time: 1812 real time: 1812 gc time: 70" "cpu time: 1843 real time: 1845 gc time: 72")) ("2200" ("cpu time: 124 real time: 125 gc time: 68" "cpu time: 123 real time: 123 gc time: 66" "cpu time: 124 real time: 125 gc time: 68" "cpu time: 127 real time: 126 gc time: 68" "cpu time: 124 real time: 124 gc time: 66" "cpu time: 124 real time: 124 gc time: 67" "cpu time: 124 real time: 123 gc time: 67" "cpu time: 125 real time: 125 gc time: 66")) ("1101" ("cpu time: 120 real time: 120 gc time: 68" "cpu time: 118 real time: 118 gc time: 66" "cpu time: 118 real time: 119 gc time: 67" "cpu time: 129 real time: 130 gc time: 79" "cpu time: 120 real time: 120 gc time: 70" "cpu time: 118 real time: 119 gc time: 67" "cpu time: 119 real time: 119 gc time: 67" "cpu time: 121 real time: 120 gc time: 68")) ("1102" ("cpu time: 3897 real time: 3899 gc time: 51" "cpu time: 3967 real time: 3969 gc time: 51" "cpu time: 3930 real time: 3933 gc time: 49" "cpu time: 3865 real time: 3867 gc time: 51" "cpu time: 3907 real time: 3909 gc time: 54" "cpu time: 3851 real time: 3853 gc time: 54" "cpu time: 3824 real time: 3826 gc time: 52" "cpu time: 4003 real time: 4005 gc time: 48")) ("1201" ("cpu time: 2239 real time: 2239 gc time: 73" "cpu time: 2316 real time: 2317 gc time: 71" "cpu time: 2277 real time: 2278 gc time: 75" "cpu time: 2236 real time: 2238 gc time: 74" "cpu time: 2259 real time: 2261 gc time: 78" "cpu time: 2305 real time: 2307 gc time: 78" "cpu time: 2393 real time: 2394 gc time: 74" "cpu time: 2444 real time: 2445 gc time: 78")) ("1202" ("cpu time: 1440 real time: 1441 gc time: 70" "cpu time: 1358 real time: 1358 gc time: 81" "cpu time: 1367 real time: 1367 gc time: 69" "cpu time: 1478 real time: 1479 gc time: 69" "cpu time: 1588 real time: 1589 gc time: 67" "cpu time: 1421 real time: 1421 gc time: 66" "cpu time: 1497 real time: 1497 gc time: 68" "cpu time: 1385 real time: 1386 gc time: 71")) ("2101" ("cpu time: 119 real time: 119 gc time: 68" "cpu time: 131 real time: 131 gc time: 68" "cpu time: 118 real time: 118 gc time: 66" "cpu time: 118 real time: 119 gc time: 67" "cpu time: 121 real time: 122 gc time: 67" "cpu time: 119 real time: 119 gc time: 67" "cpu time: 119 real time: 119 gc time: 67" "cpu time: 120 real time: 120 gc time: 68")) ("2102" ("cpu time: 4097 real time: 4099 gc time: 74" "cpu time: 3837 real time: 3839 gc time: 74" "cpu time: 4115 real time: 4118 gc time: 74" "cpu time: 3796 real time: 3798 gc time: 73" "cpu time: 3766 real time: 3768 gc time: 73" "cpu time: 3701 real time: 3703 gc time: 75" "cpu time: 3683 real time: 3685 gc time: 71" "cpu time: 3945 real time: 3947 gc time: 72")) ("2201" ("cpu time: 2219 real time: 2220 gc time: 73" "cpu time: 2331 real time: 2333 gc time: 70" "cpu time: 2511 real time: 2512 gc time: 74" "cpu time: 2368 real time: 2369 gc time: 72" "cpu time: 2288 real time: 2289 gc time: 71" "cpu time: 2273 real time: 2274 gc time: 78" "cpu time: 2343 real time: 2344 gc time: 72" "cpu time: 2296 real time: 2297 gc time: 73")) ("2202" ("cpu time: 1333 real time: 1334 gc time: 70" "cpu time: 1370 real time: 1370 gc time: 69" "cpu time: 1359 real time: 1359 gc time: 68" "cpu time: 1343 real time: 1343 gc time: 67" "cpu time: 1373 real time: 1373 gc time: 70" "cpu time: 1357 real time: 1357 gc time: 81" "cpu time: 1397 real time: 1397 gc time: 68" "cpu time: 1506 real time: 1506 gc time: 72")) ("1110" ("cpu time: 1792 real time: 1793 gc time: 75" "cpu time: 1857 real time: 1857 gc time: 77" "cpu time: 1728 real time: 1728 gc time: 72" "cpu time: 1745 real time: 1745 gc time: 73" "cpu time: 1764 real time: 1766 gc time: 74" "cpu time: 1723 real time: 1724 gc time: 74" "cpu time: 1761 real time: 1762 gc time: 71" "cpu time: 1902 real time: 1904 gc time: 77")) ("1120" ("cpu time: 1821 real time: 1823 gc time: 74" "cpu time: 1733 real time: 1734 gc time: 74" "cpu time: 1820 real time: 1821 gc time: 69" "cpu time: 1715 real time: 1716 gc time: 74" "cpu time: 1715 real time: 1716 gc time: 76" "cpu time: 1770 real time: 1770 gc time: 75" "cpu time: 1798 real time: 1799 gc time: 75" "cpu time: 1767 real time: 1767 gc time: 71")) ("1210" ("cpu time: 142 real time: 142 gc time: 67" "cpu time: 141 real time: 141 gc time: 67" "cpu time: 141 real time: 141 gc time: 67" "cpu time: 144 real time: 145 gc time: 67" "cpu time: 151 real time: 151 gc time: 68" "cpu time: 143 real time: 143 gc time: 68" "cpu time: 142 real time: 143 gc time: 68" "cpu time: 146 real time: 146 gc time: 69")) ("1220" ("cpu time: 134 real time: 135 gc time: 69" "cpu time: 148 real time: 148 gc time: 78" "cpu time: 136 real time: 136 gc time: 68" "cpu time: 137 real time: 137 gc time: 67" "cpu time: 135 real time: 134 gc time: 68" "cpu time: 138 real time: 138 gc time: 68" "cpu time: 137 real time: 137 gc time: 67" "cpu time: 135 real time: 135 gc time: 69")) ("2110" ("cpu time: 1765 real time: 1767 gc time: 79" "cpu time: 1726 real time: 1727 gc time: 77" "cpu time: 1775 real time: 1776 gc time: 73" "cpu time: 1773 real time: 1774 gc time: 73" "cpu time: 1749 real time: 1750 gc time: 70" "cpu time: 1736 real time: 1737 gc time: 77" "cpu time: 1768 real time: 1768 gc time: 78" "cpu time: 1813 real time: 1814 gc time: 73")) ("2120" ("cpu time: 1792 real time: 1794 gc time: 72" "cpu time: 1838 real time: 1838 gc time: 73" "cpu time: 1756 real time: 1756 gc time: 76" "cpu time: 1767 real time: 1768 gc time: 73" "cpu time: 2006 real time: 2006 gc time: 75" "cpu time: 1813 real time: 1814 gc time: 76" "cpu time: 1856 real time: 1857 gc time: 77" "cpu time: 1774 real time: 1774 gc time: 81")) ("2210" ("cpu time: 141 real time: 141 gc time: 67" "cpu time: 142 real time: 142 gc time: 68" "cpu time: 143 real time: 143 gc time: 68" "cpu time: 142 real time: 142 gc time: 68" "cpu time: 150 real time: 150 gc time: 68" "cpu time: 144 real time: 144 gc time: 68" "cpu time: 143 real time: 143 gc time: 69" "cpu time: 148 real time: 148 gc time: 66")) ("2220" ("cpu time: 135 real time: 135 gc time: 66" "cpu time: 144 real time: 143 gc time: 68" "cpu time: 134 real time: 134 gc time: 66" "cpu time: 138 real time: 137 gc time: 66" "cpu time: 136 real time: 135 gc time: 68" "cpu time: 136 real time: 136 gc time: 68" "cpu time: 135 real time: 136 gc time: 67" "cpu time: 137 real time: 137 gc time: 69")) ("1111" ("cpu time: 104 real time: 105 gc time: 67" "cpu time: 105 real time: 106 gc time: 68" "cpu time: 106 real time: 106 gc time: 67" "cpu time: 106 real time: 106 gc time: 67" "cpu time: 105 real time: 105 gc time: 66" "cpu time: 106 real time: 106 gc time: 67" "cpu time: 106 real time: 106 gc time: 68" "cpu time: 107 real time: 106 gc time: 69")) ("1112" ("cpu time: 4061 real time: 4064 gc time: 50" "cpu time: 3913 real time: 3916 gc time: 51" "cpu time: 3866 real time: 3869 gc time: 52" "cpu time: 3951 real time: 3954 gc time: 49" "cpu time: 3782 real time: 3783 gc time: 50" "cpu time: 4011 real time: 4013 gc time: 53" "cpu time: 3935 real time: 3937 gc time: 50" "cpu time: 3885 real time: 3887 gc time: 54")) ("1121" ("cpu time: 132 real time: 133 gc time: 68" "cpu time: 131 real time: 131 gc time: 67" "cpu time: 132 real time: 132 gc time: 68" "cpu time: 131 real time: 131 gc time: 66" "cpu time: 131 real time: 131 gc time: 66" "cpu time: 132 real time: 132 gc time: 67" "cpu time: 130 real time: 130 gc time: 66" "cpu time: 132 real time: 132 gc time: 68")) ("1122" ("cpu time: 3868 real time: 3870 gc time: 52" "cpu time: 3865 real time: 3868 gc time: 50" "cpu time: 4037 real time: 4039 gc time: 62" "cpu time: 3825 real time: 3828 gc time: 52" "cpu time: 3824 real time: 3826 gc time: 53" "cpu time: 3862 real time: 3864 gc time: 50" "cpu time: 3870 real time: 3872 gc time: 51" "cpu time: 4183 real time: 4186 gc time: 48")) ("1211" ("cpu time: 2342 real time: 2344 gc time: 74" "cpu time: 2271 real time: 2273 gc time: 75" "cpu time: 2216 real time: 2216 gc time: 76" "cpu time: 2332 real time: 2334 gc time: 75" "cpu time: 2702 real time: 2704 gc time: 76" "cpu time: 2383 real time: 2385 gc time: 79" "cpu time: 2367 real time: 2368 gc time: 72" "cpu time: 2224 real time: 2225 gc time: 71")) ("1212" ("cpu time: 1354 real time: 1355 gc time: 70" "cpu time: 1397 real time: 1397 gc time: 66" "cpu time: 1365 real time: 1365 gc time: 69" "cpu time: 1398 real time: 1398 gc time: 74" "cpu time: 1503 real time: 1503 gc time: 67" "cpu time: 1457 real time: 1458 gc time: 68" "cpu time: 1363 real time: 1364 gc time: 70" "cpu time: 1434 real time: 1435 gc time: 73")) ("1221" ("cpu time: 2371 real time: 2372 gc time: 74" "cpu time: 2299 real time: 2299 gc time: 74" "cpu time: 2403 real time: 2404 gc time: 73" "cpu time: 2328 real time: 2330 gc time: 76" "cpu time: 2428 real time: 2430 gc time: 75" "cpu time: 2330 real time: 2330 gc time: 73" "cpu time: 2348 real time: 2349 gc time: 74" "cpu time: 2297 real time: 2298 gc time: 74")) ("1222" ("cpu time: 1375 real time: 1375 gc time: 70" "cpu time: 1345 real time: 1345 gc time: 68" "cpu time: 1435 real time: 1435 gc time: 69" "cpu time: 1354 real time: 1354 gc time: 69" "cpu time: 1357 real time: 1357 gc time: 68" "cpu time: 1376 real time: 1377 gc time: 67" "cpu time: 1405 real time: 1405 gc time: 68" "cpu time: 1495 real time: 1496 gc time: 80")) ("2111" ("cpu time: 106 real time: 106 gc time: 67" "cpu time: 105 real time: 105 gc time: 67" "cpu time: 105 real time: 105 gc time: 66" "cpu time: 106 real time: 106 gc time: 67" "cpu time: 105 real time: 105 gc time: 67" "cpu time: 118 real time: 118 gc time: 79" "cpu time: 105 real time: 105 gc time: 66" "cpu time: 105 real time: 105 gc time: 67")) ("2112" ("cpu time: 4074 real time: 4076 gc time: 73" "cpu time: 3855 real time: 3856 gc time: 48" "cpu time: 3897 real time: 3899 gc time: 72" "cpu time: 3906 real time: 3909 gc time: 75" "cpu time: 3770 real time: 3772 gc time: 75" "cpu time: 3993 real time: 3996 gc time: 75" "cpu time: 3893 real time: 3894 gc time: 74" "cpu time: 3786 real time: 3787 gc time: 72")) ("2121" ("cpu time: 132 real time: 132 gc time: 68" "cpu time: 132 real time: 132 gc time: 68" "cpu time: 131 real time: 131 gc time: 68" "cpu time: 131 real time: 131 gc time: 69" "cpu time: 136 real time: 136 gc time: 72" "cpu time: 137 real time: 137 gc time: 68" "cpu time: 143 real time: 143 gc time: 78" "cpu time: 130 real time: 131 gc time: 67")) ("2122" ("cpu time: 3859 real time: 3860 gc time: 71" "cpu time: 3821 real time: 3824 gc time: 52" "cpu time: 3764 real time: 3766 gc time: 76" "cpu time: 3976 real time: 3979 gc time: 73" "cpu time: 3729 real time: 3731 gc time: 88" "cpu time: 3931 real time: 3933 gc time: 71" "cpu time: 3990 real time: 3992 gc time: 74" "cpu time: 3910 real time: 3912 gc time: 76")) ("2211" ("cpu time: 2296 real time: 2297 gc time: 77" "cpu time: 2229 real time: 2230 gc time: 75" "cpu time: 2315 real time: 2316 gc time: 83" "cpu time: 2330 real time: 2332 gc time: 74" "cpu time: 2323 real time: 2325 gc time: 75" "cpu time: 2343 real time: 2344 gc time: 86" "cpu time: 2505 real time: 2506 gc time: 72" "cpu time: 2396 real time: 2397 gc time: 70")) ("2212" ("cpu time: 1371 real time: 1372 gc time: 69" "cpu time: 1388 real time: 1389 gc time: 69" "cpu time: 1363 real time: 1363 gc time: 67" "cpu time: 1472 real time: 1471 gc time: 78" "cpu time: 1360 real time: 1360 gc time: 69" "cpu time: 1484 real time: 1484 gc time: 68" "cpu time: 1386 real time: 1385 gc time: 68" "cpu time: 1419 real time: 1419 gc time: 67")) ("2221" ("cpu time: 2324 real time: 2325 gc time: 75" "cpu time: 2432 real time: 2434 gc time: 71" "cpu time: 2588 real time: 2589 gc time: 76" "cpu time: 2599 real time: 2601 gc time: 74" "cpu time: 2292 real time: 2292 gc time: 76" "cpu time: 2394 real time: 2395 gc time: 74" "cpu time: 2382 real time: 2384 gc time: 76" "cpu time: 2300 real time: 2301 gc time: 71")) ("2222" ("cpu time: 1349 real time: 1349 gc time: 69" "cpu time: 1444 real time: 1444 gc time: 66" "cpu time: 1352 real time: 1352 gc time: 69" "cpu time: 1387 real time: 1387 gc time: 70" "cpu time: 1345 real time: 1346 gc time: 67" "cpu time: 1353 real time: 1353 gc time: 68" "cpu time: 1398 real time: 1397 gc time: 67" "cpu time: 1352 real time: 1353 gc time: 69"))
false
fa983f14ae79a3e549fcc7fc9b61e8154307acdf
e5556dce350f08c83078c02779212e518dcd3be2
/examples/timers.rkt
8f386157f3713c9fdb83dd7ca8f5ffc14c94b3f5
[ "MIT" ]
permissive
pb82/sdl4racket
e1d93f2fba43afb7fb589ac18ca2339869aa63f6
5ae646e1a0085057353f7f6d53c9487c2ed3f2ca
refs/heads/master
2021-01-19T10:29:52.740872
2014-03-08T10:58:15
2014-03-08T10:58:15
4,667,461
4
1
null
2013-01-23T20:19:15
2012-06-14T19:19:08
Racket
UTF-8
Racket
false
false
1,448
rkt
timers.rkt
#!/usr/bin/env racket #lang racket (require racket/draw data/queue "../src/sdl.rkt") ;; Demonstrates how to launch (and stop) a timer. ;; --------------------------------------------------------------------- (define colors (make-queue)) (enqueue! colors #xFFFF0000) ;; R (enqueue! colors #xFF00FF00) ;; G (enqueue! colors #xFF0000FF) ;; B (define (init-sdl) (sdl-init '(SDL_INIT_VIDEO SDL_INIT_TIMER))) (define (init-screen) (let ((screen (sdl-set-video-mode 640 480 32 '(SDL_SWSURFACE SDL_DOUBLEBUF)))) screen)) (define (timer-callback interval data) (begin (let ((color (dequeue! colors))) ;; Since the sdl4racket implementation of sdl-wait-event will ;; cause the callback to be executed in the same thread as the ;; main loop we can call all SDL functions here ;; (and not only SDL_PushEvent). (sdl-fill-rect screen (sdl-make-rect 0 0 640 480) color) (sdl-flip screen) (enqueue! colors color) 500))) (define (main-loop screen) (define timer-id (sdl-add-timer 500 timer-callback #f)) (define (iter event) (begin (sdl-wait-event (event 'POINTER)) (if (eq? (event 'TYPE) 'SDL_QUIT) (begin (sdl-remove-timer timer-id) (sdl-quit)) (iter event)))) (iter (sdl-make-event))) (init-sdl) (define screen (init-screen)) (main-loop screen)
false
08c388ea9dd5e1f63e48f4687f7608b4be07ca16
464f876b034b518d8cf8a0b77ea4851f05148916
/Chapter4/4_74.rkt
f066089f5ca483987711ab6b7cf0ab5dd90f6f4b
[]
no_license
billy1kaplan/sicp
3302e6772af205fa8d1ac77c2d203cb329f5958b
71d3f93921e32567ae2becec3c9659cfdf013287
refs/heads/master
2021-03-22T01:01:15.409369
2019-02-10T04:13:56
2019-02-10T04:13:56
98,474,397
0
0
null
null
null
null
UTF-8
Racket
false
false
2,165
rkt
4_74.rkt
#lang racket ;; Defining syntax rules for delayed stream evaluation (define-syntax delay (syntax-rules () ((_ exp) (lambda () exp)))) (define-syntax cons-stream (syntax-rules () ((_ a b) (cons a (delay b))))) ;; Scheme Stream API (define (force exp) (exp)) (define the-empty-stream '()) (define (stream-null? s) (null? s)) (define (stream-car s) (car s)) (define (stream-cdr s) (force (cdr s))) (define (stream-append-delayed s1 delayed-s2) (if (stream-null? s1) (force delayed-s2) (cons-stream (stream-car s1) (stream-append-delayed (stream-cdr s1) delayed-s2)))) (define (interleave-delayed s1 delayed-s2) (if (stream-null? s1) (force delayed-s2) (cons-stream (stream-car s1) (interleave-delayed (force delayed-s2) (delay (stream-cdr s1)))))) (define (stream-flatmap proc s) (flatten-stream (stream-map proc s))) (define (flatten-stream stream) (if (stream-null? stream) the-empty-stream (interleave-delayed (stream-car stream) (delay (flatten-stream (stream-cdr stream)))))) (define (singleton-stream x) (cons-stream x the-empty-stream)) (define (stream-map proc s) (if (stream-null? s) the-empty-stream (cons-stream (proc (stream-car s)) (stream-map proc (stream-cdr s))))) (define (stream-for-each proc s) (if (stream-null? s) (void) (begin (proc (stream-car s)) (stream-for-each proc (stream-cdr s))))) (define (display-stream s) (stream-for-each (lambda (el) (display el) (newline)) s)) (define (simple-stream-flatmap proc s) (simple-flatten (stream-map proc s))) ;; Part a ;; Remove empty streams ;; Pull element out of singleton-streams (define (simple-flatten stream) (stream-map stream-car (stream-filter (lambda (x) (not (stream-null? x))) stream))) ;; Does the query system behave differently? ;; Since we are dealing with streams of 0 and 1 elements, the behavior will be identical, consider: ;; ((x1) () () (x2) (x3)) ;; Regardless of using simple-flatten or flatten stream, we still stream the final elements as (x1 x2 x3)
true
e1e03a34da7d39fe3f5da227f8ef0f065aed96c3
5b03633d84bda048453b4413e6c51ac63f98e855
/slv2/sugar.rkt
66b059bef54f30edf805f7ae2cf0a4879dce4f22
[ "BSD-2-Clause" ]
permissive
zwizwa/rai
309ab037384d3305aab2eba2d79a164bc5250007
422786a8703f08ff8b2185ff5c3ea7f58c4640fc
refs/heads/master
2022-12-20T13:24:31.965522
2022-09-01T15:51:45
2022-09-01T15:51:45
10,394,075
11
1
null
2013-11-02T01:02:55
2013-05-30T23:22:19
Racket
UTF-8
Racket
false
false
4,197
rkt
sugar.rkt
#lang racket (require ffi/vector "slv2.rkt" "lv2.rkt") (provide plugins plugin-ports plugin-name plugin-port-name plugin-instantiate) ;; UNSTABLE sugar API on top of the stable, thin libslv2 C API. (define world (slv2_world_new)) (slv2_world_load_all world) (define portclasses `(("http://lv2plug.in/ns/lv2core#AudioPort" . audio) ("http://lv2plug.in/ns/lv2core#ControlPort" . control) ("http://lv2plug.in/ns/lv2core#InputPort" . input) ("http://lv2plug.in/ns/lv2core#OutputPort" . output))) (define (portclass str) (dict-ref portclasses str #f)) ;; Avoid the iterator interface - just use Racket lists for collections. (define (get-list obj get_size ref) (let ((n (get_size obj))) ;; (pretty-print `(n ,n)) (for/list ((i (in-range n))) (ref obj i)))) ;; Handle the freeing of the SDLValue object before copy to Racket string. (define (->string/free value) (let* ((str (string-append "" (slv2_value_as_string value)))) ;; copy (slv2_value_free value) str)) (define (plugins) (let ((ps (slv2_world_get_all_plugins world))) (get-list ps slv2_plugins_size slv2_plugins_get_at))) (define (plugin-ports plugin) (get-list plugin slv2_plugin_get_num_ports slv2_plugin_get_port_by_index)) (define (values->list vs) (if (not vs) '() ;; For NULL (get-list vs slv2_values_size slv2_values_get_at))) (define (plugin-name plugin) (->string/free (slv2_plugin_get_name plugin))) (define (plugin-port-name plugin port) (->string/free (slv2_port_get_name plugin port))) (define (plugin-port-names plugin) (for/list ((port (plugin-ports plugin))) (plugin-port-name plugin port))) (define (plugin-port-properties plugin port) (values->list (slv2_port_get_properties plugin port))) (define (plugin-instantiate plugin samplerate) (slv2_plugin_instantiate plugin samplerate #f)) (define (plugin-port-classes plugin port) (map slv2_value_as_string (values->list (slv2_port_get_classes plugin port)))) ;; Serves as an example of how to pierce through the indirections. (define (plugin-instance-connect-port-f32vector! instance index vector) (let* ((descriptor (slv2_instance-lv2_descriptor instance)) ;; class (handle (slv2_instance-lv2_handle instance)) ;; object (connect (lv2_descriptor-connect_port descriptor))) ;; method (connect handle index (f32vector->cpointer vector)))) ;; Create f32 i/o vectors and connect to control and audio ports. (define (plugin-instance-make/connect-ports plugin instance nb_samples) (for/list ((port (plugin-ports plugin)) (index (in-naturals))) (let* ((classes (map portclass (plugin-port-classes plugin port))) (nb (cond ((memq 'audio classes) nb_samples) ((memq 'control classes) 1) (else (raise `(unsupported-class ,classes))))) (vector (make-f32vector nb))) (plugin-instance-connect-port-f32vector! instance index vector) (cons vector classes)))) ;; -------------------------------------------------------------------------------------- (define (test) (test-plugin (car (plugins)))) (define (test-plugin p) (let* ((i (plugin-instantiate p 44100.0)) (d (slv2_instance-lv2_descriptor i)) (h (slv2_instance-lv2_handle i)) (ports (plugin-ports p)) (iobuf (make-f32vector 1))) ;; (plugin-instance-connect-port-f32vector! i 0 iobuf) (pretty-print `(,(plugin-name p) ,(lv2_descriptor-URI d) ,(for/list ((port ports)) (list (plugin-port-name p port) (map portclass (plugin-port-classes p port)) (plugin-port-properties p port) )))) (plugin-instance-make/connect-ports p i 64))) ;; Instantiation might fail, e.g. due to linking errors. (define (instantiate-working-plugins [sr 48000.0]) (define is '()) (for ((p (plugins))) (with-handlers ((void void)) (set! is (cons (cons p (plugin-instantiate p sr)) is)))) (reverse is))
false
3198fcc3ce1f1ce89cf240a9043ffe7e701f548b
3b2cf17b2d77774a19e9a9540431f1f5a840031e
/src/color-tokenizer.rkt
a8ffa24cf019d668218246f18306ae4868779a05
[]
no_license
brownplt/pyret-lang-resugarer
5bfaa09e52665657abad8d9d863e8915e0029a29
49519679aefb7b280a27938bc7bfbaaecc0bd4fc
HEAD
2016-09-06T03:59:24.608789
2014-06-27T03:45:02
2014-06-27T03:45:02
13,936,477
1
1
null
null
null
null
UTF-8
Racket
false
false
2,094
rkt
color-tokenizer.rkt
#lang racket/base (require "lang/tokenizer.rkt" parser-tools/lex ragg/support) (provide get-token) (define TOKENIZERS (make-hash)) (define (get-token ip offset last-mode) (define tok (hash-ref TOKENIZERS ip (lambda () (define this-tok (tokenize ip)) (hash-set! TOKENIZERS ip this-tok) this-tok))) (define t (with-handlers [(exn:fail? (lambda (e) (position-token (void) #f #f)))] (tok))) (define (token->name token) (cond [(member (symbol->string token) '("(" ")" "[" "]" "{" "}")) 'parenthesis] [else (case token [(KEYWORD) 'keyword] [(COMMENT) 'comment] [(STRING) 'string] [(NUMBER) 'constant] [(PARENSPACE) 'parenthesis] [(PARENNOSPACE) 'parenthesis] [(WS) 'whitespace] [(NAME) 'other] [else 'other])])) (define (bracket val) (cond [(member val '("(" ")" "[" "]" "{" "}")) (string->symbol val)] [else #f])) (define inner-token (position-token-token t)) (cond [(void? inner-token) (hash-remove! TOKENIZERS ip) (values 'done 'eof #f #f #f 0 'no-mode)] [(pyret-keyword? (token-struct-type inner-token)) (values (token-struct-val inner-token) 'keyword #f (position-offset (position-token-start-pos t)) (position-offset (position-token-end-pos t)) (string-length (token-struct-val inner-token)) 'in-name)] [(equal? (token-struct-val inner-token) 'OPENSTR) (values (token-struct-val inner-token) 'other #f (position-offset (position-token-start-pos t)) (position-offset (position-token-end-pos t)) (string-length (token-struct-val inner-token)) 'in-string)] [else (values (token-struct-val inner-token) (token->name (token-struct-type (position-token-token t))) (bracket (token-struct-val inner-token)) (position-offset (position-token-start-pos t)) (position-offset (position-token-end-pos t)) 0 'normal)]))
false
e5e53ae6006c37da8b3e2652159545452c031f19
6e89d84e97383a49e6b51bfc9ce7eb188a5520e2
/neille/battle/view.rkt
16cb0cc2b991fe5a8d97af02ee03dbe8fdd2e4c1
[]
no_license
sindoc/neille
c99719e0989bb08a5271a4147048cfd502aaf60a
82fecab4775a3e6f8b25cc566cbc1c16b26f13a9
refs/heads/master
2021-01-25T06:40:09.859964
2011-09-06T14:38:31
2011-09-06T14:38:31
1,008,717
1
0
null
null
null
null
UTF-8
Racket
false
false
915
rkt
view.rkt
#lang racket (require racket/gui/base neille/battle/channel neille/battle/engine neille/battle/events neille/battle/layout/base) (provide start-battle-view) (define (start-battle-view) (send broadcast-feedback-channel subscribe game-finished-event-id (lambda (winner) (define dialog (new dialog% (label (format "~a won the game" (symbol->string (send winner get-name)))) (width 300) (height 80))) (define feedback '42) (send dialog show #t) (send table- remove-cards (send table- all-cards)) (list feedback))) (send table- show #t) (start-playing)) (start-battle-view)
false
4cf2aefee90d7ae773ab6f0d3a430b7dc21f80da
44d85bb6e8020a184e7588cd3eb61b9f1e83f2ea
/bench/stlc.rkt
6b816dc5f09a6a688aeec422ab839656a3f77a52
[]
no_license
maxsnew/rack-enum
47408bae8f6c2f344d875385839ad4d8637ef337
93f28134a6a94991e9d864e5309831c07c1f89ec
refs/heads/master
2021-01-10T22:13:22.309697
2014-05-15T18:06:18
2014-05-15T18:06:18
9,205,028
1
0
null
null
null
null
UTF-8
Racket
false
false
1,670
rkt
stlc.rkt
#lang racket (require redex redex/private/enumerator) (define (errout e) (error 'no-encode)) (define-language STLC (e ::= (e e) (+ e e) x v) (v ::= (λ (x τ) e) n) (n ::= number) (x ::= variable-not-otherwise-mentioned) (τ ::= num (τ → τ)) (Γ ::= (x τ Γ) •)) (define-judgment-form STLC #:mode (tc I I O) [-------------- (tc Γ n num)] [(where τ (lookup Γ x)) ---------------------- (tc Γ x τ)] [(tc (x τ_x Γ) e τ_e) --------------------------------- (tc Γ (λ (x τ_x) e) (τ_x → τ_e))] [(tc Γ e_1 (τ_2 → τ)) (tc Γ e_2 τ_2) ----------------------------------- (tc Γ (e_1 e_2) τ)] [(tc Γ e_0 num) (tc Γ e_1 num) ----------------------------- (tc Γ (+ e_0 e_1) num)]) (define-metafunction STLC [(lookup (x τ Γ) x) τ] [(lookup (x_1 τ Γ) x_2) (lookup Γ x_2)] [(lookup • x) #f]) (define Γ/e (enum +inf.f (generate-term STLC Γ #:i-th) errout)) (define τ/e (enum +inf.f (generate-term STLC τ #:i-th) errout)) (define e/e (enum +inf.f (generate-term STLC e #:i-th) errout)) (define n/e (enum +inf.f (generate-term STLC n #:i-th) errout)) (define (tc-typ/e typ) (define jdg-num/e (fix/e +inf.f (λ (jdg-num/e) (sum/e (map/e (λ (gamma n) `(tc ,gamma ,n num)) errout Γ/e n/e) )))) (match typ ['num jdg-num/e] [_ empty/e])) (define (tc-nv-typ/e nv typ) ) (for/list ([i (in-range 100)]) (decode jdg-num/e (+ i 100)))
false
56a84508b05255ee549d1ee88036e7f0fbf41f94
3b2cf17b2d77774a19e9a9540431f1f5a840031e
/src/lang/parser.rkt
88996fae55a46aeaf064a19da9424135df432ac1
[]
no_license
brownplt/pyret-lang-resugarer
5bfaa09e52665657abad8d9d863e8915e0029a29
49519679aefb7b280a27938bc7bfbaaecc0bd4fc
HEAD
2016-09-06T03:59:24.608789
2014-06-27T03:45:02
2014-06-27T03:45:02
13,936,477
1
1
null
null
null
null
UTF-8
Racket
false
false
17,512
rkt
parser.rkt
#lang racket/base (provide (all-defined-out)) (require (only-in racket/list empty) syntax/parse "ast.rkt") ;; borrowed from dyoo's brainfudge (define (loc stx) (srcloc (syntax-source stx) (syntax-line stx) (syntax-column stx) (syntax-position stx) (syntax-span stx) (list))) (define (parse-name n) (string->symbol (syntax->datum n))) (define (parse-string stx) (let [(str-val (syntax->datum stx))] (substring str-val 1 (sub1 (string-length str-val))))) (define (parse-num stx) (string->number (syntax->datum stx))) ;; NOTE(joe): syntax->datum followed by datum->syntax loses location ;; information if used naively, so do the unpacking with syntax/parse (define (map/stx f stx) (syntax-parse stx [() empty] [(elt elts ...) (cons (f #'elt) (map/stx f #'(elts ...)))])) (define (parse-program stx) (syntax-parse stx #:datum-literals (program prelude) [(program (prelude prelude-stmt ...) body) (s-prog (loc stx) (map/stx parse-prelude #'(prelude-stmt ...)) (parse-block #'body))])) (define (parse-prelude stx) (syntax-parse stx #:datum-literals (import-stmt provide-stmt) [(provide-stmt "provide" "*") (s-provide-all (loc stx))] [(provide-stmt "provide" stmt (end (~or "end" ";"))) (s-provide (loc stx) (parse-stmt #'stmt))] [(import-stmt "import" import-module "as" name) (s-import (loc stx) (parse-import-module #'import-module) (parse-name #'name))])) (define (parse-import-module stx) (syntax-parse stx #:datum-literals (import-name import-string) [(import-name n) (parse-name #'n)] [(import-string s) (parse-string #'s)])) (define (parse-block stx) (syntax-parse stx #:datum-literals (block) [(block stmts ...) (s-block (loc stx) (map/stx parse-stmt-wrapper #'(stmts ...)))])) (define (parse-stmt-wrapper stx) (syntax-parse stx #:datum-literals (stmt) [(stmt s) (parse-stmt #'s)])) (define (parse-with stx) (syntax-parse stx #:datum-literals (data-with) [(data-with) empty] [(data-with "with:" fields) (parse-fields #'fields)])) (define (parse-variant stx) (syntax-parse stx #:datum-literals (data-variant) [(data-variant "|" name args with) (s-variant (loc stx) (parse-name #'name) (parse-variant-members #'args) (parse-with #'with))] [(data-variant "|" name with) (s-singleton-variant (loc stx) (parse-name #'name) (parse-with #'with))])) (define (parse-sharing stx) (syntax-parse stx #:datum-literals (data-sharing) [(data-sharing "sharing:" fields) (parse-fields #'fields)] [(data-sharing) empty])) (define (parse-stmt stx) (syntax-parse stx #:datum-literals ( var-expr let-expr fun-expr fun-header fun-body data-expr assign-expr when-expr check-expr stmt expr ) [(var-expr "var" bind "=" e) (s-var (loc stx) (parse-binding #'bind) (parse-binop-expr #'e))] [(let-expr bind "=" e) (s-let (loc stx) (parse-binding #'bind) (parse-binop-expr #'e))] [(graph-expr "graph:" binding ... (end (~or "end" ";"))) (s-graph (loc stx) (map/stx parse-stmt #'(binding ...)))] [(fun-expr "fun" (fun-header params fun-name args return) ":" doc body check (end (~or "end" ";"))) (s-fun (loc stx) (parse-name #'fun-name) (parse-ty-params #'params) (parse-args #'args) (parse-return-ann #'return) (parse-doc-string #'doc) (parse-block #'body) (parse-where-clause #'check))] [(data-expr "data" name params mixins ":" variant ... sharing-part check (end (~or "end" ";"))) (s-data (loc stx) (parse-name #'name) (parse-ty-params #'params) (parse-mixins #'mixins) (map/stx parse-variant #'(variant ...)) (parse-sharing #'sharing-part) (parse-where-clause #'check))] [(assign-expr id ":=" e) (s-assign (loc stx) (parse-name #'id) (parse-binop-expr #'e))] [(when-expr "when" test ":" body (end (~or "end" ";"))) (s-when (loc stx) (parse-binop-expr #'test) (parse-block #'body))] [(check-expr "check:" body (end (~or "end" ";"))) (s-check (loc stx) (parse-block #'body))] [(stmt s) (parse-stmt #'s)] [(binop-expr e) (parse-binop-expr #'e)] [(binop-expr left op right) (s-op (loc stx) (parse-op #'op) (parse-binop-expr #'left) (parse-binop-expr #'right))])) (define (parse-doc-string stx) (syntax-parse stx #:datum-literals (doc-string) [(doc-string) ""] [(doc-string "doc:" str) (parse-string #'str)])) (define (parse-where-clause stx) (syntax-parse stx #:datum-literals (where-clause) [(where-clause) (s-block (loc stx) empty)] [(where-clause "where:" block) (parse-block #'block)])) (define (parse-binop-expr stx) (syntax-parse stx #:datum-literals (binop-expr expr) [(binop-expr _ _ _) (parse-stmt stx)] [(expr e) (parse-expr #'e)] [(not-expr "not" e) (s-not (loc stx) (parse-expr #'e))] [(binop-expr e) (parse-binop-expr #'e)])) (define (parse-op stx) (syntax-parse stx #:datum-literals (binop) [(binop str) (hash-ref op-lookup-table (syntax->datum #'str))])) (define (parse-return-ann stx) (syntax-parse stx #:datum-literals (return-ann) [(return-ann) (a-blank)] [(return-ann "->" ann) (parse-ann #'ann)])) (define (parse-binding stx) (syntax-parse stx #:datum-literals (binding) [(binding name) (s-bind (loc stx) (parse-name #'name) (a-blank))] [(binding name "::" ann) (s-bind (loc stx) (parse-name #'name) (parse-ann #'ann))])) (define (parse-args stx) (syntax-parse stx #:datum-literals (args list-arg-elt) [(args "(" ")") empty] [(args "(" (list-arg-elt arg1 ",") ... lastarg ")") (map/stx parse-binding #'(arg1 ... lastarg))])) (define (parse-variant-member stx) (syntax-parse stx #:datum-literals (variant-member) [(variant-member b) (s-variant-member (loc stx) 'normal (parse-binding #'b))] [(variant-member "mutable" b) (s-variant-member (loc stx) 'mutable (parse-binding #'b))] [(variant-member "cyclic" b) (s-variant-member (loc stx) 'cyclic (parse-binding #'b))])) (define (parse-variant-members stx) (syntax-parse stx #:datum-literals (variant-members list-variant-member) [(variant-members "(" ")") empty] [(variant-members "(" (list-variant-member vm1 ",") ... lastvm ")") (map/stx parse-variant-member #'(vm1 ... lastvm))])) (define (parse-key stx) (syntax-parse stx #:datum-literals (key) [(key "[" expr "]") (parse-binop-expr #'expr)] [(key name) (s-str (loc stx) (symbol->string (parse-name #'name)))])) (define (parse-obj-field stx) (syntax-parse stx #:datum-literals (obj-field) [(obj-field "mutable" key ":" value) (s-mutable-field (loc stx) (parse-key #'key) (a-blank) (parse-binop-expr #'value))] [(obj-field "mutable" key "::" ann ":" value) (s-mutable-field (loc stx) (parse-key #'key) (parse-ann #'ann) (parse-binop-expr #'value))] [(obj-field key ":" value) (s-data-field (loc stx) (parse-key #'key) (parse-binop-expr #'value))] [(obj-field key args ret ":" doc body check (end (~or "end" ";"))) (s-method-field (loc stx) (parse-key #'key) (parse-args #'args) (parse-return-ann #'ret) (parse-doc-string #'doc) (parse-block #'body) (parse-where-clause #'check))])) (define (parse-obj-fields stx) (syntax-parse stx #:datum-literals (obj-fields list-obj-field) [(obj-fields (list-obj-field f1 ",") ... lastfield) (map/stx parse-obj-field #'(f1 ... lastfield))] [(obj-fields (list-obj-field f1 ",") ... lastfield ",") (map/stx parse-obj-field #'(f1 ... lastfield))])) (define (parse-field stx) (syntax-parse stx #:datum-literals (field) [(field key ":" value) (s-data-field (loc stx) (parse-key #'key) (parse-binop-expr #'value))] [(field key args ret ":" doc body check (end (~or "end" ";"))) (s-method-field (loc stx) (parse-key #'key) (parse-args #'args) (parse-return-ann #'ret) (parse-doc-string #'doc) (parse-block #'body) (parse-where-clause #'check))])) (define (parse-fields stx) (syntax-parse stx #:datum-literals (fields list-field) [(fields (list-field f1 ",") ... lastfield) (map/stx parse-field #'(f1 ... lastfield))] [(fields (list-field f1 ",") ... lastfield ",") (map/stx parse-field #'(f1 ... lastfield))])) (define (parse-mixins stx) (syntax-parse stx #:datum-literals (data-mixins) [(data-mixins) empty] [(data-mixins "deriving" mixins) (parse-all-mixins #'mixins)])) (define (parse-all-mixins stx) (syntax-parse stx #:datum-literals (mixins list-mixin) [(mixins (list-mixin m1 ",") ... lastmixin) (map/stx parse-binop-expr #'(m1 ... lastmixin))])) (define (parse-app-args stx) (syntax-parse stx #:datum-literals (app-args app-arg-elt) [(app-args "(" ")") empty] [(app-args "(" (app-arg-elt e1 ",") ... elast ")") (map/stx parse-binop-expr #'(e1 ... elast))])) (define (parse-cases-branch stx) (syntax-parse stx #:datum-literals (cases-branch) [(cases-branch "|" name "=>" body) (s-cases-branch (loc stx) (parse-name #'name) empty (parse-block #'body))] [(cases-branch "|" name args "=>" body) (s-cases-branch (loc stx) (parse-name #'name) (parse-args #'args) (parse-block #'body))])) (define (parse-else-if stx) (syntax-parse stx #:datum-literals (else-if) [(else-if "else if" test ":" body) (s-if-branch (loc stx) (parse-binop-expr #'test) (parse-block #'body))])) (define (parse-else stx) (syntax-parse stx #:datum-literals (else) [(else "else:" body) (parse-block #'body)])) (define (parse-ty-params stx) (syntax-parse stx #:datum-literals (ty-params list-ty-param) [(ty-params) empty] [(ty-params "<" (list-ty-param param ",") ... last ">") (map/stx parse-name #'(param ... last))])) (define (parse-left-app-fun-expr stx) (syntax-parse stx #:datum-literals (left-app-fun-expr) [(left-app-fun-expr id) (parse-expr #'id)] [(left-app-fun-expr id "." name) (s-dot (loc stx) (parse-expr #'id) (parse-name #'name))])) (define (parse-for-bind stx) (syntax-parse stx #:datum-literals (for-bind) [(for-bind name "from" expr) (s-for-bind (loc stx) (parse-binding #'name) (parse-binop-expr #'expr))])) (define (parse-expr stx) (syntax-parse stx #:datum-literals ( prim-expr obj-expr list-expr list-elt app-expr id-expr dot-expr bracket-expr colon-expr colon-bracket-expr for-expr try-expr let-expr let-binding lambda-expr method-expr extend-expr left-app-expr paren-expr not-expr expr ) [(prim-expr e) (parse-prim #'e)] [(obj-expr "{" "}") (s-obj (loc stx) empty)] [(obj-expr "{" obj-fields "}") (s-obj (loc stx) (parse-obj-fields #'obj-fields))] [(list-expr "[" "]") (s-list (loc stx) empty)] [(list-expr "[" (list-elt e1 ",") ... elast "]") (s-list (loc stx) (map/stx parse-binop-expr #'(e1 ... elast)))] [(app-expr efun eargs) (s-app (loc stx) (parse-expr #'efun) (parse-app-args #'eargs))] [(id-expr x) (s-id (loc stx) (parse-name #'x))] [(dot-expr obj "." field) (s-dot (loc stx) (parse-expr #'obj) (parse-name #'field))] [(get-bang-expr obj "!" field) (s-get-bang (loc stx) (parse-expr #'obj) (parse-name #'field))] [(bracket-expr obj "." "[" field "]") (s-bracket (loc stx) (parse-expr #'obj) (parse-binop-expr #'field))] [(colon-expr obj ":" field) (s-colon (loc stx) (parse-expr #'obj) (parse-name #'field))] [(colon-bracket-expr obj ":" "[" field "]") (s-colon-bracket (loc stx) (parse-expr #'obj) (parse-binop-expr #'field))] [(cases-expr "cases" "(" type ")" val ":" branch ... "|" "else" "=>" else-block (end (~or "end" ";"))) (s-cases-else (loc stx) (parse-ann #'type) (parse-expr #'val) (map/stx parse-cases-branch #'(branch ...)) (parse-block #'else-block))] [(cases-expr "cases" "(" type ")" val ":" branch ... (end (~or "end" ";"))) (s-cases (loc stx) (parse-ann #'type) (parse-expr #'val) (map/stx parse-cases-branch #'(branch ...)))] [(if-expr "if" test ":" body branch ... "else:" else-block (end (~or "end" ";"))) (s-if-else (loc stx) (cons (s-if-branch (loc #'test) (parse-binop-expr #'test) (parse-block #'body)) (map/stx parse-else-if #'(branch ...))) (parse-block #'else-block))] [(if-expr "if" test ":" body branch ... (end (~or "end" ";"))) (s-if (loc stx) (cons (s-if-branch (loc #'test) (parse-binop-expr #'test) (parse-block #'body)) (map/stx parse-else-if #'(branch ...))))] [(for-expr "for" iter "(" (for-bind-elt binds ",") ... last-bind ")" return-ann ":" body (end (~or "end" ";"))) (s-for (loc stx) (parse-expr #'iter) (map/stx parse-for-bind #'(binds ... last-bind)) (parse-return-ann #'return-ann) (parse-block #'body))] [(for-expr "for" iter "(" ")" return-ann ":" body (end (~or "end" ";"))) (s-for (loc stx) (parse-expr #'iter) empty (parse-return-ann #'return-ann) (parse-block #'body))] [(try-expr "try:" body "except" "(" arg-elt ")" ":" except (end (~or "end" ";"))) (s-try (loc stx) (parse-block #'body) (parse-binding #'arg-elt) (parse-block #'except))] [(user-block-expr "block:" body (end (~or "end" ";"))) (s-user-block (loc stx) (parse-block #'body))] [(lambda-expr "fun" ty-params args return-ann ":" doc body check (end (~or "end" ";"))) (s-lam (loc stx) (parse-ty-params #'ty-params) (parse-args #'args) (parse-return-ann #'return-ann) (parse-doc-string #'doc) (parse-block #'body) (parse-where-clause #'check))] [(lambda-expr "fun" ty-params return-ann ":" doc body check (end (~or "end" ";"))) (s-lam (loc stx) (parse-ty-params #'ty-params) (list) (parse-return-ann #'return-ann) (parse-doc-string #'doc) (parse-block #'body) (parse-where-clause #'check))] [(method-expr "method" args return-ann ":" doc body check (end (~or "end" ";"))) (s-method (loc stx) (parse-args #'args) (parse-return-ann #'return-ann) (parse-doc-string #'doc) (parse-block #'body) (parse-where-clause #'check))] [(extend-expr e "." "{" fields "}") (s-extend (loc stx) (parse-expr #'e) (parse-fields #'fields))] [(update-expr e "!" "{" fields "}") (s-update (loc stx) (parse-expr #'e) (parse-fields #'fields))] [(left-app-expr e "^" fun-expr app-args) (s-left-app (loc stx) (parse-expr #'e) (parse-left-app-fun-expr #'fun-expr) (parse-app-args #'app-args))] [(paren-expr "(" e ")") (s-paren (loc stx) (parse-binop-expr #'e))] [(expr e) (parse-expr #'e)] )) (define (parse-prim stx) (syntax-parse stx #:datum-literals ( bool-expr num-expr string-expr ) [(bool-expr "true") (s-bool (loc stx) #t)] [(bool-expr "false") (s-bool (loc stx) #f)] [(num-expr n) (s-num (loc stx) (parse-num #'n))] [(num-expr "-" n) (s-num (loc stx) (- (parse-num #'n)))] [(string-expr s) (s-str (loc stx) (parse-string #'s))])) (define (parse-ann-field stx) (syntax-parse stx #:datum-literals (ann-field) [(ann-field n ":" ann) (a-field (loc stx) (symbol->string (parse-name #'n)) (parse-ann #'ann))])) (define (parse-ann stx) (syntax-parse stx #:datum-literals ( name-ann record-ann list-ann-field arrow-ann arrow-ann-elt app-ann app-ann-elt pred-ann dot-ann ann ) [(name-ann n) (a-name (loc stx) (parse-name #'n))] [(record-ann "{" "}") (a-record (loc stx) empty)] [(record-ann "{" (list-ann-field fields ",") ... lastfield "}") (a-record (loc stx) (map/stx parse-ann-field #'(fields ... lastfield)))] [(arrow-ann "(" (arrow-ann-elt anns ",") ... last-ann "->" result ")") (a-arrow (loc stx) (map/stx parse-ann #'(anns ... last-ann)) (parse-ann #'result))] [(app-ann the-ann "<" (app-ann-elt anns ",") ... last-ann ">") (a-app (loc stx) (parse-ann #'the-ann) (map/stx parse-ann #'(anns ... last-ann)))] [(pred-ann annbase "(" expr ")") (a-pred (loc stx) (parse-ann #'annbase) (parse-binop-expr #'expr))] [(dot-ann n1 "." n2) (a-dot (loc stx) (parse-name #'n1) (parse-name #'n2))] [(ann a) (parse-ann #'a)]))
false
378ee6baa6dd185817bcb9bcf4fa335d820ddc1e
90732b5c51f1daca93379b1ff1d357b28d18667c
/draw.rkt
f30eaab745f92a222291c4b6b2e2cdea457dbf15
[]
no_license
wllsena/Rasterizer
c50aa7527b448b8643a4086187ca7d12a185b5c3
da5859f2ff1bdd09176fb62a94a61e2e42225c92
refs/heads/master
2023-05-06T12:39:35.867029
2021-05-19T20:05:13
2021-05-19T20:05:13
214,892,631
0
0
null
null
null
null
UTF-8
Racket
false
false
9,192
rkt
draw.rkt
#lang racket (require math/array web-server/servlet "matrix2img.rkt") (provide error figure figures undo make-grid grid->data-uri) (define error " .") (define len-x #f) (define len-y #f) (define len-p #f) (define len-x1 #f) (define len-y1 #f) (define grid #f) (define figs null) (define-syntax (check-points stx) #`(if #,(syntax-case stx () [(_ (nums ...) (xs ys) ...) #'(or (not nums) ... (< nums 0) ... (not xs) ... (not ys) ... (for/or ([i (in-combinations (list (cons xs ys) ...) 2)]) (equal? (car i) (cadr i))) (< xs 0) ... (> xs len-x1) ... (< ys 0) ... (> ys len-y1) ... )] [(_ _ (xs ys) ...) #'(or (< xs 0) ... (> xs len-x1) ... (< ys 0) ... (> ys len-y1) ... )]) (begin (set! error " Invalid coordinates!") (set-figs! (cdr figs)) #f) (begin (set! error " .") #t))) (define-syntax-rule (extract-figs text) (let ([text* (string-normalize-spaces text)]) (map string-split (string-split (string-replace (substring text 2 (- (string-length text*) 2)) ") (" "*") "*")))) (define-syntax-rule (figures) (λ (req) (let* ([text (extract-binding/single 'number (request-bindings req))] [figs (extract-figs text)]) (for ([inputs figs]) (draw inputs))))) (define-syntax-rule (figure fig) (λ (req) (let ([inputs (cons fig (extract-bindings 'number (request-bindings req)))]) (draw inputs)))) (define-syntax-rule (draw inputs) (let* ([fig (car inputs)] [last-i (last inputs)] [inputs (append (map string->number (drop-right (cdr inputs) 1)) (normalize-color last-i))]) ((eval-draw fig) inputs) (set-figs! (cons (cons fig inputs) figs)))) (define-syntax-rule (undo) (λ _ (unless (null? figs) (match-let ([(cons (cons fig inputs) others) figs]) ((eval-draw fig) (list-set inputs (sub1 (length inputs)) (vector 255 255 255))) (set-figs! others))))) (define-syntax-rule (eval-draw fig) (match fig ["point" draw-point] ["line" draw-line] ["circle" draw-circle] ["rect" draw-rect] ["trian" draw-trian] ["curve" draw-curve])) (define-syntax-rule (normalize-color text) (list (if (or (string=? text "") (string=? text "#f")) (vector 0 0 0) (list->vector (map string->number (string-split (substring text 1 (sub1 (string-length text))) ",")))))) (define-syntax-rule (update x y color) (array-set! grid (vector (add1 x) (add1 y)) color)) (define-syntax-rule (grid->data-uri) (array->data-uri grid len-x len-y len-p)) (define-syntax-rule (amount-pts x1 y1 x2 y2 x3 y3) (+ (integer-sqrt (+ (expt (- x2 x1) 2) (expt (- y2 y1) 2))) (integer-sqrt (+ (expt (- x2 x3) 2) (expt (- y2 y3) 2))))) ;------------------------------------------- (define (make-grid x y p) (set! len-x (+ 2 x)) (set! len-y (+ 2 y)) (set! len-p p) (set! len-x1 (sub1 x)) (set! len-y1 (sub1 y)) (set! grid (array->mutable-array (make-array (vector len-x len-y) (vector 0 0 0)))) (array-slice-set! grid (list (:: 1 (sub1 len-x)) (:: 1 (sub1 len-y))) (array (vector 255 255 255)))) (define (set-figs! new-figs) (set! figs new-figs)) ;------------------------------------------- (define (draw-point coord) (match-let ([(list x y color) coord]) (when (check-points () (x y)) (update x y color)))) (define (draw-line coord) (match-let ([(list x1 y1 x2 y2 color) coord]) (when (check-points () (x1 y1) (x2 y2)) (make-line x1 y1 x2 y2 color)))) (define (draw-circle coord) (match-let* ([(list x0 y0 r fill? color) coord]) (when (check-points (r) (x0 y0)) (let ([x+r (+ x0 r)] [y+r (+ y0 r)] [x-r (- x0 r)] [y-r (- y0 r)]) (when (check-points #f (x+r y+r) (x-r y+r) (x+r y-r) (x-r y-r)) (if fill? (fill-circle-while x0 y0 (- 1 r) 0 r color) (circle-while x0 y0 (- 1 r) 0 r color))))))) (define (draw-rect coord) (match-let ([(list x1 y1 a b fill? color) coord]) (when (check-points (a b) (x1 y1)) (let* ([x2 (+ a x1)] [y2 (+ b y1)] [x2-1 (sub1 x2)] [y2-1 (sub1 y2)]) (when (check-points #f (x2-1 y2-1)) (if fill? (for* ([x (in-range x1 x2)] [y (in-range y1 y2)]) (update x y color)) (begin (make-line x1 y1 x2 y1 color) (make-line x1 y1 x1 y2 color) (make-line x2 y1 x2 y2 color) (make-line x1 y2 x2 y2 color)))))))) (define (draw-trian coord) (match-let ([(list x1 y1 x2 y2 x3 y3 fill? color) coord]) (when (check-points () (x1 y1) (x2 y2) (x3 y3)) (when fill? (make-triangle x1 y1 x2 y2 x3 y3 color)) (make-line x1 y1 x2 y2 color) (make-line x1 y1 x3 y3 color) (make-line x2 y2 x3 y3 color)))) (define (draw-curve coord) (match-let*([(list x1 y1 x2 y2 x3 y3 len color) coord] [len (cond [len] [1])]) (when (check-points (len) (x1 y1) (x2 y2) (x3 y3)) (let* ([df-x (- x2 (/ (+ x1 x3) 2))] [df-y (- y2 (/ (+ y1 y3) 2))] [sum-df (+ (abs df-x) (abs df-y))] [dx (/ df-x sum-df)] [dy (/ df-y sum-df)] [amount (/ 1 (amount-pts x1 y1 x2 y2 x3 y3))] [x2.2 (+ (* dx len) x2)] [y2.2 (+ (* dy len) y2)]) (when (check-points #f (x2.2 y2.2)) (let ([fx (λ (t) (+ (* x1 (expt (- 1 t) 2)) (* 2 x2 (- 1 t) t) (* x3 (expt t 2))))] [fy (λ (t) (+ (* y1 (expt (- 1 t) 2)) (* 2 y2 (- 1 t) t) (* y3 (expt t 2))))]) (for ([t (in-range 0 (add1 amount) amount)]) (let ([x (round (fx t))] [y (round (fy t))]) (for ([i (in-range len)]) (update (+ x (round (* i dx))) (+ y (round (* i dy))) color)))))))))) ;------------------------------------------- (define (make-line x1 y1 x2 y2 color) (let* ([df-x (- x2 x1)] [df-y (- y2 y1)] [max-df (max (abs df-x) (abs df-y))] [dx (/ df-x max-df)] [dy (/ df-y max-df)]) (for ([i (in-range (add1 max-df))]) (update (+ x1 (round (* i dx))) (+ y1 (round (* i dy))) color)))) (define (circle-while x0 y0 d x y color) (update (+ x0 x) (+ y0 y) color) (update (- x0 x) (+ y0 y) color) (update (+ x0 x) (- y0 y) color) (update (- x0 x) (- y0 y) color) (update (+ x0 y) (+ y0 x) color) (update (- x0 y) (+ y0 x) color) (update (+ x0 y) (- y0 x) color) (update (- x0 y) (- y0 x) color) (when (> y x) (if (< d 0) (circle-while x0 y0 (+ d (* 2 x) 3) (add1 x) y color) (circle-while x0 y0 (+ d (* 2 (- x y)) 5) (add1 x) (sub1 y) color)))) (define (fill-circle-while x0 y0 d x y color) (for ([i (in-range (- x0 x) (+ x0 x 1))]) (update i (- y0 y) color) (update i (+ y0 y) color)) (for ([i (in-range (- x0 y) (+ x0 y 1))]) (update i (- y0 x) color) (update i (+ y0 x) color)) (when (> y x) (if (< d 0) (fill-circle-while x0 y0 (+ d (* 2 x) 3) (add1 x) y color) (fill-circle-while x0 y0 (+ d (* 2 (- x y)) 5) (add1 x) (sub1 y) color)))) (define (make-triangle x1 y1 x2 y2 x3 y3 color) (match-let ([(list (cons lx ly) (cons mx my) (cons tx ty)) (sort (list (cons x1 y1) (cons x2 y2) (cons x3 y3)) < #:key cdr)]) (let* ([df-mty (- ty my)] [df-lty (- ty ly)] [df-lmy (- my ly)] [dxmt (if (zero? df-mty) 0 (/ (- tx mx) df-mty))] [dxlt (if (zero? df-lty) 0 (/ (- tx lx) df-lty))] [dxlm (if (zero? df-lmy) 0 (/ (- mx lx) df-lmy))] [proj-x (cond [(zero? df-mty) tx] [(zero? df-lmy) lx] [else (+ lx (* my dxlt))])] [var (if (> proj-x mx) 1 -1)] [-var (- var)]) (for ([i (in-range 1 df-lmy)]) (make-line (round (+ lx (* i dxlm))) (+ ly i) (round (+ lx (* i dxlt))) (+ ly i) color)) (make-line mx my proj-x my color) (for ([i (in-range 1 df-mty)]) (make-line (round (- tx (* i dxmt))) (- ty i) (round (- tx (* i dxlt))) (- ty i) color)))))
true
aab40ff7364aaaf381b2166b92b277e79b8c6786
71060ffeffa3469ec44ba661b04118b487fc0602
/ex_1_23.rkt
4c53b6e063933fe054aef0dc2d0edbe11f110888
[]
no_license
ackinc/sicp
18741d3ffc46041ecd08021d57a50702be2e0f92
4ee2250f8b7454fb88bc27edb41a1349d7a3016c
refs/heads/master
2021-09-13T08:55:37.171840
2018-04-27T10:02:08
2018-04-27T10:02:08
114,095,803
0
0
null
null
null
null
UTF-8
Racket
false
false
576
rkt
ex_1_23.rkt
#lang racket (require "./ch_1_prime.rkt") (require "./ch_1_timed_prime_test.rkt") (define (test n) (timed-prime-test faster-prime? n)) (test 1000000007) ; .5ms (test 1000000009) (test 1000000021) (test 10000000019) ; 1.5ms (test 10000000033) (test 10000000061) (test 1000000000039) ; 15ms (test 1000000000061) (test 1000000000063) (test 10000000000037) ; 50ms (test 10000000000051) (test 10000000000099) (test 1000000000000037) ; 480ms (test 1000000000000091) (test 1000000000000159) (test 10000000000000061) ; 1500ms (test 10000000000000069) (test 10000000000000079)
false
a537b1187104446c1562166bc6df12fca7e7a4d7
0ad0076e542f597f37c3c793f6e7596c1bda045b
/ts-tactics/assessments/plots/benchmarks.rkt
39ce9b1c1fd8af108c5fd658e50498271c231da0
[]
no_license
thoughtstem/TS-Coach
0b57afbd52520e84f958f7c7e3e131f2521a8e9f
ceb23c8b58909c0d5f80b6341538c330a3543d4a
refs/heads/master
2020-09-08T04:27:37.804781
2020-02-14T20:09:22
2020-02-14T20:09:22
221,011,766
0
0
null
null
null
null
UTF-8
Racket
false
false
5,266
rkt
benchmarks.rkt
#lang racket (provide compare-first-years compare-second-years compare-third-years compare-k-2-years compare-3rd-5th-years compare-6th-8th-years compare-9th-12th-years k-2-year-1 k-2-year-2 k-2-year-3 3rd-5th-year-1 3rd-5th-year-2 3rd-5th-year-3 6th-8th-year-1 6th-8th-year-2 6th-8th-year-3 9th-12th-year-1 9th-12th-year-2 9th-12th-year-3 9th-12th-year-4 total-novice bad-expert-coder) (require "./lang.rkt") (define (bad-expert-coder) (student-data #:langs 1 #:coder expert #:communicator novice #:collaborator novice #:leader novice #:teacher novice #:architect novice)) (define (total-novice) (student-data #:langs 0 #:coder novice #:communicator novice #:collaborator novice #:leader novice #:teacher novice #:architect novice)) (define (k-2-year-1) (student-data #:langs 3 #:coder advanced-beginner #:communicator advanced-beginner #:collaborator advanced-beginner #:leader novice #:teacher novice #:architect novice)) (define (k-2-year-2) (student-data #:langs 6 #:coder competent #:communicator competent #:collaborator advanced-beginner #:leader novice #:teacher novice #:architect novice)) (define (k-2-year-3) (student-data #:langs 9 #:coder competent #:communicator competent #:collaborator competent #:leader novice #:teacher novice #:architect novice)) (define (3rd-5th-year-1) (student-data #:langs 3 #:coder advanced-beginner #:communicator advanced-beginner #:collaborator advanced-beginner #:leader advanced-beginner #:teacher advanced-beginner #:architect novice)) (define (3rd-5th-year-2) (student-data #:langs 6 #:coder competent #:communicator competent #:collaborator competent #:leader advanced-beginner #:teacher advanced-beginner #:architect novice)) (define (3rd-5th-year-3) (student-data #:langs 9 #:coder competent #:communicator competent #:collaborator competent #:leader advanced-beginner #:teacher advanced-beginner #:architect novice)) (define (6th-8th-year-1) (student-data #:langs 3 #:coder competent #:communicator competent #:collaborator competent #:leader competent #:teacher competent #:architect novice)) (define (6th-8th-year-2) (student-data #:langs 6 #:coder proficient #:communicator proficient #:collaborator proficient #:leader competent #:teacher competent #:architect novice)) (define (6th-8th-year-3) (student-data #:langs 9 #:coder proficient #:communicator proficient #:collaborator proficient #:leader competent #:teacher competent #:architect novice)) (define (9th-12th-year-1) (student-data #:langs 3 #:coder proficient #:communicator proficient #:collaborator proficient #:leader proficient #:teacher proficient #:architect novice)) (define (9th-12th-year-2) (student-data #:langs 6 #:coder expert #:communicator expert #:collaborator expert #:leader proficient #:teacher proficient #:architect novice)) (define (9th-12th-year-3) (student-data #:langs 9 #:coder expert #:communicator expert #:collaborator expert #:leader proficient #:teacher proficient #:architect novice)) (define (9th-12th-year-4) (student-data #:langs 12 #:coder expert #:communicator expert #:collaborator expert #:leader expert #:teacher expert #:architect advanced-beginner)) (define (compare-k-2-years) (compare-three #:title "K-2nd" #:labels '("Kinder" "1st" "2nd") (k-2-year-1) (k-2-year-2) (k-2-year-3))) (define (compare-3rd-5th-years) (compare-three #:title "3rd-5th" #:labels '("3rd" "4th" "5th") (3rd-5th-year-1) (3rd-5th-year-2) (3rd-5th-year-3))) (define (compare-6th-8th-years) (compare-three #:title "6th-8th" #:labels '("6th" "7th" "8th") (6th-8th-year-1) (6th-8th-year-2) (6th-8th-year-3))) (define (compare-9th-12th-years) (compare-four #:title "9th-12th" #:labels '("9th" "10th" "11th" "12th") (9th-12th-year-1) (9th-12th-year-2) (9th-12th-year-3) (9th-12th-year-4))) (define (compare-first-years) (compare-four #:title "First Years, Different Ages" #:labels '("Kinder" "3rd" "6th" "9th") (k-2-year-1) (3rd-5th-year-1) (6th-8th-year-1) (9th-12th-year-1))) (define (compare-second-years) (compare-four #:title "Second Years, Different Ages" #:labels '("1st" "4th" "7th" "10th") (k-2-year-2) (3rd-5th-year-2) (6th-8th-year-2) (9th-12th-year-2))) (define (compare-third-years) (compare-four #:title "Third Years, Different Ages" #:labels '("2nd" "5th" "8th" "11th") (k-2-year-3) (3rd-5th-year-3) (6th-8th-year-3) (9th-12th-year-3))) (module+ test (plot-new-window? #t) (compare-first-years) (compare-second-years) (compare-third-years) )
false
aac66b5948c259403e264ffee7fd16577dfa63cd
41a5ddef2c9f0875670edf6654edcbe1bd2319d9
/examples/let-poly/imp-poly/typing.rkt
b4280b1bb88cccbd0a66e36fe8bfd73d6cf19150
[]
no_license
bfetscher/predicates
7ba5c8ccbae3f5ea46f9937a77aa386a8abd409a
c117c0360a5efc7e2bd7e20a56b22b0af314c6a0
refs/heads/master
2021-01-24T05:53:07.368508
2012-01-18T21:32:29
2012-01-18T21:32:29
null
0
0
null
null
null
null
UTF-8
Racket
false
false
5,297
rkt
typing.rkt
#lang racket (require "lang.rkt" redex/reduction-semantics) (provide typeof unify instantiate TV subst-constraints subst-type) (define-extended-language Λs/ty Λs (t num x (t -> t) (ref t)) (c [t = t]) (C (c ...)) (σ ([x = t] ...)) (X (x ...)) (s (∀ (x ...) t)) (Γ ([x s] ...))) (define-metafunction Λs/ty typeof : Γ e -> s or #f [(typeof Γ e) (generalize Γ t σ) (where (t C X) (constrained-type Γ e ())) (where σ (unify C))] [(typeof Γ e) #f]) (define-metafunction Λs/ty constrained-type : Γ e X -> (t C X) or #f [(constrained-type Γ (λ x e) X) ((t_d -> t) C X_**) (where (t_d X_*) (fresh-TV X)) (where (t C X_**) (constrained-type (extend Γ x (∀ () t_d)) e X_*))] [(constrained-type Γ (e_1 e_2) X) (t_r (union-constraints C_1 C_2 ([t_1 = (t_2 -> t_r)])) X_***) (where (t_1 C_1 X_*) (constrained-type Γ e_1 X)) (where (t_2 C_2 X_**) (constrained-type Γ e_2 X_*)) (where (t_r X_***) (fresh-TV X_**))] [(constrained-type Γ (let (x_1 e_1) e_2) X) (t_2 (union-constraints C_1 C_2) X_**) (where (t_1 C_1 X_*) (constrained-type Γ e_1 X)) (where σ (unify C_1)) (where s_1 (generalize Γ t_1 σ)) (where (t_2 C_2 X_**) (constrained-type (extend Γ x_1 s_1) e_2 X_*))] [(constrained-type Γ x X) (t_i () X_*) (where (∀ (x_0 ...) t) (lookup Γ x)) (where (t_i X_*) (instantiate t (x_0 ...) X))] [(constrained-type Γ (ref e) X) ((ref t) C X_*) (where (t C X_*) (constrained-type Γ e X))] [(constrained-type Γ (! e) X) (t (union-constraints ([t_e = (ref t)]) C) X_**) (where (t_e C X_*) (constrained-type Γ e X)) (where (t X_**) (fresh-TV X_*))] [(constrained-type Γ (e_1 := e_2) X) (num (union-constraints ([t_1 = (ref t_2)]) C_1 C_2) X_**) (where (t_1 C_1 X_*) (constrained-type Γ e_1 X)) (where (t_2 C_2 X_**) (constrained-type Γ e_2 X_*))] [(constrained-type Γ (seq e_1 e_2) X) (t_2 (union-constraints C_1 C_2) X_**) (where (t_1 C_1 X_*) (constrained-type Γ e_1 X)) (where (t_2 C_2 X_**) (constrained-type Γ e_2 X_*))] [(constrained-type Γ (add1 e) X) (num (union-constraints ([t = num]) C) X_*) (where (t C X_*) (constrained-type Γ e X))] [(constrained-type Γ number X) (num () X)] ; a `let' RHS within e is locally inconsistent [(constrained-type Γ e X) #f]) (define-metafunction Λs/ty generalize : Γ t σ -> s [(generalize ([x_0 (∀ X_0 t_0)] ...) t σ) (∀ ,(remove* (apply append (term ((TV t_0*) ...))) (term (TV t_*))) t_*) (where t_* (apply-subst σ t)) ; σ won't unify TVs bound in the t_i since those TVs ; turn into fresh instances while collecting the ; constraints that lead to σ (where (t_0* ...) ((apply-subst σ t_0) ...))]) (define-metafunction Λs/ty instantiate : t (x ...) X -> (t X) ; expects TV(t) ⊆ X [(instantiate t () X) (t X)] [(instantiate t (x_0 x_1 ...) X) (instantiate (subst-type t x_0 t_f) (x_1 ...) X_*) (where (t_f X_*) (fresh-TV X))]) (define-metafunction Λs/ty lookup : Γ x -> s [(lookup ([x_0 s_0] ... [x_i s_i] [x_i+1 s_i+1] ...) x_i) s_i (side-condition (not (member (term x_i) (term (x_0 ...)))))]) (define-metafunction Λs/ty extend : Γ x s -> Γ [(extend ([x_1 s_1] ...) x_0 s_0) ([x_0 s_0] [x_1 s_1] ...)]) (define-metafunction Λs/ty unify : C -> σ or #f [(unify ()) ()] [(unify ([t = t] c ...)) (unify (c ...))] [(unify ([t = x] c ...)) (unify-var x t (c ...))] [(unify ([x = t] c ...)) (unify-var x t (c ...))] [(unify ([(t_1 -> t_2) = (t_3 -> t_4)] c ...)) (unify ([t_1 = t_3] [t_2 = t_4] c ...))] [(unify ([(ref t_1) = (ref t_2)] c ...)) (unify ([t_1 = t_2] c ...))] [(unify (c ...)) #f]) (define-metafunction Λs/ty unify-var : x t C -> σ or #f [(unify-var x t (c ...)) ([x = t] [x_0 = t_0] ...) (where ([x_0 = t_0] ...) (unify (subst-constraints (c ...) x t))) (side-condition (not (member (term x) (term (TV t)))))] [(unify-var x t C) #f]) (define-metafunction Λs/ty TV : t -> (x ...) [(TV num) ()] [(TV bool) ()] [(TV x) (x)] [(TV (t_1 -> t_2)) ,(remove-duplicates (term (x_0 ... x_i ...))) (where (x_0 ...) (TV t_1)) (where (x_i ...) (TV t_2))] [(TV (ref t)) (TV t)]) (define-metafunction Λs/ty union-constraints : C ... -> C [(union-constraints C ...) ,(apply append (term (C ...)))]) (define-metafunction Λs/ty subst-constraints : C x t -> C [(subst-constraints ([t_1 = t_2] ...) x t) ([(subst-type t_1 x t) = (subst-type t_2 x t)] ...)]) (define-metafunction Λs/ty subst-type : t x t -> t [(subst-type num x t) num] [(subst-type bool x t) bool] [(subst-type x x t) t] [(subst-type x_1 x_2 t) x_1] [(subst-type (t_1 -> t_2) x t) ((subst-type t_1 x t) -> (subst-type t_2 x t))] [(subst-type (ref t_1) x t) (ref (subst-type t_1 x t))]) (define-metafunction Λs/ty apply-subst : σ t -> t [(apply-subst () t) t] [(apply-subst ([x_0 = t_0] [x_1 = t_1] ...) t) (apply-subst ([x_1 = t_1] ...) (subst-type t x_0 t_0))]) (define-metafunction Λs/ty fresh-TV : X -> (x X) [(fresh-TV (x_0 ...)) (x_i (x_0 ... x_i)) (where x_i ,(variable-not-in (term (x_0 ...)) 'x1))])
false
f2d45d7884a1621f66ed8b3cd1b0651147e90e65
799b5de27cebaa6eaa49ff982110d59bbd6c6693
/soft-contract/test/programs/safe/games/snake-files/handlers.rkt
218aaa7f09b0c3450fe18016517ab72bb2b83af4
[ "MIT" ]
permissive
philnguyen/soft-contract
263efdbc9ca2f35234b03f0d99233a66accda78b
13e7d99e061509f0a45605508dd1a27a51f4648e
refs/heads/master
2021-07-11T03:45:31.435966
2021-04-07T06:06:25
2021-04-07T06:08:24
17,326,137
33
7
MIT
2021-02-19T08:15:35
2014-03-01T22:48:46
Racket
UTF-8
Racket
false
false
962
rkt
handlers.rkt
#lang racket/base (require racket/contract "data.rkt") (define g5 (lambda (x) (world? x))) (define g6 '#t) (define g7 '#f) (define g8 (or/c g6 g7)) (define g9 string?) (define generated-contract3 (-> g5 (values g8))) (define generated-contract4 (-> g5 g9 (values g5))) (provide (contract-out (handle-key generated-contract4) (game-over? generated-contract3))) (module require/contracts racket/base (require racket/contract) (provide (contract-out))) (require 'require/contracts) (require "data-adaptor.rkt") (require "collide.rkt") (require "motion.rkt") (define (handle-key w ke) (cond ((equal? ke "w") (world-change-dir w "up")) ((equal? ke "s") (world-change-dir w "down")) ((equal? ke "a") (world-change-dir w "left")) ((equal? ke "d") (world-change-dir w "right")) (else w))) (define (game-over? w) (or (snake-wall-collide? (world-snake w)) (snake-self-collide? (world-snake w)))) (provide)
false
bb5755595b806453b3ba9c00c4bef12d2a9a928d
0ad0076e542f597f37c3c793f6e7596c1bda045b
/ts-tactics/tactics/mechanics/groups.rkt
680b63ae691c05bc82937d9992eb412354cb168c
[]
no_license
thoughtstem/TS-Coach
0b57afbd52520e84f958f7c7e3e131f2521a8e9f
ceb23c8b58909c0d5f80b6341538c330a3543d4a
refs/heads/master
2020-09-08T04:27:37.804781
2020-02-14T20:09:22
2020-02-14T20:09:22
221,011,766
0
0
null
null
null
null
UTF-8
Racket
false
false
1,051
rkt
groups.rkt
#lang racket (provide tap-heads random-members-of not-in group-fully-contains? select-secret-subgroup) (require "../base/base.rkt" "./basic-things.rkt" "./basic-actions.rkt") (define (group-fully-contains? group other-group ) (predicate (~a "contains all of the people in [" other-group "]") group)) (define (tap-heads group) (directed-action (body-action "tap the heads") "of" group)) (define (random-members-of group) (object-part "random members of" group)) (define (not-in group) (object-part "people not in" group)) (define (select-secret-subgroup sub-group-name (main-group team) (selector coach)) (list (instruction main-group (close-eyes)) (instruction selector (announce (~a "If I tap your head, you are in the group: " sub-group-name))) (instruction selector (tap-heads (random-members-of main-group)))))
false
4ba28e11de11364c01c70ba6372748d4067fc180
5782922f05d284501e109c3bd2a2e4b1627041b9
/codes/racket/racket-book-master/docs/02-basics/index.scrbl
bea3ffcbd94523796a8f6386b5412a9aff5dbf3a
[]
no_license
R4mble/Notes
428e660369ac6dc01aadc355bf31257ce83a47cb
5bec0504d7ee3e5ef7bffbc80d50cdddfda607e6
refs/heads/master
2022-12-11T12:31:00.955534
2019-09-23T08:46:01
2019-09-23T08:46:01
192,352,520
0
0
null
2022-12-11T03:48:32
2019-06-17T13:28:24
JavaScript
UTF-8
Racket
false
false
370
scrbl
index.scrbl
#lang scribble/doc @(require (for-label racket) scribble/manual "../../util/common.rkt") @title[#:tag "basics"]{Racket语言概要} @table-of-contents[] @; ------------------------------------------------- @include-section["01-grammar.scrbl"] @include-section["02-data.scrbl"] @include-section["03-module.scrbl"] @include-section["04-oop.scrbl"]
false
aa435b680600d5358bfd4801ab0bca61ec532ba0
9087d2111939c23b5371bc1ab1d5f9e01567f4a6
/match.rkt
e3d1a78dac45f62b7a15815993e46bacd603c1b2
[]
no_license
gfbee/markup
20cbc1a4c6f6a6db75e3824ab79d2de02353ce21
11fe7887ef360c5063eacec042378a91b5a5baf1
refs/heads/master
2021-08-23T06:13:14.989265
2017-12-03T20:44:03
2017-12-03T20:44:03
112,955,682
0
0
null
null
null
null
UTF-8
Racket
false
false
898
rkt
match.rkt
#lang racket #| Match |# (provide cat) #| Catamorphism : auto-recursing pattern. (cat pat:id f:expr) Define ‘(pat . <pattern>)’ as a new match pattern that first calls ‘f’ and then matches the result against the remaining ‘<pattern>’. In that form, it's not limited to recursive calls. |# (require (for-syntax syntax/parse)) (define-syntax cat (syntax-parser [(_ pat:id f:expr) #'(define-match-expander pat (syntax-parser [(_ . pattern) #'(app f . pattern)]) (syntax-parser [(_ . sub-forms) #'(f . sub-forms)]))])) (module+ test (require rackunit) (define (f e) (cat ↓ f) (cat S sqr) (cat neg -) (match e [`(sqr ,(↓ (S e))) e] [`(+ ,(↓ e) ...) (apply + e)] [`(- ,(↓ e)) (neg e)] [_ e])) (check-equal? (f '(- (sqr (+ 1 2 3)))) (- (sqr (+ 1 2 3)))))
true