-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
2838 lines (2837 loc) · 228 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
{}
:users $ {}
|rJG4IHzWf $ {} (:id |rJG4IHzWf) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |cirru-parser)
:files $ {}
|cirru-parser.comp.container $ {}
:ns $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |ns)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |cirru-parser.comp.container)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:require)
|yr $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391699065)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391699848) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391705319) (:text |cirru-parser.core)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391706509) (:text |:refer)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391706719)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391706971) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391707697) (:text |lex)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575560317209) (:text |parse)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575567751448) (:text |resolve-indentations)
|yT $ {} (:type :expr) (:by |root) (:at 1519699088529)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519699088805) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1519699092590) (:text |respo-md.comp.md)
|r $ {} (:type :leaf) (:by |root) (:at 1519699093410) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1519699093683)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519699093922) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1519699096732) (:text |comp-md)
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |hsl.core)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |hsl)
|x $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |respo.comp.space)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |=<)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1540958704705) (:text |respo.core)
|r $ {} (:type :leaf) (:by |root) (:at 1508946162679) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|n $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315226342) (:text |>>)
|yT $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1552321107012) (:text |input)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |defcomp)
|x $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |button)
|v $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |div)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |<>)
|y $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |span)
|l $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1573355389740) (:text |defeffect)
|xT $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1512359490531) (:text |textarea)
|yj $ {} (:type :expr) (:by |root) (:at 1521954061310)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521954061645) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1527788377809) (:text |cirru-parser.config)
|r $ {} (:type :leaf) (:by |root) (:at 1521954064826) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1521954065004)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521954065219) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1521954067604) (:text |dev?)
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1516527080962) (:text |respo-ui.core)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:as)
|v $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |ui)
|y $ {} (:type :expr) (:by |root) (:at 1507461845717)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461846175) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1507461855480) (:text |reel.comp.reel)
|r $ {} (:type :leaf) (:by |root) (:at 1507461856264) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1507461856484)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461856706) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1507461858342) (:text |comp-reel)
|yv $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1576946626145)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1576946626441) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1576946626858) (:text |cirru-parser.nim)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1576946628633) (:text |:as)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1576946629156) (:text |nim)
:defs $ {}
|comp-container $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |defcomp)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |comp-container)
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461830530) (:text |reel)
|v $ {} (:type :expr) (:by |root) (:at 1507461832154)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1507461833421) (:text |let)
|L $ {} (:type :expr) (:by |root) (:at 1507461834351)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1507461834650)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461835738) (:text |store)
|j $ {} (:type :expr) (:by |root) (:at 1507461836110)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461837276) (:text |:store)
|j $ {} (:type :leaf) (:by |root) (:at 1507461838285) (:text |reel)
|j $ {} (:type :expr) (:by |root) (:at 1509727104820)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1509727105928) (:text |states)
|j $ {} (:type :expr) (:by |root) (:at 1509727106316)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1509727107223) (:text |:states)
|j $ {} (:type :leaf) (:by |root) (:at 1509727108033) (:text |store)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391723205)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391723864) (:text |state)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391724160)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391725000) (:text |or)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391729820)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391733743) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391732613) (:text |:data)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391734700)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391735038) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391735359)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391737577) (:text |:draft)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391738239) (:text "|\"")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391738758)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391740346) (:text |:result)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391740664) (:text "|\"")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644658248)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644659053) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648960124) (:text "|\"")
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1587315344751)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315346465) (:text |cursor)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1587315346677)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315349168) (:text |[])
|T $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |div)
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |{})
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:style)
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |merge)
|j $ {} (:type :leaf) (:by |root) (:at 1521129814235) (:text |ui/global)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218278871) (:text |ui/column)
|n $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218275886) (:text |ui/fullscreen)
|m $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218280021)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218280452) (:text |div)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218280707)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218280993) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218319822)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218320613) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218320934)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218323505) (:text |merge)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218325523) (:text |ui/row-parted)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218327653)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218328022) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218328210)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218330259) (:text |:padding)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218330951) (:text |8)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218281970)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218283937) (:text |span)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218284511) (:text |nil)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218286849)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218288575) (:text |button)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218288826)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218289178) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218289419)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218292119) (:text |:inner-text)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218295446) (:text "|\"Parse")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575218296974)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218298696) (:text |:style)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575218304932) (:text |ui/button)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391772114)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391774847) (:text |:on-click)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391775178)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391775417) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391775699)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391778492) (:text |e)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391779224) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391780855)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315355470) (:text |d!)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575391786013)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644806677) (:text |merge)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391793145) (:text |state)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644809277)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644810897)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575391795410) (:text |:result)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644816356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |pr-str)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644816356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |resolve-indentations)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644816356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |[])
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |0)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644816356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |lex)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644816356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |[])
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |:space)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text "|\"")
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644816356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |:draft)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644816356) (:text |state)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575646648512) (:text |;)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644810296) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644817894)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644818875) (:text |:tree)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575644819608)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575644820816) (:text |pr-str)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378449797)
:data $ {}
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378450402) (:text |let)
|L $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378450589)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378450721)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378454649) (:text |started)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378455218)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378456443) (:text |.now)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378481311) (:text |js/Date)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378462267)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378463113) (:text |result)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378463622)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378904990) (:text |parse)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378463622)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378463622) (:text |:draft)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378463622) (:text |state)
|f $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378466567) (:text |result)
|V $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378467516)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378468267) (:text |println)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378469713) (:text "|\"Cost")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378470080)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378470238) (:text |-)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1577378471349)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378474040) (:text |.now)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378475602) (:text |js/Date)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1577378479763) (:text |started)
|b $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315356787) (:text |cursor)
|u $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648596768)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648596768) (:text |when)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648596768) (:text |dev?)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648596768)
:data $ {}
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648596768) (:text |comp-reel)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1587315237497)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648596768) (:text |states)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315238206) (:text |>>)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315239035) (:text |:reel)
|x $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648596768) (:text |reel)
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648596768)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648596768) (:text |{})
|q $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |div)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |merge)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/expand)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/row)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |textarea)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |merge)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/expand)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/textarea)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |style-code)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:placeholder)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text "|\"Text...")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:value)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:draft)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |state)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:on-input)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |fn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |e)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |d!)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315360357) (:text |d!)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |assoc)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |state)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:draft)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:value)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |e)
|b $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1587315361697) (:text |cursor)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |div)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |merge)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/expand)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/column)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |textarea)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |merge)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/expand)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/textarea)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |style-code)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:placeholder)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text "|\"Result...")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:value)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648842329)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648829322)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:result)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |state)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648843518) (:text |or)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648844287) (:text "|\"")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |textarea)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:style)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |merge)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/expand)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |ui/textarea)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |style-code)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:placeholder)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text "|\"Tree result...")
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:value)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648824741)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575648613958)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |:tree)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648613958) (:text |state)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648840337) (:text |or)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575648841194) (:text "|\"")
|style-code $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647158035)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647158035) (:text |def)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647158035) (:text |style-code)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647158035)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647158035) (:text |{})
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647158035)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647158035) (:text |:font-family)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647158035) (:text |ui/font-code)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647160540)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647163631) (:text |:white-space)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647164169) (:text |:pre)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647232834)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647235880) (:text |:font-size)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647237225) (:text |12)
:proc $ {} (:type :expr) (:at 1499755354983) (:data $ {})
|cirru-parser.tree $ {}
:ns $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645273045)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645273045) (:text |ns)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645273045) (:text |cirru-parser.tree)
:defs $ {}
|resolve-comma $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645289062)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645289062) (:text |defn)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645289062) (:text |resolve-comma)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645289062)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645294693) (:text |xs)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645295279)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645295680) (:text |if)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645296476)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575646056505) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645345310) (:text |xs)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645740099)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645740236) (:text |[])
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645309644)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645313701) (:text |comma-helper)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645314921) (:text |xs)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645317284)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645317015) (:text |[])
|comma-helper $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645318561)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645321329) (:text |defn)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645318561) (:text |comma-helper)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645318561)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645324172) (:text |before)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645325516) (:text |after)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645325991)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645326439) (:text |if)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645327653)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645357966) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645371656) (:text |after)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645376394) (:text |before)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645377153)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645378572) (:text |let)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645378780)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645378981)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645379888) (:text |cursor)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645382114)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645381360) (:text |first)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645383154) (:text |after)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645385218)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645420971) (:text |cursor-rest)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645390864)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575816593683) (:text |rest)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645410665) (:text |after)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645424498)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645425319) (:text |if)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645425613)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645426123) (:text |and)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645426365)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645427546) (:text |vector?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645431565) (:text |cursor)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645432518)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645433077) (:text |not)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645433666)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645437493) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645438579) (:text |cursor)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645447677)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645450250) (:text |let)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645450498)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645450667)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645451387) (:text |head)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645454813)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645458533) (:text |first)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645460142) (:text |cursor)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645462433)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645463566) (:text |cond)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645469248)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645463852)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645466105) (:text |vector?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645467037) (:text |head)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645470933)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645474609) (:text |comma-helper)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645478662)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645479191) (:text |conj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645480272) (:text |before)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645482167)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645495157) (:text |resolve-comma)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645497024) (:text |cursor)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645506108) (:text |cursor-rest)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645509336)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645510532)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645510173) (:text |=)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645521697) (:text |head)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645524784) (:text "|\",")
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645528423)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645530659) (:text |comma-helper)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645533345) (:text |before)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645539426)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575811565971) (:text |add-to-vec)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645550974)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645552840) (:text |resolve-comma)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645554308)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575816599417) (:text |rest)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645559534) (:text |cursor)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645569304) (:text |cursor-rest)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645571911)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645572752) (:text |:else)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645573045)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645574945) (:text |comma-helper)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645575456)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645575972) (:text |conj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645577454) (:text |before)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645577690)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645579602) (:text |resolve-comma)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645581008) (:text |cursor)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645584493) (:text |cursor-rest)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645588515)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645591349) (:text |comma-helper)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645592426)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645593260) (:text |conj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645596374) (:text |before)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645597713) (:text |cursor)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645600714) (:text |cursor-rest)
|resolve-dollar $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645691445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645691445) (:text |defn)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645691445) (:text |resolve-dollar)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645691445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645701851) (:text |xs)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645702928)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645704145) (:text |if)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645704399)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645707115) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645707580) (:text |xs)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645711593)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645711813) (:text |[])
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645715601)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645720062) (:text |dollar-helper)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645732935)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645733100) (:text |[])
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645734807) (:text |xs)
|dollar-helper $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645695740)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645695740) (:text |defn)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645695740) (:text |dollar-helper)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645695740)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645747092) (:text |before)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645747976) (:text |after)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645748597)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645749211) (:text |if)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645749488)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645754084) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645755542) (:text |after)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645760507) (:text |before)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645761110)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645761675) (:text |let)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645761878)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645762027)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645763158) (:text |cursor)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645763414)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645764019) (:text |first)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645766079) (:text |after)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645767459)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645769430) (:text |cursor-rest)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645770375)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575816626242) (:text |rest)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645774233) (:text |after)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645777862)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645778750) (:text |cond)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645779230)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645780859)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645783157) (:text |vector?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645784033) (:text |cursor)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645785241)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645788349) (:text |dollar-helper)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645789878)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645790363) (:text |conj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645791972) (:text |before)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645792267)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645795217) (:text |resolve-dollar)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645796620) (:text |cursor)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645800373) (:text |cursor-rest)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645802443)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645802989)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645804613) (:text |=)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645812577) (:text "|\"$")
|f $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575811391554) (:text |cursor)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645817489)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645818106) (:text |conj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645820080) (:text |before)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645820331)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645823016) (:text |resolve-dollar)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645826067) (:text |cursor-rest)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645828502)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645830050) (:text |:else)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645834565)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645837152) (:text |dollar-helper)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645839016)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645839869) (:text |conj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645841316) (:text |before)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645842658) (:text |cursor)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575645845157) (:text |cursor-rest)
|add-to-vec $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647077693)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647077693) (:text |defn)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647077693) (:text |add-to-vec)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647077693)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647077693) (:text |acc)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647080092) (:text |xs)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647081191)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647081737) (:text |if)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647082054)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647084229) (:text |empty?)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647084718) (:text |xs)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647085614) (:text |acc)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647086216)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647092765) (:text |recur)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647093851)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647094945) (:text |conj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647096287) (:text |acc)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647097280)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647099731) (:text |first)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647100285) (:text |xs)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575647103625)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647103464) (:text |rest)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647104546) (:text |xs)
:proc $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1575645273045) (:data $ {})
|cirru-parser.main $ {}
:ns $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |ns)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |cirru-parser.main)
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:require)
|yr $ {} (:type :expr) (:by |root) (:at 1507399683930)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507399684313) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1507399687162) (:text |reel.core)
|r $ {} (:type :leaf) (:by |root) (:at 1507399688098) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1507399688322)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507399688928) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1507399691010) (:text |reel-updater)
|q $ {} (:type :leaf) (:by |root) (:at 1518156288482) (:text |refresh-reel)
|yT $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |cirru-parser.schema)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:as)
|v $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |schema)
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |respo.core)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |render!)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |clear-cache!)
|v $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |realize-ssr!)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |cirru-parser.comp.container)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |comp-container)
|yj $ {} (:type :expr) (:by |root) (:at 1507399674125)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507399674614) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1507399678694) (:text |reel.util)
|r $ {} (:type :leaf) (:by |root) (:at 1507399680625) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1507399680857)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507399681518) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1518156292092) (:text |listen-devtools!)
|yx $ {} (:type :expr) (:by |root) (:at 1518157534012)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157534486) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1518157537473) (:text |cljs.reader)
|r $ {} (:type :leaf) (:by |root) (:at 1518157538193) (:text |:refer)
|v $ {} (:type :expr) (:by |root) (:at 1518157538431)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157538636) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1518157540981) (:text |read-string)
|yyT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1544956036581)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544956039992) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544956046419) (:text |cumulo-util.core)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544956047187) (:text |:refer)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1544956047431)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544956047585) (:text |[])
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544956059214) (:text |repeat!)
|y $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1508556737455) (:text |cirru-parser.updater)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:refer)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |updater)
|yy $ {} (:type :expr) (:by |root) (:at 1527788302920)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1527788303612) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1527788304925) (:text |cirru-parser.config)
|r $ {} (:type :leaf) (:by |root) (:at 1527788306048) (:text |:as)
|v $ {} (:type :leaf) (:by |root) (:at 1527788306884) (:text |config)
|yv $ {} (:type :expr) (:by |root) (:at 1507399715229)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507399715600) (:text |[])
|j $ {} (:type :leaf) (:by |root) (:at 1507399717674) (:text |reel.schema)
|r $ {} (:type :leaf) (:by |root) (:at 1507399755750) (:text |:as)
|v $ {} (:type :leaf) (:by |root) (:at 1507399757678) (:text |reel-schema)
:defs $ {}
|ssr? $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |def)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |ssr?)
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |some?)
|j $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |js/document.querySelector)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text ||meta.respo-ssr)
|dispatch! $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |defn)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |dispatch!)
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |op)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |op-data)
|t $ {} (:type :expr) (:by |root) (:at 1547437686766)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1547437687530) (:text |when)
|L $ {} (:type :leaf) (:by |root) (:at 1547437691006) (:text |config/dev?)
|T $ {} (:type :expr) (:by |root) (:at 1518156274050)
:data $ {}
|j $ {} (:type :leaf) (:by |root) (:at 1518156276516) (:text |println)
|r $ {} (:type :leaf) (:by |root) (:at 1547437698992) (:text "|\"Dispatch:")
|v $ {} (:type :leaf) (:by |root) (:at 1518156280471) (:text |op)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |reset!)
|j $ {} (:type :leaf) (:by |root) (:at 1507399899641) (:text |*reel)
|r $ {} (:type :expr) (:by |root) (:at 1507399884621)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507399887573) (:text |reel-updater)
|j $ {} (:type :leaf) (:by |root) (:at 1507399888500) (:text |updater)
|r $ {} (:type :leaf) (:by |root) (:at 1507399891576) (:text |@*reel)
|v $ {} (:type :leaf) (:by |root) (:at 1507399892687) (:text |op)
|x $ {} (:type :leaf) (:by |root) (:at 1507399894594) (:text |op-data)
|main! $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |defn)
|yL $ {} (:type :expr) (:by |root) (:at 1518157357847)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157450281) (:text |.addEventListener)
|j $ {} (:type :leaf) (:by |root) (:at 1518157453505) (:text |js/window)
|r $ {} (:type :leaf) (:by |root) (:at 1518157458163) (:text ||beforeunload)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1533919515671) (:text |persist-storage!)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647352113) (:text |;)
|yT $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |println)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text "||App started.")
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |main!)
|x $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |render-app!)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |render!)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |if)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |ssr?)
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |render-app!)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |realize-ssr!)
|yD $ {} (:type :expr) (:by |root) (:at 1507461684494)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1507461739167) (:text |listen-devtools!)
|j $ {} (:type :leaf) (:by |root) (:at 1507461691211) (:text ||a)
|r $ {} (:type :leaf) (:by |root) (:at 1507461693919) (:text |dispatch!)
|yN $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1533919529874)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544956062322) (:text |repeat!)
|b $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544956066171) (:text |60)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1533919535136) (:text |persist-storage!)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1575647349752) (:text |;)
|t $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1544874433785)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544874434638) (:text |println)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544874509800) (:text "|\"Running mode:")
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1544874440404)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544874440190) (:text |if)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544874446442) (:text |config/dev?)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544874449063) (:text "|\"dev")
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544874452316) (:text "|\"release")
|r $ {} (:type :expr) (:at 1499755354983) (:data $ {})
|y $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |add-watch)
|j $ {} (:type :leaf) (:by |root) (:at 1507399915531) (:text |*reel)
|r $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |:changes)
|v $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |fn)
|j $ {} (:type :expr) (:at 1499755354983) (:data $ {})
|r $ {} (:type :expr) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |render-app!)
|j $ {} (:type :leaf) (:by |root) (:at 1499755354983) (:text |render!)
|yP $ {} (:type :expr) (:by |root) (:at 1518157492640)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157495438) (:text |let)
|j $ {} (:type :expr) (:by |root) (:at 1518157495644)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1518157495826)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157496930) (:text |raw)
|j $ {} (:type :expr) (:by |root) (:at 1518157497615)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157501316) (:text |.getItem)
|j $ {} (:type :leaf) (:by |root) (:at 1518157504638) (:text |js/localStorage)
|r $ {} (:type :expr) (:by |root) (:at 1518157506313)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1544956709260) (:text |:storage-key)
|j $ {} (:type :leaf) (:by |root) (:at 1527788293499) (:text |config/site)
|r $ {} (:type :expr) (:by |root) (:at 1518157514334)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1533919640958) (:text |when)
|j $ {} (:type :expr) (:by |root) (:at 1518157515117)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157515786) (:text |some?)
|j $ {} (:type :leaf) (:by |root) (:at 1518157516878) (:text |raw)
|r $ {} (:type :expr) (:by |root) (:at 1518157521635)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157523818) (:text |dispatch!)
|j $ {} (:type :leaf) (:by |root) (:at 1518157669936) (:text |:hydrate-storage)
|r $ {} (:type :expr) (:by |root) (:at 1518157527987)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157529821) (:text |read-string)
|j $ {} (:type :leaf) (:by |root) (:at 1518157531240) (:text |raw)
|persist-storage! $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1533919515671)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1533919517365) (:text |defn)