diff --git a/whalesong/README b/whalesong/README index 1bd0309..d8f63cc 100644 --- a/whalesong/README +++ b/whalesong/README @@ -1,7 +1,7 @@ ====================================================================== Whalesong: a compiler from Racket to JavaScript. -Danny Yoo (dyoo@cs.wpi.edu) +Danny Yoo (dyoo@hashcollision.org) ====================================================================== @@ -36,7 +36,7 @@ moment, the program must be written in the base language of whalesong. from compiling, and we'll be working to remove this restriction.) $ cat hello.rkt - #lang planet dyoo/whalesong + #lang whalesong (display "hello world") (newline) diff --git a/whalesong/bf/lang/reader.rkt b/whalesong/bf/lang/reader.rkt index d0f2166..a5bf2d4 100644 --- a/whalesong/bf/lang/reader.rkt +++ b/whalesong/bf/lang/reader.rkt @@ -1,11 +1,9 @@ #lang s-exp syntax/module-reader -#:language (lambda () - `(planet ,(this-package-version-symbol bf/language))) +#:language (lambda () 'whalesong/bf/language) #:read my-read #:read-syntax my-read-syntax #:info my-get-info -(require "../parser.rkt" - planet/version) +(require "../parser.rkt") (define (my-read in) (syntax->datum (my-read-syntax #f in))) diff --git a/whalesong/bf/language.rkt b/whalesong/bf/language.rkt index d49aaf4..0965ebf 100644 --- a/whalesong/bf/language.rkt +++ b/whalesong/bf/language.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong +#lang whalesong (require "semantics.rkt" (for-syntax racket/base)) @@ -100,4 +100,4 @@ (with-syntax ([current-data (datum->syntax stx 'current-data)] [current-ptr (datum->syntax stx 'current-ptr)]) (syntax/loc stx - (loop current-data current-ptr body ...)))])) \ No newline at end of file + (loop current-data current-ptr body ...)))])) diff --git a/whalesong/bf/semantics.rkt b/whalesong/bf/semantics.rkt index e5a535f..81fb601 100644 --- a/whalesong/bf/semantics.rkt +++ b/whalesong/bf/semantics.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong +#lang whalesong ;; This is a second semantics for the language that tries to go for speed, ;; at the expense of making things a little more complicated. diff --git a/whalesong/cs019/lists.rkt b/whalesong/cs019/lists.rkt index 165e7f5..6dcee0f 100644 --- a/whalesong/cs019/lists.rkt +++ b/whalesong/cs019/lists.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong/base +#lang whalesong/base #| Why on earth are these here? Because first, etc. don't work on cyclic lists: diff --git a/whalesong/examples/alert.rkt b/whalesong/examples/alert.rkt index 367abd0..0ff66f0 100644 --- a/whalesong/examples/alert.rkt +++ b/whalesong/examples/alert.rkt @@ -1,3 +1,3 @@ -#lang planet dyoo/whalesong -(require (planet dyoo/whalesong/js)) +#lang whalesong +(require whalesong/js) (alert "hello world") diff --git a/whalesong/examples/cs019/hello.rkt b/whalesong/examples/cs019/hello.rkt index 223cd5d..ca0f9bd 100644 --- a/whalesong/examples/cs019/hello.rkt +++ b/whalesong/examples/cs019/hello.rkt @@ -1,2 +1,2 @@ -#lang planet dyoo/whalesong/cs019 -"hello world" \ No newline at end of file +#lang whalesong/cs019 +"hello world" diff --git a/whalesong/examples/cs019/tick-tock/tick-tock.rkt b/whalesong/examples/cs019/tick-tock/tick-tock.rkt index 63aa7d6..01b20ba 100644 --- a/whalesong/examples/cs019/tick-tock/tick-tock.rkt +++ b/whalesong/examples/cs019/tick-tock/tick-tock.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong/cs019 +#lang whalesong/cs019 (define-resource index.html) diff --git a/whalesong/examples/cs019/where-am-i/where-am-i.rkt b/whalesong/examples/cs019/where-am-i/where-am-i.rkt index 6e3563d..02c738e 100644 --- a/whalesong/examples/cs019/where-am-i/where-am-i.rkt +++ b/whalesong/examples/cs019/where-am-i/where-am-i.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong/cs019 +#lang whalesong/cs019 (define-resource index.html) @@ -53,4 +53,4 @@ (initial-view index.html) (to-draw draw) (on-location-change location-change) - (on-mock-location-change mock-location-change)) \ No newline at end of file + (on-mock-location-change mock-location-change)) diff --git a/whalesong/examples/dom-play.rkt b/whalesong/examples/dom-play.rkt index 0f33854..8c72933 100644 --- a/whalesong/examples/dom-play.rkt +++ b/whalesong/examples/dom-play.rkt @@ -1,6 +1,6 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/js)) +(require whalesong/js) ;; insert-break: -> void @@ -34,4 +34,4 @@ (write-message "viewport-width: ") (write-message (viewport-width)) (insert-break) (write-message "viewport-height: ") (write-message (viewport-height)) -(insert-break) \ No newline at end of file +(insert-break) diff --git a/whalesong/examples/drag-and-drop/drag-and-drop-1.rkt b/whalesong/examples/drag-and-drop/drag-and-drop-1.rkt index 41c2627..b5d7760 100644 --- a/whalesong/examples/drag-and-drop/drag-and-drop-1.rkt +++ b/whalesong/examples/drag-and-drop/drag-and-drop-1.rkt @@ -1,7 +1,7 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/web-world) - (planet dyoo/whalesong/resource)) +(require whalesong/web-world + whalesong/resource) (define-resource view.html) (define-resource style.css) diff --git a/whalesong/examples/drag-and-drop/drag-and-drop-2.rkt b/whalesong/examples/drag-and-drop/drag-and-drop-2.rkt index 05723e4..17fa33d 100644 --- a/whalesong/examples/drag-and-drop/drag-and-drop-2.rkt +++ b/whalesong/examples/drag-and-drop/drag-and-drop-2.rkt @@ -1,7 +1,7 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/web-world) - (planet dyoo/whalesong/resource)) +(require whalesong/web-world + whalesong/resource) (define-resource view.html) (define-resource style.css) diff --git a/whalesong/examples/eli-number-puzzle.rkt b/whalesong/examples/eli-number-puzzle.rkt index 27ad805..58b93e8 100644 --- a/whalesong/examples/eli-number-puzzle.rkt +++ b/whalesong/examples/eli-number-puzzle.rkt @@ -1,10 +1,10 @@ -#lang planet dyoo/whalesong +#lang whalesong ;; Eli's puzzle ;; ;; http://lists.racket-lang.org/users/archive/2011-July/046849.html -(require (planet dyoo/whalesong/world)) +(require whalesong/world) (define-struct world (seq output)) @@ -42,4 +42,4 @@ (big-bang (make-world '(1) '()) (on-tick tick 1) - (to-draw draw)) \ No newline at end of file + (to-draw draw)) diff --git a/whalesong/examples/expanding-circle.rkt b/whalesong/examples/expanding-circle.rkt index aa7e1a3..2a62cda 100644 --- a/whalesong/examples/expanding-circle.rkt +++ b/whalesong/examples/expanding-circle.rkt @@ -1,7 +1,7 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/world) - (planet dyoo/whalesong/image)) +(require whalesong/world + whalesong/image) (define handler (on-tick add1 1)) @@ -21,4 +21,4 @@ handler ) -"all done" \ No newline at end of file +"all done" diff --git a/whalesong/examples/fact.rkt b/whalesong/examples/fact.rkt index fe8ef50..5333852 100644 --- a/whalesong/examples/fact.rkt +++ b/whalesong/examples/fact.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong +#lang whalesong (provide fact) (define (fact x) (cond diff --git a/whalesong/examples/google-maps/maps.rkt b/whalesong/examples/google-maps/maps.rkt index e85b370..80535dd 100644 --- a/whalesong/examples/google-maps/maps.rkt +++ b/whalesong/examples/google-maps/maps.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong +#lang whalesong ;; A simple binding to Google Maps. ;; @@ -7,8 +7,8 @@ ;; https://developers.google.com/maps/documentation/javascript/tutorial ;; -(require (planet dyoo/whalesong/js) - (planet dyoo/whalesong/js/world)) +(require whalesong/js + whalesong/js/world) (provide initialize-google-maps-api! make-dom-and-map diff --git a/whalesong/examples/google-maps/test-maps.rkt b/whalesong/examples/google-maps/test-maps.rkt index f2e413e..e34f71e 100644 --- a/whalesong/examples/google-maps/test-maps.rkt +++ b/whalesong/examples/google-maps/test-maps.rkt @@ -1,5 +1,5 @@ -#lang planet dyoo/whalesong -(require (planet dyoo/whalesong/web-world) +#lang whalesong +(require whalesong/web-world "maps.rkt") ;; Note: this is dyoo's API key. Please don't abuse this. :) @@ -37,4 +37,4 @@ (update-view-text (view-focus v "where") (format "~a" w)))) (on-map-click (lambda (w v lat lng) - (list lat lng)))) \ No newline at end of file + (list lat lng)))) diff --git a/whalesong/examples/hello-bf.rkt b/whalesong/examples/hello-bf.rkt index 24b4b5f..cc15478 100644 --- a/whalesong/examples/hello-bf.rkt +++ b/whalesong/examples/hello-bf.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong/bf +#lang whalesong/bf +++++ +++++ initialize counter (cell #0) to 10 [ use loop to set the next four cells to 70/100/30/10 diff --git a/whalesong/examples/hello-css.rkt b/whalesong/examples/hello-css.rkt index 46528f6..c577025 100644 --- a/whalesong/examples/hello-css.rkt +++ b/whalesong/examples/hello-css.rkt @@ -1,6 +1,6 @@ -#lang planet dyoo/whalesong/base -(require (planet dyoo/whalesong/web-world) - (planet dyoo/whalesong/resource)) +#lang whalesong/base +(require whalesong/web-world + whalesong/resource) (define-resource hello-css.css) (define-resource hello-css-main.html) @@ -9,4 +9,4 @@ (initial-view hello-css-main.html) (to-draw (lambda (w v) v))) -"done" \ No newline at end of file +"done" diff --git a/whalesong/examples/hello-kr.rkt b/whalesong/examples/hello-kr.rkt index 2e188d3..861bec2 100644 --- a/whalesong/examples/hello-kr.rkt +++ b/whalesong/examples/hello-kr.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong/korean +#lang whalesong/korean (정의 (안녕 이름) @@ -19,4 +19,4 @@ (정의-구조 사람 (이름 나이)) -(make-사람 "danny" 32) \ No newline at end of file +(make-사람 "danny" 32) diff --git a/whalesong/examples/hello.rkt b/whalesong/examples/hello.rkt index 3f39caa..67c9273 100644 --- a/whalesong/examples/hello.rkt +++ b/whalesong/examples/hello.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong +#lang whalesong (display "hello world") -(newline) \ No newline at end of file +(newline) diff --git a/whalesong/examples/image-library-example.rkt b/whalesong/examples/image-library-example.rkt index f26f3e3..46150a7 100644 --- a/whalesong/examples/image-library-example.rkt +++ b/whalesong/examples/image-library-example.rkt @@ -1,6 +1,6 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/image)) +(require whalesong/image) (printf "images.rkt\n") diff --git a/whalesong/examples/iron-puzzle/iron-puzzle.rkt b/whalesong/examples/iron-puzzle/iron-puzzle.rkt index b054399..fdeb2cb 100644 --- a/whalesong/examples/iron-puzzle/iron-puzzle.rkt +++ b/whalesong/examples/iron-puzzle/iron-puzzle.rkt @@ -1,6 +1,6 @@ -#lang planet dyoo/whalesong/base -(require (planet dyoo/whalesong/resource) - (planet dyoo/whalesong/image)) +#lang whalesong/base +(require whalesong/resource + whalesong/image) ;; The Iron Image Puzzle ;; Part of the Nifty Assignments page by Nick Parlante. @@ -9,7 +9,7 @@ ;; To run this program locally on your machine under Google Chrome, you'll ;; probably need to use --allow-file-access-from-files to get around ;; the same-origin policy. The program should run normally if served on -;; a web server +;; a web server. (define-resource iron-puzzle.png) diff --git a/whalesong/examples/js-get-message/js-get-message-child.rkt b/whalesong/examples/js-get-message/js-get-message-child.rkt index d3b8887..719c7d1 100644 --- a/whalesong/examples/js-get-message/js-get-message-child.rkt +++ b/whalesong/examples/js-get-message/js-get-message-child.rkt @@ -1,7 +1,7 @@ -#lang planet dyoo/whalesong -(require (planet dyoo/whalesong/js/world) - (planet dyoo/whalesong/js) - (planet dyoo/whalesong/web-world)) +#lang whalesong +(require whalesong/js/world + whalesong/js + whalesong/web-world) ;; Test of getting world events from arbitrary JavaScript function application. diff --git a/whalesong/examples/list-length.rkt b/whalesong/examples/list-length.rkt index bb6899b..fc2f2e0 100644 --- a/whalesong/examples/list-length.rkt +++ b/whalesong/examples/list-length.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong +#lang whalesong (define (mylen x acc) (cond @@ -10,4 +10,4 @@ (define v (build-list 1000000 (lambda (i) i))) (printf "Built list\n") (mylen v 0) -"done computing length" \ No newline at end of file +"done computing length" diff --git a/whalesong/examples/logo.rkt b/whalesong/examples/logo.rkt index 48209f1..5a77776 100644 --- a/whalesong/examples/logo.rkt +++ b/whalesong/examples/logo.rkt @@ -1,6 +1,6 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/image)) +(require whalesong/image) (define lst diff --git a/whalesong/examples/mathjax.rkt b/whalesong/examples/mathjax.rkt index 7d7e5cd..4f04041 100644 --- a/whalesong/examples/mathjax.rkt +++ b/whalesong/examples/mathjax.rkt @@ -1,5 +1,5 @@ -#lang planet dyoo/whalesong -(require (planet dyoo/whalesong/web-world)) +#lang whalesong +(require whalesong/web-world) ;;; This demonstrates how to use MathJax to write equations. ;;; Use --include-script mathjax-script.js to include the MathJax. @@ -19,4 +19,4 @@ (big-bang 3 (initial-view (xexp->dom '(html (head) (body)))) (on-tick tick 5) - (to-draw draw)) \ No newline at end of file + (to-draw draw)) diff --git a/whalesong/examples/mouse.rkt b/whalesong/examples/mouse.rkt index 1431111..30c6927 100644 --- a/whalesong/examples/mouse.rkt +++ b/whalesong/examples/mouse.rkt @@ -1,7 +1,7 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/world) - (planet dyoo/whalesong/image)) +(require whalesong/world + whalesong/image) (define width 640) (define height 480) @@ -26,4 +26,4 @@ (printf "let's see how this works.\n\n") (big-bang (make-posn 0 0) (on-mouse mouse) - (to-draw draw)) \ No newline at end of file + (to-draw draw)) diff --git a/whalesong/examples/pacman.rkt b/whalesong/examples/pacman.rkt index be49af5..c9d8466 100644 --- a/whalesong/examples/pacman.rkt +++ b/whalesong/examples/pacman.rkt @@ -1,8 +1,7 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/world) - (planet dyoo/whalesong/image) - ) +(require whalesong/world + whalesong/image) ;; Constants: diff --git a/whalesong/examples/rain-world-program.rkt b/whalesong/examples/rain-world-program.rkt index 4a1d153..4657157 100644 --- a/whalesong/examples/rain-world-program.rkt +++ b/whalesong/examples/rain-world-program.rkt @@ -1,8 +1,8 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/world) - (planet dyoo/whalesong/image) - (planet dyoo/whalesong/js)) +(require whalesong/world + whalesong/image + whalesong/js) ;; Occupy the whole screen. (void (call-method body "css" "margin" 0)) @@ -128,4 +128,4 @@ (big-bang (make-world '()) (to-draw draw) - (on-tick tick)) \ No newline at end of file + (on-tick tick)) diff --git a/whalesong/examples/raphael-demo.rkt b/whalesong/examples/raphael-demo.rkt index 598fe72..862a802 100644 --- a/whalesong/examples/raphael-demo.rkt +++ b/whalesong/examples/raphael-demo.rkt @@ -1,7 +1,7 @@ -#lang planet dyoo/whalesong -(require (planet dyoo/whalesong/resource) - (planet dyoo/whalesong/web-world) - (planet dyoo/whalesong/js)) +#lang whalesong +(require whalesong/resource + whalesong/web-world + whalesong/js) ; This is a small demonstration of the Javascript ; graphics library Raphael from http://raphaeljs.com/ . diff --git a/whalesong/examples/read-bytes.rkt b/whalesong/examples/read-bytes.rkt index c026a2b..4b2412e 100644 --- a/whalesong/examples/read-bytes.rkt +++ b/whalesong/examples/read-bytes.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong +#lang whalesong (let loop ([b (read-byte)]) (cond @@ -6,4 +6,4 @@ (void)] [else (display (string (integer->char b))) - (loop (read-byte))])) \ No newline at end of file + (loop (read-byte))])) diff --git a/whalesong/examples/select.rkt b/whalesong/examples/select.rkt index 547c5b0..c8e0a32 100644 --- a/whalesong/examples/select.rkt +++ b/whalesong/examples/select.rkt @@ -1,6 +1,6 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/web-world)) +(require whalesong/web-world) (define (draw w v) (define v2 (view-focus v "fill-me-in")) diff --git a/whalesong/examples/shuffling.rkt b/whalesong/examples/shuffling.rkt index 3949ac2..f378d81 100644 --- a/whalesong/examples/shuffling.rkt +++ b/whalesong/examples/shuffling.rkt @@ -1,4 +1,4 @@ -#lang planet dyoo/whalesong +#lang whalesong ;; shuffle: vector -> vector diff --git a/whalesong/examples/sierpinski-carpet.rkt b/whalesong/examples/sierpinski-carpet.rkt index cd9a436..3e6ba2c 100644 --- a/whalesong/examples/sierpinski-carpet.rkt +++ b/whalesong/examples/sierpinski-carpet.rkt @@ -1,5 +1,5 @@ -#lang planet dyoo/whalesong/base -(require (planet dyoo/whalesong/image)) +#lang whalesong/base +(require whalesong/image) ;; Sierpenski carpet. ;; http://rosettacode.org/wiki/Sierpinski_carpet#Scheme @@ -36,4 +36,4 @@ (apply above (outer 0))))) -(carpet 4) \ No newline at end of file +(carpet 4) diff --git a/whalesong/examples/snip.rkt b/whalesong/examples/snip.rkt index b80c9f1..9cf60d7 100644 --- a/whalesong/examples/snip.rkt +++ b/whalesong/examples/snip.rkt @@ -1,7 +1,7 @@ #reader(lib"read.ss""wxme")WXME0108 ## #| This file uses the GRacket editor format. - Open this file in DrRacket version 5.1.2 or later to read it. + Open this file in DrRacket version 5.3.3.5 or later to read it. Most likely, it was created by saving a program in DrRacket, and it probably contains a program with non-text elements @@ -9,7 +9,7 @@ http://racket-lang.org/ |# - 28 7 #"wxtext\0" + 30 7 #"wxtext\0" 3 1 6 #"wxtab\0" 1 1 8 #"wximage\0" 2 0 8 #"wxmedia\0" @@ -17,22 +17,31 @@ 1 0 16 #"drscheme:number\0" 3 0 44 #"(lib \"number-snip.ss\" \"drscheme\" \"private\")\0" 1 0 36 #"(lib \"comment-snip.ss\" \"framework\")\0" -1 0 43 #"(lib \"collapsed-snipclass.ss\" \"framework\")\0" +1 0 93 +( + #"((lib \"collapsed-snipclass.ss\" \"framework\") (lib \"collapsed-sni" + #"pclass-wxme.ss\" \"framework\"))\0" +) 0 0 43 #"(lib \"collapsed-snipclass.ss\" \"framework\")\0" 0 0 19 #"drscheme:sexp-snip\0" 0 0 36 #"(lib \"cache-image-snip.ss\" \"mrlib\")\0" 1 0 68 ( #"((lib \"image-core.ss\" \"mrlib\") (lib \"image-core-wxme.rkt\" \"mr" #"lib\"))\0" -) 1 0 33 #"(lib \"bullet-snip.ss\" \"browser\")\0" -0 0 29 #"drscheme:bindings-snipclass%\0" -1 0 25 #"(lib \"matrix.ss\" \"htdp\")\0" +) 1 0 29 #"drscheme:bindings-snipclass%\0" +1 0 88 +( + #"((lib \"pict-snip.rkt\" \"drracket\" \"private\") (lib \"pict-snip.r" + #"kt\" \"drracket\" \"private\"))\0" +) 0 0 33 #"(lib \"bullet-snip.ss\" \"browser\")\0" +0 0 25 #"(lib \"matrix.ss\" \"htdp\")\0" 1 0 22 #"drscheme:lambda-snip%\0" -1 0 57 +1 0 26 #"drracket:spacer-snipclass\0" +0 0 57 #"(lib \"hrule-snip.rkt\" \"macro-debugger\" \"syntax-browser\")\0" -1 0 45 #"(lib \"image-snipr.ss\" \"slideshow\" \"private\")\0" 1 0 26 #"drscheme:pict-value-snip%\0" -0 0 38 #"(lib \"pict-snipclass.ss\" \"slideshow\")\0" +0 0 45 #"(lib \"image-snipr.ss\" \"slideshow\" \"private\")\0" +1 0 38 #"(lib \"pict-snipclass.ss\" \"slideshow\")\0" 2 0 55 #"(lib \"vertical-separator-snip.ss\" \"stepper\" \"private\")\0" 1 0 18 #"drscheme:xml-snip\0" 1 0 31 #"(lib \"xml-snipclass.ss\" \"xml\")\0" @@ -40,14 +49,13 @@ 2 0 34 #"(lib \"scheme-snipclass.ss\" \"xml\")\0" 1 0 10 #"text-box%\0" 1 0 32 #"(lib \"text-snipclass.ss\" \"xml\")\0" -1 0 15 #"test-case-box%\0" -2 0 1 6 #"wxloc\0" - 0 0 57 0 1 #"\0" +1 0 1 6 #"wxloc\0" + 0 0 61 0 1 #"\0" 0 75 1 #"\0" 0 12 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 0 9 #"Standard\0" -0 75 10 #"Monospace\0" -0 13 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 2 1 +0 75 16 #"Droid Sans Mono\0" +0 12 90 -1 90 -1 3 -1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 255 255 255 1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 -1 -1 2 24 @@ -104,6 +112,9 @@ 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 41 128 38 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" +1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 49 +#"framework:syntax-color:scheme:hash-colon-keyword\0" +0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 132 60 36 0 0 0 -1 -1 2 42 #"framework:syntax-color:scheme:parenthesis\0" 0 -1 1 #"\0" @@ -119,6 +130,9 @@ 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 36 #"framework:syntax-color:scheme:other\0" 0 -1 1 #"\0" +1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 16 +#"Misspelled Text\0" +0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" @@ -131,7 +145,13 @@ 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 28 #"drracket:check-syntax:set!d\0" 0 -1 1 #"\0" -1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 1 +1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 178 34 34 0 0 0 -1 -1 2 37 +#"drracket:check-syntax:unused-require\0" +0 -1 1 #"\0" +1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 36 +#"drracket:check-syntax:free-variable\0" +0 -1 1 #"\0" +1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 255 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" 1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 68 0 203 0 0 0 -1 -1 2 31 @@ -200,400 +220,385 @@ 0.0 13 90 -1 90 -1 3 -1 0 1 0 1 0 0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255 255 255 1 -1 4 1 #"\0" 0 -1 1 #"\0" -1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 255 255 0 -1 -1 0 -1 #"\0" +1.0 0 92 -1 -1 -1 -1 -1 0 0 0 0 0 1 0.0 0.0 0.0 0.0 0.0 0.0 0 0 0 255 +255 0 -1 -1 0 1 #"\0" 0 -1 1 #"\0" -1 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 0 1 1 1 200 0 0 0 0 0 -1 -1 0 1 -#"\0" +1.0 0 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 0.0 0.0 0.0 1.0 1.0 1.0 200 0 0 0 0 +0 -1 -1 0 1 #"\0" 0 -1 1 #"\0" -0 10 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 +0.0 10 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 -1 -1 2 1 #"\0" 0 -1 1 #"\0" -0 10 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 --1 -1 0 35 0 26 3 12 #"#lang planet" -0 0 26 3 15 #" dyoo/whalesong" -0 0 4 29 1 #"\n" -0 0 22 3 1 #"(" +0.0 10 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1.0 1.0 1.0 1.0 1.0 1.0 0 0 0 0 0 0 +-1 -1 0 31 0 25 3 15 #"#lang whalesong" +0 0 23 29 1 #"\n" +0 0 23 3 1 #"(" 0 0 14 3 7 #"require" -0 0 17 3 1 #" " -0 0 22 3 1 #"(" -0 0 14 3 6 #"planet" -0 0 17 3 1 #" " -0 0 14 3 20 #"dyoo/whalesong/image" -0 0 22 3 2 #"))" -0 0 4 29 1 #"\n" -0 0 24 29 1 #"\n" -0 0 22 3 1 #"(" +0 0 23 3 1 #" " +0 0 14 3 15 #"whalesong/image" +0 0 23 3 1 #")" +0 0 23 29 1 #"\n" +0 0 23 29 1 #"\n" +0 0 23 3 1 #"(" 0 0 15 3 6 #"define" -0 0 24 3 1 #" " +0 0 23 3 1 #" " 0 0 14 3 6 #"a-snip" -0 0 24 3 1 #" " +0 0 23 3 1 #" " 0 2 35 4 1 #"\0" 2 -1.0 -1.0 0.0 0.0 0 12 500 ( #"\211PNG\r\n\32\n\0\0\0\rIHDR\0\0\0X\0\0\0U\b" - #"\6\0\0\0\315\v#\352\0\0\0\6bKGD\0\377\0\377\0\377\240\275\247" - #"\223\0\0\25\355IDATx\234\355" - #"\234Y\254\34\305\271\200\277\252\236\231\263" - #"y7\266\317\361n\360\2\266\3\16\306\vf7\216\223\\ \21I\20\302\271\220" - #"D\212\24\244D\21\nW\271I$\256P\224\227(/\311KP\36\22\31\t\2" - #"\17(\4\"\24\226k.\4\204\314*\300\6cb\233\v\266\217}\354\30\373\370" - #",\263tW\325}\250\251\236\232\236\356Y\354c@W\374R\251{z\252{\252" - #"\276\371\373\257\277\376Z\4`\370LH" - #"\16\350\5\246\0\223\200n\244\314c\214" - #" \b\24RV\20\242H\30\236\306\230Q\240\4h\314g\244\364Y\"\370\224\0" - #"O\236<\203\201\201\305,^\274\224y" - #"\363\26\323\337\337O>?\235R\251\207#Gr\274\367^\300\256]\206R\311\0" - #"\32!\24P\301\230q`\24)?F\210#\b\361\21B\374/Qt\4\30\377" - #"\314\1\377D\1\367\317[\304\232\265\353" - #"\270l\375:\226-[\312\254i\323\350)\4H\t\306h\300T\217\2320\324\34" - #"8\240y\350!\315\363\317k@\1\272Z\\\355\235G\3008\360/\204\330\207\20" - #"\273\201\177b\314\360g\2\3669\a\334=e\n\3536ld\363\225W\261f\356" - #"\\f\227K\344N\17C>\217\276\350" - #"B\30\230\213\bCL\225\206\326\272\232" - #"\24Bh\224R\334\177\277b\373v\205" - #"\205\234\226\34p\2002B\34C\312\335\300kh\375A\374\354OC\316\31\340I" - #"\347\235\307\346u\353\270i\351RV\236" - #"\32\246g\317\273\210\375\373\221'O\22" - #"\0\1 \346\314\201{\357\305|\365\253\230\361q\2141(\245\352\222" - #"\326\nc\"~\363\233\210G\37\215\260\32\353\222\362\216>lU-\305" + #"\6\0\0\0\315\v#\352\0\0\25\355IDATx\234\355\234Y\254\34\305\271" + #"\200\277\252\236\231\263y7\266\317\361n" + #"\360\2\266\3\16\306\vf7\216\223\\" + #" \21I\20\302\271\220D\212\24\244D\21\nW\271I$\256P\224\227(/\311" + #"KP\36\22\31\t\2\17(\4\"\24\226k.\4\204\314*\300\6cb\233\v" + #"\266\217}\354\30\373\370,\263tW\325" + #"}\250\251\236\232\236\356Y\354c@W" + #"\374R\251{z\252{\252\276\371\373\257" + #"\277\376Z\4`\370LH\16\350\5\246\0\223\200n\244\314c\214 \b\24RV" + #"\20\242H\30\236\306\230Q\240\4h\314" + #"g\244\364Y\"\370\224\0O\236<\203" + #"\201\201\305,^\274\224y\363\26\323\337" + #"\337O>?\235R\251\207#Gr\274\367^\300\256]\206R\311\0\32!\24P" + #"\301\230q`\24)?F\210#\b\361\21B\374/Qt\4\30\377\314\1\377D" + #"\1\367\317[\304\232\265\353\270l\375:" + #"\226-[\312\254i\323\350)\4H\t\306h\300T\217\2320\324\348\240y\350" + #"!\315\363\317k@\1\272Z\\\355\235" + #"G\3008\360/\204\330\207\20\273\201\177" + #"b\314\360g\2\3669\a\334=e\n\3536ld\363\225W\261f\356\\f\227" + #"K\344N\17C>\217\276\350B\30\230\213\bCL\225\206\326\272\232\24Bh\224" + #"R\334\177\277b\373v\205\205\234\226\34p\2002B\34C\312\335\300kh\375A" + #"\374\354OC\316\31\340I\347\235\307\346" + #"u\353\270i\351RV\236\32\246g\317" + #"\273\210\375\373\221'O\22\0\1 \346" + #"\314\201{\357\305|\365\253\230\361q\214" + #"1(\245\352\222\326\nc\"~\363\233\210G\37\215\260\32\353\222\362\216" + #">lU-\305(\260\27)_\4\366\242\265\342\223\226\t\a\234\v\2\256" ) 500 ( - #"(\260\27)_\4\366\242\265\342\223\226" - #"\t\a\234\v\2\256\17\2\266\255X\301\3120\244g\377~raH\36\310c\233" - #"2\a\30\300L\232\204\371\323\237\320[" - #"\267\242\307\307QJ\21E\21a\30\306G\255#FFB\356\2743\344\335wC" - #",\324\260\232\34d\22745\350\316\214" - #"\24\221\362=\204\370\37\264\336\377\211\232" - #"\216\211\3,\4\253\244\344\373\300\225Z\323g\f]X\277\240\e(`\341\n@" - #"V\217N\314\300\0\321\263\317\22.YB8>N\30\206T*\225\272\243\224!" - #";vD\334uW\5\255\35d?\371\327\2346\373\347\32\30A\210\327\201\3470" - #"\346\324\204T\273\225\4\300\275g\373\220" - #"B\20\360\357R\3623\245Xk\fS\201\31\300t\254\323\325\203\5\3544\327\1" - #"vI\216\216\22\f\16\222\273\3556d\20 \204\250K\0J\t\346\3177\354\334" - #"i8z\324\375rR7\4\351b\252)\a,\0\226\"\345\bp\354l\253\336" - #"R\316\32\360\202|\236\377\22\202mQ" - #"\304\0\26\354L\240\17k\22\222\332\232%b\357^\344e\227\21\254\\I %" - #"R\312:\300\0]] \4\354\330\341" - #"\337i\22\347\315~\315\201\356\303\230\345" - #"\4A7p\220\232\315\236x9+\300\353s9~\245\24W(\305L,\330I" - #"\325\207:\333\343\252\233Uu\207G\0" - #"\346\360a\304\355\267\23\344\363\4A\200" - #"\224\262>\257\201\376~\303\323O\303\360" - #"p\22\254\361\236\226f\365\222\337I\214" - #"\231\17\364c!\227\332\253t\207rf" - #"\200\205\340+A\300\275J\261\22\230\205" - #"5\ay\352!f\235\223\270\356\276\23" - #"\207\16\301\365\327\303\242EH)c\310\316\3152\6&O6\34?\16\257\276\n" - #"\265F\314\207\353\334\265,\310&q>\23k6\216\0#mT\2763" - #"\351\34\260\224|+\b\370\231R,\1fc\315A\253\27\323IS\2156" + #"\17\2\266\255X\301\3120\244g\377~raH\36\310c\2332\a\30\300L\232" + #"\204\371\323\237\320[\267\242\307\307QJ\21E\21a\30\306G\255#FFB\356" + #"\2743\344\335wC,\324\260\232\34d" + #"\22745\350\316\214\24\221\362=\204\370" + #"\37\264\336\377\211\232\216\211\3,\4\253" + #"\244\344\373\300\225Z\323g\f]X\277\240\e(`\341\n@V\217N\314\300\0" + #"\321\263\317\22.YB8>N\30\206T*\225\272\243\224!;vD\334uW" + #"\5\255\35d?\371\327\2346\373\347\32" + #"\30A\210\327\201\3470\346\324\204T\273" + #"\225\4\300\275g\373\220B\20\360\357R" + #"\3623\245Xk\fS\201\31\300t\254\323\325\203\5\3544\327\1vI\216\216\22" + #"\f\16\222\273\3556d\20 \204\250K\0J\t\346\3177\354\334i8z\324\375" + #"rR7\4\351b\252)\a,\0\226\"\345\bp\354l\253\336R\316\32\360\202" + #"|\236\377\22\202mQ\304\0\26\354L\240\17k\22\222\332\232%b\357^\344e" + #"\227\21\254\\I %R\312:\300\0]] \4\354\330\341\337i\22\347\315~" + #"\315\201\356\303\230\345\4A7p\220\232\315\236x9+\300\353s9~\245\24W" + #"(\305L,\330I\325\207:\333\343\252" + #"\233Uu\207G\0\346\360a\304\355\267" + #"\23\344\363\4A\200\224\262>\257\201\376" + #"~\303\323O\303\360p\22\254\361\236\226" + #"f\365\222\337I\214\231\17\364c!\227" + #"\332\253t\207rf\200\205\340+A\300\275J\261\22\230\2055\ay\352!f\235" + #"\223\270\356\276\23\207\16\301\365\327\303\242" + #"EH)c\310\316\3152\6&O6\34?\16\257\276\n\265F\314\207\353\334\265" + #",\310&q>\23k6\216\0#mT\2763\351\34\260\224|+\b\370\231R" + #",\1fc\315A\253\27\323IS\2156\6\272" + #"\273\341\206\el^!bSa\277\266P\246L1" ) 500 ( - #"\6\272\273\341\206\el^!bSa\277\266P\246L1\374\345/\20E\256\323" - #"\221\246\301\311\224U\"S\255\301B\244" - #"\34\302\230\341\246\325\357Td\353,\236" - #"\b\301\267\202\200\377\210\"\26b\341v{_\247U+\r\256;O{\241\3153" - #"\317`\306\306\354\2711H)\351\352\352" - #"\242\273\273\233\256\256.\244,\260jU" - #"\201\265ks\330F\313\245\254&4\231dF\232\211\3267\20\4\363;B\322J" - #":\2\374oRrw\30\262\0\v\267\340}\3474\322\177\345I|NBO\263" - #"\323|\360\1\274\365V|\335A.\24\ntuu\221\317\27\350\353\313s\323M" - #"i\236u\328\341\375\232\179\r\366L\224\372j\265v\23#m\3^/%" - #"\377\251T\254\271\371\304\367\311\327=\v" - #"t\332\365\272\262)E\244\224\344r9\214\311\261~}\216\215\e;\201\333" - #"\314P\371Z\35\0y\214\271\4!\26\265Q\213li\n\370\vB\360\355(b" - #"\0060\255\305\203\322\376\350\266zpi" - #"\27\213E\370\360\303\364\374B\20\4\1" - #"A\220\243\247'\340\333\337N\263\275I3Q\347mg\224B\244\334" - #"\327\207\326\e\260\235\3753\223L\300\5!\370\276\326\314\303v\177\203" + #"\374\345/\20E\256\323\221\246\301\311\224" + #"U\"S\255\301B\244\34\302\230\341\246" + #"\325\357Td\353,\236\b\301\267\202\200\377\210\"\26b\341v{_\247U+\r" + #"\256;O{\241\3153\317`\306\306\354" + #"\2711H)\351\352\352\242\273\273\233\256" + #"\256.\244,\260jU\201\265ks\330F\313\245\254&4\231dF\232\211\3267" + #"\20\4\363;B\322J:\2\374oRrw\30\262\0\v\267\340}\3474\322\177" + #"\345I|NBO\263\323|\360\1\274\365V|\335A.\24\ntuu\221\317" + #"\27\350\353\313s\323Mi\236u\328\341\375\232\179\r\366L\224\372j\265v" + #"\23#m\3^/%\377\251T\254\271\371\304\367\311\327=\vt\332\365\272" + #"\262)E\244\224\344r9\214\311\261~}\216\215\e;\201\333\314P\371Z\35\0" + #"y\214\271\4!\26\265Q\213li\n\370\vB\360\355(b\0060\255\305\203\322" + #"\376\350\266zpi\27\213E\370\360\303" + #"\364\374B\20\4\1A\220\243\247'\340\333\337N\263\275I3Q\347mg\224B" + #"\244\334\327\207\326\e\260\235\3753\223L\300\5!\370\276\326\314\303" + #"v\177\203\254\214g mE\227j\1\207\6\261\200\3\224\222l\331" ) 500 ( - #"\254\214g mE\227j\1\207\6\261" - #"\200\3\224\222l\331\"Y\261\"\315\216" - #"\266c\"|\361\363\372\317\231\3\254n\247\304\231OM\225/K\311F`2g" - #"\363\377\245K[fMf\277\\N\213\205\b\230>=`\333\266,\367,M{" - #"\333\321d\227\334[q!\266\307\327\271" - #"\244\326bj\20p\213\326L\6\246R\363W\323:\20YQ\200\254NG\333i" - #"`\300\36\215\211\23\20\37]7:\212$_\373\232d\336\274\206\30]\n0'" - #"\315\376\3424wn2\260\272.\360\324" - #"\256\244\2\336\n\254\250\206\35\375\236Z" - #"\332\377\237,~\332\365\216\323\244I\210" - #"%K\354y\"l\351\316]\254\2$\375\375\222[n\311\202\332\252qKJ\22" - #"\2563\27\v\261Njg\322\0x\262" - #"\20\334\240\24\223\260\261\334\316\372\322\331" - #"\322N|+\226\345\313a\341\302\372\274" - #"\211a\b\a\331j\261\340\e\337\220\314" - #"\234\331\nr\273\222\346U\364a\314\212" - #"\16\236a\245\201\337\345\300Rj#\21I\311\n\233\264j\270|3\223&uf" - #"\346\252\2530\371|\235i\250\313kL\235fk-Y\270Pp\323M\376\257\245" - #"\275[\315 \247EM\222\232<\37k4\333\227:\300\201\224l\26\202n,`" - #"\337s\310*f\263&#)\315\356\255C\261uk\235y\240z\336\360\274\0302" - #"h\r\337\374\246\240\257/\313\307\315\372" - #"\334\254\264\376Q\2\275\b\2610#\177" - #"\272\324\1^\"%\27iM\36\253\275" - #"\235\233\364\t\220\205\va\323\246\246Y" - #"\322\354r\24\t\226-\23l\336\234z\307Y\24\250\336T\0303\217\306HL\266" - #"\324\1^\217\r\234\27314h\35ame\32Z\231\204\206t\343\215\230i\323" - #"jy\306\3060\17?\2149q\242vo\325l$\207\224\214\201\233o" - #"\206\\\333\301\222\264Q\21'i\346E\2\323\20bz\273?P\3\234\3" + #"\"Y\261\"\315\216\266c\"|\361\363" + #"\372\317\231\3\254n\247\304\231OM\225/K\311F`2g\363\377\245K[f" + #"Mf\277\\N\213\205\b\230>=`\333\266,\367,M{\333\321d\227\334[" + #"q!\266\307\327\271\244\326bj\20p\213\326L\6\246R\363W\323:\20YQ" + #"\200\254NG\333i`\300\36\215\211\23\20\37]7:\212$_\373\232d\336\274" + #"\206\30]\n0'\315\376\3424wn" + #"2\260\272.\360\324\256\244\2\336\n\254" + #"\250\206\35\375\236Z\332\377\237,~\332" + #"\365\216\323\244I\210%K\354y\"l" + #"\351\316]\254\2$\375\375\222[n\311\202\332\252qKJ\22\2563\27\v\261N" + #"jg\322\0x\262\20\334\240\24\223\260" + #"\261\334\316\372\322\331\322N|+\226\345" + #"\313a\341\302\372\274\211a\b\a\331j" + #"\261\340\e\337\220\314\234\331\nr\273\222" + #"\346U\364a\314\212\16\236a\245\201\337" + #"\345\300Rj#\21I\311\n\233\264j\270|3\223&uf\346\252\2530\371|" + #"\235i\250\313kL\235fk-Y\270Pp\323M\376\257\245\275[\315 \247E" + #"M\222\232<\37k4\333\227:\300\201\224l\26\202n,`\337s\310*f\263" + #"&#)\315\356\255C\261uk\235y\240z\336\360\274\0302h\r\337\374\246\240" + #"\257/\313\307\315\372\334\254\264\376Q\2" + #"\275\b\2610#\177\272\324\1^\"%" + #"\27iM\36\253\275\235\233\364\t\220\205" + #"\va\323\246\246Y\322\354r\24\t\226-\23l\336\234z\307Y\24\250\336T\30" + #"3\217\306HL\266\324\1^\217\r\234\27314h\35ame\32Z\231\204\206" + #"t\343\215\230i\323jy\306\3060\17?\2149q\242vo\325l$\207\224\214" + #"\201\233o\206\\\333\301\222\264Q\21'i\346E\2\323\20bz\273?" + #"P\3\234\3\326x\332\353\227\261\35\210\355\346q)U\247\202\0\261m" ) 500 ( - #"\326x\332\353\227\261\35\210\355\346q)" - #"U\247\202\0\261m[\3557\225\202;" - #"\357\204\333n\203\273\356\302\37oO\263" - #"\315Q\4_\370\2\254Y\223\374e\262" - #"~1\221'\2536\276\231\350\302\0163\265'1\340~!X\24259j\203\225" - #"\311\3077sv\262\212/\0\223\30%" - #"\26B\200\20\215\317\331\260\1\326\257\257" - #"]\373\363\237\341\201\al\276\a\37\204" - #"\307\37\267\371\274\21\16\37\264\326\206B" - #"\1n\2741Y\212$\264\266\372\222\244" - #"kq\2001\347\321\256\177\25\347Z\212" - #"u\247\375~P\326hD\326\365\3642\212\354\335" - #"p\355\265\311\32\264+\255\f\236\300\232" - #"\211\366\3345\t \205`\00153\236\366b4\353\261\371\307\264\342dy\243u" - #"&\342G?BL\236l?\27\213\210\373\356kx\6\0\277\375-\224\313 D" - #"\372(\274\375v\303" - #"=\2\340\345\227\21O>\211\366\0'!G\221\341\374\363\r_\374b;\357^" - #"\262&Y5J\226\244\3\300S\215a\n\3557`\255z\363\235\212\270\373n\230" - #":\325\376V\245\2\277\373]\363g\377" - #"\376\367\3500\254\3\354\203\326\332 \245" - #"a\353\3264\357\240\231\321J\346K-m5\3654+a" + #"[\3557\225\202;\357\204\333n\203\273" + #"\356\302\37oO\263\315Q\4_\370\2\254Y\223\374e\262~1\221'\2536\276" + #"\231\350\302\0163\265'1\340~!X\24259j\203\225\311\3077sv\262\212" + #"/\0\223\30%\26B\200\20\215\317\331" + #"\260\1\326\257\257]\373\363\237\341\201\a" + #"l\276\a\37\204\307\37\267\371\274\21\16" + #"\37\264\326\206B\1n\2741Y\212$" + #"\264\266\372\222\244kq\2001\347\321\256" + #"\177\25\347Z\212u\247\375~P\326h" + #"D\326\365\3642\212\354\335p\355\265\311\32\264" + #"+\255\f\236\300\232\211\366\3345\t " + #"\205`\00153\236\366b4\353\261\371\307\264\342dy\243u&\342G?BL" + #"\236l?\27\213\210\373\356kx\6\0\277\375-\224\313 D" + #"\372(\274\375v\303=\2\340\345\227\21" + #"O>\211\366\0'!G\221\341\374\363\r_\374b;\357^\262&Y5J\226" + #"\244\3\300S\215a\n\3557`\255z" + #"\363\235\212\270\373n\230:\325\376V\245" + #"\2\277\373]\363g\377\376\367\3500\254" + #"\3\354\203\326\332 \245a\353\3264\357\240\231\321J\346K-m5\3654+a" #",\26\260\326\24\252\217t\223?\233\275\\\355\372\303-\253" + #"c\ff\315\32\314\355\267\327\236\363\364\323\230W_mn" ) 500 ( - #"c\ff\315\32\314\355\267\327\236\363\364" - #"\323\230W_mn\273\237{\16\365\362\313\250 \310\204\\.k\326\2541,Y" - #"\322\256\211h\347{'\316\16\267v\270-`!\2204\2\316\322hR\276k\370" - #"/\215ii\307\21\2\356\271\az{" - #"\3555c\340\276\373\20\325{\263\356\323" - #"\225\n\352\301\aQ)f\242\366\331\320" - #"\323\243\371\322\227\222\23S\232ih+" - #"\225\361\363H\332\6\334\27\4\30\352'" - #"}\352D\30635\5\231\367\31\203\370" - #"\362\227\341\353_\257]{\353-\304\263" - #"\317\266|\246\6\324\343\217\243>\372\b" - #"\225\230\264\355C\256T\f\e7\32f\315j\69\353\35\245E^I;]f" - #"\t\220S\252N{\335,\333\263\226\254" - #"\231\316\306@o/\346\227\277\204\300\v" - #")m\337\16\245\346\223\360\f\325\231\300" - #"\203\203\250g\236A\5Au&|\243\231\210\"\303\264i\326\243h\17p\253\306" - #"0i&\332\264\3019h\0\0346\271\251#m\316\202\374\275\357!\326\255\253=" - #"\353\304\tx\344\221\226\217\363\25@=" - #"\362\bQ\261\230j\207-dM\245\242\271\342\n;\237\255V\313f\r\\\362\330" - #"\354\17h\23\260\277vGa\341\226\231" - #"\300Y\263\306\324\247y\363\340\27\277\210" - #"\277\26\0\177\373\e\34>\334\3741\324" - #"\346\261+ z\3555\324\356\335()" - #"\23\353:j\220\243\310\232\210+\257\364W&ub*\332\371#\262E\2\204\306" - #"\304\366\327\301-\323\\\213\317J\356\271" - #"\a\346\316\255}\326\32\356\277\277\345m\21P\241\266:#*\225PO\372\b\225\230\264\355C\256T\f\e7\32f\315j\69\353\35\245E" + #"^I;]f\t\220S\252N{\335,\333\263\226\254\231\316\306@o/\346\227" + #"\277\204\300\v)m\337\16\245\346\223\360" + #"\f\325\231\300\203\203\250g\236A\5A" + #"u&|\243\231\210\"\303\264i\326\243h\17p\253\3060i&\332\264\3019h" + #"\0\0346\271\251#m\316\202\374\275\357" + #"!\326\255\253=\353\304\tx\344\221\226" + #"\217\363\25@=\362\bQ\261\230j\207-dM\245\242\271\342\n;\237\255V\313" + #"f\r\\\362\330\354\17h\23\260\277v" + #"Ga\341\226\231\300Y\263\306\324\247y" + #"\363\340\27\277\210\277\26\0\177\373\e\34" + #">\334\3741\324\346\261+ z\3555" + #"\324\356\335()\23\353:j\220\243\310\232\210+\257\364W&ub*\332\371#" + #"\262E\2\204\306\304\366\327\301-\323\\" + #"\213\317J\356\271\a\346\316\255}\326\32" + #"\356\277\277\345m\21P\241\266:#*\225PO\344\6\355u\351\205\27P\247N\241\22P\e\3356\315\246M\332\v" - #"e\266j\364\222`\235\201jo\301L\34[?(D\235\e\344\354\260\323b\267" - #"CCX\375\331d\f\302]K\215_\334}7L\237^\37\203\0\314\37\376`" - #"]4\357Y\356O\316\202\233l\350b" - #"\320\207\16\241\337z\253\251O\354\0\17" - #"\f\30V\257n\267As6\327\a\354\324\256\3\300\37R\363}]\205\212^\32" - #"\253\246qj\326\307\25-\253\323(\0\261z5\334" - #"qGc\b\364\335w\21O\344\6\355u\351\205\27P\247N\241\22P\e\3356\315" + #"\246M\332\ve\266j\364\222`\235\201jo\301L\34[?(D\235\e\344\354" + #"\260\323b\267CCX\375\331d\f\302]K\215_\334}7L\237^\37\203\0" + #"\314\37\376`]4\357Y\356O\316\202" + #"\233l\350b\320\207\16\241\337z\253\251O\354\0\17\f\30V\257n\267As6" + #"\327\a\354\324\256\3\300\37R\363}]" + #"\205\212^\32\253\246qj\326\307\25-\253\323(\0\261z5\334qGc\b\364" + #"\335w\21O" - #"\341p\241\276\315\351X\272\273\273Y\273" - #"v-+\346\317'\37E\4\245\22\271\321Qr\243\243\4\a\16 N\236\314\236" - #"\335N#\350\244\366\372\327:1\23\251" - #"]\354|\236p\313\26*\205\2\245\361" - #"q\306\306\307\31\376\370c\216\f\16r" - #"rx\370\314!\264\220\263\2\f6\336" - #"\260\274P\340\222J\205\311\306\20\320z" - #"\243C\377\307}i\0057\313.\247v\223i\f\227W\226.\245\270`\1##" - #"#\234\32\32\342\350\320\20\243M\346\304M\204\2345`'3\2005X7\316\355" - #"\302\232\265\17_Z!H\24\244\35\310" - #"iv\330\a\233\234\320X\4N\367\366" - #"\362\257 \340\330\310\310\304\314\342o!" - #"\23\6\30,\310\363\201\213\260\353 \375" - #"\rY\342\215\361i\324\3464\260\376y" - #"\26\3304{\254\251\357\35\272\250\3028\266ov\234s\261\211m\266L(`'" - #"\275\300\5B\260\330\230x\303\346\206a%\322\375b\22\347\255:#\311ASg" - #"\22|\260\247\261Q\205\223\347\242\262" - #"-\344\234\0v\322\v,\22\202\371\325\r\226\234\351H" - #"&\177\354/)\315\32\270d\360\307\245\nvx\3624\326" -) 188 + #"\303\216xxp\313\345r\35\334\303\207" + #"\17\243\275a\254\263\225\216\3677:\256" + #"5O\t\301\346\\\216\376\213.B\25" + #"\213\344\204 \227\313\305[\f\310 @\214\214 \337{\257%\330\344\347v4:" + #"\315g\316\362\243\25X\323p\360 j\3324T\24\21E\21\225J\205J\245B" + #"\251Tbxx\230\243G\2172888\241p\341\f7\220\372\330\30\236\221\222" + #"+\207\207Y0u*Q.GNkr\371<\271|\36\31\4\310}\373\20\247" + #"O\327\201\365\355p\226\230\224c\226\6" + #"\247\331\341,mV\a\17\242\226/'\254\202-\227\313\24K%FN\237\346\310" + #"\341\303\f\35?>\341p\241\276\315\351" + #"X\272\273\273Y\273v-+\346\317'\37E\4\245\22\271\321Qr\243\243\4\a" + #"\16 N\236\314\236\335N#\350\244\366" + #"\372\327:1\23\251]\354|\236p\313" + #"\26*\205\2\245\361q\306\306\307\31\376" + #"\370c\216\f\16rrx\370\314!\264" + #"\220\263\2\f6\336\260\274P\340\222J" + #"\205\311\306\20\320z\243C\377\307}i\0057\313.\247v\223i\f\227W\226." + #"\245\270`\1###\234\32\32\342\350\320\20\243M\346\304M\204\2345`'3" + #"\2005X7\316\355\302\232\265\17_Z!H\24\244\35\310iv\330\a\233\234\320" + #"X\4N\367\366\362\257 \340\330\310\310" + #"\304\314\342o!\23\6\30,\310\363\201" + #"\213\260\353 \375\rY\342\215\361i\324" + #"\3464\260\376y\26\3304{\254\251\357" + #"\35\272\250\3028\266ov\234s\261\211m\266L(`'\275\300\5B\260\330\230" + #"x\303\346\206a%\322\375b\22\347\255:#\311ASg\22|\260\247\261Q\205" + #"\223\347\242\262-\344\234\0v\322\v," + #"\22\202\371\325\r\226\234\351H&\177\354/)\315\32\270d\360\307\245\n" + #"vx\3624\326w\37\256\346\3714\344\234\2v\222\307n\3576\200\335}" +) 170 ( - #"w\37\256\346\3714\344\234\2v\222\307" - #"n\3576\200\335}\314\355G\2216\2432M\262\\3gg}s0\216\5z" - #"\n\333\373\374\24456)\237\b`_" - #"z\260\r\342\f\254\235\356\301\216\353\371" - #"\235\20\2238\317r\301\\\3035\16\214\n\301(0Z]o\362Y\221O\34\260" - #"/\201\20\364\30C/\325]\256\204\240`L\274!H@\343p~\b\224\205\240" - #"dL<\335\252\302\247\257\251Y\362\251" - #"\2\316\22Au\352\225\277\205\214\20\250" - #"\2545w\237a\371L\2\376\377$\23" - #"\265\261\337\347\222!\237\3>\307\3629\340s,\237\3>\307\362" - #"\177z\314\306\205O<{Y\0\0\0\0IEND\256B`\202" -) 0 0 22 3 1 #")" -0 0 4 29 1 #"\n" -0 0 22 3 1 #"(" + #"\314\355G\2216\2432M\262\\3gg}s0\216\5z\n\333\373\374\2445" + #"6)\237\b`_z\260\r\342\f\254" + #"\235\356\301\216\353\371\235\20\2238\317r" + #"\301\\\3035\16\214\n\301(0Z]o\362Y\221O\34\260/\201\20\364\30C" + #"/\325]\256\204\240`L\274!H@\343p~\b\224\205\240dL<\335\252\302" + #"\247\257\251Y\362\251\2\316\22Au\352" + #"\225\277\205\214\20\250\2545w\237a\371" + #"L\2\376\377$\23\265\261\337\347\222!\237\3>\307\3629\340s,\237\3" + #">\307\362\177z\314\306\205O<{Y\0\0\0\0IEND\256B`\202" +) 0 0 23 3 1 #")" +0 0 23 29 1 #"\n" +0 0 23 3 1 #"(" 0 0 14 3 11 #"image-width" -0 0 17 3 1 #" " +0 0 23 3 1 #" " 0 0 14 3 6 #"a-snip" -0 0 22 3 1 #")" -0 0 4 29 1 #"\n" -0 0 22 3 1 #"(" +0 0 23 3 1 #")" +0 0 23 29 1 #"\n" +0 0 23 3 1 #"(" 0 0 14 3 12 #"image-height" -0 0 17 3 1 #" " +0 0 23 3 1 #" " 0 0 14 3 6 #"a-snip" -0 0 22 3 1 #")" -0 0 4 29 1 #"\n" +0 0 23 3 1 #")" +0 0 23 29 1 #"\n" 0 0 14 3 6 #"a-snip" -0 0 4 29 1 #"\n" +0 0 23 29 1 #"\n" 0 0 diff --git a/whalesong/examples/using-resources.rkt b/whalesong/examples/using-resources.rkt index aff657b..b2fff8b 100644 --- a/whalesong/examples/using-resources.rkt +++ b/whalesong/examples/using-resources.rkt @@ -1,7 +1,7 @@ -#lang planet dyoo/whalesong +#lang whalesong -(require (planet dyoo/whalesong/resource) - (planet dyoo/whalesong/image)) +(require whalesong/resource + whalesong/image) (define-resource whale-resource "images/humpback.jpg") (define-resource self-resource "using-resources.rkt")