-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
3080 lines (3079 loc) · 256 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:configs $ {} (:compact-output? true) (:extension |.cljs) (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.1)
:modules $ [] |quamolit/ |pointed-prompt/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.auto $ {}
:configs $ {}
:defs $ {}
|*looper $ {} (:at 1630649140980) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649146584) (:by |_yzgLY-K2) (:text |defatom) (:type :leaf)
|j $ {} (:at 1630649140980) (:by |_yzgLY-K2) (:text |*looper) (:type :leaf)
|r $ {} (:at 1630649143849) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|auto-move! $ {} (:at 1630649049113) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649049113) (:by |_yzgLY-K2) (:text |defn) (:type :leaf)
|j $ {} (:at 1630649049113) (:by |_yzgLY-K2) (:text |auto-move!) (:type :leaf)
|r $ {} (:at 1630649049113) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649053130) (:by |_yzgLY-K2) (:text |n) (:type :leaf)
|j $ {} (:at 1630649053669) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|t $ {} (:at 1630649071868) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649074883) (:by |_yzgLY-K2) (:text |case-default) (:type :leaf)
|j $ {} (:at 1630649075896) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649076573) (:by |_yzgLY-K2) (:text |.rem) (:type :leaf)
|j $ {} (:at 1630649078231) (:by |_yzgLY-K2) (:text |n) (:type :leaf)
|r $ {} (:at 1630649079060) (:by |_yzgLY-K2) (:text |4) (:type :leaf)
|r $ {} (:at 1630649080193) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649080655) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630649082191) (:by |_yzgLY-K2) (:text |:up) (:type :leaf)
|r $ {} (:at 1630649082777) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|v $ {} (:at 1630649083390) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649083988) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|j $ {} (:at 1630649084631) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649085050) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630649352912) (:by |_yzgLY-K2) (:text |:right) (:type :leaf)
|r $ {} (:at 1630649088277) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|x $ {} (:at 1630649089215) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649089580) (:by |_yzgLY-K2) (:text |2) (:type :leaf)
|j $ {} (:at 1630649090083) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649090716) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630649091947) (:by |_yzgLY-K2) (:text |:down) (:type :leaf)
|r $ {} (:at 1630649092555) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|y $ {} (:at 1630649093458) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649094207) (:by |_yzgLY-K2) (:text |3) (:type :leaf)
|j $ {} (:at 1630649094486) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649095364) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630649355064) (:by |_yzgLY-K2) (:text |:left) (:type :leaf)
|r $ {} (:at 1630649098230) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|v $ {} (:at 1630649137148) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630649138332) (:by |_yzgLY-K2) (:text |reset!) (:type :leaf)
|L $ {} (:at 1630649140447) (:by |_yzgLY-K2) (:text |*looper) (:type :leaf)
|T $ {} (:at 1630649054620) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649057940) (:by |_yzgLY-K2) (:text |js/setTimeout) (:type :leaf)
|b $ {} (:at 1630649061385) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649060804) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630649062674) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|r $ {} (:at 1630649063495) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649070935) (:by |_yzgLY-K2) (:text |auto-move!) (:type :leaf)
|j $ {} (:at 1630649065832) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649066330) (:by |_yzgLY-K2) (:text |inc) (:type :leaf)
|j $ {} (:at 1630649067105) (:by |_yzgLY-K2) (:text |n) (:type :leaf)
|r $ {} (:at 1630649068292) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630649287784) (:by |_yzgLY-K2) (:text |400) (:type :leaf)
|stop-auto! $ {} (:at 1630649157764) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649157764) (:by |_yzgLY-K2) (:text |defn) (:type :leaf)
|j $ {} (:at 1630649157764) (:by |_yzgLY-K2) (:text |stop-auto!) (:type :leaf)
|r $ {} (:at 1630649157764) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|v $ {} (:at 1630649159787) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649162934) (:by |_yzgLY-K2) (:text |js/clearTimeout) (:type :leaf)
|j $ {} (:at 1630649329957) (:by |_yzgLY-K2) (:text |@*looper) (:type :leaf)
:ns $ {} (:at 1630649043997) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649043997) (:by |_yzgLY-K2) (:text |ns) (:type :leaf)
|j $ {} (:at 1630649043997) (:by |_yzgLY-K2) (:text |app.auto) (:type :leaf)
:proc $ {} (:at 1630649043997) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|app.comp.container $ {}
:defs $ {}
|comp-cell $ {} (:at 1630576015440) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576016987) (:by |_yzgLY-K2) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1630576015440) (:by |_yzgLY-K2) (:text |comp-cell) (:type :leaf)
|r $ {} (:at 1630576015440) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630606173147) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|T $ {} (:at 1630576030599) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|v $ {} (:at 1630606163774) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630606165055) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|L $ {} (:at 1630606167495) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630606206107) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630606207084) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|j $ {} (:at 1630606207722) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607155085) (:by |_yzgLY-K2) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1630606212332) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|T $ {} (:at 1630606167673) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630606170052) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|j $ {} (:at 1630606191942) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630606195375) (:by |_yzgLY-K2) (:text |or) (:type :leaf)
|j $ {} (:at 1630606197693) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630606202431) (:by |_yzgLY-K2) (:text |:data) (:type :leaf)
|j $ {} (:at 1630606201285) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|r $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |:stage) (:type :leaf)
|j $ {} (:at 1630608173538) (:by |_yzgLY-K2) (:text |:init) (:type :leaf)
|r $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|y $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|yr $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608145522) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630608387908) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|T $ {} (:at 1630606386205) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630606387426) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|L $ {} (:at 1630607666858) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607671563) (:by |_yzgLY-K2) (:text |gen-tick-fn) (:type :leaf)
|j $ {} (:at 1630607674777) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|n $ {} (:at 1630607914339) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|r $ {} (:at 1630607676793) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|T $ {} (:at 1630576035277) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576035277) (:by |_yzgLY-K2) (:text |translate) (:type :leaf)
|j $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |-) (:type :leaf)
|j $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |120) (:type :leaf)
|r $ {} (:at 1630601399550) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630601399872) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630607085960) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |180) (:type :leaf)
|r $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |-) (:type :leaf)
|j $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |120) (:type :leaf)
|r $ {} (:at 1630601403066) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630601403818) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630607087784) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630576037516) (:by |_yzgLY-K2) (:text |180) (:type :leaf)
|r $ {} (:at 1630576035277) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576035277) (:by |_yzgLY-K2) (:text |scale) (:type :leaf)
|j $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576160062) (:by |_yzgLY-K2) (:text |&{}) (:type :leaf)
|j $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |:ratio) (:type :leaf)
|r $ {} (:at 1630610962611) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630610963863) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|L $ {} (:at 1630610964829) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630610965453) (:by |_yzgLY-K2) (:text |<) (:type :leaf)
|j $ {} (:at 1630610966984) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630610970460) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630610971833) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630610972731) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|P $ {} (:at 1630610975245) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630610975245) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630610975245) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|j $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |decimal) (:type :leaf)
|j $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576754719) (:by |_yzgLY-K2) (:text |.rem) (:type :leaf)
|j $ {} (:at 1630598548607) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630598549803) (:by |_yzgLY-K2) (:text |or) (:type :leaf)
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630607091993) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|j $ {} (:at 1630598550758) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|r $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|j $ {} (:at 1630611352548) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630611353900) (:by |_yzgLY-K2) (:text |and) (:type :leaf)
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |>) (:type :leaf)
|j $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |decimal) (:type :leaf)
|r $ {} (:at 1630611409829) (:by |_yzgLY-K2) (:text |0.92) (:type :leaf)
|j $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630611359815) (:by |_yzgLY-K2) (:text |<) (:type :leaf)
|j $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |decimal) (:type :leaf)
|r $ {} (:at 1630611397734) (:by |_yzgLY-K2) (:text |0.95) (:type :leaf)
|r $ {} (:at 1630576039875) (:by |_yzgLY-K2) (:text |1.1) (:type :leaf)
|v $ {} (:at 1630611367330) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|r $ {} (:at 1630576035277) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576035277) (:by |_yzgLY-K2) (:text |alpha) (:type :leaf)
|j $ {} (:at 1630576042388) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576046692) (:by |_yzgLY-K2) (:text |&{}) (:type :leaf)
|j $ {} (:at 1630576042388) (:by |_yzgLY-K2) (:text |:opacity) (:type :leaf)
|r $ {} (:at 1630598430754) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|r $ {} (:at 1630576035277) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576035277) (:by |_yzgLY-K2) (:text |button) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:text) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |str) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |score) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630607095355) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|j $ {} (:at 1630607100786) (:by |_yzgLY-K2) (:text |js/Math.pow) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |2) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|j $ {} (:at 1630607106831) (:by |_yzgLY-K2) (:text |js/Math.floor) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |+) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |score) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |0.4) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:w) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:h) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|x $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:text-color) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |>) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630607113662) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |2) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |50) (:type :leaf)
|y $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |40) (:type :leaf)
|yT $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text ||Futura) (:type :leaf)
|yj $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:surface-color) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |tween) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |30) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |8) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |6) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630607116188) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |tween) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |60) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |11) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630607117812) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |tween) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |94) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |50) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|j $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |1) (:type :leaf)
|r $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |11) (:type :leaf)
|v $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576051519) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|j $ {} (:at 1630607119678) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|v $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630648555209) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |text) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630646924613) (:by |_yzgLY-K2) (:text |30) (:type :leaf)
|v $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:fill-style) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630646921853) (:by |_yzgLY-K2) (:text |70) (:type :leaf)
|x $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:text-align) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:center) (:type :leaf)
|y $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:base-linee) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:middle) (:type :leaf)
|yT $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:size) (:type :leaf)
|j $ {} (:at 1630646913993) (:by |_yzgLY-K2) (:text |14) (:type :leaf)
|yj $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text ||Optima) (:type :leaf)
|yr $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:max-width) (:type :leaf)
|j $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |400) (:type :leaf)
|yv $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646899529) (:by |_yzgLY-K2) (:text |:text) (:type :leaf)
|j $ {} (:at 1630646932895) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630646933637) (:by |_yzgLY-K2) (:text |str) (:type :leaf)
|j $ {} (:at 1630646947501) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630646950526) (:by |_yzgLY-K2) (:text |:stage) (:type :leaf)
|T $ {} (:at 1630646938421) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|comp-container $ {} (:id |By9zdiRy4KuW) (:time 1503375314228) (:type :expr)
:data $ {}
|T $ {} (:at 1622710226217) (:author |root) (:by |_yzgLY-K2) (:id |S1iG_sCkVYu-) (:text |defcomp) (:time 1503375314228) (:type :leaf)
|j $ {} (:author |root) (:id |Hy3fuoCJNtub) (:text |comp-container) (:time 1503375314228) (:type :leaf)
|r $ {} (:at 1622710215889) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|j $ {} (:at 1622710215889) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|x $ {} (:at 1622710493773) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1622710494574) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|L $ {} (:at 1622710494855) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710495019) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710497947) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|j $ {} (:at 1622710498385) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710499336) (:by |_yzgLY-K2) (:text |:states) (:type :leaf)
|j $ {} (:at 1622710500212) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|j $ {} (:at 1622710501286) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710502418) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|j $ {} (:at 1622710502960) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710505966) (:by |_yzgLY-K2) (:text |either) (:type :leaf)
|j $ {} (:at 1622710506231) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710512161) (:by |_yzgLY-K2) (:text |:data) (:type :leaf)
|j $ {} (:at 1622884007079) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|r $ {} (:at 1622710527835) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1622710532523) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|r $ {} (:at 1622710535955) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710536952) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|j $ {} (:at 1622710537281) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1622710537547) (:by |_yzgLY-K2) (:text |[]) (:type :leaf)
|b $ {} (:at 1630608999101) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630646979048) (:by |_yzgLY-K2) (:text |;) (:type :leaf)
|T $ {} (:at 1630609090328) (:by |_yzgLY-K2) (:text |&doseq) (:type :leaf)
|r $ {} (:at 1630609094200) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630609094876) (:by |_yzgLY-K2) (:text |x) (:type :leaf)
|T $ {} (:at 1630609063008) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630609066808) (:by |_yzgLY-K2) (:text |.split-lines) (:type :leaf)
|T $ {} (:at 1630609058445) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630609062279) (:by |_yzgLY-K2) (:text |format-cirru-edn) (:type :leaf)
|T $ {} (:at 1630609004647) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630609005941) (:by |_yzgLY-K2) (:text |:board) (:type :leaf)
|j $ {} (:at 1630609010434) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|v $ {} (:at 1630609096451) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630609098703) (:by |_yzgLY-K2) (:text |hud-log) (:type :leaf)
|j $ {} (:at 1630609099472) (:by |_yzgLY-K2) (:text |x) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |group) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |rect) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:w) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |500) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:h) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |500) (:type :leaf)
|v $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:fill-style) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |29) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |17) (:type :leaf)
|v $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |68) (:type :leaf)
|v $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |button) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:text) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text "||New Game") (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:text-color) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|v $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:surface-color) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |90) (:type :leaf)
|v $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |80) (:type :leaf)
|x $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:w) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|y $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:h) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |40) (:type :leaf)
|yT $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |320) (:type :leaf)
|yj $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |-200) (:type :leaf)
|yr $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |16) (:type :leaf)
|yv $ {} (:at 1630575818711) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575819658) (:by |_yzgLY-K2) (:text |:event) (:type :leaf)
|j $ {} (:at 1630575821631) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630576126457) (:by |_yzgLY-K2) (:text |&{}) (:type :leaf)
|j $ {} (:at 1630575821631) (:by |_yzgLY-K2) (:text |:click) (:type :leaf)
|r $ {} (:at 1630575965331) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575965331) (:by |_yzgLY-K2) (:text |defn) (:type :leaf)
|j $ {} (:at 1630575965331) (:by |_yzgLY-K2) (:text |handle-reset) (:type :leaf)
|r $ {} (:at 1630575965331) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575974350) (:by |_yzgLY-K2) (:text |e) (:type :leaf)
|j $ {} (:at 1630575972771) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|v $ {} (:at 1630575965331) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575976389) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630575979961) (:by |_yzgLY-K2) (:text |:reset) (:type :leaf)
|n $ {} (:at 1630575980957) (:by |_yzgLY-K2) (:text |nil) (:type :leaf)
|x $ {} (:at 1630649180903) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649180903) (:by |_yzgLY-K2) (:text |stop-auto!) (:type :leaf)
|x $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |button) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:text) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |str) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text "||Scores: ") (:type :leaf)
|r $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |sum-scores) (:type :leaf)
|j $ {} (:at 1630598717499) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630598719104) (:by |_yzgLY-K2) (:text |:board) (:type :leaf)
|j $ {} (:at 1630598720164) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|r $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:text-color) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|v $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:surface-color) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |120) (:type :leaf)
|r $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |90) (:type :leaf)
|v $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |80) (:type :leaf)
|x $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |16) (:type :leaf)
|y $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:w) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|yT $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:h) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |40) (:type :leaf)
|yj $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |320) (:type :leaf)
|yr $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |-140) (:type :leaf)
|yv $ {} (:at 1630650281800) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630650284302) (:by |_yzgLY-K2) (:text |:event) (:type :leaf)
|j $ {} (:at 1630650284625) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630650286673) (:by |_yzgLY-K2) (:text |&{}) (:type :leaf)
|j $ {} (:at 1630650289608) (:by |_yzgLY-K2) (:text |:click) (:type :leaf)
|r $ {} (:at 1630650291242) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630650292990) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630650293768) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630650295391) (:by |_yzgLY-K2) (:text |e) (:type :leaf)
|j $ {} (:at 1630650296614) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|r $ {} (:at 1630650297927) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630650302982) (:by |_yzgLY-K2) (:text |js/document.body.requestFullscreen) (:type :leaf)
|xT $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |button) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:text) (:type :leaf)
|j $ {} (:at 1630648809668) (:by |_yzgLY-K2) (:text ||Auto) (:type :leaf)
|r $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:text-color) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|v $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|v $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:surface-color) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630648815322) (:by |_yzgLY-K2) (:text |220) (:type :leaf)
|r $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |90) (:type :leaf)
|v $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |80) (:type :leaf)
|x $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |16) (:type :leaf)
|y $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:w) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|yT $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:h) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |40) (:type :leaf)
|yj $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |320) (:type :leaf)
|yr $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575830103) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630648803081) (:by |_yzgLY-K2) (:text |-40) (:type :leaf)
|yv $ {} (:at 1630649105449) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649107877) (:by |_yzgLY-K2) (:text |:event) (:type :leaf)
|j $ {} (:at 1630649108227) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649110679) (:by |_yzgLY-K2) (:text |&{}) (:type :leaf)
|j $ {} (:at 1630649115292) (:by |_yzgLY-K2) (:text |:click) (:type :leaf)
|r $ {} (:at 1630649116263) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649118335) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630649118930) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649119253) (:by |_yzgLY-K2) (:text |e) (:type :leaf)
|j $ {} (:at 1630649120102) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|r $ {} (:at 1630649120548) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630649122585) (:by |_yzgLY-K2) (:text |auto-move!) (:type :leaf)
|j $ {} (:at 1630649124089) (:by |_yzgLY-K2) (:text |0) (:type :leaf)
|r $ {} (:at 1630649124901) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|y $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |group) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|r $ {} (:at 1630575870749) (:by |_yzgLY-K2) (:text |&) (:type :leaf)
|v $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575832442) (:by |_yzgLY-K2) (:text |->) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |schema/all-coords) (:type :leaf)
|n $ {} (:at 1630575834824) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575838582) (:by |_yzgLY-K2) (:text |.to-list) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630598513173) (:by |_yzgLY-K2) (:text |map) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |coord) (:type :leaf)
|r $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |rect) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |:fill-style) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |hsl) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |30) (:type :leaf)
|r $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |37) (:type :leaf)
|v $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |89) (:type :leaf)
|x $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |0.35) (:type :leaf)
|r $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |-) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |120) (:type :leaf)
|r $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |first) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |coord) (:type :leaf)
|r $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |180) (:type :leaf)
|v $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |-) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |*) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |120) (:type :leaf)
|r $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |last) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |coord) (:type :leaf)
|r $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |180) (:type :leaf)
|x $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |:w) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|y $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |:h) (:type :leaf)
|j $ {} (:at 1630575877865) (:by |_yzgLY-K2) (:text |100) (:type :leaf)
|yT $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |group) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |{}) (:type :leaf)
|n $ {} (:at 1630575910753) (:by |_yzgLY-K2) (:text |&) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575885410) (:by |_yzgLY-K2) (:text |->) (:type :leaf)
|j $ {} (:at 1630598729033) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630600820178) (:by |_yzgLY-K2) (:text |:board) (:type :leaf)
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |store) (:type :leaf)
|n $ {} (:at 1630598730956) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630598733235) (:by |_yzgLY-K2) (:text |.to-list) (:type :leaf)
|p $ {} (:at 1630609531597) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630609534659) (:by |_yzgLY-K2) (:text |.sort-by) (:type :leaf)
|j $ {} (:at 1630609535040) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630609535526) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630609535942) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630609539029) (:by |_yzgLY-K2) (:text |pair) (:type :leaf)
|r $ {} (:at 1630609544330) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630609547573) (:by |_yzgLY-K2) (:text |:score) (:type :leaf)
|T $ {} (:at 1630609539769) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630609540622) (:by |_yzgLY-K2) (:text |last) (:type :leaf)
|j $ {} (:at 1630609543218) (:by |_yzgLY-K2) (:text |pair) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630598780478) (:by |_yzgLY-K2) (:text |.map-pair) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630575894824) (:by |_yzgLY-K2) (:text |cell-key) (:type :leaf)
|j $ {} (:at 1630576816454) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|r $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630609880080) (:by |_yzgLY-K2) (:text |comp-cell) (:type :leaf)
|b $ {} (:at 1630606181734) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630606181280) (:by |_yzgLY-K2) (:text |>>) (:type :leaf)
|j $ {} (:at 1630606183888) (:by |_yzgLY-K2) (:text |states) (:type :leaf)
|r $ {} (:at 1630606187955) (:by |_yzgLY-K2) (:text |cell-key) (:type :leaf)
|j $ {} (:at 1630575798853) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|gen-tick-fn $ {} (:at 1630607678260) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607679951) (:by |_yzgLY-K2) (:text |defn) (:type :leaf)
|j $ {} (:at 1630607678260) (:by |_yzgLY-K2) (:text |gen-tick-fn) (:type :leaf)
|r $ {} (:at 1630607678260) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607681392) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|b $ {} (:at 1630607909689) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|j $ {} (:at 1630607682210) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|v $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text |fn) (:type :leaf)
|j $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text |elapsed) (:type :leaf)
|j $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|r $ {} (:at 1630647801501) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|D $ {} (:at 1630647802311) (:by |_yzgLY-K2) (:text |let) (:type :leaf)
|L $ {} (:at 1630647803248) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647803594) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647833863) (:by |_yzgLY-K2) (:text |moved-state) (:type :leaf)
|j $ {} (:at 1630647834311) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647834780) (:by |_yzgLY-K2) (:text |if) (:type :leaf)
|j $ {} (:at 1630647840826) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647849953) (:by |_yzgLY-K2) (:text |and) (:type :leaf)
|j $ {} (:at 1630647850267) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647850387) (:by |_yzgLY-K2) (:text |=) (:type :leaf)
|j $ {} (:at 1630647852002) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647852679) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630647854712) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630647856138) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647860313) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630647861565) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|r $ {} (:at 1630647850267) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647850387) (:by |_yzgLY-K2) (:text |=) (:type :leaf)
|j $ {} (:at 1630647852002) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647865976) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630647854712) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630647856138) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647868056) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630647861565) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|r $ {} (:at 1630647871923) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|v $ {} (:at 1630647872679) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630647998563) (:by |_yzgLY-K2) (:text |->) (:type :leaf)
|j $ {} (:at 1630648000470) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630648001143) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630648002826) (:by |_yzgLY-K2) (:text |assoc) (:type :leaf)
|j $ {} (:at 1630648005805) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|r $ {} (:at 1630648016412) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630648020387) (:by |_yzgLY-K2) (:text |move-toward) (:type :leaf)
|j $ {} (:at 1630648026882) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630648030253) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630648032414) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|r $ {} (:at 1630648033795) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630648034549) (:by |_yzgLY-K2) (:text |:x) (:type :leaf)
|j $ {} (:at 1630648035969) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|v $ {} (:at 1630648382731) (:by |_yzgLY-K2) (:text |elapsed) (:type :leaf)
|x $ {} (:at 1630648499269) (:by |_yzgLY-K2) (:text |8) (:type :leaf)
|v $ {} (:at 1630648001143) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630648002826) (:by |_yzgLY-K2) (:text |assoc) (:type :leaf)
|j $ {} (:at 1630648014767) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|r $ {} (:at 1630648043549) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630648043549) (:by |_yzgLY-K2) (:text |move-toward) (:type :leaf)
|j $ {} (:at 1630648043549) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630648045971) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630648043549) (:by |_yzgLY-K2) (:text |cell) (:type :leaf)
|r $ {} (:at 1630648043549) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630648047973) (:by |_yzgLY-K2) (:text |:y) (:type :leaf)
|j $ {} (:at 1630648043549) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|v $ {} (:at 1630648043549) (:by |_yzgLY-K2) (:text |elapsed) (:type :leaf)
|x $ {} (:at 1630648501188) (:by |_yzgLY-K2) (:text |8) (:type :leaf)
|T $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text |case-default) (:type :leaf)
|j $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text |:stage) (:type :leaf)
|j $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|r $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text |println) (:type :leaf)
|j $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text "|\"unknown stage") (:type :leaf)
|r $ {} (:at 1630607683155) (:by |_yzgLY-K2) (:text |state) (:type :leaf)
|t $ {} (:at 1630608178423) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608180327) (:by |_yzgLY-K2) (:text |:init) (:type :leaf)
|j $ {} (:at 1630608180770) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608181708) (:by |_yzgLY-K2) (:text |d!) (:type :leaf)
|j $ {} (:at 1630608182921) (:by |_yzgLY-K2) (:text |cursor) (:type :leaf)
|r $ {} (:at 1630608183776) (:by |_yzgLY-K2) (:type :expr)
:data $ {}
|T $ {} (:at 1630608185275) (:by |_yzgLY-K2) (:text |assoc) (:type :leaf)
|j $ {} (:at 1630608186353) (:by |_yzgLY-K2) (:text |state) (:type :leaf)