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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
835d5afe08894fe25f2fa8806b75372d0671dce3 | 806a2b5ff3250b40aeca25efe813691d7c6dceab | /Code/Common/port-alphabetic.rkt | 32496502556254f0f3270c75be503f5130a43a81 | [
"Apache-2.0"
]
| permissive | mfelleisen/Tsuro | 6c52368c9bc3372bcec3d18c7adcfe23b504e5ae | 100e7d51f04ab39b7a316da878d2843a7f06163d | refs/heads/master | 2020-06-30T02:14:39.518776 | 2019-12-29T00:39:34 | 2019-12-29T00:39:34 | 200,689,777 | 1 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 2,158 | rkt | port-alphabetic.rkt | #lang racket
;; represents ports as letters A ...
(require Tsuro/Code/Common/port-signature) (provide-port-signature)
(require SwDev/Lib/pattern-matching)
(require SwDev/Lib/should-be-racket)
(module+ test
(require rackunit))
(define PORTS (build-list PORT# (λ (i) (integer->char (+ 65 i)))))
(define (port? x) (member x PORTS))
(define (index->port i) (list-ref PORTS i))
(define (port->index p) (- 8 (length (memq p PORTS))))
(define (<-port p q) (> (length (memq p PORTS)) (length (memq q PORTS))))
(define (port->direction p)
(case (port->index p)
[(0 1) 'NORTH]
[(2 3) 'EAST]
[(4 5) 'SOUTH]
[(6 7) 'WEST]))
(define (90degrees x)
(define new-ports (append (drop PORTS 2) (take PORTS 2)))
(define rotation (map list PORTS new-ports))
(second (assq x rotation)))
(define (facing-port p)
(index->port
(case (port->index p)
[(0) 5]
[(1) 4]
[(2) 7]
[(3) 6]
[(4) 1]
[(5) 0]
[(6) 3]
[(7) 2])))
(def/mp port-pat
(_ p) #'(? (λ (s) (and (string? s) (= (string-length s) 1) (port? (string-ref s 0)))) p))
(define (port->jsexpr p)
(string p))
(define (jsexpr->port pj)
(and* (string? pj) (= (string-length pj) 1) (string-ref pj 0) => (λ (p) (and (port? p) p))))
(module+ test
(check-equal? (jsexpr->port (port->jsexpr #\A)) #\A)
(check-equal? (jsexpr->port "A") #\A)
(check-equal? (jsexpr->port "X") #false))
#; {[[Listof Port] -> [Listof Port]] Port -> [Listof Port]}
(define ((port-traversal-starting-at direction) p)
(let loop ([my-ports (direction PORTS)][post '()])
(cond
[(equal? (first my-ports) p) (append my-ports (reverse post))]
[else (loop (rest my-ports) (cons (first my-ports) post))])))
(define ports-clockwise (port-traversal-starting-at values))
(define ports-counterclockwise (port-traversal-starting-at reverse))
(module+ test
(define ports-clockwise PORTS)
(define ports-counterclockwise (cons (first PORTS) (reverse (rest PORTS))))
(check-equal? ((port-traversal-starting-at values) #\A) ports-clockwise)
(check-equal? ((port-traversal-starting-at reverse) #\A) ports-counterclockwise))
| false |
9be14278f4ec2821c40f96ad98a8bdbbd3ef8516 | b996d458a2d96643176465220596c8b747e43b65 | /how-to-code-simple-data/problem-bank/how-to-design-functions/boxify.rkt | 4423bbfff3f2a827e310d3d5dd4b150dcbb73847 | [
"MIT"
]
| permissive | codingram/courses | 99286fb9550e65c6047ebd3e95eea3b5816da2e0 | 9ed3362f78a226911b71969768ba80fb1be07dea | refs/heads/master | 2023-03-21T18:46:43.393303 | 2021-03-17T13:51:52 | 2021-03-17T13:51:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,228 | rkt | boxify.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-beginner-reader.ss" "lang")((modname boxify) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f () #f)))
;; =====================================================================
;; PROBLEM:
;;
;; Use the How to Design Functions (HtDF) recipe to design a function that consumes an image,
;; and appears to put a box around it. Note that you can do this by creating an "outline"
;; rectangle that is bigger than the image, and then using overlay to put it on top of the image.
;;
;; Remember, when we say DESIGN, we mean follow the recipe.
;;
;; Leave behind commented out versions of the stub and template.
;; =====================================================================
(require 2htdp/image)
;; Image -> Image
;; Put the given image in a box whose size is greater than the input image
;(define (boxify img) img) ;stub
(define (boxify img)
(overlay img (rectangle (image-width img) (image-height img) "outline" "yellow")))
(boxify (ellipse 60 30 "solid" "red"))
| false |
030e26646ba81c8364807cbf378b718f8ad0eca9 | 3c8f0893f3f123a77442eba85e3712f945e9fd49 | /info.rkt | c36550b1c96ef0637517696b2b8e37bfe0196e90 | [
"Apache-2.0",
"MIT"
]
| permissive | mfelleisen/7GUI | b3ba683841476588beb658450bc7d07043ff6296 | ef86aeb1bfac0c098322242116a053fcd280c110 | refs/heads/master | 2022-02-04T08:06:39.903030 | 2022-01-20T17:04:46 | 2022-01-20T17:40:39 | 189,009,701 | 60 | 11 | null | 2022-01-20T17:40:40 | 2019-05-28T10:49:37 | Racket | UTF-8 | Racket | false | false | 354 | rkt | info.rkt | #lang info
(define collection "7GUI")
(define deps
'(
"base"
"racket/gui"
"gui-lib"
"at-exp-lib"
"htdp-lib"
"typed-racket-lib"
"typed-racket-more"
"rackunit-lib"
"gregor"
"rackunit-lib"
))
;; https://github.com/jsmaniac/type-expander
(define pkg-desc "Sources for 7GUI")
(define pkg-authors '(matthias))
| false |
e1f2f4a4c0a79f0ee0a98c5e6c8684a003457e32 | 6aff2404a2898b2587c286d7e1dcce8b2c2499f3 | /rosette/doc/guide/scribble/reflection/value-reflection.scrbl | 52e40428407c82f7c53484a379c2550c4d28deda | [
"BSD-2-Clause"
]
| permissive | juliandolby/rosette | ebb7d6d395548896a4c9e634759aba41ff2cfcad | 2fd19c740e2cbcddad5813ec74d2008696c1c041 | refs/heads/master | 2020-12-25T21:13:06.244958 | 2016-12-17T16:14:43 | 2016-12-17T16:14:43 | 45,522,216 | 0 | 1 | NOASSERTION | 2018-12-07T23:07:21 | 2015-11-04T07:23:40 | Racket | UTF-8 | Racket | false | false | 11,360 | scrbl | value-reflection.scrbl | #lang scribble/manual
@(require (for-label
rosette/solver/solver rosette/solver/solution rosette/query/query
rosette/base/form/define rosette/query/eval (only-in rosette/base/base bitvector ~>)
rosette/base/core/term rosette/base/core/type rosette/base/core/union
(only-in rosette/base/core/bool asserts)
rosette/base/core/forall rosette/lib/lift ;rosette/lib/match
(only-in rosette/base/core/safe assert)
racket)
;(except-in racket match match* match-lambda))
scribble/core scribble/html-properties scribble/eval racket/sandbox
"../util/lifted.rkt")
@(define rosette-eval (rosette-evaluator))
@title[#:tag "sec:value-reflection"]{Reflecting on Symbolic Values}
There are two kinds of symbolic values in Rosette: symbolic terms and
symbolic unions. A Rosette program can inspect the representation of
both kinds of values. This is useful for @tech[#:key "lifted constructs"]{lifting} additional
(unlifted) Racket procedures to work on symbolic values, and for
controlling the performance of Rosette's symbolic evaluator.
@section[#:tag "sec:symbolic-terms"]{Symbolic Terms}
@declare-exporting[rosette/base/core/term #:use-sources (rosette/base/core/type rosette/base/core/term)]
A @deftech{symbolic term} is either a symbolic constant, created via
@seclink["sec:symbolic-constants"]{@code{define-symbolic[*]}},
or a symbolic expression, produced by a lifted operator.
Terms are strongly typed, and always belong to a @tech{solvable type}.
Symbolic values of all other (@tech[#:key "unsolvable type"]{unsolvable}) types take the form of
@seclink["sec:symbolic-unions"]{symbolic unions}.
@deftogether[(@defproc[(term? [v any/c]) boolean?]
@defproc[(expression? [v any/c]) boolean?]
@defproc[(constant? [v any/c]) boolean?])]{
Predicates for recognizing symbolic terms, expressions, and constants, respectively.
@examples[#:eval rosette-eval
(code:line (define-symbolic x integer?) (code:comment "constant"))
(code:line (define e (+ x 1)) (code:comment "expression"))
(list (term? x) (term? e))
(list (constant? x) (constant? e))
(list (expression? x) (expression? e))
(term? 1)]
}
@(rosette-eval '(require racket/match))
@deftogether[(@defform[(term content type)]
@defform[(expression op child ...+)]
@defform[(constant id type)])]{
Pattern matching forms for symbolic terms, expressions, and constants, respectively.
@examples[#:eval rosette-eval
(code:line (define-symbolic x integer?) (code:comment "constant"))
(code:line (define e (+ x 1)) (code:comment "expression"))
(match x
[(constant identifier type) (list identifier type)])
(match x
[(term content type) (list content type)])
(match e
[(expression op child ...) (cons op child)])
(match e
[(term content type) (list content type)])]}
@defproc*[([(type-of [v any/c] ...+) type?])]{
Returns the most specific @racket[type?] predicate that accepts all of the given values.
@examples[#:eval rosette-eval
(define-symbolic x integer?)
(type-of x)
(type-of (+ x 1))
(type-of x 3.14)
(type-of #t)
(type-of #t 1)]
}
@defproc[(type? [v any/c]) boolean?]{
Returns true when given a predicate that recognizes a @seclink["ch:built-in-datatypes"]{built-in} or
a @seclink["ch:programmer-defined-datatypes"]{structure} type. Otherwise returns false.
@examples[#:eval rosette-eval
(type? integer?)
(type? boolean?)
(type? list?)
(struct circle (radius))
(type? circle?)
(type? any/c)
(type? 1)]
}
@defproc[(solvable? [v any/c]) boolean?]{
Returns true if @racket[v] is a type predicate for a @tech{solvable type}.
@examples[#:eval rosette-eval
(solvable? boolean?)
(solvable? integer?)
(solvable? real?)
(solvable? (~> (bitvector 3) (bitvector 4)))
(solvable? list?)
(struct circle (radius))
(solvable? circle?)
(solvable? any/c)
]}
@section[#:tag "sec:symbolic-unions"]{Symbolic Unions}
@declare-exporting[rosette/base/core/union #:use-sources (rosette/base/core/union)]
Rosette represents symbolic values of an @tech[#:key "unsolvable type"]{unsolvable type}
(e.g., @racket[list?]) as @deftech[#:key "symbolic union"]{symbolic unions}.
A symbolic union is a set of two or more @deftech[#:key "guarded value"]{guarded values}.
A guarded value, in turn, combines a guard, which is a symbolic @racket[boolean?] term,
and a (non-union) value. Rosette's symbolic evaluator guarantees that the guards in
a symbolic union are disjoint: only one of them can ever be true. For example, the
symbolic vector @racket[s] defined below is represented as a symbolic union of two guarded vectors:
@interaction[#:eval rosette-eval
(define-symbolic b boolean?)
(define v (vector 1))
(define w (vector 2 3))
(define s (if b v w))
s
(type-of s)
(eq? s v)
(eq? s w)]
The values that appear in a union are themselves never unions. They may, however, contain unions.
They may also belong to several different types. In that case, the type of the union is the most
specific @racket[type?] predicate that accepts all members of the union.
This will always be an unsolvable type---possibly @racket[any/c], the most general unsolvable type.
@interaction[#:eval rosette-eval
(define-symbolic b boolean?)
(define-symbolic c boolean?)
(define v (if c "c" 0))
(define u (if b (vector v) 4))
u
(type-of u)]
Symbolic unions are recognized by the @racket[union?] predicate, and Rosette programs can inspect
union contents using the @racket[union-contents] procedure. Applications may use @racket[union?] and
@racket[union-contents] directly to @tech[#:key "lifted constructs"]{lift} Racket code to work on
symbolic unions, but Rosette also provides dedicated lifting constructs, described in
the @seclink["sec:lifting-constructs"]{next section},
to make this process easier and the resulting lifted code more efficient.
@defproc[(union? [v any/c]) boolean?]{
Returns true if the given value is a symbolic union. Otherwise returns false.
@examples[#:eval rosette-eval
(define-symbolic b boolean?)
(define u (if b '(1 2) 3))
(union? u)
(union? b)]
}
@defproc[(union-contents [u union?]) (listof (cons/c (and/c boolean? term?) (not/c union?)))]{
Returns a list of guard-value pairs contained in the given union.
@examples[#:eval rosette-eval
(define-symbolic b boolean?)
(define v (if b '(1 2) 3))
(union-contents v)]
}
@section[#:tag "sec:lifting-constructs"]{Symbolic Lifting}
Rosette provides two main constructs for @tech[#:key "lifted constructs"]{lifting}
Racket code to work on symbolic unions: @racket[for/all] and @racket[define-lift].
The @racket[for/all] construct is built into the language. It is used internally by Rosette
to lift operations on @tech[#:key "unsolvable type"]{unsolvable types}. The
@racket[define-lift] construct is syntactic sugar implemented on top of
@racket[for/all]; it is exported by the @racket[rosette/lib/lift] library.
@declare-exporting[rosette/base/core/forall rosette/lib/lift
#:use-sources (rosette/base/core/forall rosette/lib/lift)]
@defform[(for/all ([id val-expr]) body)]{
If @racket[val-expr] evaluates to a value that is not a @racket[union?],
@racket[for/all] behaves like a @racket[let] expression. It binds
@racket[id] to the value and evaluates the @racket[body] with that binding.
If @racket[val-expr] evaluates to a symbolic union, then for each
guard-value pair @racket['(#, @var[g] . #, @var[v])] in that union, @racket[for/all]
binds @racket[id] to @var[v] and evaluates the @racket[body]
under the guard @var[g]. The results of the individual evaluations of
the @racket[body] are re-assembled into a single (concrete or symbolic)
output value, which is the result of the @racket[for/all] expression.
If the evaluation of @racket[body] executes any procedure @var[p] that is neither
implemented in nor provided by the @racket[rosette/safe] language, then @var[p]
@bold{must be pure}---it may not perform any observable side-effects,
such as writes to memory or disk. There is no purity requirement for using procedures
that are implemented in or exported by @racket[rosette/safe] (e.g., @racket[vector-set!]).
The @racket[for/all] construct is useful both for lifting pure Racket procedures to work
on symbolic unions and for controling the performance of Rosette's symbolic evaluation.
The following examples show both use cases:
@itemlist[
@item{@emph{Lifting a pure Racket procedure
to work on symbolic unions.}
@defs+int[#:eval rosette-eval
[(require (only-in racket [string-length racket/string-length]))
(define (string-length value)
(for/all ([str value])
(racket/string-length str)))]
(string-length "abababa")
(string-length 3)
(define-symbolic b boolean?)
(string-length (if b "a" "abababa"))
(string-length (if b "a" 3))
(asserts)
(string-length (if b 3 #f))]}
@item{@emph{Making symbolic evaluation more efficient.} @(rosette-eval '(clear-asserts!))
@defs+int[#:eval rosette-eval
[(require (only-in racket build-list))
(define limit 1000)
(define (slow xs)
(and (= (length xs) limit) (car (map add1 xs))))
(define (fast xs)
(for/all ([xs xs]) (slow xs)))
(define ys (build-list limit identity))
(define-symbolic a boolean?)
(define xs (if a ys (cdr ys)))]
(time (slow xs))
(time (fast xs))]
Note that the above transformation will not always lead to better performance.
Experimenting is the best way to determine whether and where to insert
performance-guiding @racket[for/all]s.
}]}
@defform[(for*/all ([id val-expr] ...+) body)]{
Expands to a nested use of @racket[for/all],
just like @racket[let*] expands to a nested use of @racket[let].}
@defmodule[rosette/lib/lift #:no-declare]
@defform*[((define-lift id [(arg-type ...) racket-procedure-id])
(define-lift id [arg-type racket-procedure-id]))]{
Binds @racket[id] to a procedure that lifts @racket[racket-procedure-id] to
work on symbolic unions. In particular, the lifted procedure will work when given
either a concrete Racket value or a symbolic union contains a guarded value of
a suitable type, as given by @racket[arg-type]. Note that the lifted procedure
will not work on symbolic terms, only on symbolic unions or concrete values. The
Racket procedure bound to @racket[racket-procedure-id] must be pure (see @racket[for/all]).
When @racket[racket-procedure-id] takes a specific number of arguments,
the first form should be used, and the type of each argument should be given.
When @racket[racket-procedure-id] takes a variable number of arguments,
the type of all arguments should be given. Note that the second form omits
the parentheses around the argument type to indicate a variable number of
arguments, just like Racket's @racket[case-lambda] form.
The following example shows how to lift Racket's @racket[string-length] procedure
to work on symbolic unions that contain strings.
@defs+int[#:eval rosette-eval
[(require rosette/lib/lift)
(require (only-in racket [string-length racket/string-length] string?))
(define-lift string-length [(string?) racket/string-length])]
(string-length "abababa")
(define-symbolic b boolean?)
(string-length (if b "a" "abababa"))
(string-length (if b "a" 3))
(asserts)]
}
@(kill-evaluator rosette-eval) | false |
8784dea2602bf21ad809d4434b303208afa02d13 | 925045585defcc1f71ee90cf04efb841d46e14ef | /racket/pan/conditional+tag/utils.rkt | 5aace2a5c385ba0696038036f9e3b2a21a45b6a1 | []
| no_license | rcherrueau/APE | db095c3b6fc43776d1421a16090937a49847bdd9 | a881df53edf84d93ec0a377c2ed02c0d754f7041 | refs/heads/master | 2022-07-19T18:01:41.848025 | 2021-12-19T17:30:23 | 2021-12-19T17:30:23 | 11,178,796 | 4 | 1 | null | 2022-07-07T21:11:07 | 2013-07-04T14:12:52 | Racket | UTF-8 | Racket | false | false | 6,617 | rkt | utils.rkt | #lang typed/racket/base
(require (for-syntax racket/base
racket/path
syntax/parse
racket/syntax
racket/string)
racket/file
racket/function
racket/port
racket/provide-syntax
racket/provide
racket/require-syntax
racket/string
typed/rackunit
typed/racket/unsafe
(only-in "ast.rkt" Exp)
)
(require/typed racket/list
;; Coerce `flatten` to only return Listof String (instead of Listof
;; Any). This helps type-checking the `unlines` function.
[flatten (Any -> (Listof String))])
(provide unlines ∘ thunk
primitive-op-id? unique-ids?
;; Rackunit
test-ast test-asm test-compile
test-not-compile)
;; Macros defined in typed modules may not be used in untyped modules.
;; A workaround for such macros is provided them with `unsafe-provide`
;; which exports the macro without any contracts generated. See,
;; https://docs.racket-lang.org/ts-guide/typed-untyped-interaction.html#%28part._.Using_.Typed_.Code_in_.Untyped_.Code%29
;; https://groups.google.com/d/msg/racket-users/eowl6RpdDwY/1wrCluDcAwAJ
(unsafe-provide snoc extends-lang)
;; Haskell unlines. See,
;; https://hackage.haskell.org/package/base-4.11.0.0/docs/Prelude.html#v:unlines
(: unlines ((U String (Listof String))* -> String))
(define (unlines . words)
(string-join (flatten words) (string #\newline) #:after-last (string #\newline)))
;; Like `snoc`, but generalizes it to more than one list.
(define-syntax-rule (snoc AS ... A)
(append AS ... (list A)))
;; Alias for compose1 (digraph C-k Ob)
(: ∘ (All (a b c) ((b → c) (a → b) → (a → c))))
(define ∘ compose1)
;; Check whether all identifier are unique, or not.
(: unique-ids? ((Syntaxof (Listof Identifier)) → Boolean))
(define (unique-ids? ids)
(not (check-duplicate-identifier (syntax->list ids))))
;; Ensure the identifier refers to a primitive operation.
(: primitive-op-id? ((Syntaxof Any) → Boolean))
(define (primitive-op-id? id)
(and (member (syntax->datum id) '(add1 sub1)) #t))
;; The extends-lang macro: reuse all from a `base-lang` except
;; `compile-exp` and excluded macro. Imports functions from
;; `base-lang` with prefix "base-lang:". Provides functions from
;; `base-lang` without prefix.
(define-for-syntax (extract-file-name file)
(define f (if (string? file) file (symbol->string file)))
(path->string (path-replace-suffix (file-name-from-path f) "")))
(define-require-syntax (require-lang stx)
(syntax-case stx ()
[(_ BASE-LANG)
(let* ([pre (extract-file-name (syntax->datum #'BASE-LANG))]
[pre: (format-id #'BASE-LANG "~a:" pre)])
;; Import with prefix to avoid collusion
#`(prefix-in #,pre: BASE-LANG))]))
(define-provide-syntax (provide-lang stx)
(syntax-parse stx
[(_ BASE-LANG (~optional (~seq EXCLUDE ...)))
(let* ([lang-pre (extract-file-name (syntax->datum #'BASE-LANG))]
[lang-pre: (format "~a:" lang-pre)]
[make-pre:id (λ (id) (format-id #'BASE-LANG "~a:~a" lang-pre id))]
[pre:excludes (map make-pre:id
(cons "compile-exp"
(syntax->list #'(EXCLUDE ...))))])
#`(filtered-out
;; Remove prefix from the name
(λ (name) (string-replace name #,lang-pre: ""))
;; Also remove `compile-exp` and EXCLUDE ...
(except-out (all-from-out BASE-LANG)
#,@pre:excludes)))]))
(define-syntax (extends-lang stx)
(syntax-parse stx
[(_ BASE-LANG)
#'(begin
(require (require-lang BASE-LANG))
(provide (provide-lang BASE-LANG)))]
[(_ BASE-LANG #:override MACRO-NAME ...)
#'(begin
(require (require-lang BASE-LANG))
(provide (provide-lang BASE-LANG MACRO-NAME ...)))]))
;; Rackunit utilites
;; Produces a temporary source program file with lang `lang.rkt` and
;; source `prog-src` and returns its location.
(: make-prog-file (String String -> Path))
(define (make-prog-file prog-src [template "rackettmp~a"])
(define lang-abs-path (path->string (path->complete-path "lang.rkt")))
(define prog-file (make-temporary-file template))
(call-with-output-file prog-file #:exists 'replace
(λ ([out : Output-Port])
(displayln (format "#lang s-exp (file \"~a\")" lang-abs-path) out)
(displayln prog-src out)))
prog-file)
;; Flushes standard output to nowhere
(define-syntax-rule (with-ouput-to-nowhere PROC)
(let ([out (open-output-nowhere)])
(define result
(parameterize ([current-output-port out])
PROC))
(unless (port-closed? out)
(close-output-port out))
result))
;; Tests that program `prog-src` produced the `expected-ast` with lang
;; `lang.rkt`.
(: test-ast (String String (Exp Number) -> Any))
(define (test-ast test-name prog-src expected-ast)
(define prog-file
(make-prog-file prog-src
(string-append "ast-" test-name "-" "~a")))
(define ast
(with-ouput-to-nowhere
(dynamic-require prog-file 'tagged-ast)))
(test-equal? test-name ast expected-ast))
;; Tests that program `prog-src` produced the `expected-asm` with lang
;; `lang.rkt`.
(: test-asm (String String Any #;ASM -> Any))
(define (test-asm test-name prog-src expected-asm)
(define prog-file
(make-prog-file prog-src
(string-append "asm-" test-name "-" "~a")))
(define asm
(with-ouput-to-nowhere
(dynamic-require prog-file 'asm)))
(test-equal? test-name asm expected-asm))
;; Tests that program `prog-src` compiles to `expected-result` with
;; the lang `lang.rkt`.
(: test-compile (String String String -> Any))
(define (test-compile test-name prog-src expected-result)
(define prog-file
(make-prog-file prog-src
(string-append "compile-" test-name "-" "~a")))
(define result
(with-output-to-string
(λ () (dynamic-require prog-file #f))))
(test-equal? test-name result expected-result))
;; Tests that the program `prog-src` fails with error message
;; `exn-predicate` during a compilation under `lang.rkt`.
(: test-not-compile (->* (String String) ((U (Any -> Boolean) Regexp)) Any))
(define (test-not-compile test-name prog-src
[exn-predicate exn:fail:syntax?])
(define prog-file
(make-prog-file prog-src
(string-append "compile-" test-name "-" "~a")))
(test-exn test-name exn-predicate (λ () (dynamic-require prog-file #f))))
| true |
9c6f19f5338f16d0ed636b01ab4769dc87685a45 | 2bb711eecf3d1844eb209c39e71dea21c9c13f5c | /test/unbound/bottlenecks/sum_upto3.rkt | 42ba290d46d9a0a0daa52842ca7c81ef9e4fb3ae | [
"BSD-2-Clause"
]
| permissive | dvvrd/rosette | 861b0c4d1430a02ffe26c6db63fd45c3be4f04ba | 82468bf97d65bde9795d82599e89b516819a648a | refs/heads/master | 2021-01-11T12:26:01.125551 | 2017-01-25T22:24:27 | 2017-01-25T22:24:37 | 76,679,540 | 2 | 0 | null | 2016-12-16T19:23:08 | 2016-12-16T19:23:07 | null | UTF-8 | Racket | false | false | 1,471 | rkt | sum_upto3.rkt | #lang rosette/unbound
(current-bitwidth #f)
(dbg-level 0)
(ite-compactification #f)
(define-symbolic x1 x2 x3 x4 integer?)
(define/unbound (f1 i n) (~> integer? integer? integer?)
(if (< i n) (+ i (f1 (+ i 1) n)) 0))
(define/unbound (f2 i n1 n2 n3 n) (~> integer? integer? integer? integer? integer? integer?)
(define x (if (and (>= i 0) (< i n1)) i 0))
(if (< i n) (+ x (f2 (+ i 1) n1 n2 n3 n)) 0))
(define/unbound (f3 i n1 n2 n3 n) (~> integer? integer? integer? integer? integer? integer?)
(define x (if (and (>= i n1) (< i n2)) i 0))
(if (< i n) (+ x (f3 (+ i 1) n1 n2 n3 n)) 0))
(define/unbound (f4 i n1 n2 n3 n) (~> integer? integer? integer? integer? integer? integer?)
(define x (if (and (>= i n2) (< i n3)) i 0))
(if (< i n) (+ x (f4 (+ i 1) n1 n2 n3 n)) 0))
(define/unbound (f5 i n1 n2 n3 n) (~> integer? integer? integer? integer? integer? integer?)
(define x (if (and (>= i n3) (< i n)) i 0))
(if (< i n) (+ x (f5 (+ i 1) n1 n2 n3 n)) 0))
(time
(verify/unbound #:assume (assert (and (< x1 x2) (< x2 x3) (< x3 x4)))
#:guarantee (assert (let ([m1 (f1 0 x4)]
[m2 (f2 0 x1 x2 x3 x4)]
[m3 (f3 0 x1 x2 x3 x4)]
[m4 (f4 0 x1 x2 x3 x4)]
[m5 (f5 0 x1 x2 x3 x4)])
(= m1 (+ m2 m3 m4 m5)))))) | false |
c7e8d080ec37200e9a5dfd01906f6bca3fc756fb | 515692af05d21827532cbc04b24f7ff071a373e7 | /letrec.rkt | e500421e6c230fdd4dbc4f481ec8016db75b4b89 | []
| no_license | tcstory/tspl4 | edcd5cf490232a759bcb379213ec0f78cfb813ed | 0740221b0d7abb4bdca7f48569f6c36197aed0e4 | refs/heads/master | 2020-04-26T08:42:21.064659 | 2019-03-23T12:11:55 | 2019-03-23T12:11:55 | 173,431,729 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 28 | rkt | letrec.rkt | #lang r6rs
(import (rnrs))
| false |
82b299da9c1f49a3346e27da9213cdb8e829a318 | 24d1a79102839205087966654e33c603bcc41b37 | /ds-store/blueboxes.rktd | d0b9dedddd89b8d969bc13e11dbb4c8746ad307a | []
| no_license | Racket-zh/docs | 4a091e51701325910b93c2cc5f818487e2bca4be | 741be262485a783e66b8e6d1b8a1114f7799e59e | refs/heads/master | 2020-03-19T12:14:21.965606 | 2018-09-10T01:12:30 | 2018-09-10T01:12:54 | 136,505,509 | 5 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 2,184 | rktd | blueboxes.rktd | 1193
((3) 0 () 4 ((q lib "ds-store/main.rkt") (q 621 . 9) (q 227 . 8) (q 520 . 5)) () (h ! (equal) ((c def c (c (? . 0) q iloc?)) c (? . 3)) ((c def c (c (? . 0) q ds?)) c (? . 2)) ((c def c (c (? . 0) q struct:fwind)) c (? . 1)) ((c def c (c (? . 0) q read-ds-store)) q (0 . 4)) ((c def c (c (? . 0) q fwind-r)) c (? . 1)) ((c def c (c (? . 0) q write-ds-store)) q (127 . 4)) ((c def c (c (? . 0) q fwind-b)) c (? . 1)) ((c def c (c (? . 0) q struct:ds)) c (? . 2)) ((c def c (c (? . 0) q ds-data)) c (? . 2)) ((c def c (c (? . 0) q fwind)) c (? . 1)) ((c def c (c (? . 0) q fwind-sideview?)) c (? . 1)) ((c def c (c (? . 0) q ds-path)) c (? . 2)) ((c def c (c (? . 0) q fwind-mode)) c (? . 1)) ((c def c (c (? . 0) q struct:iloc)) c (? . 3)) ((c def c (c (? . 0) q iloc-x)) c (? . 3)) ((c def c (c (? . 0) q fwind-t)) c (? . 1)) ((c def c (c (? . 0) q iloc)) c (? . 3)) ((c def c (c (? . 0) q ds-type)) c (? . 2)) ((c def c (c (? . 0) q iloc-y)) c (? . 3)) ((c def c (c (? . 0) q ds-id)) c (? . 2)) ((c def c (c (? . 0) q fwind-l)) c (? . 1)) ((q def ((lib "ds-store/alias.rkt") path->alias-bytes)) q (837 . 4)) ((c def c (c (? . 0) q fwind?)) c (? . 1)) ((c def c (c (? . 0) q ds)) c (? . 2))))
函数
(read-ds-store path [#:verbose verbose?]) -> (listof ds?)
path : path-string?
verbose? : any/c = #f
函数
(write-ds-store path dses) -> void?
path : path-string?
dses : (listof ds?)
struct
(struct ds (path id type data)
#:transparent)
path : (or/c path-element? 'same)
id : symbol?
type : (or/c 'long 'shor 'bool 'type 'ustr 'blob)
data : (or/c exact-integer? boolean? symbol? string?
bytes? iloc? fwind?)
struct
(struct iloc (x y)
#:transparent)
x : exact-integer?
y : exact-integer?
struct
(struct fwind (t l b r mode sideview?)
#:transparent)
t : exact-integer?
l : exact-integer?
b : exact-integer?
r : exact-integer?
mode : symbol?
sideview? : any/c
函数
(path->alias-bytes path [#:wrt wrt-dir]) -> (or/c bytes? #f)
path : path-string?
wrt-dir : (or/c #f path-string?) = #f
| false |
f71de6a0108d26a9089b2ccae42924e4940f26f3 | 76df16d6c3760cb415f1294caee997cc4736e09b | /rosette-benchmarks-4/rtr/benchmarks/geokit/translated3.rkt | af9b9440e9463649617270d7a91f34c4cab1fe9e | [
"MIT"
]
| permissive | uw-unsat/leanette-popl22-artifact | 70409d9cbd8921d794d27b7992bf1d9a4087e9fe | 80fea2519e61b45a283fbf7903acdf6d5528dbe7 | refs/heads/master | 2023-04-15T21:00:49.670873 | 2021-11-16T04:37:11 | 2021-11-16T04:37:11 | 414,331,908 | 6 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 1,911 | rkt | translated3.rkt | #lang rosette
(require "../../verif_libraries/ivl.rkt")
(require racket/include)(require racket/undefined)
(define USE_BV false)
(define BVSIZE 6)(include (file "../../verif_libraries/integer.rkt"))
(include (file "../../verif_libraries/hash.rkt"))
(include (file "../../verif_libraries/bool.rkt"))
(include (file "../../verif_libraries/array.rkt"))
(include (file "../../verif_libraries/float.rkt"))
(include (file "../../verif_libraries/fixnum.rkt"))
(include (file "../../verif_libraries/helper.rkt"))
(include (file "../../verif_libraries/ids.rkt"))
(include (file "../../verif_libraries/basicobject.rkt"))
(include (file "../../verif_libraries/kernel.rkt"))
;;; OBJECT STRUCT:
(struct object ([classid][objectid] [size #:auto #:mutable] [contents #:auto #:mutable] [vec #:auto #:mutable] [id #:auto #:mutable] [value #:auto #:mutable] [@sw #:auto #:mutable] [@ne #:auto #:mutable] [@lng #:auto #:mutable] ) #:transparent #:auto-value (void))
;;; ARGUMENT DEFINITIONS:
; Initialize symbolic inputs to method
; Initialize struct self of type Geokit::GeoLoc
(define self
(let ([self (object 10 (new-obj-id))])
self))
;;; FUNCTION DEFINITIONS:
(define (Geokit::GeoLoc_inst_province self #:block [BLK (void)])
(let ()
(return (let ([self self])(begin(define tmpname0 (int (Geokit::GeoLoc_inst_state (object-objectid self) )))tmpname0)))))
(define-symbolic Geokit::GeoLoc_inst_state (~> integer? integer?))
;;;RETURN VALUE:
(define b (Geokit::GeoLoc_inst_province self ))
;;;VERIFIED ASSERTION:
(verify #:assume (assert (and )) #:guarantee (assert (unless (stuck? b) (Integer_inst_== b (let ([self self])(begin(define tmpname1 (int (Geokit::GeoLoc_inst_state (object-objectid self) )))tmpname1)) ))))
#|
Class Name->Class ID
Hash->0
Class->1
Array->2
Fixnum->3
Bignum->3
Integer->3
Float->4
Boolean->5
Geokit::Bounds->6
Geokit::LatLng->7
::Geokit::Bounds->8
RDL::Verify->9
Geokit::GeoLoc->10
|#
| false |
b497432cd8e4ee2d3642da15f179eea53153aec9 | a603e664c2c064e126438c01d69b6360e565bfe3 | /examples/pycketlite.rkt | 5e5454219ddae100243985e1977e52a9e1b21c88 | []
| no_license | btlachance/jam | 8a508bca8b12a56ecdf4ade103f6e70af53c5052 | ea09d26a6551f3020d61805c98fa3a7ba58ad3db | refs/heads/master | 2021-06-25T22:03:55.156040 | 2019-10-07T19:13:06 | 2019-10-07T19:13:06 | 159,725,493 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 33,994 | rkt | pycketlite.rkt | #lang racket
(require jam)
(provide pl)
(define-language pl
#:data ([env (environment x loc)]
[store (store loc V)]
[loc (location)]
[mvec (mutable-sequence V)]
[ivec (immutable-sequence V)]
[file (file)])
(P ::= (t ...))
(t ::= e (define-values (x ...) e))
(e ::= x l (quote c) (e e ...) (if e e e)
(let-values ([(x ...) e] ...) e e ...)
(letrec-values ([(x ...) e] ...) e e ...)
(begin e e ...)
(set! x e))
(l ::= (lambda (x ...) e e ...)
(lambda x e e ...)
(lambda (x ...) (dot x) e e ...))
(x y z ::= variable-not-otherwise-mentioned)
(c ::= integer real boolean string (#%s string))
;; XXX If locations aren't values, then it's tricky to implement
;; things like eq? using location-equality: Since the interface to
;; eq? is just like any other function, the argument expressions are
;; evaluted to values. So the value for a cons would have to contain
;; its location if we want eq? to be able to take a value and
;; somehow know its location.
;;
;; Alternatively, if expressions evaluate to locations, then even
;; things like an integer constant get stored in a location. That's
;; consistent at least with Racket's documentation on variables and
;; locations.
;;
;; We could also split the difference (at the cost of some
;; complexity) and have certain expressions evaluate to locations
;; and others evaluate just to their value.
(V ::= {env l} c mvec ivec file (cont k)
#%+ #%- #%* #%/ #%zero? #%exact-integer? #%inexact? #%= #%<
#%inexact->exact #%exact->inexact #%number?
#%sin #%quotient #%remainder
(#%cons V V) #%null #%cons #%car #%cdr #%null? #%pair? #%list
#%apply #%void #%values #%call-with-values
#%vector #%vector-immutable #%vector-ref #%vector-length #%vector-set!
#%vector?
#%current-command-line-arguments
#%boolean? #%not
#%string? #%string-append #%string=?
#%raise ;; XXX FYFF gives a semantics where raise isn't prim
#%write-string #%current-output-port #%current-error-port
#%number->string
#%symbol? #%symbol=? #%symbol->string
#%current-inexact-milliseconds
#%call-with-current-continuation)
(k ::= k1 k*)
(k1 ::= (appk env (e ...) (V ...) k) (ifk env e e k) (setk x env k))
;; It's a little funky that we keep the store also in topk but it's
;; an artifact of how we initialize the machine. An alternative
;; would be an initial state like (store env (topk P)). Which gives
;; me an idea that defk could be changed to (defk (x ...) P)
(k* ::= (topk env store P) (defk (x ...) env P) (cwvk V k)
;; env environment for remaining RHS
;; (x ...) variables the current RHS results will be bound to
;; ([(x ...) e] ...) remaining variables to bind/RHS to evaluate
;; ((x V) ...) variables/values for evaluated RHS so far
;; (e e ...) body expressions
;;
;; (We could keep the list of variables/values as two
;; lists instead of one zipped one if we had an explicit
;; way to check that #values returned to the continuation
;; matched #variables for the current RHS)
(letk env (x ...) ([(x ...) e] ...) ((x V) ...) (e e ...) k)
;; Like letk but RHS and the body are evaluated in the
;; same environment, and values are set in that
;; environment once they're available, so no need for a
;; separate list of variables/values so far
(letreck env (x ...) ([(x ...) e] ...) (e e ...) k)
(begink env (e e ...) k)))
(module+ test
(current-test-language pl))
(define-metafunction pl
[(init-env-store (x_toplevel ...))
(env store)
(where ((x ...) (V ...))
(( + - * / zero? exact-integer? inexact? = <
inexact->exact exact->inexact number?
sin quotient remainder
cons null car cdr null? pair? list
apply void values call-with-values
vector vector-immutable vector-ref vector-length vector-set!
vector?
current-command-line-arguments
boolean? not
string? string-append string=?
raise
write-string current-output-port current-error-port
number->string
symbol? symbol=? symbol->string
current-inexact-milliseconds
call-with-current-continuation)
(#%+ #%- #%* #%/ #%zero? #%exact-integer? #%inexact? #%= #%<
#%inexact->exact #%exact->inexact #%number?
#%sin #%quotient #%remainder
#%cons #%null #%car #%cdr #%null? #%pair? #%list
#%apply #%void #%values #%call-with-values
#%vector #%vector-immutable #%vector-ref #%vector-length #%vector-set!
#%vector?
#%current-command-line-arguments
#%boolean? #%not
#%string? #%string-append #%string=?
#%raise
#%write-string #%current-output-port #%current-error-port
#%number->string
#%symbol? #%symbol=? #%symbol->string
#%current-inexact-milliseconds
#%call-with-current-continuation)))
(where store (store-empty))
(where (loc ...) (fresh-distinct-locations store (x ...)))
(where env (env-extend (env-empty) (x ...) (loc ...)))
(where () (store-extend* store (loc ...) (V ...)))
(where (loc ...) (fresh-distinct-locations store (x_toplevel ...)))
(where env (env-extend env (x_toplevel ...) (loc ...)))])
(define-metafunction pl
[(toplevel-names ())
()]
[(toplevel-names (e t ...))
(toplevel-names (t ...))]
[(toplevel-names ((define-values (x ...) _) t ...))
(append (x ...) (toplevel-names (t ...)))])
(define-metafunction pl
[(flatten-vars ())
()]
[(flatten-vars (() (x ...) ...))
(flatten-vars ((x ...) ...))]
[(flatten-vars ((x_0 x_rest ...) (x ...) ...))
(x_0 x_flattened ...)
(where (x_flattened ...) (flatten-vars ((x_rest ...) (x ...) ...)))])
(define-metafunction pl
[(append () ((name any _) ...))
(any ...)]
[(append ((name any_first _) (name any_rest _) ...)
((name any _) ...))
(any_first appended ...)
(where ((name appended _) ...) (append (any_rest ...) (any ...)))])
(define-metafunction pl
[(load-pl string_path)
P
(where P (system*/json-term "/usr/bin/env" "racket" "/Users/blachance/projects/jam/examples/pycketlite-util.rkt" string_path))])
(module+ test
(test-equal (flatten-vars ((x y))) (x y))
(test-equal (flatten-vars ((x y) () (z))) (x y z))
(test-equal (append () (#t)) (#t))
(test-equal (append (1 2 3) (#t #f #t)) (1 2 3 #t #f #t))
(test-equal (append (1 #t 2) ()) (1 #t 2))
(test-not-equal (load-pl "/Users/blachance/projects/jam/examples/racket/predefined.rkt") ()))
(define-metafunction pl
[(apply-op #%+ (integer_1 integer_2))
(integer-add integer_1 integer_2)]
[(apply-op #%- (integer_1 integer_2))
(integer-subtract integer_1 integer_2)]
[(apply-op #%* (integer_1 integer_2))
(integer-multiply integer_1 integer_2)]
;; XXX Really need rationals here
[(apply-op #%/ (integer_1 integer_2))
(integer-divide integer_1 integer_2)]
[(apply-op #%+ (real_1 real_2))
(real-add real_1 real_2)]
[(apply-op #%- (real_1 real_2))
(real-subtract real_1 real_2)]
[(apply-op #%* (real_1 real_2))
(real-multiply real_1 real_2)]
[(apply-op #%/ (real_1 real_2))
(real-divide real_1 real_2)]
[(apply-op #%exact-integer? (integer))
#t]
[(apply-op #%exact-integer? (V))
#f]
[(apply-op #%inexact? (real))
#t]
[(apply-op #%inexact? (integer))
#f]
[(apply-op #%zero? (0))
#t]
[(apply-op #%zero? (0.0))
#t]
[(apply-op #%zero? (-0.0))
#t]
[(apply-op #%zero? (V))
#f]
[(apply-op #%number? (integer))
#t]
[(apply-op #%number? (real))
#t]
[(apply-op #%number? (V))
#f]
[(apply-op #%= (integer))
#t]
[(apply-op #%= (real))
#t]
[(apply-op #%= (integer_1 integer_2))
(integer-= integer_1 integer_2)]
[(apply-op #%= (real_1 real_2))
(real-= real_1 real_2)]
[(apply-op #%= (integer real))
(apply-op #%= (integer (real->integer real)))]
[(apply-op #%= (real integer))
(apply-op #%= ((real->integer real) integer))]
[(apply-op #%< (integer_1 integer_2))
(integer-< integer_1 integer_2)]
[(apply-op #%< (real_1 real_2))
(real-< real_1 real_2)]
[(apply-op #%< (integer real))
(real-< (integer->real integer) real)]
[(apply-op #%< (real integer))
(real-< real (integer->real integer))]
[(apply-op #%exact->inexact (integer))
(integer->real integer)]
[(apply-op #%exact->inexact (real))
real]
;; XXX This isn't quite right since real->integer truncates,
;; but until I have rationals it's the best I can do
[(apply-op #%inexact->exact (real))
(real->integer real)]
[(apply-op #%inexact->exact (integer))
integer]
[(apply-op #%sin (real))
(real-sin real)]
[(apply-op #%sin (integer))
0
(where 0 integer)]
[(apply-op #%sin (integer))
(real-sin (integer->real integer))]
[(apply-op #%quotient (integer_1 integer_2))
integer_q
(where (integer_q _) (integer-divmod integer_1 integer_2))]
[(apply-op #%remainder (integer_1 integer_2))
integer_r
(where (_ integer_r) (integer-divmod integer_1 integer_2))]
[(apply-op #%quotient (real_1 real_2))
real_q
(where (real_q _) (real-divmod real_1 real_2))]
[(apply-op #%remainder (real_1 real_2))
real_r
(where (_ real_r) (real-divmod real_1 real_2))]
[(apply-op #%cons (V_1 V_2))
(#%cons V_1 V_2)]
[(apply-op #%car ((#%cons V _)))
V]
[(apply-op #%cdr ((#%cons _ V)))
V]
[(apply-op #%null? (#%null))
#t]
[(apply-op #%null? (V))
#f]
[(apply-op #%pair? ((#%cons _ _)))
#t]
[(apply-op #%pair? (V))
#f]
[(apply-op #%list ())
#%null]
[(apply-op #%list (V V_rest ...))
(#%cons V (apply-op #%list (V_rest ...)))]
[(apply-op #%void (V ...))
#%void]
[(apply-op #%vector (V ...))
(mvec-of-elements V ...)]
[(apply-op #%vector-immutable (V ...))
(ivec-of-elements V ...)]
[(apply-op #%vector-ref (mvec integer))
(mvec-element-at mvec integer)]
[(apply-op #%vector-ref (ivec integer))
(ivec-element-at ivec integer)]
[(apply-op #%vector-length (mvec))
(mvec-length mvec)]
[(apply-op #%vector-length (ivec))
(ivec-length ivec)]
[(apply-op #%vector-set! (mvec integer V))
#%void
(where () (mvec-set mvec integer V))]
[(apply-op #%vector? (mvec))
#t]
[(apply-op #%vector? (ivec))
#t]
[(apply-op #%vector? (V))
#f]
[(apply-op #%current-command-line-arguments ())
(ivec-of-elements)]
[(apply-op #%boolean? (boolean))
#t]
[(apply-op #%boolean? (V))
#f]
[(apply-op #%not (#f))
#t]
[(apply-op #%not (V))
#f]
[(apply-op #%string? (string))
#t]
[(apply-op #%string? (V))
#f]
[(apply-op #%string-append ()) ""]
[(apply-op #%string-append (string_0 string ...))
(string-append string_0 (apply-op #%string-append (string ...)))]
[(apply-op #%string=? (string_1 string_2))
(string-= string_1 string_2)]
[(apply-op #%current-output-port ())
(file-stdout)]
[(apply-op #%current-error-port ())
(file-stderr)]
[(apply-op #%write-string (string file))
(string-length string)
(where () (file-write file string))]
[(apply-op #%write-string (string))
(apply-op #%write-string (string (file-stdout)))]
[(apply-op #%number->string (integer))
(integer-string integer)]
[(apply-op #%number->string (real))
(real-string real)]
[(apply-op #%symbol? ((#%s string)))
#t]
[(apply-op #%symbol? (V))
#f]
[(apply-op #%symbol=? (((name _1 #%s) string_1) ((name _2 #%s) string_2)))
(string-= string_1 string_2)]
[(apply-op #%symbol->string ((#%s string)))
string]
[(apply-op #%current-inexact-milliseconds ())
(integer->real (clock-milliseconds))])
(define-metafunction pl
[(prefix-and-rest () (V_rest ...))
(() (apply-op #%list (V_rest ...)))]
[(prefix-and-rest (x y ...) (V_0 V ...))
((V_0 V_prefix ...) V_rest)
(where ((V_prefix ...) V_rest) (prefix-and-rest (y ...) (V ...)))])
(define-metafunction pl
[(begink* env () k) k]
[(begink* env (e e_rest ...) k) (begink env (e e_rest ...) k)])
(define-metafunction pl
[(fresh-distinct-locations store ()) ()]
[(fresh-distinct-locations store ((name _1 _) (name _2 _) ...))
((store-fresh-location store) loc ...)
(where (loc ...) (fresh-distinct-locations store (_2 ...)))])
(define-metafunction pl
[(store-extend* store () ()) ()]
[(store-extend* store (loc loc_rest ...) (V V_rest ...))
(store-extend* store (loc_rest ...) (V_rest ...))
(where () (store-extend store loc V))])
(define-transition pl
step
[--> (topk env store (t t_rest ...))
(t (topk env store (t_rest ...)))]
[--> (e (topk env store P))
(e env store (topk env store P))]
[--> ((define-values (x ...) e) (topk env store P))
(e env store (defk (x ...) env P))]
[--> (x env store k)
(V store k)
(where V (store-dereference store (env-lookup env x)))]
[--> (l env store k)
({env l} store k)]
[--> ((quote c) env store k)
(c store k)]
[--> ((e e_args ...) env store k)
(e env store (appk env (e_args ...) () k))]
[--> ((if e_test e_then e_else) env store k)
(e_test env store (ifk env e_then e_else k))]
[--> ((let-values () e e_rest ...) env store k)
(e env store (begink* env (e_rest ...) k))]
[--> ((let-values ([(x_first ...) e_first] [(x_rest ...) e_rest] ...) e_body ...) env store k)
(e_first env store (letk env (x_first ...) ([(x_rest ...) e_rest] ...)
() (e_body ...) k))]
[--> ((letrec-values () e e_rest ...) env store k)
(e env store (begink* env (e_rest ...) k))]
[--> ((letrec-values ([(x ...) e] ...) e_body ...) env store k)
(e_first env_rec store (letreck env_rec (x_first ...) ([(x_rest ...) e_rest] ...) (e_body ...) k))
(where ([(x_first ...) e_first] [(x_rest ...) e_rest] ...) ([(x ...) e] ...))
(where (x_vars ...) (flatten-vars ((x ...) ...)))
(where (loc ...) (fresh-distinct-locations store (x_vars ...)))
(where env_rec (env-extend env (x_vars ...) (loc ...)))]
[--> ((begin e e_rest ...) env store k)
(e env store (begink* env (e_rest ...) k))]
[--> ((set! x e) env store k)
(e env store (setk x env k))]
[--> (V store k*)
((#%values V) store k*)]
[--> ((#%values V) store k1)
(V store k1)]
[--> ((#%values V ...) store (topk env_top _ P))
(topk env_top store P)]
[--> ((#%values V ...) store (defk (x ...) env_top P))
(topk env_top store P)
(where (loc ...) ((env-lookup env_top x) ...))
(where () (store-extend* store (loc ...) (V ...)))]
[--> (V_0 store (appk env (e_arg e_args ...) (V ...) k))
(e_arg env store (appk env (e_args ...) (V_0 V ...) k))]
[--> (V_0 store (appk _ () (V ...) k))
(e env_e store (begink* env_e (e_rest ...) k))
(where ({env_op (lambda (x ...) e e_rest ...)} V ...) (reverse (V_0 V ...)))
(where (loc ...) (fresh-distinct-locations store (x ...)))
(where env_e (env-extend env_op (x ...) (loc ...)))
(where () (store-extend* store (loc ...) (V ...)))]
[--> (V_0 store (appk _ () (V ...) k))
(e env_e store (begink* env_e (e_rest ...) k))
(where ({env_op (lambda x e e_rest ...)} V ...) (reverse (V_0 V ...)))
(where (loc) (fresh-distinct-locations store (x)))
(where env_e (env-extend env_op (x) (loc)))
(where () (store-extend store loc (apply-op #%list (V ...))))]
[--> (V_0 store (appk _ () (V ...) k))
(e env_e store (begink* env_e (e_rest ...) k))
(where ({env_op (lambda (x ...) (dot y) e e_rest ...)} V ...) (reverse (V_0 V ...)))
(where ((V_prefix ...) V_rest) (prefix-and-rest (x ...) (V ...)))
(where (x_args ...) (append (x ...) (y)))
(where (loc ...) (fresh-distinct-locations store (x_args ...)))
(where env_e (env-extend env_op
(x_args ...)
(loc ...)))
(where () (store-extend* store (loc ...) (append (V_prefix ...) (V_rest))))]
[--> (V_0 store (appk env () (V ...) k))
(V_arglast store (appk env () (V_argother ...) k))
(where (#%apply V_fun V_args ...) (reverse (V ...)))
(where #%null V_0)
(where (V_arglast V_argother ...) (reverse (V_fun V_args ...)))]
[--> (V_0 store (appk env () (V ...) k))
(V_cdr store (appk env () (V_car V ...) k))
(where (#%apply V_fun V_args ...) (reverse (V ...)))
(where (#%cons V_car V_cdr) V_0)]
[--> (V_0 store (appk _ () (V ...) k))
((#%values V_vals ...) store k)
(where (#%values V_vals ...) (reverse (V_0 V ...)))]
[--> (V_0 store (appk _ () (V ...) k))
(e env store (begink* env (e_rest ...) (cwvk V_consumer k)))
(where (#%call-with-values V_producer V_consumer) (reverse (V_0 V ...)))
;; XXX This isn't exactly what Racket does; if the producer has
;; a 0-arg body then the 0-arg body is used. Otherwise an error
;; is raised. What I currently have rules out things like
;; (lambda x e e_rest ...)
(where {env (lambda () e e_rest ...)} V_producer)]
;; XXX this isn't quite right in terms of top-level begin
;; expressions but it's enough for fibc
[--> (V store (appk env () (#%call-with-current-continuation) k))
((cont k) store (appk env () (V) k))]
[--> (V_0 store (appk _ () (V ...) _))
((#%values V_rest ...) store k)
(where ((cont k) V_rest ...) (reverse (V_0 V ...)))]
[--> ((#%values V ...) store (cwvk V_consumer k))
(V_lastval store (appk (env-empty) () (V ...) k))
(where (V_lastval V ...) (reverse (V_consumer V ...)))]
[--> (V store (appk _ () (#%raise) k))
(topk (env-empty) store ())]
[--> (V_0 store (appk _ () (V ...) k))
(V_result store k)
(where (V_op V ...) (reverse (V_0 V ...)))
(where V_result (apply-op V_op (V ...)))]
[--> ((#%values V_new ...) store (letk env_e (x_new ...) (name remaining _)
(name sofar _) (e_body ...) k))
(e env_e store (letk env_e (x ...) ([(x_rest ...) e_rest] ...)
(append ((x_new V_new) ...) ((x_sofar V_sofar) ...))
(e_body ...) k))
(where ([(x ...) e] [(x_rest ...) e_rest] ...) remaining)
(where ((x_sofar V_sofar) ...) sofar)]
[--> ((#%values V_new ...) store (letk env (x_new ...) ()
((x_sofar V_sofar) ...) (e e_rest ...) k))
(e env_body store (begink* env_body (e_rest ...) k))
(where (loc ...) (fresh-distinct-locations store (append (x_new ...) (x_sofar ...))))
(where env_body (env-extend env
(append (x_new ...) (x_sofar ...))
(loc ...)))
(where () (store-extend* store (loc ...) (append (V_new ...) (V_sofar ...))))]
[--> ((#%values V_new ...) store (letreck env_rec (x_new ...)
(name remaining _)
(e_body ...) k))
(e env_rec store (letreck env_rec (x ...)
([(x_rest ...) e_rest] ...)
(e_body ...) k))
(where ([(x ...) e] [(x_rest ...) e_rest] ...) remaining)
(where (loc ...) ((env-lookup env_rec x_new) ...))
(where () (store-extend* store (loc ...) (V_new ...)))]
[--> ((#%values V_new ...) store (letreck env_rec (x_new ...) () (e e_rest ...) k))
(e env_rec store (begink* env_rec (e_rest ...) k))
(where (loc ...) ((env-lookup env_rec x_new) ...))
(where () (store-extend* store (loc ...) (V_new ...)))]
[--> ((#%values V ...) store (begink env (e e_rest ...) k))
(e env store (begink* env (e_rest ...) k))]
[--> (#f store (ifk env _ e_else k))
(e_else env store k)]
[--> (V store (ifk env e_then _ k))
(e_then env store k)]
[--> (V store (setk x env k))
(#%void store k)
(where loc (env-lookup env x))
(where () (store-update-location store loc V))])
(define-evaluator pl
eval
#:load [--> P_user (topk env_init store_init P)
(where P_predef (load-pl "/Users/blachance/projects/jam/examples/racket/predefined.rkt"))
(where P (append P_predef P_user))
(where (env_init store_init) (init-env-store (toplevel-names P)))]
#:unload [--> (topk _ _ ()) ()] ;; XXX maybe call an exit metafunction
;; here, indicating a succesful
;; termination?
#:transition step
#:control-string [(e _ _ _) e])
(define-metafunction pl
[(unload {env l}) l]
[(unload V) V])
;; For now, eval-e is only really useful for internal testing. I don't
;; know/have a good way to set things up to use it with the --repl
;; flag while ensuring that it's built; right now the --build flag
;; only controls building a single evaluator, and I don't know how to
;; generalize that to work with the expression evaluator and the
;; --repl flag. Adding an argument to --build sounds annoying...
(define-evaluator pl
eval-e
#:load [--> e (topk env_init store_init (e))
(where (env_init store_init) (init-env-store ()))]
#:unload [--> ((#%values V) _ (topk _ _ ())) (unload V)]
#:transition step
#:control-string [(e _ _ _) e])
(module+ test
(test-equal (run-eval-e '5) 5)
(test-equal (run-eval-e '#f) #f)
(test-equal (run-eval-e (+ '1 '2)) 3)
(test-equal (run-eval-e (- '2 '1)) 1)
(test-equal (run-eval-e (lambda (x) (x x))) (lambda (x) (x x)))
(test-equal (run-eval-e (lambda y y)) (lambda y y))
(test-equal (run-eval-e ((lambda (x) x) '10)) 10)
(test-equal (run-eval-e ((lambda (x y) x) '10 '11)) 10)
(test-equal (run-eval-e ((lambda (x y) y) '10 '11)) 11)
(test-equal (run-eval-e ((lambda (n) (+ '1 n)) '10)) 11)
(test-equal (run-eval-e (((lambda (x) (lambda (y) x)) '5) '6))
5)
(test-equal (run-eval-e ((lambda (f x) (f x)) zero? '0)) #t)
(test-equal (run-eval-e ((lambda (f x) (f x)) (lambda (n) (+ n '1)) '0)) 1)
(test-equal (run-eval-e
((lambda (fib) (fib fib '8))
(lambda (rec n)
(if (zero? n)
'0
(if (zero? (- n '1))
'1
(+ (rec rec (- n '1))
(rec rec (- n '2))))))))
21)
(test-equal (run-eval-e
((lambda (fact) (fact fact '10))
(lambda (rec n)
(if (zero? n)
'1
(* n (rec rec (- n '1)))))))
3628800)
(test-equal (run-eval
((define-values (id) (lambda (x) x))
(+ (id '0) (id '1))
(+ '3 '4)
(+ '5 '6)))
())
(test-equal (run-eval
((define-values (fact)
(lambda (n)
(if (zero? n)
'1
(* n (fact (- n '1))))))
(fact '10)))
())
(test-equal (run-eval
((define-values (fib)
(lambda (n)
(if (zero? n)
'0
(if (zero? (- n '1))
'1
(+ (fib (- n '1))
(fib (- n '2)))))))
(fib '8)))
())
(test-equal (run-eval
((define-values (even?)
(lambda (n)
(if (zero? n)
'#t
(odd? (- n '1)))))
(define-values (odd?)
(lambda (n)
(if (zero? n)
'#f
(even? (- n '1)))))
(even? '10)))
())
(test-equal (run-eval
((values)
(values '#t)
(+ '1 (values '2))
(+ (values '1) '2)
(values (+ '1 '2) '3)))
())
(test-equal (run-eval
((define-values () (values))
(define-values (x) (values '1))
(define-values (y z) (values '2 '3))
(+ x (+ y z))))
())
(test-equal (run-eval-e (null? null)) #t)
(test-equal (run-eval-e (null? (cons '1 '2))) #f)
(test-equal (run-eval-e (null? '#t)) #f)
(test-equal (run-eval-e (pair? (cons '3 '4))) #t)
(test-equal (run-eval-e (pair? null)) #f)
(test-equal (run-eval-e (pair? '#t)) #f)
(test-equal (run-eval-e (list)) #%null)
(test-equal (run-eval-e (list '1 '2 '3))
(#%cons 1 (#%cons 2 (#%cons 3 #%null))))
(test-equal (run-eval-e ((lambda x x))) #%null)
(test-equal (run-eval-e ((lambda x x) '1 '#f '3))
(#%cons 1 (#%cons #f (#%cons 3 #%null))))
(test-equal (run-eval-e ((lambda (x1 x2) (dot x3) (cons x2 (cons x1 x3)))
'5 '6 '7 '8 '9))
(#%cons 6 (#%cons 5 (#%cons 7 (#%cons 8 (#%cons 9 #%null))))))
(test-equal (run-eval-e (apply (lambda (x y) (+ x y)) '1 (list '2)))
3)
(test-equal (run-eval-e (apply (lambda (x y) (+ x y)) (list '3 '4)))
7)
(test-equal (run-eval-e (apply + '5 '6 null)) 11)
(test-equal (run-eval-e (apply (lambda () '0) null)) 0)
(test-equal (run-eval-e (void)) #%void)
(test-equal (run-eval-e (void void)) #%void)
(test-equal (run-eval-e (void '1 '2 '3)) #%void)
(test-equal (run-eval-e (call-with-values (lambda () (values))
(lambda () '42)))
42)
(test-equal (run-eval-e (call-with-values (lambda () '1)
(lambda (x) (+ x '42))))
43)
(test-equal (run-eval-e (call-with-values (lambda () (values '2))
(lambda (x) (* x '21))))
42)
(test-equal (run-eval-e (call-with-values (lambda () (values '1 '2))
(lambda (x y) (+ x y))))
3)
(test-equal (run-eval-e (let-values () '0)) 0)
(test-equal (run-eval-e (let-values ([() (values)]) '42)) 42)
(test-equal (run-eval-e (let-values ([(x) '10]) (+ x '1))) 11)
(test-equal (run-eval-e (let-values ([(x) '1]
[(y z) (values '2 '3)])
(- x (+ y z))))
-4)
(test-equal (run-eval-e (let-values ([(y z) (values '2 '3)]
[(x) '1])
(- x (+ y z))))
-4)
(test-equal (run-eval-e (letrec-values () '0)) 0)
(test-equal (run-eval-e (letrec-values ([() (values)]) '1)) 1)
(test-equal (run-eval-e
(letrec-values
([(even?)
(lambda (n)
(if (zero? n)
'#t
(odd? (- n '1))))]
[(odd?)
(lambda (n)
(if (zero? n)
'#f
(even? (- n '1))))])
(even? '10)))
#t)
(test-equal (run-eval-e
(letrec-values
([(even? odd?)
(values
(lambda (n)
(if (zero? n)
'#t
(odd? (- n '1))))
(lambda (n)
(if (zero? n)
'#f
(even? (- n '1)))))])
(even? '10)))
#t)
(test-equal (run-eval-e '"") "")
(test-equal (run-eval-e '"hello") "hello")
(test-equal (run-eval-e (string? '"")) #t)
(test-equal (run-eval-e (string? '"cheese")) #t)
(test-equal (run-eval-e (string? '#t)) #f)
(test-equal (run-eval-e (string? '0)) #f)
;; XXX In the test form (string-append) parses as a metafunction
;; application, not as an object-language application expression. I
;; don't yet have a good way to write terms in jam that won't clash
;; with the specification. So, don't try to test string-append with
;; test-equal.
;; (test-equal (run-eval-e (string-append)) "")
(test-equal (run-eval-e (vector-length (current-command-line-arguments))) 0)
(test-equal (run-eval-e (vector? (vector))) #t)
(test-equal (run-eval-e (vector? (vector-immutable))) #t)
(test-equal (run-eval-e (vector? '1)) #f)
(test-equal (run-eval-e (vector? '"hello")) #f)
(test-equal (run-eval-e (begin '1)) 1)
(test-equal (run-eval-e (begin '1 '2)) 2)
(test-equal (run-eval-e (begin '1 '2 '3)) 3)
(test-equal (run-eval-e (begin (values) '4)) 4)
(test-equal (run-eval
('1
(raise '#f)
((lambda (x) (x x)) (lambda (x) (x x)))))
())
(test-equal (run-eval-e (let-values ([(x) '0])
(if (< x '0)
(begin
(set! x (+ x '1))
x)
x)))
0)
(test-equal (run-eval-e (let-values ([(x) '0])
(set! x (+ '1 x))
(set! x (+ '1 x))
x))
2)
(test-equal (run-eval-e (let-values ([(x) '0])
(let-values ([(inc)
(lambda ()
(set! x (+ '1 x))
x)])
(inc)
(inc)
(inc))))
3)
(test-equal (run-eval-e (call-with-current-continuation
(lambda (k) (/ '0 (k '1)))))
1)
(jam-test))
(module+ main
(require syntax/location "pycketlite-util.rkt")
(define dest (build-path (syntax-source-directory #'here) "pycketlite"))
(define interpreter-mode (make-parameter 'plain))
(define run (make-parameter #f))
(define build? (make-parameter #f))
(command-line
#:program "pycketlite"
#:once-any
["--translated" "Use the translated interpreter"
(interpreter-mode 'translate)]
["--plain" "Use the untranslated interpreter (default)"
(interpreter-mode 'plain)]
#:once-any
["--repl" "Start a REPL where each input is run as a separate program"
(run 'repl)]
["--stdin" "Read a single program from stdin, and run it"
(run 'stdin)]
["--racket" path "Translate the Racket path to pycketlite and run it"
(run path)]
#:once-each
["--build" "Build the interpreter"
(build? #t)])
(unless (xor (build?) (run))
(raise-user-error
'pycketlite
"Must do exactly one of run or build"))
(define translate? (equal? (interpreter-mode) 'translate))
(when (build?)
(jam-build pl eval
#:dest/delete dest
#:translate? translate?))
(match (run)
['repl
(jam-run pl eval
#:path dest
#:translate? translate?)]
['stdin
(parameterize ([read-accept-reader #f]
[read-accept-lang #f])
(define input (read))
(unless (eof-object? input)
(parameterize ([current-input-port (open-input-string (~a input))])
(jam-run pl eval
#:path dest
#:translate? translate?
#:prompt? #f))))]
[(? path-string? p)
(define forms (path->pycketlite p))
(parameterize ([current-input-port (open-input-string (~s forms))])
(jam-run pl eval
#:path dest
#:translate? translate?
#:prompt? #f))]
[#f (void)]))
(module+ test
(require syntax/location rackunit)
(define racket (find-executable-path "racket"))
(define (get-expect p)
(define source (open-input-file p))
(define expect/default "()\n")
(define expect
(match (read-string 2 source)
["#;" ;quote-terminated comment for racket-mode highlighting"
(match (read source)
[`(testout ,(? string? expect)) expect]
[d
(eprintf "unexpected datum in file ~a; got ~s\n" p d)
expect/default])]
[_
expect/default]))
(close-input-port source)
expect)
(define base (syntax-source-directory #'here))
(parameterize ([current-output-port (open-output-nowhere)])
(void (system* racket (quote-source-file) "--build")))
(for ([p (directory-list (build-path base "racket") #:build? #t)]
#:when (path-has-extension? p ".rkt")
#:unless (member (path->string (file-name-from-path p))
'("info.rkt" "predefined.rkt")))
(define out (open-output-string))
(parameterize ([current-output-port out]
[current-error-port out])
(system* racket (quote-source-file) "--racket" p))
(check-equal? (get-output-string out) (get-expect p))))
| false |
f3336b366d74b91f6f34cc21a0fbfacc3a6157dc | bc780b9e770c3abf60533a17261779055d242fc7 | /SimplePlanner/example.rkt | 9818ecfa9f028d5953ca3ac3f641ae646a9d396a | []
| no_license | zussitarze/sandbox | 4d0bd910752c75ed01b784a720ca4c8622c8c93d | 847be7e91b0d32240495cd80d4357761b3a32470 | refs/heads/master | 2021-01-10T21:38:59.647492 | 2014-06-25T19:53:32 | 2014-06-25T19:53:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,525 | rkt | example.rkt | #lang racket
(require "planner.rkt")
(define medieval-domain
(domain (constants (character (knight princess))
(location (castle armory blacksmith river enchanted-forest)))
(actions (move ([c character] [cur location] [to location])
(preconds (adj (cur to) = #t)
(free (c) = #t)
(loc (c) = cur)
(loc (knight) = cur)
(~ loc (dragon) = cur))
(effects (loc (c) <- to)))
(equip-sword ()
(preconds (loc (knight) = blacksmith))
(effects (sword () <- #t)))
(equip-shield ()
(preconds (loc (knight) = armory))
(effects (shield () <- #t)))
(sleigh-dragon ([l location])
(preconds (loc (knight) = l)
(loc (dragon) = l)
(sword () = #t)
(shield () = #t))
(effects (loc (dragon) <- hell)))
(rescue-princess ([l location])
(preconds (loc (knight) = l)
(loc (princess) = l))
(effects (free (princess) <- #t))))))
(define start (state (adj (<=> castle blacksmith))
(adj (<=> castle armory))
(adj (<=> castle river))
(adj (<=> river enchanted-forest))
(free (knight))
(loc (knight) = castle)
(loc (dragon) = river)
(loc (princess) = enchanted-forest)))
(define goal (state (loc (knight) = castle)
(loc (princess) = castle)))
(fwd-search medieval-domain start goal)
#|
'((move knight castle armory)
(equip-shield)
(move knight armory castle)
(move knight castle blacksmith)
(equip-sword)
(move knight blacksmith castle)
(move knight castle river)
(sleigh-dragon river)
(move knight river enchanted-forest)
(rescue-princess enchanted-forest)
(move princess enchanted-forest river)
(move knight enchanted-forest river)
(move princess river castle)
(move knight river castle))
|# | false |
5a39d674d543e65dbe6b83bf5fe534cf31fb14c6 | fc69a32687681f5664f33d360f4062915e1ac136 | /lib/cons.rkt | db4b3853a63885e0ae653f60533d2d6ab140d0b5 | []
| no_license | tov/dssl2 | 3855905061d270a3b5e0105c45c85b0fb5fe325a | e2d03ea0fff61c5e515ecd4bff88608e0439e32a | refs/heads/main | 2023-07-19T22:22:53.869561 | 2023-07-03T15:18:32 | 2023-07-03T15:18:32 | 93,645,003 | 12 | 6 | null | 2021-05-26T16:04:38 | 2017-06-07T14:31:59 | Racket | UTF-8 | Racket | false | false | 6,425 | rkt | cons.rkt | #lang dssl2
# A library of header-free singly-linked lists.
#
# Lists are represented using None and a struct, cons(data, next).
# A _list? is one of:
# - cons(AnyC, _list?)
# - None
def _build_list?():
def Cons_list?(v): return cons?(v) or v is None
return Cons_list?
let _list? = _build_list?()
def _print_as_vec(head, print):
print('[')
if cons?(head):
print('%p', head.data)
head = head.next
while cons?(head):
print(', %p', head.data)
head = head.next
print(']')
struct cons:
let data
let next: _list?
# Builds the Cons singleton struct.
def _build_Cons():
let list? = _list?
def Cons_rev_app(before: list?, acc: list?) -> list?:
while cons?(before):
acc = cons(before.data, acc)
before = before.next
return acc
def Cons_rev(lst: list?) -> list?:
return Cons_rev_app(lst, None)
def Cons_app(before: list?, after: list?) -> list?:
if cons?(before):
return cons(before.data, Cons_app(before.next, after))
else:
return after
def Cons_concat(before: list?, after: list?) -> list?:
if cons?(before):
let current = before
while cons?(current.next):
current = current.next
current.next = after
return before
else:
return after
def Cons_len(lst: list?) -> int?:
let result = 0
while cons?(lst):
lst = lst.next
result = result + 1
return result
def Cons_into_vec(lst: list?, vec: vec?, where: int?) -> NoneC:
while cons?(lst):
vec[where] = lst.data
lst = lst.next
where = where + 1
def Cons_to_vec(lst: list?) -> vec?:
let result = [False; Cons_len(lst)]
Cons_into_vec(lst, result, 0)
return result
def Cons_from_vec(vec: vec?) -> list?:
let result = None
for element in vec:
result = cons(element, result)
return Cons_rev(result)
def Cons_foreach(visit: FunC[AnyC, AnyC], lst: list?) -> NoneC:
while cons?(lst):
visit(lst.data)
lst = lst.next
def Cons_foldr[Y](f: FunC[AnyC, Y, Y], z: Y, lst: list?) -> Y:
if cons?(lst):
return f(lst.data, Cons_foldr(f, z, lst.next))
else:
return z
def Cons_foldl[Y](f: FunC[Y, AnyC, Y], z: Y, lst: list?) -> Y:
Cons_foreach(λ element: z = f(z, element), lst)
return z
def Cons_map(f: FunC[AnyC, AnyC], lst: list?) -> list?:
let result = None
Cons_foreach(λ element: result = cons(f(element), result), lst)
return Cons_rev(result)
def Cons_filter(f: FunC[AnyC, AnyC], lst: list?) -> list?:
let result = None
def each(element):
if f(element):
result = cons(element, result)
Cons_foreach(each, lst)
return Cons_rev(result)
def Cons_andmap(f: FunC[AnyC, AnyC], lst: list?) -> AnyC:
let result = True
while cons?(lst):
result = f(lst.data)
if not result: break
lst = lst.next
return result
def Cons_ormap(f: FunC[AnyC, AnyC], lst: list?) -> AnyC:
let result = False
while cons?(lst):
result = f(lst.data)
if result: break
lst = lst.next
return result
def Cons_sort[T](less_than?: FunC[T, T, AnyC],
lst: Cons_realListC(T)) \
-> list?:
def insert(element, link):
if cons?(link) and less_than?(link.data, element):
return cons(link.data, insert(element, link.next))
else:
return cons(element, link)
def loop(link, acc):
if cons?(link):
return loop(link.next, insert(link.data, acc))
else:
return acc
return loop(lst, None)
def Cons_realListC(CTC: contract?) -> contract?:
let name = 'ListC[%s]'.format(CTC)
def make(pred?):
def list_of_pred?(v):
return list?(v) and Cons_andmap(pred?, v)
return make_contract(name, list_of_pred?, None)
if num?(CTC) or bool?(CTC) or str?(CTC) or char?(CTC):
return make(λ v: v == CTC)
elif flat_contract?(CTC) and proc?(CTC):
return make(CTC)
else:
def prj(blame!, value):
def ListElementC(elt: CTC): return elt
return Cons_map(ListElementC, value)
return make_contract(name, list?, prj)
let Cons_ListC = SquareBracketC('ListC', Cons_realListC)
class Cons_Iterator (ITERATOR):
let _head
def __init__(self, head: _list?):
self._head = head
def iterator(self):
return self
def try_advance(self, visit):
if cons?(self._head):
let element = self._head.data
self._head = self._head.next
visit(element)
return True
else:
return False
def __print__(self, print):
print('#<Cons.Iterator ')
_print_as_vec(self._head, print)
print('>')
struct ConsOperations:
let list?
let ListC
let rev_app
let rev
let app
let concat
let len
let into_vec
let to_vec
let from_vec
let foreach
let foldr
let foldl
let map
let filter
let andmap
let ormap
let sort
let Iterator
let Iterator?
return ConsOperations {
list?: list?,
ListC: Cons_ListC,
rev_app: Cons_rev_app,
rev: Cons_rev,
app: Cons_app,
concat: Cons_concat,
len: Cons_len,
into_vec: Cons_into_vec,
to_vec: Cons_to_vec,
from_vec: Cons_from_vec,
foreach: Cons_foreach,
foldr: Cons_foldr,
foldl: Cons_foldl,
map: Cons_map,
filter: Cons_filter,
andmap: Cons_andmap,
ormap: Cons_ormap,
sort: Cons_sort,
Iterator: Cons_Iterator,
Iterator?: Cons_Iterator?,
}
let Cons = _build_Cons()
| false |
76c8c5bb823dc1ea8ab5a15ec441cf8e9d1db255 | 0d4c2058a9b1e23a2e28cfef0ff32c81f6a34c5c | /echonest/main.rkt | ce37b78aaf4f961a77447db7e128e170c500dc5c | [
"BSD-2-Clause"
]
| permissive | greghendershott/echonest | 9a674a60751d6477db91ad4812ba10e4a69bb7f6 | fd7d6511231bb4304cfd10260825e86ac33c3ddc | refs/heads/master | 2021-01-10T22:00:34.384846 | 2014-02-12T21:47:34 | 2014-02-12T21:47:34 | 12,836,287 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 562 | rkt | main.rkt | #lang racket
(require wffi/client)
(provide (all-defined-out))
(define (read-api-key [file (build-path (find-system-path 'home-dir)
".echonest-api-key")])
(match (file->string file #:mode 'text)
[(pregexp "^\\s*API Key\\s*=\\s*(.*?)\\s*\n+?" (list _ k)) k]
[else (error 'read-api-key "Bad format for ~a" file)]))
(define api-key (make-parameter (read-api-key)))
(define (add-common-parameters d)
(dict-set* d 'api_key (api-key)))
(wffi-define-all "echonest.md" add-common-parameters check-response/json)
| false |
1ac2757fbd481a1563a560678029822d17652368 | dce2cc91b7c1bbd4569b18302737af8072b11c94 | /code/laci/kripke.rkt | ded1b95dd05243e08323ea0245d7c6bdf316c3ca | [
"MIT"
]
| permissive | benknoble/junk-drawer | 42126590c21cdfffd836c40b5e78de9c77a90616 | 4af03c47da24c5275d28143da03a86f0059baf6d | refs/heads/master | 2023-05-13T01:13:49.609283 | 2023-05-03T16:38:33 | 2023-05-03T16:38:33 | 70,744,626 | 2 | 0 | MIT | 2023-05-01T22:00:03 | 2016-10-12T21:49:46 | Java | UTF-8 | Racket | false | false | 6,111 | rkt | kripke.rkt | #lang racket
(module+ test (require rackunit))
;; models
(struct km (root vars children) #:transparent)
;; formulas
(struct conj (left right) #:transparent)
(struct disj (left right) #:transparent)
(struct impl (hyp conc) #:transparent)
(struct bot () #:transparent)
(define (not x) (impl x (bot)))
(define (descendants-contain? v k)
(and (set-member? (km-vars k) v)
(andmap (curry descendants-contain? v)
(km-children k))))
(define/match (valid? k)
[((km _ vars children))
(and (for*/and ([v (in-set vars)]
[c (in-list children)])
(descendants-contain? v c))
(andmap valid? children))])
(module+ test
(check-true
(valid?
(km 'r (set 'A)
(list (km 's (set 'A) empty)
(km 't (set 'A 'B) empty)))))
(check-true
(valid?
(km 'r (set)
(list (km 's (set 'A) empty))))))
(define (descendants-imply? p q k)
(and (if (forced-at? k p) (forced-at? k q) #t)
(andmap (curry descendants-imply? p q)
(km-children k))))
(define (forced-at? k f)
;; #:when (valid? k)
(match-define (km root vars children) k)
(match f
[(? symbol? x) (set-member? vars x)]
[(bot) #f]
[(disj p q) (or (forced-at? k p)
(forced-at? k q))]
[(conj p q) (and (forced-at? k p)
(forced-at? k q))]
[(impl p q)
(descendants-imply? p q k)]))
(module+ test
(let ([k (km 'r (set 'A)
(list (km 's (set 'A) empty)
(km 't (set 'A 'B) empty)))])
(check-true (forced-at? k 'A))
(check-true (forced-at? k (disj 'A 'B)))
(check-false (forced-at? k (impl 'A 'B))))
(check-true
(forced-at?
(km 'r (set) empty)
(impl 'A 'B)))
(check-true
(forced-at?
(km 'r (set 'B)
(list (km 's (set 'B) empty)
(km 't (set 'A 'B) empty)))
(impl 'A 'B)))
(check-false
(forced-at?
(km 'r (set)
(list (km 's (set 'A) empty)))
(disj 'A (impl 'A (bot))))))
;; exercises
(module+ test
;; 1. ¬¬A → A
;; equivalent to ((A → ⊥) → ⊥) → A
;; need descendant which forces ((A → ⊥) → ⊥) but not A
;; thus we need a descendant which forces (A → ⊥) but not ⊥ and not A
;; thus we need a descendant which forces A but not ⊥ nor A?
;; or,
;; need descendant which forces ¬¬A but not A.
;; ¬¬A is forced exactly when ¬A is not forced in any descendant
;; so tree must have a descendant which:
;; - does not force A
;; - forces ¬¬A by not ever forcing ¬A
;; Now, ¬A is forced exactly when A is not forced in any descendant. So A
;; must be forced in a descendant to have ¬¬A.
;; r - s (A)
;; 1. s forces A.
;; 2. s does not force ¬A (because s does not force ⊥)
;; 3. r forces ¬¬A, since ¬P is forced if P is not forced in any descendants;
;; substitute for P the formula ¬A.
;; 4. r does not force A.
;; 5. then r forces ¬¬A but not A, so r does not force ¬¬A → A.
;; same model as LEM, because LEM ⇔ 2neg elim?
(define one
(km 'r (set)
(list (km 's (set 'A) empty))))
(check-true (valid? one))
(check-false (forced-at? one (impl (not (not 'A))
'A)))
;; 2. ¬(A ∧ B) → ¬A ∨ ¬B
;; once again, need a tree with:
;; - a descendant that does force ¬(A ∧ B)
;; - a descendant that does NOT force ¬A ∨ ¬B,
;; To force ¬(A ∧ B), I must NOT force (A ∧ B) in any descendant worlds by not
;; forcing at least one of A or B.
;; To NOT force ¬A ∨ ¬B, I have to NOT force both disjuncts, which requires
;; descendants focring both A and B (to NOT force ¬A, I must have a descendant
;; forcing A).
;; r - s (A)
;; \_ t (B)
;; 1. s forces A.
;; 2. s does not force B.
;; 3. s does not force A ∧ B.
;; 4. r forces ¬(A ∧ B) by above and symmetry with t.
;; 5. s does not force ¬A (est.)
;; 6. t does not force ¬B (est.)
;; 7. r does not force ¬A ∨ ¬B
;; 8. then r does not force the implication, since it forces the hypothesis
;; (4) but not the conclusion (7).
(define two
(km 'r (set)
(list (km 's (set 'A) empty)
(km 't (set 'B) empty))))
(check-true (valid? one))
(check-false (forced-at? two (impl (not (conj 'A 'B))
(disj (not 'A) (not 'B)))))
;; 3. ((A → B) → A) → A
;; r must force (A → B) → A and not force A
;; to force (A → B) → A, in all descdendant words forcing A → B we must also
;; force A.
;; a descendant world forcing A → B must have, in all descendants forcing A,
;; also B.
;; but remember that r is its own descendant!
;; r - s (A B)
;; \_ t (A)
;; 1. s forces A → B, and also (A → B) → A.
;; 2. r does not force A → B, since we have a descendant forcing A but not B.
;; 3. therefore r forces (A → B) → A, since whenever a descendant does force
;; the hypothesis it forces the conclusion (1). This is key: r blank must
;; be made to not force the hypothesis, or it cannot force the implication,
;; since it must not force the conclusion by construction.
;; 4. r does not force A.
(define three (km 'r (set)
(list (km 's (set 'A 'B) empty)
(km 't (set 'A) empty))))
(check-true (valid? three))
(check-false (forced-at? three (impl (impl (impl 'A 'B) 'A) 'A)))
;; 4. (A → B) ∨ (B → A)
;; r must not force either term
;; thus r must force A and not B, and r must force B and not A…
;; r - s (A)
;; \_ t (B)
;; 1. s does not force A → B (idem. t)
;; 2. r does not force A → B.
;; 3. t does not force B → A (idem. s)
;; 4. r does not force B → A.
;; an equivalence with DeMorgan?
(define four (km 'r (set)
(list (km 's (set 'A) empty)
(km 't (set 'B) empty))))
(check-true (valid? four))
(check-false (forced-at? four (disj (impl 'A 'B)
(impl 'B 'A)))))
| false |
d4a2f40ab11be990080eb3938bd5eb8ca46db64e | 24d1a79102839205087966654e33c603bcc41b37 | /inside/blueboxes.rktd | d925a438a41eec8357c3ef6298ef0347609f90b3 | []
| no_license | Racket-zh/docs | 4a091e51701325910b93c2cc5f818487e2bca4be | 741be262485a783e66b8e6d1b8a1114f7799e59e | refs/heads/master | 2020-03-19T12:14:21.965606 | 2018-09-10T01:12:30 | 2018-09-10T01:12:54 | 136,505,509 | 5 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 69,081 | rktd | blueboxes.rktd | 19494
((3) 0 () 1 ((q "(lib scribblings/inside/inside.scrbl)")) () (h ! (equal) ((c idx c (c gentag c 321 ? . 0)) q (13207 . 3)) ((c idx c (c gentag c 450 ? . 0)) q (24910 . 10)) ((c idx c (c gentag c 501 ? . 0)) q (32294 . 2)) ((c idx c (c gentag c 508 ? . 0)) q (33413 . 5)) ((c idx c (c gentag c 216 ? . 0)) q (5119 . 3)) ((c idx c (c gentag c 355 ? . 0)) q (17957 . 6)) ((c idx c (c gentag c 530 ? . 0)) q (38575 . 4)) ((c idx c (c gentag c 511 ? . 0)) q (33718 . 2)) ((c idx c (c gentag c 610 ? . 0)) q (47649 . 2)) ((c idx c (c gentag c 623 ? . 0)) q (49110 . 2)) ((c idx c (c gentag c 183 ? . 0)) q (1637 . 3)) ((c idx c (c gentag c 275 ? . 0)) q (8593 . 2)) ((c idx c (c gentag c 494 ? . 0)) q (31628 . 3)) ((c idx c (c gentag c 585 ? . 0)) q (45801 . 3)) ((c idx c (c gentag c 624 ? . 0)) q (49155 . 2)) ((c idx c (c gentag c 537 ? . 0)) q (39837 . 2)) ((c idx c (c gentag c 225 ? . 0)) q (5849 . 5)) ((c idx c (c gentag c 359 ? . 0)) q (18475 . 3)) ((c idx c (c gentag c 346 ? . 0)) q (16199 . 6)) ((c idx c (c gentag c 499 ? . 0)) q (32201 . 2)) ((c idx c (c gentag c 326 ? . 0)) q (13736 . 3)) ((c idx c (c gentag c 461 ? . 0)) q (27943 . 8)) ((c idx c (c gentag c 364 ? . 0)) q (18730 . 2)) ((c idx c (c gentag c 592 ? . 0)) q (46414 . 3)) ((c idx c (c gentag c 261 ? . 0)) q (7367 . 2)) ((c idx c (c gentag c 462 ? . 0)) q (28340 . 8)) ((c idx c (c gentag c 374 ? . 0)) q (19537 . 2)) ((c idx c (c gentag c 466 ? . 0)) q (28814 . 2)) ((c idx c (c gentag c 170 ? . 0)) q (692 . 2)) ((c idx c (c gentag c 587 ? . 0)) q (45959 . 3)) ((c idx c (c gentag c 595 ? . 0)) q (46687 . 2)) ((c idx c (c gentag c 289 ? . 0)) q (10162 . 2)) ((c idx c (c gentag c 619 ? . 0)) q (48701 . 4)) ((c idx c (c gentag c 437 ? . 0)) q (22502 . 5)) ((c idx c (c gentag c 201 ? . 0)) q (3541 . 3)) ((c idx c (c gentag c 379 ? . 0)) q (20445 . 2)) ((c idx c (c gentag c 384 ? . 0)) q (20783 . 6)) ((c idx c (c gentag c 309 ? . 0)) q (11723 . 2)) ((c idx c (c gentag c 185 ? . 0)) q (1840 . 3)) ((c idx c (c gentag c 193 ? . 0)) q (2524 . 5)) ((c idx c (c gentag c 436 ? . 0)) q (22338 . 4)) ((c idx c (c gentag c 467 ? . 0)) q (28878 . 2)) ((c idx c (c gentag c 353 ? . 0)) q (17486 . 6)) ((c idx c (c gentag c 576 ? . 0)) q (45097 . 6)) ((c idx c (c gentag c 206 ? . 0)) q (4267 . 3)) ((c idx c (c gentag c 368 ? . 0)) q (19148 . 2)) ((c idx c (c gentag c 280 ? . 0)) q (9244 . 4)) ((c idx c (c gentag c 177 ? . 0)) q (1042 . 3)) ((c idx c (c gentag c 620 ? . 0)) q (48857 . 3)) ((c idx c (c gentag c 488 ? . 0)) q (30529 . 3)) ((c idx c (c gentag c 357 ? . 0)) q (18280 . 2)) ((c idx c (c gentag c 554 ? . 0)) q (41474 . 5)) ((c idx c (c gentag c 474 ? . 0)) q (29501 . 2)) ((c idx c (c gentag c 320 ? . 0)) q (13107 . 3)) ((c idx c (c gentag c 491 ? . 0)) q (30906 . 4)) ((c idx c (c gentag c 29 ? . 0)) q (516 . 2)) ((c idx c (c gentag c 334 ? . 0)) q (14807 . 4)) ((c idx c (c gentag c 377 ? . 0)) q (20081 . 7)) ((c idx c (c gentag c 217 ? . 0)) q (5246 . 3)) ((c idx c (c gentag c 542 ? . 0)) q (40231 . 4)) ((c idx c (c gentag c 442 ? . 0)) q (23191 . 2)) ((c idx c (c gentag c 373 ? . 0)) q (19486 . 2)) ((c idx c (c gentag c 378 ? . 0)) q (20413 . 2)) ((c idx c (c gentag c 25 ? . 0)) q (105 . 2)) ((c idx c (c gentag c 190 ? . 0)) q (2214 . 2)) ((c idx c (c gentag c 564 ? . 0)) q (42933 . 2)) ((c idx c (c gentag c 278 ? . 0)) q (8975 . 4)) ((c idx c (c gentag c 489 ? . 0)) q (30618 . 4)) ((c idx c (c gentag c 303 ? . 0)) q (10931 . 3)) ((c idx c (c gentag c 337 ? . 0)) q (15313 . 3)) ((c idx c (c gentag c 602 ? . 0)) q (47065 . 3)) ((c idx c (c gentag c 304 ? . 0)) q (11051 . 5)) ((c idx c (c gentag c 540 ? . 0)) q (40016 . 3)) ((c idx c (c gentag c 178 ? . 0)) q (1112 . 3)) ((c idx c (c gentag c 455 ? . 0)) q (26478 . 6)) ((c idx c (c gentag c 465 ? . 0)) q (28765 . 2)) ((c idx c (c gentag c 188 ? . 0)) q (2050 . 2)) ((c idx c (c gentag c 580 ? . 0)) q (45704 . 2)) ((c idx c (c gentag c 605 ? . 0)) q (47308 . 3)) ((c idx c (c gentag c 312 ? . 0)) q (12008 . 6)) ((c idx c (c gentag c 296 ? . 0)) q (10465 . 2)) ((c idx c (c gentag c 613 ? . 0)) q (47959 . 3)) ((c idx c (c gentag c 264 ? . 0)) q (7547 . 2)) ((c idx c (c gentag c 267 ? . 0)) q (7679 . 2)) ((c idx c (c gentag c 341 ? . 0)) q (15793 . 2)) ((c idx c (c gentag c 448 ? . 0)) q (24470 . 2)) ((c idx c (c gentag c 176 ? . 0)) q (986 . 2)) ((c idx c (c gentag c 173 ? . 0)) q (828 . 2)) ((c idx c (c gentag c 541 ? . 0)) q (40144 . 3)) ((c idx c (c gentag c 265 ? . 0)) q (7593 . 2)) ((c idx c (c gentag c 203 ? . 0)) q (3800 . 6)) ((c idx c (c gentag c 544 ? . 0)) q (40452 . 3)) ((c idx c (c gentag c 531 ? . 0)) q (38694 . 3)) ((c idx c (c gentag c 197 ? . 0)) q (3096 . 2)) ((c idx c (c gentag c 308 ? . 0)) q (11601 . 3)) ((c idx c (c gentag c 208 ? . 0)) q (4405 . 3)) ((c idx c (c gentag c 348 ? . 0)) q (16637 . 6)) ((c idx c (c gentag c 169 ? . 0)) q (655 . 2)) ((c idx c (c gentag c 286 ? . 0)) q (9800 . 2)) ((c idx c (c gentag c 618 ? . 0)) q (48648 . 2)) ((c idx c (c gentag c 534 ? . 0)) q (39118 . 6)) ((c idx c (c gentag c 527 ? . 0)) q (38192 . 5)) ((c idx c (c gentag c 376 ? . 0)) q (19781 . 6)) ((c idx c (c gentag c 435 ? . 0)) q (22229 . 3)) ((c idx c (c gentag c 505 ? . 0)) q (32522 . 3)) ((c idx c (c gentag c 343 ? . 0)) q (15852 . 3)) ((c idx c (c gentag c 622 ? . 0)) q (49073 . 2)) ((c idx c (c gentag c 629 ? . 0)) q (49341 . 2)) ((c idx c (c gentag c 356 ? . 0)) q (18251 . 2)) ((c idx c (c gentag c 279 ? . 0)) q (9099 . 4)) ((c idx c (c gentag c 627 ? . 0)) q (49258 . 2)) ((c idx c (c gentag c 284 ? . 0)) q (9730 . 2)) ((c idx c (c gentag c 464 ? . 0)) q (28722 . 2)) ((c idx c (c gentag c 360 ? . 0)) q (18589 . 3)) ((c idx c (c gentag c 194 ? . 0)) q (2799 . 3)) ((c idx c (c gentag c 574 ? . 0)) q (44754 . 2)) ((c idx c (c gentag c 389 ? . 0)) q (21348 . 2)) ((c idx c (c gentag c 306 ? . 0)) q (11491 . 2)) ((c idx c (c gentag c 228 ? . 0)) q (6295 . 5)) ((c idx c (c gentag c 503 ? . 0)) q (32379 . 2)) ((c idx c (c gentag c 335 ? . 0)) q (14971 . 4)) ((c idx c (c gentag c 172 ? . 0)) q (774 . 2)) ((c idx c (c gentag c 487 ? . 0)) q (30396 . 4)) ((c idx c (c gentag c 391 ? . 0)) q (21567 . 9)) ((c idx c (c gentag c 171 ? . 0)) q (728 . 2)) ((c idx c (c gentag c 497 ? . 0)) q (31991 . 4)) ((c idx c (c gentag c 565 ? . 0)) q (42979 . 9)) ((c idx c (c gentag c 301 ? . 0)) q (10650 . 4)) ((c idx c (c gentag c 207 ? . 0)) q (4336 . 3)) ((c idx c (c gentag c 471 ? . 0)) q (29086 . 3)) ((c idx c (c gentag c 263 ? . 0)) q (7443 . 3)) ((c idx c (c gentag c 632 ? . 0)) q (49538 . 2)) ((c idx c (c gentag c 512 ? . 0)) q (33764 . 3)) ((c idx c (c gentag c 28 ? . 0)) q (473 . 2)) ((c idx c (c gentag c 483 ? . 0)) q (30133 . 2)) ((c idx c (c gentag c 327 ? . 0)) q (13850 . 4)) ((c idx c (c gentag c 539 ? . 0)) q (39956 . 2)) ((c idx c (c gentag c 350 ? . 0)) q (16934 . 4)) ((c idx c (c gentag c 477 ? . 0)) q (29731 . 2)) ((c idx c (c gentag c 509 ? . 0)) q (33597 . 3)) ((c idx c (c gentag c 266 ? . 0)) q (7636 . 2)) ((c idx c (c gentag c 199 ? . 0)) q (3276 . 4)) ((c idx c (c gentag c 630 ? . 0)) q (49385 . 3)) ((c idx c (c gentag c 440 ? . 0)) q (23051 . 2)) ((c idx c (c gentag c 23 ? . 0)) q (0 . 2)) ((c idx c (c gentag c 510 ? . 0)) q (33672 . 2)) ((c idx c (c gentag c 175 ? . 0)) q (936 . 2)) ((c idx c (c gentag c 276 ? . 0)) q (8633 . 3)) ((c idx c (c gentag c 579 ? . 0)) q (45654 . 2)) ((c idx c (c gentag c 259 ? . 0)) q (7280 . 2)) ((c idx c (c gentag c 492 ? . 0)) q (31057 . 7)) ((c idx c (c gentag c 282 ? . 0)) q (9543 . 4)) ((c idx c (c gentag c 331 ? . 0)) q (14468 . 3)) ((c idx c (c gentag c 310 ? . 0)) q (11779 . 5)) ((c idx c (c gentag c 302 ? . 0)) q (10811 . 3)) ((c idx c (c gentag c 557 ? . 0)) q (41967 . 5)) ((c idx c (c gentag c 482 ? . 0)) q (30019 . 3)) ((c idx c (c gentag c 166 ? . 0)) q (548 . 2)) ((c idx c (c gentag c 444 ? . 0)) q (23398 . 9)) ((c idx c (c gentag c 524 ? . 0)) q (36226 . 13)) ((c idx c (c gentag c 517 ? . 0)) q (34106 . 2)) ((c idx c (c gentag c 366 ? . 0)) q (18829 . 7)) ((c idx c (c gentag c 223 ? . 0)) q (5623 . 3)) ((c idx c (c gentag c 230 ? . 0)) q (6655 . 5)) ((c idx c (c gentag c 220 ? . 0)) q (5475 . 2)) ((c idx c (c gentag c 608 ? . 0)) q (47538 . 2)) ((c idx c (c gentag c 631 ? . 0)) q (49495 . 2)) ((c idx c (c gentag c 548 ? . 0)) q (40843 . 5)) ((c idx c (c gentag c 459 ? . 0)) q (27457 . 5)) ((c idx c (c gentag c 262 ? . 0)) q (7401 . 2)) ((c idx c (c gentag c 572 ? . 0)) q (44441 . 4)) ((c idx c (c gentag c 260 ? . 0)) q (7322 . 2)) ((c idx c (c gentag c 536 ? . 0)) q (39672 . 4)) ((c idx c (c gentag c 523 ? . 0)) q (34538 . 13)) ((c idx c (c gentag c 571 ? . 0)) q (44316 . 4)) ((c idx c (c gentag c 478 ? . 0)) q (29783 . 2)) ((c idx c (c gentag c 555 ? . 0)) q (41721 . 3)) ((c idx c (c gentag c 468 ? . 0)) q (28930 . 2)) ((c idx c (c gentag c 545 ? . 0)) q (40521 . 2)) ((c idx c (c gentag c 277 ? . 0)) q (8732 . 6)) ((c idx c (c gentag c 285 ? . 0)) q (9766 . 2)) ((c idx c (c gentag c 179 ? . 0)) q (1184 . 3)) ((c idx c (c gentag c 553 ? . 0)) q (41310 . 4)) ((c idx c (c gentag c 215 ? . 0)) q (5004 . 3)) ((c idx c (c gentag c 322 ? . 0)) q (13324 . 3)) ((c idx c (c gentag c 333 ? . 0)) q (14691 . 3)) ((c idx c (c gentag c 463 ? . 0)) q (28681 . 2)) ((c idx c (c gentag c 586 ? . 0)) q (45879 . 3)) ((c idx c (c gentag c 323 ? . 0)) q (13453 . 3)) ((c idx c (c gentag c 443 ? . 0)) q (23216 . 4)) ((c idx c (c gentag c 549 ? . 0)) q (41072 . 2)) ((c idx c (c gentag c 167 ? . 0)) q (584 . 2)) ((c idx c (c gentag c 575 ? . 0)) q (44818 . 7)) ((c idx c (c gentag c 500 ? . 0)) q (32250 . 2)) ((c idx c (c gentag c 609 ? . 0)) q (47594 . 2)) ((c idx c (c gentag c 506 ? . 0)) q (32616 . 9)) ((c idx c (c gentag c 611 ? . 0)) q (47701 . 4)) ((c idx c (c gentag c 547 ? . 0)) q (40602 . 6)) ((c idx c (c gentag c 470 ? . 0)) q (29034 . 2)) ((c idx c (c gentag c 380 ? . 0)) q (20475 . 2)) ((c idx c (c gentag c 616 ? . 0)) q (48422 . 3)) ((c idx c (c gentag c 288 ? . 0)) q (9881 . 7)) ((c idx c (c gentag c 387 ? . 0)) q (21252 . 2)) ((c idx c (c gentag c 573 ? . 0)) q (44595 . 4)) ((c idx c (c gentag c 255 ? . 0)) q (7064 . 3)) ((c idx c (c gentag c 520 ? . 0)) q (34328 . 2)) ((c idx c (c gentag c 324 ? . 0)) q (13572 . 3)) ((c idx c (c gentag c 367 ? . 0)) q (19101 . 2)) ((c idx c (c gentag c 210 ? . 0)) q (4557 . 2)) ((c idx c (c gentag c 452 ? . 0)) q (25870 . 5)) ((c idx c (c gentag c 182 ? . 0)) q (1552 . 3)) ((c idx c (c gentag c 481 ? . 0)) q (29965 . 2)) ((c idx c (c gentag c 221 ? . 0)) q (5522 . 2)) ((c idx c (c gentag c 570 ? . 0)) q (44217 . 3)) ((c idx c (c gentag c 214 ? . 0)) q (4895 . 3)) ((c idx c (c gentag c 569 ? . 0)) q (44103 . 3)) ((c idx c (c gentag c 566 ? . 0)) q (43524 . 6)) ((c idx c (c gentag c 447 ? . 0)) q (24401 . 2)) ((c idx c (c gentag c 496 ? . 0)) q (31886 . 3)) ((c idx c (c gentag c 473 ? . 0)) q (29334 . 4)) ((c idx c (c gentag c 559 ? . 0)) q (42124 . 3)) ((c idx c (c gentag c 330 ? . 0)) q (14303 . 4)) ((c idx c (c gentag c 349 ? . 0)) q (16892 . 2)) ((c idx c (c gentag c 561 ? . 0)) q (42393 . 5)) ((c idx c (c gentag c 522 ? . 0)) q (34486 . 2)) ((c idx c (c gentag c 614 ? . 0)) q (48084 . 5)) ((c idx c (c gentag c 472 ? . 0)) q (29183 . 4)) ((c idx c (c gentag c 386 ? . 0)) q (21220 . 2)) ((c idx c (c gentag c 186 ? . 0)) q (1958 . 2)) ((c idx c (c gentag c 394 ? . 0)) q (21997 . 3)) ((c idx c (c gentag c 454 ? . 0)) q (26256 . 5)) ((c idx c (c gentag c 300 ? . 0)) q (10519 . 4)) ((c idx c (c gentag c 184 ? . 0)) q (1741 . 3)) ((c idx c (c gentag c 272 ? . 0)) q (8251 . 4)) ((c idx c (c gentag c 195 ? . 0)) q (2913 . 3)) ((c idx c (c gentag c 325 ? . 0)) q (13703 . 2)) ((c idx c (c gentag c 395 ? . 0)) q (22109 . 3)) ((c idx c (c gentag c 24 ? . 0)) q (54 . 2)) ((c idx c (c gentag c 493 ? . 0)) q (31370 . 6)) ((c idx c (c gentag c 546 ? . 0)) q (40559 . 2)) ((c idx c (c gentag c 227 ? . 0)) q (6182 . 3)) ((c idx c (c gentag c 251 ? . 0)) q (6903 . 2)) ((c idx c (c gentag c 340 ? . 0)) q (15698 . 3)) ((c idx c (c gentag c 291 ? . 0)) q (10223 . 3)) ((c idx c (c gentag c 332 ? . 0)) q (14587 . 3)) ((c idx c (c gentag c 338 ? . 0)) q (15439 . 4)) ((c idx c (c gentag c 336 ? . 0)) q (15130 . 4)) ((c idx c (c gentag c 543 ? . 0)) q (40384 . 2)) ((c idx c (c gentag c 479 ? . 0)) q (29845 . 2)) ((c idx c (c gentag c 594 ? . 0)) q (46640 . 2)) ((c idx c (c gentag c 371 ? . 0)) q (19320 . 3)) ((c idx c (c gentag c 254 ? . 0)) q (7023 . 2)) ((c idx c (c gentag c 313 ? . 0)) q (12297 . 2)) ((c idx c (c gentag c 351 ? . 0)) q (17067 . 4)) ((c idx c (c gentag c 495 ? . 0)) q (31729 . 4)) ((c idx c (c gentag c 597 ? . 0)) q (46791 . 2)) ((c idx c (c gentag c 375 ? . 0)) q (19588 . 5)) ((c idx c (c gentag c 588 ? . 0)) q (46043 . 4)) ((c idx c (c gentag c 204 ? . 0)) q (4025 . 3)) ((c idx c (c gentag c 382 ? . 0)) q (20573 . 4)) ((c idx c (c gentag c 456 ? . 0)) q (26778 . 7)) ((c idx c (c gentag c 269 ? . 0)) q (7823 . 5)) ((c idx c (c gentag c 626 ? . 0)) q (49233 . 2)) ((c idx c (c gentag c 514 ? . 0)) q (33897 . 2)) ((c idx c (c gentag c 615 ? . 0)) q (48269 . 4)) ((c idx c (c gentag c 390 ? . 0)) q (21383 . 4)) ((c idx c (c gentag c 458 ? . 0)) q (27318 . 4)) ((c idx c (c gentag c 600 ? . 0)) q (46944 . 2)) ((c idx c (c gentag c 599 ? . 0)) q (46892 . 2)) ((c idx c (c gentag c 219 ? . 0)) q (5420 . 2)) ((c idx c (c gentag c 189 ? . 0)) q (2100 . 3)) ((c idx c (c gentag c 607 ? . 0)) q (47496 . 2)) ((c idx c (c gentag c 283 ? . 0)) q (9682 . 2)) ((c idx c (c gentag c 562 ? . 0)) q (42543 . 6)) ((c idx c (c gentag c 257 ? . 0)) q (7177 . 2)) ((c idx c (c gentag c 446 ? . 0)) q (24301 . 3)) ((c idx c (c gentag c 347 ? . 0)) q (16428 . 6)) ((c idx c (c gentag c 628 ? . 0)) q (49304 . 2)) ((c idx c (c gentag c 174 ? . 0)) q (879 . 2)) ((c idx c (c gentag c 612 ? . 0)) q (47843 . 3)) ((c idx c (c gentag c 209 ? . 0)) q (4481 . 3)) ((c idx c (c gentag c 222 ? . 0)) q (5579 . 2)) ((c idx c (c gentag c 516 ? . 0)) q (33995 . 3)) ((c idx c (c gentag c 621 ? . 0)) q (48982 . 3)) ((c idx c (c gentag c 438 ? . 0)) q (22667 . 6)) ((c idx c (c gentag c 484 ? . 0)) q (30194 . 2)) ((c idx c (c gentag c 317 ? . 0)) q (12933 . 3)) ((c idx c (c gentag c 383 ? . 0)) q (20696 . 3)) ((c idx c (c gentag c 187 ? . 0)) q (2005 . 2)) ((c idx c (c gentag c 528 ? . 0)) q (38396 . 2)) ((c idx c (c gentag c 577 ? . 0)) q (45353 . 4)) ((c idx c (c gentag c 617 ? . 0)) q (48533 . 4)) ((c idx c (c gentag c 307 ? . 0)) q (11548 . 2)) ((c idx c (c gentag c 345 ? . 0)) q (15992 . 6)) ((c idx c (c gentag c 314 ? . 0)) q (12351 . 8)) ((c idx c (c gentag c 453 ? . 0)) q (26057 . 5)) ((c idx c (c gentag c 486 ? . 0)) q (30311 . 3)) ((c idx c (c gentag c 365 ? . 0)) q (18775 . 2)) ((c idx c (c gentag c 181 ? . 0)) q (1400 . 4)) ((c idx c (c gentag c 504 ? . 0)) q (32420 . 3)) ((c idx c (c gentag c 352 ? . 0)) q (17221 . 6)) ((c idx c (c gentag c 515 ? . 0)) q (33947 . 2)) ((c idx c (c gentag c 469 ? . 0)) q (28980 . 2)) ((c idx c (c gentag c 518 ? . 0)) q (34159 . 2)) ((c idx c (c gentag c 606 ? . 0)) q (47424 . 3)) ((c idx c (c gentag c 370 ? . 0)) q (19274 . 2)) ((c idx c (c gentag c 268 ? . 0)) q (7713 . 3)) ((c idx c (c gentag c 485 ? . 0)) q (30260 . 2)) ((c idx c (c gentag c 502 ? . 0)) q (32334 . 2)) ((c idx c (c gentag c 563 ? . 0)) q (42763 . 5)) ((c idx c (c gentag c 533 ? . 0)) q (38876 . 5)) ((c idx c (c gentag c 388 ? . 0)) q (21280 . 3)) ((c idx c (c gentag c 598 ? . 0)) q (46841 . 2)) ((c idx c (c gentag c 625 ? . 0)) q (49209 . 2)) ((c idx c (c gentag c 27 ? . 0)) q (348 . 3)) ((c idx c (c gentag c 354 ? . 0)) q (17726 . 6)) ((c idx c (c gentag c 393 ? . 0)) q (21962 . 2)) ((c idx c (c gentag c 305 ? . 0)) q (11282 . 5)) ((c idx c (c gentag c 590 ? . 0)) q (46239 . 2)) ((c idx c (c gentag c 287 ? . 0)) q (9832 . 2)) ((c idx c (c gentag c 372 ? . 0)) q (19436 . 2)) ((c idx c (c gentag c 329 ? . 0)) q (14156 . 4)) ((c idx c (c gentag c 270 ? . 0)) q (7995 . 4)) ((c idx c (c gentag c 596 ? . 0)) q (46741 . 2)) ((c idx c (c gentag c 191 ? . 0)) q (2269 . 3)) ((c idx c (c gentag c 168 ? . 0)) q (619 . 2)) ((c idx c (c gentag c 361 ? . 0)) q (18667 . 3)) ((c idx c (c gentag c 392 ? . 0)) q (21935 . 2)) ((c idx c (c gentag c 290 ? . 0)) q (10191 . 2)) ((c idx c (c gentag c 318 ? . 0)) q (13057 . 2)) ((c idx c (c gentag c 601 ? . 0)) q (47004 . 2)) ((c idx c (c gentag c 567 ? . 0)) q (43732 . 6)) ((c idx c (c gentag c 498 ? . 0)) q (32154 . 2)) ((c idx c (c gentag c 218 ? . 0)) q (5358 . 2)) ((c idx c (c gentag c 385 ? . 0)) q (21029 . 4)) ((c idx c (c gentag c 589 ? . 0)) q (46185 . 2)) ((c idx c (c gentag c 604 ? . 0)) q (47224 . 3)) ((c idx c (c gentag c 445 ? . 0)) q (23841 . 9)) ((c idx c (c gentag c 519 ? . 0)) q (34213 . 3)) ((c idx c (c gentag c 439 ? . 0)) q (22877 . 4)) ((c idx c (c gentag c 198 ? . 0)) q (3151 . 3)) ((c idx c (c gentag c 229 ? . 0)) q (6472 . 5)) ((c idx c (c gentag c 550 ? . 0)) q (41135 . 2)) ((c idx c (c gentag c 603 ? . 0)) q (47173 . 2)) ((c idx c (c gentag c 369 ? . 0)) q (19194 . 3)) ((c idx c (c gentag c 200 ? . 0)) q (3484 . 2)) ((c idx c (c gentag c 521 ? . 0)) q (34380 . 3)) ((c idx c (c gentag c 316 ? . 0)) q (12674 . 7)) ((c idx c (c gentag c 281 ? . 0)) q (9383 . 4)) ((c idx c (c gentag c 457 ? . 0)) q (27072 . 7)) ((c idx c (c gentag c 568 ? . 0)) q (43936 . 5)) ((c idx c (c gentag c 273 ? . 0)) q (8407 . 3)) ((c idx c (c gentag c 480 ? . 0)) q (29909 . 2)) ((c idx c (c gentag c 212 ? . 0)) q (4721 . 3)) ((c idx c (c gentag c 226 ? . 0)) q (6002 . 5)) ((c idx c (c gentag c 271 ? . 0)) q (8150 . 3)) ((c idx c (c gentag c 211 ? . 0)) q (4608 . 3)) ((c idx c (c gentag c 441 ? . 0)) q (23104 . 3)) ((c idx c (c gentag c 552 ? . 0)) q (41246 . 2)) ((c idx c (c gentag c 344 ? . 0)) q (15925 . 3)) ((c idx c (c gentag c 476 ? . 0)) q (29677 . 2)) ((c idx c (c gentag c 180 ? . 0)) q (1266 . 4)) ((c idx c (c gentag c 192 ? . 0)) q (2339 . 4)) ((c idx c (c gentag c 258 ? . 0)) q (7225 . 2)) ((c idx c (c gentag c 507 ? . 0)) q (33041 . 8)) ((c idx c (c gentag c 532 ? . 0)) q (38819 . 2)) ((c idx c (c gentag c 560 ? . 0)) q (42196 . 6)) ((c idx c (c gentag c 581 ? . 0)) q (45764 . 2)) ((c idx c (c gentag c 328 ? . 0)) q (13994 . 4)) ((c idx c (c gentag c 26 ? . 0)) q (151 . 5)) ((c idx c (c gentag c 213 ? . 0)) q (4846 . 2)) ((c idx c (c gentag c 591 ? . 0)) q (46294 . 3)) ((c idx c (c gentag c 535 ? . 0)) q (39425 . 6)) ((c idx c (c gentag c 451 ? . 0)) q (25408 . 10)) ((c idx c (c gentag c 224 ? . 0)) q (5736 . 4)) ((c idx c (c gentag c 593 ? . 0)) q (46536 . 3)) ((c idx c (c gentag c 295 ? . 0)) q (10330 . 3)) ((c idx c (c gentag c 381 ? . 0)) q (20499 . 3)) ((c idx c (c gentag c 460 ? . 0)) q (27662 . 6)) ((c idx c (c gentag c 475 ? . 0)) q (29561 . 3)) ((c idx c (c gentag c 252 ? . 0)) q (6936 . 2)) ((c idx c (c gentag c 196 ? . 0)) q (3039 . 2)) ((c idx c (c gentag c 449 ? . 0)) q (24538 . 10)) ((c idx c (c gentag c 205 ? . 0)) q (4141 . 3)) ((c idx c (c gentag c 490 ? . 0)) q (30757 . 4)) ((c idx c (c gentag c 529 ? . 0)) q (38452 . 3)) ((c idx c (c gentag c 274 ? . 0)) q (8503 . 3)) ((c idx c (c gentag c 339 ? . 0)) q (15594 . 3)) ((c idx c (c gentag c 538 ? . 0)) q (39901 . 2)) ((c idx c (c gentag c 556 ? . 0)) q (41818 . 4)) ((c idx c (c gentag c 513 ? . 0)) q (33852 . 2)) ((c idx c (c gentag c 551 ? . 0)) q (41198 . 2)) ((c idx c (c gentag c 202 ? . 0)) q (3613 . 4)) ((c idx c (c gentag c 253 ? . 0)) q (6976 . 2)) ((c idx c (c gentag c 578 ? . 0)) q (45540 . 3)) ((c idx c (c gentag c 525 ? . 0)) q (37845 . 4)) ((c idx c (c gentag c 256 ? . 0)) q (7137 . 2)) ((c idx c (c gentag c 358 ? . 0)) q (18317 . 4)) ((c idx c (c gentag c 526 ? . 0)) q (38016 . 4))))
void scheme_set_collects_path(Scheme_Object* path)
void scheme_set_addon_path(Scheme_Object* path)
void scheme_set_exec_cmd(const char* path)
void
scheme_init_collection_paths_post(Scheme_Env* env,
Scheme_Object* pre_extra_paths,
Scheme_Object* post_extra_paths)
void scheme_init_collection_paths(Scheme_Env* env,
Scheme_Object* pre_extra_paths)
void scheme_set_dll_path(wchar_t* path)
void scheme_seal_parameters()
Scheme_Object* scheme_make_null()
Scheme_Object* scheme_make_eof()
Scheme_Object* scheme_make_true()
Scheme_Object* scheme_make_false()
Scheme_Object* scheme_make_void()
Scheme_Object* scheme_make_char(mzchar ch)
Scheme_Object* scheme_make_char_or_null(mzchar ch)
Scheme_Object* scheme_make_character(mzchar ch)
Scheme_Object* scheme_make_ascii_character(mzchar ch)
Scheme_Object* scheme_make_integer(intptr_t i)
Scheme_Object* scheme_make_integer_value(intptr_t i)
Scheme_Object*
scheme_make_integer_value_from_unsigned(uintptr_t i)
Scheme_Object*
scheme_make_integer_value_from_long_long(mzlonglong i)
Scheme_Object*
scheme_make_integer_value_from_unsigned_long_long(umzlonglong i)
Scheme_Object*
scheme_make_integer_value_from_long_halves(uintptr_t hi,
uintptr_t lo)
Scheme_Object*
scheme_make_integer_value_from_unsigned_long_halves(uintptr_t hi,
uintptr_t lo)
int scheme_get_int_val(Scheme_Object* o,
intptr_t* i)
int scheme_get_unsigned_int_val(Scheme_Object* o,
uintptr_t* i)
int scheme_get_long_long_val(Scheme_Object* o,
mzlonglong* i)
int scheme_get_unsigned_long_long_val(Scheme_Object* o,
umzlonglong* i)
Scheme_Object* scheme_make_double(double d)
Scheme_Object* scheme_make_float(float d)
double scheme_real_to_double(Scheme_Object* o)
Scheme_Object* scheme_make_pair(Scheme_Object* carv,
Scheme_Object* cdrv)
Scheme_Object* scheme_make_byte_string(char* bytes)
Scheme_Object*
scheme_make_byte_string_without_copying(char* bytes)
Scheme_Object* scheme_make_sized_byte_string(char* bytes,
intptr_t len,
int copy)
Scheme_Object* scheme_make_sized_offset_byte_string(char* bytes,
intptr_t d,
intptr_t len,
int copy)
Scheme_Object* scheme_alloc_byte_string(intptr_t size,
char fill)
Scheme_Object* scheme_append_byte_string(Scheme_Object* a,
Scheme_Object* b)
Scheme_Object* scheme_make_locale_string(char* bytes)
Scheme_Object* scheme_make_utf8_string(char* bytes)
Scheme_Object* scheme_make_sized_utf8_string(char* bytes,
intptr_t len)
Scheme_Object* scheme_make_sized_offset_utf8_string(char* bytes,
intptr_t d,
intptr_t len)
Scheme_Object* scheme_make_char_string(mzchar* chars)
Scheme_Object*
scheme_make_char_string_without_copying(mzchar* chars)
Scheme_Object* scheme_make_sized_char_string(mzchar* chars,
intptr_t len,
int copy)
Scheme_Object*
scheme_make_sized_offset_char_string(mzchar* chars,
intptr_t d,
intptr_t len,
int copy)
Scheme_Object* scheme_alloc_char_string(intptr_t size,
mzchar fill)
Scheme_Object* scheme_append_char_string(Scheme_Object* a,
Scheme_Object* b)
Scheme_Object*
scheme_char_string_to_byte_string(Scheme_Object* s)
Scheme_Object*
scheme_byte_string_to_char_string(Scheme_Object* s)
Scheme_Object*
scheme_char_string_to_byte_string_locale(Scheme_Object* s)
Scheme_Object*
scheme_byte_string_to_char_string_locale(Scheme_Object* s)
Scheme_Object* scheme_intern_symbol(char* name)
Scheme_Object* scheme_intern_exact_symbol(char* name,
int len)
Scheme_Object* scheme_intern_exact_char_symbol(mzchar* name,
int len)
Scheme_Object* scheme_make_symbol(char* name)
Scheme_Object* scheme_make_exact_symbol(char* name,
int len)
Scheme_Object* scheme_intern_exact_keyword(char* name,
int len)
Scheme_Object* scheme_intern_exact_char_keyword(mzchar* name,
int len)
Scheme_Object* scheme_make_vector(intptr_t size,
Scheme_Object* fill)
Scheme_Double_Vector* scheme_alloc_flvector(intptr_t size)
Scheme_Vector* scheme_alloc_fxvector(intptr_t size)
Scheme_Object* scheme_box(Scheme_Object* v)
Scheme_Object* scheme_make_weak_box(Scheme_Object* v)
Scheme_Type scheme_make_type(char* name)
Scheme_Object* scheme_make_cptr(void* ptr,
const Scheme_Object* typetag)
Scheme_Object*
scheme_make_external_cptr(void* ptr,
const Scheme_Object* typetag)
Scheme_Object*
scheme_make_offset_cptr(void* ptr,
intptr_t offset,
const Scheme_Object* typetag)
Scheme_Object*
scheme_make_offset_external_cptr(void* ptr,
intptr_t offset,
const Scheme_Object* typetag)
void scheme_set_type_printer(Scheme_Type type,
Scheme_Type_Printer printer)
void scheme_print_bytes(Scheme_Print_Params* pp,
const char* str,
int offset,
int len)
void scheme_print_string(Scheme_Print_Params* pp,
const mzchar* str,
int offset,
int len)
void scheme_set_type_equality(Scheme_Type type,
Scheme_Equal_Proc equalp,
Scheme_Primary_Hash_Proc hash1,
Scheme_Secondary_Hash_Proc hash2)
void* scheme_malloc(size_t n)
void* scheme_malloc_atomic(size_t n)
void* scheme_malloc_uncollectable(size_t n)
void* scheme_malloc_eternal(size_t n)
void* scheme_calloc(size_t num,
size_t size)
void* scheme_malloc_tagged(size_t n)
void* scheme_malloc_allow_interior(size_t n)
void* scheme_malloc_atomic_allow_interior(size_t n)
void* scheme_malloc_stubborn(size_t n)
void* scheme_end_stubborn_change(void* p)
char* scheme_strdup(char* str)
char* scheme_strdup_eternal(char* str)
void* scheme_malloc_fail_ok(void *(*)(size_t) mallocf,
size_t size)
void** scheme_malloc_immobile_box(void* p)
void scheme_free_immobile_box(void** b)
void* scheme_malloc_code(intptr_t size)
void scheme_free_code(void* p)
void scheme_register_extension_global(void* ptr,
intptr_t size)
int scheme_main_setup(int no_auto_statics,
Scheme_Env_Main main,
int argc,
char** argv)
int scheme_main_stack_setup(int no_auto_statics,
Scheme_Nested_Main main,
void* data)
void scheme_set_stack_base(void* stack_addr,
int no_auto_statics)
void scheme_set_stack_bounds(void* stack_addr,
void* stack_end,
int no_auto_statics)
void scheme_register_tls_space(void* ptr,
int tls_index)
void scheme_register_static(void* ptr,
intptr_t size)
void scheme_weak_reference(void** p)
void scheme_weak_reference_indirect(void** p,
void* v)
void scheme_register_finalizer(void* p,
fnl_proc f,
void* data,
fnl_proc* oldf,
void** olddata)
void scheme_add_finalizer(void* p,
fnl_proc f,
void* data)
void scheme_add_scheme_finalizer(void* p,
fnl_proc f,
void* data)
void scheme_add_finalizer_once(void* p,
fnl_proc f,
void* data)
void scheme_add_scheme_finalizer_once(void* p,
fnl_proc f,
void* data)
void scheme_subtract_finalizer(void* p,
fnl_proc f,
void* data)
void scheme_remove_all_finalization(void* p)
void scheme_dont_gc_ptr(void* p)
void scheme_gc_ptr_ok(void* p)
void scheme_collect_garbage()
void scheme_enable_garbage_collection(int on)
void GC_register_traversers(short tag,
Size_Proc s,
Mark_Proc m,
Fixup_Proc f,
int is_const_size,
int is_atomic)
void* GC_resolve(void* p)
void* GC_fixup_self(void* p)
void scheme_register_type_gc_shape(short type,
intptr_t* shape)
Scheme_Object* scheme_add_gc_callback(Scheme_Object* pre_desc,
Scheme_Object* post_desc)
void scheme_remove_gc_callback(Scheme_Object* key)
void scheme_add_global(char* name,
Scheme_Object* val,
Scheme_Env* env)
void scheme_add_global_symbol(Scheme_Object* name,
Scheme_Object* val,
Scheme_Env* env)
Scheme_Object* scheme_lookup_global(Scheme_Object* symbol,
Scheme_Env* env)
Scheme_Bucket* scheme_global_bucket(Scheme_Object* symbol,
Scheme_Env* env)
Scheme_Bucket* scheme_module_bucket(Scheme_Object* mod,
Scheme_Object* symbol,
int pos,
Scheme_Env* env)
void scheme_set_global_bucket(char* procname,
Scheme_Bucket* var,
Scheme_Object* val,
int set_undef)
Scheme_Object* scheme_builtin_value(const char* name)
Scheme_Env* scheme_get_env(Scheme_Config* config)
Scheme_Env* scheme_primitive_module(Scheme_Object* name,
Scheme_Env* for_env)
void scheme_finish_primitive_module(Scheme_Env* env)
Scheme_Object* scheme_make_prim_w_arity(Scheme_Prim* prim,
char* name,
int mina,
int maxa)
Scheme_Object* scheme_make_folding_prim(Scheme_Prim* prim,
char* name,
int mina,
int maxa,
short folding)
Scheme_Object* scheme_make_prim(Scheme_Prim* prim)
Scheme_Object*
scheme_make_prim_closure_w_arity(Scheme_Prim_Closure_Proc* prim,
int c,
Scheme_Object** vals,
char* name,
int mina,
int maxa)
Scheme_Object*
scheme_make_closed_prim_w_arity(Scheme_Closed_Prim* prim,
void* data,
char* name,
int mina,
int maxa)
Scheme_Object* scheme_make_closed_prim(Scheme_Closed_Prim* prim,
void* data)
Scheme_Object** scheme_current_argument_stack()
Scheme_Object* scheme_eval(Scheme_Object* expr,
Scheme_Env* env)
Scheme_Object* scheme_eval_compiled(Scheme_Object* obj,
Scheme_Env* env)
Scheme_Object* scheme_eval_compiled_multi(Scheme_Object* obj,
Scheme_Env* env)
Scheme_Object* _scheme_eval_compiled(Scheme_Object* obj,
Scheme_Env* env)
Scheme_Object* _scheme_eval_compiled_multi(Scheme_Object* obj,
Scheme_Env* env)
Scheme_Env* scheme_basic_env()
Scheme_Object* scheme_make_namespace(int argc,
Scheme_Object** argv)
Scheme_Object* scheme_apply(Scheme_Object* f,
int c,
Scheme_Object** args)
Scheme_Object* scheme_apply_multi(Scheme_Object* f,
int c,
Scheme_Object** args)
Scheme_Object* _scheme_apply(Scheme_Object* f,
int c,
Scheme_Object** args)
Scheme_Object* _scheme_apply_multi(Scheme_Object* f,
int c,
Scheme_Object** args)
Scheme_Object* scheme_apply_to_list(Scheme_Object* f,
Scheme_Object* args)
Scheme_Object* scheme_eval_string(char* str,
Scheme_Env* env)
Scheme_Object* scheme_eval_string_multi(char* str,
Scheme_Env* env)
Scheme_Object* scheme_eval_string_all(char* str,
Scheme_Env* env,
int all)
Scheme_Object* scheme_tail_apply(Scheme_Object* f,
int n,
Scheme_Object** args)
Scheme_Object* scheme_tail_apply_no_copy(Scheme_Object* f,
int n,
Scheme_Object** args)
Scheme_Object* scheme_tail_apply_to_list(Scheme_Object* f,
Scheme_Object* l)
Scheme_Object* scheme_compile(Scheme_Object* form,
Scheme_Env* env,
int writable)
Scheme_Object* scheme_expand(Scheme_Object* form,
Scheme_Env* env)
Scheme_Object* scheme_values(int n,
Scheme_Object** args)
void scheme_detach_multiple_array(Scheme_Object** args)
void scheme_signal_error(char* msg,
...)
void scheme_raise_exn(int exnid,
...)
void scheme_wrong_count(char* name,
int minc,
int maxc,
int argc,
Scheme_Object** argv)
void scheme_wrong_contract(char* name,
char* contract,
int which,
int argc,
Scheme_Object** argv)
void scheme_wrong_type(char* name,
char* expected,
int which,
int argc,
Scheme_Object** argv)
void scheme_wrong_return_arity(char* name,
int expected,
int got,
Scheme_Object** argv,
const char* detail)
void scheme_unbound_global(char* name)
void scheme_contract_error(const char* name,
const char* msg,
...)
char* scheme_make_provided_string(Scheme_Object* o,
int count,
int* len)
char* scheme_make_arg_lines_string(char* s,
int which,
int argc,
Scheme_Object** argv,
intptr_t* len)
char* scheme_make_args_string(char* s,
int which,
int argc,
Scheme_Object** argv,
intptr_t* len)
void scheme_check_proc_arity(char* where,
int a,
int which,
int argc,
Scheme_Object** argv)
Scheme_Object* scheme_dynamic_wind(Pre_Post_Proc pre,
Action_Proc action,
Pre_Post_Proc post,
Action_Proc jmp_handler,
void* data)
void scheme_clear_escape()
void scheme_set_can_break(int on)
void scheme_push_break_enable(Scheme_Cont_Frame_Data* cframe,
int on,
int pre_check)
void scheme_pop_break_enable(Scheme_Cont_Frame_Data* cframe,
int post_check)
Scheme_Object*
scheme_current_continuation_marks(Scheme_Object* prompt_tag)
void scheme_warning(char* msg,
...)
Scheme_Thread* scheme_get_current_thread()
Scheme_Object* scheme_thread(Scheme_Object* thunk)
Scheme_Object*
scheme_thread_w_details(Scheme_Object* thunk,
Scheme_Config* config,
Scheme_Thread_Cell_Table* cells,
Scheme_Custodian* cust,
int suspend_to_kill)
Scheme_Object* scheme_make_sema(intptr_t v)
void scheme_post_sema(Scheme_Object* sema)
int scheme_wait_sema(Scheme_Object* sema,
int try)
void scheme_thread_block(float sleep_time)
void scheme_thread_block_enable_break(float sleep_time,
int break_on)
void scheme_swap_thread(Scheme_Thread* thread)
void scheme_break_thread(Scheme_Thread* thread)
int scheme_break_waiting(Scheme_Thread* thread)
int scheme_block_until(Scheme_Ready_Fun f,
Scheme_Needs_Wakeup_Fun fdf,
Scheme_Object* data,
float sleep)
int scheme_block_until_enable_break(Scheme_Ready_Fun f,
Scheme_Needs_Wakeup_Fun fdf,
Scheme_Object* data,
float sleep,
int break_on)
int scheme_block_until_unless(Scheme_Ready_Fun f,
Scheme_Needs_Wakeup_Fun fdf,
Scheme_Object* data,
float sleep,
Scheme_Object* unless_evt,
int break_on)
void scheme_signal_received()
void scheme_check_threads()
void scheme_wake_up()
void* scheme_get_fdset(void* fds,
int pos)
void scheme_add_fd_handle(void* h,
void* fds,
int repost)
void scheme_add_fd_eventmask(void* fds,
int mask)
void scheme_add_evt(Scheme_Type type,
Scheme_Ready_Fun ready,
Scheme_Needs_Wakeup_Fun wakeup,
Scheme_Wait_Filter_Fun filter,
int can_redirect)
void scheme_add_evt_through_sema(Scheme_Type type,
Scheme_Wait_Sema_Fun getsema,
Scheme_Wait_Filter_Fun filter)
void scheme_making_progress()
int scheme_tls_allocate()
void scheme_tls_set(int index,
void* v)
void* scheme_tls_get(int index)
Scheme_Object* scheme_call_enable_break(Scheme_Prim* prim,
int argc,
Scheme_Object** argv)
Scheme_Object*
scheme_make_thread_cell(Scheme_Object* def_val,
int preserved,
Scheme_Object* cell,
Scheme_Thread_Cell_Table* cells,
Scheme_Object* cell,
Scheme_Thread_Cell_Table* cells,
Scheme_Object* v)
void scheme_end_atomic()
void scheme_end_atomic_no_swap()
void scheme_add_swap_callback(Scheme_Closure_Func f,
Scheme_Object* data)
void scheme_add_swap_out_callback(Scheme_Closure_Func f,
Scheme_Object* data)
Scheme_Object* scheme_get_param(Scheme_Config* config,
int param_id)
Scheme_Object* scheme_set_param(Scheme_Config* config,
int param_id,
Scheme_Object* v)
Scheme_Object*
scheme_get_thread_param(Scheme_Config* config,
Scheme_Thread_Cell_Table* cells,
int param_id)
Scheme_Object*
scheme_set_thread_param(Scheme_Config* config,
Scheme_Thread_Cell_Table* cells,
int param_id,
Scheme_Object* v)
Scheme_Object* scheme_extend_config(Scheme_Config* base,
int param_id,
Scheme_Object* v)
void scheme_install_config(Scheme_Config* config)
Scheme_Thread_Cell_Table*
scheme_inherit_cells (Scheme_Thread_Cell_Table* cells)
int scheme_new_param()
Scheme_Object* scheme_register_parameter(Scheme_Prim* function,
char* name,
int exnid)
Scheme_Object* scheme_param_config(char* name,
Scheme_Object* param,
int argc,
Scheme_Object** argv,
int arity,
Scheme_Prim* check,
char* expected,
int isbool)
Scheme_Object* scheme_param_config2(char* name,
Scheme_Object* param,
int argc,
Scheme_Object** argv,
int arity,
Scheme_Prim* check,
char* expected_contract,
int isbool)
void scheme_set_cont_mark(Scheme_Object* key,
Scheme_Object* val)
void scheme_push_continuation_frame(Scheme_Cont_Frame_Data* data)
void scheme_pop_continuation_frame(Scheme_Cont_Frame_Data* data)
int scheme_utf8_decode(const unsigned char* s,
int start,
int end,
mzchar* us,
int dstart,
int dend,
intptr_t* ipos,
char utf16,
int permissive)
int scheme_utf8_decode_offset_prefix(const unsigned char* s,
int start,
int end,
mzchar* us,
int dstart,
int dend,
intptr_t* ipos,
char utf16,
int permissive)
int scheme_utf8_decode_as_prefix(const unsigned char* s,
int start,
int end,
mzchar* us,
int dstart,
int dend,
intptr_t* ipos,
char utf16,
int permissive)
int scheme_utf8_decode_all(const unsigned char* s,
int len,
mzchar* us,
int permissive)
int scheme_utf8_decode_prefix(const unsigned char* s,
int len,
mzchar* us,
int permissive)
mzchar* scheme_utf8_decode_to_buffer(const unsigned char* s,
int len,
mzchar* buf,
int blen)
mzchar* scheme_utf8_decode_to_buffer_len(const unsigned char* s,
int len,
mzchar* buf,
int blen,
intptr_t* ulen)
int scheme_utf8_decode_count(const unsigned char* s,
int start,
int end,
int* state,
int might_continue,
int permissive)
int scheme_utf8_encode(const mzchar* us,
int start,
int end,
unsigned char* s,
int dstart,
char utf16)
int scheme_utf8_encode_all(const mzchar* us,
int len,
unsigned char* s)
char* scheme_utf8_encode_to_buffer(const mzchar* s,
int len,
char* buf,
int blen)
char* scheme_utf8_encode_to_buffer_len(const mzchar* s,
int len,
char* buf,
int blen,
intptr_t* rlen)
unsigned-short* scheme_ucs4_to_utf16(const mzchar* text,
int start,
int end,
unsigned short* buf,
int bufsize,
intptr_t* ulen,
int term_size)
mzchar* scheme_utf16_to_ucs4(const unsigned short* text,
int start,
int end,
mzchar* buf,
int bufsize,
intptr_t* ulen,
int term_size)
int scheme_is_exact(Scheme_Object* n)
int scheme_is_inexact(Scheme_Object* n)
Scheme_Object* scheme_make_bignum(intptr_t v)
Scheme_Object* scheme_make_bignum_from_unsigned(uintptr_t v)
double scheme_bignum_to_double(Scheme_Object* n)
float scheme_bignum_to_float(Scheme_Object* n)
Scheme_Object* scheme_bignum_from_double(double d)
Scheme_Object* scheme_bignum_from_float(float f)
char* scheme_bignum_to_string(Scheme_Object* n,
int radix)
Scheme_Object* scheme_read_bignum(mzchar* str,
int offset,
int radix)
Scheme_Object* scheme_read_bignum_bytes(char* str,
int offset,
int radix)
Scheme_Object* scheme_bignum_normalize(Scheme_Object* n)
Scheme_Object* scheme_make_rational(Scheme_Object* n,
Scheme_Object* d)
double scheme_rational_to_double(Scheme_Object* n)
float scheme_rational_to_float(Scheme_Object* n)
Scheme_Object* scheme_rational_numerator(Scheme_Object* n)
Scheme_Object* scheme_rational_denominator(Scheme_Object* n)
Scheme_Object* scheme_rational_from_double(double d)
Scheme_Object* scheme_rational_from_float(float d)
Scheme_Object* scheme_make_complex(Scheme_Object* r,
Scheme_Object* i)
Scheme_Object* scheme_complex_real_part(Scheme_Object* n)
Scheme_Object* scheme_complex_imaginary_part(Scheme_Object* n)
Scheme_Object* scheme_read(Scheme_Object* port)
void scheme_write(Scheme_Object* obj,
Scheme_Object* port)
void scheme_write_w_max(Scheme_Object* obj,
Scheme_Object* port,
int n)
void scheme_display(Scheme_Object* obj,
Scheme_Object* port)
void scheme_display_w_max(Scheme_Object* obj,
Scheme_Object* port,
int n)
void scheme_write_byte_string(char* str,
intptr_t len,
Scheme_Object* port)
void scheme_write_char_string(mzchar* str,
intptr_t len,
Scheme_Object* port)
intptr_t scheme_put_byte_string(const char* who,
Scheme_Object* port,
char* str,
intptr_t d,
intptr_t len,
int rarely_block)
intptr_t scheme_put_char_string(const char* who,
Scheme_Object* port,
char* str,
intptr_t d,
intptr_t len)
char* scheme_write_to_string(Scheme_Object* obj,
intptr_t* len)
void scheme_write_to_string_w_max(Scheme_Object* obj,
intptr_t* len,
int n)
char* scheme_display_to_string(Scheme_Object* obj,
intptr_t* len)
void scheme_display_to_string_w_max(Scheme_Object* obj,
intptr_t* len,
int n)
void scheme_debug_print(Scheme_Object* obj)
void scheme_flush_output(Scheme_Object* port)
int scheme_get_byte(Scheme_Object* port)
int scheme_getc(Scheme_Object* port)
int scheme_peek_byte(Scheme_Object* port)
int scheme_peekc(Scheme_Object* port)
int scheme_peek_byte_skip(Scheme_Object* port,
Scheme_Object* skip)
int scheme_peekc_skip(Scheme_Object* port,
Scheme_Object* skip)
intptr_t scheme_get_byte_string(const char* who,
Scheme_Object* port,
char* buffer,
int offset,
intptr_t size,
int only_avail,
int peek,
Scheme_Object* peek_skip)
intptr_t scheme_get_char_string(const char* who,
Scheme_Object* port,
char* buffer,
int offset,
intptr_t size,
int peek,
Scheme_Object* peek_skip)
intptr_t scheme_get_bytes(Scheme_Object* port,
intptr_t size,
char* buffer,
int offset)
void scheme_ungetc(int ch,
Scheme_Object* port)
int scheme_byte_ready(Scheme_Object* port)
int scheme_char_ready(Scheme_Object* port)
void scheme_need_wakeup(Scheme_Object* port,
void* fds)
intptr_t scheme_tell(Scheme_Object* port)
intptr_t scheme_tell_line(Scheme_Object* port)
void scheme_count_lines(Scheme_Object* port)
intptr_t scheme_set_file_position(Scheme_Object* port,
intptr_t pos)
void scheme_close_input_port(Scheme_Object* port)
void scheme_close_output_port(Scheme_Object* port)
int scheme_get_port_file_descriptor(Scheme_Object* port,
intptr_t* fd)
intptr_t scheme_get_port_fd(Scheme_Object* port)
intptr_t scheme_get_port_socket(Scheme_Object* port,
intptr_t* s)
Scheme_Object* scheme_make_port_type(char* name)
Scheme_Input_Port*
scheme_make_input_port(Scheme_Object* subtype,
void* data,
Scheme_Object* name,
Scheme_Get_String_Fun get_bytes_fun,
Scheme_Peek_String_Fun peek_bytes_fun,
Scheme_Progress_Evt_Fun progress_evt_fun,
Scheme_Peeked_Read_Fun peeked_read_fun,
Scheme_In_Ready_Fun char_ready_fun,
Scheme_Close_Input_Fun close_fun,
Scheme_Need_Wakeup_Input_Fun need_wakeup_fun,
int must_close)
intptr_t get_bytes_fun(Scheme_Input_Port* port,
char* buffer,
intptr_t offset,
intptr_t size,
int nonblock,
Scheme_Object* unless)
intptr_t peek_bytes_fun(Scheme_Input_Port* port,
char* buffer,
intptr_t offset,
intptr_t size,
Scheme_Object* skip,
int nonblock,
Scheme_Object* unless_evt)
Scheme_Object* progress_evt_fun(Scheme_Input_Port* port)
int peeked_read_fun(Scheme_Input_Port* port,
intptr_t amount,
Scheme_Object* unless_evt,
Scheme_Object* target_ch)
int char_ready_fun(Scheme_Input_Port* port)
void close_fun(Scheme_Input_Port* port)
void need_wakeup_fun(Scheme_Input_Port* port,
void* fds)
Scheme_Output_Port*
scheme_make_output_port(Scheme_Object* subtype,
void* data,
Scheme_Object* name,
Scheme_Write_String_Evt_Fun write_bytes_evt_fun,
Scheme_Write_String_Fun write_bytes_fun,
Scheme_Out_Ready_Fun char_ready_fun,
Scheme_Close_Output_Fun close_fun,
Scheme_Need_Wakeup_Output_Fun need_wakeup_fun,
Scheme_Write_Special_Evt_Fun write_special_evt_fun,
Scheme_Write_Special_Fun write_special_fun,
int must_close)
intptr_t write_bytes_evt_fun(Scheme_Output_Port* port,
const char* buffer,
intptr_t offset,
intptr_t size)
intptr_t write_bytes_fun(Scheme_Output_Port* port,
const char* buffer,
intptr_t offset,
intptr_t size,
int rarely_block,
int enable_break)
int char_ready_fun(Scheme_Output_Port* port)
void close_fun(Scheme_Output_Port* port)
void need_wakeup_fun(Scheme_Output_Port* port,
void* fds)
int write_special_evt_fun(Scheme_Output_Port* port,
Scheme_Object* v)
int write_special_fun(Scheme_Output_Port* port,
Scheme_Object* v,
int non_block)
void
scheme_set_port_location_fun(Scheme_Port* port,
Scheme_Location_Fun location_fun)
Scheme_Object* location_fun(Scheme_Port* port)
void
scheme_set_port_count_lines_fun(Scheme_Port* port,
Scheme_Count_Lines_Fun count_lines_fun)
void count_lines_fun(Scheme_Port* port)
void scheme_port_count_lines(Scheme_Port* port,
const char* buffer,
intptr_t offset,
intptr_t got)
Scheme_Object* scheme_make_file_input_port(FILE* fp)
Scheme_Object* scheme_open_input_file(const char* filename,
const char* who)
Scheme_Object*
scheme_make_named_file_input_port(FILE* fp,
Scheme_Object* name)
Scheme_Object* scheme_open_output_file(const char* filename,
const char* who)
Scheme_Object* scheme_make_file_output_port(FILE* fp)
Scheme_Object* scheme_make_fd_input_port(int fd,
Scheme_Object* name,
int regfile,
int win_textmode)
Scheme_Object* scheme_make_fd_output_port(int fd,
Scheme_Object* name,
int regfile,
int win_textmode,
int read_too)
void scheme_socket_to_ports(intptr_t s,
const char* name,
int close,
Scheme_Object** inp,
Scheme_Object** outp)
Scheme_Object* scheme_fd_to_semaphore(intptr_t fd,
int mode,
int is_socket)
Scheme_Object* scheme_make_byte_string_input_port(char* str)
Scheme_Object* scheme_make_byte_string_output_port()
char* scheme_get_byte_string_output(Scheme_Object* port)
char* scheme_get_sized_byte_string_output(Scheme_Object* port,
intptr_t* len)
void scheme_pipe(Scheme_Object** read,
Scheme_Object** write)
void scheme_pipe_with_limit(Scheme_Object** read,
Scheme_Object** write,
int limit)
Scheme_Input_Port* scheme_input_port_record(Scheme_Object* port)
Scheme_Output_Port*
scheme_output_port_record(Scheme_Object* port)
int scheme_file_exists(char* name)
int scheme_directory_exists(char* name)
char* scheme_expand_filename(const char* name,
int len,
const char* where,
int* expanded,
int checks)
char* scheme_expand_string_filename(Scheme_Object* name,
const char* where,
int* expanded,
int checks)
Scheme_Object* scheme_char_string_to_path(Scheme_Object* s)
Scheme_Object* scheme_path_to_char_string(Scheme_Object* s)
Scheme_Object* scheme_make_path(char* bytes)
Scheme_Object* scheme_make_path_without_copying(char* bytes)
Scheme_Object* scheme_make_sized_path(char* bytes,
intptr_t len,
int copy)
Scheme_Object* scheme_make_sized_offset_path(char* bytes,
intptr_t d,
intptr_t len,
int copy)
char* scheme_build_mac_filename(FSSpec* spec,
int isdir)
int scheme_mac_path_to_spec(const char* filename,
FSSpec* spec,
intptr_t* type)
char* scheme_os_getcwd(char* buf,
int buflen,
int* actlen,
int noexn)
int scheme_os_setcwd(char* buf,
int noexn)
char* scheme_format(mzchar* format,
int flen,
int argc,
Scheme_Object** argv,
intptr_t* rlen)
void scheme_printf(char* format,
int flen,
int argc,
Scheme_Object** argv)
char* scheme_format_utf8(char* format,
int flen,
int argc,
Scheme_Object** argv,
intptr_t* rlen)
void scheme_printf_utf8(char* format,
int flen,
int argc,
Scheme_Object** argv)
int scheme_close_should_force_port_closed()
Scheme_Object* scheme_make_struct_type(Scheme_Object* base_name,
Scheme_Object* super_type,
Scheme_Object* inspector,
int num_init_fields,
int num_auto_fields,
Scheme_Object* auto_val,
Scheme_Object* properties,
Scheme_Object* guard)
Scheme_Object**
scheme_make_struct_names(Scheme_Object* base_name,
Scheme_Object* field_names,
int flags,
int* count_out)
Scheme_Object**
scheme_make_struct_values(Scheme_Object* struct_type,
Scheme_Object** names,
int count,
int flags)
Scheme_Object*
scheme_make_struct_instance(Scheme_Object* struct_type,
int argc,
Scheme_Object** argv)
int scheme_is_struct_instance(Scheme_Object* struct_type,
Scheme_Object* v)
Scheme_Object* scheme_struct_ref(Scheme_Object* s,
int n)
void scheme_struct_set(Scheme_Object* s,
int n,
Scheme_Object* v)
void scheme_security_check_file(const char* who,
char* filename,
int guards)
void scheme_security_check_network(const char* who,
char* host,
int portno)
Scheme_Custodian* scheme_make_custodian(Scheme_Custodian* m)
Scheme_Custodian_Reference*
scheme_add_managed (Scheme_Custodian* m,
Scheme_Object* o,
Scheme_Close_Custodian_Client* f,
void* data,
int strong)
Scheme_Custodian_Reference*
scheme_add_managed_close_on_exit(Scheme_Custodian* m,
Scheme_Object* o,
Scheme_Close_Custodian_Client* f,
void* data)
void scheme_custodian_check_available(Scheme_Custodian* m,
const char* name,
const char* resname)
void scheme_remove_managed(Scheme_Custodian_Reference* mref,
Scheme_Object* o)
void scheme_close_managed(Scheme_Custodian* m)
void scheme_add_atexit_closer(Scheme_Exit_Closer_Func f)
int scheme_atexit(Exit_Func func)
int scheme_eq(Scheme_Object* obj1,
Scheme_Object* obj2)
int scheme_eqv(Scheme_Object* obj1,
Scheme_Object* obj2)
int scheme_equal(Scheme_Object* obj1,
Scheme_Object* obj2)
int scheme_recur_equal(Scheme_Object* obj1,
Scheme_Object* obj2,
void* cycle_data)
intptr_t scheme_equal_hash_key(Scheme_Object* obj)
intptr_t scheme_equal_hash_key2(Scheme_Object* obj)
intptr_t scheme_recur_equal_hash_key(Scheme_Object* obj,
void* cycle_data)
intptr_t scheme_recur_equal_hash_key2(Scheme_Object* obj,
void* cycle_data)
Scheme_Object* scheme_build_list(int c,
Scheme_Object** elems)
int scheme_list_length(Scheme_Object* list)
int scheme_proper_list_length(Scheme_Object* list)
Scheme_Object* scheme_car(Scheme_Object* pair)
Scheme_Object* scheme_cdr(Scheme_Object* pair)
Scheme_Object* scheme_cadr(Scheme_Object* pair)
Scheme_Object* scheme_caddr(Scheme_Object* pair)
Scheme_Object* scheme_vector_to_list(Scheme_Object* vec)
Scheme_Object* scheme_list_to_vector(Scheme_Object* list)
Scheme_Object* scheme_append(Scheme_Object* lstx,
Scheme_Object* lsty)
Scheme_Object* scheme_unbox(Scheme_Object* obj)
void scheme_set_box(Scheme_Object* b,
Scheme_Object* v)
Scheme_Object* scheme_dynamic_require(int argc,
Scheme_Object** argv)
Scheme_Object*
scheme_namespace_require(Scheme_Object* prim_req_spec)
Scheme_Object* scheme_load(char* file)
Scheme_Object* scheme_load_extension(char* filename)
Scheme_Hash_Table* scheme_make_hash_table(int type)
Scheme_Hash_Table* scheme_make_hash_table_equal()
void scheme_hash_set(Scheme_Hash_Table* table,
Scheme_Object* key,
Scheme_Object* val)
Scheme_Object* scheme_hash_get(Scheme_Hash_Table* table,
Scheme_Object* key)
Scheme_Bucket_Table* scheme_make_bucket_table(int size_hint,
int type)
void scheme_add_to_table(Scheme_Bucket_Table* table,
const char* key,
void* val,
int const)
void scheme_change_in_table(Scheme_Bucket_Table* table,
const char* key,
void* val)
void* scheme_lookup_in_table(Scheme_Bucket_Table* table,
const char* key)
Scheme_Bucket*
scheme_bucket_from_table(Scheme_Bucket_Table* table,
const char* key)
Scheme_Hash_Tree* scheme_make_hash_tree(int type)
void scheme_hash_tree_set(Scheme_Hash_Tree* table,
Scheme_Object* key,
Scheme_Object* val)
Scheme_Object* scheme_hash_tree_get(Scheme_Hash_Tree* table,
Scheme_Object* key)
intptr_t scheme_double_to_int(char* where,
double d)
intptr_t scheme_get_milliseconds()
intptr_t scheme_get_process_milliseconds()
intptr_t scheme_get_process_children_milliseconds()
char* scheme_banner()
char* scheme_version()
Scheme_Hash_Table* scheme_get_place_table()
Scheme_Object* scheme_malloc_key()
void scheme_free_key(Scheme_Object* key)
void* scheme_register_process_global(const char* key,
void* val)
void* scheme_jit_find_code_end(void* p)
void scheme_jit_now(Scheme_Object* val)
| false |
07424fff06f0caa96b12b37e49315ace26c8eabd | ec65ae8f1c9326112386326bd6aa1eb5ebfad708 | /parsack-test/tests/parsack/bytestring-tests.rkt | d27e587635ab006811df6edf341bf151975c0334 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
]
| permissive | stchang/parsack | 84d3b90a17b51c8dc507efa865a481c6b21e5b66 | 57b21873e8e3eb7ffbdfa253251c3c27a66723b1 | refs/heads/master | 2022-12-12T02:47:51.709492 | 2022-07-11T00:48:34 | 2022-07-12T15:56:35 | 11,594,281 | 44 | 9 | MIT | 2022-12-03T03:52:37 | 2013-07-22T22:46:20 | Racket | UTF-8 | Racket | false | false | 580 | rkt | bytestring-tests.rkt | #lang racket
(require parsack rackunit "test-utils.rkt")
(check-equal? (parse-result (byte 97) "a") 97)
(check-parse-error
((byte 97) "b")
(fmt-err-msg 1 1 1 "b" (list "a")))
(check-equal?
(bytes->string/utf-8 (apply bytes (parse-result (bytestring #"apple") "apple")))
"apple")
(check-equal?
(bytes->string/utf-8 (apply bytes (parse-result (bytestring #"apple") "apples")))
"apple")
(check-parse-error
((bytestring #"apple") "appl")
(fmt-err-msg 1 5 5 "end of input" (list "e")))
(check-parse-error
((bytestring #"apple") "appd")
(fmt-err-msg 1 4 4 "d" (list "l"))) | false |
4c30bf4ccbe0bd3320a11e69ccd76bfd6eae6645 | b0c07ea2a04ceaa1e988d4a0a61323cda5c43e31 | /www/midterms/2.scrbl | f464a3f5f22815ef75e81a84e5db41fe432ba35a | [
"AFL-3.0"
]
| permissive | cmsc430/www | effa48f2e69fb1fd78910227778a1eb0078e0161 | 82864f846a7f8f6645821e237de42fac94dff157 | refs/heads/main | 2023-09-03T17:40:58.733672 | 2023-08-28T15:26:33 | 2023-08-28T15:26:33 | 183,064,322 | 39 | 30 | null | 2023-08-28T15:49:59 | 2019-04-23T17:30:12 | Racket | UTF-8 | Racket | false | false | 1,200 | scrbl | 2.scrbl | #lang scribble/manual
@(require (for-label racket)
"../notes/ev.rkt")
@(require "../defns.rkt")
@title{Midterm 2}
@bold{Due: @m2-date 11:59PM}
Midterm 2 will be released at least @midterm-hours hours prior to
its due date.
@section{Instructions}
The midterm will be released as a zip file @tt{m2.zip} on ELMS.
There are several parts to this midterm. Each part has its own directory
with a README and supplementary files. Read the README in each part
for instructions on how to complete that part of the midterm.
@section{Communications}
If you have questions about the exam, send a DM to ModMail on Discord.
This will go to the entire course staff.
Answers to common clarifying questions will be posted to the
@tt{#midterm-2} channel on Discord.
If you have trouble reaching the course staff via Discord, email
@tt|{[email protected]}|.
You may not communicate with anyone outside of the course staff about
the midterm.
@section{Submissions}
You should submit your work as a single zip file of this directory on
Gradescope. Unlike past assignments, Gradescope will not provide
feedback on the correctness of your solutions so you are encouraged to
check your own work.
| false |
8e9632dfc7c94280edeb9ce7c0cc321b2bffa118 | 5bbc152058cea0c50b84216be04650fa8837a94b | /tools/summarize/bitstring.rkt | b4038e6754e6ae2043fbe3cb03bb91007c7e2212 | []
| 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 | 8,843 | rkt | bitstring.rkt | #lang typed/racket
;; A bitstring is a string of #\1 and #\0.
;; Technically bitstrings of unequal length are incompatible,
;; but our scripts do nothing to enforce this.
;; Maybe someday we'll migrate to bit-vectors or bitwise operations:
;; docs.racket-lang.org/data/bit-vector.html
;; docs.racket-lang.org/reference/generic-numbers.html
(define-type Bitstring String)
(provide
Bitstring
all-paths-from
;; (-> Bitstring (Sequenceof (Listof Bitstring)))
log2
;; (-> Natural Natural)
;; Base 2 log, on naturals
natural->bitstring
;; (-> Index #:pad Index Bitstring)
;; Convert a natural number to a binary string representation
;; Keyword argument #:pad sets the width of the result string
bitstring->natural
;; (-> Bitstring Index)
;; Convert a string representation of a binary number to a natural.
in-reach
;; (-> Bitstring Index (Listof Bitstring))
;; (in-reach s l)
;; List all bitstrings reachable from `s` by flipping at most `l` bits
bit-high?
;; (-> Bitstring Index Boolean)
;; True if the bit at the index is set
bit-low?
;; (-> Bitstring Index Boolean)
;; True if the bit at the index is unset
)
;; -----------------------------------------------------------------------------
(require
(only-in racket/math exact-ceiling)
(only-in racket/format ~r)
(only-in racket/list remove-duplicates)
(only-in math/number-theory factorial)
(only-in racket/sequence sequence-map)
)
;; =============================================================================
(: power-of-2? (-> Natural Boolean))
(define (power-of-2? n)
(and (not (= 1 n))
(zero? (bitwise-and n (- n 1)))))
;; Compute an exact base 2 logarithm, if the input has one.
;; Fails otherwise.
(: log2 (-> Natural Natural))
(define (log2 n)
(unless (power-of-2? n)
(raise-argument-error 'log2 "Natural divisible by 2" n))
(: log2-help (-> Natural Natural Natural))
(define (log2-help pow acc)
(if (= acc n) pow (log2-help (add1 pow) (* acc 2))))
(log2-help 1 2))
;; Convert a natural number to a binary string, padded to the supplied width
(: natural->bitstring (-> Index #:pad Exact-Positive-Integer Bitstring))
(define (natural->bitstring n #:pad pad-width)
(~r n #:base 2 #:min-width pad-width #:pad-string "0"))
;; Convert a binary string to a natural number
(: bitstring->natural (-> Bitstring Index))
(define (bitstring->natural str)
(define N (string-length str))
(define res
(for/sum : Integer ([i (in-range N)])
(define c (string-ref str (- N (add1 i))))
(if (equal? #\1 c)
(exact-ceiling (expt 2 i))
0)))
(if (index? res) res (error 'bitstring->natural)))
;; Return a copy of `str` where the `i`-th bit is flipped.
;; (Flipped => 0 goes to 1 and 1 goes to 0)
;; Should take an INDEX, but is Integer for now
(: bitstring-flip (-> Bitstring Integer Bitstring))
(define (bitstring-flip str i)
(define new (if (equal? #\0 (string-ref str i)) "1" "0"))
(string-append (substring str 0 i)
new
(substring str (add1 i) (string-length str))))
;; Return all bitstrings reachable from `str`
;; after incrementing at most `L` bits.
;; Result does NOT include the argument bitstring.
(: in-reach (-> Bitstring Index (Listof Bitstring)))
(define (in-reach str L)
(cond [(zero? L) '()]
[else
(define res* : (Listof (Listof Bitstring))
(for/list ([i (in-range (string-length str))]
#:when (equal? #\0 (string-ref str i)))
(define str+ (bitstring-flip str i))
(cons str+ (in-reach str+ (sub1 L)))))
(remove-duplicates (apply append res*) string=?)]))
;; Goal: enumerate all lists of N strings (where N = length of argument)
;; such that the first string in each list is all zeroes and subsequent
;; elements have one 1 in a position where the previous had a 0.
(: all-paths-from (-> Bitstring (Sequenceof (Listof Bitstring))))
(define (all-paths-from str)
(sequence-map
permutation->path
(in-permutations (range (string-length str)))))
(: permutation->path (-> (Listof Natural) (Listof Bitstring)))
(define (permutation->path index*)
(define L (length index*))
;; Create the path in reverse order
(for/fold ([acc (list (bitstring-init L #:hi? #t))])
([i (in-list index*)])
(cons (bitstring-flip (car acc) i) acc)))
(: bitstring-init (->* [Natural] [#:hi? Boolean] Bitstring))
(define (bitstring-init n #:hi? [hi? #f])
(make-string n (if hi? #\1 #\0)))
(: all-high? (-> Bitstring Boolean))
(define (all-high? str)
(for/and ([i : Natural (in-range (string-length str))])
(bit-high? str i)))
(: all-low? (-> Bitstring Boolean))
(define (all-low? str)
(for/and ([i : Natural (in-range (string-length str))])
(bit-low? str i)))
(: bit-high? (-> Bitstring Natural Boolean))
(define (bit-high? str i)
(high? (string-ref str i)))
(: bit-low? (-> Bitstring Natural Boolean))
(define (bit-low? str i)
(low? (string-ref str i)))
(: high? (-> Char Boolean))
(define (high? c)
(eq? #\1 c))
(: low? (-> Char Boolean))
(define (low? c)
(eq? #\0 c))
;; =============================================================================
(module+ test
(require typed/rackunit)
;; -- power-of-2?
(check-true (power-of-2? 0))
(check-true (power-of-2? 2))
(check-true (power-of-2? 4))
(check-true (power-of-2? 8))
(check-false (power-of-2? 1))
(check-false (power-of-2? 3))
(check-false (power-of-2? 5))
(check-false (power-of-2? 13))
(check-false (power-of-2? 9000))
;; -- log2
;(check-equal? (log2 1) 0)
(check-equal? (log2 2) 1)
(check-equal? (log2 32) 5)
(check-equal? (log2 1024) 10)
(check-exn exn:fail:contract?
(lambda () (log2 1)))
(check-exn exn:fail:contract?
(lambda () (log2 3)))
;; -- natural->bitstring
(check-equal? (natural->bitstring 2 #:pad 2) "10")
(check-equal? (natural->bitstring 2 #:pad 10) "0000000010")
;; -- bitstring->natural
(check-equal? (bitstring->natural "10") 2)
(check-equal? (bitstring->natural "00010") 2)
;; -- in-reach
(define-syntax-rule (in-reach-test bitstring pad result)
(check-equal? (sort (in-reach bitstring pad) string>?)
result))
(in-reach-test "0" 0 '())
(in-reach-test "111111" 0 '())
(in-reach-test "10101" 0 '())
(in-reach-test "0" 1 '("1"))
(in-reach-test "111" 1 '())
(in-reach-test "10101" 1 '("11101" "10111"))
(in-reach-test "0001" 1 '("1001" "0101" "0011"))
(in-reach-test "0" 3 '("1"))
(in-reach-test "110" 3 '("111"))
(in-reach-test "10010" 3 '("11111" "11110" "11011" "11010" "10111" "10110" "10011"))
;; -- all-paths-from
(define-syntax-rule (check-all-paths [in out] ...)
(begin (check-equal?
(for/list : (Listof (Listof Bitstring))
([p (all-paths-from in)])
p)
out) ...))
(check-all-paths
;["" '(())]
["0" '(("0" "1"))]
;["1" '(("1"))]
["00" '(("00" "10" "11")
("00" "01" "11"))]
["000" '(("000" "100" "110" "111")
("000" "100" "101" "111")
("000" "010" "110" "111")
("000" "010" "011" "111")
("000" "001" "101" "111")
("000" "001" "011" "111"))])
;; If this doesn't return immediately, we have a bug
(let* ([all_10 (all-paths-from (make-string 20 #\0))]
[first_path (car (for/list : (Listof (Listof Bitstring))
([a all_10] [_i (in-range 1)]) a))])
(check-equal? (length first_path) 21))
;; -- bitstring-flip
(check-equal? (bitstring-flip "0" 0) "1")
(check-equal? (bitstring-flip "1" 0) "0")
(check-equal? (bitstring-flip "0010" 2) "0000")
(check-equal? (bitstring-flip "11011" 4) "11010")
(check-equal? (bitstring-flip "000" 0) "100")
;; -- all-high? / low
(check-true (all-high? "1111"))
(check-true (all-high? "1"))
(check-false (all-high? "0"))
(check-false (all-high? "00010"))
(check-false (all-low? "1101"))
(check-false (all-low? "1"))
(check-true (all-low? "0"))
(check-true (all-low? "00000"))
;; -- bit-high? bit-low?
(check-true (bit-high? "1111" 0))
(check-true (bit-high? "1111" 1))
(check-true (bit-high? "1111" 2))
(check-true (bit-high? "1111" 3))
(check-true (bit-high? "1001" 0))
(check-true (bit-high? "1001" 3))
(check-false (bit-high? "1001" 1))
(check-false (bit-high? "1001" 2))
(check-false (bit-high? "00" 0))
(check-false (bit-high? "00" 1))
(check-false (bit-low? "1111" 0))
(check-false (bit-low? "1111" 1))
(check-false (bit-low? "1111" 2))
(check-false (bit-low? "1111" 3))
(check-false (bit-low? "1001" 0))
(check-false (bit-low? "1001" 3))
(check-true (bit-low? "1001" 1))
(check-true (bit-low? "1001" 2))
(check-true (bit-low? "00" 0))
(check-true (bit-low? "00" 1))
)
| true |
ed87bb6c8e0d3c05c4646a864a1463bb9fbe6db0 | 51100f6ec55c354fa890d23c9597ca313101acae | /explainer1/scenes/scene2.rkt | df919c10388d2a07f0a3f0c9ebf5fb6511f2cace | []
| no_license | thoughtstem/TS-Animations | 5abd806abcd6c8b8a5392d0bf4ab4730dcca1dc0 | daa1fcfd611f969ad06752df045f97fd9c372d5d | refs/heads/master | 2022-02-21T05:59:54.588430 | 2019-10-14T22:58:42 | 2019-10-14T22:58:42 | 208,923,338 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,677 | rkt | scene2.rkt | #lang racket
(provide scene2 brain-computer-pair)
(require meta-engine 2htdp/image "../assets.rkt")
(define (brain1 . cs)
(add-or-replace-components
(brain-entity
(relative-size 1)
(relative-rotation 0)
(relative-position (posn 0 0))
#:left-eye (left-eye
(counter 0 (^ add1))
(sprite normal-eye-sprite
(blink-timeline #:delay 20)))
#:right-eye (right-eye
(counter 0 (^ add1))
(sprite normal-eye-sprite
(blink-timeline #:delay 20))))
cs))
(define (computer1 #:sprite (s (next-computer-body-sprite)) . cs)
(add-or-replace-components
(computer-entity
#:body (body (sprite s))
(relative-size 1)
(relative-rotation 0)
(relative-position (posn 0 0)))
cs))
(define (zip-to #:delay (del 0) dest e)
(parent
(normal-counter)
(destination dest)
(relative-position
(posn 0 0)
(after del
(move-to-destination 10)))
(children e)))
(define (brain-computer-pair (p1 (posn -50 0))
(p2 (posn 50 0))
#:size (s 1))
(parent
(relative-position (posn 0 0))
(children
(brain1
(relative-size s)
(relative-position p1))
(computer1
(relative-size s)
(relative-position p2)))))
(define (network . cs)
(add-or-replace-components
(parent
(children
(grow-pop-enter
(brain-computer-pair
(posn 50 -100)
(posn 50 -200)))
(pause-until 50
(grow-pop-enter
(brain-computer-pair
(posn -50 -200)
(posn -150 -200))))
(pause-until 100
(grow-pop-enter
(brain-computer-pair
(posn 50 100)
(posn 50 200))))
(pause-until 150
(grow-pop-enter
(brain-computer-pair
(posn -50 200)
(posn -150 200))))
(pause-until 200
(grow-pop-enter
(brain-computer-pair
(posn 250 -100)
(posn 150 -100))))))
cs))
(define (first-network)
(parent
(normal-counter)
(relative-position (posn 0 0))
;Start large, get small
(relative-size 1
(after 500
(to 0.5 #:by 0.1)))
(children
;Show one brain. Hold...
(zip-to #:delay 50
(posn -50 0)
(grow-pop-enter (brain1)))
;Show one computer Hold...
(pause-until 100
(zip-to #:delay 50
(posn 50 0)
(grow-pop-enter
(computer1 #:sprite computer-body-sprite-green))))
;As we shrink, pop in rest of computer/brain network
(pause-until 300 (network)))))
(define (second-network p)
(parent
(normal-counter)
(relative-position p)
(relative-size 0.5)
(children
(grow-pop-enter (brain1 (relative-position (posn -50 0))))
(grow-pop-enter (computer1 (relative-position (posn 50 0))))
(network))))
(define (pulsing-icon-callout p icon)
(parent
(relative-position p)
(children
(grow-pop-enter
(parent
(normal-counter)
(relative-size 1
(+ 1 (/ (sin (/ (get-counter) 10)) 30)))
(children
icon
(callout)))))))
(define (school)
(pulsing-icon-callout
(posn 150 125)
(school-icon
(relative-size 0.5)
(relative-position (posn 200 200)))))
(define (factory)
(pulsing-icon-callout
(posn -150 -125)
(factory-icon
(relative-size 0.5)
(relative-position (posn -200 200)))))
(define (government)
(pulsing-icon-callout
(posn 150 -125)
(government-icon
(relative-size 0.5)
(relative-position (posn 200 -200)))))
(define (school/government/factory)
(parent
(children
(school)
(pause-until 100 (government))
(pause-until 200 (factory)))))
(define (scene2)
(define begin-exiting 1200)
(parent
(normal-counter)
(relative-position (off-screen) (center-posn))
(relative-rotation 0 (after begin-exiting (+ (get-local-rotation) 0.01)))
(children
(pause-until begin-exiting
(parent
(relative-rotation 0
(+ (get-local-rotation) 0.01))
(relative-position (posn 0 0))
(children
(grow-pop-enter
(earth
(transparency 0.5))))))
(parent
(relative-size 1 (after begin-exiting (to 0.5 #:by 0.01)))
(normal-counter)
(children
;Show first network -- hold longer on each character
(first-network)
;Show second network (different location)
(pause-until 500
(second-network (posn 300 300)))
;A couple beats later, show second network (different location)
(pause-until 600
(second-network (posn -300 -300)))
;Call-outs on portions of the overall network: school, factory, government
(pause-until 800
(school/government/factory))
)))))
(module+ test
(anim
(scene2)
(bg)))
| false |
06bc505a0e387f226d09a6669a8cdd66b7b1d4c1 | c31f57f961c902b12c900ad16e5390eaf5c60427 | /data/programming_languages/scheme/request.rkt | a49bfdfbc3eeee4c379c4a18e474ed21f6fed4f7 | []
| no_license | klgraham/deep-learning-with-pytorch | ccc7602d9412fb335fe1411ba31641b9311a4dba | 4373f1c8be8e091ea7d4afafc81dd7011ef5ca95 | refs/heads/master | 2022-10-24T01:48:46.160478 | 2017-03-13T20:07:03 | 2017-03-13T20:07:03 | 79,877,434 | 0 | 1 | null | 2022-10-02T20:42:36 | 2017-01-24T04:12:24 | C | UTF-8 | Racket | false | false | 15,160 | rkt | request.rkt | #lang racket/base
(require racket/contract
racket/match
racket/list
racket/promise
net/url
net/uri-codec
web-server/private/util
web-server/private/connection-manager
web-server/http/request-structs)
(define read-request/c
(connection?
listen-port-number?
(input-port? . -> . (values string? string?))
. -> .
(values request? boolean?)))
(provide/contract
[parse-bindings (-> bytes? (listof binding?))]
[read-headers (-> input-port? (listof header?))]
[rename make-ext:read-request make-read-request
(->* () (#:connection-close? boolean?) read-request/c)]
[rename ext:read-request read-request
read-request/c])
;; **************************************************
;; read-request: connection number (input-port -> string string) -> request boolean?
;; read the request line, and the headers, determine if the connection should
;; be closed after servicing the request and build a request structure
(define ((make-read-request
#:connection-close? [connection-close? #f])
conn host-port port-addresses)
(define ip
(connection-i-port conn))
(define-values (method uri major minor)
(read-request-line ip))
(define initial-headers
(read-headers ip))
(match (headers-assq* #"Content-Length" initial-headers)
[(struct header (f v))
;; Give it one second per byte (with 5 second minimum... a bit
;; arbitrary)
(adjust-connection-timeout!
conn (max 5 (string->number (bytes->string/utf-8 v))))]
[#f
(void)])
(define-values (data-ip headers)
(complete-request ip initial-headers))
(define-values (host-ip client-ip)
(port-addresses ip))
(define-values (bindings/raw-promise raw-post-data)
(read-bindings&post-data/raw data-ip method uri headers))
(values
(make-request method uri headers bindings/raw-promise raw-post-data
host-ip host-port client-ip)
(or connection-close?
(close-connection? headers major minor
client-ip host-ip))))
;; If the headers says it uses chunked transfer encoding, then decode
;; it
(require racket/stxparam
(for-syntax racket/base))
(define-syntax-parameter break
(λ (stx)
(raise-syntax-error 'break "Used outside forever" stx)))
(define-syntax-rule (forever e ...)
(let/ec this-break
(let loop ()
(syntax-parameterize ([break (make-rename-transformer #'this-break)])
(begin e ...))
(loop))))
(define (hex-string->number s)
(string->number s 16))
(define (complete-request real-ip initial-headers)
(match (headers-assq* #"Transfer-Encoding" initial-headers)
[(struct header (f #"chunked"))
(define-values (decoded-ip decode-op) (make-pipe))
(define total-size 0)
(forever
(define size-line (read-line real-ip 'any))
(match-define (cons size-in-hex _) (regexp-split #rx";" size-line))
(define size-in-bytes (hex-string->number size-in-hex))
(set! total-size (+ total-size size-in-bytes))
(when (zero? size-in-bytes)
(break))
(define data-bytes (read-bytes size-in-bytes real-ip))
(write-bytes data-bytes decode-op)
;; Ignore CRLF
(read-line real-ip 'any))
(define more-headers
(list* (header #"Content-Length"
(string->bytes/utf-8 (number->string total-size)))
(read-headers real-ip)))
(close-output-port decode-op)
(values decoded-ip (append initial-headers more-headers))]
[_
(values real-ip initial-headers)]))
(define (make-ext:read-request
#:connection-close? [connection-close? #f])
(define read-request
(make-read-request #:connection-close? connection-close?))
(define (ext:read-request conn host-port port-addresses)
(with-handlers ([exn:fail?
(lambda (exn)
(kill-connection! conn)
(raise exn))])
(read-request conn host-port port-addresses)))
ext:read-request)
(define ext:read-request (make-ext:read-request #:connection-close? #f))
;; **************************************************
;; close-connection?
; close-connection? : (listof (cons symbol bytes)) number number string string -> boolean
;; determine if this connection should be closed after serving the
;; response
(define close-connection?
(let ([rx (byte-regexp #"[cC][lL][oO][sS][eE]")])
(lambda (headers major minor client-ip host-ip)
(or (< major 1)
(and (= major 1) (= minor 0))
(match (headers-assq* #"Connection" headers)
[(struct header (f v))
(and (regexp-match rx v)
#t)]
[#f
#f])
(msie-from-local-machine? headers client-ip host-ip)))))
;; msie-from-local-machine? : table str str -> bool
;; to work around an error in MSIE for documents < 265 bytes when
;; connecting from the local machine. The server could pad the
;; response as MSIIS does, but closing the connection works, too. We
;; do not check for version numbers since IE 6 under windows is 5.2
;; under macosX
(define msie-from-local-machine?
(let ([rx (byte-regexp #"MSIE")])
(lambda (headers client-ip host-ip)
(and (string=? host-ip client-ip)
(match
(or (headers-assq* #"HTTP_USER_AGENT" headers)
(headers-assq* #"User-Agent" headers))
[(struct header (f v))
(and (regexp-match rx v)
#t)]
[#f
#f])))))
;; **************************************************
;; read-request-line
(define match-method
(let ([rx (byte-regexp #"^([^ ]+) (.+) HTTP/([0-9]+)\\.([0-9]+)$")])
(lambda (a) (regexp-match rx a))))
; read-request-line : iport -> bytes url number number
; to read in the first line of an http request, AKA the "request line"
; effect: in case of errors, complain [MF: where] and close the ports
(define (read-request-line ip)
(define line (read-bytes-line ip 'any))
(if (eof-object? line)
(network-error 'read-request "http input closed abruptly")
(cond
[(match-method line)
=> (match-lambda
[(list _ method url major minor)
(values method
(string->url (bytes->string/utf-8 url))
(string->number (bytes->string/utf-8 major))
(string->number (bytes->string/utf-8 minor)))])]
[else (network-error 'read-request "malformed request ~a" line)])))
;; **************************************************
;; read-headers
(define match-colon
(let ([rx (byte-regexp (bytes-append #"^([^:]*):[ " (bytes 9) #"]*(.*)"))])
(lambda (a) (regexp-match rx a))))
; read-headers : iport -> (listof header?)
(define (read-headers in)
(let read-header ()
(define l (read-bytes-line in 'any))
(cond
[(eof-object? l) null]
[(zero? (bytes-length l)) null]
[(match-colon l)
=> (match-lambda
[(list _ field value)
(list* (make-header field (read-one-head in value))
(read-header))])]
[else (network-error 'read-headers "malformed header: ~e" l)])))
; read-one-head : iport bytes -> bytes
(define (read-one-head in rhs)
(match (peek-byte in)
[(or 32 9) ;(or (eq? c #\space) (eq? c #\tab))
; (read-bytes-line in 'any) can't return eof
; because we just checked with peek-char
; Spidey: FLOW
(read-one-head in (bytes-append rhs (read-bytes-line in 'any)))]
[_ rhs]))
;; **************************************************
;; read-bindings
(define INPUT-BUFFER-SIZE 4096)
(define (read-to-eof in)
(define b (read-bytes INPUT-BUFFER-SIZE in))
(if (eof-object? b)
empty
(list* b (read-to-eof in))))
(define FILE-FORM-REGEXP (byte-regexp #"multipart/form-data; *boundary=(.*)"))
;; read-bindings&post-data/raw: input-port symbol url (listof header?) -> (values (or/c (listof binding?) string?) (or/c bytes? false/c?))
(define (read-bindings&post-data/raw in meth uri headers)
(define bindings-GET
(delay
(filter-map
(match-lambda
[(list-rest k v)
(if (and (symbol? k) (string? v))
(make-binding:form (string->bytes/utf-8 (symbol->string k))
(string->bytes/utf-8 v))
#f)])
(url-query uri))))
(cond
[(bytes-ci=? #"GET" meth)
(values bindings-GET #f)]
[(bytes-ci=? #"POST" meth)
(define content-type (headers-assq* #"Content-Type" headers))
(cond
[(and content-type
(regexp-match FILE-FORM-REGEXP (header-value content-type)))
=> (match-lambda
[(list _ content-boundary)
;; XXX This can't be delay because it reads from the
;; port, which would otherwise be closed. I think
;; this is reasonable because the Content-Type
;; said it would have this format
(define bs
(map (match-lambda
[(struct mime-part (headers contents))
(define rhs
(header-value
(headers-assq* #"Content-Disposition" headers)))
(match*
((regexp-match #"filename=(\"([^\"]*)\"|([^ ;]*))" rhs)
(regexp-match #"[^e]name=(\"([^\"]*)\"|([^ ;]*))" rhs))
[(#f #f)
(network-error
'reading-bindings
"Couldn't extract form field name for file upload")]
[(#f (list _ _ f0 f1))
(make-binding:form (or f0 f1)
(apply bytes-append contents))]
[((list _ _ f00 f01) (list _ _ f10 f11))
(make-binding:file (or f10 f11)
(or f00 f01)
headers
(apply bytes-append contents))])])
(read-mime-multipart content-boundary in)))
(values
(delay (append (force bindings-GET) bs))
#f)])]
[else
(match (headers-assq* #"Content-Length" headers)
[(struct header (_ value))
(cond
[(string->number (bytes->string/utf-8 value))
=> (lambda (len)
(let ([raw-bytes (read-bytes len in)])
(cond
[(eof-object? raw-bytes)
(network-error
'read-bindings
"Post data ended pre-maturely")]
[else
(values (delay
(append
(parse-bindings raw-bytes)
(force bindings-GET)))
raw-bytes)])))]
[else
(network-error
'read-bindings
"Post request contained a non-numeric content-length")])]
[#f
(values (delay empty) #f)])])]
[meth
(define content-type (headers-assq* #"Content-Type" headers))
(match (headers-assq* #"Content-Length" headers)
[(struct header (_ value))
(cond [(string->number (bytes->string/utf-8 value))
=> (lambda (len)
(let ([raw-bytes (read-bytes len in)])
(cond
[(eof-object? raw-bytes)
(network-error
'read-bindings
"Post data ended pre-maturely")]
[else
(values (delay empty) raw-bytes)])))]
[else
(network-error
'read-bindings
"Non-GET/POST request contained a non-numeric content-length")])]
[#f
(values (delay empty) #f)])]))
;; parse-bindings : bytes? -> (listof binding?)
(define (parse-bindings raw)
(define len (bytes-length raw))
(let loop ([start 0])
(let find= ([key-end start])
(if (>= key-end len)
empty
(if (eq? (bytes-ref raw key-end) (char->integer #\=))
(let find-amp ([amp-end (add1 key-end)])
(if (or (= amp-end len) (eq? (bytes-ref raw amp-end) (char->integer #\&)))
(list* (make-binding:form
(string->bytes/utf-8
(form-urlencoded-decode
(bytes->string/utf-8
(subbytes raw start key-end))))
(string->bytes/utf-8
(form-urlencoded-decode
(bytes->string/utf-8
(subbytes raw (add1 key-end) amp-end)))))
(loop (add1 amp-end)))
(find-amp (add1 amp-end))))
(find= (add1 key-end)))))))
;; **************************************************
;; read-mime-multipart
; mime-part : (listof header?) * (listof bytes?)
(define-struct mime-part (headers contents))
(define CR-NL #"\r\n")
(define (construct-mime-part headers body)
(make-mime-part
headers
(match body
[(list)
(list)]
[(list-rest fst rst)
(list* fst
(foldr (lambda (byt acc)
(list* CR-NL byt acc))
empty
rst))])))
; read-mime-multipart : bytes iport -> (listof part)
(define (read-mime-multipart boundary in)
(define boundary-len (bytes-length boundary))
(define start-boundary (bytes-append #"--" boundary))
(define end-boundary (bytes-append start-boundary #"--"))
(let skip-preamble ()
(define line (read-bytes-line in 'return-linefeed))
(cond
[(eof-object? line)
(network-error 'read-mime-multipart "Port prematurely closed.")]
[(bytes=? line start-boundary)
(let read-parts ()
(define headers (read-headers in))
(let read-mime-part-body
([more-k (lambda (contents)
(list* (construct-mime-part
headers contents)
(read-parts)))]
[end-k (lambda (contents)
(list (construct-mime-part
headers contents)))])
(define line (read-bytes-line in 'return-linefeed))
(cond
[(eof-object? line)
(network-error 'read-mime-multipart "Port prematurely closed.")]
[(bytes=? line start-boundary)
(more-k empty)]
[(bytes=? line end-boundary)
(end-k empty)]
[else
(read-mime-part-body
(lambda (x) (more-k (list* line x)))
(lambda (x) (end-k (list* line x))))])))]
[(bytes=? line end-boundary) null]
[else (skip-preamble)])))
| true |
8b059f4aa5c2a6fe782b8a59ea62dcd0244b2d4c | 00bc49d65db47db55d79664714dd18f91653647a | /alpha-conversion.rkt | af67195a0e149f955ce3deb985bdb64adc7f80fd | []
| no_license | Flexilis/Skiffle | 72be5ac1b084937946179ae4bb58808f05ad6f7d | d3830ce8fc8847e72cbbc9470677c040a0a810e2 | refs/heads/master | 2022-04-14T20:03:53.673002 | 2020-04-04T04:28:33 | 2020-04-04T04:28:33 | 250,324,044 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,774 | rkt | alpha-conversion.rkt | #lang racket
(require "general-walker.rkt")
(provide alpha-convert)
;; e ::= (begin e*) | (let ((sym e)*) e*) | (lambda (sym*) e*) | (e e*) | sym
;; --->>>
;; e ::= (begin e*) | (let ((sym e)*) e*) | (lambda (sym*) e*) | (e e*) | sym
(define primitives '(((lambda . lambda) (if . if) (let . let) (begin . begin) (+ . +))))
(define-syntax-rule (if-true-ret expr1 expr2)
(let ([e expr1])
(if e e expr2)))
(define (lookup-in-scope name scope)
(cond
[(null? scope) #f]
[(eq? name (caar scope)) (cdar scope)]
[else (lookup-in-scope name (cdr scope))]))
(define (lookup name scopes)
(if (null? scopes)
(error (~a "Error: '" name "' not found."))
(if-true-ret
(lookup-in-scope name (car scopes))
(lookup name (cdr scopes)))))
(define (alpha-convert code)
(alpha-convert-block code primitives))
(define gen-name
(let ([names 0])
(λ ()
(set! names (add1 names))
(string->symbol (~a "v" names)))))
(define (alpha-convert-expr expr scopes)
(match expr
[(? symbol?) (lookup expr scopes)]
[(list 'begin (list exprs ...))
(alpha-convert-block exprs scopes)]
[(list 'if cond if-branch else-branch)
(list 'if
(alpha-convert-expr cond scopes)
(alpha-convert-expr if-branch scopes)
(alpha-convert-expr else-branch scopes))]
[(list 'lambda (list names ...) body ...)
(let* ([new-names (map (λ e (gen-name)) names)]
[new-scope (merge-lists names new-names)])
(list-rest
'lambda
(map (λ (e) (lookup-in-scope e new-scope)) names)
(alpha-convert-block body (cons new-scope scopes))))]
[(list 'let (list (list names values) ...) body ..1)
(let* ([new-names (map (λ e (gen-name)) names)]
[new-scope (merge-lists names new-names)]
[new-values (map (λ (e) (alpha-convert-expr e scopes)) values)]
[new-namevals (build-assoc new-names new-values)])
(list-rest
'let
new-namevals
(alpha-convert-block body (cons new-scope scopes))))]
[(list expr1 args ...)
(cons
(alpha-convert-expr expr1 scopes)
(map (λ (e) (alpha-convert-expr e scopes)) args))]
[other other]))
(define (alpha-convert-block block scopes)
(if (null? block) '()
(match (car block)
[(list 'define name body)
(let ([new-name (gen-name)])
(cons
(list 'define new-name (alpha-convert-expr body scopes))
(alpha-convert-block
(cdr block)
(cons
(list (cons name new-name))
scopes))))]
[other
(cons
(alpha-convert-expr other scopes)
(alpha-convert-block (cdr block) scopes))])))
| true |
00fa1b85cdb766848ae42fd6e8f47c3a031abe2f | 6359e6a83c6e867c7ec4ee97c5b4215fe6867fdf | /survival-pokemon/lang/main.rkt | dd317b46f3643d7b201d9e03fd233a946e952592 | []
| no_license | thoughtstem/TS-GE-Languages | 629cba7d38775f4b636b328dfe8297cd79b5e787 | 49a8ad283230e5bcc38d583056271876c5d6556e | refs/heads/master | 2020-04-13T21:22:38.618374 | 2020-02-03T22:44:30 | 2020-02-03T22:44:30 | 163,454,521 | 3 | 0 | null | 2020-02-03T22:44:32 | 2018-12-28T22:28:18 | Racket | UTF-8 | Racket | false | false | 28,256 | rkt | main.rkt | #lang at-exp racket
(require scribble/srcdoc)
(require (for-doc racket/base scribble/manual))
(require ts-kata-util
fandom-sprites-ge
survival)
(language-mappings survival survival-pokemon
[basic-bg basic-town]
[basic-avatar basic-pokemon]
[basic-npc basic-friend]
[basic-enemy basic-trainer]
[basic-coin basic-stone]
[basic-weapon basic-attack]
[survival-game pokemon-game]
[#:bg #:town]
[#:avatar #:pokemon]
[#:npc-list #:friend-list]
[#:enemy-list #:trainer-list]
[#:coin-list #:stone-list]
[#:weapon-list #:attack-list])
(provide pokeball
fire-blast
aqua-jet
fire-spin
waterfall
bubble
fire-blast-icon
aqua-jet-icon
fire-spin-icon
waterfall-icon
bubble-icon
(rename-out
(custom-town basic-town)
(custom-pokemon basic-pokemon)
(custom-friend basic-friend)
(custom-trainer basic-trainer)
(custom-stone basic-stone)
(custom-attack basic-attack)))
(define bg-list
(list FOREST-BG SNOW-BG DESERT-BG LAVA-BG))
; --------- Custom Town
(define/contract/doc (custom-town #:image [img (first (shuffle bg-list))]
#:rows [rows 3]
#:columns [cols 3]
#:start-tile [t 0]
#:hd? [hd? #f]
#:components [c #f]
. custom-components)
(->i ()
(#:image [img image?]
#:rows [rows number?]
#:columns [columns number?]
#:start-tile [start-tile number?]
#:hd? [high-def? boolean?]
#:components [first-component component-or-system?])
#:rest [more-components (listof component-or-system?)]
[result entity?])
@{Returns a custom town, which will be used
automatically if it is passed into @racket[pokemon-game]
via the @racket[#:town] parameter.}
(custom-bg #:image img
#:rows rows
#:columns cols
#:start-tile t
#:hd? hd?
#:components (cons c custom-components)))
; --------- Custom Pokemon
(define/contract/doc (custom-pokemon #:sprite [sprite (first (shuffle (list bulbasaur-sprite
squirtle-sprite
charmander-sprite)))]
#:damage-processor [dp (filter-damage-by-tag #:filter-out '(friendly-team passive)
#:show-damage? #t
#:hit-sound HIT-SOUND
)]
#:position [p (posn 100 100)]
#:speed [spd 10]
#:key-mode [key-mode 'arrow-keys]
#:mouse-aim? [mouse-aim? #f]
#:health [health 100]
#:max-health [max-health 100]
#:components [c #f]
. custom-components)
(->i ()
(#:sprite [sprite (or/c sprite? (listof sprite?) string? (listof string?))]
#:damage-processor [damage-processor damage-processor?]
#:position [position posn?]
#:speed [speed number?]
#:key-mode [key-mode (or/c 'wasd 'arrow-keys)]
#:mouse-aim? [mouse-aim boolean?]
#:health [health number?]
#:max-health [max-health number?]
#:components [first-component component-or-system?]
)
#:rest (rest (listof component-or-system?))
[returns entity?])
@{Returns a custom pokemon, which will be placed in to the world
automatically if it is passed into @racket[pokemon-game]
via the @racket[#:pokemon] parameter.}
(custom-avatar
#:sprite sprite
#:damage-processor dp
#:position p
#:speed spd
#:key-mode key-mode
#:mouse-aim? mouse-aim?
#:health health
#:max-health max-health
#:components (cons c custom-components)))
; --------- Custom Friend
(define/contract/doc (custom-friend #:sprite [s bulbasaur-sprite]
#:position [p (posn 0 0)]
#:name [name "Bulbasaur"]
#:tile [tile 0]
#:dialog [d (first (shuffle (list (list "It's dangerous out here!")
(list "You should find food to survive.")
(list "Watch out for those trainers!")
(list "Go collect some Evolution Stones."))))]
#:mode [mode 'wander]
#:game-width [GAME-WIDTH 480]
#:speed [spd 2]
#:target [target "player"]
#:sound [sound #t]
#:scale [scale 1]
#:components [c #f]
. custom-components )
(->i () (#:sprite [sprite (or/c sprite? (listof sprite?) string? (listof string?))]
#:position [position posn?]
#:name [name string?]
#:tile [tile number?]
#:dialog [dialog dialog-str?]
#:mode [mode (or/c 'still 'wander 'pace 'follow)]
#:game-width [game-width number?]
#:speed [speed number?]
#:target [target string?]
#:sound [sound any/c]
#:scale [scale number?]
#:components [first-component component-or-system?])
#:rest [more-components (listof component-or-system?)]
[returns entity?])
@{Returns a custom friend, which will be placed in to the world
automatically if it is passed into @racket[pokemon-game]
via the @racket[#:friend-list] parameter.}
(custom-npc #:sprite s
#:position p
#:name name
#:tile tile
#:dialog d
#:game-width GAME-WIDTH
#:mode mode
#:speed spd
#:target target
#:sound sound
#:scale scale
#:components (cons c custom-components)))
; --------- Custom Trainer
(define (pokeball-style n)
(define new-list (map (curry rotate 90) (sheet->costume-list pokeball2-sheet 8 17 (* 8 17))))
(~> new-list
(drop _ (* (- n 1) 8))
(take _ 8)
(new-sprite _ 2 #:animate #t))
)
(define (pokeball #:sprite [s (pokeball-style (random 1 18))]
#:damage [dmg 10]
#:durability [dur 5]
#:speed [spd 3]
#:range [rng 100]
#:name [n "Pokeball"]
#:fire-mode [fm 'normal]
#:fire-rate [fr 3]
#:fire-key [key 'f]
#:mouse-fire-button [button #f]
#:point-to-mouse? [ptm? #f]
#:rapid-fire? [rf? #t]
#:rarity [rarity 'common])
(define pokeball-dart
(custom-dart #:position (posn 25 0)
#:sprite s
#:damage dmg
#:durability dur
#:speed spd
#:range rng))
(custom-weapon #:sprite (make-icon "PB")
#:dart pokeball-dart
#:fire-mode fm
#:fire-rate fr
#:fire-key key
#:mouse-fire-button button
#:point-to-mouse? ptm?
#:rapid-fire? rf?
#:rarity rarity))
(define/contract/doc (custom-trainer #:amount-in-world (amount-in-world 1)
#:sprite (s (first (shuffle (list jessie-sprite
james-sprite))))
#:ai (ai-level 'medium)
#:health (health 100)
#:weapon (w (pokeball))
#:death-particles (particles (custom-particles))
#:night-only? (night-only? #f)
#:components (c #f)
. custom-components)
(->i () (#:amount-in-world [amount-in-world positive?]
#:sprite [sprite (or/c sprite? (listof sprite?) string? (listof string?))]
#:ai [ai ai-level?]
#:health [health positive?]
#:weapon [w entity?]
#:death-particles [death-particles entity?]
#:night-only? [night-only? boolean?]
#:components [first-component any/c])
#:rest [more-components (listof any/c)]
[returns entity?])
@{Returns a custom trainer, which will be placed in to the world
automatically if it is passed into @racket[pokemon-game]
via the @racket[#:trainer-list] parameter.}
(custom-enemy #:amount-in-world amount-in-world
#:sprite s
#:ai ai-level
#:health health
#:weapon w
#:death-particles particles
#:night-only? night-only?
#:components (cons c custom-components)))
; --------- Custom Stone
(define/contract/doc (custom-stone #:type [type (copper-coin)]
#:sprite [s thunderstone-sprite]
#:position [p #f]
#:name [n "Thunder Stone"]
#:tile [t #f]
#:amount-in-world [world-amt 10]
#:value [val 1]
#:respawn? [respawn? #t]
#:components [c #f]
. custom-entities)
(->i () (#:type [type entity?]
#:sprite [sprite (or/c sprite? (listof sprite?) string? (listof string?))]
#:position [position posn?]
#:name [name string?]
#:tile [tile number?]
#:amount-in-world [amount-in-world number?]
#:value [value number?]
#:respawn? [respawn boolean?]
#:components [first-component component-or-system?])
#:rest [more-components (listof component-or-system?)]
[returns entity?])
@{Returns a custom stone, which will be placed into the world
automatically if it is passed into @racket[pokemon-game]
via the @racket[#:stone-list] parameter.}
(custom-coin #:entity type
#:sprite s
#:position p
#:name n
#:tile t
#:amount-in-world world-amt
#:value val
#:respawn? respawn?
#:components (cons c custom-entities)))
;--------- Custom Attack
(define/contract/doc (custom-attack #:name [n "Thunderbolt"]
#:sprite [s chest-sprite]
#:dart-sprite [ds (rectangle 10 2 "solid" "yellow")]
#:speed [spd 10]
#:damage [dmg 10]
#:range [rng 1000]
#:dart [b (custom-dart #:sprite ds
#:speed spd
#:damage dmg
#:range rng)]
#:fire-mode [fm 'spread]
#:fire-rate [fr 3]
#:fire-key [key 'f]
#:fire-sound [fire-sound #f]
#:mouse-fire-button [button 'left]
#:point-to-mouse? [ptm? #t]
#:rapid-fire? [rf? #t]
#:rarity [rarity 'common])
(->i ()
(#:name [name string?]
#:sprite [sprite (or/c sprite? (listof sprite?) string? (listof string?))]
#:dart-sprite [dart-sprite (or/c sprite? (listof sprite?))]
#:speed [speed number?]
#:damage [damage number?]
#:range [range number?]
#:dart [dart entity?]
#:fire-mode [fire-mode fire-mode?]
#:fire-rate [fire-rate number?]
#:fire-key [fire-key symbol?]
#:fire-sound [fire-sound (or/c rsound? #f '())]
#:mouse-fire-button [button (or/c 'left 'right false?)]
#:point-to-mouse? [ptm? boolean?]
#:rapid-fire? [rf? boolean?]
#:rarity [rarity rarity-level?])
[result entity?])
@{Returns a custom attack, which will be placed in to the world
automatically if it is passed into @racket[pokemon-game]
via the @racket[#:attack-list] parameter.}
(custom-weapon #:name n
#:sprite s
#:dart-sprite ds
#:speed spd
#:damage dmg
#:range rng
#:dart b
#:fire-mode fm
#:fire-rate fr
#:fire-key key
#:fire-sound fire-sound
#:mouse-fire-button button
#:point-to-mouse? ptm?
#:rapid-fire? rf?
#:rarity rarity))
; --------- Pokemon Main Game
(define (random-forest)
(change-img-hue (random 360) (draw-plain-forest-bg)))
(define/contract/doc
(pokemon-game #:headless [headless #f]
#:town [town-ent (plain-forest-bg #:image (random-forest))]
#:pokemon [pokemon (custom-pokemon #:sprite (circle 10 'solid 'red))]
#:starvation-rate [sr 50]
#:sky [sky (custom-sky)]
#:friend-list [friend-list '()]
#:trainer-list [trainer-list '()]
#:stone-list [stone-list '() ]
#:food-list [f-list '() ]
#:crafter-list [c-list '() ]
#:score-prefix [prefix "Stones"]
#:attack-list [attack-list '()]
#:enable-world-objects? [world-objects? #f]
#:instructions [instructions #f]
#:other-entities [ent #f]
. custom-entities)
(->i ()
(#:headless [headless boolean?]
#:town [town-ent entity?]
#:pokemon [pokemon (or/c entity? #f)]
#:starvation-rate [starvation-rate (or/c number? #f)]
#:sky [sky sky?]
#:friend-list [friend-list (listof (or/c entity? procedure?))]
#:trainer-list [trainer-list (listof (or/c entity? procedure?))]
#:stone-list [stone-list (listof (or/c entity? procedure?))]
#:food-list [food-list (listof (or/c entity? procedure?))]
#:crafter-list [crafter-list (listof (or/c entity? procedure?))]
#:score-prefix [prefix string?]
#:attack-list [attack-list (listof (or/c entity? procedure?))]
#:enable-world-objects? [world-objects? boolean?]
#:instructions [instructions (or/c #f entity?)]
#:other-entities [other-entities (or/c #f entity? (listof #f) (listof entity?))])
#:rest [rest (listof entity?)]
[res () game?])
@{The top-level function for the minecraft-game language.
Can be run with no parameters to get a basic, default game
with nothing in it!}
(survival-game
#:headless headless
#:bg town-ent
#:avatar pokemon
#:starvation-rate sr
#:sky sky
#:npc-list friend-list
#:enemy-list trainer-list
#:coin-list stone-list
#:food-list f-list
#:crafter-list c-list
#:score-prefix prefix
#:weapon-list attack-list
#:enable-world-objects? world-objects?
#:instructions instructions
#:other-entities (filter identity (flatten (cons ent custom-entities)))))
; ===== PREBUILT ATTACKS =====
(define fire-blast-icon (list (new-sprite flame-sprite
#:scale 0.75
#:x-offset 5
#:y-offset -5)
(new-sprite flame-sprite
#:scale 0.75)
(new-sprite flame-sprite
#:scale 0.75
#:x-offset -5
#:y-offset 5)
(make-icon "" )))
(define (fire-blast #:name [n "Fire Blast"]
#:icon [i fire-blast-icon]
#:sprite [s flame-sprite]
#:damage [dmg 5]
#:durability [dur 5]
#:speed [spd 3]
#:range [rng 20]
#:dart [d (fire-dart #:sprite s
#:damage dmg
#:durability dur
#:speed spd
#:range rng)]
#:fire-mode [fm 'random]
#:fire-rate [fr 10]
#:fire-key [key 'f]
#:mouse-fire-button [button #f]
#:point-to-mouse? [ptm? #f]
#:rapid-fire? [rf? #t]
#:rarity [rarity 'common])
(fire-magic #:name n
#:icon i
#:dart d
#:fire-mode fm
#:fire-rate fr
#:mouse-fire-button button
#:point-to-mouse? ptm?
#:rapid-fire? rf?
#:rarity rarity))
(define aqua-jet-icon (list (new-sprite ice-sprite
#:scale 0.75
#:x-offset 5
#:y-offset -5)
(new-sprite ice-sprite
#:scale 0.75)
(new-sprite ice-sprite
#:scale 0.75
#:x-offset -5
#:y-offset 5)
(make-icon "" )))
(define (aqua-jet #:name [n "Aqua Jet"]
#:icon [i aqua-jet-icon]
#:sprite [s ice-sprite]
#:damage [dmg 5]
#:durability [dur 5]
#:speed [spd 3]
#:range [rng 20]
#:dart [d (ice-dart #:sprite s
#:damage dmg
#:durability dur
#:speed spd
#:range rng)]
#:fire-mode [fm 'random]
#:fire-rate [fr 10]
#:fire-key [key 'f]
#:mouse-fire-button [button #f]
#:point-to-mouse? [ptm? #f]
#:rapid-fire? [rf? #t]
#:rarity [rarity 'common])
(ice-magic #:name n
#:icon i
#:dart d
#:fire-mode fm
#:fire-rate fr
#:mouse-fire-button button
#:point-to-mouse? ptm?
#:rapid-fire? rf?
#:rarity rarity))
(define fire-spin-icon (list (new-sprite flame-sprite
#:scale 0.75
#:x-offset -5
#:y-offset 0)
(new-sprite flame-sprite
#:scale 0.75
#:x-offset 5
#:y-offset 0)
(new-sprite flame-sprite
#:scale 0.75
#:x-offset 0
#:y-offset -5)
(new-sprite flame-sprite
#:scale 0.75
#:x-offset 0
#:y-offset 5)
(make-icon "" )))
(define (fire-spin #:name [n "Fire Spin"]
#:icon [i fire-spin-icon]
#:sprite [s flame-sprite]
#:damage [dmg 5]
#:durability [dur 20]
#:speed [spd 10]
#:duration [rng 36]
#:dart [d (ring-of-fire-dart #:sprite s
#:damage dmg
#:durability dur
#:speed spd
#:duration rng)]
#:fire-mode [fm 'normal]
#:fire-rate [fr 10]
#:fire-key [key 'f]
#:mouse-fire-button [button #f]
#:point-to-mouse? [ptm? #f]
#:rapid-fire? [rf? #t]
#:rarity [rarity 'common])
(ring-of-fire #:name n
#:icon i
#:dart d
#:fire-mode fm
#:fire-rate fr
#:mouse-fire-button button
#:point-to-mouse? ptm?
#:rapid-fire? rf?
#:rarity rarity))
(define waterfall-icon (list (new-sprite ice-sprite
#:scale 0.75
#:x-offset -5
#:y-offset 0)
(new-sprite ice-sprite
#:scale 0.75
#:x-offset 5
#:y-offset 0)
(new-sprite ice-sprite
#:scale 0.75
#:x-offset 0
#:y-offset -5)
(new-sprite ice-sprite
#:scale 0.75
#:x-offset 0
#:y-offset 5)
(make-icon "" )))
(define (waterfall #:name [n "Waterfall"]
#:icon [i waterfall-icon]
#:sprite [s ice-sprite]
#:damage [dmg 5]
#:durability [dur 20]
#:speed [spd 10]
#:duration [rng 36]
#:dart [d (ring-of-fire-dart #:sprite s
#:damage dmg
#:durability dur
#:speed spd
#:duration rng)]
#:fire-mode [fm 'normal]
#:fire-rate [fr 10]
#:fire-key [key 'f]
#:mouse-fire-button [button #f]
#:point-to-mouse? [ptm? #f]
#:rapid-fire? [rf? #t]
#:rarity [rarity 'common])
(ring-of-ice #:name n
#:icon i
#:dart d
#:fire-mode fm
#:fire-rate fr
#:mouse-fire-button button
#:point-to-mouse? ptm?
#:rapid-fire? rf?
#:rarity rarity))
(define (bubble-icon)
(list (set-sprite-color 'blue acid-sprite)
(make-icon "" #;'lightgoldenrodyellow)))
(define (bubble #:name [n "Bubble"]
#:icon [i (bubble-icon)]
#:sprite [s (set-sprite-color 'blue acid-sprite)]
#:damage [dmg 10]
#:durability [dur 5]
#:speed [spd 3]
#:range [rng 100]
#:dart [d (acid-dart #:sprite s
#:damage dmg
#:durability dur
#:speed spd
#:range rng)]
#:fire-mode [fm 'random]
#:fire-rate [fr 3]
#:fire-key [key 'f]
#:mouse-fire-button [button #f]
#:point-to-mouse? [ptm? #f]
#:rapid-fire? [rf? #t]
#:rarity [rarity 'common])
(acid-spitter #:name n
#:icon i
#:dart d
#:fire-mode fm
#:fire-rate fr
#:fire-key key
#:mouse-fire-button button
#:point-to-mouse? ptm?
#:rapid-fire? rf?
#:rarity rarity))
| false |
10ec10868257b3263b4d17e4532b3cdc9231c287 | b7c738833c52a0d3a8f918382f7db889f61ca1d4 | /gnucash/parse.rkt | 8a1c74dabd4d48478124a046a9064051d00b9cf3 | []
| no_license | jbclements/gnucash | eb94c9b578e41be1c0b5e45ad13a8a89f2a0a924 | e15cf377a1c9665734d4962f89bf0f94c984e0b6 | refs/heads/master | 2022-09-13T13:57:13.310942 | 2022-07-19T15:10:34 | 2022-07-19T15:10:34 | 1,100,709 | 1 | 2 | null | 2022-07-19T15:10:35 | 2010-11-21T22:09:31 | Racket | UTF-8 | Racket | false | false | 3,865 | rkt | parse.rkt | #lang racket/base
(require sxml
racket/format
racket/system
racket/match
racket/contract
racket/function)
;(require (for-syntax scheme))
(provide (contract-out
[gnucash-read (-> path-string? path-string? (listof any/c))]))
;; WARNING: assumes a unix-y path convention. Fix this if you like.
;; compile a gnucash file into a .zo file. On my file, this makes a
;; 3-minute process into a ten-second one.
;;
;; EFFECT: stomps certain files in /tmp, leaves junk behind.
;;
(define (cache-as-zo input-file output-file)
(let ([str (~a "cp "(path->string input-file)" /tmp/gnucash-expanded.gz")])
(printf "~a\n" str)
(system str))
(when (file-exists? "/tmp/gnucash-expanded")
(delete-file "/tmp/gnucash-expanded"))
(let ([str (~a "gunzip /tmp/gnucash-expanded.gz")])
(printf "~a\n" str)
(system str))
(call-with-input-file "/tmp/gnucash-expanded"
(lambda (port)
(define parsed
(ssax:xml->sxml port gnucash-namespace-abbreviations))
(printf "done parsing.\n")
(with-output-to-file output-file
(lambda ()
(write (compile #`(quote #,parsed))))
#:exists
'truncate)
(printf "done compiling and writing .zo file\n"))))
;; the problem with namespaces is that they generate sxml
;; listing taken from
;; https://github.com/Gnucash/gnucash/blob/maint/libgnucash/doc/xml/gnucash-v2.rnc
(define gnucash-namespace-abbreviations
'((gnc . "http://www.gnucash.org/XML/gnc")
(act . "http://www.gnucash.org/XML/act")
(book . "http://www.gnucash.org/XML/book")
(cd . "http://www.gnucash.org/XML/cd")
(cmdty . "http://www.gnucash.org/XML/cmdty")
(price . "http://www.gnucash.org/XML/price")
(slot . "http://www.gnucash.org/XML/slot")
(split . "http://www.gnucash.org/XML/split")
(sx . "http://www.gnucash.org/XML/sx")
(trn . "http://www.gnucash.org/XML/trn")
(ts . "http://www.gnucash.org/XML/ts")
(fs . "http://www.gnucash.org/XML/fs")
(bgt . "http://www.gnucash.org/XML/bgt")
(recurrence . "http://www.gnucash.org/XML/recurrence")
(lot . "http://www.gnucash.org/XML/lot")
(addr . "http://www.gnucash.org/XML/addr")
(owner . "http://www.gnucash.org/XML/owner")
(billterm . "http://www.gnucash.org/XML/billterm")
(bt-days . "http://www.gnucash.org/XML/bt-days")
(bt-prox . "http://www.gnucash.org/XML/bt-prox")
(cust . "http://www.gnucash.org/XML/cust")
(employee . "http://www.gnucash.org/XML/employee")
(entry . "http://www.gnucash.org/XML/entry")
(invoice . "http://www.gnucash.org/XML/invoice")
(job . "http://www.gnucash.org/XML/job")
(order . "http://www.gnucash.org/XML/order")
(taxtable . "http://www.gnucash.org/XML/taxtable")
(tte . "http://www.gnucash.org/XML/tte")
(vendor . "http://www.gnucash.org/XML/vendor")))
;; read gnucash data from a .zo file produced by cache-as-zo
(define (read-from-zo zo-file)
(eval (parameterize ([read-accept-compiled #t])
(call-with-input-file zo-file read))))
;; strip top level XML to get a list of gnucash "things"
(define (strip-top-level-goo xml-elt)
(match xml-elt
[`(*TOP* ,top-attribs ,pi-node
(gnc-v2 (gnc:count-data (@ (cd:type "book")) "1")
(gnc:book (@ (version "2.0.0")) . ,content)))
content]))
;; use this to read a gnucash file. Returns a list of sxml elements
(define (gnucash-read gnucash-file gnucash-cache-file)
;; refresh cache if necessary
(when (or (not (file-exists? gnucash-cache-file))
(= (file-size gnucash-cache-file) 0)
(< (file-or-directory-modify-seconds gnucash-cache-file)
(file-or-directory-modify-seconds gnucash-file)))
(cache-as-zo gnucash-file gnucash-cache-file))
(strip-top-level-goo (read-from-zo gnucash-cache-file)))
| false |
b42eeca4d2c7572553a5a59bc21ff78996d187eb | 616e16afef240bf95ed7c8670035542d59cdba50 | /redex-benchmark/redex/benchmark/private/gen-run.rkt | cebcf7dffd6f5ea96d023bd4705edf1b329f028a | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/redex | bd535d6075168ef7be834e7c1b9babe606d5cd34 | 8df08b313cff72d56d3c67366065c19ec0c3f7d0 | refs/heads/master | 2023-08-19T03:34:44.392140 | 2023-07-13T01:50:18 | 2023-07-13T01:50:18 | 27,412,456 | 102 | 43 | NOASSERTION | 2023-04-07T19:07:30 | 2014-12-02T03:06:03 | Racket | UTF-8 | Racket | false | false | 5,918 | rkt | gen-run.rkt | #lang racket/base
(require "logging.rkt"
racket/match
racket/contract
math/statistics)
(provide
(struct-out run-results))
(struct timeout ())
(struct reached-limit (tries) #:transparent)
(struct run-results (tries time cexps) #:transparent)
(provide/contract
[run-gen-and-check/mods
(->* (module-path?
module-path?
natural-number/c)
(#:name string?)
run-results?)]
[run-gen-and-check
(->* ((-> (-> any/c))
(-> any/c boolean?)
natural-number/c)
(#:name string?
#:type symbol?)
run-results?)])
(define (run-gen-and-check/mods gen-mod-path check-mod-path seconds #:name [name "unknown"])
(define get-gen (dynamic-require gen-mod-path 'get-generator))
(define type (dynamic-require gen-mod-path 'type))
(define check (dynamic-require check-mod-path 'check))
(run-gen-and-check get-gen check seconds #:name name #:type type))
(define (run-gen-and-check get-gen check seconds
#:name [name "unknown"]
#:type [type 'unknown])
(log-start name type)
(with-heartbeat #:name name #:type type
(λ () (run-generations get-gen check seconds
#:name name
#:type type))))
(define (run-generations get-gen check seconds
#:name [name "unknown"]
#:type [type 'unknown]
#:first-only [first-only #f])
(collect-garbage)
(define s-time (current-process-milliseconds))
(define time-limit (+ s-time (* 1000 seconds)))
(define counterexamples 0)
(define (tot-time) (- (current-process-milliseconds) s-time))
(let trials-loop ([t 0]
[g (get-gen)]
[stats empty-statistics]
[terms 0])
(define trial-start-time (current-process-milliseconds))
(define (me-time) (- (current-process-milliseconds) trial-start-time))
(match (one-counterexample trial-start-time time-limit
g check name type)
[(timeout)
(trials-loop t g stats terms)]
[(reached-limit tries)
(exit-message name type (+ tries terms) (tot-time) counterexamples)
(run-results (+ tries terms) (tot-time) counterexamples)]
[(list tries term)
(define new-stats (update-statistics stats (me-time)))
(set! counterexamples (add1 counterexamples))
(log-counterexample name type term tries (me-time))
(if (and (not first-only)
(or (continue? new-stats (add1 t) name type)
(t . < . 5)))
(trials-loop (add1 t) (get-gen) new-stats (+ tries terms))
(begin
(exit-message name type (+ tries terms) (tot-time) counterexamples)
(run-results (+ tries terms) (tot-time) counterexamples)))])))
(define TIMEOUT-DEFAULT (* 5 60 1000)) ;; 5 mins in ms
(define (one-counterexample s-time time-limit generator check fname type [timeout-time TIMEOUT-DEFAULT])
(let/ec break
(let loop ([tries 0])
(when ((current-process-milliseconds) . > . time-limit)
(break (reached-limit tries)))
(define term (with-timeout timeout-time generator
(λ ()
(log-gen-timeout fname type)
(break (timeout)))))
(define ok? (with-timeout timeout-time (λ () (check term))
(λ ()
(log-check-timeout fname type term)
(break (timeout)))
(λ (exn)
(print-and-log (format "\nException when calling check with: ~a" term))
(raise exn))))
(cond
[(not ok?)
(list tries term)]
[else
(loop (add1 tries))]))))
(define (with-timeout time thunk fail-thunk [on-exn raise])
(define res-chan (make-channel))
(define exn-chan (make-channel))
(define thd (thread (λ ()
(with-handlers ([exn:fail? (λ (exn) (channel-put exn-chan exn))])
(channel-put res-chan (thunk))))))
(sync
(handle-evt (alarm-evt (+ (current-inexact-milliseconds) time))
(λ (_)
(break-thread thd)
(fail-thunk)))
(handle-evt exn-chan
(λ (exn) (on-exn exn)))
(handle-evt res-chan
(λ (result-of-thunk) result-of-thunk))))
(define (print-and-log str)
(displayln str)
(bmark-log 'print str))
(define (with-heartbeat thunk
#:time [time 10]
#:type [type #f]
#:name [name #f])
(define res-chan (make-channel))
(define exn-chan (make-channel))
(define thd (thread (λ ()
(with-handlers ([exn:fail? (λ (exn) (channel-put exn-chan exn))])
(channel-put res-chan (thunk))))))
(define heartbeat-thd
(thread (λ ()
(let loop ()
(log-heartbeat name type)
(sleep time)
(loop)))))
(sync
(handle-evt res-chan
(λ (res)
(kill-thread heartbeat-thd)
res))
(handle-evt exn-chan
(λ (e)
(raise e)))
(handle-evt heartbeat-thd
(λ (_) (error 'with-hearbeat "heartbeat thread ended")))))
(define (exit-message file type terms time countxmps)
(log-finished file type time terms countxmps))
(define (continue? new-stats num-results name type)
(define avg (statistics-mean new-stats))
(define dev (/ (statistics-stddev new-stats #:bias #t) (sqrt num-results)))
(log-new-avg name type (exact->inexact avg) dev)
(or (= dev 0)
((/ dev avg) . > . 0.1)))
| false |
6f5a13ee2ae8db11ea45795a36e1bdae85d89051 | fbfe4a2c4d34180da0fd87a790ef1226f5da77b9 | /macros-and-languages-in-racket/examples.rkt | 8956d739e852dc8f4b0a4fe70f2b4b8a3e77d9e4 | []
| no_license | cdepillabout/my-beautiful-racket | a9893eaf8ec07d4d113b03047e64978f3fa6627f | a8e8e92f80a8fa681c9671902de03c34a253b1d7 | refs/heads/master | 2023-02-11T16:51:57.285172 | 2021-01-07T01:24:02 | 2021-01-07T01:24:02 | 323,235,121 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 5,301 | rkt | examples.rkt |
#lang racket
(module+ test
(require rackunit)
)
(define-syntax (my-assert stx)
(syntax-case stx ()
[(_ expr)
#'(unless expr
(error 'assert "assertion failed: ~s" (quote expr)))
]))
(define-syntax-rule (my-assert2 expr)
(unless expr
(error 'assert "assertion failed: ~s" (quote expr)))
)
(define-syntax-rule (noisy-v1 expr)
(begin
(printf "evaluating ~v...\n" 'expr)
expr
))
(define-syntax-rule (iflet var test ifbody elsebody)
(let ([xxx test])
(if xxx
(let ([var xxx]) ifbody)
elsebody
)))
(module+ test
(define alist '((1 . apple) (2 . pear)))
(check-equal? (iflet x (assoc 1 alist) (cdr x) 'none) 'apple)
(check-equal? (let ([x 'plum]) (iflet x (assoc 3 alist) (cdr x) x)) 'plum)
)
(define-syntax-rule (forever expr)
(let loop ()
expr
(loop)))
(define-syntax-rule (handle expr1 fallback)
(with-handlers ([exn:fail? (λ (e) fallback)]) expr1))
(module+ test
(check-equal? (handle 5 6) 5)
(check-equal? (handle (/ 1 0) 'whoops) 'whoops)
)
(define-syntax-rule (handle_ expr1 fallback)
(handle-helper (λ()expr1) (λ()fallback)))
(define (handle-helper expr1-thunk fallback-thunk)
(with-handlers ([exn:fail? (λ (e) (fallback-thunk))]) (expr1-thunk)))
(module+ test
(check-equal? (handle_ 5 6) 5)
(check-equal? (handle_ (/ 1 0) 'whoops) 'whoops)
)
;; (define-syntax-rule (andlet1 var e1 e2)
;; (let ([var e1])
;; (if var e2 #f)))
(define-syntax-rule (andlet1 var e1 e2)
(andlet1-helper e1 (λ(var)e2)))
(define (andlet1-helper e1 e2-thunk)
(let ([xxx e1])
(if xxx (e2-thunk xxx) #f)))
(module+ test
(check-equal? (andlet1 x 5 (+ x 100)) 105)
(check-equal? (andlet1 x (< 100 2) (if x "yes" "no")) #f)
(check-equal? (andlet1 x (< 2 100) (if x "yes" "no")) "yes")
)
(define-syntax-rule (my-and expr ...)
(my-and-helper (λ()expr) ...))
(define (my-and-helper . args)
(match args
[(cons head rst)
(if (head) (apply my-and-helper rst) #f)]
[_ #t]))
(module+ test
(check-equal? (my-and (+ 1 4) #t (> 100 2)) #t)
(check-equal? (my-and (+ 1 4) #f (/ 1 0)) #f)
)
(define-syntax-rule (my-cond-v0 [question-expr answer-expr] ...)
(my-cond-v0-helper (list (λ()question-expr) (λ()answer-expr)) ...)
)
;; (define (my-cond-v0-helper . args)
;; (match args
;; [(cons (list head-question head-answer) rst)
;; (if (head-question)
;; (head-answer)
;; (apply my-cond-v0-helper rst)
;; (define (my-cond-v0-helper . args)
;; )]))
(define/match (my-cond-v0-helper . args)
[((cons (list head-question head-answer) rst))
(if (head-question) (head-answer) (apply my-cond-v0-helper rst)
)])
(module+ test
(check-equal? (my-cond-v0 [(> 100 2) "hello"] [#f (/ 1 0)]) "hello")
(check-equal? (my-cond-v0 [#f (/ 1 0)] [(> 100 2) "hello"]) "hello")
)
;; (define/match-let (my-func (list a b))
;; (list a b a b))
;; (define-syntax (define/match-let stx)
;; (syntax-case stx ()
;; [(_ (func-name args ...) body)
;; #'(define/match (func-name func-args)
;; [args
;; (define/match (
(define-syntax my-and-v2
(syntax-rules ()
[(my-and-v2 expr1 expr ...)
(if expr1 (my-and-v2 expr ...) #f)
]
[(my-and-v2) #t]))
(module+ test
(check-equal? (my-and-v2 (+ 1 4) #t (> 100 2)) #t)
(check-equal? (my-and-v2 (+ 1 4) #f (/ 1 0)) #f)
)
(define-syntax my-cond
(syntax-rules (else =>)
[(my-cond)
(void)]
[(my-cond [else answer-expr])
answer-expr]
[(my-cond [question-expr => proc-expr] clause ...)
(let ([x question-expr])
(if x (proc-expr x) (my-cond clause ...)))
]
[(my-cond [question-expr answer-expr1 answer-expr ...] clause ...)
(if question-expr
(begin answer-expr1 answer-expr ...)
(my-cond clause ...))]
[(my-cond [question-expr] clause ...)
(let ([x question-expr])
(if x x (my-cond clause ...)))]
))
(module+ test
(check-equal? (void)
(my-cond))
(check-equal?
"bye"
(my-cond [#f "hello"] [else "bye"])
)
(check-equal?
#t
(my-cond [(+ 1 3) => (λ(x)(> x 2))] [else "bye"])
)
(check-equal?
'(3 100)
(let ([x 0])
(list (my-cond [#t (set! x 100) 3]) x))
)
)
(require (for-syntax syntax/parse))
(define-syntax andlet2
(lambda (stx)
(syntax-parse stx
;; [(_ var e1 e2)
;; #:declare var identifier
;; [(_ (~var var identifier) e1 e2)
[(_ var:id e1:expr e2:expr)
#'(let ([var e1])
(if var e2 #f))
]
)))
(module+ test
(check-equal?
8
(andlet2 x (+ 1 3) (+ x 4))
)
(check-equal?
#f
(andlet2 x #f (/ 1 0))
)
)
;; (define-syntax (iflet2 var test ifbody elsebody)
;; (let ([xxx test])
;; (if xxx
;; (let ([var xxx]) ifbody)
;; elsebody
;; )))
(define-syntax (iflet2 stx)
(syntax-parse stx
[(_ var:id test:expr ifbody:expr elsebody:expr)
#'(let ([xxx test])
(if xxx
(let ([var xxx]) ifbody)
elsebody
))
]
))
(module+ test
(define alist2 '((1 . apple) (2 . pear)))
(check-equal? (iflet2 x (assoc 1 alist2) (cdr x) 'none) 'apple)
(check-equal? (let ([x 'plum]) (iflet2 x (assoc 3 alist2) (cdr x) x)) 'plum)
)
| true |
0d1b10a4dd0b43393a7d7d7b345c2d116e7b4513 | 257e1dc843487d841dce25e3bbb5480873c7cacf | /helper_tests.rkt | 7a1b4b83e65fa4decd6a7fc9a228e68d5da04543 | []
| no_license | smfsamir/324-a1 | 37974535443fcec0f9c81401ca929a31829f511e | e566bc7db2a56dca95d3aceab40658ead34c7299 | refs/heads/master | 2021-06-08T12:46:56.038753 | 2016-10-17T22:34:07 | 2016-10-17T22:34:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,491 | rkt | helper_tests.rkt | #lang plai
; (abridged-test-output #t) TODO: check the effect of this
(require "database.rkt")
(require "helpers.rkt")
(define sample-tuple-one '("David" 20 #t))
(define sample-tuple-two '("Jen" 30 #t))
(define sample-tuple-three '("Paul" 100 #f))
(define sample-attributes-one '("Name" "Age" "LikesChocolate"))
(define (f tuple) (> (list-ref tuple 1) 25))
(define Person
'(("Name" "Age" "LikesChocolate")
("David" 20 #t)
("Jen" 30 #t)
("Paul" 100 #f)))
(define Teaching
'(("Name" "Course")
("David" "CSC324")
))
(test (index-of sample-attributes-one "LikesChocolate")
2)
(test (index-of sample-attributes-one "NonExistentAttribute")
-1)
(test (get-attribute-value sample-attributes-one "Name" sample-tuple-one)
"David")
(test (filter-table f Person)
(append (list (attributes Person)) (list sample-tuple-two sample-tuple-three)))
(test ((replace-attr "Age" sample-attributes-one) sample-tuple-one)
20)
(test ((replace-attr "Date of Birth" sample-attributes-one) sample-tuple-one)
"Date of Birth")
(test (cartesian-product Person Teaching)
'(("Name" "Age" "LikesChocolate" "Name" "Course")
("David" 20 #t "David" "CSC324")
("Jen" 30 #t "David" "CSC324")
("Paul" 100 #f "David" "CSC324")))
(test (string-index-of "T.name" ".")
1)
(test (string-index-of "E1.name" ".")
2)
(test (modify-query '("P.Name" "Age" "T.Name" "Course") "P")
'("Name" "Age" "Course"))
(test (combine-tables (
| false |
d3424828233f7f114a97f534c15c4159e4d48621 | 1ab87fb0f0696e4cc3c0701f44cfaaa4d25824ad | /day1.rkt | 913961223d15557221aa2259f2c7e98eb9a42484 | []
| no_license | nagaflokhu/advent-of-code-2019 | 71048634315c90f4ade96dc64e056da86063d22a | 257f6dbd19f103ed75a0c13e5fc237c31ffdf9a7 | refs/heads/master | 2020-11-30T11:19:01.421521 | 2019-12-31T00:26:50 | 2019-12-31T00:26:50 | 230,386,508 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 996 | rkt | day1.rkt | #lang racket
#;(define exponent
(for/last ([i (in-naturals)])
(displayln i)
(define sum
(for/sum ([j (in-range i)])
(expt 32 j)))
(displayln sum)
#:final (>= sum (expt 2 30))
i))
;(displayln exponent)
;(displayln (+ 1 (/ (log (expt 2 30)) (log (expt 2 5)))))
(define input-path (expand-user-path "~/Downloads/AOCDay1In.txt"))
(define (calc-required-fuel mass)
(- (quotient mass 3) 2))
(define (calc-required-fuel-rec mass)
(define (iter total mass)
(define required-fuel (calc-required-fuel mass))
(if (<= required-fuel 0)
total
(iter (+ total required-fuel) required-fuel)))
(iter 0 mass))
(define (solve-day1-part calc-func)
(with-input-from-file input-path
(thunk
(for/sum ([str (in-lines)])
(define num (string->number str))
(calc-func num)))))
(define (solve-day1-part1) (solve-day1-part calc-required-fuel))
(define (solve-day1-part2) (solve-day1-part calc-required-fuel-rec)) | false |
dd303fb75bbe0c38658ef60752daef4f086938ee | c01a4c8a6cee08088b26e2a2545cc0e32aba897b | /attic/medikanren/DNM1L-full.rkt | 5d1ac40b570ae361796d8cc714f2fa728c9e5f6d | [
"MIT"
]
| permissive | webyrd/mediKanren | c8d25238db8afbaf8c3c06733dd29eb2d7dbf7e7 | b3615c7ed09d176e31ee42595986cc49ab36e54f | refs/heads/master | 2023-08-18T00:37:17.512011 | 2023-08-16T00:53:29 | 2023-08-16T00:53:29 | 111,135,120 | 311 | 48 | MIT | 2023-08-04T14:25:49 | 2017-11-17T18:03:59 | Racket | UTF-8 | Racket | false | false | 46,890 | rkt | DNM1L-full.rkt | #lang racket
(provide
(all-from-out "mk.rkt")
(all-from-out "mk-db.rkt")
membero
rem-dups
edgeo
~name-concepto
DECREASES
semmed
monarch
rtx
;scigraph
)
(require
"mk.rkt"
"mk-db.rkt"
(except-in racket/match ==))
(displayln "loading semmed")
(define semmed (time (make-db "data/semmed")))
(displayln "loading monarch-lite")
(define monarch (time (make-db "data/monarch-lite")))
(displayln "loading rtx")
(define rtx (time (make-db "data/rtx")))
;(displayln "loading scigraph")
;(define scigraph (time (make-db "data/scigraph")))
;; list membership
(define membero
(lambda (x ls)
(fresh (y rest)
(== `(,y . ,rest) ls)
(conde
[(== x y)]
[(=/= x y) (membero x rest)]))))
;; remove duplicates from a list
(define rem-dups
(lambda (ls)
(cond
[(null? ls) '()]
[(member (car ls) (cdr ls)) (rem-dups (cdr ls))]
[else (cons (car ls) (rem-dups (cdr ls)))])))
(define (edgeo e)
(conde
((fresh (ee) (== `(semmed . ,ee) e) (db:edgeo semmed ee)))
((fresh (ee) (== `(monarch . ,ee) e) (db:edgeo monarch ee)))
((fresh (ee) (== `(rtx . ,ee) e) (db:edgeo rtx ee)))
;((fresh (ee) (== `(scigraph . ,ee) e) (db:edgeo scigraph ee)))
))
(define (~name-concepto n c)
(conde
((fresh (cc) (== `(semmed . ,cc) c) (db:~name-concepto semmed n cc)))
((fresh (cc) (== `(monarch . ,cc) c) (db:~name-concepto monarch n cc)))
((fresh (cc) (== `(rtx . ,cc) c) (db:~name-concepto rtx n cc)))
;((fresh (cc) (== `(scigraph . ,cc) c) (db:~name-concepto scigraph n cc)))
))
(define (DECREASES pred)
(fresh (_)
(conde
[(== `(,_ . "treats") pred)]
[(== `(,_ . "prevents") pred)]
[(== `(,_ . "negatively_regulates") pred)])))
(define (INCREASES pred)
(fresh (_)
(conde
[(== `(,_ . "produces") pred)]
[(== `(,_ . "positively_regulates") pred)])))
(rem-dups
(run* (q)
(fresh (edge eid tacrine-details subject object pred eprops db
scid scui sname sdetails
ocid ocui oname odetails
pred-id pred-name)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(conde
[(~name-concepto "DNM1L" `(,db . ,object))]
[(~name-concepto "DNM1L" `(,db . ,subject))])
(edgeo `(,db . ,edge))
(== `(,pred-id . ,pred-name) pred)
(== `(,scid ,scui ,sname . ,sdetails) subject)
(== `(,ocid ,ocui ,oname . ,odetails) object)
(== pred-name q))))
(sort
(rem-dups
(run* (q)
(fresh (edge eid tacrine-details subject object pred eprops db
scid scui sname sdetails
ocid ocui oname odetails
pred-id pred-name)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,object))
(edgeo `(,db . ,edge))
(== `(,pred-id . ,pred-name) pred)
(== `(,scid ,scui ,sname . ,sdetails) subject)
(== `(,ocid ,ocui ,oname . ,odetails) object)
(== `(,db ,sname ,pred-name ,oname) q))))
(lambda (e1 e2)
(match `(,e1 ,e2)
[`((,db1 ,sname1 ,pred-name1 ,oname1)
(,db2 ,sname2 ,pred-name2 ,oname2))
(string<? pred-name1 pred-name2)])))
;; =>
'((semmed "Post-Translational Protein Processing" "affects" "DNM1L wt Allele")
(semmed "RNA Interference" "affects" "DNM1L wt Allele")
(semmed "Signal Transduction Pathways" "affects" "DNM1L wt Allele")
(semmed "Transcription, Genetic" "affects" "DNM1L wt Allele")
(semmed "Glycolysis" "affects" "DNM1L wt Allele")
(semmed "Phosphorylation" "affects" "DNM1L wt Allele")
(semmed "Point Mutation" "affects" "DNM1L wt Allele")
(semmed
"GTP-Binding Protein alpha Subunit, Gq"
"coexists_with"
"DNM1L wt Allele")
(semmed "CDC2 Protein Kinase" "coexists_with" "DNM1L wt Allele")
(semmed "GNAQ wt Allele" "coexists_with" "DNM1L wt Allele")
(semmed "AFG3L2 gene" "coexists_with" "DNM1L wt Allele")
(semmed "Genes" "coexists_with" "DNM1L wt Allele")
(semmed "FIS1 gene" "coexists_with" "DNM1L wt Allele")
(semmed "E2F5 gene" "coexists_with" "DNM1L wt Allele")
(semmed "MFF gene" "coexists_with" "DNM1L wt Allele")
(semmed "ANXA6 wt Allele" "coexists_with" "DNM1L wt Allele")
(semmed "SPG7 gene" "coexists_with" "DNM1L wt Allele")
(semmed "MFN1 gene" "coexists_with" "DNM1L wt Allele")
(semmed "Genes, cdc" "coexists_with" "DNM1L wt Allele")
(semmed "PPARGC1A wt Allele" "coexists_with" "DNM1L wt Allele")
(semmed "OPA1 gene" "coexists_with" "DNM1L wt Allele")
(semmed "SAMM50 gene" "coexists_with" "DNM1L wt Allele")
(semmed "OPA3 gene" "coexists_with" "DNM1L wt Allele")
(semmed "CCNC wt Allele" "coexists_with" "DNM1L wt Allele")
(semmed "Homologous Gene" "coexists_with" "DNM1L wt Allele")
(semmed "MFN2 wt Allele" "coexists_with" "DNM1L wt Allele")
(semmed "Lysergic Acid Diethylamide" "coexists_with" "DNM1L wt Allele")
(semmed "Methysergide" "coexists_with" "DNM1L wt Allele")
(semmed "Calcium" "coexists_with" "DNM1L wt Allele")
(semmed "honokiol" "coexists_with" "DNM1L wt Allele")
(semmed
"2-bromolysergic acid diethylamide"
"coexists_with"
"DNM1L wt Allele")
(rtx "GTP" "directly_interacts_with" "DNM1L")
(rtx "H2O" "directly_interacts_with" "DNM1L")
(rtx "Orthophosphate" "directly_interacts_with" "DNM1L")
(rtx "GDP" "directly_interacts_with" "DNM1L")
(rtx "APEH" "directly_interacts_with" "DNM1L")
(rtx "COPS5" "directly_interacts_with" "DNM1L")
(rtx "CYHR1" "directly_interacts_with" "DNM1L")
(rtx "ATIC" "directly_interacts_with" "DNM1L")
(rtx "CDCA5" "directly_interacts_with" "DNM1L")
(rtx "ATP6V1C1" "directly_interacts_with" "DNM1L")
(rtx "PROP1" "directly_interacts_with" "DNM1L")
(rtx "NUFIP1" "directly_interacts_with" "DNM1L")
(rtx "UBE2H" "directly_interacts_with" "DNM1L")
(rtx "MIEF2" "directly_interacts_with" "DNM1L")
(rtx "FZR1" "directly_interacts_with" "DNM1L")
(rtx "ARFIP1" "directly_interacts_with" "DNM1L")
(rtx "CPNE2" "directly_interacts_with" "DNM1L")
(rtx "SSB" "directly_interacts_with" "DNM1L")
(rtx "BCL2L1" "directly_interacts_with" "DNM1L")
(rtx "LLGL2" "directly_interacts_with" "DNM1L")
(rtx "JMJD6" "directly_interacts_with" "DNM1L")
(rtx "VIM" "directly_interacts_with" "DNM1L")
(rtx "VPS26A" "directly_interacts_with" "DNM1L")
(rtx "TES" "directly_interacts_with" "DNM1L")
(rtx "HAX1" "directly_interacts_with" "DNM1L")
(rtx "SAMM50" "directly_interacts_with" "DNM1L")
(rtx "SOX2" "directly_interacts_with" "DNM1L")
(rtx "SIRT3" "directly_interacts_with" "DNM1L")
(rtx "NTRK1" "directly_interacts_with" "DNM1L")
(rtx "MIEF1" "directly_interacts_with" "DNM1L")
(rtx "TBC1D15" "directly_interacts_with" "DNM1L")
(rtx "PPIA" "directly_interacts_with" "DNM1L")
(rtx "PSMG3" "directly_interacts_with" "DNM1L")
(rtx "RRM2" "directly_interacts_with" "DNM1L")
(rtx "SCG3" "directly_interacts_with" "DNM1L")
(rtx "DUSP23" "directly_interacts_with" "DNM1L")
(rtx "MFF" "directly_interacts_with" "DNM1L")
(rtx "MARCH5" "directly_interacts_with" "DNM1L")
(rtx "PGAM5" "directly_interacts_with" "DNM1L")
(rtx "ESR1" "directly_interacts_with" "DNM1L")
(rtx "WDR5" "directly_interacts_with" "DNM1L")
(rtx "SCRIB" "directly_interacts_with" "DNM1L")
(rtx "SH3GL1" "directly_interacts_with" "DNM1L")
(rtx "CDC5L" "directly_interacts_with" "DNM1L")
(rtx "HSPD1" "directly_interacts_with" "DNM1L")
(rtx "LRRK2" "directly_interacts_with" "DNM1L")
(rtx "ZBTB24" "directly_interacts_with" "DNM1L")
(rtx "A0A0G2JQ02" "directly_interacts_with" "DNM1L")
(rtx "CA14" "directly_interacts_with" "DNM1L")
(rtx "EGFR" "directly_interacts_with" "DNM1L")
(rtx "FIS1" "directly_interacts_with" "DNM1L")
(rtx "PINK1" "directly_interacts_with" "DNM1L")
(rtx "TMEM11" "directly_interacts_with" "DNM1L")
(rtx "PEX14" "directly_interacts_with" "DNM1L")
(rtx "DGUOK" "directly_interacts_with" "DNM1L")
(rtx "DNAAF2" "directly_interacts_with" "DNM1L")
(rtx "GSK3B" "directly_interacts_with" "DNM1L")
(rtx "DIABLO" "directly_interacts_with" "DNM1L")
(rtx "MAGEA1" "directly_interacts_with" "DNM1L")
(rtx "MAGEA3" "directly_interacts_with" "DNM1L")
(rtx "MUL1" "directly_interacts_with" "DNM1L")
(rtx "SNW1" "directly_interacts_with" "DNM1L")
(rtx "MAP3K10" "directly_interacts_with" "DNM1L")
(rtx "SEC24A" "directly_interacts_with" "DNM1L")
(semmed "Cyclin-Dependent Kinase 5" "interacts_with" "DNM1L wt Allele")
(semmed
"calmodulin-dependent protein kinase II"
"interacts_with"
"DNM1L wt Allele")
(semmed
"mitogen-activated protein kinase p38"
"interacts_with"
"DNM1L wt Allele")
(monarch "MFF" "interacts_with" "DNM1L")
(semmed
"Cyclic AMP-Dependent Protein Kinases"
"interacts_with"
"DNM1L wt Allele")
(semmed "CDC2 Protein Kinase" "interacts_with" "DNM1L wt Allele")
(monarch "DGUOK" "interacts_with" "DNM1L")
(semmed "Ligase" "interacts_with" "DNM1L wt Allele")
(semmed "Actins" "interacts_with" "DNM1L wt Allele")
(monarch "CASP8" "interacts_with" "DNM1L")
(semmed "TRANSCRIPTION FACTOR" "interacts_with" "DNM1L wt Allele")
(semmed "Mitochondrial Proteins" "interacts_with" "DNM1L wt Allele")
(monarch "DNM1L" "interacts_with" "DNM1L")
(semmed "Calmodulin" "interacts_with" "DNM1L wt Allele")
(semmed "Insulin" "interacts_with" "DNM1L wt Allele")
(monarch "PINK1" "interacts_with" "DNM1L")
(semmed "Specific antibody" "interacts_with" "DNM1L wt Allele")
(semmed "PKA inhibitor" "interacts_with" "DNM1L wt Allele")
(monarch "EGFR" "interacts_with" "DNM1L")
(semmed "Soluble ErbB-1" "interacts_with" "DNM1L wt Allele")
(monarch "SOD1" "interacts_with" "DNM1L")
(semmed "TGFB1 gene" "interacts_with" "DNM1L wt Allele")
(semmed "SQSTM1 gene" "interacts_with" "DNM1L wt Allele")
(monarch "SOX2" "interacts_with" "DNM1L")
(semmed "FUNDC1 gene" "interacts_with" "DNM1L wt Allele")
(semmed "GSKIP gene" "interacts_with" "DNM1L wt Allele")
(monarch "CSNK2A1" "interacts_with" "Dnm1l")
(monarch "PEX11B" "interacts_with" "DNM1L")
(semmed "APP gene" "interacts_with" "DNM1L wt Allele")
(semmed "MUL1 gene" "interacts_with" "DNM1L wt Allele")
(monarch "PEX14" "interacts_with" "DNM1L")
(semmed "GRAP2 gene" "interacts_with" "DNM1L wt Allele")
(semmed "PARK7 wt Allele" "interacts_with" "DNM1L wt Allele")
(monarch "MFN2" "interacts_with" "DNM1L")
(semmed "MIEF2 gene" "interacts_with" "DNM1L wt Allele")
(semmed "FIS1 gene" "interacts_with" "DNM1L wt Allele")
(monarch "HAX1" "interacts_with" "DNM1L")
(semmed "EGFR gene" "interacts_with" "DNM1L wt Allele")
(semmed "CAMK2G gene" "interacts_with" "DNM1L wt Allele")
(monarch "DNAAF2" "interacts_with" "DNM1L")
(semmed "POLDIP2 gene" "interacts_with" "DNM1L wt Allele")
(semmed "NUP62 gene" "interacts_with" "DNM1L wt Allele")
(monarch "PRKN" "interacts_with" "DNM1L")
(semmed "MIEF1 gene" "interacts_with" "DNM1L wt Allele")
(semmed "CA2 gene" "interacts_with" "DNM1L wt Allele")
(monarch "NTRK1" "interacts_with" "DNM1L")
(semmed "MAPK1 gene" "interacts_with" "DNM1L wt Allele")
(monarch "LRRK2" "interacts_with" "DNM1L")
(semmed "MAPT gene" "interacts_with" "DNM1L wt Allele")
(semmed "APP wt Allele" "interacts_with" "DNM1L wt Allele")
(monarch "SNW1" "interacts_with" "DNM1L")
(semmed "AIMP2 wt Allele" "interacts_with" "DNM1L wt Allele")
(semmed "MAPK14 wt Allele" "interacts_with" "DNM1L wt Allele")
(monarch "FIS1" "interacts_with" "DNM1L")
(semmed "KHDRBS1 gene" "interacts_with" "DNM1L wt Allele")
(semmed "OPA1 gene" "interacts_with" "DNM1L wt Allele")
(monarch "CHCHD3" "interacts_with" "DNM1L")
(semmed "RAB32 gene" "interacts_with" "DNM1L wt Allele")
(semmed "CAMP gene" "interacts_with" "DNM1L wt Allele")
(monarch "GABRR1" "interacts_with" "DNM1L")
(semmed "RAD50 wt Allele" "interacts_with" "DNM1L wt Allele")
(semmed "PHEX gene" "interacts_with" "DNM1L wt Allele")
(monarch "FZR1" "interacts_with" "DNM1L")
(semmed "SAMM50 gene" "interacts_with" "DNM1L wt Allele")
(semmed "AHSA1 gene" "interacts_with" "DNM1L wt Allele")
(monarch "SAMM50" "interacts_with" "DNM1L")
(semmed "CDK1 wt Allele" "interacts_with" "DNM1L wt Allele")
(monarch "mfn2" "interacts_with" "dnm1l")
(semmed "CANX wt Allele" "interacts_with" "DNM1L wt Allele")
(monarch "MFN1" "interacts_with" "DNM1L")
(semmed "MYH14 gene" "interacts_with" "DNM1L wt Allele")
(semmed "DCTN4 gene" "interacts_with" "DNM1L wt Allele")
(monarch "Itsn2" "interacts_with" "Dnm1l")
(monarch "MIEF1" "interacts_with" "DNM1L")
(semmed "GTF2H1 wt Allele" "interacts_with" "DNM1L wt Allele")
(semmed "EHD1 gene" "interacts_with" "DNM1L wt Allele")
(monarch "TBC1D15" "interacts_with" "DNM1L")
(semmed "CRK gene" "interacts_with" "DNM1L wt Allele")
(semmed "MFN2 wt Allele" "interacts_with" "DNM1L wt Allele")
(monarch "MUL1" "interacts_with" "DNM1L")
(semmed "SEPT2 gene" "interacts_with" "DNM1L wt Allele")
(monarch "LLGL2" "interacts_with" "DNM1L")
(semmed "Plasmids" "interacts_with" "DNM1L wt Allele")
(semmed "arenobufagin" "interacts_with" "DNM1L wt Allele")
(monarch "CDC5L" "interacts_with" "DNM1L")
(semmed "Calcium" "interacts_with" "DNM1L wt Allele")
(semmed "sodium bisulfide" "interacts_with" "DNM1L wt Allele")
(monarch "Syngap1" "interacts_with" "Dnm1l")
(monarch "CA14" "interacts_with" "DNM1L")
(semmed "Staurosporine" "interacts_with" "DNM1L wt Allele")
(semmed "15-deoxyprostaglandin J2" "interacts_with" "DNM1L wt Allele")
(monarch "MTFP1" "interacts_with" "DNM1L")
(semmed "Reactive Oxygen Species" "interacts_with" "DNM1L wt Allele")
(monarch "synj1" "interacts_with" "dnm1l")
(semmed "Cyclic AMP" "interacts_with" "DNM1L wt Allele")
(monarch "ATP6V1C1" "interacts_with" "DNM1L")
(monarch "Mysm1" "interacts_with" "Dnm1l")
(monarch "MARCH5" "interacts_with" "DNM1L")
(monarch "Eed" "interacts_with" "Dnm1l")
(monarch "PPIA" "interacts_with" "DNM1L")
(monarch "PEX11A" "interacts_with" "DNM1L")
(monarch "NUFIP1" "interacts_with" "DNM1L")
(monarch "AVL9" "interacts_with" "DNM1L")
(monarch "Lrrk2" "interacts_with" "Dnm1l")
(monarch "FGL1" "interacts_with" "DNM1L")
(monarch "CDCA5" "interacts_with" "DNM1L")
(monarch "gak" "interacts_with" "dnm1l")
(monarch "PGAM5" "interacts_with" "DNM1L")
(monarch "Pgam5" "interacts_with" "Dnm1l")
(monarch "ARFIP1" "interacts_with" "DNM1L")
(monarch "DUSP23" "interacts_with" "DNM1L")
(monarch "COPS5" "interacts_with" "DNM1L")
(monarch "CPNE2" "interacts_with" "DNM1L")
(monarch "MYSM1" "interacts_with" "DNM1L")
(monarch "Cyfip1" "interacts_with" "Dnm1l")
(monarch "BCL2L1" "interacts_with" "DNM1L")
(monarch "PEX11G" "interacts_with" "DNM1L")
(monarch "synrg" "interacts_with" "dnm1l")
(monarch "UNK" "interacts_with" "DNM1L")
(monarch "Synj1" "interacts_with" "Dnm1l")
(monarch "Nek2" "interacts_with" "DNM1L")
(monarch "Akap1" "interacts_with" "Dnm1l")
(monarch "['Kif19a', 'Kif19']" "interacts_with" "DNM1L")
(monarch "Wdr5" "interacts_with" "DNM1L")
(monarch "Foxp3" "interacts_with" "Dnm1l")
(monarch "Unk" "interacts_with" "Dnm1l")
(monarch "eps15" "interacts_with" "dnm1l")
(monarch "Ppp3r1" "interacts_with" "Dnm1l")
(monarch "casp8" "interacts_with" "dnm1l")
(monarch "LOC100911485" "interacts_with" "Dnm1l")
(monarch "grapa" "interacts_with" "dnm1l")
(monarch "Grb2" "interacts_with" "Dnm1l")
(monarch "mfn1b" "interacts_with" "dnm1l")
(monarch "Exoc5" "interacts_with" "Dnm1l")
(monarch "itsn2a" "interacts_with" "dnm1l")
(monarch "Casp8" "interacts_with" "Dnm1l")
(monarch "grb2b" "interacts_with" "dnm1l")
(monarch "Sept7" "interacts_with" "Dnm1l")
(monarch "grb2a" "interacts_with" "dnm1l")
(monarch "Mfn1" "interacts_with" "Dnm1l")
(monarch "eps15l1a" "interacts_with" "dnm1l")
(monarch "Eps15l1" "interacts_with" "Dnm1l")
(monarch "grapb" "interacts_with" "dnm1l")
(monarch "Eps15" "interacts_with" "Dnm1l")
(monarch "itsn2b" "interacts_with" "dnm1l")
(monarch "Mfn2" "interacts_with" "Dnm1l")
(monarch "itsn1" "interacts_with" "dnm1l")
(monarch "Trip12" "interacts_with" "Dnm1l")
(monarch "Fis1" "interacts_with" "Dnm1l")
(monarch #f "interacts_with" "dnm1l")
(semmed "Entire hippocampus" "location_of" "DNM1L wt Allele")
(semmed "Retina" "location_of" "DNM1L wt Allele")
(semmed "Tissue membrane" "location_of" "DNM1L wt Allele")
(semmed "Muscle" "location_of" "DNM1L wt Allele")
(semmed "Heart" "location_of" "DNM1L wt Allele")
(semmed "Neostriatum" "location_of" "DNM1L wt Allele")
(semmed "Brain" "location_of" "DNM1L wt Allele")
(semmed "Ovary" "location_of" "DNM1L wt Allele")
(semmed "Body tissue" "location_of" "DNM1L wt Allele")
(semmed "Cerebral cortex" "location_of" "DNM1L wt Allele")
(semmed "Common carotid artery" "location_of" "DNM1L wt Allele")
(semmed "Kidney" "location_of" "DNM1L wt Allele")
(semmed "HeLa Cells" "location_of" "DNM1L wt Allele")
(semmed "Hepatocyte" "location_of" "DNM1L wt Allele")
(semmed "Differentiated muscle cell" "location_of" "DNM1L wt Allele")
(semmed "Mammalian Cell" "location_of" "DNM1L wt Allele")
(semmed "Neurons" "location_of" "DNM1L wt Allele")
(semmed "Lymphocyte" "location_of" "DNM1L wt Allele")
(semmed "Primary spermatocyte" "location_of" "DNM1L wt Allele")
(semmed "Cells" "location_of" "DNM1L wt Allele")
(semmed "Peripheral Blood Lymphocyte" "location_of" "DNM1L wt Allele")
(semmed "Chinese Hamster Ovary Cell" "location_of" "DNM1L wt Allele")
(semmed "Cultured Cells" "location_of" "DNM1L wt Allele")
(semmed "Oocytes" "location_of" "DNM1L wt Allele")
(semmed "Fibroblasts" "location_of" "DNM1L wt Allele")
(semmed "Neuroglia" "location_of" "DNM1L wt Allele")
(semmed "Adipocytes" "location_of" "DNM1L wt Allele")
(semmed "Clone Cells" "location_of" "DNM1L wt Allele")
(semmed "Purkinje Cells" "location_of" "DNM1L wt Allele")
(semmed "trans-Golgi Network" "location_of" "DNM1L wt Allele")
(semmed "Golgi Apparatus" "location_of" "DNM1L wt Allele")
(semmed "Mitochondria" "location_of" "DNM1L wt Allele")
(semmed "Mitochondrial Membrane, Outer" "location_of" "DNM1L wt Allele")
(semmed "Dendritic Spines" "location_of" "DNM1L wt Allele")
(semmed "Organelles" "location_of" "DNM1L wt Allele")
(semmed "Membrane" "location_of" "DNM1L wt Allele")
(semmed "cell cortex" "location_of" "DNM1L wt Allele")
(semmed "Cytoplasm" "location_of" "DNM1L wt Allele")
(semmed "Chromosomes, Human, Pair 21" "location_of" "DNM1L wt Allele")
(semmed "Cell Fraction" "location_of" "DNM1L wt Allele")
(semmed "Endoplasmic Reticulum" "location_of" "DNM1L wt Allele")
(semmed "Mitochondrial Membranes" "location_of" "DNM1L wt Allele")
(semmed
"Mitochondrial electron transport chain"
"location_of"
"DNM1L wt Allele")
(semmed
"mitogen-activated protein kinase p38"
"negatively_regulates"
"DNM1L wt Allele")
(semmed "Citrate (si)-Synthase" "negatively_regulates" "DNM1L wt Allele")
(semmed
"Cyclic AMP-Dependent Protein Kinases"
"negatively_regulates"
"DNM1L wt Allele")
(semmed "angiogenin" "negatively_regulates" "DNM1L wt Allele")
(semmed "PRDX3 peroxidase" "negatively_regulates" "DNM1L wt Allele")
(semmed "Mitochondrial Proteins" "negatively_regulates" "DNM1L wt Allele")
(semmed "Collagen Type I" "negatively_regulates" "DNM1L wt Allele")
(semmed "alpha-Synuclein" "negatively_regulates" "DNM1L wt Allele")
(semmed "SIRT4 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "SQSTM1 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "GRAP2 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "MIEF2 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "HTRA2 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "ACSM3 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "GPAM gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "MFF gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "ANXA6 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "PKM2 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "CS gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "PRKAB1 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "POLDIP2 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "TP53 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "TP53 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "MIEF1 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "MAPK1 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "S100A7 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "AIMP2 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "MAPK14 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "ERVK-15 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "CUX1 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "ANG gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "PRDX3 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "PRKAA2 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "SART3 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "PRKAA1 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "AHSA1 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "PINK1 gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "CRK gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "SIX1 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "Homologous Gene" "negatively_regulates" "DNM1L wt Allele")
(semmed "MFN2 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed "ROS1 wt Allele" "negatively_regulates" "DNM1L wt Allele")
(semmed
"Carbonyl Cyanide m-Chlorophenyl Hydrazone"
"negatively_regulates"
"DNM1L wt Allele")
(semmed "Bicuculline" "negatively_regulates" "DNM1L wt Allele")
(semmed "Niclosamide" "negatively_regulates" "DNM1L wt Allele")
(semmed "MicroRNAs" "negatively_regulates" "DNM1L wt Allele")
(semmed "15-deoxyprostaglandin J2" "negatively_regulates" "DNM1L wt Allele")
(semmed "Reactive Oxygen Species" "negatively_regulates" "DNM1L wt Allele")
(semmed "ginkgolide K" "negatively_regulates" "DNM1L wt Allele")
(semmed
"9-deoxy-delta-9-prostaglandin D2"
"negatively_regulates"
"DNM1L wt Allele")
(semmed "Small Molecule" "negatively_regulates" "DNM1L wt Allele")
(semmed "cryptolepine" "negatively_regulates" "DNM1L wt Allele")
(semmed "Ru 360" "negatively_regulates" "DNM1L wt Allele")
(semmed "RNA, Small Interfering" "negatively_regulates" "DNM1L wt Allele")
(semmed "Lithium Chloride" "negatively_regulates" "DNM1L wt Allele")
(semmed "E-Cadherin" "part_of" "DNM1L wt Allele")
(semmed "ezrin" "part_of" "DNM1L wt Allele")
(semmed "Cytoplasmic Protein" "part_of" "DNM1L wt Allele")
(semmed "alpha-Synuclein" "part_of" "DNM1L wt Allele")
(semmed "Regulatory Sequences, Nucleic Acid" "part_of" "DNM1L wt Allele")
(semmed "RNA, Small Interfering" "part_of" "DNM1L wt Allele")
(semmed "Cyclin-Dependent Kinase 5" "positively_regulates" "DNM1L wt Allele")
(semmed
"Proto-Oncogene Proteins c-akt"
"positively_regulates"
"DNM1L wt Allele")
(semmed "Calcineurin" "positively_regulates" "DNM1L wt Allele")
(semmed "Mitochondrial Proteins" "positively_regulates" "DNM1L wt Allele")
(semmed
"Receptor Protein-Tyrosine Kinases"
"positively_regulates"
"DNM1L wt Allele")
(semmed
"mitochondrial calcium uniporter"
"positively_regulates"
"DNM1L wt Allele")
(semmed "SQSTM1 gene" "positively_regulates" "DNM1L wt Allele")
(semmed "BAX wt Allele" "positively_regulates" "DNM1L wt Allele")
(semmed "E2F5 gene" "positively_regulates" "DNM1L wt Allele")
(semmed "ATG5 wt Allele" "positively_regulates" "DNM1L wt Allele")
(semmed "AKT1 gene" "positively_regulates" "DNM1L wt Allele")
(semmed "FAS gene" "positively_regulates" "DNM1L wt Allele")
(semmed "BAK1 gene" "positively_regulates" "DNM1L wt Allele")
(semmed "OPA1 gene" "positively_regulates" "DNM1L wt Allele")
(semmed "PRKAA2 wt Allele" "positively_regulates" "DNM1L wt Allele")
(semmed "MAP1LC3A gene" "positively_regulates" "DNM1L wt Allele")
(semmed "BECN1 wt Allele" "positively_regulates" "DNM1L wt Allele")
(semmed "BAX gene" "positively_regulates" "DNM1L wt Allele")
(semmed "ROCK1 gene" "positively_regulates" "DNM1L wt Allele")
(semmed "MFN2 wt Allele" "positively_regulates" "DNM1L wt Allele")
(semmed "ROS1 wt Allele" "positively_regulates" "DNM1L wt Allele")
(semmed
"Lysergic Acid Diethylamide Tartrate"
"positively_regulates"
"DNM1L wt Allele")
(semmed "Reactive Oxygen Species" "positively_regulates" "DNM1L wt Allele")
(semmed "Cadmium" "positively_regulates" "DNM1L wt Allele")
(semmed "Ceramides" "positively_regulates" "DNM1L wt Allele")
(semmed "Hydrogen Peroxide" "positively_regulates" "DNM1L wt Allele")
(semmed "Cells" "produces" "DNM1L protein, human")
(semmed "Phosphotransferases" "produces" "DNM1L wt Allele")
(semmed "CATALASE" "produces" "DNM1L wt Allele")
(semmed "Mitochondrial Proteins" "produces" "DNM1L wt Allele")
(semmed "SOD2 gene" "produces" "DNM1L wt Allele")
(semmed "MFN1 gene" "produces" "DNM1L wt Allele")
(semmed "CAT gene" "produces" "DNM1L wt Allele")
(semmed "OPA1 gene" "produces" "DNM1L wt Allele")
(semmed "PINK1 gene" "produces" "DNM1L wt Allele")
(semmed "MFN2 wt Allele" "produces" "DNM1L wt Allele")
(semmed "Neurons" "produces" "DNM1L wt Allele")
(semmed "Cells" "produces" "DNM1L wt Allele")
(semmed "Oocytes" "produces" "DNM1L wt Allele")
(semmed "Podocytes" "produces" "DNM1L wt Allele")
(semmed "Myocytes, Cardiac" "produces" "DNM1L wt Allele")
(semmed "Mitochondria" "produces" "DNM1L wt Allele")
(rtx "TFAP2A" "regulates" "DNM1L")
(rtx "TBP" "regulates" "DNM1L")
(rtx "RCOR1" "regulates" "DNM1L")
(rtx "CHD7" "regulates" "DNM1L")
(rtx "ELK1" "regulates" "DNM1L")
(rtx "EOMES" "regulates" "DNM1L")
(rtx "IRF3" "regulates" "DNM1L")
(rtx "JUND" "regulates" "DNM1L")
(rtx "MAPK3" "regulates" "DNM1L")
(rtx "MAZ" "regulates" "DNM1L")
(rtx "ZNF143" "regulates" "DNM1L")
(rtx "HNF4A" "regulates" "DNM1L")
(rtx "ZC3H11A" "regulates" "DNM1L")
(rtx "CTCF" "regulates" "DNM1L")
(rtx "E2F4" "regulates" "DNM1L")
(rtx "E2F1" "regulates" "DNM1L")
(rtx "JUN" "regulates" "DNM1L")
(rtx "KDM4A" "regulates" "DNM1L")
(rtx "KDM5B" "regulates" "DNM1L")
(rtx "GTF2F1" "regulates" "DNM1L")
(rtx "CDX2" "regulates" "DNM1L")
(rtx "STAT1" "regulates" "DNM1L")
(rtx "KLF4" "regulates" "DNM1L")
(rtx "CEBPB" "regulates" "DNM1L")
(rtx "HMGN3" "regulates" "DNM1L")
(rtx "POU5F1" "regulates" "DNM1L")
(rtx "ZNF384" "regulates" "DNM1L")
(rtx "NFYA" "regulates" "DNM1L")
(rtx "SMARCB1" "regulates" "DNM1L")
(rtx "ZMIZ1" "regulates" "DNM1L")
(rtx "IRF1" "regulates" "DNM1L")
(rtx "SMC3" "regulates" "DNM1L")
(rtx "MAPK1" "regulates" "DNM1L")
(rtx "SMARCC1" "regulates" "DNM1L")
(rtx "TBL1XR1" "regulates" "DNM1L")
(rtx "SPI1" "regulates" "DNM1L")
(rtx "BRD7" "regulates" "DNM1L")
(rtx "TAL1" "regulates" "DNM1L")
(rtx "SP1" "regulates" "DNM1L")
(rtx "HDAC1" "regulates" "DNM1L")
(rtx "CHD1" "regulates" "DNM1L")
(rtx "SMARCC2" "regulates" "DNM1L")
(rtx "GATA3" "regulates" "DNM1L")
(rtx "HDAC2" "regulates" "DNM1L")
(rtx "EP300" "regulates" "DNM1L")
(rtx "SETDB1" "regulates" "DNM1L")
(rtx "MGEA5" "regulates" "DNM1L")
(rtx "PPARG" "regulates" "DNM1L")
(rtx "MXI1" "regulates" "DNM1L")
(rtx "NRF1" "regulates" "DNM1L")
(rtx "PRKCD" "regulates" "DNM1L")
(rtx "ZNF274" "regulates" "DNM1L")
(rtx "NFATC1" "regulates" "DNM1L")
(rtx "MAFK" "regulates" "DNM1L")
(rtx "USF2" "regulates" "DNM1L")
(rtx "RBBP5" "regulates" "DNM1L")
(rtx "RFX5" "regulates" "DNM1L")
(rtx "TRIM28" "regulates" "DNM1L")
(rtx "BRCA1" "regulates" "DNM1L")
(rtx "SIRT6" "regulates" "DNM1L")
(rtx "SMARCA4" "regulates" "DNM1L")
(rtx "SAP30" "regulates" "DNM1L")
(rtx "RAD21" "regulates" "DNM1L")
(rtx "ZNF263" "regulates" "DNM1L")
(rtx "MAX" "regulates" "DNM1L")
(rtx "ETV1" "regulates" "DNM1L")
(rtx "EZH2" "regulates" "DNM1L")
(rtx "KDM5A" "regulates" "DNM1L")
(rtx "CDK1" "regulates" "DNM1L")
(rtx "UBTF" "regulates" "DNM1L")
(rtx "CUX1" "regulates" "DNM1L")
(rtx "PINK1" "regulates" "DNM1L")
(rtx "GATA2" "regulates" "DNM1L")
(rtx "BACH1" "regulates" "DNM1L")
(rtx "PHF8" "regulates" "DNM1L")
(rtx "CDK5" "regulates" "DNM1L")
(rtx "PRKACA" "regulates" "DNM1L")
(rtx "CHD2" "regulates" "DNM1L")
(rtx "MYC" "regulates" "DNM1L")
(rtx "SREBF1" "regulates" "DNM1L")
(rtx "STAT3" "regulates" "DNM1L")
(rtx "SUZ12" "regulates" "DNM1L")
(rtx "INS" "regulates" "DNM1L")
(rtx "E2F6" "regulates" "DNM1L")
(rtx "FOXA1" "regulates" "DNM1L")
(rtx "GSK3B" "regulates" "DNM1L")
(rtx "WRNIP1" "regulates" "DNM1L")
(rtx "BCL6" "regulates" "DNM1L")
(rtx "BHLHE40" "regulates" "DNM1L")
(rtx "ESRRA" "regulates" "DNM1L")
(rtx "ETS1" "regulates" "DNM1L")
(rtx "GATA1" "regulates" "DNM1L")
(rtx "HCFC1" "regulates" "DNM1L")
(rtx "CCNT2" "regulates" "DNM1L")
(rtx "CDK2" "regulates" "DNM1L")
(rtx "MIR3183" "regulates" "DNM1L")
(rtx "MIR371B" "regulates" "DNM1L")
(rtx "MIR3132" "regulates" "DNM1L")
(rtx "MIR516A1" "regulates" "DNM1L")
(rtx "MIR711" "regulates" "DNM1L")
(rtx "MIR365A" "regulates" "DNM1L")
(rtx "MIR4723" "regulates" "DNM1L")
(rtx "MIR4687" "regulates" "DNM1L")
(rtx "MIR197" "regulates" "DNM1L")
(rtx "MIR4782" "regulates" "DNM1L")
(rtx "MIR513C" "regulates" "DNM1L")
(rtx "MIR5001" "regulates" "DNM1L")
(rtx "MIR4633" "regulates" "DNM1L")
(rtx "MIR5706" "regulates" "DNM1L")
(rtx "MIR502" "regulates" "DNM1L")
(rtx "MIR516A2" "regulates" "DNM1L"))
'((scigraph
"GTP-Binding Protein alpha Subunit, Gq"
"coexists_with"
"DNM1L gene")
(scigraph "CDC2 Protein Kinase" "coexists_with" "DNM1L gene")
(scigraph "XRCC1 protein, human" "coexists_with" "DNM1L gene")
(scigraph "porin" "coexists_with" "DNM1L gene")
(scigraph "arenobufagin" "coexists_with" "DNM1L gene")
(scigraph "Lysergic Acid Diethylamide" "coexists_with" "DNM1L gene")
(scigraph "Cardiolipins" "coexists_with" "DNM1L gene")
(scigraph "Staurosporine" "coexists_with" "DNM1L gene")
(scigraph "Glucose" "coexists_with" "DNM1L gene")
(scigraph "Calcium" "coexists_with" "DNM1L gene")
(scigraph "MFN1 gene" "coexists_with" "DNM1L gene")
(scigraph "FIS1 gene" "coexists_with" "DNM1L gene")
(scigraph "SAMM50 gene" "coexists_with" "DNM1L gene")
(scigraph "CCNC gene" "coexists_with" "DNM1L gene")
(scigraph "Genes, cdc" "coexists_with" "DNM1L gene")
(scigraph "Genes" "coexists_with" "DNM1L gene")
(scigraph "Homologous Gene" "coexists_with" "DNM1L gene")
(scigraph "MFN2 gene" "coexists_with" "DNM1L gene")
(scigraph "cyclin C" "coexists_with" "DNM1L gene")
(scigraph "GNAQ gene" "coexists_with" "DNM1L gene")
(scigraph "ANXA6 gene" "coexists_with" "DNM1L gene")
(scigraph "MFF" "interacts_with" "DNM1L")
(scigraph "DGUOK" "interacts_with" "DNM1L")
(scigraph "CASP8" "interacts_with" "DNM1L")
(scigraph "CSNK2A1" "interacts_with" "Dnm1l")
(scigraph "DNM1L" "interacts_with" "DNM1L")
(scigraph "PINK1" "interacts_with" "DNM1L")
(scigraph "EGFR" "interacts_with" "DNM1L")
(scigraph "SOD1" "interacts_with" "DNM1L")
(scigraph "SOX2" "interacts_with" "DNM1L")
(scigraph "mfn2" "interacts_with" "dnm1l")
(scigraph "PEX11B" "interacts_with" "DNM1L")
(scigraph "PEX14" "interacts_with" "DNM1L")
(scigraph "MFN2" "interacts_with" "DNM1L")
(scigraph "HAX1" "interacts_with" "DNM1L")
(scigraph "synj1" "interacts_with" "dnm1l")
(scigraph "DNAAF2" "interacts_with" "DNM1L")
(scigraph "Syngap1" "interacts_with" "Dnm1l")
(scigraph "PRKN" "interacts_with" "DNM1L")
(scigraph "NTRK1" "interacts_with" "DNM1L")
(scigraph "Eed" "interacts_with" "Dnm1l")
(scigraph "LRRK2" "interacts_with" "DNM1L")
(scigraph "gak" "interacts_with" "dnm1l")
(scigraph "SNW1" "interacts_with" "DNM1L")
(scigraph "Lrrk2" "interacts_with" "Dnm1l")
(scigraph "Itsn2" "interacts_with" "Dnm1l")
(scigraph "FIS1" "interacts_with" "DNM1L")
(scigraph "CHCHD3" "interacts_with" "DNM1L")
(scigraph "MUL1 gene" "interacts_with" "DNM1L gene")
(scigraph "GABRR1" "interacts_with" "DNM1L")
(scigraph "synrg" "interacts_with" "dnm1l")
(scigraph "FZR1" "interacts_with" "DNM1L")
(scigraph "Cyfip1" "interacts_with" "Dnm1l")
(scigraph "SAMM50" "interacts_with" "DNM1L")
(scigraph "MFN1" "interacts_with" "DNM1L")
(scigraph "Akap1" "interacts_with" "Dnm1l")
(scigraph "MIEF1" "interacts_with" "DNM1L")
(scigraph "eps15" "interacts_with" "dnm1l")
(scigraph "TBC1D15" "interacts_with" "DNM1L")
(scigraph "Foxp3" "interacts_with" "Dnm1l")
(scigraph "Mysm1" "interacts_with" "Dnm1l")
(scigraph "Unk" "interacts_with" "Dnm1l")
(scigraph "MUL1" "interacts_with" "DNM1L")
(scigraph "MIEF2 gene" "interacts_with" "DNM1L gene")
(scigraph "LLGL2" "interacts_with" "DNM1L")
(scigraph "casp8" "interacts_with" "dnm1l")
(scigraph "CDC5L" "interacts_with" "DNM1L")
(scigraph "CA14" "interacts_with" "DNM1L")
(scigraph "grapa" "interacts_with" "dnm1l")
(scigraph "Pgam5" "interacts_with" "Dnm1l")
(scigraph "MTFP1" "interacts_with" "DNM1L")
(scigraph "FIS1 gene" "interacts_with" "DNM1L gene")
(scigraph "ATP6V1C1" "interacts_with" "DNM1L")
(scigraph "mfn1b" "interacts_with" "dnm1l")
(scigraph "MARCH5" "interacts_with" "DNM1L")
(scigraph "PPIA" "interacts_with" "DNM1L")
(scigraph "itsn2a" "interacts_with" "dnm1l")
(scigraph "Synj1" "interacts_with" "Dnm1l")
(scigraph "PEX11A" "interacts_with" "DNM1L")
(scigraph "MYH14 gene" "interacts_with" "DNM1L gene")
(scigraph "NUFIP1" "interacts_with" "DNM1L")
(scigraph "grb2b" "interacts_with" "dnm1l")
(scigraph "AVL9" "interacts_with" "DNM1L")
(scigraph "FGL1" "interacts_with" "DNM1L")
(scigraph "grb2a" "interacts_with" "dnm1l")
(scigraph "Ppp3r1" "interacts_with" "Dnm1l")
(scigraph "CDCA5" "interacts_with" "DNM1L")
(scigraph "SAMM50 gene" "interacts_with" "DNM1L gene")
(scigraph "PGAM5" "interacts_with" "DNM1L")
(scigraph "eps15l1a" "interacts_with" "dnm1l")
(scigraph "ARFIP1" "interacts_with" "DNM1L")
(scigraph "DUSP23" "interacts_with" "DNM1L")
(scigraph "grapb" "interacts_with" "dnm1l")
(scigraph "LOC100911485" "interacts_with" "Dnm1l")
(scigraph "COPS5" "interacts_with" "DNM1L")
(scigraph "FUNDC1 gene" "interacts_with" "DNM1L gene")
(scigraph "CPNE2" "interacts_with" "DNM1L")
(scigraph "itsn2b" "interacts_with" "dnm1l")
(scigraph "MYSM1" "interacts_with" "DNM1L")
(scigraph "BCL2L1" "interacts_with" "DNM1L")
(scigraph "itsn1" "interacts_with" "dnm1l")
(scigraph "Grb2" "interacts_with" "Dnm1l")
(scigraph "PEX11G" "interacts_with" "DNM1L")
(scigraph "OPA1 gene" "interacts_with" "DNM1L gene")
(scigraph "UNK" "interacts_with" "DNM1L")
(scigraph #f "interacts_with" "dnm1l")
(scigraph "Nek2" "interacts_with" "DNM1L")
(scigraph "Exoc5" "interacts_with" "Dnm1l")
(scigraph "['Kif19a', 'Kif19']" "interacts_with" "DNM1L")
(scigraph "MAPT gene" "interacts_with" "DNM1L gene")
(scigraph "Wdr5" "interacts_with" "DNM1L")
(scigraph "Casp8" "interacts_with" "Dnm1l")
(scigraph "MIEF1 gene" "interacts_with" "DNM1L gene")
(scigraph "Sept7" "interacts_with" "Dnm1l")
(scigraph "PARK7 gene" "interacts_with" "DNM1L gene")
(scigraph "Mfn1" "interacts_with" "Dnm1l")
(scigraph "MFN2 gene" "interacts_with" "DNM1L gene")
(scigraph "Eps15l1" "interacts_with" "Dnm1l")
(scigraph "MAPK1 gene" "interacts_with" "DNM1L gene")
(scigraph "Eps15" "interacts_with" "Dnm1l")
(scigraph "NIN gene" "interacts_with" "DNM1L gene")
(scigraph "Mfn2" "interacts_with" "Dnm1l")
(scigraph "CDK1 gene" "interacts_with" "DNM1L gene")
(scigraph "Trip12" "interacts_with" "Dnm1l")
(scigraph "MFF gene" "interacts_with" "DNM1L gene")
(scigraph "Fis1" "interacts_with" "Dnm1l")
(scigraph "CAMP gene" "interacts_with" "DNM1L gene")
(scigraph "RAD50 gene" "interacts_with" "DNM1L gene")
(scigraph "CANX gene" "interacts_with" "DNM1L gene")
(scigraph "TGFB1 gene" "interacts_with" "DNM1L gene")
(scigraph "RAB32 gene" "interacts_with" "DNM1L gene")
(scigraph "CAMK2G gene" "interacts_with" "DNM1L gene")
(scigraph "CA2 gene" "interacts_with" "DNM1L gene")
(scigraph "PHEX gene" "interacts_with" "DNM1L gene")
(scigraph "SEPT2 gene" "interacts_with" "DNM1L gene")
(scigraph "Purkinje Cells" "location_of" "DNM1L gene")
(scigraph "trans-Golgi Network" "location_of" "DNM1L gene")
(scigraph "Dendritic Spines" "location_of" "DNM1L gene")
(scigraph "Peripheral Blood Lymphocyte" "location_of" "DNM1L gene")
(scigraph "Chinese Hamster Ovary Cell" "location_of" "DNM1L gene")
(scigraph "Mitochondrial Membrane, Outer" "location_of" "DNM1L gene")
(scigraph "Differentiated muscle cell" "location_of" "DNM1L gene")
(scigraph "perinuclear region" "location_of" "DNM1L gene")
(scigraph "Primary spermatocyte" "location_of" "DNM1L gene")
(scigraph "Cytosol" "location_of" "DNM1L gene")
(scigraph "Golgi Apparatus" "location_of" "DNM1L gene")
(scigraph "Cytoplasm" "location_of" "DNM1L gene")
(scigraph "Mitochondrial Membranes" "location_of" "DNM1L gene")
(scigraph "Mammalian Cell" "location_of" "DNM1L gene")
(scigraph "Tissue membrane" "location_of" "DNM1L gene")
(scigraph "Clone Cells" "location_of" "DNM1L gene")
(scigraph "Neostriatum" "location_of" "DNM1L gene")
(scigraph "Endoplasmic Reticulum" "location_of" "DNM1L gene")
(scigraph "Entire substantia nigra" "location_of" "DNM1L gene")
(scigraph "Lymphocyte" "location_of" "DNM1L gene")
(scigraph "Cultured Cells" "location_of" "DNM1L gene")
(scigraph "Common carotid artery" "location_of" "DNM1L gene")
(scigraph "Hela Cells" "location_of" "DNM1L gene")
(scigraph "Cell Fraction" "location_of" "DNM1L gene")
(scigraph "Neuroglia" "location_of" "DNM1L gene")
(scigraph "cell cortex" "location_of" "DNM1L gene")
(scigraph "Fibroblasts" "location_of" "DNM1L gene")
(scigraph "Mitochondria" "location_of" "DNM1L gene")
(scigraph "Muscle" "location_of" "DNM1L gene")
(scigraph "Retina" "location_of" "DNM1L gene")
(scigraph "Heart" "location_of" "DNM1L gene")
(scigraph "Cells" "location_of" "DNM1L gene")
(scigraph "Organelles" "location_of" "DNM1L gene")
(scigraph "Brain" "location_of" "DNM1L gene")
(scigraph "Kidney" "location_of" "DNM1L gene")
(scigraph "Oocytes" "location_of" "DNM1L gene")
(scigraph "Adipocytes" "location_of" "DNM1L gene")
(scigraph "Entire hippocampus" "location_of" "DNM1L gene")
(scigraph "Chromosomes, Human, Pair 12" "location_of" "DNM1L gene")
(scigraph "Membrane" "location_of" "DNM1L gene")
(scigraph "Neurons" "location_of" "DNM1L gene")
(scigraph "alpha-Synuclein" "negatively_regulates" "DNM1L gene")
(scigraph "Chaperonin 10" "negatively_regulates" "DNM1L gene")
(scigraph "PRDX3 peroxidase" "negatively_regulates" "DNM1L gene")
(scigraph
"Cyclic AMP-Dependent Protein Kinases"
"negatively_regulates"
"DNM1L gene")
(scigraph "Citrate (si)-Synthase" "negatively_regulates" "DNM1L gene")
(scigraph "Mitochondrial Proteins" "negatively_regulates" "DNM1L gene")
(scigraph
"Guanosine Triphosphate Phosphohydrolases"
"negatively_regulates"
"DNM1L gene")
(scigraph "angiogenin" "negatively_regulates" "DNM1L gene")
(scigraph
"9-deoxy-delta-9-prostaglandin D2"
"negatively_regulates"
"DNM1L gene")
(scigraph "Ru 360" "negatively_regulates" "DNM1L gene")
(scigraph "15-deoxyprostaglandin J2" "negatively_regulates" "DNM1L gene")
(scigraph "Bicuculline" "negatively_regulates" "DNM1L gene")
(scigraph
"Carbonyl Cyanide m-Chlorophenyl Hydrazone"
"negatively_regulates"
"DNM1L gene")
(scigraph "Niclosamide" "negatively_regulates" "DNM1L gene")
(scigraph "Reactive Oxygen Species" "negatively_regulates" "DNM1L gene")
(scigraph "Lithium Chloride" "negatively_regulates" "DNM1L gene")
(scigraph "small molecule" "negatively_regulates" "DNM1L gene")
(scigraph "RNA, Small Interfering" "negatively_regulates" "DNM1L gene")
(scigraph "MIEF2 gene" "negatively_regulates" "DNM1L gene")
(scigraph "GPAM gene" "negatively_regulates" "DNM1L gene")
(scigraph "SIRT4 gene" "negatively_regulates" "DNM1L gene")
(scigraph "PKM gene" "negatively_regulates" "DNM1L gene")
(scigraph "MIEF1 gene" "negatively_regulates" "DNM1L gene")
(scigraph "CUX1 gene" "negatively_regulates" "DNM1L gene")
(scigraph "S100A7 gene" "negatively_regulates" "DNM1L gene")
(scigraph "ANG gene" "negatively_regulates" "DNM1L gene")
(scigraph "Homologous Gene" "negatively_regulates" "DNM1L gene")
(scigraph "MFN2 gene" "negatively_regulates" "DNM1L gene")
(scigraph "MFF gene" "negatively_regulates" "DNM1L gene")
(scigraph "PRDX3 gene" "negatively_regulates" "DNM1L gene")
(scigraph "ROS1 gene" "negatively_regulates" "DNM1L gene")
(scigraph "PINK1 gene" "negatively_regulates" "DNM1L gene")
(scigraph "SART3 gene" "negatively_regulates" "DNM1L gene")
(scigraph "HTRA2 gene" "negatively_regulates" "DNM1L gene")
(scigraph "ERVK-15 gene" "negatively_regulates" "DNM1L gene")
(scigraph "CS gene" "negatively_regulates" "DNM1L gene")
(scigraph "ANXA6 gene" "negatively_regulates" "DNM1L gene")
(scigraph "E-Cadherin" "part_of" "DNM1L gene")
(scigraph "ezrin" "part_of" "DNM1L gene")
(scigraph "Ubiquitin" "part_of" "DNM1L gene")
(scigraph "RNA, Small Interfering" "part_of" "DNM1L gene")
(scigraph "Guanosine Triphosphate" "part_of" "DNM1L gene")
(scigraph "Regulatory Sequences, Nucleic Acid" "part_of" "DNM1L gene")
(scigraph "BECN1 gene" "positively_regulates" "DNM1L gene")
(scigraph "ROCK1 gene" "positively_regulates" "DNM1L gene")
(scigraph "MAP1LC3A gene" "positively_regulates" "DNM1L gene")
(scigraph "OPA1 gene" "positively_regulates" "DNM1L gene")
(scigraph "AKT1 gene" "positively_regulates" "DNM1L gene")
(scigraph
"tumor necrosis factor alpha receptor"
"positively_regulates"
"DNM1L gene")
(scigraph "SQSTM1 gene" "positively_regulates" "DNM1L gene")
(scigraph "FAS gene" "positively_regulates" "DNM1L gene")
(scigraph "ROS1 gene" "positively_regulates" "DNM1L gene")
(scigraph "BAK1 gene" "positively_regulates" "DNM1L gene")
(scigraph "BAX gene" "positively_regulates" "DNM1L gene")
(scigraph "ATG5 gene" "positively_regulates" "DNM1L gene")
(scigraph "Myocytes, Cardiac" "produces" "DNM1L gene")
(scigraph "Mitochondria" "produces" "DNM1L gene")
(scigraph "Cells" "produces" "DNM1L gene")
(scigraph "Oocytes" "produces" "DNM1L gene")
(scigraph "Neurons" "produces" "DNM1L gene")
(scigraph "Phosphotransferases" "produces" "DNM1L gene")
(scigraph "CATALASE" "produces" "DNM1L gene")
(scigraph "CAT gene" "produces" "DNM1L gene")
(scigraph "PINK1 gene" "produces" "DNM1L gene")
(scigraph "SOD2 gene" "produces" "DNM1L gene"))
#|
(semmed "SQSTM1 gene" "positively_regulates" "DNM1L wt Allele")
(run* (q)
(fresh (edge eid tacrine-details subject object pred eprops db
scid scui sname sdetails
ocid ocui oname odetails
pred-id pred-name)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,object))
(edgeo `(,db . ,edge))
(== `(,pred-id . ,pred-name) pred)
(== `(,scid ,scui ,sname . ,sdetails) subject)
(== `(,ocid ,ocui ,oname . ,odetails) object)
(== "SQSTM1 gene" sname)
(== "positively_regulates" pred-name)
(== `(,db . ,edge) q)))
(sort
(rem-dups
(run* (q)
(fresh (edge eid tacrine-details subject object pred eprops db
scid scui sname sdetails
ocid ocui oname odetails
pred-id pred-name)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,object))
(edgeo `(,db . ,edge))
(== `(,pred-id . ,pred-name) pred)
(== `(,scid ,scui ,sname . ,sdetails) subject)
(== `(,ocid ,ocui ,oname . ,odetails) object)
(== `(,db ,sname ,pred-name ,oname) q))))
(lambda (e1 e2)
(match `(,e1 ,e2)
[`((,db1 ,sname1 ,pred-name1 ,oname1)
(,db2 ,sname2 ,pred-name2 ,oname2))
(string<? pred-name1 pred-name2)])))
(rem-dups
(run* (q)
(fresh (edge eid tacrine-details subject object pred eprops db
scid scui sname sdetails
ocid ocui oname odetails
pred-id pred-name)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,object))
(edgeo `(,db . ,edge))
(== `(,pred-id . ,pred-name) pred)
(== `(,scid ,scui ,sname . ,sdetails) subject)
(== `(,ocid ,ocui ,oname . ,odetails) object)
(== `(,db ,sname ,pred-name ,oname) q))))
(displayln "preds for X ANY-PRED DNM1L")
(time (rem-dups
(run* (q)
(fresh (edge eid tacrine-details subject object pred eprops db)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,object))
(edgeo `(,db . ,edge))
(== pred q)))))
(displayln "preds for DNM1L ANY-PRED X")
(time (rem-dups
(run* (q)
(fresh (edge eid tacrine-details subject object pred eprops db)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,subject))
(edgeo `(,db . ,edge))
(== pred q)))))
;; count the number of edges
(time (length
(rem-dups
(run* (q)
(fresh (edge eid tacrine-details subject object pred eprops db)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,object))
(edgeo `(,db . ,edge))
(== `(,db . ,edge) q))))))
|#
#|
(displayln "X ANY-PRED DNM1L")
(time (pretty-print
(run* (q)
(fresh (edge name db)
(fresh (subject scid scui sname sdetails
object ocid ocui oname odetails
eid pid pred eprops)
(== `(,scid ,scui ,sname . ,sdetails) subject)
(== `(,ocid ,ocui ,oname . ,odetails) object)
(== `(,eid ,subject ,object (,pid . ,pred) . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,object))
(== `(,sname ,pred ,oname) q)
(edgeo `(,db . ,edge)))))))
|#
(newline)
(displayln "X INCREASES DNM1L:")
(time (pretty-print
(run* (edge)
(fresh (eid tacrine-details subject object pred eprops db)
(== `(,eid ,subject ,object ,pred . ,eprops) edge)
(~name-concepto "DNM1L" `(,db . ,object))
(INCREASES pred)
(edgeo `(,db . ,edge))))))
| false |
65cb0775f9d78699cba4a44128581cec25c1bc7d | e866ea5d522306eca07841c9eae59d08545ea980 | /errortrace-lib/errortrace/errortrace.rkt | 16ef85e02051ba53f31e8990a85936ca606feda3 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/errortrace | 8d82d4fcbd4c8e915ddbb3cc36a9397a0d59408b | 6fb1bd2a1c2de8af52d2bc85d096347381d17fee | refs/heads/master | 2023-08-17T18:43:36.746471 | 2022-10-03T22:25:09 | 2022-10-03T22:25:09 | 27,431,204 | 9 | 16 | NOASSERTION | 2022-10-02T21:53:05 | 2014-12-02T12:19:08 | Racket | UTF-8 | Racket | false | false | 853 | rkt | errortrace.rkt | #lang racket/base
;; Poor man's stack-trace-on-exceptions/profiler.
;; See manual for information.
(require "errortrace-lib.rkt")
(provide print-error-trace
error-context-display-depth
instrumenting-enabled
profiling-enabled
profiling-record-enabled
profile-paths-enabled
get-profile-results
output-profile-results
clear-profile-results
execute-counts-enabled
get-execute-counts
annotate-executed-file
coverage-counts-enabled
get-coverage
test-coverage-info
annotate-covered-file)
(current-compile errortrace-compile-handler)
(error-display-handler errortrace-error-display-handler)
(use-compiled-file-paths (cons (build-path "compiled" "errortrace")
(use-compiled-file-paths)))
| false |
7c74376f45b993c2216530aedeafd0fef64f37be | 8de3f562d9c8d89d1598c3b9d987c65d72aaa0f7 | /3.65.rkt | 59276630575c2a97f15300b07232c256525f7ffa | []
| no_license | tjuqxb/SICP | 17664460ef34cb325c3d5fde000cc989799ca89d | 4fb8400c0d779e3c555cc7a5d490436296cf25e3 | refs/heads/master | 2021-01-24T07:55:41.180817 | 2017-06-20T03:12:26 | 2017-06-20T03:12:26 | 93,363,899 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 925 | rkt | 3.65.rkt | (define (ln2-summands n)
(cons-stream (/ 1.0 n)
(stream-map - (ln2-summands (+ n 1)))))
(define (partial-sums s)
(cons-stream (stream-car s)
(add-streams (partial-sums s)
(stream-cdr s))))
(define ln2-s
(partial-sums (ln2-summands 1)))
(define (euler-transform s)
(let ((s0 (stream-ref s 0))
(s1 (stream-ref s 1))
(s2 (stream-ref s 2)))
(cons-stream (- s2 (/ (square (- s2 s1))
(+ s0 (* 02 s1) s2)))
(euler-transform (stream-cdr s)))))
(define s1
(euler-transform ln2-s))
(define (make-tableau transform s)
(cons-stream s
(make-tableau transform
(trans-form s))))
(define (accelerated-sequence transform s)
(stream-map stream-car
(make-tableau transform s)))
(define s2
(accelerated-sequence euler-transform ln2-s))
| false |
da93f6a6fb3cd2a0e1c26d2eb4777dec1d813577 | 0ac2d343bad7e25df1a2f2be951854d86b3ad173 | /pycket/test/meteor.rkt | e2562df443158d547a1fec79f81aca8b548d3754 | [
"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 | 7,655 | rkt | meteor.rkt | #lang racket/base
;; The Computer Language Benchmarks Game
;; http://shootout.alioth.debian.org/
;;
;; Based on a Python version:
;; contributed by Olof Kraigher
;; modified by Tupteq
;; contributed by Matthew Flatt
;; optimized by Eli Barzilay
(require racket/cmdline)
;; FIXME: bug
(require racket/private/reverse racket/private/for racket/private/map racket/private/kw racket/private/list)
(define width 5)
(define height 10)
(define size (* width height))
(define (valid-xy? x y)
(and (0 . <= . x)
(x . < . width)
(0 . <= . y)
(y . < . height)))
(define (mover fun)
(let ([t (make-vector size)])
(for ([p (in-range size)])
(vector-set! t p (let*-values ([(y x) (quotient/remainder p width)]
[(x y) (fun x y)])
(if (valid-xy? x y) (+ x (* y width)) -1))))
t))
(define E
(mover (lambda (x y) (values (add1 x) y))))
(define W
(mover (lambda (x y) (values (sub1 x) y))))
(define NE
(mover (lambda (x y) (values (+ x (bitwise-and y 1)) (sub1 y)))))
(define NW
(mover (lambda (x y) (values (sub1 (+ x (bitwise-and y 1))) (sub1 y)))))
(define SE
(mover (lambda (x y) (values (+ x (bitwise-and y 1)) (add1 y)))))
(define SW
(mover (lambda (x y) (values (sub1 (+ x (bitwise-and y 1))) (add1 y)))))
(define rotate-list (list E NE NW W SW SE E))
(define (rotate dir)
(cadr (memq dir rotate-list)))
(define flip-alist (list (cons E W) (cons NE NW) (cons NW NE)
(cons W E) (cons SW SE) (cons SE SW)))
(define (flip dir) (cdr (assq dir flip-alist)))
(define movers (list E W NE NW SE SW))
(define (valid? p)
(p . >= . 0))
(define (clear? board pos)
(not (bitwise-bit-set? board pos)))
(define (set board pos)
(bitwise-ior board (arithmetic-shift 1 pos)))
(define (zero-count board)
(for/fold ([count 0]) ([i (in-range size)])
(if (clear? board i) (add1 count) count)))
(define (find-free-cell board)
(for/or ([p (in-range 0 size)])
(and (clear? board p) p)))
(define (flood-fill board p)
(for/fold ([board (set board p)]) ([mover (in-list movers)])
(let ([p (vector-ref mover p)])
(if (and (valid? p) (clear? board p))
(flood-fill board p)
board))))
(define (no-islands? mask)
(let ([zeros (zero-count mask)])
(and (zeros . >= . 5)
(let loop ([mask mask] [zeros zeros])
(if (= mask #x3FFFFFFFFFFFF)
#t
(let* ([p (find-free-cell mask)]
[mask (flood-fill mask p)]
[new-zeros (zero-count mask)])
(and ((- zeros new-zeros) . >= . 5)
(loop mask new-zeros))))))))
(define (get-bitmask p piece)
(let ([mask (arithmetic-shift 1 p)])
(let loop ([p p] [cells piece] [mask mask])
(if (null? cells)
mask
(let ([p (vector-ref (car cells) p)])
(and (valid? p) (loop p (cdr cells) (set mask p))))))))
(define (all-bitmasks piece color)
(let ([pieces
(let-values ([(accum piece)
(for/fold ([accum null] [piece piece])
([orientations (in-range 2)])
(let-values ([(accum piece)
(for/fold ([accum accum] [piece piece])
([orientations (in-range (- 6 (* 3 (if (= color 4) 1 0))))])
(values (cons piece accum)
(map rotate piece)))])
(values accum (map flip piece))))])
accum)])
(reverse
(for*/fold ([accum null])
([piece (in-list pieces)]
[p (in-range 0 size)])
(let ([mask (get-bitmask p piece)])
(if (and mask (no-islands? mask)) (cons mask accum) accum))))))
(define generate-bitmasks-pieces
(list (list E E E SE)
(list SE SW W SW)
(list W W SW SE)
(list E E SW SE)
(list NW W NW SE SW)
(list E E NE W)
(list NW NE NE W)
(list NE SE E NE)
(list SE SE E SE)
(list E NW NW NW)))
(define (generate-bitmasks)
(let ([masks-at-cell
(list->vector
(for/list ([i (in-range size)])
(list->vector (for/list ([j (in-range 10)]) null))))])
(for ([piece (in-list generate-bitmasks-pieces)]
[color (in-naturals)])
(let loop ([masks (sort (all-bitmasks piece color) >)]
[cell-bit (sub1 size)]
[cell-counter (sub1 size)])
(if (null? masks)
masks-at-cell
(if (bitwise-bit-set? (car masks) cell-bit)
(let ([vec (vector-ref masks-at-cell cell-counter)])
(vector-set! vec color (cons (car masks) (vector-ref vec color)))
(loop (cdr masks) cell-bit cell-counter))
(loop masks (sub1 cell-bit) (sub1 cell-counter))))))
(for ([v (in-vector masks-at-cell)])
(for ([j (in-naturals)]
[val (in-vector v)])
(vector-set! v j (reverse val))))
masks-at-cell))
(define masks-at-cell (generate-bitmasks))
(define masks (make-vector 10 0))
(define to-go 0)
(define solutions (mcons #f #f)) ; keeps (min max) solutions
(define (solve-cell! cell board)
(when (and (positive? to-go) (not (negative? cell)))
;; Need solutions and not off board
(cond [(= board #x3FFFFFFFFFFFF)
;; Solved
(add-solutions!)]
[(not (clear? board cell))
;; Cell full, so try next
(solve-cell! (sub1 cell) board)]
[else
;; Recur
(for* ([color (in-range 10)]
#:when (zero? (vector-ref masks color))
[mask (in-list (vector-ref (vector-ref masks-at-cell cell)
color))]
#:when (zero? (bitwise-and mask board)))
(vector-set! masks color mask)
(solve-cell! (sub1 cell) (bitwise-ior board mask))
(vector-set! masks color 0))])))
(define (add-solutions!)
(define (add! solution)
(let ((head (mcar solutions)))
(cond [(not head)
(set-mcar! solutions solution)
(set-mcdr! solutions solution)]
[(bytes<? solution head)
(set-mcar! solutions solution)]
[(bytes>? solution (mcdr solutions))
(set-mcdr! solutions solution)])))
(let* ([s (list->bytes
(for/list ([pos (in-range size)])
(for/or ([color (in-range 10)])
(and (not (clear? (vector-ref masks color) pos))
(+ color (char->integer #\0))))))]
[ns (make-bytes size)])
;; Inverse
(for* ([y (in-range height)]
[x (in-range width)])
(bytes-set! ns (+ x (* y width))
(bytes-ref s (+ (- width (+ x 1))
(* width (- height (+ y 1)))))))
;; Keep first and last only
(add! s)
(add! ns)
(set! to-go (- to-go 2))))
(define (print-solution solution)
(let ([solution (bytes->string/utf-8 solution)])
(for ([y (in-range height)])
(when (odd? y) (display " "))
(for ([x (in-range width)])
(printf "~a " (string-ref solution (+ x (* y width)))))
(printf "\n"))
(newline)))
(define (solve! n)
(set! to-go n)
(solve-cell! (sub1 size) 0))
(command-line #:args (n)
(let ([n (string->number n)])
(solve! n)
(printf "~a solutions found\n\n" (- n to-go))
(print-solution (mcar solutions))
(print-solution (mcdr solutions))))
| false |
7a2f1d8912f738324d2938691b19f2a5132637e3 | bdb6b8f31f1d35352b61428fa55fac39fb0e2b55 | /sicp/ex2.28.rkt | 11d5d7e11f0682286dc32961b11f55eda8fafe84 | []
| no_license | jtskiba/lisp | 9915d9e5bf74c3ab918eea4f84b64d7e4e3c430c | f16edb8bb03aea4ab0b4eaa1a740810618bd2327 | refs/heads/main | 2023-02-03T15:32:11.972681 | 2020-12-21T21:07:18 | 2020-12-21T21:07:18 | 323,048,289 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 962 | rkt | ex2.28.rkt | #lang racket
;ex2.28
; procedure fringe that takes as argument a tree (represented as a list) and returns a list whose elements are all the
; leaves of the tree arranged in left-to-right order.
(define x
(list (list 1 2 3) (list 4 5) (list 6 7)))
(define z1
(list (list 0) (list 1 2 3) (list 4 5) (list 6 7)))
(define z2
(list 0 (list 1 2 3) (list 4 5) (list 6 7)))
(define z3
(list (list 1 2 3) (list 4 5) (list 6 7) 8))
(define z4
(list (list 1 2 3) (list 4 5) 6 (list 7 8) 9))
(define y
(list x (list x z1 z2)))
(define (fringe items)
(if (null? items)
items
(append (if (pair? (car items))
(fringe (car items))
(list (car items)))
(if (pair? (cdr items))
(fringe (cdr items))
(cdr items)))))
z1
(fringe z1)
(newline)
z2
(fringe z2)
(newline)
z3
(fringe z3)
(newline)
z4
(fringe z4)
(newline)
y
(fringe y)
(fringe (fringe y))
| false |
867afb901625082694bf5e7d18736e32a0daa515 | 22908da22a76c973bb842889b8251609f584c379 | /abnf/scribblings/bools.rkt | b249295594f68458b5b98051e36500566046e39a | []
| no_license | tonyg/racket-abnf | 65165942c6b735c75f6136879c1f25e6076e9d4f | 1079bc5b30a227f52ac00a84dc3fcd539da5f8db | refs/heads/master | 2020-04-26T06:31:10.284802 | 2020-01-17T12:45:03 | 2020-01-17T12:45:03 | 173,366,934 | 5 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,062 | rkt | bools.rkt | #lang racket/base
(require abnf)
(require racket/match)
(define-abnf-parser parse-bools/cst "bools-rules.rkt" bools values)
(define (cst->ast/1 cst)
(let walk ((cst cst))
(match cst
[`(bools (* ,vs)) (map walk vs)]
[`(bool (/ 0 ,_)) #t]
[`(bool (/ 1 ,_)) #f])))
(define (cst->ast/2 cst)
(traverse (lambda (walk cst)
(match cst
[`(true ,_) #t]
[`(false ,_) #f]
[`(,_ ,v) (walk v)]))
cst))
(module+ test
(require rackunit)
(define cst1 '(bools
(*
((bool (/ 0 (true "t")))
(bool (/ 0 (true "t")))
(bool (/ 1 (false "f")))
(bool (/ 1 (false "f")))
(bool (/ 0 (true "t")))
(bool (/ 1 (false "f")))
(bool (/ 1 (false "f")))))))
(check-equal? (parse-bools/cst "ttfftff") cst1)
(check-equal? (cst->ast/1 cst1) (list #t #t #f #f #t #f #f))
(check-equal? (cst->ast/2 cst1) (list #t #t #f #f #t #f #f))
)
| false |
5f5492a6692b9a44308538c8952532f79832fefc | c31f57f961c902b12c900ad16e5390eaf5c60427 | /data/programming_languages/scheme/structures.rkt | 549605b9d9e4d692ccf1d62168aa8300922b41d3 | []
| no_license | klgraham/deep-learning-with-pytorch | ccc7602d9412fb335fe1411ba31641b9311a4dba | 4373f1c8be8e091ea7d4afafc81dd7011ef5ca95 | refs/heads/master | 2022-10-24T01:48:46.160478 | 2017-03-13T20:07:03 | 2017-03-13T20:07:03 | 79,877,434 | 0 | 1 | null | 2022-10-02T20:42:36 | 2017-01-24T04:12:24 | C | UTF-8 | Racket | false | false | 6,164 | rkt | structures.rkt | #lang racket/base
;; Internal structures for representing a static contract.
(require racket/match racket/list racket/generic
racket/contract
"kinds.rkt" "constraints.rkt")
(provide
(contract-out
(struct recursive-sc ([names (listof identifier?)]
[values (listof static-contract?)]
[body static-contract?]))
(struct recursive-sc-use ([name identifier?]))
(struct combinator ([args sequence?]))
(struct static-contract ())
[sc-map
(static-contract? (static-contract? variance/c . -> . static-contract?) . -> . static-contract?)]
[sc-traverse (static-contract? (static-contract? variance/c . -> . any/c) . -> . void?)]
[sc->contract (static-contract? (static-contract? . -> . syntax?) . -> . syntax?)]
[sc->constraints
(static-contract? (static-contract? . -> . contract-restrict?) . -> . contract-restrict?)]
[sc-terminal-kind (static-contract? . -> . (or/c #f contract-kind?))]
[sc? predicate/c])
prop:combinator-name
gen:sc)
(define variance/c (or/c 'covariant 'contravariant 'invariant))
(define (recursive-sc-write-proc v port mode)
(match-define (recursive-sc names vals body) v)
(define recur
(case mode
[(#t) write]
[(#f) display]
[else (lambda (p port) (print p port mode))]))
(define-values (open close)
(if (equal? mode 0)
(values "(" ")")
(values "#<" ">")))
(display open port)
(fprintf port "rec/sc")
(display " (" port)
(define (recur-pair name val)
(fprintf port "(~a " (syntax->datum name))
(recur val port)
(display ")" port))
(when (cons? names)
(recur-pair (first names) (first vals))
(for ((name (rest names))
(val (rest vals)))
(display " " port)
(recur-pair name val)))
(display ") " port)
(recur body port)
(display close port))
(define (recursive-sc-use-write-proc v port mode)
(display (syntax->datum (recursive-sc-use-name v)) port))
(define (combinator-write-proc v port mode)
(match-define (combinator args) v)
(define name (combinator-name v))
(define recur
(case mode
[(#t) write]
[(#f) display]
[else (lambda (p port) (print p port mode))]))
(define-values (open close)
(if (equal? mode 0)
(values "(" ")")
(values "#<" ">")))
(display open port)
(fprintf port name)
(for ((arg args))
(display " " port)
(recur arg port))
(display close port))
(define-values (prop:combinator-name
has-combinator-name?
combinator-name)
(make-struct-type-property 'combinator-name
(lambda (v _)
(unless (string? v)
(raise-argument-error
'prop:combinator-name
"string?"
v))
v)))
;; Functionality that all static contracts should support
(define-generics sc
;; sc-map: static-contract? (static-contract? variance/c -> static-contract?) -> static-contract?
;; Takes a static contract and returns a similar one.
;; Each sub part should be replaced with the value of calling the supplied function on it. The
;; variance argument should be how the sub part relates to the static contract.
[sc-map sc f]
;; sc-traverse: static-contract? (static-contract? variance/c -> any/c) -> void?
;; Takes a static contract and traverses it. Each sub part should be called with supplied function.
;; The variance argument should be how the sub part relates to the static contract.
[sc-traverse sc f]
;; sc->contract: static-contract? (static-contract? -> contract?) -> contract?
;; Takes a static contract and returns the corresponding contract.
;; The function argument should be used for sub parts of the static contract.
[sc->contract sc f]
;; sc->constraints: static-contract? (static-contract? -> constraint-set?) -> constraint-set?
;; Takes a static contract and computes the constraint set for a static contract.
;; The function argument should be used for sub parts of the static contract.
[sc->constraints sc f]
;; sc-terminal-kind: static-contract? -> (or/c #f contract-kind?)
;; Returns the kind of contract that this represents
;; Returns #f if it is not a terminal contract
[sc-terminal-kind sc]
#:fallbacks
[(define (sc-terminal-kind v) #f)])
;; Super struct of static contracts
(struct static-contract ()
#:transparent
#:property prop:custom-print-quotable 'never)
;; Represents a recursive contract.
;; In each value and the body, each name is bound to a the corresponding value contract.
;; - names : (listof identifier?)
;; - values : (listof static-contract?)
;; - body : static-contract?
;; names and value must have the same length.
(struct recursive-sc static-contract (names values body)
#:transparent
#:methods gen:sc
[(define (sc-map v f)
(match v
[(recursive-sc names values body)
(recursive-sc names (map (λ (v) (f v 'covariant)) values) (f body 'covariant))]))
(define (sc-traverse v f)
(match v
[(recursive-sc names values body)
(for-each (λ (v) (f v 'covariant)) values)
(f body 'covariant)
(void)]))]
#:methods gen:custom-write [(define write-proc recursive-sc-write-proc)])
;; A use of a contract bound by recursive-sc
;; - name : identifier?
(struct recursive-sc-use static-contract (name)
#:transparent
#:methods gen:sc
[(define (sc-map v f) v)
(define (sc-traverse v f) (void))
(define (sc->contract v f) (recursive-sc-use-name v))
(define (sc->constraints v f) (variable-contract-restrict (recursive-sc-use-name v)))]
#:methods gen:custom-write [(define write-proc recursive-sc-use-write-proc)])
;; Super struct of static contract combinators.
;; Provides printing functionality.
;; - args : (sequenceof static-contract?)
(struct combinator static-contract (args)
#:transparent
#:property prop:combinator-name "combinator/sc"
#:methods gen:custom-write [(define write-proc combinator-write-proc)])
| false |
462970ef842f072cf4e559d5b93eeff6a01efa18 | d0652b34c2fef5439f72dd12390c60e2fafcbe74 | /shout.rkt | ce0447ea1b1841654b68dd8ae33b1a8637947e46 | [
"MIT"
]
| permissive | TartanLlama/shout | 5e6d7465cfc219cff12bdedc6034dedd1d10af40 | 11544f17e71c77debd4d2c2dfa6f778bae97b267 | refs/heads/master | 2021-01-18T15:47:42.180043 | 2017-08-15T15:02:01 | 2017-08-15T15:02:01 | 100,388,654 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,001 | rkt | shout.rkt | #lang racket
(provide run-game)
(provide define-game)
(provide define-room)
(define (execute-command command state)
(cond [(string=? "lol" command) (display "Lollin'") state]
[else (display "Not lollin'") state]))
(define (run-game game)
(displayln (game-description game))
(let main-loop ([state (game-state (game-start-room game))])
(do () (#f)
(print-state state)
(displayln "Wat do?")
(main-loop (execute-command (read-line) state)))))
(struct game (description start-room))
(struct room (short-description long-description))
(define-syntax-rule (define-game name description start-room)
(define name (game description start-room)))
(define-syntax-rule (define-room name
short-description long-description)
(define name (room short-description long-description)))
(struct game-state (current-room))
(define (print-state game-state)
(printf "Currently in ~a\n" (room-short-description (game-state-current-room game-state))))
| true |
9330fe35fbfdf58c17ff259301dc50873dbd256a | 6858cbebface7beec57e60b19621120da5020a48 | /17/1/2.rkt | fdab7009d29a09aabdce1d79dc3e38af6d45a0e1 | []
| no_license | ponyatov/PLAI | a68b712d9ef85a283e35f9688068b392d3d51cb2 | 6bb25422c68c4c7717b6f0d3ceb026a520e7a0a2 | refs/heads/master | 2020-09-17T01:52:52.066085 | 2017-03-28T07:07:30 | 2017-03-28T07:07:30 | 66,084,244 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 12 | rkt | 2.rkt | (sq (+ 2 3)) | false |
7b96763248e9d8a8740d51c6fcbe0e0bace87ece | 82c76c05fc8ca096f2744a7423d411561b25d9bd | /typed-racket-test/optimizer/tests/dead-case-lambda.rkt | 78a8d3e8904928a89be81e37880f406f40b870b6 | [
"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 | 438 | rkt | dead-case-lambda.rkt | #;#;
#<<END
TR opt: dead-case-lambda.rkt 3:7 (case-lambda (() (void)) ((d) (void)) ((d . rst) (void))) -- dead case-lambda branch
TR opt: dead-case-lambda.rkt 6:10 (d . rst) -- dead case-lambda branch
END
#<<END
(arity-at-least 0)
END
#lang typed/racket
#reader typed-racket-test/optimizer/reset-port
(procedure-arity
(ann (case-lambda
[() (void)]
[(d) (void)]
[(d . rst) (void)])
(Any -> Any)))
| false |
1e3a9d73b1a0229277e0af73ad63842bf7ce291a | f5da4884c236512f9a945100234e213e51f980d3 | /serval/arm64/decode.rkt | ab6369d7f98b65aeddbadb6973f78a8f4bcb5ab1 | [
"MIT"
]
| permissive | uw-unsat/serval | 87574f5ec62480463ae976468d4ae7a56e06fe9f | 72adc4952a1e62330aea527214a26bd0c09cbd05 | refs/heads/master | 2022-05-12T23:19:48.558114 | 2022-01-20T18:53:26 | 2022-01-20T18:53:26 | 207,051,966 | 45 | 12 | MIT | 2022-03-21T14:05:50 | 2019-09-08T02:40:10 | Racket | UTF-8 | Racket | false | false | 2,651 | rkt | decode.rkt | #lang rosette
(require
(prefix-in core: "../lib/core.rkt")
"../lib/bvarith.rkt"
"base.rkt")
(provide
add-decoder decode)
(define decoders null)
; To construct an instruction, a decoder checks that constant fields match
; and extracts values for symbolic fields:
; - ctor: an instruction struct;
; - spec: a list of bitvector types (symbolic fields) or values (constant fields).
(define (add-decoder ctor spec)
; split a 32-bit bitvector into chunks
(define (split x lst)
(define e (car lst))
(when (box? e)
(set! e (unbox e)))
(set! lst (cdr lst))
(define i
(cond
[(bitvector? e) (bitvector-size e)]
[(bv? e) (core:bv-size e)]
[else (error "unknown decoder")]))
(define n (core:bv-size x))
(if (equal? i n)
(begin
(assert (empty? lst))
(list x))
(cons (trunc i x) (split (extract (sub1 n) i x) lst))))
(define (proc x)
; Match from lowest bits, which is a better fit for bytes
; constructed using (concat ...) and simpler for offsets.
(define chunks (reverse (split x (reverse spec))))
(define match? (andmap (lambda (act exp) (if (bv? exp) (bveq act exp) #t)) chunks spec))
(define (make-if-bitvector act exp)
(cond
[(and (box? exp) (bitvector? (unbox exp))) (box act)]
[(bitvector? exp) act]
[else #f]))
(if match?
(apply ctor (filter-map make-if-bitvector chunks spec))
#f))
(set! decoders (cons proc decoders)))
(define (decode x)
(define result (filter-map (lambda (proc) (proc x)) decoders))
(when (null? result)
(eprintf "no decoder for ~a\n" x)
(eprintf "~a\n" (disassemble (core:bitvector->list/le x) #:arch "aarch64"))
(exit 1))
(when (! (= (length result) 1))
(eprintf "ambiguity in decoding for ~a\n" x)
(for ([e result])
(eprintf " ~a\n" e))
(exit 1))
(define insn (car result))
(define exp-bytes (instruction-encode insn))
(assert (equal? x exp-bytes)
"encoded bytes must match original bytes")
insn)
(define (disassemble #:arch [arch #f] lst)
(define cmd (find-executable-path "llvm-mc"))
(define args (list "--disassemble"))
(when arch
(set! args (append (list "--arch" arch) args)))
; concretize input
(set! lst (evaluate lst (complete-solution (sat) (symbolics lst))))
(define in (open-input-string (string-join (map (lambda (x) (format "0x~x " (bitvector->natural x))) lst))))
(define out (open-output-string))
(parameterize ([current-input-port in]
[current-output-port out])
(apply system* cmd args))
(get-output-string out))
| false |
094e64a516243b30c693b5a26bffcd7ed9d61fba | d755de283154ca271ef6b3b130909c6463f3f553 | /htdp-test/htdp/tests/elevator.rkt | a7577170ae0de0d729d7bb523d92ac420620762c | [
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"Apache-2.0"
]
| permissive | racket/htdp | 2953ec7247b5797a4d4653130c26473525dd0d85 | 73ec2b90055f3ab66d30e54dc3463506b25e50b4 | refs/heads/master | 2023-08-19T08:11:32.889577 | 2023-08-12T15:28:33 | 2023-08-12T15:28:33 | 27,381,208 | 100 | 90 | NOASSERTION | 2023-07-08T02:13:49 | 2014-12-01T13:41:48 | Racket | UTF-8 | Racket | false | false | 690 | rkt | elevator.rkt | ;; The first three lines of this file were inserted by DrScheme. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-beginner-reader.ss" "lang")((modname elevator) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ())))
(require htdp/elevator)
;; next3 : (union 'up 'down) N X -> N
;; always sends elevator to next floor up or down,
;; switches direction at either end
(define (next3 x y z)
(cond
((and (eq? 'up x) (< y 8)) (+ y 1))
((eq? 'up x) 7) ; anything down
((and (eq? 'down x) (> y 1)) (- y 1))
(else 2))) ; anything up
(run next3)
| false |
b2c21aed5e50c5f544c5fa998c3a4154004e8ced | 561eac844dbad77a7fa88720d8f5b9ab6e6ba4b2 | /corpse-reviver-benchmark/benchmarks/lnm/both/plot-adapted.rkt | 8c07e2cdbad6fe75526a50c0ee7a708583a8b4db | [
"0BSD"
]
| permissive | camoy/corpse-reviver | 7c0a5c5d7abbeccd8f2260a4adea4ca6b3363567 | 67fda012093bfd5fe8f9bb699b7558699743217d | refs/heads/master | 2023-08-18T14:47:26.601987 | 2023-08-03T15:17:01 | 2023-08-03T15:17:01 | 261,932,938 | 19 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,545 | rkt | plot-adapted.rkt | #lang typed/racket/base
(require corpse-reviver/opaque)
(define-type Plot-Pen-Style-Sym
(U 'transparent 'solid 'dot 'long-dash
'short-dash 'dot-dash))
(define-type Plot-Pen-Style
(U Integer Plot-Pen-Style-Sym))
(provide Plot-Pen-Style)
(require/typed/provide/opaque "_plot.rkt"
[#:struct pre-tick ([value : Real] [major? : Boolean])]
[#:struct (tick pre-tick) ([label : String])]
[#:struct ticks ([layout : (-> Real Real (Listof pre-tick))]
[format : (-> Real Real (Listof pre-tick) (Listof String))])]
[#:opaque renderer2d renderer2d?]
[#:opaque Pict pict?]
[line-width (-> Nonnegative-Real)]
[plot-width (-> Positive-Integer)]
[plot-height (-> Positive-Integer)]
[plot-x-ticks [Parameterof ticks]]
[plot-y-ticks [Parameterof ticks]]
[plot-x-far-ticks [Parameterof ticks]]
[plot-y-far-ticks [Parameterof ticks]]
[plot-font-face [Parameterof String]]
[plot-font-size [Parameterof Nonnegative-Real]]
[no-ticks ticks]
[linear-seq (-> Real Real Nonnegative-Integer (Listof Real))]
[function
(-> (-> Real Real)
(U Real #f)
(U Real #f)
Positive-Integer
Symbol
Nonnegative-Real
renderer2d)]
[plot-pict
(-> (Listof renderer2d)
(U Real #f)
(U Real #f)
(U Real #f)
(U Real #f)
(U String #f)
(U String #f)
Positive-Integer
Positive-Integer
Pict)]
[lines
(-> (Listof (Listof Real))
Symbol
Nonnegative-Real
Plot-Pen-Style
renderer2d)])
| false |
b5fbed6f552c0b1e20afe45e8f2f3bed880e11db | 4f8e3d5bb35d87afbce203adc55433debbbee954 | /minimal-REPL-for-DSL-inner.rkt | abf201b51d76dd903780b6b5cace4361e81330ea | []
| no_license | gallerx/lambda | 6ad37f61d50c43b1fa617b394486ffdead5517c9 | 5397b9de5949d767264ac85261529e9718d59fb0 | refs/heads/master | 2021-01-10T11:14:08.772078 | 2015-11-16T20:53:20 | 2015-11-16T20:53:20 | 46,204,658 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,179 | rkt | minimal-REPL-for-DSL-inner.rkt | #lang racket/base
(require "common-pre-reader.rkt"
(for-syntax syntax/parse
racket/base
"hex-utilities.rkt"))
(provide define ;to allow defining an export function
provide ;to allow exports
parse-prompt
test
eval
read-all
define-namespace-anchor
namespace-anchor->namespace
#%top-interaction
#%datum
#%app
#%module-begin)
(begin-for-syntax
(define-syntax-class verb
#:description "verb"
(pattern (~or (~literal scan))))
(define-syntax-class xpi
#:description "exact-positive-integer"
(pattern x:number
#:fail-unless (exact-positive-integer? (syntax->datum #'x))
"exact-positive-integer required"))
(define scancode-pregex (pregexp "^([X|N|O])HA([0-9a-fA-F]{8})$"))
(define-syntax-class data
(pattern candidate:id
#:with (_ type:str maybe-pkid:str) #`#,(regexp-match scancode-pregex
(symbol->string (syntax->datum #'candidate)))
;post-processing of attributes
#:with (symbolic-type:id pkid:xpi) #`#,(list (string->symbol (syntax->datum #'type))
(hex-string->pkid (syntax->datum #'maybe-pkid)))))
#|
Name: static-prompt-parser
GRAMMAR
sentence
sentence <- verb
sentence <- verb data
|#
(define-splicing-syntax-class sentence
#:description "sentence"
#:attributes (ast) ;abstract-parse-tree
(pattern (~seq v:verb d:data)
#:with ast #'((verb . v) (data . (d.symbolic-type . d.pkid)))))
)
#|
Note that we quote the x.ast to get a quoted list, which won't eval
|#
(define-syntax (parse-prompt stx)
(syntax-parse stx
((_ x:sentence) #''x.ast)
;escape used for testing,
[(_ (~literal esc)) #''((verb . esc))]
[(_ (~literal retry)) #''((verb . retry))]
[(_ (~literal reset)) #''((verb . reset))]
(_ #'null)))
(define (test sz)
(syntax->datum (expand (datum->syntax #f (read-all sz)))))
| true |
18f413ee4972944450fda52afc57e84a98e0ab12 | b08b7e3160ae9947b6046123acad8f59152375c3 | /Programming Language Detection/Experiment-2/Dataset/Train/Racket/set-consolidation-1.rkt | c96d685ee829159da766dbff0344fe1e740f0aa2 | []
| no_license | dlaststark/machine-learning-projects | efb0a28c664419275e87eb612c89054164fe1eb0 | eaa0c96d4d1c15934d63035b837636a6d11736e3 | refs/heads/master | 2022-12-06T08:36:09.867677 | 2022-11-20T13:17:25 | 2022-11-20T13:17:25 | 246,379,103 | 9 | 5 | null | null | null | null | UTF-8 | Racket | false | false | 553 | rkt | set-consolidation-1.rkt | #lang racket
(define (consolidate ss)
(define (comb s cs)
(cond [(set-empty? s) cs]
[(empty? cs) (list s)]
[(set-empty? (set-intersect s (first cs)))
(cons (first cs) (comb s (rest cs)))]
[(consolidate (cons (set-union s (first cs)) (rest cs)))]))
(foldl comb '() ss))
(consolidate (list (set 'a 'b) (set 'c 'd)))
(consolidate (list (set 'a 'b) (set 'b 'c)))
(consolidate (list (set 'a 'b) (set 'c 'd) (set 'd 'b)))
(consolidate (list (set 'h 'i 'k) (set 'a 'b) (set 'c 'd) (set 'd 'b) (set 'f 'g 'h)))
| false |
34c16c074814e36be9bf7cce125569ef87f297d5 | 6d4b064fb5dd57dd6cbdfe2d27c1103faa05b8f6 | /remove-complex.rkt | 49f48246adb87cf45f0fea82d5ffdd68b1bb91e5 | []
| no_license | KasoLu/mtr | 6321734dce0d932371d34a5a687e98915541728b | f3ba7cac85820c4d8d6722eae29fe2dd38fbcdb1 | refs/heads/master | 2022-11-28T13:11:41.276572 | 2020-01-20T10:33:05 | 2020-01-20T10:34:51 | 286,476,293 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,113 | rkt | remove-complex.rkt | #lang racket
(provide (rename-out [ast:pgm remove-complex]))
(require "helper.rkt")
(define ast:pgm
(match-lambda
[`(program ,pi . ,def+)
`(program ,pi . ,(map ast:def def+))]))
(define ast:def
(match-lambda
[`(define ,p ,fi ,e)
`(define ,p ,fi ,(ast:exp e))]))
(define ast:exp
(lambda (expr)
(match expr
[`(let ([,v ,e]) ,b)
`(let ([,v ,(ast:exp e)]) ,(ast:exp b))]
[`(if ,e1 ,e2 ,e3)
`(if . ,(map ast:exp `(,e1 ,e2 ,e3)))]
[`(,op . ,e*) #:when (to-smp-op? op)
(let loop ([e* e*] [v* (list)] [v:e (make-assoc)])
(if (empty? e*)
(expand-bind v:e `(,op . ,(reverse v*)))
(let ([v (gensym 'rcv)] [e (ast:exp (car e*))])
(if (smp-exp? e)
(loop (cdr e*) (cons e v*) v:e)
(loop (cdr e*) (cons v v*) (assoc-add v:e v e))))))]
[_(% expr)])))
(define expand-bind
(lambda (v:e expr)
(for/fold ([acc expr]) ([v.e v:e])
`(let (,v.e) ,acc))))
(define to-smp-op?
(curry set-member?
(set-union ath-op lgc-op cmp-op '(vector-ref vector-set! app))))
| false |
4c4d929d0f2da646441d25ffa5486b23c6c3ec11 | c7f1bb00f618567c46f9fdd803a9b20f131dc783 | /herbie/reports/bash-pred-test.rkt | 93d59be72cfb0ca9ae16e457ced4130c14556c7b | [
"MIT"
]
| permissive | vinc17fr/herbie | 80bb3c828f15f2c2add8212f7343645691ef5e70 | 07a1bb73ed8cf1dde49fb4b53eda0130cbbeaccd | refs/heads/master | 2020-12-28T20:54:38.595457 | 2016-04-07T12:43:15 | 2016-04-07T12:43:15 | 55,692,739 | 2 | 0 | null | 2016-04-07T12:27:16 | 2016-04-07T12:27:16 | null | UTF-8 | Racket | false | false | 2,321 | rkt | bash-pred-test.rkt | #lang racket
(require "../common.rkt")
(require "../points.rkt")
(require "../test.rkt")
(require "../main.rkt")
(require "../alternative.rkt")
(require "../programs.rkt")
(require racket/engine)
(define *seed* #f)
(define *timeout* (* 1000 60 10))
(define *lenient* #f)
(define *reeval-pts* 8000)
(define (bash-pred-test benchdir testname)
(let* ([all-tests (load-tests benchdir)]
[test (findf (λ (t) (string=? (test-name t) testname)) all-tests)])
(if (not test) (begin (println "Couldn't find the test!") (exit 1))
(let ([eng (engine (λ _ (improve (test-program test) (*num-iterations*)
#:samplers (test-samplers test))))])
(begin (engine-run *timeout* eng)
(let ([result-alt (engine-result eng)])
(cond
[result-alt
(define newcontext
(parameterize ([*num-points* *reeval-pts*])
(prepare-points (test-program test) (test-samplers test))))
(match-define (list newpoints newexacts) (sorted-context-list newcontext 0))
(let* ([start-errors (errors (test-program test) newcontext)]
[end-errors (errors (alt-program result-alt) newcontext)]
[start-score (errors-score start-errors)]
[end-score (errors-score end-errors)])
(if (not (test-output test)) (if (start-score . < . end-score) (exit 0) (exit 1))
(let* ([target-errors (errors `(λ ,(program-variables (test-program test))
,(test-output test)) newcontext)]
[target-score (errors-score target-errors)])
(if (or *lenient* (target-score . <= . end-score)) (exit 0) (exit 1)))))]
[#f (println "Timeout.") (exit 1)])))))))
(command-line
#:program "bash-pred-test"
#:once-each
[("-r") rs "The random seed vector to use in point generation."
(set-seed! (read (open-input-string rs)))]
[("-n") fu "The amount of 'fuel' to use"
(*num-iterations* (string->number fu))]
[("-s") points "The number of points to use during search"
(*num-points* (string->number points))]
[("-e") epoints "The number of points to use during eval"
(set! *reeval-pts* epoints)]
[("-t") timeout "The number of seconds to wait before killing the test."
(set! *timeout* timeout)]
[("-l") "Return true as long as we finish and are better than start program."
(set! *lenient* #t)]
#:args (benchdir testname)
(bash-pred-test benchdir testname))
| false |
8210fff9030937d658bd5a4d59f635d8d45ce098 | 27f487627bbb5e5fef40478f6914840187646a3c | /sinbad/info.rkt | 6fbbd89a25ec30992856af0c7994646374233e21 | [
"MIT"
]
| permissive | berry-cs/sinbad-rkt | 7e9e4984647a97871e45f4fc2ad5b35b3ab2b165 | 44b3e0881514bbfb7cc91780262968748b9f92eb | refs/heads/master | 2021-03-27T20:49:37.376055 | 2020-01-30T02:07:04 | 2020-01-30T02:07:04 | 106,448,521 | 1 | 0 | MIT | 2018-06-27T20:14:23 | 2017-10-10T17:21:39 | Racket | UTF-8 | Racket | false | false | 598 | rkt | info.rkt | #lang info
(define name "sinbad")
(define version "0.0.1")
(define blurb (list "Automated Structure Inference and Binding of Data"))
(define repositories '("4.x"))
(define primary-file "main.rkt")
(define deps '("base"
"net-lib"
"htdp-lib"
"csv-reading"
"sxml"
"srfi-lite-lib"))
(define build-deps '("racket-doc"
"scribble-lib"
"rackunit-lib"))
(define required-core-version "6.9")
;(define scribblings '(("scribblings/racketui.scrbl" (multi-page))))
| false |
488e1e51bc78c048183be9f59ee8a68297675f1c | 757c8e01cab638a9c3b65166aa128f90a0e4dcc0 | /Code/Benchmarks/very-recursiveo.rkt | 4e4668b50d10c172c6768a9f59c2546461bc834a | []
| no_license | LuKuangChen/Towards-a-miniKanren-with-fair-search-strategies | d622b3b6f938e7331cd786bb72fe4056807e8a43 | c586cb6067e367c4455b92fa3568f63c69c3cdc9 | refs/heads/master | 2023-07-12T12:50:01.243152 | 2019-12-13T20:07:01 | 2019-12-13T20:07:01 | 162,158,182 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 417 | rkt | very-recursiveo.rkt | #lang racket
(require "../mk-sBFS.rkt")
(defrel (nevero)
(nevero))
(defrel (alwayso)
(conde
[succeed]
[(alwayso)]))
(defrel (very-recursiveo)
(conde
[(nevero)]
[(very-recursiveo)]
[(alwayso)]
[(very-recursiveo)]
[(nevero)]))
(define (just-time n)
(void (time (run n q
(very-recursiveo)))))
(begin
(just-time 100000)
(just-time 200000)
(just-time 300000)) | false |
b20c2c57d84d7b5b6e5f015610088545dfa9491e | f987ad08fe780a03168e72efce172ea86ad5e6c0 | /plai-lib/tests/gc2/other-mutators/error.rkt | 57dffbec8246e7c7b670d80008e9104c7b955114 | [
"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 | 129 | rkt | error.rkt | #lang plai/gc2/mutator
(allocator-setup "../good-collectors/good-collector.rkt" 400)
(error 'error "plai/gc2/mutator has error")
| false |
1508925570490c6edad95ab9fd69f0f24c288f70 | 9cc74e5d99deb5d07bc433e70b5b6005464459bc | /src/analyzer-pipeline-recur-info-separate-start-end.rkt | 2d252cafd693a58cf61a5067510adcd23c970091 | [
"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,626 | rkt | analyzer-pipeline-recur-info-separate-start-end.rkt | #lang racket
(require "analyzer-components.rkt"
"analyzer-utils.rkt"
"parsed-utils.rkt"
"macro-utils.rkt"
"misc-utils.rkt"
"analyzer-pipeline-generate-time-level-context.rkt")
(provide recur-info-separate-start-end)
(define/contract (recur-info-separate-start-end vect)
(-> (vector/c analysis-ctxt? list?)
(or/c (vector/c analysis-ctxt? list?) (listof analysis-error?)))
(define/contract (recur-info-separate-start-end-helper lst [res null])
(->* (list?)
(list?)
list?)
(match lst
[(list) (reverse res)]
[(list v vs ...) (cond
[(parsed-with-token v '+RECUR)
(recur-info-separate-start-end-helper vs
(cons (let* ([info-list (hash-ref (parsed-attrs v) 'info null)]
[grouped-ht (group-by-info-keyword info-list)]
[start@-list (hash-ref grouped-ht "start@" null)]
[end@-list (hash-ref grouped-ht "end@" null)])
(parsed-set-attrs v
'start@-info (cond
[(empty? start@-list) #f]
[else (cdr (first start@-list))])
'end@-info (cond
[(empty? end@-list) #f]
[else (cdr (first end@-list))])))
res))]
[else
(recur-info-separate-start-end-helper vs (cons v res))])]))
(let* ([ctxt (vector-ref vect 0)]
[ctxt-hash (analysis-ctxt->hash ctxt)]
[parsed-list (vector-ref vect 1)]
[processed-list (recur-info-separate-start-end-helper parsed-list)])
(sync-list->ctxt (vector ctxt processed-list)))) | false |
d1f8f8dd1f1dcff8ccdfe537e4254725e5a81a60 | 12d5a53f1a7751e71b1d9e6151dd1015f2fb44de | /static/files/building-synthesizer/ast.rkt | 48c7c1f1fedf8896a6152687ad3536ea149bbcaa | []
| no_license | bholt/homepage | 7e6d5e81c399ae71e6369d687f633f0ac82a4080 | 5667ff56e0f83a3448360bf9e25413e96cb3516d | refs/heads/master | 2021-01-12T11:13:41.480326 | 2016-11-03T05:31:52 | 2016-11-03T05:31:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,181 | rkt | ast.rkt | #lang rosette
(require rosette/lib/angelic rosette/lib/match)
(struct op () #:transparent)
(struct binop (left right) #:transparent)
(struct plus binop () #:transparent)
(struct minus binop () #:transparent)
(struct times binop () #:transparent)
(struct unaryop (arg) #:transparent)
(struct square unaryop () #:transparent)
(define (interpret prog)
(match prog
[(plus a b) (+ (interpret a) (interpret b))]
[(minus a b) (- (interpret a) (interpret b))]
[(times a b) (* (interpret a) (interpret b))]
[(square a) (* (interpret a) (interpret a))]
[x x]))
(interpret 3)
(interpret (plus 3 4))
(interpret (minus 5 2))
(interpret (square 4))
(define-symbolic c integer?)
(solve (assert (= (interpret (plus 5 5)) (interpret (times c 5)))))
(define-symbolic x integer?)
(synthesize #:forall x
#:guarantee (assert (= (interpret (plus x (minus x x))) (interpret (times c x)))))
(define (??op)
(choose* plus minus times))
(define prog ((??op) c x))
(define soln
(synthesize #:forall x
#:guarantee (assert (= (interpret (plus x x)) (interpret prog)))))
(evaluate prog soln) ; fill in symbolic values in prog with values from soln | false |
02537a74aebfd0428529f9b29e88726b5542dd75 | e0b454030c31efe88b49b00cf05a19c61a19b7b1 | /examples/compare.es.rkt | 20aaa1ba932c3281e60c5006e708810b1b3473c8 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | a11ce/esAsm | e34edd6dcb8cfa0a6dcbc531cb753d9293129db7 | ff7d465105c8b415fe46facd66b1989729561666 | refs/heads/main | 2023-04-28T02:42:39.424057 | 2023-04-15T21:59:17 | 2023-04-15T21:59:17 | 192,636,822 | 1 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 565 | rkt | compare.es.rkt | #lang esAsm
; take numeric input and store it in register 0
; input removed for testing
;inp r0
mov r0 #27
; take numeric input and store it in register 1
;inp r1
mov r1 #42
; jump to less if r0 < r1
jlt less r0 r1
; jump to greater if r0 > r1
jgt greater r0 r1
; jump to equal if r0 == r1
jet equal r0 r1
less:
; show L using ascii decimal
sha #76
; stop without continuing (to other branches)
hlt
greater:
; show G using ascii decimal
sha #71
; stop without continuing (to other branch)
hlt
equal:
; show G using ascii decimal
sha #69
; stop (don't loop)
hlt
| false |
1a97ed12a2e2251ea9e94b8d2f11b923f9ea3700 | 835673d94581169383461b031b830ce13525b27a | /src/untask/properties/description.rkt | c5ab7639beb394f4c3e3c623095735d2e22e3944 | []
| no_license | c2d7fa/untask | f3b8301a87c967637fbb0732fc2d66c2eeca24e9 | 709f6c88a654c307888929440e056baf1c0ae45f | refs/heads/master | 2021-12-26T22:57:25.383515 | 2021-04-02T23:18:06 | 2021-04-02T23:18:06 | 244,209,340 | 3 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 470 | rkt | description.rkt | #lang racket
(provide description-property
notes-property)
(require
(prefix-in p: untask/src/untask/core/property)
(prefix-in val: untask/src/untask/core/value)
untask/src/squiggle)
(define description-property
(~> (p:property #:name 'description
#:type 'string)
(p:default (val:make-string ""))))
(define notes-property
(~> (p:property #:name 'notes
#:type 'string)
(p:default (val:make-string ""))))
| false |
3d6418b2683542ebb0ccf794cda27a5ca9c2561d | fc22bffe6fd01f0045ade778d3ea534acb6f9e48 | /chapter02/Exercise 2.52.rkt | e04c2a6e084f66f11d249cee7c87f41dec493140 | []
| no_license | HuTongsama/sicp | 0cd9eafed8bb03e71b4e005ff4382629fc63894f | ba722200ebc81e6fe2fd6d4c47893f36420c0f2e | refs/heads/master | 2021-07-23T06:05:01.884911 | 2020-05-06T15:26:47 | 2020-05-06T15:26:47 | 159,015,398 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 32 | rkt | Exercise 2.52.rkt | #lang sicp
;;skip this exercise | false |
483e1c1cfb6544e79697d22f6ba2967440575d4c | 425f519523e5b040a1db8e4eaca7d0320ac55313 | /src/with-warmup/fibfp.rkt | 67e3773c929d320a785d126d9617e96efe22ddeb | []
| no_license | cderici/pycket-performance | f30390f7ec66ec61135eefd0e863e9f51131ca7b | 8cac7d69b55381c07a90e919c4c25eb397b99442 | refs/heads/master | 2020-03-27T05:04:50.495274 | 2019-02-13T02:00:46 | 2019-02-13T02:00:53 | 145,992,592 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 469 | rkt | fibfp.rkt | ;;; FIBFP -- Computes fib(35) using floating point
#lang racket/base
#;(require "both.rkt" "conf.rkt")
(require "conf.rkt")
(define outer 100) ;20)
;(define fibfp-iters 1) ;20)
(define (fibfp n)
(if (FLOAT< n 2.)
n
(FLOAT+ (fibfp (FLOAT- n 1.))
(fibfp (FLOAT- n 2.)))))
(define (main)
(do ([i 1 (add1 i)])
((> i outer) (void))
(time (do ([i 1 (add1 i)])
((> i fibfp-iters) (void))
(fibfp 35.)))))
(main)
| false |
6737780fc8aa5ebff7a38738c684f96717091ef2 | a0c24087e281d33f73306f0399184cfc153ab9d5 | /Q001/Q001.rkt | ffbc8a68e45472a87981132b3d4203a95077181f | []
| no_license | creasyw/project_euler | c94215886390cd2606c2c92af79008de4d67146f | b0584fb01ba2a255b2049a8cdc24fba98f46aff0 | refs/heads/master | 2021-11-19T10:39:48.946028 | 2021-10-12T03:59:34 | 2021-10-12T03:59:34 | 4,611,853 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 294 | rkt | Q001.rkt | #lang racket
(define (multiple limit ft1 ft2)
(define (helper val acc)
(cond ((>= val limit) acc)
((= 0 (modulo val ft1)) (helper (+ val 1) (+ val acc)))
((= 0 (modulo val ft2)) (helper (+ val 1) (+ val acc)))
(#t (helper (+ val 1) acc))))
(helper 1 0))
| false |
18a6ef1434f06a31365fb0bee7d5f3fcff463582 | fc90b5a3938850c61bdd83719a1d90270752c0bb | /web-server-doc/web-server/scribblings/stuffers.scrbl | 41e8a10354edbb3fe8afcb5ff577793841703a5a | [
"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 | 7,253 | scrbl | stuffers.scrbl | #lang scribble/doc
@(require "web-server.rkt")
@(require
(for-label
web-server/stuffers/stuffer
web-server/stuffers/base64
web-server/stuffers/gzip
web-server/stuffers/hash
web-server/stuffers/serialize
web-server/stuffers/store
web-server/stuffers/hmac-sha1
(only-in web-server/lang/stuff-url
default-stuffer
make-default-stuffer
is-url-too-big?)))
@title[#:tag "stuffers"]{Stuffers}
@defmodule[web-server/stuffers]
The @racketmodname[web-server] language provides serializable continuations.
The serialization functionality is abstracted into @deftech{stuffers} that control how it operates.
You can supply your own (built with these functions) when you write a stateless servlet.
@section{Basic Combinators}
@defmodule[web-server/stuffers/stuffer]{
@defstruct[stuffer ([in (any/c . -> . any/c)]
[out (any/c . -> . any/c)])]{
A @tech{stuffer} is essentially an invertible function captured in this structure.
The following should hold:
@racketblock[
(out (in x)) = x
(in (out x)) = x
]
}
@defproc[(stuffer/c [dom any/c] [rng any/c])
contract?]{
Constructs a contract for a @tech{stuffer} where @racket[in] has
the contract @racket[(dom . -> . rng)] and @racket[out] has the contract
@racket[(rng . -> . dom)].
}
@defthing[id-stuffer (stuffer/c any/c any/c)]{
The identitiy @tech{stuffer}.
}
@defproc[(stuffer-compose [g (stuffer/c any/c any/c)]
[f (stuffer/c any/c any/c)])
(stuffer/c any/c any/c)]{
Composes @racket[f] and @racket[g], i.e., applies @racket[f] then
@racket[g] for @racket[in] and @racket[g] then @racket[f] for
@racket[out].
}
@defproc[(stuffer-sequence [f (stuffer/c any/c any/c)]
[g (stuffer/c any/c any/c)])
(stuffer/c any/c any/c)]{
@racket[stuffer-compose] with arguments swapped.
}
@defproc[(stuffer-if [c (bytes? . -> . boolean?)]
[f (stuffer/c bytes? bytes?)])
(stuffer/c bytes? bytes?)]{
Creates a @tech{stuffer} that stuffs with @racket[f] if @racket[c] is
true on the input to @racket[in]. Similarly, applies @racket[f] during
@racket[out] if it was applied during @racket[in] (which is recorded by
prepending a byte.)
}
@defproc[(stuffer-chain [x (or/c stuffer? (bytes? . -> . boolean?))]
...)
stuffer?]{
Applies @racket[stuffer-sequence] and @racket[stuffer-if] to successive tails of @racket[x].
}
}
@section{Serialization}
@(require (for-label racket/serialize
web-server/private/util))
@defmodule[web-server/stuffers/serialize]{
@defthing[serialize-stuffer (stuffer/c serializable? bytes?)]{
A @tech{stuffer} that uses @racket[serialize] and @racket[write/bytes]
and @racket[deserialize] and @racket[read/bytes].
}
}
@section{Base64 Encoding}
@(require (for-label net/base64))
@defmodule[web-server/stuffers/base64]{
@defthing[base64-stuffer (stuffer/c bytes? bytes?)]{
A @tech{stuffer} that uses @racket[base64-encode] and @racket[base64-decode].
Useful for getting URL-safe bytes.
}
}
@section{GZip Compression}
@(require (for-label file/gzip file/gunzip web-server/private/gzip))
@defmodule[web-server/stuffers/gzip]{
@defthing[gzip-stuffer (stuffer/c bytes? bytes?)]{
A @tech{stuffer} that uses @racket[gzip/bytes] and @racket[gunzip/bytes].
@warning{You should compose this with @racket[base64-stuffer] to get
URL-safe bytes.}
}
}
@section{Key/Value Storage}
The @racketmodname[web-server/stuffers/hash] @tech{stuffers} rely on a
key/value store.
@defmodule[web-server/stuffers/store]{
@defstruct[store ([write (bytes? bytes? . -> . void)]
[read (bytes? . -> . bytes?)])]{
The following should hold:
@racketblock[
(begin (write k v) (read k)) = v
]
}
@defproc[(dir-store [root path-string?])
store?]{
A store that stores key @racket[key]'s value in a file located at
@racketblock[
(build-path
root
(bytes->string/utf-8 key))
]
}
It should be easy to use this interface to create store for databases like SQLite, CouchDB, or BerkeleyDB.
}
@section{Hash-addressed Storage}
@(require (for-label file/md5))
@defmodule[web-server/stuffers/hash]{
@defthing[hash-fun/c contract?]{
Equivalent to @racket[(bytes? . -> . bytes?)].
}
@defproc[(hash-stuffer [H hash-fun/c]
[store store?])
(stuffer/c bytes? bytes?)]{
A content-addressed storage @tech{stuffer} that stores input bytes,
@racket[input], in @racket[store] with the key @racket[(H input)] and
returns the key. Similarly, on @racket[out] the original bytes are
looked up.
}
@defproc[(md5-stuffer [root path-string?])
(stuffer/c bytes? bytes?)]{
Equivalent to @racket[(hash-stuffer md5 (dir-store root))]
}
}
@section{HMAC-SHA1 Signing}
@defmodule[web-server/stuffers/hmac-sha1]{
@defproc[(HMAC-SHA1 [kb bytes?] [db bytes?])
bytes?]{
Performs a HMAC-SHA1 calculation on @racket[db] using @racket[kb] as
the key. The result is guaranteed to be 20 bytes. (You could curry
this to use it with @racket[hash-stuffer], but there is little value
in doing so over @racket[md5].)
}
@defproc[(HMAC-SHA1-stuffer [kb bytes?])
(stuffer/c bytes? bytes?)]{
A @tech{stuffer} that signs input using @racket[HMAC-SHA1] with
@racket[kb] as the key. The result of the @tech{stuffer} is the hash
prepended to the input data. When the @tech{stuffer} is run in
reverse, it checks if the first 20 bytes are the correct has for the
rest of the data.
@warning{You should compose this with @racket[base64-stuffer] to get
URL-safe bytes.}
@warning{Without explicit provision, it is possible for users to
modify the continuations they are sent through the other
@tech{stuffers}. This @tech{stuffer} allows the servlet to certify
that stuffed data was truly generated by the servlet. Therefore, you
@bold{should} use this if you are not using the
@racket[hash-stuffer]s.}
@warning{This @tech{stuffer} does @bold{not} encrypt the data in
anyway, so users can still observe the stuffed values.}
}
}
@section{Helpers}
@defmodule[web-server/lang/stuff-url]{
@defproc[(is-url-too-big? [v bytes?])
boolean?]{
Determines if stuffing @racket[v] into the current servlet's URL would
result in a URL that is too big for Internet Explorer.
(@link["http://www.boutell.com/newfaq/misc/urllength.html"]{IE only
supports URLs up to 2048 characters.})
}
@defproc[(make-default-stuffer [root path-string?])
(stuffer/c serializable? bytes?)]{
Constructs a @tech{stuffer} that serializes, then if the URL is too
big, compresses (and base64-encodes), if the URL is still too big then
it stores it in an MD5-indexed database rooted at @racket[root].
Equivalent to:
@racketblock[
(stuffer-chain
serialize-stuffer
is-url-too-big?
(stuffer-chain
gzip-stuffer
base64-stuffer)
is-url-too-big?
(md5-stuffer root))
]
}
@defthing[default-stuffer (stuffer/c serializable? bytes?)]{
Equivalent to:
@racketblock[
(make-default-stuffer
(build-path
(find-system-path 'home-dir)
".urls"))]
}
}
| false |
a70ef8e23b407845daa83a0d2f5011fe20f42b4e | 3ec63032a7792f8af04a8cc1ce9f5693e7b58fd3 | /posts/private/fish.rkt | 6433c97718c2e9973bb8c9e371bbcce741b72353 | []
| no_license | rmculpepper/blog | c33fe464ba184800e580860c1d11ba616a8a0c30 | 18c0c06d0e9fa1bcdf42463a2f6b9dd5339f184c | refs/heads/master | 2022-01-21T07:34:04.948062 | 2021-12-21T22:44:30 | 2021-12-21T22:44:30 | 181,510,445 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,610 | rkt | fish.rkt | #lang racket/base
(require racket/class
racket/match
racket/draw
pict)
(provide (all-defined-out))
;; ============================================================
;; Utils
(define (clip v vmin vmax)
(cond [(< v vmin) vmin]
[(> v vmax) vmax]
[else v]))
(define (color->rgba c) ;; note: components are not pre-multiplied by alpha
(values (send c red) (send c green) (send c blue) (send c alpha)))
(define (make-transparent) (make-object color% 0 0 0 0.0))
;; ============================================================
;; Colormaps
;; type UCoord = Real in [0,1]
;; type Coord = NNReal
;; type Colormap = (colormap PosReal PosReal (Coord Coord -> Color))
(struct colormap (width height get-color))
;; colormap-color : Colormap Coord Coord -> Color
(define (colormap-color cm x y)
((colormap-get-color cm) x y))
;; colormap-color-u : Colormap UCoord UCoord -> Color
(define (colormap-color-u cm ux uy)
(match-define (colormap w h get-color) cm)
(get-color (inexact->exact (floor (* ux w)))
(inexact->exact (floor (* uy h)))))
;; bitmap->colormap : Bitmap -> Colormap
(define (bitmap->colormap b)
(define bdc (new bitmap-dc% (bitmap b)))
(define w (send b get-width))
(define h (send b get-height))
(define (get-color x y)
(define c (new color%))
(send bdc get-pixel (clip x 0 (sub1 w)) (clip y 0 (sub1 h)) c)
c)
(colormap w h get-color))
;; pict->colormap : Pict -> Colormap
(define (pict->colormap p)
(bitmap->colormap (pict->bitmap p)))
;; map-colormap : Colormap (Color -> Color) -> Colormap
(define (map-colormap cm f)
(define (get-color x y)
(f (colormap-color cm x y)))
(colormap (colormap-width cm) (colormap-height cm) get-color))
;; value-theshold-colormap : Colormap Real Real -> Colormap
(define (value-threshold-colormap cm vmin vmax)
(define (f c)
(define-values (r g b a) (color->rgba c))
(define v (max r g b))
(if (or (> v vmax) (< v vmin)) (make-transparent) c))
(map-colormap cm f))
;; randomize-colormap : Colormap (Listof Color) -> Colormap
(define (randomize-colormap cm colors)
(define colorv (list->vector colors))
(define (random-color) (vector-ref colorv (random (vector-length colorv))))
(define (f c)
(define-values (r* b* g* a*) (color->rgba (random-color)))
(make-object color% r* b* g* (* (send c alpha) a*)))
(map-colormap cm f))
;; ============================================================
;; Sampling points
;; type UPoint = (cons UCoord UCoord)
;; By default, points are drawn in order returned.
;; sample-uniform-points : Nat -> (Listof UPoint)
(define (sample-uniform-upoints n)
(for/list ([_i (in-range n)]) (cons (random) (random))))
;; sample-stratified-upoints : Nat -> (Listof UPoint)
(define (sample-stratified-upoints nrows ncols)
;; Divides cm into nrows rows and ncols columns, samples one point
;; from each point in the resulting grid.
(for*/list ([row (in-range nrows)] [col (in-range ncols)])
(cons (/ (+ row (random)) nrows) (/ (+ col (random)) ncols))))
;; ============================================================
;; Sampling fishes
;; fish-scale : (Parameterof PosReal)
(define fish-scale (make-parameter 1))
;; fish-dir : (Parameterof (U 'left 'right))
(define fish-dir (make-parameter 'left))
;; scale-fish : Pict -> Pict
(define (scale-fish p) (scale p (fish-scale)))
;; random-fish : Color -> Pict
(define (random-fish c)
(define-values (w h)
(case (random 4)
[(0) (values 20 15)]
[(1) (values 40 30)]
[(2) (values 25 25)]
[(3) (values 25 20)]))
(let-values ([(r g b a) (color->rgba c)])
(define p (standard-fish w h #:color c #:eye-color "gray" #:direction (fish-dir)))
(scale-fish (if (< a 1) (cellophane p a) p))))
;; ============================================================
(define (fish-school cm upoints)
(define w (colormap-width cm))
(define h (colormap-height cm))
(for/fold ([base (blank w h)]) ([upoint (in-list upoints)])
(match-define (cons ux uy) upoint)
(define p (random-fish (colormap-color-u cm ux uy)))
(define pw (pict-width p))
(define ph (pict-height p))
(pin-over base (- (* w ux) (/ pw 2)) (- (* h uy) (/ ph 2)) p)))
(define (pict->fish-school p upoints)
(define cm (pict->colormap p))
(fish-school cm upoints))
(define (racket-logo-fish-school)
(parameterize ((fish-scale 1/5))
(define b (read-bitmap (collection-file-path "drracket.png" "drracket")))
(define cm (pict->colormap (inset (bitmap b) 10)))
(scale (fish-school cm (sample-stratified-upoints 20 20)) 5)))
| false |
daa55fac7b351d8306cb810ff0d7224b0478cb25 | 47ce14e0fefe3a7eed387f44fcbacd9063944a74 | /china_flag.rkt | 13936f5c44a815cfc9e2ba8ec52223f172f2265f | []
| no_license | tiborh/racket | a275addfe2a00a41b34852d305e6672536da1412 | a202512b6fda1ee683643ec1d6b10be5722de1f7 | refs/heads/master | 2021-01-19T03:39:08.801823 | 2016-06-21T00:33:39 | 2016-06-21T00:33:39 | 60,483,003 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,178 | rkt | china_flag.rkt | #lang racket
;
; National flag of the Republic of China
;
; See also: https://zh.wikipedia.org/zh-cn/%E4%B8%AD%E8%8F%AF%E6%B0%91%E5%9C%8B%E5%9C%8B%E6%97%97
;
(require 2htdp/image)
; Radius of the core of white sun
(define CORE_R (* 1 15))
; Width and height of left top corner
(define CORNER_W (* 8 CORE_R))
(define CORNER_H (* (/ 2 3) CORNER_W))
; Define colors for Sky Blue (cmyk 100 80 0 20)
; and Deep Red (cmyk 0 100 100 10)
; See also: http://flag.moi.gov.tw/FAQ.html
(define skyblue (color 2 63 136))
(define deepred (color 215 25 32))
; Draw and save the national flag
(define IMAGE (overlay/align 'left 'top
(overlay
(underlay
(rotate (/ 360 (* 12 2)) (star-polygon (* (* 4 CORE_R) (sin (/ pi 12))) 12 5 'solid 'white))
(circle (* (/ 17 15) CORE_R) 'solid skyblue)
(circle CORE_R 'solid 'white))
(rectangle CORNER_W CORNER_H 'solid skyblue))
(rectangle (* 2 CORNER_W) (* 2 CORNER_H) 'solid deepred)))
IMAGE
(save-image IMAGE "roc_flag.png")
| false |
646685a0ffc9e03aa6d30d4f5a3d486e496aa9a7 | b0c07ea2a04ceaa1e988d4a0a61323cda5c43e31 | /langs/dupe/interp-prim-bits.rkt | 330dcecf6788010645651eea0fd767371fceff5f | [
"AFL-3.0"
]
| permissive | cmsc430/www | effa48f2e69fb1fd78910227778a1eb0078e0161 | 82864f846a7f8f6645821e237de42fac94dff157 | refs/heads/main | 2023-09-03T17:40:58.733672 | 2023-08-28T15:26:33 | 2023-08-28T15:26:33 | 183,064,322 | 39 | 30 | null | 2023-08-28T15:49:59 | 2019-04-23T17:30:12 | Racket | UTF-8 | Racket | false | false | 262 | rkt | interp-prim-bits.rkt | #lang racket
(require "types.rkt")
(provide interp-prim1-bits)
;; Op Bits -> Bits
(define (interp-prim1-bits op b)
(match op
['add1 (+ b (value->bits 1))]
['sub1 (- b (value->bits 1))]
['zero? (if (zero? b) (value->bits #t) (value->bits #f))]))
| false |
c78d14ac35d1fb7f86fde91ada2cc5c944d33e27 | 44d9dfac65d56ad805f9679df5064f8bca58b12f | /one-sharp/lexer.rkt | f68fc5a56e61d0dd73d186d6500a887abcf2bf1e | []
| no_license | jtadley/one-sharp | 30f739c2806d83f9bfcbe50072bdd10fc4ab56ee | f9a1bd556ea15e88d6d3f8d807ffd47b99231d2f | refs/heads/main | 2023-03-18T06:09:22.733339 | 2021-03-08T00:32:07 | 2021-03-08T00:32:07 | 308,673,017 | 2 | 1 | null | 2021-03-08T00:32:08 | 2020-10-30T15:38:36 | Racket | UTF-8 | Racket | false | false | 3,789 | rkt | lexer.rkt | #lang racket
(provide (rename-out [lex-1# lex]))
; lex-1#: any input-port -> (U one sharp unknown comment eof)
; where
; one: #'#\1
; sharp: #'#\#
; unknown: #'(unknown Char)
; comment: #'(comment String)
; whitespaces: (whitespace)
; eof: (eof)
; where all of the above contain appropriate source locations
; tokenizes the first token found in the given input port
(define (lex-1# src in)
;read whitespace
(define-values (line column position) (port-next-location in))
(define whitespaces (bytes-length (car (regexp-match #px"^\\s*" in))))
(cond
[(not (zero? whitespaces)) (datum->syntax #f '(whitespace)
`(,src ,line ,column ,position ,whitespaces))]
[else
(define curr-char (read-char in))
(cond
[(eof-object? curr-char) (datum->syntax #f '(eof) #f)]
[(or (char=? #\1 curr-char)
(char=? #\# curr-char))
(datum->syntax #f curr-char `(,src ,line ,column ,position 1))]
[(char=? #\; curr-char)
(define comment (if (eof-object? (peek-char in)) "" (read-line in)))
; if comment is at the last line, it doesn't end with a "\n" (that's what I get for using read-line)
(define last-line? (eof-object? (peek-char in)))
; span computed as follows: semi-colon + comment + (if last line, 0, else 1 cus of \n)
(datum->syntax #f `(comment ,comment) `(,src ,line ,column ,position ,(+ 1 (string-length comment) (if last-line? 0 1))))]
[else (datum->syntax #f `(unknown ,curr-char) `(,src ,line ,column ,position 1))])]))
(module+ test
(require rackunit)
(define (syntax~? s1 s2)
(check-equal? (syntax->datum s1) (syntax->datum s2))
(check-eqv? (syntax-position s1) (syntax-position s2))
(check-eqv? (syntax-span s1) (syntax-span s2)))
(define test-input-port (open-input-string "
;startWithACommentNewLine!
1
1 # ;1
1 ####a #
;lastLineNoNewLine!"))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(whitespace) '(#f #f #f 1 9)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(comment "startWithACommentNewLine!") '(#f #f #f 10 27)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\1 '(#f #f #f 37 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(whitespace) '(#f #f #f 38 3)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\1 '(#f #f #f 41 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(whitespace) '(#f #f #f 42 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\# '(#f #f #f 43 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(whitespace) '(#f #f #f 44 3)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(comment "1") '(#f #f #f 47 3)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\1 '(#f #f #f 50 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(whitespace) '(#f #f #f 51 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\# '(#f #f #f 52 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\# '(#f #f #f 53 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\# '(#f #f #f 54 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\# '(#f #f #f 55 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(unknown #\a) '(#f #f #f 56 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(whitespace) '(#f #f #f 57 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f #\# '(#f #f #f 58 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(whitespace) '(#f #f #f 59 1)))
(syntax~? (lex-1# #f test-input-port) (datum->syntax #f '(comment "lastLineNoNewLine!") '(#f #f #f 60 19)))
(check-equal? (syntax->datum (lex-1# #f test-input-port)) '(eof))) | false |
4deaf6294b1b93c42122396c2143c149eb1e239e | 4858557025c3294a2291ba4f4fef8ac3ceff2886 | /Emulator/Examples/Diffusion3d/res.rkt | 078467d914ec8a4487efad39177a7ad31479f726 | []
| no_license | prg-titech/Kani-CUDA | 75e5b5bacd3edae5ee7f618e6d0760f57a54d288 | e97c4bede43a5fc4031a7d2cfc32d71b01ac26c4 | refs/heads/master | 2021-01-20T00:21:21.151980 | 2019-03-26T02:42:02 | 2019-03-26T02:42:02 | 70,029,514 | 10 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 1,044 | rkt | res.rkt | #lang rosette
(require "../../lang.rkt")
(define res-f (lambda (arr SIZE) (:= int i (thread-idx 0)) (if (switch) (? (syncthreads) (void)) (syncthreads)) (:= int x (arr i)) (if (switch) (syncthreads) (syncthreads)) (= (arr (modulo/LS (+/LS i -94) SIZE)) x)))
(define (array-eq-assert arr1 arr2 len) (for ((i (in-range len))) (assert (eq? (array-ref-host arr1 i) (array-ref-host arr2 i)))))
(define (spec-opt res-f) (define SIZE 19) (define in0-opt (make-array (for/vector ((i SIZE)) (make-element i)) SIZE)) (define in1-opt (make-array (for/vector ((i 5)) (make-element i)) 5)) (define out0 (make-array (for/vector ((i SIZE)) (make-element (modulo (+ i -1) SIZE))) SIZE)) (define out1 (make-array (for/vector ((i 5)) (make-element (modulo (+ i -1) 5))) 5)) (invoke-kernel res-f (quote (1)) (list SIZE) in0-opt SIZE) (invoke-kernel res-f (quote (1)) (quote (5)) in1-opt 5) (array-eq-assert in0-opt out0 SIZE) (array-eq-assert in1-opt out1 5))
(for-each (lambda (e) (displayln e)) (optimize-barrier (parameterize ((switch #t)) (spec-opt res-f))))
| false |
36dc1f986800e77e00ea99eddeb2b72c28d4e8f5 | 087c56877811a7737e9ed1ceb261ad2d9d5c65ee | /r7rs-test/tests/r7rs/read.rkt | 66309f5e7d1b3c1dbb2bbf02fb3d8f23922edc5f | []
| no_license | lexi-lambda/racket-r7rs | 2a510e70155c97b3256ec23bbc4de16567f21b70 | 84be3d16aab202e08b13da2f0e7c095e03ff0895 | refs/heads/master | 2023-06-23T10:38:38.675617 | 2022-11-23T08:00:52 | 2023-06-14T16:36:04 | 44,901,769 | 107 | 15 | null | 2022-11-23T08:03:26 | 2015-10-25T08:13:35 | Racket | UTF-8 | Racket | false | false | 923 | rkt | read.rkt | #lang r7rs
(import (scheme base)
(scheme read)
(scheme private rackunit))
(check-equal? (parameterize ((current-input-port (open-input-string "(1 2 3)")))
(read))
'(1 2 3))
;; -----------------------------------------------------------------------------
;; graph structure in program text (see #17)
(check-equal? (car '#1=(a b . #1#)) 'a)
(check-equal? '#1=(a b . #1#) '#1#)
(check-equal? '#1=(a b . #1#) '#2=(a b a b . #2#))
(check-exn
#rx"^#%datum: unquoted datum label$"
(lambda ()
(convert-syntax-error
(car #1=(a b . #1#)))))
(let ()
(define-syntax quoted-car
(syntax-rules (quote)
((_ (quote (a . b)))
(quote a))))
(check-equal? (quoted-car '#0=(1 . #0#)) 1))
(let ()
(define-syntax let-and
(syntax-rules ()
((_ x e1 e2)
(let ((x e1))
(and x e2)))))
(check-equal? (let-and x '#0=(1 . #0#) (car x)) 1))
| true |
3f8085ce42083c691c819a95e01c451b6f974dce | fc6465100ab657aa1e31af6a4ab77a3284c28ff0 | /results/brutally-unfair-24/delim-cont-3-enum-brutally-unfair.rktd | 2fa5cdf37d1db5f43f616567cd1f000a029ad550 | []
| 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 | 803,657 | rktd | delim-cont-3-enum-brutally-unfair.rktd | (start 2015-06-20T12:40:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:40:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:40:32 (#:amount 29409184 #:time 249))
(heartbeat 2015-06-20T12:40:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:40:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:41:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:41:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:41:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:41:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:41:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:41:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:42:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:42:06 (#:amount 96432976 #:time 310))
(heartbeat 2015-06-20T12:42:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:42:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:42:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:42:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:42:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:43:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:43:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:43:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:43:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:43:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:43:44 (#:amount 104351392 #:time 287))
(heartbeat 2015-06-20T12:43:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:44:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:44:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:44:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:44:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:44:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:44:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:45:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:45:11 (#:amount 100150056 #:time 308))
(heartbeat 2015-06-20T12:45:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:45:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:45:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:45:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:45:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:46:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:46:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:46:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:46:30 (#:amount 101512232 #:time 307))
(heartbeat 2015-06-20T12:46:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:46:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:46:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:47:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:47:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:47:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:47:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:47:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:47:45 (#:amount 99783928 #:time 310))
(heartbeat 2015-06-20T12:47:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:48:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:48:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:48:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:48:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:48:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:48:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:49:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:49:07 (#:amount 102204232 #:time 263))
(heartbeat 2015-06-20T12:49:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:49:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:49:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:49:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:49:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:50:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:50:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:50:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:50:28 (#:amount 100326368 #:time 256))
(heartbeat 2015-06-20T12:50:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:50:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:50:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:51:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:51:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:51:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:51:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:51:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:51:47 (#:amount 101313600 #:time 311))
(heartbeat 2015-06-20T12:51:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:52:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:52:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:52:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:52:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:52:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:52:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:53:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:53:07 (#:amount 100043168 #:time 304))
(heartbeat 2015-06-20T12:53:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:53:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:53:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:53:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:53:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:54:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:54:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:54:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:54:23 (#:amount 101909632 #:time 308))
(heartbeat 2015-06-20T12:54:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:54:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:54:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:55:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:55:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:55:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:55:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:55:39 (#:amount 99814760 #:time 261))
(heartbeat 2015-06-20T12:55:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:55:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:56:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:56:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:56:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:56:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:56:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:56:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:56:58 (#:amount 102110728 #:time 312))
(heartbeat 2015-06-20T12:57:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:57:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:57:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:57:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:57:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:57:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:58:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:58:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:58:17 (#:amount 99893720 #:time 311))
(heartbeat 2015-06-20T12:58:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:58:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:58:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:58:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:59:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:59:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:59:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:59:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T12:59:38 (#:amount 101951840 #:time 310))
(heartbeat 2015-06-20T12:59:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T12:59:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:00:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:00:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:00:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:00:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:00:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:00:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:00:57 (#:amount 99779576 #:time 261))
(heartbeat 2015-06-20T13:01:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:01:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:01:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:01:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:01:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:01:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:02:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:02:11 (#:amount 102290200 #:time 261))
(heartbeat 2015-06-20T13:02:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:02:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:02:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:02:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:02:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:03:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:03:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:03:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:03:25 (#:amount 99973264 #:time 312))
(heartbeat 2015-06-20T13:03:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:03:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:03:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:04:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:04:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:04:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:04:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:04:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:04:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:04:58 (#:amount 101733920 #:time 312))
(heartbeat 2015-06-20T13:05:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:05:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:05:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:05:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:05:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:05:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:06:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:06:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:06:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:06:30 (#:amount 100198152 #:time 313))
(heartbeat 2015-06-20T13:06:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:06:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:06:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:07:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:07:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:07:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:07:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:07:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:07:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:08:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:08:06 (#:amount 101244768 #:time 312))
(heartbeat 2015-06-20T13:08:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:08:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:08:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:08:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:08:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:09:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:09:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:09:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:09:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:09:35 (#:amount 100047168 #:time 309))
(heartbeat 2015-06-20T13:09:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:09:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:10:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:10:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:10:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:10:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:10:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:10:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:11:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:11:11 (#:amount 101686992 #:time 314))
(heartbeat 2015-06-20T13:11:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:11:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:11:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:11:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:11:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:12:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:12:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:12:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:12:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:12:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:12:45 (#:amount 99508608 #:time 310))
(heartbeat 2015-06-20T13:12:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:13:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:13:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:13:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:13:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:13:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:13:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:14:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:14:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:14:17 (#:amount 102635792 #:time 311))
(heartbeat 2015-06-20T13:14:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:14:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:14:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:14:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:15:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:15:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:15:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:15:29 (#:amount 99532656 #:time 310))
(heartbeat 2015-06-20T13:15:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:15:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:15:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:16:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:16:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:16:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:16:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:16:41 (#:amount 102641696 #:time 261))
(heartbeat 2015-06-20T13:16:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:16:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:17:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:17:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:17:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:17:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:17:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:17:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:17:56 (#:amount 99661880 #:time 264))
(heartbeat 2015-06-20T13:18:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:18:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:18:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:18:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:18:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:18:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:19:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:19:07 (#:amount 102398144 #:time 308))
(heartbeat 2015-06-20T13:19:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:19:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:19:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:19:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:19:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:20:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:20:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:20:16 (#:amount 100238000 #:time 259))
(heartbeat 2015-06-20T13:20:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:20:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:20:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:20:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:21:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:21:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:21:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:21:30 (#:amount 101214848 #:time 260))
(heartbeat 2015-06-20T13:21:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:21:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:21:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:22:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:22:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:22:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:22:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:22:42 (#:amount 99873928 #:time 265))
(heartbeat 2015-06-20T13:22:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:22:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:23:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:23:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:23:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:23:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:23:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:23:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:23:54 (#:amount 102140720 #:time 257))
(heartbeat 2015-06-20T13:24:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:24:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:24:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:24:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:24:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:24:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:25:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:25:06 (#:amount 99881728 #:time 259))
(heartbeat 2015-06-20T13:25:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:25:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:25:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:25:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:25:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:26:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:26:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:26:20 (#:amount 102153296 #:time 278))
(heartbeat 2015-06-20T13:26:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:26:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:26:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:26:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:27:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:27:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:27:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:27:31 (#:amount 99526448 #:time 308))
(heartbeat 2015-06-20T13:27:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:27:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:27:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:28:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:28:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:28:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:28:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:28:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:28:47 (#:amount 102765184 #:time 261))
(heartbeat 2015-06-20T13:28:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:29:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:29:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:29:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:29:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:29:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:29:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:29:56 (#:amount 100059488 #:time 259))
(heartbeat 2015-06-20T13:30:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:30:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:30:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:30:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:30:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:30:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:31:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:31:06 (#:amount 101375096 #:time 262))
(heartbeat 2015-06-20T13:31:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:31:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:31:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:31:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:31:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:32:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:32:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:32:18 (#:amount 100007656 #:time 259))
(heartbeat 2015-06-20T13:32:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:32:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:32:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:32:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:33:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:33:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:33:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:33:30 (#:amount 101910856 #:time 297))
(heartbeat 2015-06-20T13:33:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:33:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:33:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:34:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:34:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:34:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:34:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:34:42 (#:amount 99830920 #:time 263))
(heartbeat 2015-06-20T13:34:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:34:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:35:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:35:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:35:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:35:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:35:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:35:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:35:56 (#:amount 102169136 #:time 263))
(heartbeat 2015-06-20T13:36:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:36:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:36:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:36:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:36:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:36:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:37:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:37:08 (#:amount 99955208 #:time 258))
(heartbeat 2015-06-20T13:37:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:37:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:37:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:37:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:37:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:38:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:38:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:38:20 (#:amount 101550720 #:time 261))
(heartbeat 2015-06-20T13:38:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:38:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:38:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:38:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:39:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:39:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:39:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:39:30 (#:amount 100104696 #:time 262))
(heartbeat 2015-06-20T13:39:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:39:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:39:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:40:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:40:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:40:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:40:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:40:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:40:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:40:54 (#:amount 101591608 #:time 311))
(heartbeat 2015-06-20T13:41:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:41:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:41:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:41:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:41:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:41:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:42:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:42:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:42:17 (#:amount 100338400 #:time 310))
(heartbeat 2015-06-20T13:42:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:42:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:42:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:42:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:43:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:43:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:43:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:43:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:43:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:43:49 (#:amount 101270176 #:time 311))
(heartbeat 2015-06-20T13:43:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:44:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:44:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:44:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:44:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:44:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:44:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:45:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:45:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:45:16 (#:amount 100080080 #:time 258))
(heartbeat 2015-06-20T13:45:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:45:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:45:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:45:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:46:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:46:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:46:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:46:31 (#:amount 101743392 #:time 318))
(heartbeat 2015-06-20T13:46:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:46:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:46:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:47:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:47:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:47:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:47:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:47:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:47:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:48:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:48:07 (#:amount 100063704 #:time 312))
(heartbeat 2015-06-20T13:48:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:48:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:48:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:48:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:48:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:49:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:49:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:49:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:49:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:49:34 (#:amount 101761000 #:time 311))
(heartbeat 2015-06-20T13:49:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:49:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:50:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:50:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:50:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:50:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:50:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:50:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:51:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:51:09 (#:amount 100168264 #:time 310))
(heartbeat 2015-06-20T13:51:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:51:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:51:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:51:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:51:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:52:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:52:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:52:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:52:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:52:44 (#:amount 101441248 #:time 316))
(heartbeat 2015-06-20T13:52:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:52:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:53:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:53:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:53:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:53:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:53:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:53:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:54:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:54:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:54:17 (#:amount 99837088 #:time 308))
(heartbeat 2015-06-20T13:54:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:54:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:54:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:54:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:55:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:55:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:55:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:55:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:55:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:55:51 (#:amount 102305712 #:time 313))
(heartbeat 2015-06-20T13:55:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:56:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:56:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:56:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:56:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:56:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:56:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:57:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:57:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:57:22 (#:amount 100029848 #:time 311))
(heartbeat 2015-06-20T13:57:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:57:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:57:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:57:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:58:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:58:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:58:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:58:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:58:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T13:58:54 (#:amount 101845968 #:time 312))
(heartbeat 2015-06-20T13:58:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:59:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:59:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:59:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:59:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:59:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T13:59:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:00:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:00:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:00:22 (#:amount 100301648 #:time 261))
(heartbeat 2015-06-20T14:00:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:00:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:00:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:00:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:01:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:01:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:01:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:01:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:01:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:01:53 (#:amount 101382096 #:time 311))
(heartbeat 2015-06-20T14:01:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:02:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:02:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:02:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:02:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:02:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:02:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:03:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:03:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:03:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:03:26 (#:amount 100059992 #:time 311))
(heartbeat 2015-06-20T14:03:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:03:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:03:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:04:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:04:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:04:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:04:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:04:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:04:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:04:58 (#:amount 101825832 #:time 314))
(heartbeat 2015-06-20T14:05:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:05:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:05:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:05:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:05:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:05:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:06:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:06:10 (#:amount 99773872 #:time 259))
(heartbeat 2015-06-20T14:06:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:06:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:06:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:06:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:06:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:07:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:07:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:07:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:07:27 (#:amount 102527472 #:time 260))
(heartbeat 2015-06-20T14:07:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:07:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:07:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:08:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:08:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:08:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:08:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:08:38 (#:amount 100334848 #:time 260))
(heartbeat 2015-06-20T14:08:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:08:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:09:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:09:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:09:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:09:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:09:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:09:50 (#:amount 101191688 #:time 260))
(heartbeat 2015-06-20T14:09:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:10:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:10:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:10:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:10:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:10:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:10:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:11:02 (#:amount 99637928 #:time 280))
(heartbeat 2015-06-20T14:11:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:11:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:11:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:11:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:11:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:11:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:12:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:12:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:12:17 (#:amount 102670664 #:time 291))
(heartbeat 2015-06-20T14:12:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:12:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:12:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:12:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:13:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:13:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:13:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:13:30 (#:amount 100296816 #:time 261))
(heartbeat 2015-06-20T14:13:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:13:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:13:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:14:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:14:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:14:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:14:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:14:43 (#:amount 101482304 #:time 265))
(heartbeat 2015-06-20T14:14:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:14:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:15:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:15:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:15:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:15:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:15:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:15:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:15:56 (#:amount 99507080 #:time 259))
(heartbeat 2015-06-20T14:16:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:16:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:16:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:16:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:16:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:16:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:17:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:17:11 (#:amount 102740136 #:time 264))
(heartbeat 2015-06-20T14:17:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:17:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:17:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:17:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:17:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:18:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:18:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:18:23 (#:amount 99693928 #:time 261))
(heartbeat 2015-06-20T14:18:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:18:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:18:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:18:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:19:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:19:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:19:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:19:32 (#:amount 102539368 #:time 261))
(heartbeat 2015-06-20T14:19:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:19:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:19:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:20:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:20:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:20:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:20:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:20:41 (#:amount 99596944 #:time 259))
(heartbeat 2015-06-20T14:20:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:20:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:21:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:21:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:21:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:21:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:21:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:21:52 (#:amount 102506152 #:time 263))
(heartbeat 2015-06-20T14:21:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:22:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:22:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:22:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:22:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:22:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:22:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:23:02 (#:amount 100259504 #:time 260))
(heartbeat 2015-06-20T14:23:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:23:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:23:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:23:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:23:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:23:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:24:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:24:10 (#:amount 101373496 #:time 267))
(heartbeat 2015-06-20T14:24:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:24:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:24:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:24:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:24:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:25:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:25:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:25:19 (#:amount 100296784 #:time 262))
(heartbeat 2015-06-20T14:25:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:25:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:25:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:25:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:26:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:26:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:26:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:26:31 (#:amount 101276232 #:time 262))
(heartbeat 2015-06-20T14:26:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:26:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:26:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:27:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:27:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:27:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:27:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:27:41 (#:amount 100343808 #:time 311))
(heartbeat 2015-06-20T14:27:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:27:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:28:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:28:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:28:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:28:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:28:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:28:53 (#:amount 101141840 #:time 312))
(heartbeat 2015-06-20T14:28:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:29:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:29:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:29:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:29:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:29:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:29:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:30:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:30:10 (#:amount 99915600 #:time 309))
(heartbeat 2015-06-20T14:30:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:30:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:30:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:30:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:30:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:31:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:31:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:31:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:31:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:31:40 (#:amount 102183968 #:time 316))
(heartbeat 2015-06-20T14:31:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:31:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:32:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:32:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:32:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:32:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:32:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:32:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:33:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:33:11 (#:amount 100004080 #:time 261))
(heartbeat 2015-06-20T14:33:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:33:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:33:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:33:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:33:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:34:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:34:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:34:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:34:35 (#:amount 102123352 #:time 262))
(heartbeat 2015-06-20T14:34:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:34:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:34:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:35:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:35:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:35:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:35:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:35:43 (#:amount 99641736 #:time 258))
(heartbeat 2015-06-20T14:35:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:35:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:36:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:36:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:36:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:36:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:36:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:36:53 (#:amount 102692776 #:time 262))
(heartbeat 2015-06-20T14:36:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:37:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:37:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:37:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:37:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:37:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:37:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:38:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:38:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:38:25 (#:amount 100275064 #:time 312))
(heartbeat 2015-06-20T14:38:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:38:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:38:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:38:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:39:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:39:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:39:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:39:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:39:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:39:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:40:02 (#:amount 101727280 #:time 317))
(heartbeat 2015-06-20T14:40:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:40:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:40:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:40:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:40:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:40:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:41:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:41:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:41:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:41:35 (#:amount 100277152 #:time 260))
(heartbeat 2015-06-20T14:41:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:41:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:41:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:42:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:42:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:42:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:42:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:42:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:42:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:43:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:43:09 (#:amount 101287968 #:time 313))
(heartbeat 2015-06-20T14:43:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:43:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:43:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:43:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:43:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:44:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:44:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:44:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:44:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:44:40 (#:amount 100107904 #:time 315))
(heartbeat 2015-06-20T14:44:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:44:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:45:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:45:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:45:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:45:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:45:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:45:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:46:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:46:14 (#:amount 102104640 #:time 314))
(heartbeat 2015-06-20T14:46:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:46:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:46:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:46:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:46:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:47:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:47:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:47:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:47:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:47:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:47:48 (#:amount 99373688 #:time 312))
(heartbeat 2015-06-20T14:47:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:48:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:48:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:48:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:48:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:48:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:48:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:49:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:49:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:49:21 (#:amount 102948640 #:time 313))
(heartbeat 2015-06-20T14:49:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:49:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:49:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:49:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:50:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:50:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:50:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:50:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:50:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:50:55 (#:amount 100276728 #:time 311))
(heartbeat 2015-06-20T14:50:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:51:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:51:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:51:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:51:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:51:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:51:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:52:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:52:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:52:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:52:29 (#:amount 101346176 #:time 316))
(heartbeat 2015-06-20T14:52:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:52:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:52:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:53:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:53:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:53:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:53:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:53:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:53:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:54:00 (#:amount 99919568 #:time 261))
(heartbeat 2015-06-20T14:54:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:54:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:54:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:54:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:54:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:54:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:55:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:55:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:55:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:55:30 (#:amount 102156624 #:time 311))
(heartbeat 2015-06-20T14:55:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:55:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:55:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:56:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:56:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:56:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:56:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:56:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:56:56 (#:amount 99901736 #:time 261))
(heartbeat 2015-06-20T14:56:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:57:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:57:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:57:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:57:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:57:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:57:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:58:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:58:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:58:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T14:58:29 (#:amount 102370160 #:time 312))
(heartbeat 2015-06-20T14:58:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:58:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:58:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:59:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:59:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:59:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:59:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:59:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T14:59:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:00:05 (#:amount 100365144 #:time 311))
(heartbeat 2015-06-20T15:00:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:00:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:00:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:00:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:00:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:00:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:01:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:01:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:01:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:01:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:01:39 (#:amount 101089328 #:time 318))
(heartbeat 2015-06-20T15:01:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:01:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:02:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:02:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:02:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:02:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:02:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:02:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:03:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:03:15 (#:amount 99610192 #:time 317))
(heartbeat 2015-06-20T15:03:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:03:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:03:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:03:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:03:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:04:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:04:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:04:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:04:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:04:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:04:47 (#:amount 102819056 #:time 312))
(heartbeat 2015-06-20T15:04:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:05:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:05:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:05:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:05:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:05:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:05:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:06:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:06:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:06:18 (#:amount 100157216 #:time 313))
(heartbeat 2015-06-20T15:06:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:06:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:06:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:06:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:07:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:07:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:07:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:07:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:07:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:07:56 (#:amount 101794976 #:time 313))
(heartbeat 2015-06-20T15:07:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:08:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:08:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:08:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:08:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:08:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:08:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:09:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:09:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:09:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:09:34 (#:amount 100157304 #:time 317))
(heartbeat 2015-06-20T15:09:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:09:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:09:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:10:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:10:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:10:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:10:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:10:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:10:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:11:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:11:11 (#:amount 101695720 #:time 312))
(heartbeat 2015-06-20T15:11:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:11:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:11:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:11:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:11:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:12:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:12:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:12:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:12:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:12:41 (#:amount 99960080 #:time 315))
(heartbeat 2015-06-20T15:12:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:12:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:13:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:13:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:13:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:13:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:13:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:13:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:14:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:14:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:14:19 (#:amount 102117432 #:time 316))
(heartbeat 2015-06-20T15:14:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:14:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:14:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:14:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:15:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:15:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:15:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:15:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:15:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:15:56 (#:amount 99782728 #:time 262))
(heartbeat 2015-06-20T15:15:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:16:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:16:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:16:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:16:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:16:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:16:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:17:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:17:08 (#:amount 102092064 #:time 312))
(heartbeat 2015-06-20T15:17:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:17:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:17:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:17:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:17:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:18:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:18:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:18:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:18:34 (#:amount 99972064 #:time 261))
(heartbeat 2015-06-20T15:18:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:18:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:18:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:19:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:19:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:19:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:19:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:19:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:19:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:20:06 (#:amount 101980168 #:time 312))
(heartbeat 2015-06-20T15:20:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:20:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:20:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:20:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:20:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:20:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:21:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:21:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:21:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:21:33 (#:amount 100194752 #:time 314))
(heartbeat 2015-06-20T15:21:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:21:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:21:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:22:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:22:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:22:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:22:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:22:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:22:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:23:04 (#:amount 101547144 #:time 315))
(heartbeat 2015-06-20T15:23:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:23:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:23:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:23:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:23:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:23:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:24:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:24:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:24:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:24:37 (#:amount 99491488 #:time 313))
(heartbeat 2015-06-20T15:24:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:24:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:24:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:25:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:25:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:25:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:25:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:25:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:25:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:26:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:26:11 (#:amount 102940024 #:time 315))
(heartbeat 2015-06-20T15:26:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:26:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:26:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:26:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:26:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:27:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:27:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:27:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:27:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:27:39 (#:amount 100376568 #:time 257))
(heartbeat 2015-06-20T15:27:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:27:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:28:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:28:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:28:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:28:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:28:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:28:52 (#:amount 101310088 #:time 257))
(heartbeat 2015-06-20T15:28:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:29:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:29:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:29:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:29:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:29:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:29:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:30:04 (#:amount 99964392 #:time 261))
(heartbeat 2015-06-20T15:30:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:30:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:30:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:30:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:30:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:30:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:31:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:31:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:31:20 (#:amount 102153752 #:time 259))
(heartbeat 2015-06-20T15:31:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:31:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:31:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:31:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:32:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:32:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:32:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:32:37 (#:amount 100259920 #:time 260))
(heartbeat 2015-06-20T15:32:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:32:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:32:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:33:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:33:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:33:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:33:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:33:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:33:50 (#:amount 101310232 #:time 259))
(heartbeat 2015-06-20T15:33:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:34:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:34:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:34:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:34:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:34:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:34:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:35:04 (#:amount 100205920 #:time 263))
(heartbeat 2015-06-20T15:35:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:35:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:35:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:35:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:35:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:35:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:36:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:36:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:36:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:36:35 (#:amount 101455896 #:time 313))
(heartbeat 2015-06-20T15:36:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:36:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:36:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:37:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:37:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:37:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:37:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:37:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:37:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:38:00 (#:amount 99826520 #:time 311))
(heartbeat 2015-06-20T15:38:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:38:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:38:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:38:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:38:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:38:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:39:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:39:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:39:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:39:35 (#:amount 102461136 #:time 315))
(heartbeat 2015-06-20T15:39:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:39:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:39:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:40:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:40:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:40:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:40:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:40:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:40:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:41:07 (#:amount 99829040 #:time 311))
(heartbeat 2015-06-20T15:41:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:41:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:41:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:41:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:41:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:41:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:42:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:42:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:42:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:42:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:42:40 (#:amount 102332344 #:time 311))
(heartbeat 2015-06-20T15:42:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:42:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:43:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:43:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:43:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:43:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:43:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:43:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:44:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:44:14 (#:amount 100067960 #:time 310))
(heartbeat 2015-06-20T15:44:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:44:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:44:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:44:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:44:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:45:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:45:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:45:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:45:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:45:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:45:50 (#:amount 101616864 #:time 312))
(heartbeat 2015-06-20T15:45:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:46:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:46:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:46:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:46:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:46:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:46:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:47:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:47:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:47:26 (#:amount 100182104 #:time 314))
(heartbeat 2015-06-20T15:47:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:47:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:47:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:47:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:48:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:48:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:48:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:48:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:48:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:48:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:48:58 (#:amount 101654448 #:time 314))
(heartbeat 2015-06-20T15:49:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:49:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:49:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:49:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:49:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:49:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:50:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:50:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:50:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:50:29 (#:amount 99782960 #:time 312))
(heartbeat 2015-06-20T15:50:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:50:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:50:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:51:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:51:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:51:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:51:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:51:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:51:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:52:00 (#:amount 102347208 #:time 311))
(heartbeat 2015-06-20T15:52:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:52:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:52:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:52:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:52:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:52:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:53:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:53:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:53:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:53:34 (#:amount 100227864 #:time 261))
(heartbeat 2015-06-20T15:53:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:53:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:53:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:54:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:54:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:54:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:54:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:54:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:54:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:55:06 (#:amount 101316664 #:time 314))
(heartbeat 2015-06-20T15:55:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:55:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:55:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:55:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:55:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:55:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:56:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:56:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:56:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:56:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:56:43 (#:amount 100406528 #:time 310))
(heartbeat 2015-06-20T15:56:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:56:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:57:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:57:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:57:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:57:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:57:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:57:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:58:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:58:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:58:19 (#:amount 101420264 #:time 313))
(heartbeat 2015-06-20T15:58:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:58:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:58:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:58:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:59:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:59:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:59:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:59:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T15:59:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T15:59:50 (#:amount 100321384 #:time 312))
(heartbeat 2015-06-20T15:59:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:00:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:00:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:00:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:00:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:00:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:00:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:01:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:01:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:01:25 (#:amount 101394880 #:time 313))
(heartbeat 2015-06-20T16:01:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:01:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:01:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:01:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:02:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:02:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:02:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:02:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:02:46 (#:amount 100398376 #:time 309))
(heartbeat 2015-06-20T16:02:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:02:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:03:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:03:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:03:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:03:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:03:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:03:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:03:59 (#:amount 101363728 #:time 259))
(heartbeat 2015-06-20T16:04:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:04:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:04:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:04:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:04:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:04:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:05:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:05:10 (#:amount 99886080 #:time 261))
(heartbeat 2015-06-20T16:05:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:05:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:05:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:05:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:05:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:06:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:06:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:06:23 (#:amount 102155984 #:time 262))
(heartbeat 2015-06-20T16:06:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:06:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:06:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:06:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:07:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:07:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:07:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:07:36 (#:amount 99917928 #:time 260))
(heartbeat 2015-06-20T16:07:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:07:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:07:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:08:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:08:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:08:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:08:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:08:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:08:53 (#:amount 102122064 #:time 266))
(heartbeat 2015-06-20T16:08:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:09:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:09:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:09:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:09:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:09:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:09:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:10:06 (#:amount 99611904 #:time 260))
(heartbeat 2015-06-20T16:10:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:10:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:10:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:10:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:10:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:10:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:11:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:11:19 (#:amount 102757328 #:time 288))
(heartbeat 2015-06-20T16:11:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:11:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:11:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:11:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:11:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:12:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:12:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:12:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:12:30 (#:amount 99675512 #:time 261))
(heartbeat 2015-06-20T16:12:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:12:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:12:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:13:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:13:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:13:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:13:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:13:45 (#:amount 102605232 #:time 311))
(heartbeat 2015-06-20T16:13:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:13:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:14:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:14:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:14:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:14:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:14:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:14:59 (#:amount 100155808 #:time 260))
(heartbeat 2015-06-20T16:14:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:15:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:15:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:15:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:15:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:15:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:15:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:16:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:16:10 (#:amount 101691480 #:time 261))
(heartbeat 2015-06-20T16:16:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:16:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:16:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:16:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:16:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:17:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:17:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:17:21 (#:amount 99586144 #:time 260))
(heartbeat 2015-06-20T16:17:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:17:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:17:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:17:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:18:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:18:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:18:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:18:33 (#:amount 102804288 #:time 263))
(heartbeat 2015-06-20T16:18:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:18:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:18:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:19:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:19:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:19:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:19:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:19:46 (#:amount 100139576 #:time 263))
(heartbeat 2015-06-20T16:19:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:19:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:20:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:20:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:20:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:20:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:20:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:20:59 (#:amount 101980096 #:time 262))
(heartbeat 2015-06-20T16:20:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:21:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:21:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:21:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:21:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:21:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:21:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:22:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:22:10 (#:amount 100389488 #:time 260))
(heartbeat 2015-06-20T16:22:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:22:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:22:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:22:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:22:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:23:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:23:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:23:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:23:32 (#:amount 101348960 #:time 264))
(heartbeat 2015-06-20T16:23:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:23:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:23:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:24:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:24:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:24:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:24:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:24:45 (#:amount 99787312 #:time 262))
(heartbeat 2015-06-20T16:24:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:24:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:25:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:25:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:25:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:25:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:25:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:25:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:26:00 (#:amount 102612104 #:time 262))
(heartbeat 2015-06-20T16:26:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:26:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:26:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:26:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:26:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:27:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:27:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:27:12 (#:amount 100324008 #:time 264))
(heartbeat 2015-06-20T16:27:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:27:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:27:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:27:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:28:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:28:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:28:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:28:26 (#:amount 101151624 #:time 269))
(heartbeat 2015-06-20T16:28:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:28:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:28:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:29:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:29:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:29:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:29:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:29:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:29:41 (#:amount 100121032 #:time 264))
(heartbeat 2015-06-20T16:29:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:30:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:30:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:30:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:30:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:30:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:30:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:30:57 (#:amount 101805672 #:time 314))
(heartbeat 2015-06-20T16:31:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:31:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:31:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:31:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:31:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:31:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:32:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:32:07 (#:amount 99766648 #:time 260))
(heartbeat 2015-06-20T16:32:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:32:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:32:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:32:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:32:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:33:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:33:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:33:15 (#:amount 102526552 #:time 264))
(heartbeat 2015-06-20T16:33:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:33:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:33:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:33:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:34:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:34:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:34:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:34:22 (#:amount 100251496 #:time 261))
(heartbeat 2015-06-20T16:34:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:34:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:34:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:35:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:35:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:35:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:35:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:35:30 (#:amount 101423776 #:time 260))
(heartbeat 2015-06-20T16:35:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:35:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:36:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:36:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:36:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:36:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:36:37 (#:amount 99661112 #:time 263))
(heartbeat 2015-06-20T16:36:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:36:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:37:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:37:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:37:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:37:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:37:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:37:45 (#:amount 102464744 #:time 263))
(heartbeat 2015-06-20T16:37:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:38:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:38:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:38:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:38:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:38:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:38:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:38:53 (#:amount 99794112 #:time 261))
(heartbeat 2015-06-20T16:39:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:39:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:39:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:39:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:39:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:39:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:40:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:40:01 (#:amount 102387888 #:time 260))
(heartbeat 2015-06-20T16:40:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:40:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:40:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:40:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:40:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:41:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:41:08 (#:amount 99755144 #:time 266))
(heartbeat 2015-06-20T16:41:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:41:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:41:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:41:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:41:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:42:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:42:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:42:16 (#:amount 102623736 #:time 259))
(heartbeat 2015-06-20T16:42:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:42:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:42:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:42:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:43:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:43:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:43:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:43:26 (#:amount 99749920 #:time 259))
(heartbeat 2015-06-20T16:43:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:43:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:43:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:44:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:44:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:44:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:44:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:44:34 (#:amount 102609472 #:time 259))
(heartbeat 2015-06-20T16:44:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:44:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:45:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:45:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:45:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:45:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:45:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:45:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:45:55 (#:amount 100382704 #:time 261))
(heartbeat 2015-06-20T16:46:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:46:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:46:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:46:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:46:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:46:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:47:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:47:10 (#:amount 101430360 #:time 260))
(heartbeat 2015-06-20T16:47:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:47:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:47:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:47:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:47:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:48:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:48:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:48:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:48:20 (#:amount 99695072 #:time 309))
(heartbeat 2015-06-20T16:48:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:48:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:48:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:49:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:49:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:49:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:49:30 (#:amount 102415568 #:time 260))
(heartbeat 2015-06-20T16:49:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:49:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:49:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:50:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:50:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:50:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:50:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:50:37 (#:amount 99523024 #:time 261))
(heartbeat 2015-06-20T16:50:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:50:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:51:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:51:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:51:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:51:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:51:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:51:50 (#:amount 102787752 #:time 294))
(heartbeat 2015-06-20T16:51:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:52:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:52:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:52:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:52:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:52:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:52:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:53:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:53:03 (#:amount 99565080 #:time 265))
(heartbeat 2015-06-20T16:53:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:53:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:53:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:53:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:53:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:54:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:54:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:54:18 (#:amount 103016832 #:time 258))
(heartbeat 2015-06-20T16:54:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:54:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:54:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:54:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:55:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:55:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:55:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:55:30 (#:amount 100101392 #:time 262))
(heartbeat 2015-06-20T16:55:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:55:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:55:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:56:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:56:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:56:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:56:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:56:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:56:43 (#:amount 101701216 #:time 264))
(heartbeat 2015-06-20T16:56:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:57:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:57:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:57:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:57:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:57:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:57:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:57:57 (#:amount 99787776 #:time 263))
(heartbeat 2015-06-20T16:58:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:58:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:58:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:58:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:58:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:58:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:59:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T16:59:09 (#:amount 102318920 #:time 260))
(heartbeat 2015-06-20T16:59:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:59:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:59:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:59:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T16:59:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:00:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:00:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:00:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:00:27 (#:amount 100160984 #:time 315))
(heartbeat 2015-06-20T17:00:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:00:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:00:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:01:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:01:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:01:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:01:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:01:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:01:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:01:57 (#:amount 101644632 #:time 261))
(heartbeat 2015-06-20T17:02:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:02:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:02:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:02:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:02:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:02:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:03:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:03:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:03:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:03:25 (#:amount 99780248 #:time 312))
(heartbeat 2015-06-20T17:03:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:03:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:03:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:04:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:04:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:04:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:04:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:04:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:04:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:04:53 (#:amount 102327392 #:time 307))
(heartbeat 2015-06-20T17:05:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:05:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:05:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:05:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:05:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:05:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:06:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:06:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:06:17 (#:amount 99634424 #:time 296))
(heartbeat 2015-06-20T17:06:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:06:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:06:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:06:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:07:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:07:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:07:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:07:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:07:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:07:47 (#:amount 102660576 #:time 304))
(heartbeat 2015-06-20T17:07:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:08:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:08:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:08:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:08:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:08:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:08:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:09:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:09:08 (#:amount 99687032 #:time 309))
(heartbeat 2015-06-20T17:09:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:09:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:09:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:09:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:09:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:10:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:10:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:10:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:10:29 (#:amount 102570848 #:time 311))
(heartbeat 2015-06-20T17:10:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:10:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:10:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:11:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:11:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:11:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:11:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:11:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:11:51 (#:amount 99950112 #:time 308))
(heartbeat 2015-06-20T17:11:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:12:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:12:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:12:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:12:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:12:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:12:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:13:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:13:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:13:14 (#:amount 102251256 #:time 310))
(heartbeat 2015-06-20T17:13:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:13:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:13:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:13:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:14:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:14:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:14:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:14:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:14:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:14:44 (#:amount 99825576 #:time 300))
(heartbeat 2015-06-20T17:14:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:15:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:15:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:15:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:15:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:15:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:15:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:16:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:16:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:16:13 (#:amount 102553136 #:time 307))
(heartbeat 2015-06-20T17:16:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:16:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:16:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:16:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:17:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:17:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:17:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:17:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:17:41 (#:amount 99606944 #:time 311))
(heartbeat 2015-06-20T17:17:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:17:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:18:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:18:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:18:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:18:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:18:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:18:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:19:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:19:10 (#:amount 102639024 #:time 314))
(heartbeat 2015-06-20T17:19:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:19:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:19:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:19:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:19:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:20:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:20:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:20:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:20:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:20:35 (#:amount 99607048 #:time 313))
(heartbeat 2015-06-20T17:20:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:20:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:21:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:21:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:21:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:21:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:21:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:21:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:21:59 (#:amount 102797560 #:time 277))
(heartbeat 2015-06-20T17:22:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:22:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:22:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:22:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:22:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:22:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:23:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:23:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:23:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:23:27 (#:amount 100388376 #:time 310))
(heartbeat 2015-06-20T17:23:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:23:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:23:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:24:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:24:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:24:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:24:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:24:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:24:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:24:57 (#:amount 101153304 #:time 263))
(heartbeat 2015-06-20T17:25:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:25:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:25:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:25:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:25:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:25:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:26:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:26:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:26:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:26:23 (#:amount 99430968 #:time 263))
(heartbeat 2015-06-20T17:26:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:26:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:26:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:27:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:27:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:27:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:27:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:27:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:27:48 (#:amount 102856928 #:time 260))
(heartbeat 2015-06-20T17:27:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:28:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:28:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:28:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:28:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:28:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:28:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:29:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:29:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:29:18 (#:amount 99935640 #:time 310))
(heartbeat 2015-06-20T17:29:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:29:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:29:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:29:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:30:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:30:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:30:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:30:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:30:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:30:51 (#:amount 102086496 #:time 312))
(heartbeat 2015-06-20T17:30:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:31:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:31:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:31:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:31:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:31:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:31:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:32:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:32:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:32:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:32:26 (#:amount 100208320 #:time 310))
(heartbeat 2015-06-20T17:32:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:32:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:32:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:33:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:33:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:33:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:33:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:33:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:33:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:34:00 (#:amount 101597944 #:time 311))
(heartbeat 2015-06-20T17:34:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:34:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:34:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:34:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:34:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:34:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:35:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:35:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:35:13 (#:amount 99705064 #:time 263))
(heartbeat 2015-06-20T17:35:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:35:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:35:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:35:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:36:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:36:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:36:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:36:26 (#:amount 102463432 #:time 308))
(heartbeat 2015-06-20T17:36:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:36:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:36:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:37:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:37:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:37:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:37:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:37:36 (#:amount 99648560 #:time 262))
(heartbeat 2015-06-20T17:37:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:37:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:38:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:38:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:38:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:38:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:38:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:38:44 (#:amount 102711488 #:time 262))
(heartbeat 2015-06-20T17:38:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:39:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:39:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:39:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:39:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:39:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:39:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:39:55 (#:amount 100284992 #:time 260))
(heartbeat 2015-06-20T17:40:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:40:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:40:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:40:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:40:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:40:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:41:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:41:06 (#:amount 101506376 #:time 258))
(heartbeat 2015-06-20T17:41:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:41:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:41:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:41:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:41:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:42:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:42:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:42:14 (#:amount 99527944 #:time 260))
(heartbeat 2015-06-20T17:42:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:42:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:42:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:42:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:43:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:43:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:43:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:43:28 (#:amount 102714552 #:time 265))
(heartbeat 2015-06-20T17:43:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:43:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:43:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:44:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:44:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:44:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:44:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:44:39 (#:amount 100344632 #:time 309))
(heartbeat 2015-06-20T17:44:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:44:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:45:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:45:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:45:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:45:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:45:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:45:51 (#:amount 101214432 #:time 261))
(heartbeat 2015-06-20T17:45:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:46:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:46:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:46:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:46:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:46:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:46:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:47:00 (#:amount 99527480 #:time 265))
(heartbeat 2015-06-20T17:47:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:47:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:47:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:47:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:47:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:47:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:48:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:48:11 (#:amount 102823872 #:time 263))
(heartbeat 2015-06-20T17:48:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:48:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:48:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:48:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:48:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:49:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:49:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:49:20 (#:amount 100258200 #:time 259))
(heartbeat 2015-06-20T17:49:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:49:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:49:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:49:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:50:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:50:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:50:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:50:30 (#:amount 101245024 #:time 261))
(heartbeat 2015-06-20T17:50:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:50:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:50:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:51:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:51:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:51:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:51:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:51:40 (#:amount 100310480 #:time 259))
(heartbeat 2015-06-20T17:51:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:51:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:52:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:52:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:52:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:52:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:52:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:52:50 (#:amount 101403880 #:time 261))
(heartbeat 2015-06-20T17:52:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:53:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:53:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:53:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:53:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:53:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:53:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:54:00 (#:amount 99710392 #:time 259))
(heartbeat 2015-06-20T17:54:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:54:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:54:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:54:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:54:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:54:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:55:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:55:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:55:14 (#:amount 102549248 #:time 309))
(heartbeat 2015-06-20T17:55:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:55:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:55:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:55:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:56:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:56:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:56:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:56:25 (#:amount 100109016 #:time 262))
(heartbeat 2015-06-20T17:56:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:56:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:56:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:57:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:57:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:57:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:57:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:57:36 (#:amount 101818096 #:time 260))
(heartbeat 2015-06-20T17:57:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:57:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:58:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:58:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:58:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:58:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:58:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:58:45 (#:amount 99734880 #:time 313))
(heartbeat 2015-06-20T17:58:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:59:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:59:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:59:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:59:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:59:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T17:59:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T17:59:58 (#:amount 102613432 #:time 263))
(heartbeat 2015-06-20T18:00:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:00:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:00:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:00:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:00:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:00:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:01:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:01:12 (#:amount 100041720 #:time 260))
(heartbeat 2015-06-20T18:01:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:01:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:01:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:01:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:01:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:02:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:02:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:02:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:02:24 (#:amount 102093064 #:time 260))
(heartbeat 2015-06-20T18:02:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:02:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:02:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:03:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:03:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:03:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:03:33 (#:amount 99607328 #:time 264))
(heartbeat 2015-06-20T18:03:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:03:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:03:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:04:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:04:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:04:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:04:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:04:42 (#:amount 102458888 #:time 265))
(heartbeat 2015-06-20T18:04:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:04:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:05:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:05:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:05:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:05:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:05:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:05:50 (#:amount 99995888 #:time 264))
(heartbeat 2015-06-20T18:05:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:06:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:06:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:06:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:06:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:06:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:06:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:07:03 (#:amount 101964032 #:time 261))
(heartbeat 2015-06-20T18:07:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:07:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:07:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:07:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:07:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:07:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:08:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:08:13 (#:amount 99751760 #:time 260))
(heartbeat 2015-06-20T18:08:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:08:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:08:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:08:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:08:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:09:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:09:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:09:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:09:25 (#:amount 102444456 #:time 260))
(heartbeat 2015-06-20T18:09:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:09:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:09:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:10:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:10:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:10:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:10:33 (#:amount 100308328 #:time 260))
(heartbeat 2015-06-20T18:10:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:10:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:10:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:11:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:11:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:11:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:11:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:11:42 (#:amount 101166968 #:time 261))
(heartbeat 2015-06-20T18:11:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:11:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:12:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:12:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:12:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:12:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:12:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:12:52 (#:amount 99375216 #:time 260))
(heartbeat 2015-06-20T18:12:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:13:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:13:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:13:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:13:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:13:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:13:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:14:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:14:05 (#:amount 103012720 #:time 265))
(heartbeat 2015-06-20T18:14:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:14:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:14:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:14:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:14:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:15:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:15:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:15:16 (#:amount 100170568 #:time 262))
(heartbeat 2015-06-20T18:15:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:15:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:15:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:15:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:16:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:16:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:16:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:16:33 (#:amount 101622704 #:time 312))
(heartbeat 2015-06-20T18:16:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:16:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:16:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:17:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:17:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:17:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:17:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:17:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:17:45 (#:amount 100148744 #:time 260))
(heartbeat 2015-06-20T18:17:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:18:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:18:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:18:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:18:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:18:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:18:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:18:57 (#:amount 101527608 #:time 260))
(heartbeat 2015-06-20T18:19:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:19:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:19:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:19:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:19:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:19:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:20:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:20:11 (#:amount 100271720 #:time 290))
(heartbeat 2015-06-20T18:20:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:20:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:20:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:20:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:20:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:21:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:21:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:21:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:21:24 (#:amount 101419896 #:time 301))
(heartbeat 2015-06-20T18:21:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:21:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:21:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:22:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:22:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:22:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:22:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:22:35 (#:amount 100145624 #:time 273))
(heartbeat 2015-06-20T18:22:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:22:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:23:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:23:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:23:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:23:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:23:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:23:49 (#:amount 101801280 #:time 262))
(heartbeat 2015-06-20T18:23:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:24:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:24:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:24:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:24:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:24:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:24:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:25:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:25:13 (#:amount 100204432 #:time 309))
(heartbeat 2015-06-20T18:25:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:25:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:25:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:25:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:25:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:26:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:26:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:26:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:26:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:26:42 (#:amount 101335896 #:time 314))
(heartbeat 2015-06-20T18:26:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:26:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:27:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:27:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:27:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:27:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:27:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:27:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:28:02 (#:amount 99987720 #:time 261))
(heartbeat 2015-06-20T18:28:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:28:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:28:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:28:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:28:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:28:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:29:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:29:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:29:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:29:28 (#:amount 101902448 #:time 264))
(heartbeat 2015-06-20T18:29:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:29:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:29:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:30:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:30:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:30:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:30:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:30:42 (#:amount 100349472 #:time 263))
(heartbeat 2015-06-20T18:30:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:30:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:31:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:31:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:31:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:31:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:31:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:31:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:32:04 (#:amount 101694768 #:time 311))
(heartbeat 2015-06-20T18:32:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:32:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:32:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:32:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:32:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:32:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:33:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:33:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:33:23 (#:amount 99745112 #:time 264))
(heartbeat 2015-06-20T18:33:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:33:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:33:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:33:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:34:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:34:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:34:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:34:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:34:42 (#:amount 102347960 #:time 264))
(heartbeat 2015-06-20T18:34:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:34:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:35:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:35:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:35:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:35:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:35:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:35:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:36:03 (#:amount 100447472 #:time 310))
(heartbeat 2015-06-20T18:36:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:36:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:36:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:36:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:36:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:36:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:37:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:37:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:37:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:37:28 (#:amount 101250112 #:time 314))
(heartbeat 2015-06-20T18:37:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:37:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:37:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:38:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:38:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:38:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:38:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:38:44 (#:amount 99969384 #:time 263))
(heartbeat 2015-06-20T18:38:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:38:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:39:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:39:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:39:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:39:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:39:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:39:51 (#:amount 101948448 #:time 261))
(heartbeat 2015-06-20T18:39:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:40:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:40:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:40:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:40:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:40:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:40:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:41:00 (#:amount 99447160 #:time 264))
(heartbeat 2015-06-20T18:41:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:41:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:41:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:41:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:41:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:41:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:42:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:42:12 (#:amount 103079608 #:time 264))
(heartbeat 2015-06-20T18:42:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:42:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:42:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:42:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:42:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:43:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:43:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:43:24 (#:amount 100066616 #:time 263))
(heartbeat 2015-06-20T18:43:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:43:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:43:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:43:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:44:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:44:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:44:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:44:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:44:38 (#:amount 101935736 #:time 264))
(heartbeat 2015-06-20T18:44:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:44:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:45:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:45:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:45:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:45:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:45:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:45:50 (#:amount 99917296 #:time 263))
(heartbeat 2015-06-20T18:45:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:46:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:46:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:46:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:46:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:46:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:46:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:47:03 (#:amount 101809280 #:time 265))
(heartbeat 2015-06-20T18:47:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:47:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:47:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:47:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:47:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:47:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:48:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:48:13 (#:amount 100506688 #:time 262))
(heartbeat 2015-06-20T18:48:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:48:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:48:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:48:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:48:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:49:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:49:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:49:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:49:28 (#:amount 101111336 #:time 260))
(heartbeat 2015-06-20T18:49:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:49:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:49:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:50:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:50:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:50:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:50:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:50:43 (#:amount 100383528 #:time 263))
(heartbeat 2015-06-20T18:50:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:50:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:51:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:51:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:51:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:51:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:51:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:51:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:51:57 (#:amount 101207888 #:time 261))
(heartbeat 2015-06-20T18:52:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:52:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:52:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:52:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:52:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:52:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:53:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:53:09 (#:amount 100190584 #:time 261))
(heartbeat 2015-06-20T18:53:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:53:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:53:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:53:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:53:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:54:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:54:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:54:24 (#:amount 101799688 #:time 312))
(heartbeat 2015-06-20T18:54:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:54:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:54:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:54:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:55:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:55:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:55:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:55:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:55:37 (#:amount 99664928 #:time 293))
(heartbeat 2015-06-20T18:55:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:55:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:56:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:56:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:56:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:56:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:56:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:56:47 (#:amount 102687568 #:time 263))
(heartbeat 2015-06-20T18:56:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:57:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:57:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:57:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:57:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:57:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:57:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:57:57 (#:amount 100437064 #:time 262))
(heartbeat 2015-06-20T18:58:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:58:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:58:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:58:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:58:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:58:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:59:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T18:59:06 (#:amount 101431656 #:time 259))
(heartbeat 2015-06-20T18:59:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:59:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:59:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:59:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T18:59:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:00:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:00:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:00:17 (#:amount 99927912 #:time 261))
(heartbeat 2015-06-20T19:00:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:00:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:00:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:00:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:01:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:01:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:01:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:01:28 (#:amount 102060216 #:time 261))
(heartbeat 2015-06-20T19:01:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:01:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:01:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:02:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:02:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:02:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:02:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:02:37 (#:amount 99569880 #:time 260))
(heartbeat 2015-06-20T19:02:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:02:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:03:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:03:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:03:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:03:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:03:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:03:47 (#:amount 102751936 #:time 262))
(heartbeat 2015-06-20T19:03:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:04:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:04:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:04:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:04:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:04:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:04:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:04:59 (#:amount 100271688 #:time 263))
(heartbeat 2015-06-20T19:05:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:05:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:05:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:05:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:05:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:05:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:06:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:06:10 (#:amount 101321344 #:time 262))
(heartbeat 2015-06-20T19:06:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:06:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:06:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:06:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:06:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:07:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:07:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:07:18 (#:amount 99954368 #:time 262))
(heartbeat 2015-06-20T19:07:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:07:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:07:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:07:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:08:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:08:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:08:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:08:28 (#:amount 101962312 #:time 261))
(heartbeat 2015-06-20T19:08:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:08:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:08:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:09:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:09:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:09:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:09:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:09:37 (#:amount 99513128 #:time 310))
(heartbeat 2015-06-20T19:09:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:09:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:10:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:10:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:10:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:10:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:10:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:10:48 (#:amount 102897168 #:time 265))
(heartbeat 2015-06-20T19:10:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:11:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:11:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:11:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:11:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:11:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:11:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:11:58 (#:amount 100282592 #:time 260))
(heartbeat 2015-06-20T19:12:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:12:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:12:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:12:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:12:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:12:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:13:05 (#:amount 101367736 #:time 262))
(heartbeat 2015-06-20T19:13:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:13:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:13:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:13:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:13:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:13:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:14:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:14:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:14:16 (#:amount 100014832 #:time 264))
(heartbeat 2015-06-20T19:14:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:14:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:14:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:14:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:15:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:15:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:15:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:15:29 (#:amount 102116856 #:time 263))
(heartbeat 2015-06-20T19:15:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:15:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:15:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:16:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:16:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:16:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:16:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:16:38 (#:amount 99764392 #:time 308))
(heartbeat 2015-06-20T19:16:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:16:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:17:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:17:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:17:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:17:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:17:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:17:50 (#:amount 102584576 #:time 310))
(heartbeat 2015-06-20T19:17:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:18:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:18:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:18:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:18:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:18:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:18:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:18:59 (#:amount 99942184 #:time 260))
(heartbeat 2015-06-20T19:19:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:19:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:19:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:19:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:19:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:19:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:20:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:20:09 (#:amount 102142024 #:time 259))
(heartbeat 2015-06-20T19:20:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:20:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:20:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:20:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:20:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:21:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:21:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:21:18 (#:amount 99594864 #:time 285))
(heartbeat 2015-06-20T19:21:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:21:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:21:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:21:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:22:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:22:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:22:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:22:31 (#:amount 102732136 #:time 317))
(heartbeat 2015-06-20T19:22:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:22:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:22:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:23:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:23:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:23:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:23:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:23:38 (#:amount 99649320 #:time 261))
(heartbeat 2015-06-20T19:23:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:23:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:24:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:24:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:24:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:24:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:24:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:24:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:25:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:25:14 (#:amount 102705696 #:time 317))
(heartbeat 2015-06-20T19:25:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:25:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:25:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:25:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:25:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:26:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:26:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:26:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:26:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:26:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:26:50 (#:amount 100456800 #:time 310))
(heartbeat 2015-06-20T19:26:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:27:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:27:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:27:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:27:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:27:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:27:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:28:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:28:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:28:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:28:26 (#:amount 101102720 #:time 311))
(heartbeat 2015-06-20T19:28:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:28:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:28:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:29:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:29:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:29:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:29:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:29:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:29:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:30:03 (#:amount 100302160 #:time 311))
(heartbeat 2015-06-20T19:30:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:30:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:30:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:30:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:30:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:30:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:31:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:31:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:31:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:31:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:31:40 (#:amount 101422472 #:time 311))
(heartbeat 2015-06-20T19:31:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:31:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:32:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:32:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:32:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:32:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:32:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:32:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:33:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:33:07 (#:amount 99778240 #:time 312))
(heartbeat 2015-06-20T19:33:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:33:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:33:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:33:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:33:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:34:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:34:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:34:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:34:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:34:45 (#:amount 102647096 #:time 315))
(heartbeat 2015-06-20T19:34:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:34:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:35:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:35:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:35:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:35:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:35:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:35:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:35:57 (#:amount 100286520 #:time 263))
(heartbeat 2015-06-20T19:36:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:36:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:36:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:36:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:36:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:36:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:37:04 (#:amount 101548048 #:time 258))
(heartbeat 2015-06-20T19:37:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:37:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:37:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:37:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:37:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:37:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:38:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:38:11 (#:amount 99697800 #:time 259))
(heartbeat 2015-06-20T19:38:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:38:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:38:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:38:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:38:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:39:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:39:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:39:19 (#:amount 102574208 #:time 264))
(heartbeat 2015-06-20T19:39:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:39:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:39:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:39:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:40:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:40:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:40:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:40:27 (#:amount 100403992 #:time 261))
(heartbeat 2015-06-20T19:40:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:40:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:40:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:41:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:41:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:41:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:41:36 (#:amount 101170608 #:time 260))
(heartbeat 2015-06-20T19:41:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:41:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:41:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:42:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:42:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:42:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:42:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:42:45 (#:amount 100178592 #:time 258))
(heartbeat 2015-06-20T19:42:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:42:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:43:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:43:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:43:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:43:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:43:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:43:57 (#:amount 102074744 #:time 261))
(heartbeat 2015-06-20T19:43:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:44:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:44:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:44:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:44:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:44:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:44:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:45:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:45:08 (#:amount 100153608 #:time 313))
(heartbeat 2015-06-20T19:45:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:45:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:45:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:45:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:45:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:46:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:46:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:46:20 (#:amount 101566224 #:time 261))
(heartbeat 2015-06-20T19:46:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:46:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:46:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:46:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:47:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:47:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:47:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:47:31 (#:amount 100178176 #:time 261))
(heartbeat 2015-06-20T19:47:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:47:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:47:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:48:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:48:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:48:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:48:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:48:46 (#:amount 102016360 #:time 263))
(heartbeat 2015-06-20T19:48:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:48:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:49:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:49:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:49:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:49:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:49:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:49:57 (#:amount 100088968 #:time 262))
(heartbeat 2015-06-20T19:49:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:50:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:50:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:50:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:50:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:50:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:50:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:51:07 (#:amount 102049648 #:time 259))
(heartbeat 2015-06-20T19:51:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:51:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:51:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:51:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:51:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:51:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:52:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:52:14 (#:amount 99665920 #:time 263))
(heartbeat 2015-06-20T19:52:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:52:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:52:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:52:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:52:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:53:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:53:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:53:23 (#:amount 102763200 #:time 260))
(heartbeat 2015-06-20T19:53:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:53:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:53:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:53:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:54:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:54:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:54:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:54:32 (#:amount 99911896 #:time 266))
(heartbeat 2015-06-20T19:54:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:54:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:54:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:55:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:55:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:55:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:55:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:55:45 (#:amount 102004200 #:time 312))
(heartbeat 2015-06-20T19:55:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:55:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:56:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:56:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:56:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:56:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:56:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:56:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:56:58 (#:amount 100381240 #:time 261))
(heartbeat 2015-06-20T19:57:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:57:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:57:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:57:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:57:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:57:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:58:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:58:12 (#:amount 101212264 #:time 261))
(heartbeat 2015-06-20T19:58:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:58:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:58:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:58:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:58:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:59:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:59:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T19:59:23 (#:amount 100062760 #:time 260))
(heartbeat 2015-06-20T19:59:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:59:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:59:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T19:59:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:00:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:00:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:00:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:00:35 (#:amount 102044496 #:time 262))
(heartbeat 2015-06-20T20:00:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:00:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:00:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:01:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:01:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:01:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:01:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:01:46 (#:amount 100222760 #:time 262))
(heartbeat 2015-06-20T20:01:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:01:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:02:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:02:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:02:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:02:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:02:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:02:56 (#:amount 101366168 #:time 262))
(heartbeat 2015-06-20T20:02:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:03:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:03:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:03:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:03:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:03:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:03:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:04:04 (#:amount 99942656 #:time 285))
(heartbeat 2015-06-20T20:04:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:04:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:04:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:04:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:04:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:04:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:05:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:05:14 (#:amount 102368264 #:time 258))
(heartbeat 2015-06-20T20:05:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:05:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:05:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:05:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:05:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:06:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:06:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:06:22 (#:amount 99899576 #:time 262))
(heartbeat 2015-06-20T20:06:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:06:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:06:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:06:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:07:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:07:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:07:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:07:32 (#:amount 102217720 #:time 263))
(heartbeat 2015-06-20T20:07:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:07:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:07:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:08:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:08:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:08:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:08:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:08:42 (#:amount 99781448 #:time 260))
(heartbeat 2015-06-20T20:08:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:08:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:09:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:09:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:09:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:09:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:09:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:09:53 (#:amount 102217464 #:time 259))
(heartbeat 2015-06-20T20:09:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:10:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:10:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:10:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:10:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:10:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:10:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:11:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:11:14 (#:amount 100284432 #:time 312))
(heartbeat 2015-06-20T20:11:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:11:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:11:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:11:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:11:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:12:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:12:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:12:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:12:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:12:48 (#:amount 101328728 #:time 314))
(heartbeat 2015-06-20T20:12:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:12:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:13:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:13:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:13:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:13:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:13:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:13:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:14:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:14:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:14:24 (#:amount 100013568 #:time 313))
(heartbeat 2015-06-20T20:14:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:14:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:14:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:14:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:15:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:15:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:15:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:15:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:15:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:15:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:16:01 (#:amount 101936992 #:time 312))
(heartbeat 2015-06-20T20:16:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:16:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:16:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:16:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:16:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:16:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:17:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:17:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:17:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:17:37 (#:amount 99976648 #:time 315))
(heartbeat 2015-06-20T20:17:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:17:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:17:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:18:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:18:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:18:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:18:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:18:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:18:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:19:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:19:15 (#:amount 102171720 #:time 311))
(heartbeat 2015-06-20T20:19:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:19:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:19:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:19:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:19:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:20:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:20:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:20:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:20:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:20:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:20:52 (#:amount 100324688 #:time 313))
(heartbeat 2015-06-20T20:20:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:21:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:21:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:21:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:21:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:21:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:21:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:22:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:22:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:22:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:22:30 (#:amount 101375984 #:time 315))
(heartbeat 2015-06-20T20:22:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:22:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:22:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:23:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:23:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:23:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:23:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:23:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:23:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:23:59 (#:amount 100204976 #:time 310))
(heartbeat 2015-06-20T20:24:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:24:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:24:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:24:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:24:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:24:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:25:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:25:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:25:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:25:36 (#:amount 101559848 #:time 312))
(heartbeat 2015-06-20T20:25:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:25:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:25:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:26:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:26:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:26:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:26:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:26:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:26:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:27:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:27:09 (#:amount 99999448 #:time 311))
(heartbeat 2015-06-20T20:27:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:27:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:27:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:27:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:27:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:28:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:28:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:28:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:28:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:28:46 (#:amount 102046040 #:time 312))
(heartbeat 2015-06-20T20:28:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:28:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:29:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:29:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:29:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:29:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:29:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:29:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:30:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:30:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:30:22 (#:amount 99843848 #:time 312))
(heartbeat 2015-06-20T20:30:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:30:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:30:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:30:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:31:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:31:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:31:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:31:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:31:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:31:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:31:59 (#:amount 102375344 #:time 313))
(heartbeat 2015-06-20T20:32:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:32:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:32:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:32:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:32:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:32:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:33:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:33:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:33:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:33:31 (#:amount 99919560 #:time 310))
(heartbeat 2015-06-20T20:33:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:33:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:33:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:34:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:34:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:34:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:34:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:34:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:34:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:35:07 (#:amount 101947416 #:time 313))
(heartbeat 2015-06-20T20:35:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:35:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:35:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:35:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:35:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:35:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:36:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:36:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:36:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:36:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:36:42 (#:amount 100317736 #:time 314))
(heartbeat 2015-06-20T20:36:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:36:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:37:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:37:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:37:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:37:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:37:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:37:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:38:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:38:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:38:19 (#:amount 101410664 #:time 313))
(heartbeat 2015-06-20T20:38:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:38:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:38:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:38:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:39:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:39:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:39:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:39:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:39:47 (#:amount 99645424 #:time 314))
(heartbeat 2015-06-20T20:39:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:39:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:40:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:40:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:40:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:40:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:40:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:40:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:41:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:41:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:41:20 (#:amount 102593336 #:time 262))
(heartbeat 2015-06-20T20:41:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:41:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:41:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:41:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:42:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:42:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:42:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:42:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:42:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:42:54 (#:amount 99750936 #:time 312))
(heartbeat 2015-06-20T20:42:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:43:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:43:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:43:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:43:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:43:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:43:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:44:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:44:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:44:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:44:31 (#:amount 102245368 #:time 314))
(heartbeat 2015-06-20T20:44:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:44:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:44:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:45:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:45:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:45:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:45:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:45:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:45:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:46:03 (#:amount 100374960 #:time 313))
(heartbeat 2015-06-20T20:46:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:46:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:46:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:46:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:46:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:46:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:47:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:47:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:47:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:47:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:47:40 (#:amount 101398688 #:time 310))
(heartbeat 2015-06-20T20:47:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:47:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:48:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:48:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:48:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:48:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:48:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:48:56 (#:amount 99823912 #:time 260))
(heartbeat 2015-06-20T20:48:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:49:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:49:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:49:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:49:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:49:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:49:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:50:05 (#:amount 102697160 #:time 260))
(heartbeat 2015-06-20T20:50:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:50:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:50:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:50:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:50:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:50:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:51:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:51:14 (#:amount 99875032 #:time 262))
(heartbeat 2015-06-20T20:51:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:51:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:51:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:51:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:51:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:52:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:52:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:52:21 (#:amount 102415432 #:time 265))
(heartbeat 2015-06-20T20:52:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:52:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:52:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:52:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:53:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:53:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:53:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:53:30 (#:amount 99452368 #:time 262))
(heartbeat 2015-06-20T20:53:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:53:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:53:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:54:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:54:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:54:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:54:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:54:41 (#:amount 102902176 #:time 262))
(heartbeat 2015-06-20T20:54:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:54:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:55:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:55:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:55:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:55:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:55:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:55:51 (#:amount 99569048 #:time 264))
(heartbeat 2015-06-20T20:55:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:56:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:56:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:56:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:56:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:56:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:56:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:57:01 (#:amount 102737688 #:time 262))
(heartbeat 2015-06-20T20:57:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:57:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:57:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:57:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:57:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:57:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:58:09 (#:amount 99828392 #:time 261))
(heartbeat 2015-06-20T20:58:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:58:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:58:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:58:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:58:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:58:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:59:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:59:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T20:59:20 (#:amount 102655832 #:time 263))
(heartbeat 2015-06-20T20:59:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:59:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:59:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T20:59:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:00:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:00:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:00:28 (#:amount 100048232 #:time 261))
(heartbeat 2015-06-20T21:00:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:00:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:00:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:00:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:01:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:01:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:01:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:01:39 (#:amount 102088640 #:time 259))
(heartbeat 2015-06-20T21:01:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:01:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:01:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:02:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:02:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:02:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:02:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:02:49 (#:amount 100283592 #:time 259))
(heartbeat 2015-06-20T21:02:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:02:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:03:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:03:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:03:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:03:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:03:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:03:58 (#:amount 101434784 #:time 258))
(heartbeat 2015-06-20T21:03:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:04:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:04:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:04:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:04:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:04:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:04:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:05:08 (#:amount 100063872 #:time 261))
(heartbeat 2015-06-20T21:05:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:05:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:05:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:05:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:05:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:05:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:06:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:06:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:06:20 (#:amount 101851024 #:time 262))
(heartbeat 2015-06-20T21:06:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:06:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:06:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:07:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:07:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:07:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:07:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:07:30 (#:amount 99889000 #:time 258))
(heartbeat 2015-06-20T21:07:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:07:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:08:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:08:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:08:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:08:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:08:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:08:44 (#:amount 102422672 #:time 262))
(heartbeat 2015-06-20T21:08:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:09:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:09:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:09:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:09:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:09:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:09:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:09:58 (#:amount 99685424 #:time 309))
(heartbeat 2015-06-20T21:10:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:10:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:10:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:10:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:10:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:10:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:11:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:11:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:11:14 (#:amount 102377432 #:time 264))
(heartbeat 2015-06-20T21:11:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:11:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:11:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:11:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:12:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:12:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:12:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:12:27 (#:amount 100078928 #:time 258))
(heartbeat 2015-06-20T21:12:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:12:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:12:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:13:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:13:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:13:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:13:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:13:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:13:42 (#:amount 102138064 #:time 258))
(heartbeat 2015-06-20T21:13:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:14:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:14:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:14:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:14:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:14:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:14:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:14:57 (#:amount 100161720 #:time 260))
(heartbeat 2015-06-20T21:15:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:15:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:15:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:15:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:15:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:15:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:16:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:16:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:16:11 (#:amount 101562240 #:time 261))
(heartbeat 2015-06-20T21:16:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:16:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:16:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:16:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:17:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:17:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:17:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:17:24 (#:amount 100364400 #:time 312))
(heartbeat 2015-06-20T21:17:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:17:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:17:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:18:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:18:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:18:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:18:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:18:39 (#:amount 101275344 #:time 262))
(heartbeat 2015-06-20T21:18:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:18:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:19:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:19:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:19:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:19:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:19:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:19:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:19:52 (#:amount 100343200 #:time 264))
(heartbeat 2015-06-20T21:20:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:20:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:20:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:20:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:20:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:20:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:21:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:21:09 (#:amount 101117104 #:time 261))
(heartbeat 2015-06-20T21:21:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:21:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:21:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:21:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:21:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:22:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:22:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:22:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:22:22 (#:amount 100080088 #:time 260))
(heartbeat 2015-06-20T21:22:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:22:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:22:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:23:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:23:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:23:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:23:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:23:36 (#:amount 101895552 #:time 261))
(heartbeat 2015-06-20T21:23:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:23:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:24:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:24:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:24:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:24:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:24:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:24:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:24:52 (#:amount 99468104 #:time 260))
(heartbeat 2015-06-20T21:25:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:25:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:25:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:25:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:25:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:25:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:26:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:26:08 (#:amount 102737880 #:time 265))
(heartbeat 2015-06-20T21:26:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:26:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:26:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:26:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:26:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:27:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:27:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:27:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:27:22 (#:amount 100171888 #:time 278))
(heartbeat 2015-06-20T21:27:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:27:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:27:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:28:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:28:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:28:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:28:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:28:37 (#:amount 101732776 #:time 269))
(heartbeat 2015-06-20T21:28:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:28:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:29:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:29:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:29:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:29:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:29:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:29:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:29:53 (#:amount 100481656 #:time 281))
(heartbeat 2015-06-20T21:30:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:30:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:30:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:30:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:30:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:30:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:31:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:31:09 (#:amount 101187384 #:time 283))
(heartbeat 2015-06-20T21:31:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:31:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:31:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:31:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:31:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:32:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:32:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:32:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:32:23 (#:amount 99896560 #:time 274))
(heartbeat 2015-06-20T21:32:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:32:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:32:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:33:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:33:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:33:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:33:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:33:38 (#:amount 102158336 #:time 262))
(heartbeat 2015-06-20T21:33:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:33:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:34:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:34:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:34:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:34:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:34:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:34:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:34:51 (#:amount 99656208 #:time 259))
(heartbeat 2015-06-20T21:35:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:35:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:35:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:35:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:35:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:35:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:36:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:36:04 (#:amount 102708784 #:time 263))
(heartbeat 2015-06-20T21:36:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:36:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:36:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:36:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:36:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:37:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:37:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:37:15 (#:amount 99660160 #:time 276))
(heartbeat 2015-06-20T21:37:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:37:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:37:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:37:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:38:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:38:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:38:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:38:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:38:33 (#:amount 102638504 #:time 278))
(heartbeat 2015-06-20T21:38:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:38:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:39:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:39:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:39:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:39:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:39:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:39:44 (#:amount 99761536 #:time 262))
(heartbeat 2015-06-20T21:39:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:40:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:40:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:40:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:40:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:40:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:40:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:40:59 (#:amount 102677864 #:time 311))
(heartbeat 2015-06-20T21:41:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:41:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:41:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:41:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:41:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:41:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:42:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:42:11 (#:amount 99503928 #:time 261))
(heartbeat 2015-06-20T21:42:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:42:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:42:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:42:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:42:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:43:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:43:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:43:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:43:25 (#:amount 102770648 #:time 269))
(heartbeat 2015-06-20T21:43:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:43:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:43:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:44:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:44:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:44:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:44:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:44:38 (#:amount 99954848 #:time 267))
(heartbeat 2015-06-20T21:44:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:44:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:45:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:45:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:45:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:45:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:45:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:45:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:45:54 (#:amount 102024544 #:time 293))
(heartbeat 2015-06-20T21:46:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:46:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:46:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:46:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:46:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:46:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:47:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:47:09 (#:amount 100304896 #:time 261))
(heartbeat 2015-06-20T21:47:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:47:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:47:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:47:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:47:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:48:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:48:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:48:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:48:24 (#:amount 101639136 #:time 261))
(heartbeat 2015-06-20T21:48:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:48:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:48:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:49:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:49:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:49:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:49:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:49:38 (#:amount 100027432 #:time 263))
(heartbeat 2015-06-20T21:49:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:49:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:50:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:50:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:50:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:50:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:50:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:50:50 (#:amount 101844664 #:time 259))
(heartbeat 2015-06-20T21:50:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:51:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:51:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:51:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:51:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:51:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:51:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:52:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:52:07 (#:amount 99893304 #:time 287))
(heartbeat 2015-06-20T21:52:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:52:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:52:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:52:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:52:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:53:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:53:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:53:21 (#:amount 102351136 #:time 261))
(heartbeat 2015-06-20T21:53:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:53:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:53:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:53:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:54:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:54:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:54:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:54:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:54:35 (#:amount 100009752 #:time 316))
(heartbeat 2015-06-20T21:54:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:54:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:55:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:55:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:55:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:55:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:55:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:55:51 (#:amount 101952872 #:time 311))
(heartbeat 2015-06-20T21:55:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:56:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:56:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:56:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:56:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:56:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:56:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:57:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:57:05 (#:amount 100006032 #:time 256))
(heartbeat 2015-06-20T21:57:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:57:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:57:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:57:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:57:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:58:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:58:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:58:17 (#:amount 101796000 #:time 305))
(heartbeat 2015-06-20T21:58:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:58:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:58:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:58:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:59:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:59:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:59:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:59:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T21:59:34 (#:amount 99648512 #:time 283))
(heartbeat 2015-06-20T21:59:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T21:59:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:00:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:00:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:00:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:00:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:00:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:00:51 (#:amount 102564048 #:time 287))
(heartbeat 2015-06-20T22:00:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:01:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:01:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:01:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:01:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:01:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:01:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:02:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:02:06 (#:amount 100225128 #:time 309))
(heartbeat 2015-06-20T22:02:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:02:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:02:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:02:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:02:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:03:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:03:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:03:20 (#:amount 101521480 #:time 262))
(heartbeat 2015-06-20T22:03:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:03:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:03:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:03:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:04:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:04:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:04:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:04:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:04:35 (#:amount 99878696 #:time 284))
(heartbeat 2015-06-20T22:04:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:04:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:05:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:05:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:05:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:05:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:05:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:05:52 (#:amount 102304152 #:time 260))
(heartbeat 2015-06-20T22:05:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:06:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:06:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:06:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:06:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:06:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:06:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:07:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:07:05 (#:amount 100215208 #:time 260))
(heartbeat 2015-06-20T22:07:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:07:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:07:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:07:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:07:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:08:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:08:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:08:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:08:23 (#:amount 101765936 #:time 261))
(heartbeat 2015-06-20T22:08:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:08:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:08:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:09:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:09:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:09:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:09:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:09:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:09:43 (#:amount 99798984 #:time 260))
(heartbeat 2015-06-20T22:09:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:10:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:10:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:10:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:10:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:10:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:10:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:11:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:11:05 (#:amount 102189960 #:time 310))
(heartbeat 2015-06-20T22:11:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:11:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:11:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:11:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:11:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:12:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:12:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:12:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:12:23 (#:amount 99711720 #:time 312))
(heartbeat 2015-06-20T22:12:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:12:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:12:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:13:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:13:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:13:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:13:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:13:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:13:46 (#:amount 102322032 #:time 262))
(heartbeat 2015-06-20T22:13:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:14:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:14:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:14:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:14:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:14:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:14:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:15:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:15:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:15:13 (#:amount 100029216 #:time 310))
(heartbeat 2015-06-20T22:15:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:15:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:15:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:15:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:16:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:16:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:16:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:16:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:16:39 (#:amount 102144736 #:time 263))
(heartbeat 2015-06-20T22:16:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:16:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:17:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:17:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:17:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:17:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:17:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:17:51 (#:amount 100300432 #:time 260))
(heartbeat 2015-06-20T22:17:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:18:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:18:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:18:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:18:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:18:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:18:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:19:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:19:03 (#:amount 101389888 #:time 262))
(heartbeat 2015-06-20T22:19:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:19:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:19:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:19:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:19:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:20:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:20:12 (#:amount 100238536 #:time 262))
(heartbeat 2015-06-20T22:20:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:20:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:20:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:20:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:20:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:21:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:21:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:21:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:21:24 (#:amount 101527144 #:time 264))
(heartbeat 2015-06-20T22:21:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:21:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:21:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:22:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:22:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:22:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:22:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:22:37 (#:amount 99828544 #:time 263))
(heartbeat 2015-06-20T22:22:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:22:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:23:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:23:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:23:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:23:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:23:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:23:48 (#:amount 102230160 #:time 263))
(heartbeat 2015-06-20T22:23:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:24:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:24:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:24:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:24:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:24:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:24:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:24:58 (#:amount 99671864 #:time 260))
(heartbeat 2015-06-20T22:25:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:25:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:25:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:25:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:25:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:25:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:26:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:26:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:26:14 (#:amount 102925712 #:time 315))
(heartbeat 2015-06-20T22:26:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:26:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:26:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:26:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:27:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:27:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:27:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:27:25 (#:amount 100278520 #:time 261))
(heartbeat 2015-06-20T22:27:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:27:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:27:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:28:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:28:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:28:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:28:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:28:37 (#:amount 101463824 #:time 262))
(heartbeat 2015-06-20T22:28:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:28:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:29:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:29:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:29:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:29:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:29:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:29:51 (#:amount 100223144 #:time 258))
(heartbeat 2015-06-20T22:29:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:30:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:30:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:30:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:30:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:30:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:30:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:31:02 (#:amount 101366440 #:time 262))
(heartbeat 2015-06-20T22:31:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:31:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:31:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:31:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:31:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:31:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:32:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:32:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:32:15 (#:amount 100012368 #:time 262))
(heartbeat 2015-06-20T22:32:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:32:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:32:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:32:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:33:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:33:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:33:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:33:28 (#:amount 102280968 #:time 263))
(heartbeat 2015-06-20T22:33:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:33:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:33:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:34:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:34:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:34:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:34:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:34:40 (#:amount 99688056 #:time 260))
(heartbeat 2015-06-20T22:34:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:34:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:35:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:35:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:35:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:35:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:35:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:35:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:35:54 (#:amount 102693680 #:time 261))
(heartbeat 2015-06-20T22:36:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:36:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:36:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:36:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:36:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:36:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:37:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:37:08 (#:amount 100369640 #:time 262))
(heartbeat 2015-06-20T22:37:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:37:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:37:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:37:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:37:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:38:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:38:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:38:22 (#:amount 101113968 #:time 260))
(heartbeat 2015-06-20T22:38:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:38:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:38:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:38:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:39:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:39:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:39:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:39:33 (#:amount 100232440 #:time 262))
(heartbeat 2015-06-20T22:39:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:39:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:39:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:40:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:40:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:40:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:40:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:40:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:40:47 (#:amount 101445360 #:time 307))
(heartbeat 2015-06-20T22:40:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:41:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:41:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:41:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:41:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:41:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:41:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:42:02 (#:amount 99997864 #:time 261))
(heartbeat 2015-06-20T22:42:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:42:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:42:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:42:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:42:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:42:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:43:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:43:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:43:14 (#:amount 102107912 #:time 313))
(heartbeat 2015-06-20T22:43:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:43:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:43:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:43:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:44:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:44:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:44:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:44:27 (#:amount 99569336 #:time 294))
(heartbeat 2015-06-20T22:44:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:44:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:44:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:45:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:45:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:45:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:45:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:45:39 (#:amount 102724848 #:time 264))
(heartbeat 2015-06-20T22:45:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:45:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:46:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:46:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:46:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:46:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:46:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:46:51 (#:amount 99493072 #:time 259))
(heartbeat 2015-06-20T22:46:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:47:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:47:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:47:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:47:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:47:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:47:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:48:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:48:05 (#:amount 102757024 #:time 260))
(heartbeat 2015-06-20T22:48:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:48:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:48:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:48:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:48:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:49:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:49:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:49:15 (#:amount 100260760 #:time 263))
(heartbeat 2015-06-20T22:49:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:49:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:49:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:49:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:50:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:50:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:50:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:50:26 (#:amount 101810112 #:time 259))
(heartbeat 2015-06-20T22:50:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:50:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:50:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:51:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:51:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:51:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:51:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:51:34 (#:amount 99710736 #:time 269))
(heartbeat 2015-06-20T22:51:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:51:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:52:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:52:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:52:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:52:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:52:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:52:45 (#:amount 102547408 #:time 266))
(heartbeat 2015-06-20T22:52:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:53:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:53:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:53:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:53:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:53:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:53:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:53:56 (#:amount 99646040 #:time 259))
(heartbeat 2015-06-20T22:54:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:54:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:54:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:54:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:54:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:54:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:55:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:55:06 (#:amount 102790736 #:time 258))
(heartbeat 2015-06-20T22:55:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:55:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:55:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:55:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:55:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:56:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:56:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:56:14 (#:amount 100005696 #:time 261))
(heartbeat 2015-06-20T22:56:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:56:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:56:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:56:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:57:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:57:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:57:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:57:24 (#:amount 101894248 #:time 262))
(heartbeat 2015-06-20T22:57:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:57:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:57:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:58:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:58:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:58:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:58:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:58:34 (#:amount 100176760 #:time 263))
(heartbeat 2015-06-20T22:58:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:58:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:59:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:59:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:59:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:59:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T22:59:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T22:59:44 (#:amount 101523088 #:time 289))
(heartbeat 2015-06-20T22:59:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:00:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:00:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:00:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:00:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:00:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:00:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:00:55 (#:amount 100182536 #:time 262))
(heartbeat 2015-06-20T23:01:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:01:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:01:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:01:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:01:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:01:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:02:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:02:05 (#:amount 101616920 #:time 281))
(heartbeat 2015-06-20T23:02:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:02:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:02:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:02:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:02:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:03:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:03:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:03:18 (#:amount 99714008 #:time 260))
(heartbeat 2015-06-20T23:03:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:03:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:03:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:03:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:04:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:04:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:04:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:04:29 (#:amount 102472856 #:time 260))
(heartbeat 2015-06-20T23:04:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:04:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:04:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:05:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:05:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:05:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:05:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:05:36 (#:amount 100080440 #:time 258))
(heartbeat 2015-06-20T23:05:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:05:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:06:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:06:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:06:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:06:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:06:43 (#:amount 101758352 #:time 264))
(heartbeat 2015-06-20T23:06:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:06:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:07:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:07:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:07:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:07:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:07:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:07:53 (#:amount 100188528 #:time 259))
(heartbeat 2015-06-20T23:07:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:08:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:08:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:08:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:08:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:08:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:08:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:09:02 (#:amount 101553512 #:time 260))
(heartbeat 2015-06-20T23:09:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:09:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:09:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:09:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:09:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:09:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:10:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:10:10 (#:amount 100126768 #:time 263))
(heartbeat 2015-06-20T23:10:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:10:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:10:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:10:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:10:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:11:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:11:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:11:19 (#:amount 101660576 #:time 261))
(heartbeat 2015-06-20T23:11:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:11:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:11:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:11:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:12:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:12:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:12:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:12:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:12:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:12:49 (#:amount 99626096 #:time 311))
(heartbeat 2015-06-20T23:12:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:13:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:13:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:13:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:13:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:13:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:13:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:14:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:14:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:14:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:14:25 (#:amount 102572760 #:time 311))
(heartbeat 2015-06-20T23:14:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:14:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:14:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:15:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:15:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:15:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:15:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:15:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:15:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:15:58 (#:amount 99750304 #:time 309))
(heartbeat 2015-06-20T23:16:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:16:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:16:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:16:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:16:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:16:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:17:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:17:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:17:21 (#:amount 102384192 #:time 258))
(heartbeat 2015-06-20T23:17:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:17:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:17:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:17:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:18:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:18:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:18:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:18:33 (#:amount 99833704 #:time 261))
(heartbeat 2015-06-20T23:18:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:18:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:18:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:19:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:19:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:19:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:19:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:19:44 (#:amount 102429968 #:time 262))
(heartbeat 2015-06-20T23:19:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:19:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:20:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:20:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:20:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:20:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:20:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:20:53 (#:amount 99749032 #:time 262))
(heartbeat 2015-06-20T23:20:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:21:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:21:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:21:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:21:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:21:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:21:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:22:03 (#:amount 102585016 #:time 260))
(heartbeat 2015-06-20T23:22:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:22:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:22:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:22:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:22:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:22:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:23:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:23:12 (#:amount 99963208 #:time 260))
(heartbeat 2015-06-20T23:23:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:23:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:23:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:23:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:23:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:24:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:24:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:24:21 (#:amount 102099600 #:time 266))
(heartbeat 2015-06-20T23:24:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:24:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:24:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:24:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:25:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:25:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:25:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:25:30 (#:amount 99866016 #:time 260))
(heartbeat 2015-06-20T23:25:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:25:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:25:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:26:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:26:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:26:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:26:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:26:43 (#:amount 102306048 #:time 311))
(heartbeat 2015-06-20T23:26:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:26:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:27:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:27:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:27:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:27:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:27:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:27:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:28:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:28:12 (#:amount 100328728 #:time 261))
(heartbeat 2015-06-20T23:28:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:28:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:28:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:28:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:28:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:29:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:29:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:29:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:29:30 (#:amount 101482632 #:time 262))
(heartbeat 2015-06-20T23:29:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:29:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:29:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:30:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:30:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:30:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:30:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:30:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:30:48 (#:amount 99809240 #:time 311))
(heartbeat 2015-06-20T23:30:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:31:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:31:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:31:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:31:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:31:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:31:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:32:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:32:07 (#:amount 102347520 #:time 263))
(heartbeat 2015-06-20T23:32:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:32:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:32:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:32:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:32:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:33:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:33:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:33:23 (#:amount 100430080 #:time 308))
(heartbeat 2015-06-20T23:33:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:33:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:33:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:33:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:34:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:34:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:34:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:34:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:34:43 (#:amount 101354352 #:time 304))
(heartbeat 2015-06-20T23:34:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:34:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:35:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:35:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:35:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:35:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:35:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:35:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:36:03 (#:amount 99904768 #:time 276))
(heartbeat 2015-06-20T23:36:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:36:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:36:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:36:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:36:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:36:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:37:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:37:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:37:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:37:25 (#:amount 102377720 #:time 311))
(heartbeat 2015-06-20T23:37:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:37:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:37:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:38:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:38:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:38:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:38:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:38:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:38:47 (#:amount 99756080 #:time 262))
(heartbeat 2015-06-20T23:38:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:39:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:39:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:39:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:39:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:39:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:39:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:40:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:40:07 (#:amount 102510832 #:time 261))
(heartbeat 2015-06-20T23:40:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:40:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:40:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:40:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:40:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:41:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:41:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:41:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:41:28 (#:amount 99779184 #:time 263))
(heartbeat 2015-06-20T23:41:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:41:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:41:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:42:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:42:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:42:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:42:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:42:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:42:51 (#:amount 102152984 #:time 295))
(heartbeat 2015-06-20T23:42:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:43:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:43:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:43:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:43:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:43:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:43:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:44:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:44:11 (#:amount 99682832 #:time 261))
(heartbeat 2015-06-20T23:44:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:44:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:44:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:44:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:44:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:45:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:45:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:45:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:45:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:45:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:45:48 (#:amount 102772032 #:time 317))
(heartbeat 2015-06-20T23:45:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:46:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:46:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:46:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:46:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:46:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:46:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:47:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:47:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:47:20 (#:amount 100224904 #:time 310))
(heartbeat 2015-06-20T23:47:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:47:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:47:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:47:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:48:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:48:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:48:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:48:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:48:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:48:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:48:57 (#:amount 101885872 #:time 314))
(heartbeat 2015-06-20T23:49:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:49:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:49:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:49:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:49:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:49:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:50:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:50:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:50:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:50:28 (#:amount 100428536 #:time 313))
(heartbeat 2015-06-20T23:50:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:50:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:50:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:51:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:51:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:51:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:51:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:51:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:51:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:52:04 (#:amount 101543704 #:time 312))
(heartbeat 2015-06-20T23:52:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:52:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:52:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:52:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:52:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:52:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:53:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:53:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:53:24 (#:amount 100115696 #:time 310))
(heartbeat 2015-06-20T23:53:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:53:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:53:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:53:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:54:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:54:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:54:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:54:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:54:40 (#:amount 101726632 #:time 304))
(heartbeat 2015-06-20T23:54:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:54:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:55:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:55:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:55:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:55:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:55:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:55:54 (#:amount 100141568 #:time 283))
(heartbeat 2015-06-20T23:55:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:56:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:56:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:56:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:56:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:56:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:56:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:57:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:57:10 (#:amount 101640688 #:time 258))
(heartbeat 2015-06-20T23:57:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:57:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:57:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:57:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:57:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:58:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:58:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:58:23 (#:amount 99905104 #:time 279))
(heartbeat 2015-06-20T23:58:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:58:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:58:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:58:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:59:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:59:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:59:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:59:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-20T23:59:39 (#:amount 102178480 #:time 314))
(heartbeat 2015-06-20T23:59:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-20T23:59:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:00:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:00:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:00:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:00:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:00:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:00:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:00:56 (#:amount 99792272 #:time 311))
(heartbeat 2015-06-21T00:01:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:01:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:01:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:01:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:01:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:01:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:02:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:02:13 (#:amount 102462568 #:time 261))
(heartbeat 2015-06-21T00:02:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:02:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:02:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:02:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:02:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:03:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:03:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:03:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:03:29 (#:amount 100038536 #:time 274))
(heartbeat 2015-06-21T00:03:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:03:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:03:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:04:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:04:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:04:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:04:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:04:46 (#:amount 101937608 #:time 263))
(heartbeat 2015-06-21T00:04:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:04:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:05:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:05:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:05:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:05:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:05:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:05:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:06:04 (#:amount 99919176 #:time 258))
(heartbeat 2015-06-21T00:06:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:06:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:06:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:06:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:06:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:06:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:07:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:07:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:07:17 (#:amount 102197128 #:time 312))
(heartbeat 2015-06-21T00:07:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:07:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:07:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:07:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:08:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:08:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:08:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:08:32 (#:amount 99698800 #:time 264))
(heartbeat 2015-06-21T00:08:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:08:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:08:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:09:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:09:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:09:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:09:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:09:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:09:47 (#:amount 102591072 #:time 302))
(heartbeat 2015-06-21T00:09:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:10:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:10:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:10:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:10:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:10:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:10:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:10:59 (#:amount 100057776 #:time 261))
(heartbeat 2015-06-21T00:11:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:11:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:11:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:11:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:11:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:11:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:12:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:12:12 (#:amount 101908248 #:time 261))
(heartbeat 2015-06-21T00:12:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:12:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:12:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:12:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:12:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:13:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:13:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:13:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:13:27 (#:amount 100025576 #:time 259))
(heartbeat 2015-06-21T00:13:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:13:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:13:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:14:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:14:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:14:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:14:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:14:40 (#:amount 102014864 #:time 275))
(heartbeat 2015-06-21T00:14:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:14:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:15:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:15:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:15:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:15:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:15:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:15:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:15:57 (#:amount 100212528 #:time 261))
(heartbeat 2015-06-21T00:16:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:16:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:16:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:16:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:16:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:16:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:17:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:17:12 (#:amount 101755224 #:time 261))
(heartbeat 2015-06-21T00:17:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:17:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:17:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:17:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:17:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:18:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:18:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:18:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:18:27 (#:amount 100003232 #:time 312))
(heartbeat 2015-06-21T00:18:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:18:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:18:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:19:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:19:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:19:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:19:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:19:42 (#:amount 101941832 #:time 263))
(heartbeat 2015-06-21T00:19:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:19:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:20:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:20:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:20:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:20:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:20:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:20:57 (#:amount 99925848 #:time 262))
(heartbeat 2015-06-21T00:20:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:21:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:21:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:21:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:21:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:21:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:21:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:22:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:22:09 (#:amount 102342808 #:time 262))
(heartbeat 2015-06-21T00:22:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:22:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:22:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:22:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:22:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:23:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:23:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:23:18 (#:amount 100288920 #:time 263))
(heartbeat 2015-06-21T00:23:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:23:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:23:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:23:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:24:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:24:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:24:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:24:27 (#:amount 101404784 #:time 263))
(heartbeat 2015-06-21T00:24:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:24:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:24:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:25:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:25:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:25:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:25:36 (#:amount 99986424 #:time 306))
(heartbeat 2015-06-21T00:25:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:25:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:25:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:26:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:26:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:26:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:26:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:26:45 (#:amount 102302296 #:time 262))
(heartbeat 2015-06-21T00:26:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:26:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:27:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:27:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:27:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:27:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:27:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:27:54 (#:amount 100229440 #:time 262))
(heartbeat 2015-06-21T00:27:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:28:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:28:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:28:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:28:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:28:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:28:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:29:05 (#:amount 101695984 #:time 263))
(heartbeat 2015-06-21T00:29:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:29:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:29:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:29:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:29:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:29:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:30:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:30:15 (#:amount 99904904 #:time 313))
(heartbeat 2015-06-21T00:30:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:30:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:30:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:30:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:30:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:31:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:31:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:31:26 (#:amount 102034832 #:time 259))
(heartbeat 2015-06-21T00:31:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:31:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:31:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:31:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:32:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:32:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:32:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:32:36 (#:amount 100237776 #:time 265))
(heartbeat 2015-06-21T00:32:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:32:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:32:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:33:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:33:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:33:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:33:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:33:44 (#:amount 101416224 #:time 262))
(heartbeat 2015-06-21T00:33:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:33:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:34:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:34:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:34:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:34:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:34:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:34:56 (#:amount 100164024 #:time 261))
(heartbeat 2015-06-21T00:34:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:35:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:35:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:35:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:35:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:35:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:35:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:36:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:36:07 (#:amount 101450936 #:time 261))
(heartbeat 2015-06-21T00:36:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:36:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:36:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:36:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:36:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:37:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:37:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:37:24 (#:amount 99889312 #:time 315))
(heartbeat 2015-06-21T00:37:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:37:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:37:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:37:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:38:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:38:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:38:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:38:36 (#:amount 102154936 #:time 262))
(heartbeat 2015-06-21T00:38:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:38:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:38:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:39:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:39:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:39:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:39:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:39:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:39:47 (#:amount 100233856 #:time 261))
(heartbeat 2015-06-21T00:39:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:40:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:40:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:40:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:40:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:40:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:40:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:41:04 (#:amount 101807656 #:time 264))
(heartbeat 2015-06-21T00:41:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:41:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:41:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:41:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:41:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:41:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:42:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:42:17 (#:amount 100374904 #:time 312))
(heartbeat 2015-06-21T00:42:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:42:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:42:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:42:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:42:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:43:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:43:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:43:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:43:36 (#:amount 101314528 #:time 261))
(heartbeat 2015-06-21T00:43:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:43:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:43:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:44:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:44:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:44:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:44:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:44:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:44:50 (#:amount 99996872 #:time 262))
(heartbeat 2015-06-21T00:44:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:45:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:45:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:45:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:45:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:45:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:45:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:46:03 (#:amount 101960728 #:time 263))
(heartbeat 2015-06-21T00:46:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:46:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:46:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:46:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:46:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:46:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:47:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:47:15 (#:amount 99854032 #:time 261))
(heartbeat 2015-06-21T00:47:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:47:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:47:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:47:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:47:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:48:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:48:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:48:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:48:30 (#:amount 102324200 #:time 259))
(heartbeat 2015-06-21T00:48:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:48:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:48:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:49:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:49:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:49:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:49:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:49:41 (#:amount 100308072 #:time 281))
(heartbeat 2015-06-21T00:49:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:49:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:50:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:50:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:50:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:50:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:50:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:50:53 (#:amount 101584608 #:time 310))
(heartbeat 2015-06-21T00:50:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:51:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:51:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:51:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:51:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:51:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:51:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:52:06 (#:amount 100294760 #:time 261))
(heartbeat 2015-06-21T00:52:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:52:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:52:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:52:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:52:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:52:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:53:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:53:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:53:21 (#:amount 101364096 #:time 261))
(heartbeat 2015-06-21T00:53:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:53:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:53:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:53:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:54:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:54:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:54:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:54:36 (#:amount 99686152 #:time 258))
(heartbeat 2015-06-21T00:54:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:54:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:54:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:55:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:55:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:55:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:55:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:55:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:55:49 (#:amount 102602888 #:time 260))
(heartbeat 2015-06-21T00:55:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:56:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:56:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:56:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:56:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:56:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:56:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:57:04 (#:amount 100245448 #:time 312))
(heartbeat 2015-06-21T00:57:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:57:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:57:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:57:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:57:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:57:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:58:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:58:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:58:20 (#:amount 101584536 #:time 262))
(heartbeat 2015-06-21T00:58:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:58:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:58:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:58:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:59:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:59:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:59:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T00:59:32 (#:amount 99650408 #:time 262))
(heartbeat 2015-06-21T00:59:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:59:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T00:59:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:00:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:00:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:00:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:00:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:00:45 (#:amount 102621080 #:time 261))
(heartbeat 2015-06-21T01:00:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:00:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:01:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:01:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:01:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:01:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:01:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:01:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:01:59 (#:amount 100290128 #:time 263))
(heartbeat 2015-06-21T01:02:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:02:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:02:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:02:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:02:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:02:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:03:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:03:12 (#:amount 101693208 #:time 261))
(heartbeat 2015-06-21T01:03:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:03:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:03:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:03:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:03:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:04:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:04:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:04:23 (#:amount 99457096 #:time 262))
(heartbeat 2015-06-21T01:04:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:04:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:04:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:04:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:05:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:05:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:05:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:05:36 (#:amount 103101976 #:time 311))
(heartbeat 2015-06-21T01:05:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:05:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:05:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:06:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:06:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:06:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:06:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:06:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:06:49 (#:amount 100278136 #:time 294))
(heartbeat 2015-06-21T01:06:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:07:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:07:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:07:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:07:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:07:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:07:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:08:04 (#:amount 101230472 #:time 262))
(heartbeat 2015-06-21T01:08:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:08:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:08:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:08:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:08:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:08:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:09:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:09:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:09:21 (#:amount 100351560 #:time 272))
(heartbeat 2015-06-21T01:09:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:09:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:09:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:09:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:10:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:10:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:10:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:10:35 (#:amount 101444016 #:time 260))
(heartbeat 2015-06-21T01:10:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:10:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:10:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:11:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:11:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:11:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:11:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:11:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:11:49 (#:amount 100358424 #:time 262))
(heartbeat 2015-06-21T01:11:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:12:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:12:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:12:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:12:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:12:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:12:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:13:03 (#:amount 101496752 #:time 264))
(heartbeat 2015-06-21T01:13:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:13:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:13:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:13:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:13:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:13:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:14:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:14:17 (#:amount 100074856 #:time 295))
(heartbeat 2015-06-21T01:14:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:14:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:14:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:14:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:14:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:15:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:15:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:15:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:15:31 (#:amount 101820512 #:time 260))
(heartbeat 2015-06-21T01:15:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:15:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:15:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:16:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:16:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:16:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:16:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:16:45 (#:amount 99711376 #:time 263))
(heartbeat 2015-06-21T01:16:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:16:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:17:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:17:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:17:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:17:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:17:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:17:58 (#:amount 102723160 #:time 261))
(heartbeat 2015-06-21T01:17:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:18:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:18:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:18:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:18:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:18:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:18:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:19:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:19:11 (#:amount 99853728 #:time 261))
(heartbeat 2015-06-21T01:19:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:19:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:19:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:19:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:19:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:20:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:20:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:20:21 (#:amount 102079744 #:time 262))
(heartbeat 2015-06-21T01:20:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:20:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:20:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:20:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:21:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:21:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:21:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:21:35 (#:amount 99583856 #:time 299))
(heartbeat 2015-06-21T01:21:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:21:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:21:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:22:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:22:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:22:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:22:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:22:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:22:51 (#:amount 102829824 #:time 312))
(heartbeat 2015-06-21T01:22:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:23:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:23:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:23:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:23:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:23:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:23:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:24:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:24:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:24:27 (#:amount 100137600 #:time 312))
(heartbeat 2015-06-21T01:24:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:24:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:24:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:24:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:25:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:25:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:25:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:25:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:25:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:25:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:26:03 (#:amount 101681312 #:time 317))
(heartbeat 2015-06-21T01:26:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:26:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:26:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:26:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:26:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:26:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:27:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:27:18 (#:amount 99573616 #:time 264))
(heartbeat 2015-06-21T01:27:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:27:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:27:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:27:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:27:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:28:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:28:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:28:27 (#:amount 102609936 #:time 287))
(heartbeat 2015-06-21T01:28:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:28:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:28:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:28:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:29:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:29:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:29:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:29:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:29:40 (#:amount 100369392 #:time 261))
(heartbeat 2015-06-21T01:29:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:29:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:30:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:30:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:30:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:30:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:30:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:30:52 (#:amount 101402256 #:time 312))
(heartbeat 2015-06-21T01:30:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:31:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:31:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:31:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:31:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:31:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:31:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:32:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:32:18 (#:amount 99960448 #:time 314))
(heartbeat 2015-06-21T01:32:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:32:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:32:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:32:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:32:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:33:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:33:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:33:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:33:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:33:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:33:53 (#:amount 101917928 #:time 316))
(heartbeat 2015-06-21T01:33:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:34:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:34:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:34:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:34:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:34:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:34:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:35:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:35:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:35:29 (#:amount 100007168 #:time 309))
(heartbeat 2015-06-21T01:35:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:35:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:35:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:35:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:36:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:36:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:36:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:36:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:36:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:36:55 (#:amount 102055288 #:time 312))
(heartbeat 2015-06-21T01:36:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:37:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:37:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:37:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:37:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:37:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:37:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:38:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:38:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:38:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:38:29 (#:amount 99685312 #:time 312))
(heartbeat 2015-06-21T01:38:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:38:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:38:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:39:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:39:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:39:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:39:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:39:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:40:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:40:04 (#:amount 102515304 #:time 263))
(heartbeat 2015-06-21T01:40:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:40:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:40:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:40:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:40:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:41:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:41:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:41:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:41:20 (#:amount 100132608 #:time 306))
(heartbeat 2015-06-21T01:41:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:41:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:41:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:42:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:42:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:42:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:42:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:42:33 (#:amount 102005096 #:time 303))
(heartbeat 2015-06-21T01:42:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:42:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:43:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:43:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:43:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:43:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:43:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:43:44 (#:amount 100155016 #:time 286))
(heartbeat 2015-06-21T01:43:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:44:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:44:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:44:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:44:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:44:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:44:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:44:57 (#:amount 101684408 #:time 261))
(heartbeat 2015-06-21T01:45:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:45:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:45:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:45:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:45:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:45:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:46:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:46:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:46:12 (#:amount 100153864 #:time 309))
(heartbeat 2015-06-21T01:46:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:46:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:46:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:46:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:47:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:47:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:47:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:47:27 (#:amount 101470192 #:time 261))
(heartbeat 2015-06-21T01:47:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:47:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:47:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:48:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:48:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:48:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:48:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:48:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:48:40 (#:amount 100166240 #:time 262))
(heartbeat 2015-06-21T01:48:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:49:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:49:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:49:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:49:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:49:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:49:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:49:54 (#:amount 101913808 #:time 262))
(heartbeat 2015-06-21T01:50:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:50:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:50:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:50:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:50:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:50:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:51:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:51:05 (#:amount 99910120 #:time 260))
(heartbeat 2015-06-21T01:51:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:51:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:51:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:51:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:51:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:52:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:52:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:52:19 (#:amount 102351608 #:time 265))
(heartbeat 2015-06-21T01:52:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:52:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:52:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:52:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:53:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:53:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:53:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:53:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:53:32 (#:amount 100349344 #:time 265))
(heartbeat 2015-06-21T01:53:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:53:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:54:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:54:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:54:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:54:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:54:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:54:48 (#:amount 101067672 #:time 261))
(heartbeat 2015-06-21T01:54:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:55:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:55:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:55:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:55:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:55:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:55:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:56:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:56:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:56:14 (#:amount 99800344 #:time 259))
(heartbeat 2015-06-21T01:56:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:56:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:56:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:56:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:57:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:57:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:57:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:57:24 (#:amount 102430560 #:time 266))
(heartbeat 2015-06-21T01:57:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:57:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:57:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:58:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:58:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:58:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:58:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:58:35 (#:amount 100401056 #:time 258))
(heartbeat 2015-06-21T01:58:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:58:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:59:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:59:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:59:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:59:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T01:59:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T01:59:46 (#:amount 101347744 #:time 262))
(heartbeat 2015-06-21T01:59:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:00:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:00:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:00:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:00:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:00:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:00:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:00:55 (#:amount 100115296 #:time 261))
(heartbeat 2015-06-21T02:01:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:01:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:01:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:01:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:01:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:01:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:02:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:02:06 (#:amount 101582600 #:time 263))
(heartbeat 2015-06-21T02:02:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:02:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:02:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:02:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:02:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:03:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:03:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:03:18 (#:amount 100062984 #:time 260))
(heartbeat 2015-06-21T02:03:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:03:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:03:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:03:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:04:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:04:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:04:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:04:28 (#:amount 101909584 #:time 264))
(heartbeat 2015-06-21T02:04:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:04:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:04:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:05:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:05:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:05:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:05:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:05:39 (#:amount 100377720 #:time 262))
(heartbeat 2015-06-21T02:05:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:05:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:06:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:06:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:06:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:06:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:06:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:06:49 (#:amount 101424792 #:time 257))
(heartbeat 2015-06-21T02:06:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:07:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:07:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:07:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:07:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:07:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:07:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:07:57 (#:amount 99939400 #:time 258))
(heartbeat 2015-06-21T02:08:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:08:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:08:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:08:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:08:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:08:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:09:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:09:08 (#:amount 102268928 #:time 261))
(heartbeat 2015-06-21T02:09:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:09:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:09:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:09:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:09:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:10:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:10:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:10:19 (#:amount 99975240 #:time 261))
(heartbeat 2015-06-21T02:10:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:10:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:10:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:10:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:11:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:11:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:11:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:11:30 (#:amount 102158368 #:time 260))
(heartbeat 2015-06-21T02:11:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:11:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:11:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:12:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:12:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:12:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:12:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:12:40 (#:amount 99655520 #:time 313))
(heartbeat 2015-06-21T02:12:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:12:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:13:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:13:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:13:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:13:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:13:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:13:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:13:53 (#:amount 102788640 #:time 262))
(heartbeat 2015-06-21T02:14:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:14:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:14:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:14:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:14:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:14:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:15:00 (#:amount 99900920 #:time 263))
(heartbeat 2015-06-21T02:15:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:15:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:15:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:15:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:15:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:15:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:16:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:16:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:16:14 (#:amount 102307032 #:time 266))
(heartbeat 2015-06-21T02:16:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:16:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:16:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:16:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:17:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:17:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:17:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:17:24 (#:amount 99506592 #:time 260))
(heartbeat 2015-06-21T02:17:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:17:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:17:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:18:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:18:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:18:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:18:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:18:38 (#:amount 102931792 #:time 262))
(heartbeat 2015-06-21T02:18:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:18:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:19:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:19:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:19:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:19:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:19:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:19:50 (#:amount 99482016 #:time 261))
(heartbeat 2015-06-21T02:19:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:20:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:20:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:20:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:20:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:20:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:20:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:21:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:21:09 (#:amount 102923728 #:time 293))
(heartbeat 2015-06-21T02:21:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:21:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:21:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:21:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:21:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:22:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:22:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:22:21 (#:amount 99875832 #:time 313))
(heartbeat 2015-06-21T02:22:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:22:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:22:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:22:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:23:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:23:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:23:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:23:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:23:34 (#:amount 102176376 #:time 312))
(heartbeat 2015-06-21T02:23:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:23:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:24:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:24:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:24:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:24:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:24:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:24:47 (#:amount 99544648 #:time 260))
(heartbeat 2015-06-21T02:24:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:25:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:25:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:25:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:25:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:25:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:25:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:25:59 (#:amount 103017976 #:time 262))
(heartbeat 2015-06-21T02:26:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:26:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:26:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:26:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:26:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:26:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:27:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:27:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:27:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:27:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:27:34 (#:amount 100203560 #:time 310))
(heartbeat 2015-06-21T02:27:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:27:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:28:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:28:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:28:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:28:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:28:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:28:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:29:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:29:08 (#:amount 101604920 #:time 313))
(heartbeat 2015-06-21T02:29:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:29:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:29:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:29:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:29:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:30:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:30:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:30:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:30:23 (#:amount 99583088 #:time 262))
(heartbeat 2015-06-21T02:30:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:30:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:30:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:31:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:31:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:31:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:31:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:31:39 (#:amount 102686960 #:time 311))
(heartbeat 2015-06-21T02:31:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:31:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:32:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:32:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:32:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:32:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:32:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:32:52 (#:amount 100074800 #:time 262))
(heartbeat 2015-06-21T02:32:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:33:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:33:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:33:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:33:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:33:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:33:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:34:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:34:04 (#:amount 101985064 #:time 263))
(heartbeat 2015-06-21T02:34:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:34:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:34:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:34:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:34:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:35:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:35:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:35:19 (#:amount 100299600 #:time 263))
(heartbeat 2015-06-21T02:35:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:35:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:35:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:35:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:36:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:36:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:36:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:36:28 (#:amount 101452432 #:time 261))
(heartbeat 2015-06-21T02:36:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:36:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:36:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:37:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:37:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:37:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:37:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:37:39 (#:amount 100023864 #:time 260))
(heartbeat 2015-06-21T02:37:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:37:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:38:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:38:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:38:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:38:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:38:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:38:49 (#:amount 102269320 #:time 261))
(heartbeat 2015-06-21T02:38:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:39:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:39:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:39:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:39:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:39:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:39:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:39:59 (#:amount 100453592 #:time 261))
(heartbeat 2015-06-21T02:40:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:40:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:40:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:40:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:40:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:40:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:41:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:41:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:41:13 (#:amount 101387560 #:time 309))
(heartbeat 2015-06-21T02:41:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:41:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:41:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:41:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:42:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:42:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:42:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:42:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:42:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:42:44 (#:amount 99748728 #:time 314))
(heartbeat 2015-06-21T02:42:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:43:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:43:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:43:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:43:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:43:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:43:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:44:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:44:03 (#:amount 102565440 #:time 260))
(heartbeat 2015-06-21T02:44:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:44:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:44:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:44:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:44:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:45:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:45:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:45:22 (#:amount 99997000 #:time 309))
(heartbeat 2015-06-21T02:45:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:45:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:45:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:45:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:46:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:46:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:46:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:46:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:46:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:46:43 (#:amount 101824568 #:time 313))
(heartbeat 2015-06-21T02:46:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:47:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:47:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:47:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:47:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:47:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:47:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:48:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:48:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:48:18 (#:amount 99675592 #:time 315))
(heartbeat 2015-06-21T02:48:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:48:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:48:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:48:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:49:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:49:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:49:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:49:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:49:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:49:51 (#:amount 102750160 #:time 312))
(heartbeat 2015-06-21T02:49:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:50:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:50:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:50:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:50:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:50:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:50:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:51:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:51:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:51:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:51:24 (#:amount 100340184 #:time 261))
(heartbeat 2015-06-21T02:51:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:51:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:51:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:52:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:52:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:52:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:52:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:52:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:52:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:52:53 (#:amount 101192408 #:time 311))
(heartbeat 2015-06-21T02:53:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:53:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:53:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:53:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:53:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:53:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:54:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:54:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:54:13 (#:amount 99819752 #:time 260))
(heartbeat 2015-06-21T02:54:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:54:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:54:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:54:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:55:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:55:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:55:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:55:27 (#:amount 102619560 #:time 293))
(heartbeat 2015-06-21T02:55:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:55:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:55:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:56:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:56:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:56:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:56:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:56:43 (#:amount 99709928 #:time 263))
(heartbeat 2015-06-21T02:56:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:56:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:57:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:57:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:57:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:57:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:57:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:57:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:57:54 (#:amount 102809200 #:time 261))
(heartbeat 2015-06-21T02:58:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:58:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:58:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:58:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:58:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:58:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:59:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T02:59:05 (#:amount 99780904 #:time 259))
(heartbeat 2015-06-21T02:59:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:59:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:59:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:59:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T02:59:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:00:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:00:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:00:17 (#:amount 102524152 #:time 260))
(heartbeat 2015-06-21T03:00:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:00:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:00:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:00:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:01:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:01:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:01:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:01:26 (#:amount 100289336 #:time 262))
(heartbeat 2015-06-21T03:01:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:01:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:01:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:02:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:02:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:02:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:02:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:02:36 (#:amount 101288952 #:time 262))
(heartbeat 2015-06-21T03:02:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:02:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:03:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:03:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:03:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:03:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:03:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:03:45 (#:amount 100088032 #:time 311))
(heartbeat 2015-06-21T03:03:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:04:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:04:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:04:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:04:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:04:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:04:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:04:58 (#:amount 101711960 #:time 309))
(heartbeat 2015-06-21T03:05:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:05:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:05:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:05:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:05:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:05:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:06:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:06:07 (#:amount 100069256 #:time 262))
(heartbeat 2015-06-21T03:06:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:06:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:06:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:06:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:06:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:07:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:07:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:07:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:07:25 (#:amount 102253456 #:time 261))
(heartbeat 2015-06-21T03:07:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:07:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:07:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:08:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:08:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:08:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:08:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:08:40 (#:amount 99846552 #:time 311))
(heartbeat 2015-06-21T03:08:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:08:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:09:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:09:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:09:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:09:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:09:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:09:53 (#:amount 102388992 #:time 313))
(heartbeat 2015-06-21T03:09:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:10:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:10:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:10:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:10:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:10:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:10:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:11:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:11:06 (#:amount 100279160 #:time 261))
(heartbeat 2015-06-21T03:11:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:11:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:11:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:11:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:11:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:12:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:12:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:12:17 (#:amount 101211816 #:time 261))
(heartbeat 2015-06-21T03:12:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:12:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:12:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:12:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:13:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:13:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:13:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:13:29 (#:amount 100262632 #:time 262))
(heartbeat 2015-06-21T03:13:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:13:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:13:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:14:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:14:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:14:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:14:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:14:43 (#:amount 101746416 #:time 262))
(heartbeat 2015-06-21T03:14:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:14:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:15:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:15:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:15:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:15:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:15:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:15:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:16:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:16:06 (#:amount 99597056 #:time 315))
(heartbeat 2015-06-21T03:16:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:16:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:16:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:16:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:16:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:17:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:17:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:17:21 (#:amount 102888728 #:time 261))
(heartbeat 2015-06-21T03:17:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:17:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:17:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:17:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:18:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:18:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:18:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:18:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:18:37 (#:amount 99907720 #:time 261))
(heartbeat 2015-06-21T03:18:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:18:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:19:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:19:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:19:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:19:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:19:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:19:52 (#:amount 102383896 #:time 262))
(heartbeat 2015-06-21T03:19:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:20:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:20:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:20:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:20:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:20:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:20:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:21:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:21:06 (#:amount 100364008 #:time 262))
(heartbeat 2015-06-21T03:21:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:21:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:21:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:21:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:21:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:22:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:22:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:22:17 (#:amount 101644736 #:time 262))
(heartbeat 2015-06-21T03:22:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:22:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:22:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:22:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:23:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:23:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:23:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:23:28 (#:amount 99963656 #:time 259))
(heartbeat 2015-06-21T03:23:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:23:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:23:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:24:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:24:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:24:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:24:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:24:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:24:45 (#:amount 102015104 #:time 264))
(heartbeat 2015-06-21T03:24:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:25:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:25:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:25:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:25:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:25:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:25:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:25:57 (#:amount 100263616 #:time 311))
(heartbeat 2015-06-21T03:26:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:26:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:26:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:26:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:26:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:26:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:27:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:27:11 (#:amount 101505544 #:time 269))
(heartbeat 2015-06-21T03:27:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:27:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:27:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:27:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:27:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:28:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:28:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:28:23 (#:amount 99801952 #:time 261))
(heartbeat 2015-06-21T03:28:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:28:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:28:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:28:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:29:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:29:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:29:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:29:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:29:37 (#:amount 102271656 #:time 261))
(heartbeat 2015-06-21T03:29:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:29:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:30:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:30:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:30:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:30:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:30:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:30:50 (#:amount 100024864 #:time 266))
(heartbeat 2015-06-21T03:30:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:31:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:31:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:31:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:31:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:31:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:31:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:32:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:32:12 (#:amount 101868552 #:time 260))
(heartbeat 2015-06-21T03:32:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:32:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:32:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:32:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:32:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:33:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:33:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:33:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:33:25 (#:amount 99742568 #:time 262))
(heartbeat 2015-06-21T03:33:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:33:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:33:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:34:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:34:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:34:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:34:33 (#:amount 102468344 #:time 261))
(heartbeat 2015-06-21T03:34:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:34:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:34:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:35:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:35:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:35:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:35:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:35:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:35:49 (#:amount 100247336 #:time 314))
(heartbeat 2015-06-21T03:35:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:36:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:36:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:36:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:36:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:36:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:36:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:37:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:37:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:37:23 (#:amount 101402432 #:time 315))
(heartbeat 2015-06-21T03:37:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:37:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:37:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:37:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:38:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:38:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:38:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:38:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:38:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:38:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:39:00 (#:amount 100462224 #:time 314))
(heartbeat 2015-06-21T03:39:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:39:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:39:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:39:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:39:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:39:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:40:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:40:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:40:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:40:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:40:35 (#:amount 101316728 #:time 313))
(heartbeat 2015-06-21T03:40:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:40:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:41:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:41:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:41:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:41:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:41:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:41:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:42:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:42:09 (#:amount 99741216 #:time 312))
(heartbeat 2015-06-21T03:42:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:42:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:42:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:42:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:42:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:43:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:43:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:43:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:43:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:43:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:43:46 (#:amount 102339112 #:time 315))
(heartbeat 2015-06-21T03:43:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:44:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:44:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:44:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:44:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:44:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:44:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:45:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:45:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:45:21 (#:amount 100302560 #:time 311))
(heartbeat 2015-06-21T03:45:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:45:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:45:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:45:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:46:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:46:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:46:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:46:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:46:36 (#:amount 101195216 #:time 310))
(heartbeat 2015-06-21T03:46:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:46:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:47:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:47:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:47:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:47:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:47:44 (#:amount 100303120 #:time 260))
(heartbeat 2015-06-21T03:47:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:47:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:48:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:48:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:48:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:48:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:48:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:48:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:49:02 (#:amount 101347312 #:time 312))
(heartbeat 2015-06-21T03:49:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:49:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:49:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:49:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:49:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:49:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:50:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:50:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:50:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:50:33 (#:amount 99493648 #:time 264))
(heartbeat 2015-06-21T03:50:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:50:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:50:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:51:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:51:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:51:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:51:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:51:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:51:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:52:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:52:08 (#:amount 102899288 #:time 312))
(heartbeat 2015-06-21T03:52:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:52:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:52:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:52:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:52:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:53:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:53:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:53:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:53:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:53:43 (#:amount 99535328 #:time 312))
(heartbeat 2015-06-21T03:53:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:53:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:54:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:54:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:54:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:54:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:54:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:54:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:55:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:55:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:55:19 (#:amount 102816952 #:time 315))
(heartbeat 2015-06-21T03:55:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:55:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:55:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:55:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:56:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:56:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:56:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:56:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:56:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:56:54 (#:amount 99993592 #:time 317))
(heartbeat 2015-06-21T03:56:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:57:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:57:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:57:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:57:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:57:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:57:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:58:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:58:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:58:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T03:58:31 (#:amount 102139720 #:time 313))
(heartbeat 2015-06-21T03:58:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:58:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:58:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:59:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:59:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:59:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:59:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:59:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T03:59:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:00:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:00:06 (#:amount 99956576 #:time 311))
(heartbeat 2015-06-21T04:00:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:00:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:00:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:00:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:00:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:01:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:01:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:01:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:01:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:01:43 (#:amount 102296504 #:time 293))
(heartbeat 2015-06-21T04:01:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:01:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:02:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:02:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:02:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:02:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:02:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:02:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:02:57 (#:amount 100052560 #:time 260))
(heartbeat 2015-06-21T04:03:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:03:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:03:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:03:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:03:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:03:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:04:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:04:11 (#:amount 102077168 #:time 312))
(heartbeat 2015-06-21T04:04:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:04:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:04:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:04:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:04:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:05:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:05:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:05:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:05:26 (#:amount 100050136 #:time 262))
(heartbeat 2015-06-21T04:05:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:05:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:05:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:06:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:06:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:06:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:06:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:06:45 (#:amount 102002056 #:time 280))
(heartbeat 2015-06-21T04:06:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:06:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:07:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:07:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:07:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:07:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:07:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:07:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:07:56 (#:amount 100434440 #:time 261))
(heartbeat 2015-06-21T04:08:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:08:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:08:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:08:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:08:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:08:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:09:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:09:13 (#:amount 101328232 #:time 311))
(heartbeat 2015-06-21T04:09:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:09:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:09:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:09:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:09:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:10:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:10:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:10:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:10:29 (#:amount 99935464 #:time 263))
(heartbeat 2015-06-21T04:10:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:10:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:10:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:11:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:11:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:11:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:11:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:11:41 (#:amount 102246856 #:time 259))
(heartbeat 2015-06-21T04:11:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:11:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:12:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:12:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:12:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:12:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:12:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:12:53 (#:amount 100287248 #:time 261))
(heartbeat 2015-06-21T04:12:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:13:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:13:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:13:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:13:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:13:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:13:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:14:05 (#:amount 101168760 #:time 261))
(heartbeat 2015-06-21T04:14:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:14:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:14:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:14:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:14:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:14:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:15:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:15:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:15:18 (#:amount 100383000 #:time 258))
(heartbeat 2015-06-21T04:15:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:15:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:15:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:15:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:16:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:16:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:16:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:16:28 (#:amount 101576968 #:time 261))
(heartbeat 2015-06-21T04:16:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:16:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:16:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:17:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:17:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:17:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:17:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:17:38 (#:amount 99693568 #:time 260))
(heartbeat 2015-06-21T04:17:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:17:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:18:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:18:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:18:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:18:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:18:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:18:51 (#:amount 102426312 #:time 315))
(heartbeat 2015-06-21T04:18:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:19:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:19:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:19:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:19:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:19:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:19:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:20:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:20:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:20:21 (#:amount 99565016 #:time 312))
(heartbeat 2015-06-21T04:20:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:20:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:20:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:20:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:21:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:21:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:21:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:21:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:21:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:21:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:21:57 (#:amount 102854400 #:time 315))
(heartbeat 2015-06-21T04:22:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:22:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:22:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:22:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:22:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:22:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:23:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:23:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:23:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:23:33 (#:amount 99633328 #:time 314))
(heartbeat 2015-06-21T04:23:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:23:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:23:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:24:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:24:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:24:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:24:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:24:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:24:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:25:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:25:08 (#:amount 102564144 #:time 310))
(heartbeat 2015-06-21T04:25:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:25:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:25:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:25:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:25:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:26:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:26:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:26:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:26:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:26:44 (#:amount 99842808 #:time 316))
(heartbeat 2015-06-21T04:26:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:26:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:27:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:27:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:27:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:27:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:27:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:27:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:28:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:28:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:28:21 (#:amount 102298856 #:time 313))
(heartbeat 2015-06-21T04:28:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:28:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:28:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:28:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:29:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:29:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:29:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:29:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:29:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:29:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:29:57 (#:amount 99716304 #:time 314))
(heartbeat 2015-06-21T04:30:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:30:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:30:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:30:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:30:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:30:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:31:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:31:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:31:24 (#:amount 102548584 #:time 311))
(heartbeat 2015-06-21T04:31:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:31:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:31:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:31:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:32:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:32:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:32:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:32:36 (#:amount 99637568 #:time 260))
(heartbeat 2015-06-21T04:32:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:32:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:32:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:33:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:33:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:33:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:33:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:33:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:33:48 (#:amount 102840128 #:time 261))
(heartbeat 2015-06-21T04:33:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:34:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:34:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:34:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:34:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:34:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:34:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:35:00 (#:amount 100423736 #:time 259))
(heartbeat 2015-06-21T04:35:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:35:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:35:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:35:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:35:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:35:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:36:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:36:16 (#:amount 101284312 #:time 310))
(heartbeat 2015-06-21T04:36:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:36:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:36:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:36:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:36:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:37:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:37:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:37:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:37:27 (#:amount 99838408 #:time 263))
(heartbeat 2015-06-21T04:37:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:37:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:37:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:38:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:38:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:38:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:38:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:38:40 (#:amount 102624312 #:time 262))
(heartbeat 2015-06-21T04:38:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:38:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:39:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:39:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:39:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:39:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:39:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:39:50 (#:amount 99608992 #:time 267))
(heartbeat 2015-06-21T04:39:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:40:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:40:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:40:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:40:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:40:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:40:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:41:02 (#:amount 102730232 #:time 312))
(heartbeat 2015-06-21T04:41:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:41:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:41:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:41:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:41:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:41:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:42:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:42:16 (#:amount 100208344 #:time 262))
(heartbeat 2015-06-21T04:42:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:42:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:42:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:42:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:42:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:43:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:43:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:43:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:43:29 (#:amount 101499000 #:time 276))
(heartbeat 2015-06-21T04:43:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:43:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:43:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:44:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:44:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:44:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:44:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:44:41 (#:amount 100550744 #:time 261))
(heartbeat 2015-06-21T04:44:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:44:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:45:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:45:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:45:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:45:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:45:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:45:52 (#:amount 101270240 #:time 261))
(heartbeat 2015-06-21T04:45:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:46:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:46:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:46:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:46:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:46:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:46:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:47:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:47:08 (#:amount 100341240 #:time 260))
(heartbeat 2015-06-21T04:47:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:47:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:47:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:47:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:47:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:48:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:48:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:48:21 (#:amount 101334352 #:time 262))
(heartbeat 2015-06-21T04:48:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:48:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:48:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:48:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:49:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:49:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:49:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:49:33 (#:amount 100159184 #:time 258))
(heartbeat 2015-06-21T04:49:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:49:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:49:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:50:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:50:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:50:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:50:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:50:43 (#:amount 101619904 #:time 263))
(heartbeat 2015-06-21T04:50:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:50:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:51:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:51:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:51:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:51:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:51:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:51:53 (#:amount 99846520 #:time 258))
(heartbeat 2015-06-21T04:51:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:52:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:52:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:52:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:52:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:52:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:52:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:53:03 (#:amount 102302272 #:time 264))
(heartbeat 2015-06-21T04:53:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:53:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:53:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:53:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:53:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:53:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:54:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:54:15 (#:amount 99678736 #:time 262))
(heartbeat 2015-06-21T04:54:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:54:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:54:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:54:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:54:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:55:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:55:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:55:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:55:28 (#:amount 102548088 #:time 314))
(heartbeat 2015-06-21T04:55:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:55:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:55:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:56:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:56:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:56:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:56:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:56:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:56:53 (#:amount 100011512 #:time 310))
(heartbeat 2015-06-21T04:56:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:57:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:57:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:57:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:57:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:57:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:57:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:58:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:58:17 (#:amount 101847416 #:time 258))
(heartbeat 2015-06-21T04:58:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:58:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:58:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:58:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:58:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:59:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:59:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:59:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T04:59:30 (#:amount 100494200 #:time 259))
(heartbeat 2015-06-21T04:59:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:59:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T04:59:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:00:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:00:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:00:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:00:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:00:39 (#:amount 101209176 #:time 262))
(heartbeat 2015-06-21T05:00:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:00:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:01:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:01:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:01:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:01:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:01:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:01:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:02:03 (#:amount 99703824 #:time 259))
(heartbeat 2015-06-21T05:02:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:02:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:02:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:02:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:02:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:02:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:03:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:03:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:03:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:03:36 (#:amount 102647344 #:time 313))
(heartbeat 2015-06-21T05:03:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:03:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:03:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:04:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:04:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:04:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:04:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:04:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:04:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:05:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:05:08 (#:amount 99751384 #:time 311))
(heartbeat 2015-06-21T05:05:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:05:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:05:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:05:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:05:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:06:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:06:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:06:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:06:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:06:39 (#:amount 102644576 #:time 309))
(heartbeat 2015-06-21T05:06:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:06:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:07:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:07:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:07:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:07:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:07:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:07:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:08:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:08:14 (#:amount 100231264 #:time 312))
(heartbeat 2015-06-21T05:08:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:08:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:08:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:08:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:08:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:09:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:09:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:09:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:09:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:09:47 (#:amount 101403888 #:time 309))
(heartbeat 2015-06-21T05:09:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:09:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:10:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:10:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:10:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:10:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:10:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:10:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:11:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:11:10 (#:amount 99988088 #:time 313))
(heartbeat 2015-06-21T05:11:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:11:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:11:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:11:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:11:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:12:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:12:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:12:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:12:30 (#:amount 102213336 #:time 258))
(heartbeat 2015-06-21T05:12:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:12:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:12:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:13:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:13:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:13:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:13:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:13:42 (#:amount 99864184 #:time 260))
(heartbeat 2015-06-21T05:13:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:13:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:14:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:14:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:14:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:14:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:14:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:14:54 (#:amount 102454512 #:time 261))
(heartbeat 2015-06-21T05:14:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:15:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:15:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:15:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:15:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:15:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:15:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:16:03 (#:amount 99792968 #:time 261))
(heartbeat 2015-06-21T05:16:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:16:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:16:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:16:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:16:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:16:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:17:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:17:14 (#:amount 102670608 #:time 260))
(heartbeat 2015-06-21T05:17:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:17:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:17:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:17:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:17:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:18:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:18:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:18:20 (#:amount 99631496 #:time 260))
(heartbeat 2015-06-21T05:18:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:18:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:18:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:18:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:19:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:19:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:19:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:19:31 (#:amount 102928232 #:time 263))
(heartbeat 2015-06-21T05:19:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:19:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:19:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:20:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:20:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:20:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:20:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:20:45 (#:amount 100429008 #:time 261))
(heartbeat 2015-06-21T05:20:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:20:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:21:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:21:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:21:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:21:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:21:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:21:55 (#:amount 101262408 #:time 265))
(heartbeat 2015-06-21T05:21:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:22:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:22:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:22:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:22:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:22:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:22:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:23:03 (#:amount 100269536 #:time 261))
(heartbeat 2015-06-21T05:23:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:23:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:23:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:23:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:23:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:23:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:24:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:24:11 (#:amount 101397544 #:time 267))
(heartbeat 2015-06-21T05:24:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:24:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:24:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:24:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:24:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:25:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:25:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:25:21 (#:amount 99908544 #:time 259))
(heartbeat 2015-06-21T05:25:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:25:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:25:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:25:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:26:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:26:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:26:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:26:32 (#:amount 102430000 #:time 263))
(heartbeat 2015-06-21T05:26:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:26:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:26:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:27:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:27:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:27:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:27:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:27:45 (#:amount 100267512 #:time 309))
(heartbeat 2015-06-21T05:27:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:27:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:28:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:28:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:28:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:28:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:28:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:28:57 (#:amount 101562728 #:time 260))
(heartbeat 2015-06-21T05:28:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:29:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:29:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:29:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:29:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:29:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:29:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:30:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:30:10 (#:amount 100174376 #:time 261))
(heartbeat 2015-06-21T05:30:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:30:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:30:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:30:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:30:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:31:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:31:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:31:21 (#:amount 101642760 #:time 260))
(heartbeat 2015-06-21T05:31:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:31:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:31:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:31:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:32:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:32:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:32:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:32:32 (#:amount 99933456 #:time 265))
(heartbeat 2015-06-21T05:32:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:32:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:32:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:33:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:33:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:33:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:33:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:33:44 (#:amount 102260136 #:time 262))
(heartbeat 2015-06-21T05:33:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:33:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:34:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:34:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:34:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:34:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:34:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:34:57 (#:amount 100209248 #:time 259))
(heartbeat 2015-06-21T05:34:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:35:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:35:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:35:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:35:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:35:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:35:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:36:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:36:11 (#:amount 101864280 #:time 314))
(heartbeat 2015-06-21T05:36:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:36:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:36:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:36:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:36:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:37:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:37:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:37:28 (#:amount 99683272 #:time 260))
(heartbeat 2015-06-21T05:37:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:37:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:37:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:37:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:38:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:38:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:38:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:38:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:38:44 (#:amount 102478976 #:time 261))
(heartbeat 2015-06-21T05:38:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:38:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:39:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:39:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:39:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:39:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:39:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:39:55 (#:amount 99577840 #:time 261))
(heartbeat 2015-06-21T05:39:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:40:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:40:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:40:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:40:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:40:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:40:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:41:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:41:14 (#:amount 102744224 #:time 263))
(heartbeat 2015-06-21T05:41:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:41:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:41:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:41:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:41:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:42:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:42:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:42:27 (#:amount 100111288 #:time 264))
(heartbeat 2015-06-21T05:42:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:42:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:42:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:42:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:43:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:43:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:43:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:43:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:43:42 (#:amount 102113752 #:time 290))
(heartbeat 2015-06-21T05:43:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:43:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:44:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:44:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:44:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:44:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:44:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:44:53 (#:amount 99987184 #:time 262))
(heartbeat 2015-06-21T05:44:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:45:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:45:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:45:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:45:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:45:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:45:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:46:08 (#:amount 101885160 #:time 263))
(heartbeat 2015-06-21T05:46:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:46:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:46:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:46:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:46:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:46:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:47:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:47:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:47:20 (#:amount 100410632 #:time 257))
(heartbeat 2015-06-21T05:47:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:47:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:47:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:47:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:48:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:48:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:48:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:48:33 (#:amount 101160536 #:time 264))
(heartbeat 2015-06-21T05:48:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:48:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:48:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:49:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:49:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:49:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:49:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:49:45 (#:amount 99958944 #:time 291))
(heartbeat 2015-06-21T05:49:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:49:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:50:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:50:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:50:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:50:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:50:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:50:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:51:00 (#:amount 102235264 #:time 263))
(heartbeat 2015-06-21T05:51:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:51:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:51:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:51:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:51:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:51:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:52:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:52:12 (#:amount 100186560 #:time 260))
(heartbeat 2015-06-21T05:52:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:52:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:52:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:52:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:52:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:53:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:53:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:53:25 (#:amount 101678216 #:time 263))
(heartbeat 2015-06-21T05:53:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:53:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:53:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:53:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:54:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:54:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:54:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:54:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:54:41 (#:amount 100161888 #:time 311))
(heartbeat 2015-06-21T05:54:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:54:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:55:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:55:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:55:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:55:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:55:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:55:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:56:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:56:13 (#:amount 101799336 #:time 264))
(heartbeat 2015-06-21T05:56:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:56:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:56:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:56:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:56:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:57:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:57:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:57:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:57:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:57:41 (#:amount 99667408 #:time 263))
(heartbeat 2015-06-21T05:57:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:57:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:58:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:58:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:58:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:58:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:58:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T05:58:54 (#:amount 102851064 #:time 261))
(heartbeat 2015-06-21T05:58:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:59:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:59:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:59:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:59:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:59:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T05:59:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:00:07 (#:amount 100000920 #:time 281))
(heartbeat 2015-06-21T06:00:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:00:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:00:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:00:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:00:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:00:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:01:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:01:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:01:22 (#:amount 102065656 #:time 269))
(heartbeat 2015-06-21T06:01:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:01:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:01:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:01:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:02:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:02:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:02:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:02:34 (#:amount 99667696 #:time 262))
(heartbeat 2015-06-21T06:02:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:02:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:02:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:03:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:03:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:03:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:03:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:03:47 (#:amount 102609416 #:time 268))
(heartbeat 2015-06-21T06:03:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:03:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:04:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:04:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:04:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:04:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:04:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:04:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:05:01 (#:amount 100497824 #:time 294))
(heartbeat 2015-06-21T06:05:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:05:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:05:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:05:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:05:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:05:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:06:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:06:15 (#:amount 101223472 #:time 262))
(heartbeat 2015-06-21T06:06:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:06:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:06:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:06:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:06:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:07:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:07:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:07:28 (#:amount 99765528 #:time 261))
(heartbeat 2015-06-21T06:07:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:07:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:07:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:07:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:08:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:08:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:08:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:08:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:08:44 (#:amount 102228088 #:time 313))
(heartbeat 2015-06-21T06:08:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:08:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:09:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:09:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:09:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:09:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:09:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:09:57 (#:amount 100133216 #:time 259))
(heartbeat 2015-06-21T06:09:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:10:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:10:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:10:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:10:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:10:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:11:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:11:08 (#:amount 101861880 #:time 261))
(heartbeat 2015-06-21T06:11:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:11:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:11:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:11:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:11:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:12:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:12:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:12:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:12:20 (#:amount 99794768 #:time 260))
(heartbeat 2015-06-21T06:12:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:12:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:12:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:13:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:13:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:13:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:13:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:13:36 (#:amount 102464632 #:time 262))
(heartbeat 2015-06-21T06:13:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:13:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:14:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:14:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:14:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:14:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:14:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:14:48 (#:amount 100090712 #:time 257))
(heartbeat 2015-06-21T06:14:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:15:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:15:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:15:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:15:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:15:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:15:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:16:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:16:02 (#:amount 101819824 #:time 266))
(heartbeat 2015-06-21T06:16:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:16:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:16:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:16:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:16:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:17:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:17:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:17:14 (#:amount 99545472 #:time 314))
(heartbeat 2015-06-21T06:17:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:17:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:17:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:17:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:18:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:18:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:18:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:18:28 (#:amount 102802648 #:time 311))
(heartbeat 2015-06-21T06:18:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:18:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:18:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:19:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:19:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:19:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:19:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:19:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:19:44 (#:amount 100360800 #:time 314))
(heartbeat 2015-06-21T06:19:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:20:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:20:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:20:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:20:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:20:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:20:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:20:57 (#:amount 101482792 #:time 263))
(heartbeat 2015-06-21T06:21:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:21:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:21:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:21:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:21:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:21:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:22:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:22:08 (#:amount 100234688 #:time 310))
(heartbeat 2015-06-21T06:22:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:22:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:22:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:22:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:22:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:23:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:23:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:23:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:23:24 (#:amount 101643448 #:time 263))
(heartbeat 2015-06-21T06:23:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:23:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:23:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:24:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:24:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:24:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:24:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:24:38 (#:amount 100365128 #:time 310))
(heartbeat 2015-06-21T06:24:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:24:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:25:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:25:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:25:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:25:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:25:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:25:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:25:54 (#:amount 101344968 #:time 262))
(heartbeat 2015-06-21T06:26:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:26:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:26:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:26:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:26:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:26:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:27:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:27:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:27:14 (#:amount 100060944 #:time 312))
(heartbeat 2015-06-21T06:27:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:27:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:27:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:27:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:28:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:28:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:28:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:28:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:28:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:28:50 (#:amount 102059672 #:time 314))
(heartbeat 2015-06-21T06:28:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:29:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:29:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:29:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:29:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:29:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:29:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:30:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:30:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:30:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:30:23 (#:amount 100413384 #:time 317))
(heartbeat 2015-06-21T06:30:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:30:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:30:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:31:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:31:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:31:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:31:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:31:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:31:48 (#:amount 101265312 #:time 261))
(heartbeat 2015-06-21T06:31:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:32:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:32:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:32:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:32:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:32:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:32:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:33:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:33:01 (#:amount 99531312 #:time 269))
(heartbeat 2015-06-21T06:33:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:33:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:33:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:33:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:33:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:34:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:34:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:34:18 (#:amount 102805136 #:time 310))
(heartbeat 2015-06-21T06:34:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:34:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:34:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:34:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:35:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:35:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:35:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:35:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:35:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:35:42 (#:amount 99824376 #:time 312))
(heartbeat 2015-06-21T06:35:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:36:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:36:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:36:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:36:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:36:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:36:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:37:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:37:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:37:14 (#:amount 102513376 #:time 312))
(heartbeat 2015-06-21T06:37:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:37:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:37:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:37:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:38:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:38:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:38:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:38:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:38:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:38:51 (#:amount 99990496 #:time 315))
(heartbeat 2015-06-21T06:38:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:39:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:39:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:39:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:39:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:39:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:39:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:40:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:40:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:40:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:40:25 (#:amount 102200136 #:time 311))
(heartbeat 2015-06-21T06:40:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:40:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:40:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:41:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:41:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:41:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:41:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:41:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:41:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:42:00 (#:amount 100142112 #:time 312))
(heartbeat 2015-06-21T06:42:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:42:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:42:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:42:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:42:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:42:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:43:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:43:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:43:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:43:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:43:37 (#:amount 101849120 #:time 314))
(heartbeat 2015-06-21T06:43:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:43:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:44:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:44:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:44:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:44:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:44:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:44:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:45:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:45:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:45:11 (#:amount 99550672 #:time 311))
(heartbeat 2015-06-21T06:45:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:45:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:45:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:45:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:46:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:46:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:46:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:46:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:46:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:46:48 (#:amount 102859664 #:time 317))
(heartbeat 2015-06-21T06:46:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:47:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:47:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:47:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:47:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:47:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:47:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:48:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:48:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:48:21 (#:amount 99672520 #:time 266))
(heartbeat 2015-06-21T06:48:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:48:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:48:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:48:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:49:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:49:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:49:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:49:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:49:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:49:42 (#:amount 102558456 #:time 261))
(heartbeat 2015-06-21T06:49:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:50:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:50:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:50:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:50:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:50:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:50:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:50:54 (#:amount 99867680 #:time 281))
(heartbeat 2015-06-21T06:51:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:51:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:51:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:51:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:51:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:51:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:52:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:52:09 (#:amount 102210088 #:time 262))
(heartbeat 2015-06-21T06:52:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:52:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:52:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:52:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:52:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:53:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:53:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:53:20 (#:amount 99643976 #:time 259))
(heartbeat 2015-06-21T06:53:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:53:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:53:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:53:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:54:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:54:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:54:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:54:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:54:34 (#:amount 102466664 #:time 263))
(heartbeat 2015-06-21T06:54:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:54:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:55:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:55:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:55:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:55:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:55:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:55:48 (#:amount 100359184 #:time 260))
(heartbeat 2015-06-21T06:55:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:56:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:56:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:56:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:56:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:56:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:56:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:57:01 (#:amount 101324872 #:time 310))
(heartbeat 2015-06-21T06:57:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:57:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:57:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:57:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:57:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:57:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:58:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:58:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:58:13 (#:amount 99699320 #:time 262))
(heartbeat 2015-06-21T06:58:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:58:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:58:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:58:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:59:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:59:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:59:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T06:59:26 (#:amount 102661968 #:time 261))
(heartbeat 2015-06-21T06:59:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:59:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T06:59:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:00:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:00:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:00:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:00:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:00:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:00:42 (#:amount 100209800 #:time 314))
(heartbeat 2015-06-21T07:00:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:01:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:01:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:01:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:01:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:01:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:01:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:01:55 (#:amount 101544168 #:time 265))
(heartbeat 2015-06-21T07:02:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:02:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:02:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:02:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:02:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:02:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:03:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:03:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:03:12 (#:amount 100295008 #:time 262))
(heartbeat 2015-06-21T07:03:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:03:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:03:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:03:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:04:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:04:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:04:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:04:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:04:32 (#:amount 101488976 #:time 263))
(heartbeat 2015-06-21T07:04:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:04:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:05:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:05:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:05:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:05:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:05:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:05:51 (#:amount 100278536 #:time 263))
(heartbeat 2015-06-21T07:05:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:06:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:06:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:06:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:06:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:06:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:06:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:07:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:07:10 (#:amount 101252824 #:time 314))
(heartbeat 2015-06-21T07:07:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:07:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:07:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:07:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:07:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:08:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:08:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:08:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:08:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:08:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:08:45 (#:amount 100268616 #:time 314))
(heartbeat 2015-06-21T07:08:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:09:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:09:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:09:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:09:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:09:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:09:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:10:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:10:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:10:22 (#:amount 101581408 #:time 313))
(heartbeat 2015-06-21T07:10:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:10:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:10:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:10:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:11:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:11:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:11:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:11:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:11:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:11:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:11:58 (#:amount 100236784 #:time 315))
(heartbeat 2015-06-21T07:12:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:12:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:12:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:12:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:12:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:12:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:13:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:13:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:13:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:13:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:13:33 (#:amount 101568800 #:time 312))
(heartbeat 2015-06-21T07:13:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:13:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:14:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:14:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:14:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:14:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:14:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:14:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:15:02 (#:amount 99878072 #:time 312))
(heartbeat 2015-06-21T07:15:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:15:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:15:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:15:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:15:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:15:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:16:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:16:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:16:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:16:26 (#:amount 102510064 #:time 261))
(heartbeat 2015-06-21T07:16:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:16:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:16:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:17:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:17:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:17:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:17:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:17:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:17:43 (#:amount 100086488 #:time 315))
(heartbeat 2015-06-21T07:17:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:18:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:18:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:18:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:18:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:18:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:18:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:19:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:19:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:19:20 (#:amount 101891544 #:time 315))
(heartbeat 2015-06-21T07:19:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:19:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:19:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:19:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:20:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:20:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:20:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:20:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:20:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:20:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:20:55 (#:amount 99971800 #:time 313))
(heartbeat 2015-06-21T07:21:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:21:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:21:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:21:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:21:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:21:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:22:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:22:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:22:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:22:32 (#:amount 102108528 #:time 313))
(heartbeat 2015-06-21T07:22:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:22:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:22:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:23:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:23:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:23:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:23:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:23:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:23:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:24:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:24:08 (#:amount 99554344 #:time 312))
(heartbeat 2015-06-21T07:24:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:24:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:24:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:24:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:24:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:25:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:25:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:25:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:25:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:25:34 (#:amount 103042392 #:time 260))
(heartbeat 2015-06-21T07:25:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:25:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:26:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:26:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:26:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:26:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:26:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:26:46 (#:amount 100375144 #:time 260))
(heartbeat 2015-06-21T07:26:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:27:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:27:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:27:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:27:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:27:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:27:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:28:01 (#:amount 101319616 #:time 287))
(heartbeat 2015-06-21T07:28:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:28:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:28:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:28:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:28:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:28:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:29:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:29:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:29:13 (#:amount 100123368 #:time 309))
(heartbeat 2015-06-21T07:29:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:29:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:29:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:29:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:30:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:30:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:30:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:30:29 (#:amount 101537368 #:time 265))
(heartbeat 2015-06-21T07:30:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:30:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:30:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:31:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:31:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:31:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:31:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:31:42 (#:amount 99723040 #:time 265))
(heartbeat 2015-06-21T07:31:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:31:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:32:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:32:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:32:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:32:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:32:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:32:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:32:55 (#:amount 102773800 #:time 310))
(heartbeat 2015-06-21T07:33:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:33:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:33:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:33:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:33:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:33:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:34:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:34:11 (#:amount 99786624 #:time 261))
(heartbeat 2015-06-21T07:34:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:34:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:34:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:34:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:34:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:35:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:35:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:35:19 (#:amount 102220896 #:time 261))
(heartbeat 2015-06-21T07:35:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:35:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:35:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:35:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:36:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:36:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:36:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:36:32 (#:amount 100136560 #:time 264))
(heartbeat 2015-06-21T07:36:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:36:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:36:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:37:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:37:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:37:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:37:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:37:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:37:48 (#:amount 101786768 #:time 263))
(heartbeat 2015-06-21T07:37:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:38:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:38:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:38:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:38:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:38:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:38:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:39:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:39:03 (#:amount 99637104 #:time 261))
(heartbeat 2015-06-21T07:39:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:39:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:39:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:39:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:39:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:40:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:40:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:40:22 (#:amount 102748304 #:time 265))
(heartbeat 2015-06-21T07:40:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:40:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:40:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:40:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:41:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:41:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:41:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:41:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:41:40 (#:amount 99823784 #:time 311))
(heartbeat 2015-06-21T07:41:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:41:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:42:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:42:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:42:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:42:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:42:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:42:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:43:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:43:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:43:16 (#:amount 102400808 #:time 263))
(heartbeat 2015-06-21T07:43:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:43:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:43:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:43:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:44:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:44:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:44:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:44:30 (#:amount 100248224 #:time 260))
(heartbeat 2015-06-21T07:44:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:44:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:44:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:45:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:45:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:45:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:45:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:45:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:45:44 (#:amount 101432288 #:time 264))
(heartbeat 2015-06-21T07:45:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:46:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:46:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:46:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:46:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:46:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:46:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:47:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:47:10 (#:amount 100225240 #:time 261))
(heartbeat 2015-06-21T07:47:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:47:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:47:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:47:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:47:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:48:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:48:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:48:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:48:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:48:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:48:46 (#:amount 101512552 #:time 314))
(heartbeat 2015-06-21T07:48:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:49:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:49:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:49:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:49:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:49:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:49:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:50:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:50:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:50:13 (#:amount 99809184 #:time 309))
(heartbeat 2015-06-21T07:50:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:50:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:50:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:50:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:51:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:51:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:51:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:51:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:51:34 (#:amount 102323920 #:time 262))
(heartbeat 2015-06-21T07:51:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:51:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:52:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:52:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:52:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:52:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:52:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:52:47 (#:amount 99701848 #:time 264))
(heartbeat 2015-06-21T07:52:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:53:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:53:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:53:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:53:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:53:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:53:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:54:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:54:06 (#:amount 102481992 #:time 260))
(heartbeat 2015-06-21T07:54:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:54:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:54:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:54:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:54:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:55:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:55:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:55:14 (#:amount 100328624 #:time 260))
(heartbeat 2015-06-21T07:55:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:55:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:55:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:55:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:56:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:56:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:56:23 (#:amount 101341752 #:time 262))
(heartbeat 2015-06-21T07:56:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:56:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:56:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:56:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:57:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:57:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:57:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:57:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:57:38 (#:amount 99898928 #:time 315))
(heartbeat 2015-06-21T07:57:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:57:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:58:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:58:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:58:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:58:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:58:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:58:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T07:58:57 (#:amount 102059864 #:time 262))
(heartbeat 2015-06-21T07:59:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:59:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:59:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:59:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:59:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T07:59:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:00:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:00:05 (#:amount 100265728 #:time 262))
(heartbeat 2015-06-21T08:00:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:00:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:00:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:00:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:00:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:01:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:01:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:01:15 (#:amount 101349992 #:time 261))
(heartbeat 2015-06-21T08:01:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:01:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:01:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:01:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:02:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:02:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:02:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:02:28 (#:amount 100031808 #:time 265))
(heartbeat 2015-06-21T08:02:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:02:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:02:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:03:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:03:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:03:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:03:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:03:39 (#:amount 102237672 #:time 271))
(heartbeat 2015-06-21T08:03:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:03:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:04:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:04:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:04:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:04:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:04:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:04:50 (#:amount 100206360 #:time 262))
(heartbeat 2015-06-21T08:04:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:05:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:05:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:05:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:05:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:05:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:05:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:06:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:06:08 (#:amount 101634152 #:time 298))
(heartbeat 2015-06-21T08:06:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:06:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:06:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:06:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:06:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:07:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:07:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:07:20 (#:amount 99571272 #:time 310))
(heartbeat 2015-06-21T08:07:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:07:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:07:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:07:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:08:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:08:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:08:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:08:31 (#:amount 102647064 #:time 261))
(heartbeat 2015-06-21T08:08:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:08:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:08:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:09:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:09:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:09:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:09:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:09:41 (#:amount 99572968 #:time 260))
(heartbeat 2015-06-21T08:09:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:09:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:10:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:10:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:10:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:10:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:10:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:10:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:10:55 (#:amount 102870440 #:time 263))
(heartbeat 2015-06-21T08:11:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:11:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:11:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:11:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:11:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:11:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:12:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:12:05 (#:amount 100071672 #:time 262))
(heartbeat 2015-06-21T08:12:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:12:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:12:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:12:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:12:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:13:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:13:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:13:19 (#:amount 102124200 #:time 313))
(heartbeat 2015-06-21T08:13:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:13:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:13:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:13:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:14:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:14:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:14:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:14:30 (#:amount 100002072 #:time 260))
(heartbeat 2015-06-21T08:14:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:14:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:14:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:15:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:15:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:15:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:15:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:15:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:15:46 (#:amount 101994328 #:time 291))
(heartbeat 2015-06-21T08:15:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:16:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:16:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:16:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:16:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:16:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:16:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:16:57 (#:amount 99595392 #:time 261))
(heartbeat 2015-06-21T08:17:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:17:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:17:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:17:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:17:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:17:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:18:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:18:14 (#:amount 102611488 #:time 313))
(heartbeat 2015-06-21T08:18:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:18:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:18:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:18:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:18:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:19:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:19:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:19:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:19:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:19:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:19:49 (#:amount 100101624 #:time 318))
(heartbeat 2015-06-21T08:19:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:20:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:20:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:20:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:20:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:20:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:20:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:21:04 (#:amount 102056232 #:time 262))
(heartbeat 2015-06-21T08:21:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:21:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:21:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:21:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:21:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:21:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:22:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:22:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:22:16 (#:amount 100074328 #:time 279))
(heartbeat 2015-06-21T08:22:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:22:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:22:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:22:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:23:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:23:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:23:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:23:28 (#:amount 102101384 #:time 262))
(heartbeat 2015-06-21T08:23:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:23:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:23:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:24:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:24:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:24:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:24:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:24:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:24:53 (#:amount 99647648 #:time 312))
(heartbeat 2015-06-21T08:24:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:25:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:25:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:25:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:25:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:25:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:25:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:26:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:26:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:26:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:26:29 (#:amount 102656272 #:time 313))
(heartbeat 2015-06-21T08:26:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:26:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:26:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:27:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:27:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:27:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:27:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:27:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:27:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:28:04 (#:amount 100268248 #:time 311))
(heartbeat 2015-06-21T08:28:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:28:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:28:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:28:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:28:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:28:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:29:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:29:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:29:21 (#:amount 101526728 #:time 261))
(heartbeat 2015-06-21T08:29:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:29:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:29:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:29:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:30:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:30:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:30:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:30:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:30:39 (#:amount 99865448 #:time 259))
(heartbeat 2015-06-21T08:30:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:30:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:31:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:31:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:31:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:31:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:31:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:31:47 (#:amount 102253088 #:time 260))
(heartbeat 2015-06-21T08:31:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:32:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:32:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:32:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:32:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:32:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:32:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:33:01 (#:amount 99813232 #:time 261))
(heartbeat 2015-06-21T08:33:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:33:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:33:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:33:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:33:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:33:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:34:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:34:12 (#:amount 102130976 #:time 262))
(heartbeat 2015-06-21T08:34:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:34:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:34:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:34:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:34:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:35:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:35:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:35:24 (#:amount 99780232 #:time 260))
(heartbeat 2015-06-21T08:35:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:35:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:35:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:35:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:36:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:36:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:36:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:36:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:36:37 (#:amount 102526008 #:time 267))
(heartbeat 2015-06-21T08:36:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:36:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:37:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:37:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:37:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:37:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:37:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:37:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:37:56 (#:amount 100019168 #:time 265))
(heartbeat 2015-06-21T08:38:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:38:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:38:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:38:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:38:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:38:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:39:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:39:14 (#:amount 102050280 #:time 312))
(heartbeat 2015-06-21T08:39:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:39:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:39:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:39:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:39:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:40:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:40:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:40:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:40:27 (#:amount 99692672 #:time 263))
(heartbeat 2015-06-21T08:40:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:40:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:40:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:41:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:41:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:41:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:41:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:41:39 (#:amount 102569576 #:time 264))
(heartbeat 2015-06-21T08:41:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:41:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:42:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:42:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:42:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:42:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:42:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:42:51 (#:amount 99909400 #:time 259))
(heartbeat 2015-06-21T08:42:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:43:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:43:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:43:25 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:43:35 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:43:45 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:43:55 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:44:03 (#:amount 102147912 #:time 262))
(heartbeat 2015-06-21T08:44:05 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:44:15 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:44:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:44:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:44:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:44:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:45:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:45:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:45:17 (#:amount 100116816 #:time 262))
(heartbeat 2015-06-21T08:45:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:45:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:45:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:45:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:46:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:46:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:46:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:46:30 (#:amount 101887816 #:time 262))
(heartbeat 2015-06-21T08:46:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:46:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:46:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:47:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:47:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:47:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:47:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:47:44 (#:amount 100087072 #:time 310))
(heartbeat 2015-06-21T08:47:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:47:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:48:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:48:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:48:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:48:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:48:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:48:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:48:57 (#:amount 101982080 #:time 313))
(heartbeat 2015-06-21T08:49:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:49:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:49:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:49:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:49:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:49:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:50:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:50:10 (#:amount 99645912 #:time 262))
(heartbeat 2015-06-21T08:50:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:50:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:50:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:50:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:50:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:51:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:51:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:51:25 (#:amount 102557496 #:time 261))
(heartbeat 2015-06-21T08:51:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:51:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:51:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:51:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:52:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:52:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:52:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:52:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:52:39 (#:amount 100192072 #:time 262))
(heartbeat 2015-06-21T08:52:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:52:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:53:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:53:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:53:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:53:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:53:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:53:49 (#:amount 101946408 #:time 261))
(heartbeat 2015-06-21T08:53:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:54:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:54:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:54:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:54:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:54:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:54:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:55:03 (#:amount 100343216 #:time 264))
(heartbeat 2015-06-21T08:55:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:55:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:55:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:55:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:55:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:55:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:56:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:56:15 (#:amount 101287528 #:time 266))
(heartbeat 2015-06-21T08:56:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:56:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:56:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:56:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:56:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:57:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:57:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:57:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:57:27 (#:amount 100265464 #:time 262))
(heartbeat 2015-06-21T08:57:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:57:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:57:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:58:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:58:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:58:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:58:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T08:58:44 (#:amount 101767856 #:time 262))
(heartbeat 2015-06-21T08:58:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:58:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:59:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:59:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:59:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:59:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:59:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T08:59:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:00:00 (#:amount 99747544 #:time 311))
(heartbeat 2015-06-21T09:00:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:00:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:00:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:00:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:00:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:00:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:01:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:01:12 (#:amount 102518056 #:time 264))
(heartbeat 2015-06-21T09:01:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:01:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:01:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:01:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:01:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:02:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:02:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:02:24 (#:amount 99914688 #:time 265))
(heartbeat 2015-06-21T09:02:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:02:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:02:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:02:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:03:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:03:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:03:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:03:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:03:40 (#:amount 102109728 #:time 312))
(heartbeat 2015-06-21T09:03:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:03:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:04:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:04:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:04:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:04:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:04:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:04:51 (#:amount 99665000 #:time 261))
(heartbeat 2015-06-21T09:04:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:05:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:05:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:05:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:05:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:05:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:05:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:06:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:06:08 (#:amount 102736536 #:time 294))
(heartbeat 2015-06-21T09:06:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:06:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:06:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:06:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:06:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:07:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:07:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:07:23 (#:amount 99889392 #:time 261))
(heartbeat 2015-06-21T09:07:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:07:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:07:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:07:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:08:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:08:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:08:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:08:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:08:39 (#:amount 102391288 #:time 266))
(heartbeat 2015-06-21T09:08:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:08:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:09:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:09:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:09:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:09:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:09:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:09:53 (#:amount 99678008 #:time 313))
(heartbeat 2015-06-21T09:09:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:10:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:10:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:10:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:10:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:10:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:10:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:11:04 (#:amount 102795592 #:time 308))
(heartbeat 2015-06-21T09:11:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:11:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:11:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:11:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:11:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:11:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:12:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:12:15 (#:amount 100334872 #:time 259))
(heartbeat 2015-06-21T09:12:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:12:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:12:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:12:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:12:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:13:06 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:13:16 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:13:26 (#:amount 101365512 #:time 276))
(heartbeat 2015-06-21T09:13:26 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:13:36 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:13:46 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:13:56 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:14:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:14:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:14:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:14:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:14:39 (#:amount 100385784 #:time 264))
(heartbeat 2015-06-21T09:14:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:14:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:15:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:15:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:15:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:15:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:15:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:15:49 (#:amount 101535200 #:time 261))
(heartbeat 2015-06-21T09:15:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:16:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:16:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:16:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:16:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:16:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:16:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:17:00 (#:amount 99662552 #:time 259))
(heartbeat 2015-06-21T09:17:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:17:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:17:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:17:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:17:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:17:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:18:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:18:16 (#:amount 102655016 #:time 261))
(heartbeat 2015-06-21T09:18:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:18:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:18:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:18:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:18:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:19:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:19:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:19:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:19:30 (#:amount 99696008 #:time 264))
(heartbeat 2015-06-21T09:19:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:19:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:19:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:20:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:20:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:20:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:20:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:20:45 (#:amount 102917912 #:time 261))
(heartbeat 2015-06-21T09:20:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:20:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:21:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:21:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:21:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:21:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:21:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:21:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:22:02 (#:amount 100410552 #:time 259))
(heartbeat 2015-06-21T09:22:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:22:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:22:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:22:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:22:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:22:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:23:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:23:14 (#:amount 101613000 #:time 259))
(heartbeat 2015-06-21T09:23:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:23:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:23:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:23:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:23:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:24:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:24:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:24:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:24:28 (#:amount 99599480 #:time 262))
(heartbeat 2015-06-21T09:24:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:24:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:24:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:25:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:25:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:25:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:25:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:25:41 (#:amount 102793376 #:time 263))
(heartbeat 2015-06-21T09:25:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:25:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:26:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:26:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:26:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:26:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:26:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:26:55 (#:amount 99605824 #:time 308))
(heartbeat 2015-06-21T09:26:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:27:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:27:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:27:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:27:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:27:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:27:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:28:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:28:08 (#:amount 102962496 #:time 263))
(heartbeat 2015-06-21T09:28:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:28:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:28:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:28:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:28:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:29:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:29:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:29:19 (#:amount 100091224 #:time 262))
(heartbeat 2015-06-21T09:29:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:29:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:29:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:29:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:30:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:30:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:30:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:30:35 (#:amount 101740600 #:time 304))
(heartbeat 2015-06-21T09:30:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:30:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:30:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:31:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:31:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:31:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:31:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:31:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:31:50 (#:amount 99644808 #:time 260))
(heartbeat 2015-06-21T09:31:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:32:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:32:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:32:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:32:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:32:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:32:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:33:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:33:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:33:22 (#:amount 102871480 #:time 316))
(heartbeat 2015-06-21T09:33:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:33:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:33:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:33:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:34:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:34:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:34:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:34:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:34:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:34:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:34:58 (#:amount 99701256 #:time 314))
(heartbeat 2015-06-21T09:35:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:35:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:35:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:35:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:35:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:35:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:36:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:36:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:36:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:36:33 (#:amount 102756256 #:time 311))
(heartbeat 2015-06-21T09:36:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:36:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:36:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:37:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:37:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:37:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:37:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:37:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:37:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:38:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:38:08 (#:amount 99979048 #:time 308))
(heartbeat 2015-06-21T09:38:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:38:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:38:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:38:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:38:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:39:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:39:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:39:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:39:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:39:45 (#:amount 102093080 #:time 313))
(heartbeat 2015-06-21T09:39:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:39:57 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:40:07 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:40:17 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:40:27 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:40:37 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:40:47 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:40:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:41:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:41:17 (#:amount 99442784 #:time 318))
(heartbeat 2015-06-21T09:41:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:41:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:41:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:41:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:41:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:42:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:42:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:42:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:42:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:42:44 (#:amount 102980128 #:time 312))
(heartbeat 2015-06-21T09:42:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:42:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:43:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:43:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:43:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:43:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:43:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:43:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:44:00 (#:amount 99547560 #:time 262))
(heartbeat 2015-06-21T09:44:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:44:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:44:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:44:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:44:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:44:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:45:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:45:14 (#:amount 103084416 #:time 262))
(heartbeat 2015-06-21T09:45:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:45:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:45:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:45:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:45:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:46:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:46:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:46:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:46:29 (#:amount 100086360 #:time 290))
(heartbeat 2015-06-21T09:46:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:46:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:46:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:47:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:47:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:47:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:47:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:47:41 (#:amount 101528848 #:time 260))
(heartbeat 2015-06-21T09:47:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:47:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:48:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:48:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:48:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:48:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:48:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:48:57 (#:amount 100082056 #:time 260))
(heartbeat 2015-06-21T09:48:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:49:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:49:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:49:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:49:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:49:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:49:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:50:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:50:16 (#:amount 102122408 #:time 264))
(heartbeat 2015-06-21T09:50:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:50:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:50:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:50:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:50:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:51:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:51:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:51:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:51:28 (#:amount 100369352 #:time 310))
(heartbeat 2015-06-21T09:51:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:51:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:51:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:52:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:52:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:52:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:52:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:52:44 (#:amount 101443328 #:time 262))
(heartbeat 2015-06-21T09:52:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:52:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:53:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:53:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:53:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:53:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:53:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:53:57 (#:amount 99601880 #:time 260))
(heartbeat 2015-06-21T09:53:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:54:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:54:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:54:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:54:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:54:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:54:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:55:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:55:11 (#:amount 102696000 #:time 260))
(heartbeat 2015-06-21T09:55:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:55:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:55:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:55:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:55:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:56:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:56:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:56:23 (#:amount 100205536 #:time 293))
(heartbeat 2015-06-21T09:56:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:56:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:56:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:56:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:57:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:57:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:57:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:57:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:57:47 (#:amount 101566896 #:time 315))
(heartbeat 2015-06-21T09:57:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:57:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:58:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:58:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:58:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:58:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:58:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:58:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:59:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:59:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T09:59:21 (#:amount 99813832 #:time 313))
(heartbeat 2015-06-21T09:59:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:59:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:59:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T09:59:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:00:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:00:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:00:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:00:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:00:39 (#:amount 102561456 #:time 261))
(heartbeat 2015-06-21T10:00:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:00:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:01:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:01:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:01:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:01:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:01:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:01:51 (#:amount 100493096 #:time 260))
(heartbeat 2015-06-21T10:01:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:02:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:02:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:02:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:02:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:02:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:02:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:03:06 (#:amount 101106248 #:time 260))
(heartbeat 2015-06-21T10:03:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:03:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:03:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:03:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:03:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:03:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:04:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:04:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:04:18 (#:amount 99994592 #:time 261))
(heartbeat 2015-06-21T10:04:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:04:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:04:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:04:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:05:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:05:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:05:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:05:31 (#:amount 102333592 #:time 269))
(heartbeat 2015-06-21T10:05:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:05:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:05:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:06:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:06:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:06:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:06:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:06:44 (#:amount 100356280 #:time 258))
(heartbeat 2015-06-21T10:06:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:06:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:07:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:07:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:07:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:07:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:07:48 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:07:57 (#:amount 101395936 #:time 269))
(heartbeat 2015-06-21T10:07:58 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:08:08 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:08:18 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:08:28 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:08:38 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:08:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:08:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:09:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:09:09 (#:amount 100095576 #:time 313))
(heartbeat 2015-06-21T10:09:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:09:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:09:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:09:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:09:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:10:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:10:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:10:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:10:37 (#:amount 102220760 #:time 314))
(heartbeat 2015-06-21T10:10:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:10:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:10:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:11:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:11:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:11:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:11:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:11:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:11:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:12:08 (#:amount 99805128 #:time 311))
(heartbeat 2015-06-21T10:12:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:12:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:12:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:12:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:12:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:12:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:13:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:13:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:13:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:13:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:13:39 (#:amount 102391752 #:time 265))
(heartbeat 2015-06-21T10:13:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:13:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:14:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:14:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:14:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:14:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:14:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:14:50 (#:amount 99735976 #:time 311))
(heartbeat 2015-06-21T10:14:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:15:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:15:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:15:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:15:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:15:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:15:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:16:03 (#:amount 102652656 #:time 262))
(heartbeat 2015-06-21T10:16:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:16:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:16:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:16:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:16:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:16:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:17:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:17:15 (#:amount 99759344 #:time 262))
(heartbeat 2015-06-21T10:17:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:17:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:17:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:17:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:17:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:18:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:18:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:18:26 (#:amount 102686056 #:time 260))
(heartbeat 2015-06-21T10:18:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:18:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:18:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:18:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:19:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:19:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:19:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:19:37 (#:amount 99877304 #:time 262))
(heartbeat 2015-06-21T10:19:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:19:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:19:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:20:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:20:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:20:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:20:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:20:48 (#:amount 102546720 #:time 261))
(heartbeat 2015-06-21T10:20:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:20:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:21:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:21:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:21:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:21:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:21:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:21:55 (#:amount 99492080 #:time 263))
(heartbeat 2015-06-21T10:21:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:22:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:22:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:22:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:22:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:22:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:22:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:23:05 (#:amount 102985880 #:time 263))
(heartbeat 2015-06-21T10:23:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:23:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:23:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:23:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:23:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:23:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:24:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:24:12 (#:amount 99992792 #:time 258))
(heartbeat 2015-06-21T10:24:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:24:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:24:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:24:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:24:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:25:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:25:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:25:22 (#:amount 102089904 #:time 263))
(heartbeat 2015-06-21T10:25:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:25:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:25:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:25:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:26:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:26:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:26:29 (#:amount 100362472 #:time 259))
(heartbeat 2015-06-21T10:26:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:26:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:26:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:26:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:27:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:27:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:27:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:27:37 (#:amount 101416096 #:time 261))
(heartbeat 2015-06-21T10:27:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:27:49 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:27:59 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:28:09 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:28:19 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:28:29 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:28:39 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:28:47 (#:amount 100119136 #:time 258))
(heartbeat 2015-06-21T10:28:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:29:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:29:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:29:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:29:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:29:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:29:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:29:58 (#:amount 102039480 #:time 263))
(heartbeat 2015-06-21T10:30:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:30:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:30:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:30:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:30:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:30:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:31:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:31:07 (#:amount 99678200 #:time 264))
(heartbeat 2015-06-21T10:31:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:31:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:31:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:31:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:31:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:32:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:32:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:32:19 (#:amount 102749712 #:time 263))
(heartbeat 2015-06-21T10:32:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:32:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:32:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:32:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:33:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:33:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:33:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:33:28 (#:amount 100335544 #:time 260))
(heartbeat 2015-06-21T10:33:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:33:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:33:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:34:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:34:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:34:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:34:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:34:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:34:42 (#:amount 101366672 #:time 262))
(heartbeat 2015-06-21T10:34:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:35:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:35:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:35:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:35:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:35:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:35:49 (#:amount 99676880 #:time 262))
(heartbeat 2015-06-21T10:35:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:36:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:36:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:36:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:36:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:36:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:36:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:36:59 (#:amount 102722000 #:time 260))
(heartbeat 2015-06-21T10:37:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:37:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:37:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:37:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:37:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:37:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:38:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:38:07 (#:amount 99678648 #:time 262))
(heartbeat 2015-06-21T10:38:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:38:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:38:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:38:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:38:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:39:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:39:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:39:17 (#:amount 102672408 #:time 261))
(heartbeat 2015-06-21T10:39:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:39:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:39:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:39:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:40:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:40:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:40:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:40:25 (#:amount 100347200 #:time 261))
(heartbeat 2015-06-21T10:40:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:40:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:40:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:41:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:41:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:41:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:41:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:41:35 (#:amount 101544832 #:time 259))
(heartbeat 2015-06-21T10:41:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:41:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:42:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:42:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:42:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:42:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:42:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:42:47 (#:amount 99930368 #:time 312))
(heartbeat 2015-06-21T10:42:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:43:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:43:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:43:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:43:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:43:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:43:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:44:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:44:03 (#:amount 102107960 #:time 260))
(heartbeat 2015-06-21T10:44:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:44:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:44:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:44:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:44:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:45:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:45:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:45:13 (#:amount 100372368 #:time 262))
(heartbeat 2015-06-21T10:45:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:45:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:45:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:45:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:46:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:46:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:46:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:46:27 (#:amount 101281376 #:time 311))
(heartbeat 2015-06-21T10:46:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:46:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:46:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:47:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:47:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:47:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:47:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:47:40 (#:amount 99615088 #:time 264))
(heartbeat 2015-06-21T10:47:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:47:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:48:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:48:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:48:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:48:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:48:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:48:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:48:51 (#:amount 102696408 #:time 265))
(heartbeat 2015-06-21T10:49:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:49:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:49:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:49:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:49:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:49:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:50:00 (#:amount 99985872 #:time 259))
(heartbeat 2015-06-21T10:50:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:50:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:50:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:50:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:50:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:50:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:51:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:51:10 (#:amount 102209656 #:time 314))
(heartbeat 2015-06-21T10:51:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:51:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:51:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:51:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:51:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:52:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:52:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:52:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:52:22 (#:amount 99790096 #:time 264))
(heartbeat 2015-06-21T10:52:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:52:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:52:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:53:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:53:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:53:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:53:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:53:35 (#:amount 102588784 #:time 292))
(heartbeat 2015-06-21T10:53:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:53:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:54:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:54:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:54:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:54:30 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:54:40 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:54:49 (#:amount 100151176 #:time 262))
(heartbeat 2015-06-21T10:54:50 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:55:00 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:55:10 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:55:20 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:55:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:55:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:55:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:56:00 (#:amount 101661216 #:time 262))
(heartbeat 2015-06-21T10:56:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:56:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:56:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:56:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:56:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:56:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:57:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:57:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:57:13 (#:amount 99716120 #:time 318))
(heartbeat 2015-06-21T10:57:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:57:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:57:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:57:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:58:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:58:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:58:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:58:24 (#:amount 102695216 #:time 262))
(heartbeat 2015-06-21T10:58:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:58:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:58:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:59:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:59:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:59:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:59:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T10:59:35 (#:amount 99698672 #:time 260))
(heartbeat 2015-06-21T10:59:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T10:59:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:00:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:00:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:00:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:00:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:00:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:00:49 (#:amount 102854208 #:time 260))
(heartbeat 2015-06-21T11:00:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:01:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:01:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:01:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:01:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:01:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:01:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:02:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:02:01 (#:amount 100405968 #:time 259))
(heartbeat 2015-06-21T11:02:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:02:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:02:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:02:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:02:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:03:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:03:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:03:14 (#:amount 101306592 #:time 260))
(heartbeat 2015-06-21T11:03:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:03:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:03:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:03:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:04:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:04:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:04:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:04:27 (#:amount 99535080 #:time 260))
(heartbeat 2015-06-21T11:04:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:04:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:04:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:05:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:05:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:05:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:05:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:05:40 (#:amount 103060552 #:time 262))
(heartbeat 2015-06-21T11:05:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:05:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:06:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:06:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:06:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:06:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:06:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:06:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:07:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:07:08 (#:amount 99644688 #:time 262))
(heartbeat 2015-06-21T11:07:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:07:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:07:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:07:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:07:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:08:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:08:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:08:20 (#:amount 102601968 #:time 262))
(heartbeat 2015-06-21T11:08:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:08:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:08:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:08:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:09:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:09:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:09:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:09:30 (#:amount 100290576 #:time 261))
(heartbeat 2015-06-21T11:09:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:09:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:09:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:10:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:10:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:10:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:10:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:10:41 (#:amount 101410704 #:time 260))
(heartbeat 2015-06-21T11:10:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:10:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:11:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:11:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:11:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:11:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:11:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:11:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:11:52 (#:amount 100338544 #:time 259))
(heartbeat 2015-06-21T11:12:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:12:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:12:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:12:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:12:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:12:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:13:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:13:02 (#:amount 101677656 #:time 261))
(heartbeat 2015-06-21T11:13:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:13:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:13:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:13:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:13:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:14:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:14:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:14:12 (#:amount 100531656 #:time 258))
(heartbeat 2015-06-21T11:14:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:14:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:14:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:14:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:15:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:15:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:15:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:15:22 (#:amount 100983096 #:time 262))
(heartbeat 2015-06-21T11:15:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:15:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:15:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:16:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:16:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:16:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:16:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:16:39 (#:amount 99922800 #:time 260))
(heartbeat 2015-06-21T11:16:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:16:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:17:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:17:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:17:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:17:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:17:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:17:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:17:52 (#:amount 102310312 #:time 261))
(heartbeat 2015-06-21T11:18:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:18:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:18:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:18:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:18:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:18:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:19:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:19:06 (#:amount 99493120 #:time 311))
(heartbeat 2015-06-21T11:19:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:19:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:19:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:19:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:19:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:20:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:20:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:20:19 (#:amount 102963448 #:time 264))
(heartbeat 2015-06-21T11:20:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:20:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:20:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:20:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:21:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:21:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:21:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:21:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:21:32 (#:amount 99931888 #:time 263))
(heartbeat 2015-06-21T11:21:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:21:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:22:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:22:11 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:22:21 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:22:31 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:22:41 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:22:44 (#:amount 102407144 #:time 311))
(heartbeat 2015-06-21T11:22:51 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:23:01 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:23:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:23:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:23:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:23:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:23:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:23:55 (#:amount 99612088 #:time 265))
(heartbeat 2015-06-21T11:24:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:24:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:24:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:24:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:24:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:24:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:25:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:25:09 (#:amount 102709432 #:time 263))
(heartbeat 2015-06-21T11:25:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:25:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:25:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:25:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:25:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:26:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:26:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:26:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:26:26 (#:amount 99821176 #:time 310))
(heartbeat 2015-06-21T11:26:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:26:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:26:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:27:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:27:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:27:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:27:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:27:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:27:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:28:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:28:02 (#:amount 102536280 #:time 312))
(heartbeat 2015-06-21T11:28:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:28:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:28:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:28:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:28:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:29:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:29:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:29:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:29:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:29:36 (#:amount 99789592 #:time 314))
(heartbeat 2015-06-21T11:29:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:29:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:30:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:30:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:30:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:30:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:30:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:30:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:31:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:31:10 (#:amount 102548784 #:time 313))
(heartbeat 2015-06-21T11:31:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:31:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:31:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:31:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:31:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:32:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:32:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:32:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:32:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:32:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:32:47 (#:amount 100376144 #:time 311))
(heartbeat 2015-06-21T11:32:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:33:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:33:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:33:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:33:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:33:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:33:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:34:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:34:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:34:21 (#:amount 101245152 #:time 260))
(heartbeat 2015-06-21T11:34:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:34:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:34:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:34:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:35:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:35:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:35:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:35:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:35:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:35:52 (#:amount 99842928 #:time 313))
(heartbeat 2015-06-21T11:35:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:36:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:36:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:36:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:36:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:36:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:36:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:37:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:37:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:37:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:37:29 (#:amount 102486432 #:time 314))
(heartbeat 2015-06-21T11:37:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:37:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:37:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:38:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:38:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:38:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:38:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:38:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:38:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:38:55 (#:amount 99469520 #:time 315))
(heartbeat 2015-06-21T11:39:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:39:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:39:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:39:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:39:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:39:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:40:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:40:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:40:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:40:31 (#:amount 103221560 #:time 317))
(heartbeat 2015-06-21T11:40:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:40:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:40:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:41:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:41:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:41:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:41:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:41:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:41:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:42:00 (#:amount 100296272 #:time 312))
(heartbeat 2015-06-21T11:42:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:42:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:42:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:42:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:42:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:42:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:43:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:43:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:43:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:43:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:43:33 (#:amount 101329272 #:time 315))
(heartbeat 2015-06-21T11:43:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:43:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:44:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:44:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:44:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:44:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:44:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:44:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:45:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:45:10 (#:amount 99790064 #:time 311))
(heartbeat 2015-06-21T11:45:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:45:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:45:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:45:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:45:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:46:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:46:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:46:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:46:25 (#:amount 102390864 #:time 313))
(heartbeat 2015-06-21T11:46:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:46:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:46:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:47:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:47:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:47:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:47:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:47:36 (#:amount 100026680 #:time 262))
(heartbeat 2015-06-21T11:47:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:47:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:48:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:48:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:48:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:48:32 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:48:42 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:48:48 (#:amount 102086576 #:time 262))
(heartbeat 2015-06-21T11:48:52 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:49:02 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:49:12 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:49:22 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:49:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:49:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:49:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:50:02 (#:amount 99691984 #:time 260))
(heartbeat 2015-06-21T11:50:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:50:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:50:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:50:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:50:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:50:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:51:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:51:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:51:17 (#:amount 103014008 #:time 268))
(heartbeat 2015-06-21T11:51:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:51:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:51:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:51:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:52:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:52:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:52:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:52:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:52:36 (#:amount 100325584 #:time 312))
(heartbeat 2015-06-21T11:52:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:52:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:53:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:53:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:53:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:53:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:53:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:53:48 (#:amount 101240696 #:time 264))
(heartbeat 2015-06-21T11:53:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:54:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:54:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:54:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:54:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:54:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:54:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:55:00 (#:amount 99877216 #:time 263))
(heartbeat 2015-06-21T11:55:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:55:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:55:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:55:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:55:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:55:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:56:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:56:10 (#:amount 102423224 #:time 260))
(heartbeat 2015-06-21T11:56:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:56:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:56:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:56:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:56:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:57:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:57:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:57:22 (#:amount 100056008 #:time 258))
(heartbeat 2015-06-21T11:57:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:57:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:57:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:57:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:58:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:58:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:58:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:58:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T11:58:39 (#:amount 102134072 #:time 313))
(heartbeat 2015-06-21T11:58:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:58:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:59:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:59:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:59:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:59:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:59:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T11:59:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:00:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:00:04 (#:amount 99622784 #:time 280))
(heartbeat 2015-06-21T12:00:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:00:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:00:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:00:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:00:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:01:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:01:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:01:14 (#:amount 103032680 #:time 262))
(heartbeat 2015-06-21T12:01:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:01:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:01:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:01:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:02:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:02:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:02:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:02:26 (#:amount 99727784 #:time 258))
(heartbeat 2015-06-21T12:02:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:02:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:02:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:03:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:03:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:03:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:03:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:03:40 (#:amount 102507864 #:time 261))
(heartbeat 2015-06-21T12:03:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:03:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:04:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:04:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:04:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:04:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:04:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:04:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:04:55 (#:amount 99773504 #:time 279))
(heartbeat 2015-06-21T12:05:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:05:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:05:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:05:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:05:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:05:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:06:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:06:07 (#:amount 102388112 #:time 263))
(heartbeat 2015-06-21T12:06:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:06:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:06:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:06:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:06:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:07:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:07:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:07:20 (#:amount 99836520 #:time 260))
(heartbeat 2015-06-21T12:07:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:07:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:07:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:07:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:08:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:08:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:08:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:08:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:08:36 (#:amount 102293464 #:time 263))
(heartbeat 2015-06-21T12:08:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:08:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:09:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:09:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:09:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:09:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:09:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:09:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:10:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:10:03 (#:amount 100238688 #:time 311))
(heartbeat 2015-06-21T12:10:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:10:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:10:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:10:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:10:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:11:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:11:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:11:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:11:33 (#:amount 101476080 #:time 316))
(heartbeat 2015-06-21T12:11:33 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:11:43 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:11:53 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:12:03 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:12:13 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:12:23 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:12:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:12:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:12:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:13:02 (#:amount 99964368 #:time 309))
(heartbeat 2015-06-21T12:13:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:13:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:13:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:13:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:13:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:13:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:14:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:14:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:14:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:14:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:14:39 (#:amount 102000024 #:time 312))
(heartbeat 2015-06-21T12:14:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:14:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:15:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:15:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:15:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:15:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:15:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:15:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:16:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:16:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:16:15 (#:amount 99994048 #:time 311))
(heartbeat 2015-06-21T12:16:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:16:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:16:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:16:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:17:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:17:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:17:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:17:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:17:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:17:52 (#:amount 101952680 #:time 310))
(heartbeat 2015-06-21T12:17:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:18:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:18:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:18:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:18:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:18:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:18:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:19:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:19:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:19:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:19:28 (#:amount 100313744 #:time 311))
(heartbeat 2015-06-21T12:19:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:19:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:19:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:20:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:20:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:20:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:20:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:20:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:20:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:21:02 (#:amount 101261424 #:time 312))
(heartbeat 2015-06-21T12:21:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:21:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:21:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:21:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:21:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:21:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:22:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:22:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:22:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:22:29 (#:amount 100061024 #:time 308))
(heartbeat 2015-06-21T12:22:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:22:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:22:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:23:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:23:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:23:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:23:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:23:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:23:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:23:56 (#:amount 101774544 #:time 306))
(heartbeat 2015-06-21T12:24:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:24:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:24:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:24:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:24:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:24:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:25:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:25:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:25:21 (#:amount 99854072 #:time 281))
(heartbeat 2015-06-21T12:25:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:25:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:25:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:25:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:26:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:26:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:26:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:26:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:26:43 (#:amount 102492144 #:time 262))
(heartbeat 2015-06-21T12:26:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:26:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:27:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:27:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:27:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:27:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:27:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:27:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:28:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:28:05 (#:amount 100116488 #:time 311))
(heartbeat 2015-06-21T12:28:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:28:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:28:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:28:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:28:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:29:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:29:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:29:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:29:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:29:36 (#:amount 101740376 #:time 312))
(heartbeat 2015-06-21T12:29:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:29:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:30:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:30:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:30:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:30:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:30:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:30:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:30:59 (#:amount 99833168 #:time 264))
(heartbeat 2015-06-21T12:31:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:31:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:31:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:31:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:31:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:31:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:32:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:32:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:32:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:32:29 (#:amount 102537488 #:time 314))
(heartbeat 2015-06-21T12:32:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:32:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:32:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:33:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:33:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:33:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:33:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:33:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:33:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:33:57 (#:amount 100104648 #:time 308))
(heartbeat 2015-06-21T12:34:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:34:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:34:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:34:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:34:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:34:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:35:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:35:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:35:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:35:25 (#:amount 101743800 #:time 268))
(heartbeat 2015-06-21T12:35:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:35:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:35:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:36:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:36:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:36:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:36:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:36:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:36:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:36:55 (#:amount 99898472 #:time 311))
(heartbeat 2015-06-21T12:37:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:37:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:37:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:37:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:37:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:37:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:38:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:38:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:38:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(gc-major 2015-06-21T12:38:27 (#:amount 102107096 #:time 314))
(heartbeat 2015-06-21T12:38:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:38:44 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:38:54 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:39:04 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:39:14 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:39:24 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(heartbeat 2015-06-21T12:39:34 (#:model "delim-cont-3" #:type enum-brutally-unfair))
(finished 2015-06-21T12:39:37 (#:model "delim-cont-3" #:type enum-brutally-unfair #:time-ms 86400007 #:attempts 7505790 #:num-counterexamples 0 #:rate-terms/s 86.87256240615814 #:attempts/cexp N/A))
| false |
85a7bb6be0335da5c6a76f0a7a69bddb9156cbcd | 2648ed01abe9e761560bf1cd79d5da122ac8266f | /tests/tool/syntax-color.rkt | 796e2a99e63c90e4fe2ec2b528fbaa2dd1183b5d | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/datalog | 74a783a54a79e86a8d040848e8476fe6bd68d2f9 | 3a30258c7a11f6f1836f52590e26542c11865714 | refs/heads/master | 2023-08-18T02:06:23.735559 | 2022-03-31T08:01:51 | 2022-03-31T13:15:17 | 27,412,704 | 40 | 17 | NOASSERTION | 2022-03-31T13:15:18 | 2014-12-02T03:13:48 | Racket | UTF-8 | Racket | false | false | 1,148 | rkt | syntax-color.rkt | #lang racket
(require rackunit
datalog/tool/syntax-color)
(provide syntax-color-tests)
(define (test-color str key)
(define-values (lex color b start end) (get-syntax-token (open-input-string str)))
(test-equal? (format "Syntax Color: ~a: ~a" key str) color key))
(define syntax-color-tests
(test-suite
"syntax-color"
(test-color " " 'whitespace)
(test-color " " 'whitespace)
(test-color "\t" 'whitespace)
(test-color "\n" 'whitespace)
(test-color "% \n" 'comment)
(test-color "% 12 31 2 6\n" 'comment)
(test-color "Var" 'symbol)
(test-color "V124_3" 'symbol)
(test-color "var" 'identifier)
(test-color "123var" 'identifier)
(test-color "(" 'parenthesis)
(test-color ")" 'parenthesis)
(test-color "!=" 'parenthesis)
(test-color "=" 'parenthesis)
(test-color "?" 'parenthesis)
(test-color "~" 'parenthesis)
(test-color "." 'parenthesis)
(test-color "," 'parenthesis)
(test-color ":-" 'parenthesis)
(test-color "\"foo\"" 'string)
(test-color "\"fo\\\"o\"" 'string)
(test-color "\"fo\no\"" 'error)
(test-color "\"foo" 'error)
(test-color ":" 'error)))
| false |
9529cfe430d4a6615f448a199d14db9c1c317d7b | 3d54ac46f36f2ead9770ce7ea5895a48848d56e0 | /data/6.2/mbta-2016-01-19T16:31:21.rktd | 83bae4a294e41b2b1398999e2a1a1625ef54a827 | []
| no_license | takikawa/gradual-typing-performance-1 | 31d2650f152cefaae2301abdebf147803aeca57a | 780c1fd47d97415fa16dde20019803c7d96064cf | refs/heads/master | 2020-04-03T15:12:11.512914 | 2016-02-15T01:24:27 | 2016-02-15T05:30:55 | 50,735,350 | 0 | 0 | null | 2016-01-30T17:17:06 | 2016-01-30T17:17:06 | null | UTF-8 | Racket | false | false | 887 | rktd | mbta-2016-01-19T16:31:21.rktd | ;; #(-r 6.2 mbta)
;; 6.3
#(
(2193 2188 2149 2167 2142 2150 2017 2148 2176 2045 2110 2129 2136 2125 2064)
(4672 4685 4527 4575 4575 4571 4528 4361 4522 4624)
(8575 8449 8429 8395 8233 7597 6065 5706 5463 5446)
(6560 6875 6488 6554 5326 4755 4808 4899 4767 4513)
(3069 3045 2966 2969 3125 2976 3052 2834 3092 2883)
(4478 4738 4720 4836 4837 4695 4752 4573 4555 4408)
(8475 8603 8652 8308 8269 7040 5559 5800 5395 5215)
(6777 6709 6782 5701 5110 5008 4727 4937 4884 4678)
(2908 2915 3166 3041 3084 2929 3130 3052 3121 3116)
(4588 4593 4585 4643 4633 4579 4558 4593 4475 4693)
(8441 8402 8507 8055 8391 7747 5962 5912 5051 5335)
(6728 6562 6916 6615 5305 4744 5122 5071 4906 4853)
(3118 3028 3100 2967 3124 2852 3159 2903 3067 2994)
(4544 4715 4446 4690 4762 4428 4641 4523 4542 4589)
(8496 8426 8459 8343 8099 7225 6055 5344 5287 4817)
(3887 4165 4141 4074 4141 4131 4103 3904 3852 4053)
)
| false |
d4ede03e5a162f558a1d23a14958136340259d18 | 1de827c748e548c119c8407731bb0d5f85217270 | /private/utils.rkt | 1c7f608281b31bc8f2dba39352c5b09748237039 | []
| no_license | iitalics/-lang-musiclibrary | 254856c2a70b605b05ac5cfdad7e8efdbe036477 | 8bf7b7850f4e508aa502166b062f7c6ec6962deb | refs/heads/master | 2020-06-12T16:40:32.829671 | 2019-09-07T22:58:52 | 2019-09-07T22:58:52 | 194,361,339 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 525 | rkt | utils.rkt | #lang racket/base
(provide (all-defined-out))
;; (plural n word [alt]) : string
;; n : nat
;; word, alt : string
(define (plural n word [alt (string-append word "s")])
(if (= n 1) word alt))
;; (recursively-make-directory path) : void
;; path : path-string
(define (recursively-make-directory path)
(let loop ([path (simplify-path path)])
(define-values [root _final _must-be-dir?] (split-path path))
(unless (directory-exists? path)
(when (path? root)
(loop root))
(make-directory path))))
| false |
5500c169f49fcb285c3f2d1d84ff0b8bcd89a03f | 1635b08a486265973af797618ced476b86ca2c68 | /grrparse-lib/private/lr-common.rkt | 482d264aeb9c66af9df30edb06e72bc2b642bc32 | []
| no_license | rmculpepper/parsing | f732c50305e77352eae9f8f4c1d51743d5aedf9f | fcd045f66d643977de30cda7f6aa9c1cec04387d | refs/heads/master | 2021-12-31T07:01:38.613184 | 2021-12-21T23:06:41 | 2021-12-21T23:06:41 | 195,772,365 | 2 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 3,723 | rkt | lr-common.rkt | #lang racket/base
(require racket/match
"common.rkt")
(provide (all-defined-out))
;; PState = (pstate StIndex Label TR Shifts Reduces Gotos Lookahead)
;; StIndex = Nat
;; Label = Any
;; Shifts = Hash[TerminalSymbol => Nat]
;; Reduces = (Listof Reduction)
;; Lookahead = #f | Hash[TerminalSymbol => Reduces]
;; Gotos = Hash[NT => Nat]
(struct pstate (index label tr shift reduce goto lookahead) #:prefab)
(struct reduction (nt index arity ctxn action) #:prefab)
;; TR =
;; | TokenReaderSpec -- read next token using given reader
;; | #f -- this state does not read; shift and lookahead = #f
;; | '#:top -- use the value from the top of the stack; reduces = null
;; Reduction = (reduction NT Nat Nat Action)
;; Action = Nat -- index in values vector
;; | 'accept -- accept, return the top value
;; A Reduction carries its NT (and its production index, for debugging).
;; The arity indicates how many Token values should be popped from the
;; stack and given to the action routine (fetched from the values vector).
;; I'll describe the semantics of Shifts, Reduces, Lookahead, and
;; Gotos first in terms of a nondeterministic (eg, GLR) parser.
;;
;; Suppose that we have already parsed `prefix` and have just entered
;; state `st`, and the next token is `tok`, with terminal symbol `t`.
;;
;; - If shifts maps t to next-st, then (prefix || t) is a viable
;; prefix. We could push tok, push next-st, and then enter next-st.
;;
;; - If reduces contains a reduction for NT, we could perform it
;; (popping some number of slots off the stack) and then "return" to
;; the new top of the stack with the reduced NT value.
;;
;; - If lookahead exists and maps t to a set of reductions, then that
;; set contains all the viable reductions given (prefix || t). The
;; lookahead table may overapproximate --- that is, after performing
;; reductions and gotos we might enter a state where t is neither a
;; valid shift nor a lookahead for a reduce.
;;
;; Suppose that we have returned to `st` with a reduced NT value.
;;
;; - The gotos table maps NT to next-st. We could push the NT-tagged
;; value, push next-st, and then enter next-st.
;; A set of states can be used for deterministic parsing if there are
;; no conflicts of the following sorts:
;;
;; - Shift/Reduce(st, t): state st has a shift table containing t and
;; either (1) a lookahead table with an entry for t or (2) no
;; lookahead table and at least one reduction
;;
;; - Reduce/Reduce(st, t): some state has a lookahead table that maps
;; t to a list of two or more reductions
;;
;; - Reduce/Reduce(st): some state has no lookahead table and a list
;; of two or more reductions
;; A Conflict is one of
;; - (conflict:s/r Nat Terminal)
;; - (conflict:s/r Nat Terminal/#f)
(struct conflict:s/r (st t) #:prefab)
(struct conflict:r/r (st t) #:prefab)
;; ============================================================
;; Error reporting
(struct pretty-state (index label) #:prefab #:reflection-name 'state)
(define (convert-pretty-state v)
(if (pstate? v) (pretty-state (pstate-index v) (pstate-label v)) v))
(struct lr-context (op vsk)
#:methods gen:context
[(define (context->stack self)
(map convert-pretty-state (lr-context-vsk self)))
(define (context->stacks self)
(list (context->stack self)))
(define (context->expected-terminals self)
(match-define (lr-context op (list* v1 s2 _)) self)
(if (eq? op 'top) #f (hash-keys (pstate-shift s2))))
(define (context->error-lines self)
(format "\n expected one of: ~s\n state: ~e"
(context->expected-terminals self)
(convert-pretty-state (cadr (lr-context-vsk self)))))])
| false |
c7f1713f0c3b7197a8a4e35360a2c522951411d0 | a247059c7975df4159f81cb6c8c1d3f3097ce621 | /set02/q2-bb.rkt | 2906a494488cd1e40550d01f5dd9e9d53e6edb5f | []
| no_license | nikhilaraya/Flight-Fastest-Itinerary--Racket | f374adfbb6fea2be2ab31af49c8d079fecc9b216 | 900a15538ad941d5eb20783d9db09e0091bb5155 | refs/heads/master | 2020-04-11T10:55:39.658875 | 2018-12-14T04:21:48 | 2018-12-14T04:21:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 7,999 | rkt | q2-bb.rkt | #lang racket
(require rackunit)
(require rackunit/text-ui)
(require "q2.rkt")
;;; Black-box testing.
;;; Help functions for black-box testing.
;;; bb-accepts? : ListOfLegalInput -> Boolean
;;; Given: a list of LegalInput
;;; Returns: true iff the machine should accept that sequence
(define (bb-accepts? inputs)
(bb-accepts-from-state? (initial-state 3.14159) inputs))
;;; bb-viable? : ListOfLegalInput -> Boolean
;;; Given: a list of LegalInput
;;; Returns: true iff that sequence is a viable prefix
;;; (i.e. a prefix of some sequence that would be accepted)
(define (bb-viable? inputs)
(bb-viable-from-state? (initial-state "nineteen") inputs))
;;; bb-accepts-from-state? : State ListOfLegalInput -> Boolean
;;; Given: a state and a list of LegalInput
;;; Returns: true iff the machine, starting in that state,
;;; should accept that sequence
(define (bb-accepts-from-state? s inputs)
(if (empty? inputs)
(accepting-state? s)
(bb-accepts-from-state? (next-state s (first inputs))
(rest inputs))))
;;; bb-viable-from-state? : ListOfLegalInput -> Boolean
;;; Given: a state and a list of LegalInput
;;; Returns: true iff that sequence is a viable prefix
;;; for the machine starting from the given state
;;; (i.e. a prefix of some sequence that would be accepted)
(define (bb-viable-from-state? s inputs)
(if (empty? inputs)
(not (rejecting-state? s))
(bb-viable-from-state? (next-state s (first inputs))
(rest inputs))))
;;; Black-box tests proper.
(define tests
(test-suite
"q2"
(test-case
"Test #1"
(check-equal? (bb-accepts? '())
false
"machine should not accept empty sequence"))
(test-case
"Test #2"
(check-equal? (bb-viable? '())
true
"machine should not start out in a rejecting state"))
(test-case
"Test #3"
(check-equal? (bb-accepts? (list "e"))
false
"machine should accept e only at end"))
(test-case
"Test #4"
(check-equal? (bb-viable? (list "e"))
false
"machine should reject sequences starting with e"))
(test-case
"Test #5"
(check-equal? (bb-accepts? (list "p"))
false
"machine should not accept p by itself"))
(test-case
"Test #6"
(check-equal? (bb-viable? (list "p"))
true
"machine should not reject sequences starting with p"))
(test-case
"Test #7"
(check-equal? (bb-accepts? (list "s"))
false
"machine should not accept s by itself"))
(test-case
"Test #8"
(check-equal? (bb-viable? (list "s"))
true
"machine should not reject sequences starting with s"))
(test-case
"Test #9"
(check-equal? (bb-accepts? (list "d"))
true
"machine should accept d all by itself"))
(test-case
"Test #10"
(check-equal? (bb-viable? (list "d"))
true
"machine should not reject sequences starting with d"))
(test-case
"Test #11"
(check-equal? (bb-accepts? (list "d" "d" "e"))
true
"machine should accept dde"))
(test-case
"Test #12"
(check-equal? (bb-viable? (list "d" "d" "e"))
true
"machine should not reject sequences starting with dde"))
(test-case
"Test #13"
(check-equal? (bb-accepts? (list "s" "d"))
true
"machine should accept sd"))
(test-case
"Test #14"
(check-equal? (bb-viable? (list "s" "d"))
true
"machine should not reject sequences starting with sd"))
(test-case
"Test #15"
(check-equal? (bb-accepts? (list "s" "d" "d"))
true
"machine should accept sdd"))
(test-case
"Test #16"
(check-equal? (bb-viable? (list "s" "d" "d"))
true
"machine should not reject sequences starting with sdd"))
(test-case
"Test #17"
(check-equal? (bb-accepts? (list "s" "p"))
false
"machine should not accept sp"))
(test-case
"Test #18"
(check-equal? (bb-viable? (list "s" "p"))
true
"machine should not reject sequences starting with sp"))
(test-case
"Test #19"
(check-equal? (bb-accepts? (list "s" "p" "d"))
true
"machine should accept spd"))
(test-case
"Test #20"
(check-equal? (bb-viable? (list "s" "p" "d"))
true
"machine should not reject sequences starting with spd"))
(test-case
"Test #21"
(check-equal? (bb-accepts? (list "d" "p" "d" "p" "d"))
false
"machine should not accept dpdpd"))
(test-case
"Test #22"
(check-equal? (bb-viable? (list "d" "p" "d" "p" "d"))
false
"machine should reject sequences starting with dpdpd"))
(test-case
"Test #23"
(check-equal? (bb-viable? (list "s" "s"))
false
"machine should reject sequences starting with ss"))
(test-case
"Test #24"
(check-equal? (bb-accepts? (list "d" "p" "d" "d" "e"))
true
"machine should accept dpdde"))
(test-case
"Test #25"
(check-equal? (bb-viable? (list "d" "p" "d" "d" "e"))
true
"machine should not reject sequences starting with dpdde"))
(test-case
"Test #26"
(check-equal? (bb-accepts? (list "d" "p" "d" "d" "e" "e"))
false
"machine should not accept dpddee"))
(test-case
"Test #27"
(check-equal? (bb-viable? (list "d" "p" "d" "d" "e" "e"))
false
"machine should reject sequences starting with dpddee"))
(test-case
"Test #28"
(check-equal? (bb-viable? (list "d" "d" "s"))
false
"machine should reject sequences starting with dds"))
(test-case
"Test #29"
(check-equal? (bb-viable? (list "d" "d" "p" "p"))
false
"machine should reject sequences starting with ddpp"))
(test-case
"Test #30"
(check-equal? (bb-viable? (list "d" "d" "p" "s"))
false
"machine should reject sequences starting with ddps"))
(test-case
"Test #31"
(check-equal? (bb-viable? (list "d" "d" "p" "e"))
false
"machine should reject sequences starting with ddpe"))
(test-case
"Test #32"
(check-equal? (bb-viable? (list "s" "e"))
false
"machine should reject sequences starting with se"))
(test-case
"Test #33"
(check-equal? (bb-viable? (list "s" "p" "p"))
false
"machine should reject sequences starting with spp"))
(test-case
"Test #34"
(check-equal? (bb-viable? (list "s" "p" "s"))
false
"machine should reject sequences starting with sps"))
(test-case
"Test #35"
(check-equal? (bb-viable? (list "s" "p" "e"))
false
"machine should reject sequences starting with spe"))
(test-case
"Test #36"
(check-equal? (bb-viable? (list "d" "d" "p" "d" "s"))
false
"machine should reject sequences starting with ddpds"))
))
(run-tests tests 'verbose)
| false |
a55500402e791627bef46a46e8263d9bf9a5a0e6 | f116e7f063fd4e0c0cb53f34350c258674f7fa59 | /make-archive-lib.rkt | 92c0a60e0b82e91412781d35406a50b28416bb58 | []
| no_license | racket-dep-fixer/drdr | b2ef62f23054878cafce6ef48e6dc6c7547c8b90 | f34e88a151316eaf0850c407ec5871cf6edd352c | refs/heads/master | 2021-01-15T20:19:16.033472 | 2015-09-08T15:43:41 | 2015-09-08T15:43:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 917 | rkt | make-archive-lib.rkt | #lang racket/base
(require racket/system
racket/local
racket/file
"config.rkt"
"archive.rkt"
"path-utils.rkt"
"dirstruct.rkt")
(define (make-archive rev)
(define archive-path (revision-archive rev))
(if (file-exists? archive-path)
(begin (printf "r~a is already archived\n" rev)
#t)
(begin (local [(define tmp-path (make-temporary-file))]
(printf "Archiving r~a\n" rev)
(safely-delete-directory (revision-trunk.tgz rev))
(safely-delete-directory (revision-trunk.tar.7z rev))
(create-archive tmp-path (revision-dir rev))
(rename-file-or-directory tmp-path archive-path)
(safely-delete-directory (revision-log-dir rev))
(safely-delete-directory (revision-analyze-dir rev)))
#f)))
(provide make-archive)
| false |
8ca54ca1a283a7576647787c4b0e53782683d826 | 9900dac194d9e0b69c666ef7af5f1885ad2e0db8 | /IndexTypingRules.rkt | e0aa5951705bc221e3e98d46cce636d0225a9b7c | []
| no_license | atgeller/Wasm-prechk | b1c57616ce1c7adbb4b9a6e1077aacfa39536cd2 | 6d04a5474d3df856cf8af1877638b492ca8d0f33 | refs/heads/canon | 2023-07-20T10:58:28.382365 | 2023-07-11T22:58:49 | 2023-07-11T22:58:49 | 224,305,190 | 5 | 1 | null | 2021-07-01T18:09:17 | 2019-11-26T23:34:11 | Racket | UTF-8 | Racket | false | false | 17,700 | rkt | IndexTypingRules.rkt | #lang racket
(require redex
"IndexTypes.rkt"
"SubTyping.rkt"
"TableValidation.rkt"
"Utilities.rkt"
"WASM-Redex/Utilities.rkt")
(provide ⊢ tfi-ok)
(define-metafunction WASMIndexTypes
tfi-ok : tfiann -> boolean
[(tfi-ok (((ti_1 ...) φ_1) -> ((ti_2 ...) φ_2)))
,(and (subset? (term (domain-φ φ_1)) (term (domain-tis (ti_1 ...))))
(subset? (term (domain-φ φ_2)) (term (domain-tis (merge (ti_1 ...) (ti_2 ...)))))
(term (distinct (domain-tis (ti_1 ...))))
(term (distinct (doamin-tis (ti_2 ...)))))])
(define-judgment-form WASMIndexTypes
#:contract (⊢ C (e ...) tfi)
[(where #f (in ivar Γ)) ;; ivar fresh
--- "Const"
(⊢ C ((t const c)) ((() locals Γ φ) -> (((t ivar)) locals (Γ (t ivar)) (φ (= ivar (t c))))))]
[(where #f (in ivar_2 Γ)) ;; ivar fresh
--- "Unop"
(⊢ C ((t unop)) ((((t ivar_1)) locals Γ φ) -> (((t ivar_2)) locals (Γ (t ivar_2)) (φ (= ivar_2 ((t unop) ivar_1))))))]
[(side-condition (satisfies Γ φ (empty (not (= ivar_2 (t 0))))))
(where #f (in ivar_3 Γ)) ;; ivar_3 fresh
---------------------------------------------------------- "Div-S-Prechk"
(⊢ C ((t div-s/unsafe)) ((((t ivar_1) (t ivar_2)) locals Γ φ)
-> (((t ivar_3)) locals (Γ (t ivar_3)) (φ (= ivar_3 ((t div-s) ivar_1 ivar_2))))))]
[(side-condition (satisfies Γ φ (empty (not (= ivar_2 (t 0))))))
(where #f (in ivar_3 Γ)) ;; ivar_3 fresh
---------------------------------------------------------- "Div-U-Prechk"
(⊢ C ((t div-u/unsafe)) ((((t ivar_1) (t ivar_2)) locals Γ φ)
-> (((t ivar_3)) locals (Γ (t ivar_3)) (φ (= ivar_3 ((t div-u) ivar_1 ivar_2))))))]
[(side-condition (satisfies Γ φ (empty (not (= ivar_2 (t 0))))))
(where #f (in ivar_3 Γ)) ;; ivar_3 fresh
---------------------------------------------------------- "Rem-S-Prechk"
(⊢ C ((t rem-s/unsafe)) ((((t ivar_1) (t ivar_2)) locals Γ φ)
-> (((t ivar_3)) locals (Γ (t ivar_3)) (φ (= ivar_3 ((t rem-s) ivar_1 ivar_2))))))]
[(side-condition (satisfies Γ φ (empty (not (= ivar_2 (t 0))))))
(where #f (in ivar_3 Γ)) ;; ivar_3 fresh
---------------------------------------------------------- "Rem-U-Prechk"
(⊢ C ((t rem-u/unsafe)) ((((t ivar_1) (t ivar_2)) locals Γ φ)
-> (((t ivar_3)) locals (Γ (t ivar_3)) (φ (= ivar_3 ((t rem-u) ivar_1 ivar_2))))))]
[(where (binop_!_1 binop_!_1 binop_!_1) (binop div-s/unsafe div-u/unsafe))
(where (binop_!_1 binop_!_1 binop_!_1) (binop rem-s/unsafe rem-u/unsafe))
(where #f (in ivar_3 Γ)) ;; ivar_3 fresh
------------------------------------------------ "Binop"
(⊢ C ((t binop)) ((((t ivar_1) (t ivar_2)) locals Γ φ)
-> (((t ivar_3)) locals (Γ (t ivar_3)) (φ (= ivar_3 ((t binop) ivar_1 ivar_2))))))]
[(where #f (in ivar_2 Γ)) ;; ivar_2 fresh
-------- "Testop"
(⊢ C ((t testop)) ((((t ivar)) locals Γ φ)
-> (((i32 ivar_2)) locals (Γ (i32 ivar_2)) (φ (= ivar_2 ((t testop) ivar))))))]
[(where #f (in ivar_3 Γ)) ;; ivar_3 fresh
------- "Relop"
(⊢ C ((t relop)) ((((t ivar_1) (t ivar_2)) locals Γ φ)
-> (((t ivar_3)) locals (Γ (t ivar_3)) (φ (= ivar_3 ((t relop) ivar_1 ivar_2))))))]
[(where (t_!_1 t_!_1) (t_1 t_2))
(side-condition ,(or (and (term (inn? t_1)) (term (inn? t_2))
(< (term (bit-width t_1)) (term (bit-width t_2))))
(and (term (fnn? t_1)) (term (fnn? t_2)))))
(where #f (in ivar_1 Γ)) ;; ivar_1 fresh
---------------------------------------------------------------------------- "Convert"
(⊢ C ((t_1 convert t_2)) ((((t_2 ivar_2)) locals Γ φ)
-> (((t_1 ivar_1)) locals (Γ (t_1 ivar_1)) (φ (= ivar_1 ((t_1 convert t_2) ivar_2))))))]
[(where (t_!_1 t_!_1) (t_1 t_2))
(side-condition ,(nor (and (term (inn? t_1)) (term (inn? t_2))
(< (term (bit-width t_1)) (term (bit-width t_2))))
(and (term (fnn? t_1)) (term (fnn? t_2)))))
(where #f (in ivar_1 Γ)) ;; ivar_1 fresh
----------------------------------------------------------------------------- "Convert-SX"
(⊢ C ((t_1 convert t_2 sx)) ((((t_2 ivar_2)) locals Γ φ)
-> (((t_1 ivar_1)) locals (Γ (t_1 ivar_1)) (φ (= ivar_1 ((t_1 convert t_2 sx) ivar_2))))))]
[(where (t_!_1 t_!_1) (t_1 t_2))
(side-condition ,(= (term (bit-width t_1)) (term (bit-width t_2))))
(where #f (in ivar_1 Γ)) ;; ivar_1 fresh
------------------------------------------------------------------- "Reinterpret"
(⊢ C ((t_1 reinterpret t_2)) ((((t_2 ivar_2)) locals Γ φ)
-> (((t_1 ivar_1)) locals (Γ (t_1 ivar_1)) (φ (= ivar_1 ((t_1 reinterpret t_2) ivar_2))))))]
[(where (t ...) (context-locals C))
--- "Unreachable"
(⊢ C (unreachable) (((ti_1 ...) locals Γ_1 φ) -> ((ti_2 ...) ((t ivar) ...) Γ_2 φ_2)))]
[--- "Nop"
(⊢ C (nop) ((() locals Γ φ) -> (() locals Γ φ)))]
[--- "Drop"
(⊢ C (drop) ((((t ivar)) locals Γ φ) -> (() locals Γ φ)))]
[(where #f (in ivar_3 Γ)) ;; ivar_3 fresh
--- "Select"
(⊢ C (select) ((((t ivar_1) (t ivar_2) (i32 ivar)) locals Γ φ)
-> (((t ivar_3)) locals (Γ (t ivar)) (φ (if (= ivar (i32 0)) (= ivar_3 ivar_2) (= ivar_3 ivar_1))))))]
[(where C_2 (add-label C_1 (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) φ_2)))
(⊢ C_2 (e ...) ((((t_pre ivar_1) ...) ((t_l ivar_l_1) ...) Γ_1 φ_1) -> (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) Γ_2 φ_3)))
(side-condition (satisfies Γ_2 φ_3 φ_2))
--------------------------- "Block"
(⊢ C_1 ((block ((t_pre ...) -> (t_post ...)) (e ...)))
((((t_pre ivar_1) ...) ((t_l ivar_l_1) ...) Γ_1 φ_1) -> (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) Γ_2 φ_2)))]
;; Have to inline C_2 here since φ_3 is only introduced in this line
[(⊢ (add-label C_1 (((t_pre ivar_1) ...) ((t_l ivar_l_1) ...) φ_3)) (e ...) ((((t_pre ivar_1) ...) ((t_l ivar_l_1) ...) Γ_1 φ_3) -> (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) Γ_2 φ_4)))
(side-condition (satisfies Γ_1 φ_1 φ_3))
(side-condition (satisfies Γ_2 φ_4 φ_2))
--------------------------- "Loop"
(⊢ C_1 ((loop ((t_pre ...) -> (t_post ...)) (e ...)))
((((t_pre ivar_1) ...) ((t_l ivar_l_1) ...) Γ_1 φ_1) -> (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) Γ_2 φ_2)))]
[(where C_2 (add-label C_1 (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) φ_2)))
(⊢ C_2 (e_1 ...) ((((t_pre ivar_1) ...) ((t_l ivar_l_1) ...) Γ_1 (φ_1 (not (= ivar_s (i32 0))))) -> (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) Γ_2 φ_3)))
(⊢ C_2 (e_2 ...) ((((t_pre ivar_1) ...) ((t_l ivar_l_1) ...) Γ_1 (φ_1 (= ivar_s (i32 0)))) -> (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) Γ_2 φ_4)))
(side-condition (satisfies Γ_2 φ_3 φ_2))
(side-condition (satisfies Γ_2 φ_4 φ_2))
--------------------------- "If"
(⊢ C_1 ((if ((t_pre ...) -> (t_post ...)) (e_1 ...) else (e_2 ...)))
((((t_pre ivar_1) ... (i32 ivar_s)) ((t_l ivar_l_1) ...) Γ_1 φ_1) -> (((t_post ivar_2) ...) ((t_l ivar_l_2) ...) Γ_2 φ_2)))]
[(where (((t ivar_pat) ...) ((t_l ivar_l_pat) ...) φ) (reverse-get (context-labels C) j))
(side-condition (satisfies Γ_1 φ_1 (substitute-ivars (ivar ivar_pat) ... (ivar_l ivar_l_pat) ... φ)))
(where (t_l ...) (context-locals C))
-------------------------------------------------------- "Br"
(⊢ C ((br j))
(((ti_1 ... (t ivar) ...) ((t_l ivar_l) ...) Γ_1 φ_1)
-> ((ti_2 ...) ((t_l ivar_l_post) ...) Γ_2 φ_2)))]
[(where (((t ivar_pat) ...) ((t_l ivar_l_pat) ...) φ) (reverse-get (context-labels C) j))
(side-condition (satisfies Γ_1 (φ_1 (not (= ivar_s (i32 0)))) φ #;(substitute-ivars (ivar ivar_pat) ... (ivar_l ivar_l_pat) ... φ)))
------------------------------------------------------------------------------ "Br-If"
(⊢ C ((br-if j))
((((t ivar) ... (i32 ivar_s)) ((t_l ivar_l) ...) Γ_1 φ_1)
-> (((t ivar) ...) ((t_l ivar_l) ...) Γ_1 (φ_1 (= ivar_s (i32 0))))))]
[(where ((((t_lbl ivar_pat) ...) ((t_l_lbl ivar_l_pat) ...) φ) ...) ((reverse-get (context-labels C) j) ...))
(side-condition (same ((t_lbl ...) ...) (t ...)))
(side-condition (same ((t_l_lbl ...) ...) (t_l ...)))
(side-condition (satisfies-all Γ_1 φ_1 ((substitute-ivars (ivar_3 ivar_pat) ... (ivar_l ivar_l_pat) ... φ) ...)))
(side-condition (equiv-gammas Γ_2 (build-gamma (ti_2 ... (t_l ivar_l_post) ...))))
(where (t_l ...) (context-locals C))
-------------------------------------------------------------- "Br-Table"
(⊢ C ((br-table j ...))
(((ti_1 ... (t ivar_3) ... (i32 ivar)) ((t_l ivar_l) ...) Γ_1 φ_1)
-> ((ti_2 ...) ((t_l ivar_l_post) ...) Γ_2 (empty ⊥))))]
[(where (((t ivar_pat) ...) _ φ) (context-return C))
(side-condition (satisfies Γ_1 φ_1 (substitute-ivars (ivar ivar_pat) ... φ))) ;; Strengthen precondition
(side-condition (equiv-gammas Γ_2 (build-gamma (ti_2 ... (t_l ivar_l) ...))))
(where (t_l ...) (context-locals C))
-------------------------------------- "Return"
(⊢ C (return)
(((ti_1 ... (t ivar) ...) locals Γ_1 φ_1) -> ((ti_2 ...) ((t_l ivar_l) ...) Γ_2 (empty ⊥))))]
[(where ((((t_pre ivar_2) ...) φ_2) -> (((t_post ivar_3) ...) φ_3)) (context-func C j))
(side-condition (satisfies Γ_1 φ_1 (substitute-ivars (ivar_1 ivar_2) ... φ_2))) ;; Strengthen precondition
(side-condition (distinct (merge (ivar_4 ...) (domain-Γ Γ_1)))) ;; (ivar_4 ...) fresh
(side-condition (equiv-gammas Γ_4 (union Γ_1 (build-gamma ((t_post ivar_4) ...)))))
(where φ_4 (union φ_1 (substitute-ivars (ivar_1 ivar_2) ... (ivar_4 ivar_3) ... φ_3)))
--------------------------- "Call"
(⊢ C ((call j))
((((t_pre ivar_1) ...) locals Γ_1 φ_1)
-> (((t_post ivar_4) ...) locals Γ_4 φ_4)))]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[(side-condition (tfi-ok ((((t_pre ivar_2) ...) () φ_2) -> (((t_post ivar_3) ...) () φ_3))))
(where (j _ ...) (context-table C))
(side-condition (satisfies Γ_1 φ_1 (substitute-ivars (ivar_1 ivar_2) ... φ_2))) ;; Strengthen precondition
(side-condition (distinct (merge (ivar_4 ...) (domain-Γ Γ_1)))) ;; (ivar_4 ...) fresh
(side-condition (equiv-gammas Γ_4 (union Γ_1 (build-gamma ((t_post ivar_4) ...)))))
(where φ_4 (union φ_1 (substitute-ivars (ivar_4 ivar_3) ... φ_3)))
--------------------------- "Call-Indirect"
(⊢ C ((call-indirect ((((t_pre ivar_2) ...) φ_2) -> (((t_post ivar_3) ...) φ_3))))
((((t_pre ivar_1) ... (i32 ivar)) locals Γ_1 φ_1)
-> (((t_post ivar_4) ...) locals Γ_4 φ_4)))]
[(side-condition (tfi-ok ((((t_pre ivar_2) ...) () φ_2) -> (((t_post ivar_3) ...) () φ_3))))
(where (j tfiann ...) (context-table C))
(side-condition (satisfies Γ_1 φ_1 (substitute-ivars (ivar_1 ivar_2) ... φ_2))) ;; Strengthen precondition
(side-condition (valid-table-call ((((t_pre ivar_2) ...) () φ_2) -> (((t_post ivar_3) ...) () φ_3)) ivar (tfiann ...) Γ_1 φ_1))
(side-condition (distinct (merge (ivar_4 ...) (domain-Γ Γ_1))))
(side-condition (equiv-gammas Γ_4 (union Γ_1 (build-gamma ((t_post ivar_4) ...)))))
(where φ_4 (union φ_1 (substitute-ivars (ivar_4 ivar_3) ... φ_3)))
------------------------------------------------------- "Call-Indirect-Prechk"
(⊢ C ((call-indirect/unsafe ((((t_pre ivar_2) ...) φ_2) -> (((t_post ivar_3) ...) φ_3))))
((((t_pre ivar_1) ... (i32 ivar)) locals Γ_1 φ_1)
-> (((t_post ivar_4) ...) locals Γ_4 φ_4)))]
[(where t (context-local C j))
(where (t ivar) (index locals j))
(where #f (in ivar_2 Γ))
--------------------------------- "Get-Local"
(⊢ C ((get-local j))
((() locals Γ φ)
-> (((t ivar_2)) locals (Γ (t ivar_2)) (φ (= ivar_2 ivar)))))]
[(where t_2 (context-local C j))
(where locals_2 (with-index locals_1 j (t_2 ivar)))
-------------------------------------------- "Set-Local"
(⊢ C ((set-local j))
((((t_2 ivar)) locals_1 Γ φ)
-> (() locals_2 Γ φ)))]
[(where t (context-local C j))
(where locals_2 (with-index locals_1 j (t ivar)))
(where #f (in ivar_2 Γ))
---------------------------------- "Tee-Local"
(⊢ C ((tee-local j))
((((t ivar)) locals_1 Γ φ)
-> (((t ivar_2)) locals_2 (Γ (t ivar_2)) (φ (= ivar_2 ivar)))))]
[(where (_ t_2) (context-global C j))
(where #f (in ivar Γ)) ;; ivar fresh
------------------- "Get-Global"
(⊢ C ((get-global j))
((() locals Γ φ)
-> (((t_2 ivar)) locals (Γ (t_2 ivar)) φ)))]
[(where (var t_2) (context-global C j))
------------------------------------ "Set-Global"
(⊢ C ((set-global j))
((((t_2 ivar)) locals Γ φ)
-> (() locals Γ φ)))]
[(where n (context-memory C))
(side-condition ,(<= (expt 2 (term a)) (/ (term (bit-width t)) 8)))
(side-condition (satisfies Γ φ_1 (empty (valid-address ivar o (bit-width t) n))))
(where #f (in ivar_2 Γ)) ;; ivar_2 fresh
----------------------------------------------------------------------- "Load-Prechk"
(⊢ C ((t load/unsafe a o)) ((((i32 ivar)) locals Γ φ_1)
-> (((t ivar_2)) locals (Γ (t ivar_2)) φ_1)))]
[(where n (context-memory C))
(side-condition ,(<= (expt 2 (term a)) (/ (term (packed-bit-width tp)) 8)))
(side-condition ,(< (term (packed-bit-width tp)) (term (bit-width t))))
(side-condition (satisfies Γ φ_1 (empty (valid-address ivar o (packed-bit-width t) n))))
(where inn t)
(where #f (in ivar_2 Γ)) ;; ivar_2 fresh
----------------------------------------------------------------------- "Load-Packed-Prechk"
(⊢ C ((t load/unsafe (tp sx) a o)) ((((i32 ivar)) locals Γ φ_1)
-> (((t ivar_2)) locals (Γ (t ivar_2)) φ_1)))]
[(where n (context-memory C))
(side-condition ,(<= (expt 2 (term a)) (/ (term (bit-width t)) 8)))
(side-condition (satisfies Γ φ_1 (empty (valid-address ivar o (bit-width t) n))))
------------------------------------------------------------------------- "Store-Prechk"
(⊢ C ((t store/unsafe a o)) ((((i32 ivar) (t ivar_1)) locals Γ φ_1)
-> (() locals Γ φ_1)))]
[(where n (context-memory C))
(side-condition ,(<= (expt 2 (term a)) (/ (term (packed-bit-width tp)) 8)))
(side-condition ,(< (term (packed-bit-width tp)) (term (bit-width t))))
(side-condition (satisfies Γ φ_1 (empty (valid-address ivar o (packed-bit-width t) n))))
(where inn t)
------------------------------------------------------------------------------ "Store-Packed-Prechk"
(⊢ C ((t store/unsafe tp a o)) ((((i32 ivar) (t ivar_1)) locals Γ φ_1)
-> (() locals Γ φ_1)))]
[(where n (context-memory C))
(side-condition ,(<= (expt 2 (term a)) (/ (term (bit-width t)) 8)))
(where #f (in ivar_2 Γ)) ;; ivar_2 fresh
------------------------------------------------------------- "Load"
(⊢ C ((t load a o)) ((((i32 ivar_1)) locals Γ φ) -> (((t ivar_2)) locals (Γ (t ivar_2)) φ)))]
[(where n (context-memory C))
(side-condition ,(<= (expt 2 (term a)) (/ (term (packed-bit-width tp)) 8)))
(side-condition ,(< (term (packed-bit-width tp)) (term (bit-width t))))
(where inn t)
(where #f (in ivar_2 Γ)) ;; ivar_2 fresh
----------------------------------------------------------------------- "Load-Packed"
(⊢ C ((t load (tp sx) a o)) ((((i32 ivar_1)) locals Γ φ) -> (((t ivar)) locals (Γ (t ivar_2)) φ)))]
[(where n (context-memory C))
(side-condition ,(<= (expt 2 (term a)) (/ (term (bit-width t)) 8)))
------------------------------------------------------------- "Store"
(⊢ C ((t store a o)) ((((i32 ivar_1) (t ivar_2)) locals Γ φ) -> (() locals Γ φ)))]
[(where n (context-memory C))
(side-condition ,(<= (expt 2 (term a)) (/ (term (packed-bit-width tp)) 8)))
(side-condition ,(< (term (packed-bit-width tp)) (term (bit-width t))))
(where inn t)
----------------------------------------------------------------------- "Store-Packed"
(⊢ C ((t store tp a o)) ((((i32 ivar_1) (t ivar_2)) locals Γ φ) -> (() locals Γ φ)))]
[(where n (context-memory C))
(where #f (in ivar Γ))
---------------------------- "Current-Memory"
(⊢ C (current-memory) ((() locals Γ φ) -> (((i32 ivar)) locals (Γ (i32 ivar)) φ)))]
[(where n (context-memory C))
(where #f (in ivar_2 Γ))
---------------------------- "Grow-Memory"
(⊢ C (grow-memory) ((((i32 ivar_1)) locals Γ φ) -> (((i32 ivar_2)) locals (Γ (i32 ivar_2)) φ)))]
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[------------------------------------------ "Empty"
(⊢ C () ((() locals Γ φ) -> (() locals Γ φ)))]
[(⊢ C (e_1 ...) (ticond_1 -> ticond_2))
(⊢ C (e_2) (ticond_2 -> ticond_3))
-------------------------------------------- "Composition"
(⊢ C (e_1 ... e_2) (ticond_1 -> ticond_3))]
;; Stack polymorphism
[(⊢ C (e ...) (((ti_1 ...) locals Γ_1 φ_1)
-> ((ti_2 ...) locals Γ_2 φ_2)))
------------------------------------------------------ "Stack-Poly"
(⊢ C (e ...) (((ti ... ti_1 ...) locals Γ_1 φ_1)
-> ((ti ... ti_2 ...) locals Γ_2 φ_2)))])
| false |
56b865d237a4a0d653f93eeb7e4f6312e44b0e77 | 259c841b8a205ecaf9a5980923904452a85c5ee5 | /NBE/nbe.rkt | 2fe58828d5f5f09331bab0b66e406a4598132105 | []
| no_license | Kraks/the-little-typer | ca7df88c76e4ffc5b8e36ed910bcaa851fadf467 | 81d69d74aba2d63f9634055ce9f2c313b8bbff3e | refs/heads/master | 2020-04-12T00:10:30.654397 | 2019-03-05T02:09:32 | 2019-03-05T02:09:32 | 162,191,489 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,170 | rkt | nbe.rkt | #lang racket
#|
Code from David Christiansen's tutorial:
http://davidchristiansen.dk/tutorials/nbe
|#
(require rackunit)
#| Values and Runtime Environments |#
(struct CLOS (env var body)
#:transparent)
(define (extend ρ x v)
(cons (cons x v) ρ))
(define (val ρ e)
(match e
[`(λ (,x) ,b) (CLOS ρ x b)]
[x #:when (symbol? x)
(let ([xv (assv x ρ)])
(if xv (cdr xv)
(error 'val "unknown variable ~a" x)))]
[`(,rator ,rand)
(do-ap (val ρ rator) (val ρ rand))]))
(define (do-ap clos arg)
(match clos
[(CLOS ρ x b)
(val (extend ρ x arg) b)]))
(check-equal? (val '() '(λ (x) (λ (y) y)))
(CLOS '() 'x '(λ (y) y)))
(check-equal? (val '() '((λ (x) x) (λ (x) x)))
(CLOS '() 'x 'x))
(check-exn exn:fail? (λ () (val '() 'x)))
(define (run-prog ρ exprs)
(match exprs
['() (void)]
[(cons `(define ,x ,e) rest)
(let ([v (val ρ e)])
(run-prog (extend ρ x v) rest))]
[(cons e rest)
(displayln (val ρ e))
(run-prog ρ rest)]))
(check-equal?
(run-prog '() '((define id (λ (x) x))
(id (λ (y) (λ (z) (z y))))))
(void)) | false |
e5bff4b9c4664f6206f85bbd6bf8222415de4843 | ddce48d87d525bc2b82b4f6fa70515471cdc4fd0 | /info.rkt | 84a67cead3e4d6c93dd62984ddc15ef04059edd5 | [
"MIT",
"CC-BY-3.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | jadudm/paddle | 0d335326efd1c40259f9650506f27cb3172f3c81 | 38e2ff034635b988549d875bb9d8bd1ab0252ad2 | refs/heads/master | 2020-04-12T23:37:19.465149 | 2020-03-24T11:12:07 | 2020-03-24T11:12:07 | 162,825,144 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 252 | rkt | info.rkt | #lang info
(define collection "paddle")
(define deps '("base"
"draw-lib"
"gui-lib"
"sgl"))
(define scribblings '(("scribblings/paddle.scrbl"
#;(multi-page)
))) | false |
0832951e319a8a9de58bbe1e98876497504ce004 | 117871aaa4d1a16b5724502270993cc687201063 | /test/dssl2/comparisons.rkt | 74ea7b147da227b73562cd666196cf03a3d4521a | []
| no_license | li-kangaroo/dssl2 | b8c622052a30909be8bf7756883870eb390e9cfb | c41c5de6882811acb740646b43c74ce608b11600 | refs/heads/main | 2023-05-12T06:23:09.557404 | 2021-05-26T16:02:39 | 2021-05-26T16:02:39 | 354,871,235 | 0 | 0 | null | 2021-04-05T14:57:37 | 2021-04-05T14:57:37 | null | UTF-8 | Racket | false | false | 304 | rkt | comparisons.rkt | #lang dssl2
assert 2 < 3
assert not 2 < 2
assert 2 <= 3
assert 2 <= 2
assert 3 > 2
assert 3 >= 2
assert "a" < "b"
assert "a" <= "b"
assert not "a" > "b"
assert not "a" >= "b"
# New behavior in Object DSSL:
assert not 2 < "3"
assert not 3 < "3"
assert not 4 < "3"
assert not 3 == "3"
assert not 3 > "3" | false |
11682364fad72163f9e4f766202d5d27731406f7 | 0f6e59eeda27cfb61e0623e5e795c514da53f95f | /macro-debugger/tests/macro-debugger/test-setup.rkt | 011dbf9ae95c401f14e50aecfa1b93efccf68808 | [
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | racket/macro-debugger | 1679a781fe0d601bb0e9c97d224f0d06ee777b24 | 047c36a4d6a0b15a31d0fa7509999b9bf2c5f295 | refs/heads/master | 2023-08-24T04:09:14.428768 | 2023-01-18T02:27:26 | 2023-01-18T02:27:26 | 27,413,285 | 10 | 14 | NOASSERTION | 2021-05-04T22:30:05 | 2014-12-02T03:30:26 | Racket | UTF-8 | Racket | false | false | 2,990 | rkt | test-setup.rkt | #lang racket/base
(require macro-debugger/model/debug)
;; Testing facilities for macro debugger
(provide trace/ns
trace/t
trace/k
testing-namespace
hide-all-policy
hide-none-policy
T-policy
Tm-policy
stx/hide-none
stx/hide-all
stx/hide-standard
stx/hide-T
stx/hide-Tm)
(define (trace/t expr)
(trace/ns expr #f))
(define (trace/k expr)
(trace/ns expr #t))
;; Use just 'expand', not 'expand/compile-time-evals',
;; for test backward compatibility
;; FIXME: add tests that use 'expand/compile-time-evals'
(define (trace/ns expr kernel?)
(parameterize ((current-namespace (choose-namespace kernel?)))
(trace expr expand)))
(define (choose-namespace kernel?)
(if kernel? kernel-namespace testing-namespace))
(define helper-module
'(module helper racket/base
(require tests/macro-debugger/helper/helper)
(provide (all-from-out tests/macro-debugger/helper/helper))))
(define kernel-namespace (make-base-empty-namespace))
(parameterize ((current-namespace kernel-namespace))
(namespace-require ''#%kernel)
(eval '(#%require (for-syntax '#%kernel)))
(eval helper-module)
(eval '(define-syntaxes (id)
(lambda (stx)
(cadr (syntax->list stx)))))
(eval '(define-syntaxes (Tid)
(lambda (stx)
(cadr (syntax->list stx)))))
(eval '(define-syntaxes (Tlist)
(lambda (stx)
(datum->syntax (quote-syntax here)
(list (quote-syntax list)
(cadr (syntax->list stx)))))))
(eval '(define-syntaxes (wrong)
(lambda (stx)
(raise-syntax-error #f "wrong" stx)))))
(define testing-namespace (make-base-namespace))
(parameterize ((current-namespace testing-namespace))
(eval '(require scheme/base))
(eval '(require (for-syntax scheme/base)))
(eval helper-module)
(eval '(require 'helper)))
;; Specialized macro hiding tests
(define (stx/hide-policy d policy)
(define-values (_steps _binders _uses stx _exn)
(parameterize ((macro-policy policy))
(reductions+ d)))
stx)
(define (stx/hide-none d)
(stx/hide-policy d hide-none-policy))
(define (stx/hide-all d)
(stx/hide-policy d hide-all-policy))
(define (stx/hide-standard d)
(stx/hide-policy d standard-policy))
(define (stx/hide-T d)
(stx/hide-policy d T-policy))
(define (stx/hide-Tm d)
(stx/hide-policy d Tm-policy))
;; T hiding policy
;; ALL macros & primitives are hidden
;; EXCEPT those starting with T (Tlist and Tlet)
(define (T-policy id)
(or (memq (syntax-e id) '())
(regexp-match #rx"^T" (symbol->string (syntax-e id)))))
;; Tm hiding policy
;; ALL MACROS & primitive tags are hidden
;; EXCEPT those starting with T (Tlist and Tlet)
;; EXCEPT module (=> #%module-begin gets tagged)
(define (Tm-policy id)
(or (memq (syntax-e id) '(module))
(regexp-match #rx"^T" (symbol->string (syntax-e id)))))
| true |
a48d354e68e38b4676651d8abc335f238314aaff | 8efc1131fab877289b587ce705016a74f28b3df6 | /05.scrbl | 224f46bbbd93dce8705afdc125ea7bc9a0736bc8 | []
| no_license | Langeeker/RacketGuideInChineseForScribble | ed484638c4e9ce0ccfa2fc7a6b303b8735eb0ddb | 4fb07d376a2391f62e411b825eb825e3388ae411 | refs/heads/master | 2023-04-18T04:37:01.206383 | 2018-02-20T15:33:02 | 2018-02-20T15:33:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 796 | scrbl | 05.scrbl | ;05.scrbl
;5 自定义的数据类型
#lang scribble/doc
@(require scribble/manual
scribble/eval
scribble/bnf
"guide-utils.rkt"
(for-label racket/dict racket/serialize))
@title[#:tag "define-struct"]{自定义的数据类型}
新的数据类型通常用@racket[struct]表来创造,这是本章的主题。基于类的对象系统,我们参照《@secref["classes"]》,它提供了用于创建新的数据类型的另一种机制,但即使是类和对象也是结构类型的实现方式。
@include-section["05.01.scrbl"]
@include-section["05.02.scrbl"]
@include-section["05.03.scrbl"]
@include-section["05.04.scrbl"]
@include-section["05.05.scrbl"]
@include-section["05.06.scrbl"]
@include-section["05.07.scrbl"]
@include-section["05.08.scrbl"]
| false |
929ff5d5b7a2f7d182a86f5cae39bd44884b7545 | 5d9ee30369357189ca54896b7abc120d466bf401 | /mkr-redeemer.rkt | 4217ed75ff0adedfc7b9e17a5838907a9a90aa40 | []
| no_license | dapphub/dapp-wizard | b2ed22cfd9e717024dbe3232c47cf1cf69dc0533 | 1ee00475aa724f3968385775e83adfcff03ee7d7 | refs/heads/master | 2021-08-31T08:24:59.494941 | 2017-12-20T19:40:08 | 2017-12-20T19:40:08 | 114,924,493 | 3 | 2 | null | null | null | null | UTF-8 | Racket | false | false | 274 | rkt | mkr-redeemer.rkt | #lang s-exp dapp/wizard
(say "Welcome to the MKR redemption process.\n"
"There is a new version of the MKR token.\n"
"If you hold coins of the old version, you can redeem them.")
(say "Please choose the account which holds MKR.")
(say "Using " (choose-account))
| false |
c5aeda7a93e2bc0c0fbfd0cd0f06c2de00a86bb2 | d29c2c4061ea24d57d29b8fce493d116f3876bc0 | /tests/test-macro-5.rkt | dac87837620b8d3b845039f6dd90a81a76272d94 | []
| no_license | jbejam/magnolisp | d7b28e273550ff0df884ecd73fb3f7ce78957d21 | 191d529486e688e5dda2be677ad8fe3b654e0d4f | refs/heads/master | 2021-01-16T19:37:23.477945 | 2016-10-01T16:02:42 | 2016-10-01T16:02:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 826 | rkt | test-macro-5.rkt | #lang magnolisp
#|
Conditional compilation, #if ... #elif ... #endif style.
|#
(require (for-syntax racket/syntax))
(define-syntax (static-cond stx)
(syntax-case stx (else)
[(_) #'(void)]
[(_ [else e]) #'e]
[(_ [c e] . more)
(if (syntax-local-eval #'c)
#'e
#'(static-cond . more))]))
(begin-for-syntax
(define on-harmattan #f)
(define on-bb10 #f)
(define on-sailfish #t)
(define on-console #f))
(typedef World #:: (foreign))
(define (init-qt-ui w) #::
([type (-> World World)] foreign)
w)
(define (init-ncurses-ui w)
#:: ([type (-> World World)] foreign)
w)
(define (init-any-ui w)
#:: (export ^(-> World World))
(static-cond
[(or on-bb10 on-harmattan on-sailfish)
(init-qt-ui w)]
[on-console
(init-ncurses-ui w)]
[else
w]))
(init-any-ui 7)
| true |
dfa746b8cfcce6bb9b33773bc2d36cf7b94d1c9c | d6d4568c287c826d12b55d0803f4204187570487 | /animation/graphics-unit.rkt | 42ba00d4180f6649e7d502350fd8fcbd2c3dad76 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
]
| permissive | racket/frtime | 9d292309085b839ffba22ac477846f37e7ab57b4 | a3c93aeae3e3d2a421afb7269ff282c573507cd0 | refs/heads/master | 2023-08-19T00:55:01.239647 | 2021-10-09T12:27:23 | 2021-10-09T12:28:52 | 27,352,030 | 25 | 10 | NOASSERTION | 2021-04-30T18:04:53 | 2014-11-30T22:16:07 | Racket | UTF-8 | Racket | false | false | 355 | rkt | graphics-unit.rkt | #lang racket/base
(provide graphics@)
(require racket/unit
"graphics-sig.rkt"
"graphics-posn-less-unit.rkt")
(define-unit posn@ (import) (export graphics:posn^)
(define-struct posn (x y) #:mutable))
(define-compound-unit/infer graphics@
(import)
(export graphics:posn^ graphics:posn-less^)
(link posn@ graphics-posn-less@))
| false |
eba0fc1e43dad47816c74ca0e08e18d59cb50674 | 5d5e9dfc2ec757825f574b0893237e0718eb84c1 | /challenge-cards/main.rkt | 9e6a6d33887c4f1707affec676626d323052110d | []
| no_license | thoughtstem/ts-printing | 7547ad9cfdadc6fe999147df0f9db8bd16dedda2 | 8f3d0cb6fc3ec4e4b9eb2202045ef23aab985bfe | refs/heads/master | 2020-09-05T10:41:54.606220 | 2019-11-06T19:53:29 | 2019-11-06T19:53:29 | 220,077,808 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,884 | rkt | main.rkt | #lang racket
(provide collection->Desktop
FRONT-FG-COLOR
FRONT-TITLE
begin-job)
(require ts-kata-util/katas/rendering/pict
(only-in ts-kata-util syntax->pict)
(except-in ts-kata-util/katas/main read))
(require pict
(only-in slideshow para current-font-size)
(only-in 2htdp/image
color?
color-alpha
color-red
color-green
color-blue)
(only-in racket/draw color% make-color))
(require "../common.rkt")
(define FRONT-FG-COLOR (make-parameter "white"))
(define FRONT-TITLE (make-parameter (blank)))
(define (kata->front-side k)
(define content
(expression-data (stimulus-data (kata-stimulus k))))
(define content-pict
(parameterize ([current-font-size 46])
(para content)))
(define blank-card-bg
(blank-bg))
(define text-bg
(filled-rectangle (WIDTH) (+ 4 (pict-height content-pict))
#:color (pictify
(FRONT-FG-COLOR))
;#:border-color (make-color 105 105 105 0.4)
;#:border-width 8
#:draw-border? #f
))
(define main
(cc-superimpose
blank-card-bg
(cc-superimpose
text-bg
content-pict)))
(define with-title
(pin-over main
0
;(- (/ (WIDTH) 2)
; (/ (pict-width
; (FRONT-TITLE)) 2))
(FRONT-MARGIN)
(cc-superimpose
(filled-rectangle (WIDTH) 40
#:color (make-color 255 255 255 0.4)
;#:border-color (make-color 255 255 255 0.4)
;#:border-width 8
#:draw-border? #f
)
(FRONT-TITLE)
)
))
(front-side #:fit-mode 'crop
with-title))
(define (kata->back-side k)
(local-require slideshow pict/code)
(define content
(expression-data
(response-data (kata-response k))))
;Gotta turn whatever our kata response data was into a pict that
; appropriately renders on a card.
;The two cases below handle the vast majority of our katas.
(define content-pict
(cond
[(string? content) ;Works for 3rd-5th katas
(syntax->pict
(kata->syntax k))
#;
(codeblock-pict #:keep-lang-line? #t
(reformat-program content))]
[else ;For now, assume it's a K-2
(extract-code-image content)]))
(back-side content-pict))
(define/contract (extract-code-image kata-data)
(-> list? pict?) ;k2 kata datas happen to be structured as lists. Putting this contract here so that it breaks when we inevitably decide to change that...
;But I'll try to make it somewhat general, so it doesn't matter where the pict is in the list, or how many there are. (Currently, just one.)
(define extracted-lang
(text
(first-line
(expression-data
(first kata-data)))))
(apply vl-append 20 extracted-lang (filter pict? kata-data)))
(define (first-line s)
(first (string-split s "\n")))
(define (kata->card k)
(list (kata->front-side k)
(kata->back-side k)))
(define (collection->Desktop kc folder-path)
(define ks (kata-collection-katas kc))
(list->folder
(flatten
(map kata->card ks))
folder-path))
(define (make-rounded-bg pict)
(cc-superimpose
(filled-rectangle (WIDTH) 60
#:color (make-color 255 255 255 0.4)
;#:border-color (make-color 255 255 255 0.4)
;#:border-width 8
#:draw-border? #f
)
pict
))
(define-syntax-rule (begin-job folder
(collection [k v] ...)
...)
(begin
(displayln (~a "Staring job " folder))
(VERSION git-hash)
(FRONT-META-FUNCTION
(lambda (i)
(make-rounded-bg (vc-append (default-meta i)
(text folder)))))
;Need a crazy margin to make it work with
; the hex cards.
(FRONT-MARGIN 250)
(BACK-MARGIN 500)
;Gets the backs in the right place,
; messes up the location of the metas...
(TOTAL (length
(flatten
(list
(kata-collection-katas collection)
...))))
(define counter 0)
(parameterize ([k v] ...
[STARTING-CARD-NUMBER counter] )
(displayln (~a "Processing deck " 'collection))
(collection->Desktop collection folder)
(set! counter (+ counter
(length
(kata-collection-katas collection)))))
...))
| true |
2a9b668f6a585189ced2050df7115690d7dc95d1 | 5f8d781ca6e4c9d3d1c3c38d2c04e18d090589cc | /2/www/lectures/12.scrbl | 0b1951c1b0af7537e2a7983616d776c05e30cb84 | [
"AFL-3.0",
"AFL-2.1",
"LicenseRef-scancode-unknown-license-reference"
]
| permissive | plum-umd/fundamentals | a8458621131b864f0e3389b030c5197ea6bb3f41 | eb01ac528d42855be53649991a17d19c025a97ad | refs/heads/master | 2021-06-20T05:30:57.640422 | 2019-07-26T15:27:50 | 2019-07-26T15:27:50 | 112,412,388 | 12 | 1 | AFL-3.0 | 2018-02-12T15:44:48 | 2017-11-29T01:52:12 | Racket | UTF-8 | Racket | false | false | 501 | scrbl | 12.scrbl | #lang scribble/manual
@(require scribble/eval
racket/sandbox
(for-label (only-in lang/htdp-intermediate-lambda define-struct ... check-expect))
(for-label (except-in class/0 define-struct ... check-expect))
(for-label class/universe)
"../utils.rkt")
@lecture-title[12]{Parameterized Types and Double Dispatch; Abstracting Values}
@link["https://umd.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=df49bf70-2a44-4778-bdf9-a89001399740"]{Video}.
TBD. | false |
700ad05ef5d2239c16d56aeefaa6bd39abecd20c | 3d7d838bfd035e9d42d607ffd644572dfa622b98 | /racket/examples.rkt | e0e49172f441a791d1a9ab629378b35ec9f78b7b | []
| no_license | scheme-requests-for-implementation/srfi-202 | 216ae2da2e4028f68b9da814d603a2166b9f547d | 40f7f1961ae60f59f833814f9ae88b9e6e72da9e | refs/heads/master | 2023-01-15T07:17:14.197710 | 2020-11-28T23:29:11 | 2020-11-28T23:29:14 | 275,073,973 | 0 | 1 | null | 2020-11-27T05:05:22 | 2020-06-26T04:35:17 | HTML | UTF-8 | Racket | false | false | 4,725 | rkt | examples.rkt | #!/usr/bin/racket
#lang racket
(require "srfi/202.rkt")
;; Before showing the capabilities of SRFI-202,
;; we're going to build a little unit test framework
;; for ourselves. The main interface to the framework
;; will be the "e.g." form, whose main use is going to
;; be:
;; (e.g. <expression> ===> <value>)
;; which checks whether <expression> evaluates to <value>,
;; and reports an error if that's not the case.
;; Moreover, since Scheme expressions can in general have
;; more (or less) than one value, we allow the usages:
;; (e.g. <expression> ===> <values> ...)
;; where <values> ... is a sequence of zero or more
;; literals.
(define-syntax e.g.
(syntax-rules (===>)
((e.g. <expression> ===> <values> ...)
(call-with-values (lambda () <expression>)
(lambda results
(if (equal? results '(<values> ...))
(apply values results)
(error '(<expression> ===> <values> ...)
results)))))
))
;; The SRFI-202 should be backwards compatible with
;; SRFI-2, including the following use cases:
;; if the 'claws' do not stand on the way, the empty
;; body evaluates to #t
(e.g.
(and-let* ()) ===> #t)
(e.g.
(and-let* ((even-two (even? 2)))) ===> #t)
(e.g.
(and-let* ((b+ (memq 'b '(a b c))))) ===> #t)
;; presence of a false binding evaluates to #f:
(e.g.
(and-let* ((even-one (even? 1))) 'body) ===> #f)
;; if we don't want to use the result, we can skip
;; the variable name:
(e.g.
(and-let* (((even? 1))) 'body) ===> #f)
;; successfully passing the claws causes the and-let*
;; expression to have the value(s) of its body:
(e.g.
(and-let* ((even-two (even? 2)))
'body) ===> body)
(e.g.
(and-let* ((b+ (memq 'b '(a b c))))
b+) ===> (b c))
(e.g.
(and-let* ((abc '(a b c))
(b+ (memq 'b abc))
(c+ (memq 'c abc))
((eq? (cdr b+) c+)))
(values b+ c+)) ===> (b c) (c))
(e.g.
(and-let* () (values 1 2)) ===> 1 2)
;; The novel parts of SRFI-202 compared to
;; SRFI-2 are: the support for multiple values
;; combined with the support for pattern matching.
;; Multiple values can be handled in two ways:
;; either by passing the additional idenifiers/patterns
;; directly after the first one
(e.g.
(and-let* ((a b (values 1 2)))) ===> #t)
;; or by using the "values" keyword
(e.g.
(and-let* (((values a b) (values 1 2)))) ===> #t)
;; (mind that the result of combining those two methods
;; is unspecified, and in principle they should not be
;; combined)
;; The key difference between those two methods is that
;; in the first, the additional return values are simply
;; ignored
(e.g.
(and-let* ((a b (values 1 2 3)))) ===> #t)
;; whereas in the second, the presence of additional
;; values causes the form to "short-circuit":
(e.g.
(and-let* (((values a b) (values 1 2 3)))) ===> #f)
;; However, the second method allows to capture the
;; remaining values in a list:
(e.g.
(and-let* (((values a b . c) (values 1 2 3)))
(values a b c)) ===> 1 2 (3))
;; Another, more subtle difference is that, if the
;; first method of capturing multiple values is used,
;; and the first pattern is an identifier, then
;; the value of the variable represented by
;; that identifier must be non-#f to succeed
(e.g.
(and-let* ((a b (values #f #t)))) ===> #f)
;; whereas, if the "values" keyword is used, this is
;; not the case:
(e.g.
(and-let* (((values a b) (values #f #t)))) ===> #t)
;; If one finds this behavior undesirable, then
;; in the first case, one can either use a trivial
;; pattern in the position of the first received value
(e.g.
(and-let* ((`,a b (values #f #t)))) ===> #t)
;; or
(e.g.
(and-let* (((or a) b (values #f #t)))) ===> #t)
;; or -- if the value is known to be #f -- to express
;; that explicitly without making a binding
(e.g.
(and-let* ((#f b (values #f #t)))) ===> #t)
;; and in the second case, one needs to add a guard
;; if they want to short-circuit the sequence:
(e.g.
(and-let* (((values a b) (values #f #t))
(a))) ===> #f)
;; This SRFI doesn't specify the pattern matcher
;; to be used for destructuring. Here, we assume
;; Racket's racket/match module,
;; but any matcher that comes with a particular Scheme
;; implementation or that is widely recognized by some
;; Scheme community should be fine.
;; SRFI-202 assumes that a match failure causes
;; the form to short-circuit/fail:
(e.g.
(and-let* ((`(,x . ,y) '()))) ===> #f)
(e.g.
(and-let* ((`(,x ,y) '(1 2 3)))) ===> #f)
(e.g.
(and-let* ((5 (+ 2 2)))) ===> #f)
(e.g.
(and-let* ((#t #f #t (values #f #t #f)))) ===> #f)
;; on the other hand, a successful match causes
;; the variables to be bound at later scopes:
(e.g.
(and-let* ((`(,x ,y) '(2 3))
(x+y (+ x y))
((odd? x+y))
(5 x+y))
x) ===> 2)
| true |
7b5ff52af18d936d8141be674c9553ca58ed6517 | 24d1a79102839205087966654e33c603bcc41b37 | /trace/blueboxes.rktd | 8fc178c36746314ec5b98d9989c99ccb62621f52 | []
| no_license | Racket-zh/docs | 4a091e51701325910b93c2cc5f818487e2bca4be | 741be262485a783e66b8e6d1b8a1114f7799e59e | refs/heads/master | 2020-03-19T12:14:21.965606 | 2018-09-10T01:12:30 | 2018-09-10T01:12:54 | 136,505,509 | 5 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 452 | rktd | blueboxes.rktd | 232
((3) 0 () 1 ((q lib "trace/calltrace-lib.rkt")) () (h ! (equal) ((c def c (c (? . 0) q annotate)) q (166 . 3)) ((c def c (c (? . 0) q instrumenting-enabled)) q (0 . 4)) ((c def c (c (? . 0) q calltrace-eval-handler)) q (106 . 3))))
parameter
(instrumenting-enabled) -> boolean?
(instrumenting-enabled on?) -> void?
on? : any/c
函数
(calltrace-eval-handler e) -> any
e : any/c
函数
(annotate e) -> syntax?
e : any/c
| false |
11cba9300d6c5a827d2903dff648997eea5da805 | 67f496ff081faaa375c5000a58dd2c69d8aeec5f | /koyo-test/koyo/flash.rkt | 5be3835483fb717b0ad42669786892310c2b391e | [
"BSD-3-Clause"
]
| permissive | Bogdanp/koyo | e99143dd4ee918568ed5b5b199157cd4f87f685f | a4dc1455fb1e62984e5d52635176a1464b8753d8 | refs/heads/master | 2023-08-18T07:06:59.433041 | 2023-08-12T09:24:30 | 2023-08-12T09:24:30 | 189,833,202 | 127 | 24 | null | 2023-03-12T10:24:31 | 2019-06-02T10:32:01 | Racket | UTF-8 | Racket | false | false | 1,885 | rkt | flash.rkt | #lang racket/base
(require component
koyo/flash
(submod koyo/flash private)
koyo/session
rackunit)
(provide flash-tests)
(define-system test
[flashes (sessions) make-flash-manager]
[sessions (make-session-manager-factory #:cookie-name "session-id"
#:shelf-life 86400
#:secret-key #"supercalifragilistcexpialidocious"
#:store (make-memory-session-store))])
(define flash-tests
(test-suite
"flash"
#:before
(lambda ()
(system-start test-system))
#:after
(lambda ()
(system-stop test-system))
(test-suite
"flash"
(test-case "can add messages"
(parameterize ([current-session-id "a-session-id"])
(flash (system-get test-system 'flashes) 'error "Error message 1.")
(flash (system-get test-system 'flashes) 'info "Info message 1.")
(flash (system-get test-system 'flashes) 'info "Info message 2.")
(check-equal?
(session-manager-ref (system-get test-system 'sessions) 'flash.messages)
'((info . "Info message 2.")
(info . "Info message 1.")
(error . "Error message 1.")))))
(test-case "can add messages using the implicit argument"
(parameterize ([current-flash-manager (system-get test-system 'flashes)]
[current-session-id "another-session-id"])
(flash 'error "Error message 1.")
(flash 'info "Info message 1.")
(flash 'info "Info message 2.")
(check-equal?
(session-manager-ref (system-get test-system 'sessions) 'flash.messages)
'((info . "Info message 2.")
(info . "Info message 1.")
(error . "Error message 1."))))))))
(module+ test
(require rackunit/text-ui)
(run-tests flash-tests))
| false |
2a6f831fb795557be3640b675590b9cb1ceb20f9 | 25e7b8f1c62067869ab4d41c88230de4d87cf226 | /BookExercises/chapter1/exercise_1_32.rkt | 2c8b98d0d82541716711d9e1fb459f8b584f2426 | []
| 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 | 986 | rkt | exercise_1_32.rkt | #lang racket
(#%require rackunit)
(define (accumulate combiner null-value term a next b)
(if (> a b)
null-value
(combiner (term a)
(accumulate combiner null-value term (next a) next b))))
(define (ident a) a)
(define (inc a) (+ 1 a))
(define (factorial n)
(accumulate * 1 ident 1 inc n))
(check-equal? (factorial 0) 1)
(check-equal? (factorial 1) 1)
(check-equal? (factorial 2) 2)
(check-equal? (factorial 4) 24)
(define (sum a b)
(accumulate + 0 ident a inc b))
(check-equal? (sum 1 4) 10)
(check-equal? (sum 1 10) 55)
(check-equal? (sum 3 11) 63)
(define (accumulate-iter combiner null-value term a next b accu)
(if (> a b)
accu
(accumulate-iter combiner null-value term (next a) next b (combiner (term a) accu))))
(define (factorial-iter n)
(accumulate-iter * 1 ident 1 inc n 1))
(check-equal? (factorial-iter 0) 1)
(check-equal? (factorial-iter 1) 1)
(check-equal? (factorial-iter 2) 2)
(check-equal? (factorial-iter 4) 24)
| false |
c3f749377976ade0109e7c65510b071a45901603 | a5e316122ea6f8c8005b61514c305dcb2747d9ca | /ugly-app-test/ugly-app/test/test1.rkt | 83d485fabd97c40b396cd8228c4e3c7154ac6944 | [
"MIT"
]
| permissive | AlexKnauth/ugly-app | da94b60377b0bcf9f01510aa869e242b2ca5c8d5 | 86f2670f27cb7e09eb80e4494f80b54528701c7a | refs/heads/master | 2021-06-11T23:52:57.320577 | 2021-05-26T20:07:29 | 2021-05-26T20:07:29 | 173,497,686 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,976 | rkt | test1.rkt | #lang racket/base
(require (only-in racket/base
[= =?]
[< <?]
[<= <=?]
[+ add]
[- subtract]
[- negate]
[* multiply]
[/ divide]
[if ite]
[else cond-else])
ugly-app)
(module+ test
(require rackunit))
;; -------------------------------------------------------------------
(module+ test
(define-ugly-function = [(a = b) (=? a b)])
(define-ugly-function < [(a < b) (<? a b)])
(define-ugly-function <= [(a <= b) (<=? a b)])
(define-ugly-function + [(a {~seq + b} ...) (apply add a b)])
(define-ugly-function - [(a - b) (subtract a b)] [(- b) (negate b)])
(define-ugly-function * [(a * b) (multiply a b)])
(define-ugly-function / [(a / b) (divide a b)])
(define-ugly-function ^ [(a ^ b) (expt a b)])
(define-ugly-macro if then else
[(if a then b {~seq else if c then d} ... else e)
(cond [a b] [c d] ... [cond-else e])])
;; ---------------------------------------------
(check-equal? (1 + 2) 3)
(check-equal? (1 + 2 + 3 + 4 + 5) 15)
(check-equal? (map (1 + _) (list 1 2 3 4)) (list 2 3 4 5))
(check-equal? (map (1 + _ + 3) (list 1 2 3 4)) (list 5 6 7 8))
(check-equal? (map (_ - 1) (list 1 2 3 4)) (list 0 1 2 3))
(check-equal? (map (2 * _) (list 1 2 3 4)) (list 2 4 6 8))
(check-equal? (map (2 ^ _) (list 1 2 3 4)) (list 2 4 8 16))
(check-equal? (map (_ ^ 2) (list 1 2 3 4)) (list 1 4 9 16))
(check-equal? (map (- _) (list 1 2 3 4)) (list -1 -2 -3 -4))
(define (fact n)
(if (n = 0)
then 1
else (n * (fact (n - 1)))))
(check-equal? (fact 5) 120)
(define (fib n)
(if (n = 0)
then 0
else if (n = 1)
then 1
else ((fib (n - 2)) + (fib (n - 1)))))
(check-equal? (fib 5) 5)
(check-equal? (fib 7) 13)
(check-equal? (fib 10) 55)
(check-equal? (fib 12) 144)
(check-equal? (fib 16) 987)
)
| false |
670d148cffedba659123104bab94b3d36f83ef8b | 424c0ef5ff9212197736941ede660ceff3197c49 | /match-string/util/string-seq-matcher.rkt | b2b55daecedbb7beed94341fd561c1944ff1f643 | [
"MIT"
]
| permissive | AlexKnauth/match-string | 705dfeacf727ec446789d1e7c43c38559d9298ce | ffc077653b3cdd851fd55589256f1e1177f6ed68 | refs/heads/master | 2021-07-11T05:18:03.977881 | 2021-06-25T18:36:22 | 2021-06-25T18:36:22 | 22,858,415 | 2 | 2 | MIT | 2021-06-25T18:36:23 | 2014-08-11T23:39:22 | Racket | UTF-8 | Racket | false | false | 14,458 | rkt | string-seq-matcher.rkt | #lang racket/base
(provide string-seq-matcher->matcher
string-seq-matcher:
;---
fail/sp
empty/sp
any/sp
var/sp
and-var/sp
var-and/sp
and/sp
;---
string=/sp
regexp/sp
string/sp
;---
cons/sp
append/sp
repeat/sp
repeat-at-least/sp
)
(require racket/list
racket/match
(only-in srfi/1 append-reverse)
(for-syntax racket/base
syntax/parse))
(module+ test
(require rackunit
"matcher.rkt"))
;; -----------------------------------------------
;; A [StrSeqMatcher (Y ...)] can do one of:
;; - fail outright, represented by an empty list
;; - continue with a set of options:
;; - succeed completely, consuming some amount of
;; input
;; - partially succeed, consuming some amount of
;; input but still needing some pattern to pass
;; on the rest
;; Where if "succeed completely" cases exist, they are
;; at the front.
;; A [StrSeqMatcher (Y ...)] is a function:
;; String
;; Natural
;; Natural
;; ->
;; [Listof [StrSeqMatchContinue (Y ...)]]
;; Where the naturals are the starting and ending indexes
;; into the string.
;; A [StrSeqMatchContinue (Y ...)] is one of:
;; - (complete [List Y ...] Natural)
;; - (partial [StrSeqMatcher (Y ...)] Natural)
(struct complete [values rest] #:transparent)
(struct partial [rest-matcher rest] #:transparent)
;; where the `rest` nats are ending indexes into the string.
(define (complete-rests-all-equal? rs)
(or (empty? rs)
(let ([r0 (first rs)]
[r1s (rest rs)])
(and (complete? r0)
(let ([r0r (complete-rest r0)])
(for/and ([r1 (in-list r1s)])
(and (complete? r1)
(= r0r (complete-rest r1)))))))))
;; -----------------------------------------------
;; smc-done? : [SeqMatchContinue (Y ...)] -> Bool
(define (smc-done? smc n)
(and (complete? smc) (= n (complete-rest smc))))
;; string-seq-match-exact-substring :
;; [StrSeqMatcher (Y ...)]
;; String
;; Natural
;; Natural
;; ->
;; [Maybe [List Y ...]]
(define (string-seq-match-exact-substring seq/sp s i j)
(let loop ([seq/sp seq/sp] [i i])
(define cs (seq/sp s i j))
(cond
[(empty? cs) #false]
[else
(or
(for/first ([c (in-list cs)]
#:when (smc-done? c j))
(complete-values c))
(for/or ([c (in-list cs)]
#:when (and (partial? c)
(<= (partial-rest c) j)))
(loop (partial-rest-matcher c) (partial-rest c))))])))
;; string-seq-matcher->matcher :
;; [StrSeqMatcher (Y ...)]
;; ->
;; [Matcher String (Y ...)]
(define ((string-seq-matcher->matcher seq/sp) s)
(define i 0)
(define n (string-length s))
(string-seq-match-exact-substring seq/sp s i n))
;; string-seq-matcher->possibilities :
;; [StrSeqMatcher (Y ...)]
;; ->
;; [String -> [Listof [List Y ...]]
(define ((string-seq-matcher->possibilities seq/sp) s)
(define i 0)
(define n (string-length s))
(let loop ([seq/sp seq/sp] [i i])
(define cs (seq/sp s i n))
(cond
[(empty? cs) '()]
[else
(append*
(for/list ([c (in-list cs)]
#:when (smc-done? c n))
(complete-values c))
(for/list ([c (in-list cs)]
#:when (and (partial? c)
(<= (partial-rest c) n)))
(loop (partial-rest-matcher c) (partial-rest c))))])))
;; (string-seq-matcher: smer [pat ...])
;; smer : [StrSeqMatcher (Y ...)]
(define-match-expander string-seq-matcher:
(syntax-parser
[(_ smer:expr [pat:expr ...])
#:with ooo (quote-syntax ...)
#'(app (string-seq-matcher->possibilities smer)
(list-rest _ ooo (list pat ...) _))]))
;; -----------------------------------------------
;; fail/sp : [StrSeqMatcher ()]
(define (fail/sp s i n) '())
;; empty/sp : [StrSeqMatcher ()]
(define (empty/sp s i n) (list (complete '() i)))
;; any/sp : [StrSeqMatcher ()]
(define (any/sp s i n)
(cond
[(< i n) (list (complete '() i)
(partial any/sp (add1 i)))]
[else (list (complete '() i))]))
;; var/sp/acc : [Listof Char] -> [StrSeqMatcher (String)]
(define ((var/sp/acc acc) s i n)
(cond
[(< i n)
(list (complete (list (list->string (reverse acc))) i)
(partial (var/sp/acc (cons (string-ref s i) acc))
(add1 i)))]
[else (list (complete (list (list->string (reverse acc))) i))]))
;; var/sp : [StrSeqMatcher (String)]
(define var/sp (var/sp/acc '()))
;; and-var/sp : [StrSeqMatcher (Y ...)] -> [StrSeqMatcher (Y ... String)]
;; var-and/sp : [StrSeqMatcher (Y ...)] -> [StrSeqMatcher (String Y ...)]
(define ((and-var/sp p) s i n) ((and-var-i0/sp i p) s i n))
(define ((var-and/sp p) s i n) ((var-and-i0/sp i p) s i n))
(define ((and-var-i0/sp i0 p) s i n)
(define rs (p s i n))
(for/list ([r (in-list rs)])
(match r
[(partial p i)
(partial (and-var-i0/sp i0 p) i)]
[(complete vs j)
(complete (append vs (list (substring s i0 j))) j)])))
(define ((var-and-i0/sp i0 p) s i n)
(define rs (p s i n))
(for/list ([r (in-list rs)])
(match r
[(partial p i)
(partial (and-var-i0/sp i0 p) i)]
[(complete vs j)
(complete (cons (substring s i0 j) vs) j)])))
;; and/sp : [StrSeqMatcher (Y ...)] ... -> [StrSeqMatcher (Y ... ...)]
(define ((and/sp . ps) s i n)
(match ps
['() any/sp]
[(cons p ps) ((and-i0*/sp i p ps) s i n)]))
(define ((and-i0*/sp i0 p ps) s i n)
(define rs (p s i n))
(append*
(for/list ([r (in-list rs)])
(match r
[(partial p i)
(list (partial (and-var-i0/sp i0 p) i))]
[(complete vs j)
(define rst-vs
(let loop ([ps ps] [acc '()])
(match ps
['() (reverse acc)]
[(cons p ps)
(define r (string-seq-match-exact-substring p s i j))
(and r (loop ps (append-reverse r acc)))])))
(cond
[rst-vs (list (complete (append vs rst-vs) j))]
[else '()])]))))
;; -----------------------------------------------
;; string=/sp : String -> [StrSeqMatcher ()]
(define ((string=/sp sub) str i n)
(define j (+ i (string-length sub)))
(cond
[(and (<= j n) (string=? (substring str i j) sub))
(list (complete '() j))]
[else
'()]))
;; regexp/sp : Regexp -> [StrSeqMatcher ()]
(define ((regexp/sp rx) s i n)
(match (regexp-match-positions rx s i n)
[(cons (cons (== i) j) _)
#:when (<= j n)
(list (complete '() j))]
[_
'()]))
;; string/sp :
;; [Matcher Char (Y ...)] ...
;; ->
;; [StrSeqMatcher (Y ... ...)]
(define ((string/sp . ps) s i n)
(define j (+ i (length ps)))
(cond
[(<= j n)
(let loop ([ps ps] [i i] [acc '()])
(match ps
['() (list (complete (reverse acc) i))]
[(cons p ps)
(define r (p (string-ref s i)))
(cond
[r (loop ps (add1 i) (append-reverse r acc))]
[else '()])]))]
[else
'()]))
;; -----------------------------------------------
;; cons/sp :
;; [Matcher Char (Y1 ...)]
;; [StrSeqMatcher (Y2 ...)]
;; ->
;; [StrSeqMatcher (Y1 ... Y2 ...)]
(define ((cons/sp p sp) s i n)
(cond
[(not (< i n)) '()]
[else
(define vs1 (p (string-ref s i)))
(cond
[(not vs1) '()]
[else
(let loop ([sp sp] [i (add1 i)])
(define rs (sp s i n))
(append*
(for/list ([r (in-list rs)])
(match r
[(complete vs2 i)
(list (complete (append vs1 vs2) i))]
[(partial sp i)
(loop sp i)]))))])]))
;; append/sp :
;; [StrSeqMatcher (Y ...)] ...
;; ->
;; [StrSeqMatcher (Y ... ...)]
(define ((append/sp . ps) s i n)
(let loop ([ps ps] [i i] [acc '()])
(match ps
['() (list (complete (reverse acc) i))]
[(cons p ps-rst)
(define rs (p s i n))
(append*
(for/list ([r (in-list rs)])
(match r
[(complete vs i)
(loop ps-rst i (append-reverse vs acc))]
[(partial p* i)
(loop (cons p* ps-rst) i acc)])))])))
;; repeat/sp/acc :
;; [Listof [List Y ...]]
;; Natural
;; Natural
;; [StrSeqMatcher (Y ...)]
;; [StrSeqMatcher (Y ...)]
;; ->
;; [StrSeqMatcher ([Listof Y] ...)]
;; The `k` argument represents the minimum number of repetitions.
;; The `np` argument represents the number of outputs `p1` and `p2` have
;; (they both should have the same number np).
(define ((repeat/sp/acc acc k np p1 p2) s i n)
(define loloy
(cond [(empty? acc) (make-list np '())]
[else (apply map list (reverse acc))]))
(cond
[(< i n)
(define rs (p1 s i n))
(append*
(cond [(zero? k) (list (complete loloy i))]
[else '()])
(for/list ([r (in-list rs)])
(match r
[(complete vs i*)
(when (= i i*)
(error "ellipsis pattern matched empty sequence"))
(list
(partial (repeat/sp/acc (cons vs acc)
(if (zero? k) 0 (sub1 k))
np
p2
p2)
i*))]
[(partial p1* i*)
(when (= i i*)
(error "ellipsis pattern matched empty sequence"))
(list (partial (repeat/sp/acc acc k np p1* p2)
i*))])))]
[(zero? k)
(list (complete loloy i))]
[else
'()]))
;; repeat/sp :
;; Natural
;; [StrSeqMatcher (Y ...)]
;; ->
;; [StrSeqMatcher ([Listof Y] ...)]
(define (repeat/sp np p)
(repeat/sp/acc '() 0 np p p))
;; repeat-at-least/sp :
;; Natural
;; Natural
;; [StrSeqMatcher (Y ...)]
;; ->
;; [StrSeqMatcher ([Listof Y] ...)]
;; The `k` argument represents the minimum number of repetitions.
;; The `np` argument represents the number of outputs `p` has.
(define (repeat-at-least/sp k np p)
(repeat/sp/acc '() k np p p))
;; -----------------------------------------------
(module+ test
(define-check (check-seq-match val sp rs)
(check-equal? ((string-seq-matcher->matcher sp) val) rs))
(check-seq-match "123" var/sp (list "123"))
(check-seq-match "123" (string/sp var/p (equal/p #\2) var/p) (list #\1 #\3))
(check-seq-match "123" (string/sp var/p (equal/p #\2)) #false)
(check-seq-match "1234"
(cons/sp var/p (cons/sp (equal/p #\2) var/sp))
(list #\1 "34"))
(check-seq-match "123" (append/sp var/sp) (list "123"))
(check-seq-match "123"
(append/sp (string/sp var/p) var/sp)
(list #\1 "23"))
(check-seq-match "123"
(append/sp var/sp (string/sp var/p))
(list "12" #\3))
(check-seq-match "1234"
(append/sp (string/sp var/p) var/sp (string/sp var/p))
(list #\1 "23" #\4))
(check-seq-match "123abc"
(append/sp (string/sp var/p (equal/p #\2) var/p)
var/sp)
(list #\1 #\3 "abc"))
(check-seq-match "123abc"
(append/sp var/sp
(string/sp var/p (equal/p #\b) var/p))
(list "123" #\a #\c))
(check-seq-match "a1db2ec3f"
(repeat/sp 3 (string/sp var/p var/p var/p))
(list '(#\a #\b #\c) '(#\1 #\2 #\3) '(#\d #\e #\f)))
(check-seq-match "0246813579"
(repeat/sp
1
(string/sp (and/p (pred/p char-numeric?) var/p)))
(list (string->list "0246813579")))
(check-seq-match "123:456"
(append/sp var/sp (string=/sp ":") var/sp)
(list "123" "456"))
(check-seq-match ":132435465"
(append/sp
(string=/sp ":")
(repeat/sp
1
(string/sp (and/p (pred/p char-numeric?) var/p))))
(list '(#\1 #\3 #\2 #\4 #\3 #\5 #\4 #\6 #\5)))
(check-seq-match "1324:"
(append/sp
(repeat/sp
1
(string/sp (and/p (pred/p char-numeric?) var/p)))
(string=/sp ":"))
(list '(#\1 #\3 #\2 #\4)))
(check-seq-match ":12:3::456"
(repeat/sp
1
(append/sp
(string=/sp ":")
(repeat/sp
1
(string/sp (and/p (pred/p char-numeric?) var/p)))))
(list (list '(#\1 #\2) '(#\3) '() '(#\4 #\5 #\6))))
(check-match ":12:3::456"
(string-seq-matcher:
(repeat/sp
1
(append/sp
(string=/sp ":")
(repeat/sp
1
(string/sp (and/p (pred/p char-numeric?) var/p)))))
[xss])
(equal? xss (list '(#\1 #\2) '(#\3) '() '(#\4 #\5 #\6))))
(check-match "12:34:56:78:910"
(string-seq-matcher:
(append/sp var/sp
(string=/sp ":")
var/sp
(string=/sp ":")
var/sp)
[xs "34" ys])
(and (equal? xs "12")
(equal? ys "56:78:910")))
(check-match "12:34:56:78:910"
(string-seq-matcher:
(append/sp var/sp
(string=/sp ":")
var/sp
(string=/sp ":")
var/sp)
[xs "56" ys])
(and (equal? xs "12:34")
(equal? ys "78:910")))
(check-match "12:34:56:78:910"
(string-seq-matcher:
(append/sp var/sp
(string=/sp ":")
var/sp
(string=/sp ":")
var/sp)
[xs "78" ys])
(and (equal? xs "12:34:56")
(equal? ys "910")))
)
| false |
d68aacae5d54d7c7009dc8fbc18b5804ee5ba5ae | a1791edada0da7a1f0938b433be063ec0fb06475 | /xsmith/private/xsmith-utils.rkt | c7dd6227f02cc6a31b030da10b270ae119d1ed61 | [
"BSD-3-Clause",
"BSD-2-Clause"
]
| permissive | pmatos/xsmith | 2bfae1b4ac493e9fc684a398c2daf22fa390bcb0 | 6786830221aab31d2ab12edcba03448c54c2acf6 | refs/heads/master | 2022-12-28T13:46:26.698237 | 2020-10-05T17:40:21 | 2020-10-05T17:40:21 | 303,690,503 | 5 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 6,303 | rkt | xsmith-utils.rkt | #lang clotho/racket/base
;; -*- mode: Racket -*-
;;
;; Copyright (c) 2017-2020 The University of Utah
;; All rights reserved.
;;
;; This file is part of Xsmith, a generator of highly effective fuzz testers.
;;
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions are met:
;;
;; * Redistributions of source code must retain the above copyright notice,
;; this list of conditions and the following disclaimer.
;;
;; * Redistributions in binary form must reproduce the above copyright
;; notice, this list of conditions and the following disclaimer in the
;; documentation and/or other materials provided with the distribution.
;;
;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
;; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
;; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
;; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
;; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
;; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
;; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
;; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
;; POSSIBILITY OF SUCH DAMAGE.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(provide
fresh-var-name
fresh-int!
datt-value
xd-printf
get-xsmith-debug-log!
)
(module+ for-private
(provide
ast-children/flat
make-generator-state
xsmith-state
(struct-out generator-state)
expr->ast-list
expr->ast-list
node-type
node-has-type?
parent-node
parent-node-type
parent-node-has-type?
ast-ancestors
ancestor-nodes
top-ancestor-node
node-subtype?
bud-node?
list-node?
->bool
))
(module+ for-racr-convenience
(provide
expr->ast-list
expr->ast-list
node-type
node-has-type?
parent-node
parent-node-type
parent-node-has-type?
ast-ancestors
ancestor-nodes
top-ancestor-node
node-subtype?
bud-node?
list-node?
))
(require
racket/list
racr
(for-syntax
clotho/racket/base
syntax/parse
))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; The mutable state of the code generator.
;; XXX --- should encapsulaye the RNG? Currently, the RNG is a separate
;; parameter, automatically manged by Racket.
;; XXX --- should this reference the options, too? Right now, the options are
;; are separate parameter.
(define xsmith-state (make-parameter #f))
(struct generator-state
((fresh-name-counter #:mutable))
)
(define (make-generator-state)
(generator-state 1))
(define (fresh-int!)
(let ([n (generator-state-fresh-name-counter (xsmith-state))])
(set-generator-state-fresh-name-counter! (xsmith-state) (add1 n))
n))
(define (fresh-var-name [base "var_"])
(format "~a~a" base (fresh-int!)))
(define (->bool v)
;; I keep using this idiom, but ->bool is clearer.
(not (not v)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; RACR convenience functions
(define (ast-children/flat n)
(flatten
(map (λ (x) (if (and (ast-node? x) (ast-list-node? x))
(ast-children x)
x))
(if (ast-node? n)
(ast-children n)
'()))))
(define-syntax expr->ast-list
(syntax-parser
[(_ length:expr e:expr)
#'(create-ast-list
(map (λ (x) e)
(make-list length #f)))]))
(define (node-type n)
(and (ast-node? n)
(not (ast-list-node? n))
(not (ast-bud-node? n))
(ast-node-type n)))
(define (node-has-type? n t)
(eq? (node-type n) t))
(define (bud-node? n)
(and (ast-node? n)
(ast-bud-node? n)))
(define (list-node? n)
(and (ast-node? n)
(ast-list-node? n)))
(define (parent-node n)
;; I've had several bugs where I used a parent node that was a list-node
;; thinking it was the grandparent node. The list nodes are generally
;; useless, so this function gets the non-list parent node.
(let ([p (with-handlers ([(λ _ #t) (λ _ #f)])
;; ast-parent raises an exception if there is no parent, I want #f
(ast-parent n))])
(cond [(not p) #f]
[(ast-list-node? p) (ast-parent p)]
[else p])))
(define (parent-node-type n)
(node-type (parent-node n)))
(define (parent-node-has-type? n t)
(node-has-type? (parent-node n) t))
(define (ast-ancestors n)
(if (ast-has-parent? n)
(cons (ast-parent n) (ast-ancestors (ast-parent n)))
'()))
(define (ancestor-nodes n)
(filter (λ (x) (and (not (ast-bud-node? x))
(not (ast-list-node? x))))
(ast-ancestors n)))
(define (top-ancestor-node n)
(let ([p (parent-node n)])
(if p (top-ancestor-node p) n)))
(define (node-subtype? n t)
(when (not (ast-node? n))
(error 'node-subtype? "called on non-ast-node. Arguments: ~a ~a" n t))
(and (ast-node? n) (ast-subtype? n t)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; logging
(define xsmith-debug-log-port (open-output-string))
(define (xd-printf . args)
(apply fprintf xsmith-debug-log-port args))
(define (get-xsmith-debug-log!)
(begin0
(get-output-string xsmith-debug-log-port)
(set! xsmith-debug-log-port (open-output-string))))
(define (datt-value sym node . args)
(xd-printf "calling att-value ~v on node ~v with args ~v\n"
sym
(or (node-type node) node)
args)
(define result
(with-handlers ([(λ(e)#t)
(λ(e)
(xd-printf
"ERROR in att-value ~v on node ~v with args ~v\n"
sym (or (node-type node) node) args)
(raise e))])
(apply att-value sym node args)))
(xd-printf "att-value ~v result: ~v\n" sym result)
result)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; End of file.
| true |
1d103b42cbda88b63653551229d944fbda532bc8 | 9db1a54c264a331b41e352365e143c7b2b2e6a3e | /code/chapter_3/tree-generator.rkt | fa76f26af9c9e7428ffaeb48291ba3c17604cfb3 | []
| no_license | magic3007/sicp | 7103090baa9a52a372be360075fb86800fcadc70 | b45e691ae056410d0eab57d65c260b6e489a145b | refs/heads/master | 2021-01-27T10:20:28.743896 | 2020-06-05T15:17:10 | 2020-06-05T15:17:10 | 243,478,192 | 4 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 873 | rkt | tree-generator.rkt | #lang racket
(define (tree->generator tree)
(letrec ([cc #f]
[value 'init]
[generator (lambda ()
(let loop ([tree tree])
(if (null? tree)
'done
(let ([t (let/cc k (set! generator (lambda() (k #f))) #t)])
(if t
(cc (first tree))
(for-each loop (cdr tree))))))
(cc 'done))])
(lambda (op)
(match op
['value value]
['next (set! value (let/cc k (set! cc k) (generator)))
value]
[_ (error "unknown operation.")]))))
(define iter (tree->generator `(1 (2 (3 (4)) (5)) (6 (7 (8) (9))))))
(for ([i (range 11)])
(displayln (iter 'value))
(displayln (iter 'next)))
| false |
cf36c0c1b89470d04945bfd9c4e3d4c9a4d2d789 | 5590791ddbd68c7b014612166b19600698e23629 | /9_5/free_bound.rkt | a88ae4f9bf552e42ee3eee4d17c048a95cd3a7af | []
| no_license | BenSDuggan/C311Fall19 | a9023235c9f4865f1ebaf9e65d97f72a234e0170 | 5e3c37645b02885514d37a0b43b4ede20e0b72b9 | refs/heads/master | 2020-12-01T00:58:04.619375 | 2019-12-02T15:27:33 | 2019-12-02T15:27:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 1,862 | rkt | free_bound.rkt | #lang racket
(require racket/trace)
#;
(define free?
(λ (e var)
(match e
[`,y
#:when (symbol? y)
(eqv? y var)]
[`(λ (,x) ,body)
#:when (symbol? x)
(and (not (eqv? x var)) (free? body var))]
[`(,rator ,rand)
(or (free? rator var) (free? rand var))])))
#|
free? with an accumulator
cenv is the accumulator
|#
(define free?
(λ (e var cenv)
(match e
[`,y
#:when (symbol? y)
(and (eqv? y var) (not (memv y cenv)))]
[`(λ (,x) ,body)
#:when (symbol? x)
(free? body var (cons x cenv))]
[`(,rator ,rand)
(or (free? rator var cenv) (free? rand var cenv))])))
#|
bound? with an accumulator
cenv is the accumulator
|#
(define bound?
(λ (e var cenv)
(match e
[`,y
#:when (symbol? y)
(and (eqv? y var) (memv y cenv) #t)]
[`(λ (,x) ,body)
#:when (symbol? x)
(bound? body var (cons x cenv))]
[`(,rator ,rand)
(or (bound? rator var cenv) (bound? rand var cenv))])))
#;
(define bound?
(λ (e var)
(match e
[`,y
#:when (symbol? y)
#f]
[`(λ (,x) ,body)
#:when (symbol? x)
(or (and (eqv? x var) (free? body var))
(bound? body var))]
[`(,rator ,rand)
(or (bound? rator var) (bound? rand var))])))
;'(TabNine is cool)
;; (bound? '(λ (x) x) 'x)
;; (bound? '(λ (x) (λ (y) x)) 'x)
;; (bound? '(λ (x) (λ (x) x)) 'x)
;; (bound? '(λ (x) (λ (x) x)) 'x '())
;; (free? '(λ (x) (λ (y) (λ (z) x))) 'x '())
#|
deBruijn indices (lexical addresses)
the most recent λ is associated with 0
free vars don't have indices
(λ (x) x)
=>
(λ 0)
(λ (c)
(λ (b)
(λ (a)
(c (a b)))))
=>
(λ
(λ
(λ
(2 (0 1)))))
(λ (a)
(λ (b)
(λ (a)
(c (a b)))))
=>
(λ
(λ
(λ
(c (0 1)))))
|#
| false |
c6971a918f813894733e904e75378651fd5548fd | 70e413abafeb8ab98bb3499ef848f6ae5ad9bf4a | /biolink/pieces-parts/rank-side-effects.rkt | 01bf05ea09ee9473fd4ffb5647fdac3359a733c6 | [
"MIT"
]
| permissive | 19katz/mediKanren | 079a36d87c55538fe0c963988b2cf9d93a31c2e6 | abee8906b9375fe7a71b27cee73c89ceb66411e3 | refs/heads/master | 2022-12-04T22:17:26.110534 | 2020-08-26T22:22:07 | 2020-08-26T22:22:07 | 274,751,745 | 4 | 0 | MIT | 2020-06-24T19:24:04 | 2020-06-24T19:24:03 | null | UTF-8 | Racket | false | false | 10,002 | rkt | rank-side-effects.rkt | #lang racket
(require
"../db.rkt"
"query.rkt"
"gene-budging.rkt")
(define all-covid-genes
'("HGNC:7871"
"HGNC:4616"
"HGNC:4617"
"HGNC:8554"
"HGNC:8557"
"HGNC:5031"
"HGNC:5033"
"HGNC:7910"
"HGNC:30292"
"HGNC:30291"
"HGNC:10312"
"HGNC:270"
"HGNC:7667"
"HGNC:2734"
"HGNC:10480"
"HGNC:9253"
"HGNC:25242"
"HGNC:3711"
"HGNC:14650"
"HGNC:6897"
"HGNC:14651"
"HGNC:3042"
"HGNC:4897"
"HGNC:13919"
"HGNC:2716"
"HGNC:1471"
"HGNC:24537"
"HGNC:30669"
"HGNC:7113"
"HGNC:12019"
"HGNC:1228"
"HGNC:7114"
"HGNC:9531"
"HGNC:28756"
"HGNC:8869"
"HGNC:24030"
"HGNC:7684"
"HGNC:23663"
"HGNC:25726"
"HGNC:14453"
"HGNC:10405"
"HGNC:16627"
"HGNC:11728"
"HGNC:2712"
"HGNC:2746"
"HGNC:25142"
"HGNC:3275"
"HGNC:3189"
"HGNC:1527"
"HGNC:5960"
"HGNC:12485"
"HGNC:10819"
"HGNC:1125"
"HGNC:790"
"HGNC:7460"
"HGNC:7421"
"HGNC:52028"
"HGNC:9605"
"HGNC:13557"
"HGNC:24591"
"HGNC:1641"
"HGNC:13523"
"HGNC:6118"
"HGNC:6395"
"HGNC:10803"
"HGNC:992"
"HGNC:995"
"HGNC:6943"
"HGNC:991"
"HGNC:990"
"HGNC:10901"
"HGNC:6397"
"HGNC:9438"
"HGNC:1709"
"HGNC:11876"
"HGNC:500"
"HGNC:29620"
"HGNC:3009"
"HGNC:16918"
"HGNC:9583"
"HGNC:1814"
"HGNC:537"
"HGNC:24941"
"HGNC:118"
"HGNC:5270"
"HGNC:5261"
"HGNC:5244"
"HGNC:2232"
"HGNC:10304"
"HGNC:3277"
"HGNC:3272"
"HGNC:7857"
"HGNC:16171"
"HGNC:4181"
"HGNC:10452"
"HGNC:6388"
"HGNC:9554"
"HGNC:11301"
"HGNC:24306"
"HGNC:7629"
"HGNC:20726"
"HGNC:9548"
"HGNC:11753"
"HGNC:9621"
"HGNC:16959"
"HGNC:6400"
"HGNC:11440"
"HGNC:11366"
"HGNC:18479"
"HGNC:23338"
"HGNC:8912"
"HGNC:6204"
"HGNC:11364"
"HGNC:9281"
"HGNC:30615"
"HGNC:3696"
"HGNC:12825"
"HGNC:11766"
"HGNC:11320"
"HGNC:171"
"HGNC:172"
"HGNC:19041"
"HGNC:257"
"HGNC:289"
"HGNC:375"
"HGNC:376"
"HGNC:14434"
"HGNC:14311"
"HGNC:11390"
"HGNC:913"
"HGNC:16902"
"HGNC:1057"
"HGNC:1078"
"HGNC:33814"
"HGNC:1459"
"HGNC:19341"
"HGNC:1492"
"HGNC:1674"
"HGNC:1678"
"HGNC:1776"
"HGNC:1777"
"HGNC:1782"
"HGNC:15483"
"HGNC:1786"
"HGNC:1791"
"HGNC:1991"
"HGNC:1994"
"HGNC:1995"
"HGNC:31736"
"HGNC:19083"
"HGNC:2068"
"HGNC:2071"
"HGNC:13659"
"HGNC:2363"
"HGNC:2454"
"HGNC:2455"
"HGNC:2457"
"HGNC:10637"
"HGNC:2674"
"HGNC:2676"
"HGNC:2700"
"HGNC:2704"
"HGNC:2849"
"HGNC:2850"
"HGNC:2851"
"HGNC:2855"
"HGNC:2857"
"HGNC:3061"
"HGNC:3070"
"HGNC:3071"
"HGNC:3091"
"HGNC:3255"
"HGNC:24649"
"HGNC:3386"
"HGNC:3387"
"HGNC:3388"
"HGNC:3389"
"HGNC:3431"
"HGNC:3655"
"HGNC:3767"
"HGNC:4036"
"HGNC:4119"
"HGNC:4195"
"HGNC:4291"
"HGNC:4545"
"HGNC:20565"
"HGNC:4922"
"HGNC:18360"
"HGNC:15566"
"HGNC:6171"
"HGNC:6193"
"HGNC:6307"
"HGNC:15719"
"HGNC:29798"
"HGNC:698"
"HGNC:20917"
"HGNC:6514"
"HGNC:6524"
"HGNC:18608"
"HGNC:6840"
"HGNC:6843"
"HGNC:6846"
"HGNC:6847"
"HGNC:6849"
"HGNC:6850"
"HGNC:6871"
"HGNC:6886"
"HGNC:19035"
"HGNC:17574"
"HGNC:7110"
"HGNC:7111"
"HGNC:7381"
"HGNC:7529"
"HGNC:16243"
"HGNC:7601"
"HGNC:15576"
"HGNC:7648"
"HGNC:11399"
"HGNC:7850"
"HGNC:18981"
"HGNC:8883"
"HGNC:9404"
"HGNC:9529"
"HGNC:9612"
"HGNC:9618"
"HGNC:9671"
"HGNC:10251"
"HGNC:10812"
"HGNC:6773"
"HGNC:16852"
"HGNC:11394"
"HGNC:11403"
"HGNC:11404"
"HGNC:11406"
"HGNC:16835"
"HGNC:29259"
"HGNC:26160"
"HGNC:11847"
"HGNC:11850"
"HGNC:11904"
"HGNC:17995"
"HGNC:16473"
"HGNC:17797"
"HGNC:487"
"HGNC:9437"
"HGNC:2852"
"HGNC:2537"))
;;not not
(define (member? elem lst)
(not (not (member elem lst))))
(define (unwrap lst)
(if (null? lst) lst
(append (car lst) (unwrap (cdr lst)))))
;;from lib.rkt
(define (filter-edges a-drug predicates)
(define q
(time
(query/graph
((X a-drug)
(O #f))
((X->O predicates))
(X X->O O))))
(map curie-synonyms/names (curies/query q 'O)))
;;(side-effects imatinib)
;;(counterindications imatinib)
(define (all-predicates start)
(define q
(time
(query/graph
((X start)
(O #f))
((X->O #f))
(X X->O O))))
(sort (remove-duplicates (map (lambda (e) (cdr (list-ref e 4))) (edges/query q 'X->O))) string<=?)
)
;;(all-predicates imatinib)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;MONDO:0010602 - hemophilia A
;;MONDO:0010603 - hemophilia A with vascular abnormality
(define (predicate e)
(cdr (list-ref e 4)))
(define (desired/pred? e l)
(member (predicate e) l))
#|
(define (filter-edges a-drug an-edge)
(define qf (query/graph
((S a-drug)
(O #f))
((S->O) #f (lambda (e) (string=? an-edge (cdr (list-ref e 4)))))
(S S->O O)))
(map curie-synonyms/names (curies/query q 'O)))
|#
#|(define (filter-edges Es pred)
(if (eq? (length Es) 1) Es
(if (string=? (predicate (car Es)) pred) (cons (car Es) (filter-edges (cdr Es) pred))
(filter-edges (cdr Es) pred))))
|#
#|
(define q (query/graph
((D drug)
(O "MONDO:0010602"))
((D->O #f))
(D D->O O)))
(define es (edges/query q 'D->O))
(define preds (map predicate es))
(define ds (curies/query q 'D))
(define dnames (map curie-synonyms/names (curies/query q 'D)))
|#
#|
;;get the CHEMBL synonym
(define (chembl? curie) (string-prefix? curie "CHEMBL.COMPOUND:"))
(define (get-chembl names)
(if (chembl? (car names)) (car names)
(get-chembl (cdr names))))
|#
;;CHEMBL.COMPOUND:CHEMBL877 - tranexamic acid
;;CHEMBL.COMPOUND:CHEMBL114 - saquinovir
#|
(define es2 (edges/query saqq 'D->O))
(define preds2 (map predicate es2))
(define obj2 (map curie-synonyms/names (curies/query saqq 'O)))
|#
(define treat-preds (list "treats"
"contributes_to"
"prevents"
"related_to"
"targets"
"directly_interacts_with"))
(define phen-preds (list "has_phenotye"
"disease_has_feature"
"has_disposition"
"causes_condition"
"related_condition"))
(define side-effect-preds (list "causes"
"contributes_to"
"contraindicated_for"))
#|
(define (treat/pred? e)
(desired/pred? e treat-preds))
(define (phen/pred? e)
(desired/pred? e phen-preds))
(define qtreatments (query/graph
((D drug)
(O "MONDO:0010602"))
((D->O #f))
(D D->O O)))
(define qgcauses (query/graph
((G gene)
(O "MONDO:0010602"))
((G->O #f))
(G G->O O)))
(define qpcauses (query/graph
((P protein)
(O "MONDO:0010602"))
((P->O #f))
(P P->O O)))
(define qphens (query/graph
((S "MONDO:0010602")
(O phenotype))
((S->O #f))
(S S->O O)))
(define drugs (map curie-synonyms/names (curies/query qtreatments 'D)))
(define all-drug-synons (remove-duplicates (map car (unwrap drugs))))
(define genes (map curie-synonyms/names (curies/query qgcauses 'G)))
(define prots (map curie-synonyms/names (curies/query qpcauses 'P)))
;;(define phens (map curie-synonyms/names (curies/query qphens 'O)))
|#
(define (find-dups l1 l2)
(if (or (null? l1) (null? l2)) '()
(if (member? (car l1) l2) (cons (car l1) (find-dups (cdr l1) l2))
(find-dups (cdr l1) l2))))
;;(define exacerbates (find-dups phens saq-side-effects))
(define (exacerbates/phenos? drg phenos)
(define side-effects (filter-edges drg side-effect-preds))
(not (null? (find-dups side-effects phenos))))
(define (exacerbated-phenos drg phenos)
(define side-effects (filter-edges drg side-effect-preds))
(if (exacerbates/phenos? drg phenos) (find-dups side-effects phenos) '()))
(define counter (make-hash))
(define (count-num-side-effects drgs)
(hash-clear! counter)
(if (null? drgs) (void)
(for-each (lambda (e) (hash-set! counter e (length (filter-edges e side-effect-preds))))
drgs)))
(define (rank-num-side-effects drgs)
(count-num-side-effects drgs)
(define counted (hash->list counter))
(sort counted #:key cdr <=))
(define (rank-drugs-related-to disease-curie patient-phens)
(define qtreats (query/graph
((D drug)
(O disease-curie))
((D->O #f))
(D D->O O)))
;;drugs that somehow interact with given disease
(define drugs (map curie-synonyms/names (curies/query qtreats 'D)))
;;all those drug's synonyms
(define all-drug-synons (remove-duplicates (map car (unwrap drugs))))
(define qphens (query/graph
((S disease-curie)
(O phenotype))
((S->O #f))
(S S->O O)))
;;phenotypes of given disease
(define phens (map curie-synonyms/names (curies/query qphens 'O)))
;;bottom ranking all drugs that exacerbate the patient's pre-existing conditions/phenotypes
(define affects-patient (remf* null? (map (lambda (x) (if (exacerbates/phenos? x patient-phens) x '())) all-drug-synons)))
;;bottom ranking all drugs that exacerbate phenotypes of given disease
(define bottom-rank (remf* null? (map (lambda (x) (if (exacerbates/phenos? x phens) x '())) all-drug-synons)))
;;ranking all of the drugs within those three categories based on how many side effects they have
(define top-rank (remove* (append bottom-rank affects-patient) all-drug-synons))
(list (rank-num-side-effects top-rank) (rank-num-side-effects bottom-rank) (rank-num-side-effects affects-patient))
)
;;TODO: create method that takes a list of drugs and ranks based on number of side effects
;;apply to all three portions of rank, then append them all together
;;try on a coronavirus curie
;;if time,
;;figure out a way to rank the drugs that are exacerbate both disease and patient last
;;figure out way to report the edges that show which drugs exacerbate which phenotypes
#| want ranking to go
don't exacerbate disease (ranked most side effects to least)
exacerbate patient's condition, but not disease (ranked most patient conditions affected to least)
exacerbates disease (ranked most side effects to least)
exacerbates both patient condition and disease
|#
;;(find-dups '(1 2 3 4 5 6 7 8) '(2 4 6 8 10 12)) | false |
b065ceb602611d65718da9b6a98270ae8a794f63 | a79dd3d1cbf0d690d7e81ff7f5915c7428200b07 | /slides.rkt | 22dbb785e55e5dad225a45c2d810e153b4b6a8de | []
| no_license | winny-/ieeecs-racket-presentation | 926733ce5888772ee19f427ee502ff00adbe947e | 534c4070f4de176af3a653c15ff147b8889cacdf | refs/heads/master | 2020-03-12T19:00:18.979182 | 2018-04-24T00:53:51 | 2018-04-24T00:53:51 | 130,774,955 | 1 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 4,198 | rkt | slides.rkt | #lang at-exp slideshow
(require slideshow/code
pict/convert)
;(set-margin! 10)
;(define padding (make-parameter 10))
(define-syntax-rule (with-background proc slide)
(let ([csa (current-slide-assembler)])
(parameterize ([current-slide-assembler
(lambda (title title-gap pict)
(ct-superimpose (proc title title-gap pict)
(csa title title-gap pict)))])
slide)))
(define-syntax-rule (my-slide a ...)
(slide
;#:inset (make-slide-inset (padding) (padding) (padding) (padding))
#:layout 'auto
;#:title title
a ...))
(define (format-example p c #:scale [s 1.0] #:image? [image? #t])
(define output (if image?
(pict-convert (eval c))
(typeset-code (datum->syntax #f (eval c)))))
(scale (hc-append p (inset (text "⇒" null 72) 10) output) s))
(define-exec-code (sierpinski-pict sierpinski-code sierpinski-string)
(require 2htdp/image) (code:comment "draw a picture")
(let sierpinski ([n 8])
(cond
[(zero? n) (triangle 2 'solid 'red)]
[else
(define t (sierpinski (- n 1)))
(freeze (above t (beside t t)))])))
(my-slide
#:title "The Racket Programming Language"
@t{Presenter: Winston Weinert}
#;@item{A programming-language programming language}
(format-example sierpinski-pict sierpinski-code #:scale .75))
(my-slide
#:title "Timeline of Racket"
'next
@item{1958 - LISP 1.5 is created}
(bitmap "lisp15.png")
'next
@item{1975 - Scheme is created}
(bitmap "scheme.png")
'next
@item{1990 - Racket is created (a better Scheme)}
(bitmap "racket.png"))
(my-slide
#:title "Who uses Racket?"
@para{Racket was born of academic curiousity: use-case specific programming language & to teach programming concepts}
(scale (bitmap "htdp.png") .75))
(define-exec-code (define-variable-pict define-variable-code define-variable-string)
(define greeting "Hello World!")
greeting (code:comment "Automatically printed"))
(define-exec-code (define-function-pict define-function-code define-function-string)
(define (factorial n)
(if (<= n 1)
1
(* n (factorial (- n 1)))))
(factorial 5))
(my-slide
#:title "All you need to know about syntax"
@item{Define a variable}
(format-example define-variable-pict define-variable-code #:scale .75 #:image? #f)
'next
@item{Define a function}
(format-example define-function-pict define-function-code #:scale .75 #:image? #f)
'next
@item{(Everything else is simply extension of the above)})
(my-slide
#:title "But I hate all these parentheses!"
@para{You're in luck!}
(bitmap "sweet.png"))
(my-slide
#:title "Racket \"Sublanguages\""
'next
@item{Scribble - write documentation or papers}
(bitmap "scribble.png")
'next
@item{Typed Racket - Racket but with static typing (faster & crashes less)}
(bitmap "typed.png"))
(my-slide
#:title "Racket \"Sublanguages\" Continued"
@item{racket/gui - a GUI programming language}
(bitmap "gui.png")
'next
@item{Lazy Racket - Only run code that the program needs to finish}
'next
@item{datalog - a logic programming language}
'next
@item{slideshow - what this presentation is written in})
(define-exec-code (recur-example-pict recur-example-code recur-example-string)
(define (sum n)
(if (zero? n)
n
(+ n (sum (sub1 n)))))
(sum 1024))
(define-exec-code (iter-example-pict iter-example-code iter-example-string)
(define (sum n)
(for/sum ([i (add1 n)])
i))
(sum 1024))
(my-slide
#:title "Recursion??"
@item{For-loop:}
(format-example iter-example-pict iter-example-code #:image? #f)
'next
@item{Recursion:}
(format-example recur-example-pict recur-example-code #:image? #f))
(my-slide
#:title "Why another programming language?"
@item{Most languages are rigid - do not allow for extension of the core syntax}
@item{Predictability and simplicity}
'next
@item{Not a catch-all}
@subitem{Use the best tool for the job}
@subitem{Small community = less libraries}
@subitem{It is not fast. But usually doesn't matter.})
#;(my-slide
#:title "Bibliography") | true |
7dbe9d9739bf699bdaeafe85dceddc1fae6ef330 | f05faa71d7fef7301d30fb8c752f726c8b8c77d4 | /src/exercises/ex-3.61.rkt | 5ec402b579dfb4aa42ead584cac73dc692f42f8a | []
| 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 | 1,141 | rkt | ex-3.61.rkt | #lang racket
(require "../examples/streams.rkt")
(require "ex-3.60.rkt")
;; Exercise 3.61: Let S be a power series (*Note Exercise 3-59::)
;; whose constant term is 1. Suppose we want to find the power series
;; 1/S, that is, the series X such that S * X = 1. Write S = 1 + S_R
;; where S_R is the part of S after the constant term. Then we can solve
;; for X as follows:
;;
;; S * X = 1
;; (1 + S_R) * X = 1
;; X + S_R * X = 1
;; X = 1 - S_R * X
;;
;; In other words, X is the power series whose constant term is 1 and
;; whose higher-order terms are given by the negative of S_R times X.
;; Use this idea to write a procedure `invert-unit-series' that computes
;; 1/S for a power series S with constant term 1. You will need to use
;; `mul-series' from *Note Exercise 3-60::.
; internal definition for memoization. see exercise 3.63 and
; `sqrt-stream' for reasoning.
(define (invert-unit-series s)
(define inv-stream
(cons-stream 1 (mul-series (negate-stream (stream-cdr s))
inv-stream)))
inv-stream)
(provide invert-unit-series)
| false |
6f47818a711b7b6168cc9447f09a5f945dd64c8c | 518febec97ee78b507f4ccb58be468dea66e159a | /backgammon-oracle/oracle/oracle2.2.rkt | 0ba47d3cac3a195526599645a17ebb42126fc574 | []
| no_license | NorthwesternSoftwareConstructionS21/oracle | 5ce2ac9a89fcefe2a0ea42980ac96f5b5a0cb579 | 3d9990cbb484574381dbf62dd3671c3294deaca9 | refs/heads/master | 2023-06-06T14:41:13.034121 | 2021-06-18T19:15:43 | 2021-06-18T19:15:43 | 345,702,248 | 0 | 9 | null | null | null | null | UTF-8 | Racket | false | false | 66 | rkt | oracle2.2.rkt | #lang simple-obfuscation
0yhKLSzNLEpVUEorys8r0U3NS9Eryi5R0uQCAA==
| false |
5abd39631c62c23274bae2ce646bf18f59f2a11e | 757c8e01cab638a9c3b65166aa128f90a0e4dcc0 | /Paper/Figures/repeato-disj-DFSi.rkt | 5d48743cf12411e8b9b85a4d96f1aac05b6a0e29 | []
| no_license | LuKuangChen/Towards-a-miniKanren-with-fair-search-strategies | d622b3b6f938e7331cd786bb72fe4056807e8a43 | c586cb6067e367c4455b92fa3568f63c69c3cdc9 | refs/heads/master | 2023-07-12T12:50:01.243152 | 2019-12-13T20:07:01 | 2019-12-13T20:07:01 | 162,158,182 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 246 | rkt | repeato-disj-DFSi.rkt | ;; DFSi (unfair disj)
> (run 12 q
(conde
((repeato 'a q))
((repeato 'b q))
((repeato 'c q))
((repeato 'd q))))
'((a) (a a) (b) (a a a)
(a a a a) (b b)
(a a a a a) (c)
(a a a a a a) (b b b)
(a a a a a a a) (d))
| false |
5b171d584a579e20a9966d16bf780600bc87f500 | 84d27e96f685f06147b3e25d2096694deec002d2 | /mustache/language.rkt | edc09e69dfa4713103e5c8d44d57c034cb726808 | []
| no_license | lewisbrown/racket-mustache | 5d3c42bf3d760c4e06b2d356d729a2614b495fee | 8cbdb4642ef4cb8614fb95000642cd9ad8d234ad | refs/heads/master | 2021-01-22T16:53:56.834555 | 2014-04-01T17:30:08 | 2014-04-01T17:30:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 6,574 | rkt | language.rkt | #lang racket/base
;; Copyright (c) 2014 Adolfo Perez Alvarez <[email protected]>
;;
;; This library is free software; you can redistribute it and/or modify it under
;; the terms of the GNU Lesser General Public License as published by the Free
;; Software Foundation; either version 2.1 of the License, or (at your option)
;; any later version.
;;
;; This library is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY without even the implied warranty of MERCHANTABILITY or FITNESS
;; FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
;; details.
;;
;; You should have received a copy of the GNU Lesser General Public License
;; along with this library; if not, write to the Free Software Foundation, Inc.,
;; 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(require racket/function
racket/list)
(provide display-escaped
display-raw
display-txt
sequence
inversion
#%datum
#%app
(rename-out [module-begin #%module-begin]))
(module+ test
(require rackunit))
(define-syntax-rule (module-begin stmt ...)
(#%plain-module-begin
(provide render)
(define (render env out)
(parameterize ([current-output-port out])
(with-env env stmt ...)))))
;; escape: (U String Bytes Any) = T-> T
;; If the input value is a string or byte string, escape its contents
;; so that it is safe to include the content as part of an XML document.
;; If the input value is not a string or byte string, return it unchanged.
(define escape
(let ([amp (reverse '(#\& #\a #\m #\p #\;))]
[lt (reverse '(#\& #\l #\t #\;))]
[gt (reverse '(#\& #\g #\t #\;))])
(λ (bs)
(cond [(or (string? bs) (bytes? bs))
(define-values (->list ->string)
(if (string? bs)
(values string->list list->string)
(values (compose (curry map integer->char) bytes->list)
(compose list->bytes (curry map char->integer)))))
(let loop ([xs (->list bs)] [acc '()])
(if (null? xs)
(->string (reverse acc))
(loop (rest xs)
(let ([c (first xs)])
(append (case c
[(#\&) amp]
[(#\<) lt]
[(#\>) gt]
[else
(list c)])
acc)))))]
[else
bs]))))
(module+ test
(check-equal? (escape "") "")
(check-equal? (escape "abc") "abc")
(check-equal? (escape "<>&") "<>&")
(check-equal? (escape #"") #"")
(check-equal? (escape #"abc") #"abc")
(check-equal? (escape #"<>&") #"<>&")
(check-equal? (escape 'foo) 'foo))
;; display-escaped: Any -> Void
;; Display the value bound to `name', escaping any XML entity.
(define (display-escaped name)
(display (escape (env-ref name))))
;; display-raw: Any -> Void
;; Display the value bound to `name' in the current environment.
(define (display-raw name)
(display (env-ref name)))
;; display-txt: Bytes -> Void
;; Display a block of text.
(define (display-txt text)
(display text))
;; current-env: (ParameterOf (ListOf (HashTable Any Any)))
;; The current environment.
(define current-env (make-parameter '()))
;; env-ref: Any -> Any
;; Return the value bound to `name' in the current environment. If no value
;; is bound, return the value of `default' (by default, the empty string).
(define (env-ref name [default ""])
(define value
(for/first ([x (current-env)]
#:when (hash-has-key? x name))
(hash-ref x name)))
(or value default))
(module+ test
(check-equal? (env-ref 'x) "")
(check-equal? (with-env (hash 'x 'y) (env-ref 'x)) 'y))
;; Extend the current environment with the given object.
;; If the object is not a hash, no environment extension will be done.
(define-syntax-rule (with-env obj stmt ...)
(if (hash? obj)
(parameterize ([current-env (cons obj (current-env))])
stmt ...)
(begin stmt ...)))
(module+ test
(check-equal? (with-env 'a (env-ref 'a)) "")
(check-equal? (with-env (hash 'a 'b) (env-ref 'a)) 'b))
;; Evaluate the body if `name' is bound in the current environment.
;; If the value bound to `name' is a list, the body will be evaluated
;; once per element, using the element to extend the environment; if
;; the bound value is a hash, the body will be evaluated once with
;; the environment extended by the hash; if it is any other non-false
;; value, the body will be evaluated once with no environment extension.
;;
;; Mustache stx: {{#foo}}...{{/foo}}
(define-syntax-rule (sequence name stmt ...)
(let ([val (env-ref name #f)])
(when val
(cond [(list? val)
(for ([elt val])
(with-env elt stmt ...))]
[(mustache-false? val)
(void)]
[else
(with-env val stmt ...)]))))
(module+ test
(check-equal? (with-env (hash) (sequence 'a 'b)) (void))
(check-equal? (with-env (hash 'a '()) (sequence 'a 'b)) (void))
(check-equal? (with-env (hash 'a "") (sequence 'a 'b)) 'b)
(check-equal? (with-env (hash 'a #"") (sequence 'a 'b)) 'b)
(check-equal? (let ([out (open-output-string)])
(parameterize ([current-output-port out])
(with-env (hash 'a '(1 2 3))
(sequence 'a (display "x"))))
(get-output-string out))
"xxx")
(check-equal? (with-env (hash 'a 'b) (sequence 'a 'b)) 'b))
;; mustache-false?: Any -> Boolean
;; Test if `datum' is a falsy value. A value is considered falsy
;; if it is #f or '().
(define (mustache-false? datum)
(or (not datum)
(null? datum)))
(module+ test
(check-true (mustache-false? #f))
(check-true (mustache-false? '()))
(check-false (mustache-false? ""))
(check-false (mustache-false? #"")))
;; Evaluate the given statements when `name' is not bound or is a "falsy" value.
;; Mustache stx: {{^foo}}...{{/foo}}
(define-syntax-rule (inversion name stmt ...)
(let ([val (env-ref name #f)])
(when (mustache-false? val)
stmt ...)))
(module+ test
(check-equal? (with-env (hash) (inversion 'a 'b)) 'b)
(check-equal? (with-env (hash 'a "") (inversion 'a 'b)) (void))
(check-equal? (with-env (hash 'a #"") (inversion 'a 'b)) (void))
(check-equal? (with-env (hash 'a '()) (inversion 'a 'b)) 'b)) | true |
78b5ed37a7beba54268573638889eecfaa153e22 | d186400a571bb301032f87645dec82b46d5865ea | /tests/pos-tree.rkt | 72b31b08a5867cc590604857d685fcaacfc6e876 | [
"MIT",
"Apache-2.0"
]
| permissive | yjqww6/rkt-tree-widget | 30755119d0dda8698f0e5d217e8e85fce448e0a4 | 0c6e354874f063338cb4549f7d4a0338d6ea6586 | refs/heads/master | 2023-06-27T23:54:00.463080 | 2021-07-31T02:37:32 | 2021-07-31T02:37:32 | 385,673,394 | 3 | 0 | NOASSERTION | 2021-07-31T05:15:39 | 2021-07-13T16:47:11 | Racket | UTF-8 | Racket | false | false | 2,914 | rkt | pos-tree.rkt | #lang racket/base
(require "../private/pos-tree.rkt"
racket/match racket/unit)
(struct ValueNode Node (value) #:authentic #:transparent)
(struct Red ValueNode () #:authentic #:sealed #:transparent)
(struct Black ValueNode () #:authentic #:sealed #:transparent)
(define red? Red?)
(define black? Black?)
(define (red l r t)
(Red l r (new-node-size l r) (ValueNode-value t)))
(define (red-leaf v)
(Red #f #f 1 v))
(define (black l r t)
(Black l r (new-node-size l r) (ValueNode-value t)))
(define (coloring color t)
(if color
(match t
[(Black l r k v) (Red l r k v)]
[else t])
(match t
[(Red l r k v) (Black l r k v)]
[else t])))
(define (update-node node v)
(match node
[(Red l r k _)
(Red l r k v)]
[(Black l r k _)
(Black l r k v)]
[_ #f]))
(define-values/invoke-unit/infer pos-tree-op@)
(define (tree->list t)
(let f ([t t] [ls '()])
(match t
[#f ls]
[(ValueNode l r _ v)
(f l (cons v (f r ls)))])))
(define (height t)
(let f ([t t])
(match t
[#f 0]
[(ValueNode l r _ _)
(+ 1 (max (f l) (f r)))])))
(define (verify-red t)
(let f ([t t] [depth 0])
(match t
[#f (void)]
[(or (Red (Red _ _ _ _) _ _ _) (Red _ (Red _ _ _ _) _ _))
(error 'verify-red "nested red nodes ~s at depth ~s" t depth)]
[(Node l r _)
(f l (add1 depth))
(f r (add1 depth))])))
(define (verify-black t)
(let f ([t t])
(match t
[#f 0]
[(Node (app f l) (app f r) _)
(unless (= l r)
(error 'verify-black "unbalanced"))
(if (Black? t)
(add1 l)
l)])))
(module+ test
(require rackunit racket/list)
(define-syntax-rule (check-tree t)
(let ([x t])
(check-not-exn
(λ ()
(verify-black t)
(verify-red t)))))
(define t
(for/fold ([t #f])
([i (in-range 100)])
(append-item t i)))
(check-tree t)
(check-equal? (tree->list t) (range 100))
(check-equal? (ValueNode-value (get-node t 10)) 10)
(check-equal? (map ValueNode-value (get-nodes t 10 20)) (range 10 20))
(define p
(for/fold ([t #f])
([i (in-range 100)])
(prepend-item t i)))
(check-tree p)
(check-equal? (tree->list p) (range 99 -1 -1))
(define it
(for/fold ([t t])
([i (in-range 10)])
(insert-item t 10 i)))
(check-tree it)
(check-equal? (tree->list it)
(append (range 0 10)
(range 9 -1 -1)
(range 10 100)))
(define de
(for/fold ([t t])
([_ (in-range 10)])
(delete-item t 10)))
(check-tree de)
(check-equal? (tree->list de)
(append (range 0 10) (range 20 100)))
)
| true |
04ad20b82eb11988d61ce676f52118d9faf74bd0 | 3cf26ee8585f726932cc28acceece822bfd0439c | /week 5/hw4.rkt | ac05b1e22bb8bc6d2046ac1d76b026ce068e8c3e | []
| no_license | xuanzhao/Programming_Language-Washington_Cousera | f7b7594040622f0f28fcbede5fec779ee7f46341 | 92e0057b8d7b78a9776f5616a8473b5980e3479d | refs/heads/master | 2021-01-16T23:09:42.002852 | 2016-11-17T08:38:06 | 2016-11-17T08:38:06 | 72,278,038 | 0 | 1 | null | null | null | null | UTF-8 | Racket | false | false | 2,670 | rkt | hw4.rkt |
#lang racket
(provide (all-defined-out)) ;; so we can put tests in a second file
;; put your code below
;; 1
;; (number, number, number) -> (list number)
(define (sequence low high stride)
(if (<= low high)
(cons low (sequence (+ low stride) high stride))
null))
;; 2
;; (list str, str) -> (list str)
(define (string-append-map xl suffix)
(map (lambda (str) (string-append str suffix)) xl))
;; 3
;; (list number, number) -> (number)
(define (list-nth-mod xs n)
(if (negative? n)
(error "list-nth-mod: negative number")
(if (null? xs)
(error "list-nth-mod: empty list")
(car (list-tail xs (remainder n (length xs)))))))
;; 4
;; (stream s, number n) -> (list number)
(define (stream-for-n-steps s n)
(if (= n 0)
null
(let ((pr (s)))
(cons (car pr) (stream-for-n-steps (cdr pr) (- n 1))))))
;; 5
;; () -> Stream
(define funny-number-stream
(letrec ([neg-five (lambda (x) (if (zero? (remainder x 5)) (- x) x))]
[f (lambda (x) (cons (neg-five x) (lambda () (f (+ x 1)))))])
(lambda () (f 1))))
;; 6
;; () -> Stream
(define dan-then-dog
(letrec ([dan (lambda () (cons "dan.jpg" dog))]
[dog (lambda () (cons "dog.jpg" dan))])
dan))
;; 7
;; (stream s) -> (stream)
(define (stream-add-zero s)
(letrec ( [f (lambda (x) (cons (cons 0 (car x)) (lambda() (f ((cdr x))))))] )
(lambda () (f (s)))))
;; 8
;; (list xs, list ys) -> (stream)
(define (cycle-lists xs ys)
(letrec ([pr (lambda (n) (cons (list-nth-mod xs n) (list-nth-mod ys n)))]
[f (lambda (x) (cons (pr x) (lambda() (f (+ x 1)))))])
(lambda() (f 0))))
;; 9
;; (number v, vector vec) -> (pair x y) or #f
(define (vector-assoc v vec)
(letrec ([f (lambda (n)
(if (>= n (vector-length vec))
#f
(let ([n-th (vector-ref vec n)])
(if (and (pair? n-th) (equal? (car n-th) v))
n-th
(f (+ n 1))))))])
(f 0)))
;; 10
;; (list xs, number n) -> assoc
(define (cached-assoc xs n)
(letrec ([memo (make-vector n #f)]
[pos 0])
(lambda (v)
(or (vector-assoc v memo)
(let ([new-ans (assoc v xs)])
(and new-ans
(begin
(vector-set! memo pos new-ans)
(set! pos (remainder (+ pos 1) n))
new-ans)))))))
;; 11
;; () -> Macro
(define-syntax while-less
(syntax-rules (do)
[(while-less e1 do e2)
(letrec ([a e1]
[f (lambda ()
(if (>= e2 a)
#t
(f)))])
(f))])) | true |
a6ee14d2f4839703d1862d2543f2b34c9722c939 | 1a214b00a5293405100e590cdf47de54e88aa3dc | /1-mon/some.rkt | 45591adef1cd3dafd7cc77e3396972a869d77db9 | []
| no_license | stefanolande/racket-school-2018 | 9743e7957671b01f185a5b214191725dd88da339 | 431a1a90fcc19740539645a531f50e7a45644f03 | refs/heads/master | 2020-03-23T04:50:12.800070 | 2018-07-16T08:20:37 | 2018-07-16T08:20:37 | 141,108,142 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 655 | rkt | some.rkt | #lang racket
(require (for-syntax syntax/parse))
(require rackunit)
(define-syntax (some stx)
(syntax-parse stx
[(_ e0:expr)
#'(let ([e0-val e0])
(and e0-val (list e0-val)))]
[(_ e0:expr e1:expr ...)
(combine #'e0 #'(some e1 ...))]))
(begin-for-syntax
(define (combine e0 some-of-e1)
#`(let ([v #,e0])
(if v
(let ([w #,some-of-e1])
(if (cons? w)
(cons v w)
(list v)))
#f)))
)
(check-equal? (some #f) #f)
(check-equal? (some 1) (list 1))
(check-equal? (some (begin (displayln "hello") 1)) (list 1))
(check-equal? (some 1 #f) (list 1))
| true |
18cd7abb12418e970dd8610c762011fd885b83e6 | 62982bc890932a9e787233fefac86075fab0abbb | /tests/ga/lib-robot-1.rkt | d4c904651ceb0ea2f6aa790f02782bf4ac57d175 | []
| no_license | bldl/erda | 3a9fb7af0233b3bac4adaa99392d427a5cfe2b42 | c4cead322b4161307d1548ba3e3ceaaac73150ec | refs/heads/master | 2021-01-10T14:13:47.905628 | 2016-10-13T18:25:06 | 2016-10-13T18:25:06 | 44,308,332 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 2,247 | rkt | lib-robot-1.rkt | #lang erda/ga
#|
A dummy robot comms client library, simulating a flaky Bluetooth
connection to the robot, with frequent `ConnectionFailed` alerts.
|#
(require (only-in racket/base
[#%app rapp] [list rlist]
=
set! quasiquote unquote
sleep random
display displayln newline
make-hasheq hash-set! hash-ref
write writeln flush-output)
erda/i3-internal)
(provide reconnect
set-stabilization random-stabilization
set-rgb-led random-rgb
set-back-led random-color
set-heading random-heading)
(define st (make-hasheq))
(define (st-get n) (hash-ref st n #f))
(define (st-set! n v) (hash-set! st n v))
(define (connected?) (st-get 'connected))
(define (stabilized?) (st-get 'set-stabilization))
(define (print-state)
(displayln st))
(define (comms-succeed?)
(when (and (connected?) (= (random 5) 0))
(st-set! 'connected #f)
(print-state))
(connected?))
(define (fail-randomly?)
(= (random 25) 0))
(define (reconnect)
(define t (random 5))
(display "reconnecting...") (flush-output)
(sleep t)
(displayln "connected.")
(st-set! 'connected #t)
(print-state)
t)
(define (send-recv cmd v)
#:alert ([ConnectionFailed pre-unless (comms-succeed?)]
[RandomFailure pre-when (fail-randomly?)])
(st-set! cmd v)
(displayln (rlist cmd v "OK"))
(print-state)
v)
;; Set Stabilization (on/off value).
(define (set-stabilization v)
(send-recv 'set-stabilization v))
(define (random-stabilization)
(if (= 0 (random 2)) #t #f))
;; Set RGB LED Output (uses normal RGB coding, but colour resolution
;; is not that good).
(define (set-rgb-led v)
(send-recv 'set-rgb-led v))
(define (random-rgb)
(list (random 265) (random 265) (random 265)))
;; Set Back LED Output (monochrome scale 0-255).
(define (set-back-led v)
(send-recv 'set-back-led v))
(define (random-color)
(random 265))
;; Set Heading (2 byte value representing 0-359 degrees). Requires
;; stabilization to be on.
(define (set-heading v)
#:alert ([StabilizationOff pre-unless (stabilized?)])
(send-recv 'set-heading v))
(define (random-heading)
(random 360))
| false |
02ca1207ec9f3464ebdbcafe18a5172771186db4 | 53542701f473a1bf606ae452ed601543d686e514 | /Minor Assignment 2/submission/160050064/7.rkt | c5032b2ecf75a9c1c1c65187a6624c8388f44382 | [
"MIT"
]
| permissive | vamsi3/IITB-Abstractions-and-Paradigms | f6c187a6d1376ca08dd4c2b18258144627eaed6b | ab80fc33341ba0ba81d1519c92efd7e06127b86b | refs/heads/master | 2022-10-23T23:45:18.907063 | 2020-06-09T15:41:33 | 2020-06-09T15:41:33 | 271,042,673 | 0 | 0 | null | null | null | null | UTF-8 | Racket | false | false | 923 | rkt | 7.rkt | #lang racket
(provide fib-lightning)
(provide fib-tr)
;Define all functions below
;Do not call the functions here
;I have considered f(0)=0 and f(1)=1 to proceed with the solution so as to match with the test cases,
;assuming that the given question has a minor error.
(define (fib-tr n)
(define (fib-helper x value earlier1)
(cond [(= x 0) 0]
[(= x 1) value]
[(> x 1) (fib-helper (- x 1) (+ value earlier1) value)]
[else value]))
(fib-helper n 1 0))
(define (fib-lightning n)
(cond [(= n 0) 0]
[(= n 1) 1]
[(even? n) (let* [(q (quotient n 2))
(a (fib-lightning q))
(b (fib-lightning (- q 1)))]
(* a (+ a (* 2 b))))]
[else (let* [(q (quotient n 2))
(a (fib-lightning (+ q 1)))
(b (fib-lightning q))]
(+ (* a a) (* b b)))])) | false |
f6724a9ab4c1f7898234211bb73b0c80e3cb6f54 | ef3ddc6304f49877b0930801312e734488c29585 | /sweet-exp-lib/sweet-exp/util.rkt | 90142b9b2525527890609d411d2e969ce8a17305 | [
"MIT"
]
| permissive | takikawa/sweet-racket | e995063c5b5c8faa65057cd1e87dbd79bd22271c | 460a2f52db582014c144f4cc83ee8e2703f46cc7 | refs/heads/master | 2023-03-11T20:01:29.346373 | 2023-03-07T02:10:54 | 2023-03-07T02:10:54 | 2,079,919 | 46 | 13 | NOASSERTION | 2023-03-07T02:10:55 | 2011-07-20T19:32:14 | Racket | UTF-8 | Racket | false | false | 1,226 | rkt | util.rkt | #lang racket
(provide (all-defined-out))
(require racket/syntax
syntax/srcloc
syntax/readerr)
(define current-source-name (make-parameter #f))
;; A syntax object that has the "original?" property
;; (borrowed from the scribble reader)
(define orig-stx (read-syntax #f (open-input-string "dummy")))
;; utility for construction syntaxes
(define (make-stx v ln col pos span)
(datum->syntax #f v
(vector (current-source-name) ln col pos span)
orig-stx))
(define (paren-shape stx shape)
(define val
(cond [(char=? shape #\( ) #false] [else shape]))
(syntax-property stx 'paren-shape val))
(define (port-pos in)
(define-values (_1 _2 pos) (port-next-location in))
pos)
(define dot (generate-temporary #'|.|))
(define (dot? x) (eq? x dot))
(define (read-err/srcloc msg srcloc)
(apply raise-read-error msg (build-source-location-list srcloc)))
(define (rt-char=? c default-c [c=? char=?])
(define-values (c2 _1 _2)
(readtable-mapping (make-readtable (current-readtable)) c))
(and (char? c2) (c=? c2 default-c)))
(define (rt-char-member? c default-cs)
(rt-char=? c default-cs char-member?))
(define (char-member? c cs)
(for/or ([c2 (in-list cs)])
(char=? c c2)))
| false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.