generated from calcit-lang/respo-calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
3124 lines (3123 loc) · 226 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
{} (:package |calcit-theme)
:configs $ {} (:compact-output? true) (:extension |.cljs) (:init-fn |calcit-theme.main/main!) (:output |src) (:port 6001) (:reload-fn |calcit-theme.main/reload!) (:storage-key |calcit.cirru) (:version |0.4.0)
:modules $ [] |memof/ |lilac/ |respo.calcit/ |respo-ui.calcit/ |reel.calcit/
:entries $ {}
:files $ {}
|calcit-theme.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1546450435322) (:by |rJG4IHzWf) (:text |reel)
|v $ %{} :Expr (:at 1507461832154) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1546450440135) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1507461834351) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1507461834650) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461835738) (:by |root) (:text |store)
|j $ %{} :Expr (:at 1507461836110) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461837276) (:by |root) (:text |:store)
|j $ %{} :Leaf (:at 1507461838285) (:by |root) (:text |reel)
|j $ %{} :Expr (:at 1509727104820) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727105928) (:by |root) (:text |states)
|j $ %{} :Expr (:at 1509727106316) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727107223) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1509727108033) (:by |root) (:text |store)
|r $ %{} :Expr (:at 1546450452919) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546450453672) (:by |rJG4IHzWf) (:text |data)
|j $ %{} :Expr (:at 1546450454709) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1691944195260) (:by |rJG4IHzWf) (:text |parse-cirru-list)
|T $ %{} :Expr (:at 1610895130275) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610895132069) (:by |rJG4IHzWf) (:text |slurp)
|j $ %{} :Leaf (:at 1637065221163) (:by |rJG4IHzWf) (:text "|\"examples/demo.cirru")
|T $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1656005154514) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1656005156424) (:by |rJG4IHzWf) (:text |css-body)
|q $ %{} :Expr (:at 1546450486361) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546622156082) (:by |rJG4IHzWf) (:text |render-expr)
|j $ %{} :Leaf (:at 1546450490091) (:by |rJG4IHzWf) (:text |data)
|x $ %{} :Expr (:at 1521954055333) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1521954057510) (:by |root) (:text |when)
|L $ %{} :Leaf (:at 1521954059290) (:by |root) (:text |dev?)
|T $ %{} :Expr (:at 1507461809635) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461815046) (:by |root) (:text |comp-reel)
|b $ %{} :Expr (:at 1603352448505) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1603352449212) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1509727101297) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1603352449764) (:by |rJG4IHzWf) (:text |:reel)
|j $ %{} :Leaf (:at 1507461840459) (:by |root) (:text |reel)
|r $ %{} :Expr (:at 1507461840980) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461841342) (:by |root) (:text |{})
|css-body $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1656005157865) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005159400) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1656005157865) (:by |rJG4IHzWf) (:text |css-body)
|h $ %{} :Expr (:at 1656005157865) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005171046) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1656005171362) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005172925) (:by |rJG4IHzWf) (:text "|\"$0")
|b $ %{} :Expr (:at 1656005173607) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005173607) (:by |rJG4IHzWf) (:text |merge)
|b $ %{} :Leaf (:at 1656005173607) (:by |rJG4IHzWf) (:text |ui/global)
|h $ %{} :Leaf (:at 1656005173607) (:by |rJG4IHzWf) (:text |ui/fullscreen)
|l $ %{} :Expr (:at 1656005173607) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005173607) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1656005173607) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005173607) (:by |rJG4IHzWf) (:text |:background-color)
|b $ %{} :Leaf (:at 1656005173607) (:by |rJG4IHzWf) (:text |:black)
|slurp $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1610895135310) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610895138310) (:by |rJG4IHzWf) (:text |defmacro)
|j $ %{} :Leaf (:at 1610895135310) (:by |rJG4IHzWf) (:text |slurp)
|r $ %{} :Expr (:at 1610895135310) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610895140665) (:by |rJG4IHzWf) (:text |file)
|v $ %{} :Expr (:at 1610895141212) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610895143815) (:by |rJG4IHzWf) (:text |read-file)
|j $ %{} :Leaf (:at 1610895145291) (:by |rJG4IHzWf) (:text |file)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |calcit-theme.comp.container)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1610892766498) (:by |rJG4IHzWf) (:text |respo.util.format)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1540958704705) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|n $ %{} :Leaf (:at 1603352454738) (:by |rJG4IHzWf) (:text |>>)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|xT $ %{} :Leaf (:at 1512359490531) (:by |rJG4IHzWf) (:text |textarea)
|y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span)
|w $ %{} :Expr (:at 1656005163462) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005165747) (:by |rJG4IHzWf) (:text |respo.css)
|b $ %{} :Leaf (:at 1656005166501) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1656005167249) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005168543) (:by |rJG4IHzWf) (:text |defstyle)
|x $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<)
|y $ %{} :Expr (:at 1507461845717) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507461855480) (:by |root) (:text |reel.comp.reel)
|r $ %{} :Leaf (:at 1507461856264) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1507461856484) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507461858342) (:by |root) (:text |comp-reel)
|yj $ %{} :Expr (:at 1521954061310) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1527788377809) (:by |root) (:text |calcit-theme.config)
|r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1521954065004) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?)
|yv $ %{} :Expr (:at 1546450483099) (:by |rJG4IHzWf)
:data $ {}
|j $ %{} :Leaf (:at 1546450483099) (:by |rJG4IHzWf) (:text |calcit-theme.comp.expr)
|r $ %{} :Leaf (:at 1546450483099) (:by |rJG4IHzWf) (:text |:refer)
|v $ %{} :Expr (:at 1546450483099) (:by |rJG4IHzWf)
:data $ {}
|j $ %{} :Leaf (:at 1546450483099) (:by |rJG4IHzWf) (:text |comp-expr)
|r $ %{} :Leaf (:at 1546622304869) (:by |rJG4IHzWf) (:text |render-expr)
|calcit-theme.comp.expr $ %{} :FileEntry
:defs $ {}
|comp-expr $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-expr)
|r $ %{} :Expr (:at 1610894986672) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546450427104) (:by |rJG4IHzWf) (:text |expr)
|j $ %{} :Leaf (:at 1546537456563) (:by |rJG4IHzWf) (:text |tailing?)
|r $ %{} :Leaf (:at 1546618404223) (:by |rJG4IHzWf) (:text |root?)
|v $ %{} :Leaf (:at 1613809515033) (:by |rJG4IHzWf) (:text |inline?)
|t $ %{} :Expr (:at 1613807208997) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807210615) (:by |rJG4IHzWf) (:text |assert)
|j $ %{} :Leaf (:at 1613807221346) (:by |rJG4IHzWf) (:text "|\"expr in list")
|r $ %{} :Expr (:at 1613807221952) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807224088) (:by |rJG4IHzWf) (:text |list?)
|j $ %{} :Leaf (:at 1613807225334) (:by |rJG4IHzWf) (:text |expr)
|v $ %{} :Expr (:at 1546450496482) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1691944590068) (:by |rJG4IHzWf) (:text |list->)
|j $ %{} :Expr (:at 1546450517662) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546450518013) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1656004961024) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656004963928) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1656004965779) (:by |rJG4IHzWf) (:text |css-expr)
|j $ %{} :Expr (:at 1546450583787) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546450584516) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1546535669915) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1546535671746) (:by |rJG4IHzWf) (:text |merge)
|f $ %{} :Expr (:at 1546536646138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546536661840) (:by |rJG4IHzWf) (:text |theme/decorate-expr)
|r $ %{} :Leaf (:at 1546537458662) (:by |rJG4IHzWf) (:text |tailing?)
|t $ %{} :Leaf (:at 1613809743155) (:by |rJG4IHzWf) (:text |inline?)
|v $ %{} :Leaf (:at 1546618429937) (:by |rJG4IHzWf) (:text |root?)
|v $ %{} :Expr (:at 1613808024890) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808031304) (:by |rJG4IHzWf) (:text |apply-args)
|j $ %{} :Expr (:at 1613808031857) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808031584) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Expr (:at 1613808107532) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808108085) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1613808057347) (:by |rJG4IHzWf) (:text |expr)
|r $ %{} :Leaf (:at 1613808058872) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1613808066525) (:by |rJG4IHzWf) (:text |nil)
|r $ %{} :Expr (:at 1613808032585) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808032965) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1613808033519) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808097148) (:by |rJG4IHzWf) (:text |acc)
|T $ %{} :Leaf (:at 1613808036396) (:by |rJG4IHzWf) (:text |xs)
|b $ %{} :Leaf (:at 1613808062859) (:by |rJG4IHzWf) (:text |idx)
|j $ %{} :Leaf (:at 1613809204784) (:by |rJG4IHzWf) (:text |prev-kind)
|r $ %{} :Expr (:at 1613808155080) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808349071) (:by |rJG4IHzWf) (:text |cond)
|L $ %{} :Expr (:at 1613808349425) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1613808156384) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808157584) (:by |rJG4IHzWf) (:text |empty?)
|j $ %{} :Leaf (:at 1613808158291) (:by |rJG4IHzWf) (:text |xs)
|j $ %{} :Leaf (:at 1613808350808) (:by |rJG4IHzWf) (:text |acc)
|P $ %{} :Expr (:at 1613808763382) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1613808765821) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808766926) (:by |rJG4IHzWf) (:text |string?)
|j $ %{} :Expr (:at 1613808964669) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808964669) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1613808964669) (:by |rJG4IHzWf) (:text |xs)
|j $ %{} :Expr (:at 1613808778358) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808779397) (:by |rJG4IHzWf) (:text |recur)
|T $ %{} :Expr (:at 1613808782538) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808783423) (:by |rJG4IHzWf) (:text |conj)
|L $ %{} :Leaf (:at 1613808784915) (:by |rJG4IHzWf) (:text |acc)
|T $ %{} :Expr (:at 1691944598564) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1691944599460) (:by |rJG4IHzWf) (:text |[])
|L $ %{} :Leaf (:at 1691944600081) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Expr (:at 1613808775673) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808775673) (:by |rJG4IHzWf) (:text |comp-leaf)
|j $ %{} :Expr (:at 1613809060407) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809060407) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1613809060407) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1613808775673) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808775673) (:by |rJG4IHzWf) (:text |&=)
|j $ %{} :Leaf (:at 1613808775673) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1613808775673) (:by |rJG4IHzWf) (:text |idx)
|X $ %{} :Expr (:at 1613809152526) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809152526) (:by |rJG4IHzWf) (:text |rest)
|j $ %{} :Leaf (:at 1613809152526) (:by |rJG4IHzWf) (:text |xs)
|b $ %{} :Expr (:at 1613809150238) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809150238) (:by |rJG4IHzWf) (:text |inc)
|j $ %{} :Leaf (:at 1613809150238) (:by |rJG4IHzWf) (:text |idx)
|j $ %{} :Leaf (:at 1613809147437) (:by |rJG4IHzWf) (:text |:leaf)
|R $ %{} :Expr (:at 1613808763382) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1613809009756) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613809011567) (:by |rJG4IHzWf) (:text |&let)
|L $ %{} :Expr (:at 1613809011833) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809013299) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1613809013525) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809014162) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1613809017950) (:by |rJG4IHzWf) (:text |xs)
|T $ %{} :Expr (:at 1613808974696) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808974696) (:by |rJG4IHzWf) (:text |and)
|j $ %{} :Expr (:at 1613808974696) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808974696) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1613808974696) (:by |rJG4IHzWf) (:text |1)
|r $ %{} :Expr (:at 1613808974696) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808974696) (:by |rJG4IHzWf) (:text |count)
|j $ %{} :Leaf (:at 1613808974696) (:by |rJG4IHzWf) (:text |cursor)
|r $ %{} :Expr (:at 1613808974696) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808974696) (:by |rJG4IHzWf) (:text |string?)
|j $ %{} :Expr (:at 1613808974696) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808974696) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1613808974696) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1613808778358) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808779397) (:by |rJG4IHzWf) (:text |recur)
|T $ %{} :Expr (:at 1613808782538) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808783423) (:by |rJG4IHzWf) (:text |conj)
|L $ %{} :Leaf (:at 1613808784915) (:by |rJG4IHzWf) (:text |acc)
|X $ %{} :Expr (:at 1691944605996) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1691944606537) (:by |rJG4IHzWf) (:text |[])
|L $ %{} :Leaf (:at 1691944607209) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Expr (:at 1613808988779) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808992145) (:by |rJG4IHzWf) (:text |comp-expr)
|j $ %{} :Expr (:at 1613809026823) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809029057) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1613809075170) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Leaf (:at 1613809034083) (:by |rJG4IHzWf) (:text |false)
|v $ %{} :Leaf (:at 1613809034918) (:by |rJG4IHzWf) (:text |false)
|x $ %{} :Leaf (:at 1613809667171) (:by |rJG4IHzWf) (:text |true)
|j $ %{} :Expr (:at 1613809091737) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809092144) (:by |rJG4IHzWf) (:text |rest)
|j $ %{} :Leaf (:at 1613809094051) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1613809096502) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809097029) (:by |rJG4IHzWf) (:text |inc)
|j $ %{} :Leaf (:at 1613809097985) (:by |rJG4IHzWf) (:text |idx)
|v $ %{} :Leaf (:at 1613809100934) (:by |rJG4IHzWf) (:text |:leaf)
|T $ %{} :Expr (:at 1613808353710) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808354475) (:by |rJG4IHzWf) (:text |true)
|T $ %{} :Expr (:at 1613808145168) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808147750) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1613808148301) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1613808148525) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808149276) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1613808150512) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808152118) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1613808153401) (:by |rJG4IHzWf) (:text |xs)
|b $ %{} :Expr (:at 1613809281377) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809281377) (:by |rJG4IHzWf) (:text |size)
|j $ %{} :Expr (:at 1613809281377) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809281377) (:by |rJG4IHzWf) (:text |count)
|j $ %{} :Leaf (:at 1613809281377) (:by |rJG4IHzWf) (:text |cursor)
|f $ %{} :Expr (:at 1613809284062) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809284062) (:by |rJG4IHzWf) (:text |simple?)
|j $ %{} :Expr (:at 1613809284062) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809284062) (:by |rJG4IHzWf) (:text |every?)
|r $ %{} :Leaf (:at 1613809284062) (:by |rJG4IHzWf) (:text |cursor)
|v $ %{} :Leaf (:at 1619709910252) (:by |rJG4IHzWf) (:text |string?)
|j $ %{} :Expr (:at 1613809208395) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809210812) (:by |rJG4IHzWf) (:text |layout-kind)
|j $ %{} :Expr (:at 1613809213834) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613809297996) (:by |rJG4IHzWf) (:text |if)
|T $ %{} :Leaf (:at 1613809297133) (:by |rJG4IHzWf) (:text |simple?)
|j $ %{} :Expr (:at 1613809304099) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809583495) (:by |rJG4IHzWf) (:text |case)
|X $ %{} :Leaf (:at 1613809359349) (:by |rJG4IHzWf) (:text |prev-kind)
|n $ %{} :Expr (:at 1613809360521) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809365305) (:by |rJG4IHzWf) (:text |nil)
|j $ %{} :Expr (:at 1613809403432) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809405933) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1613809406247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809406599) (:by |rJG4IHzWf) (:text |>)
|j $ %{} :Leaf (:at 1613809407356) (:by |rJG4IHzWf) (:text |size)
|r $ %{} :Leaf (:at 1613809434380) (:by |rJG4IHzWf) (:text |6)
|r $ %{} :Leaf (:at 1613809441000) (:by |rJG4IHzWf) (:text |:expr)
|v $ %{} :Leaf (:at 1613809443839) (:by |rJG4IHzWf) (:text |:inline-expr)
|q $ %{} :Expr (:at 1613809378095) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809380495) (:by |rJG4IHzWf) (:text |:leaf)
|j $ %{} :Expr (:at 1613809448074) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809448074) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1613809448074) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809448074) (:by |rJG4IHzWf) (:text |>)
|j $ %{} :Leaf (:at 1613809448074) (:by |rJG4IHzWf) (:text |size)
|r $ %{} :Leaf (:at 1613809448074) (:by |rJG4IHzWf) (:text |6)
|r $ %{} :Leaf (:at 1613809448074) (:by |rJG4IHzWf) (:text |:expr)
|v $ %{} :Leaf (:at 1613809448074) (:by |rJG4IHzWf) (:text |:inline-expr)
|r $ %{} :Expr (:at 1613809380886) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809387192) (:by |rJG4IHzWf) (:text |:inline-expr)
|j $ %{} :Expr (:at 1613809451315) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809451315) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1613809451315) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809451315) (:by |rJG4IHzWf) (:text |>)
|j $ %{} :Leaf (:at 1613809451315) (:by |rJG4IHzWf) (:text |size)
|r $ %{} :Leaf (:at 1613809478868) (:by |rJG4IHzWf) (:text |2)
|r $ %{} :Leaf (:at 1613809451315) (:by |rJG4IHzWf) (:text |:expr)
|v $ %{} :Leaf (:at 1613809451315) (:by |rJG4IHzWf) (:text |:inline-expr)
|s $ %{} :Expr (:at 1613809389059) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809389889) (:by |rJG4IHzWf) (:text |:expr)
|j $ %{} :Leaf (:at 1613809453648) (:by |rJG4IHzWf) (:text |:expr)
|t $ %{} :Expr (:at 1613809373583) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809464946) (:by |rJG4IHzWf) (:text |prev-kind)
|j $ %{} :Expr (:at 1613809465428) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809466080) (:by |rJG4IHzWf) (:text |raise)
|j $ %{} :Leaf (:at 1613809470763) (:by |rJG4IHzWf) (:text "|\"Unpected case")
|r $ %{} :Leaf (:at 1613809306652) (:by |rJG4IHzWf) (:text |:expr)
|T $ %{} :Expr (:at 1613808121302) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808122999) (:by |rJG4IHzWf) (:text |recur)
|T $ %{} :Expr (:at 1613808098335) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808099830) (:by |rJG4IHzWf) (:text |conj)
|L $ %{} :Leaf (:at 1613808101706) (:by |rJG4IHzWf) (:text |acc)
|T $ %{} :Expr (:at 1691944610047) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1691944610594) (:by |rJG4IHzWf) (:text |[])
|L $ %{} :Leaf (:at 1691944611202) (:by |rJG4IHzWf) (:text |idx)
|T $ %{} :Expr (:at 1613808367306) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808367306) (:by |rJG4IHzWf) (:text |comp-expr)
|j $ %{} :Leaf (:at 1613808367306) (:by |rJG4IHzWf) (:text |cursor)
|r $ %{} :Expr (:at 1613808367306) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808367306) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Expr (:at 1613808367306) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808367306) (:by |rJG4IHzWf) (:text |inc)
|j $ %{} :Leaf (:at 1613808367306) (:by |rJG4IHzWf) (:text |idx)
|r $ %{} :Expr (:at 1613808367306) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808367306) (:by |rJG4IHzWf) (:text |count)
|j $ %{} :Leaf (:at 1613808367306) (:by |rJG4IHzWf) (:text |expr)
|v $ %{} :Leaf (:at 1613808367306) (:by |rJG4IHzWf) (:text |false)
|x $ %{} :Expr (:at 1613809500839) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613809501061) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1613809503245) (:by |rJG4IHzWf) (:text |layout-kind)
|r $ %{} :Leaf (:at 1613809506057) (:by |rJG4IHzWf) (:text |:inline-expr)
|j $ %{} :Expr (:at 1613808125582) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808126208) (:by |rJG4IHzWf) (:text |rest)
|j $ %{} :Leaf (:at 1613808175922) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1613808129427) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808129836) (:by |rJG4IHzWf) (:text |inc)
|j $ %{} :Leaf (:at 1613808131278) (:by |rJG4IHzWf) (:text |idx)
|v $ %{} :Leaf (:at 1613808136867) (:by |rJG4IHzWf) (:text |layout-kind)
|comp-leaf $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1613807153207) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807157372) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1613807153207) (:by |rJG4IHzWf) (:text |comp-leaf)
|n $ %{} :Expr (:at 1613807158849) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807168411) (:by |rJG4IHzWf) (:text |x)
|j $ %{} :Leaf (:at 1613807163771) (:by |rJG4IHzWf) (:text |head?)
|p $ %{} :Expr (:at 1613807228781) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807229928) (:by |rJG4IHzWf) (:text |assert)
|j $ %{} :Leaf (:at 1613807240695) (:by |rJG4IHzWf) (:text "|\"string for leaf")
|r $ %{} :Expr (:at 1613807241874) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807246072) (:by |rJG4IHzWf) (:text |string?)
|j $ %{} :Leaf (:at 1613807246557) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1613807153207) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807153207) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1613807153207) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807153207) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1656005028777) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005032118) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1656005035179) (:by |rJG4IHzWf) (:text |css-leaf)
|j $ %{} :Expr (:at 1613807153207) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807153207) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1613807153207) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807153207) (:by |rJG4IHzWf) (:text |theme/decorate-leaf)
|j $ %{} :Leaf (:at 1613807172164) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Leaf (:at 1613807175187) (:by |rJG4IHzWf) (:text |head?)
|r $ %{} :Expr (:at 1613807153207) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807153207) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Leaf (:at 1613807169638) (:by |rJG4IHzWf) (:text |x)
|css-expr $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1656004966173) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656004971787) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1656004966173) (:by |rJG4IHzWf) (:text |css-expr)
|h $ %{} :Expr (:at 1656004972387) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1656004974087) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1656004974504) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1656004976050) (:by |rJG4IHzWf) (:text "|\"$0")
|T $ %{} :Leaf (:at 1656004967473) (:by |rJG4IHzWf) (:text |theme/style-expr)
|b $ %{} :Expr (:at 1656005348370) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005353488) (:by |rJG4IHzWf) (:text "|\"$0:hover")
|b $ %{} :Expr (:at 1656005353863) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005357291) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1656005380355) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1656005385562) (:by |rJG4IHzWf) (:text |:border-color)
|T $ %{} :Expr (:at 1656005379418) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005379418) (:by |rJG4IHzWf) (:text |hsl)
|b $ %{} :Leaf (:at 1656005379418) (:by |rJG4IHzWf) (:text |0)
|h $ %{} :Leaf (:at 1656005379418) (:by |rJG4IHzWf) (:text |0)
|l $ %{} :Leaf (:at 1656005379418) (:by |rJG4IHzWf) (:text |100)
|o $ %{} :Leaf (:at 1656005639326) (:by |rJG4IHzWf) (:text |0.7)
|css-leaf $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1656005035571) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005037208) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1656005035571) (:by |rJG4IHzWf) (:text |css-leaf)
|h $ %{} :Expr (:at 1656005035571) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005038774) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1656005039057) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005040670) (:by |rJG4IHzWf) (:text "|\"$0")
|b $ %{} :Leaf (:at 1656005041446) (:by |rJG4IHzWf) (:text |theme/style-leaf)
|render-expr $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1546622135857) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546622135857) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1546622135857) (:by |rJG4IHzWf) (:text |render-expr)
|r $ %{} :Expr (:at 1546622135857) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546622141900) (:by |rJG4IHzWf) (:text |data)
|v $ %{} :Expr (:at 1546622140043) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1546622140043) (:by |rJG4IHzWf) (:text |comp-expr)
|j $ %{} :Leaf (:at 1546622140043) (:by |rJG4IHzWf) (:text |data)
|r $ %{} :Leaf (:at 1546622140043) (:by |rJG4IHzWf) (:text |false)
|v $ %{} :Leaf (:at 1546622140043) (:by |rJG4IHzWf) (:text |true)
|x $ %{} :Leaf (:at 1613809524803) (:by |rJG4IHzWf) (:text |false)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |calcit-theme.comp.expr)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1656005610344) (:by |rJG4IHzWf) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1540958704705) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|qT $ %{} :Leaf (:at 1546450574463) (:by |rJG4IHzWf) (:text |list->)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|xT $ %{} :Leaf (:at 1512359490531) (:by |rJG4IHzWf) (:text |textarea)
|y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span)
|w $ %{} :Expr (:at 1656004953520) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656004954688) (:by |rJG4IHzWf) (:text |respo.css)
|b $ %{} :Leaf (:at 1656004955428) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1656004955657) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656004957104) (:by |rJG4IHzWf) (:text |defstyle)
|x $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<)
|yj $ %{} :Expr (:at 1521954061310) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1527788377809) (:by |root) (:text |calcit-theme.config)
|r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1521954065004) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?)
|yr $ %{} :Expr (:at 1546535660078) (:by |rJG4IHzWf)
:data $ {}
|j $ %{} :Leaf (:at 1546535660078) (:by |rJG4IHzWf) (:text |calcit-theme.theme)
|r $ %{} :Leaf (:at 1546535660078) (:by |rJG4IHzWf) (:text |:as)
|v $ %{} :Leaf (:at 1546535660078) (:by |rJG4IHzWf) (:text |theme)
|calcit-theme.config $ %{} :FileEntry
:defs $ {}
|dev? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1544873875614) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544873875614) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1544873875614) (:by |rJG4IHzWf) (:text |dev?)
|r $ %{} :Expr (:at 1656005897000) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1656005897482) (:by |rJG4IHzWf) (:text |=)
|L $ %{} :Leaf (:at 1656005898833) (:by |rJG4IHzWf) (:text "|\"dev")
|T $ %{} :Expr (:at 1656005893019) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005894983) (:by |rJG4IHzWf) (:text |get-env)
|X $ %{} :Leaf (:at 1658662916588) (:by |rJG4IHzWf) (:text "|\"mode")
|b $ %{} :Leaf (:at 1656005896379) (:by |rJG4IHzWf) (:text "|\"release")
|site $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1518157327696) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157345496) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1518157327696) (:by |root) (:text |site)
|r $ %{} :Expr (:at 1518157327696) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157346643) (:by |root) (:text |{})
|y $ %{} :Expr (:at 1527868456422) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527868457305) (:by |root) (:text |:title)
|j $ %{} :Leaf (:at 1546019503364) (:by |root) (:text "|\"Calcit Theme")
|yT $ %{} :Expr (:at 1527868457696) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527868458476) (:by |root) (:text |:icon)
|j $ %{} :Leaf (:at 1546019509080) (:by |root) (:text "|\"http://cdn.tiye.me/logo/cirru.png")
|yf $ %{} :Expr (:at 1544956719115) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544956719115) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1546019516622) (:by |root) (:text "|\"calcit-theme")
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1527788237503) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |calcit-theme.config)
|calcit-theme.main $ %{} :FileEntry
:defs $ {}
|*reel $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610892747376) (:by |rJG4IHzWf) (:text |defatom)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |*reel)
|r $ %{} :Expr (:at 1507399777531) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1507399778895) (:by |root) (:text |->)
|T $ %{} :Leaf (:at 1507399776350) (:by |root) (:text |reel-schema/reel)
|j $ %{} :Expr (:at 1507399779656) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399781682) (:by |root) (:text |assoc)
|j $ %{} :Leaf (:at 1507401405076) (:by |root) (:text |:base)
|r $ %{} :Leaf (:at 1507399787471) (:by |root) (:text |schema/store)
|r $ %{} :Expr (:at 1507399779656) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399781682) (:by |root) (:text |assoc)
|j $ %{} :Leaf (:at 1507399793097) (:by |root) (:text |:store)
|r $ %{} :Leaf (:at 1507399787471) (:by |root) (:text |schema/store)
|dispatch! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |op)
|t $ %{} :Expr (:at 1518156274050) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518156275745) (:by |root) (:text |;)
|j $ %{} :Leaf (:at 1518156276516) (:by |root) (:text |println)
|r $ %{} :Leaf (:at 1518156280042) (:by |root) (:text ||Dispatch:)
|v $ %{} :Leaf (:at 1518156280471) (:by |root) (:text |op)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |reset!)
|j $ %{} :Leaf (:at 1507399899641) (:by |root) (:text |*reel)
|r $ %{} :Expr (:at 1507399884621) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399887573) (:by |root) (:text |reel-updater)
|j $ %{} :Leaf (:at 1507399888500) (:by |root) (:text |updater)
|r $ %{} :Leaf (:at 1507399891576) (:by |root) (:text |@*reel)
|v $ %{} :Leaf (:at 1507399892687) (:by |root) (:text |op)
|main! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |main!)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|t $ %{} :Expr (:at 1544874433785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544874434638) (:by |rJG4IHzWf) (:text |println)
|j $ %{} :Leaf (:at 1544874509800) (:by |rJG4IHzWf) (:text "|\"Running mode:")
|r $ %{} :Expr (:at 1544874440404) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544874440190) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Leaf (:at 1544874446442) (:by |rJG4IHzWf) (:text |config/dev?)
|r $ %{} :Leaf (:at 1544874449063) (:by |rJG4IHzWf) (:text "|\"dev")
|v $ %{} :Leaf (:at 1544874452316) (:by |rJG4IHzWf) (:text "|\"release")
|x $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render-app!)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render!)
|y $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |add-watch)
|j $ %{} :Leaf (:at 1507399915531) (:by |root) (:text |*reel)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:changes)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1613807414877) (:by |rJG4IHzWf) (:text |reel)
|j $ %{} :Leaf (:at 1613807416383) (:by |rJG4IHzWf) (:text |prev)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render-app!)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render!)
|yD $ %{} :Expr (:at 1507461684494) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461739167) (:by |root) (:text |listen-devtools!)
|j $ %{} :Leaf (:at 1507461691211) (:by |root) (:text ||a)
|r $ %{} :Leaf (:at 1507461693919) (:by |root) (:text |dispatch!)
|yL $ %{} :Expr (:at 1518157357847) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1691944131145) (:by |rJG4IHzWf) (:text |js/window.addEventListener)
|r $ %{} :Leaf (:at 1518157458163) (:by |root) (:text ||beforeunload)
|v $ %{} :Expr (:at 1613808413967) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1613808414562) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1613808414873) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808417140) (:by |rJG4IHzWf) (:text |event)
|T $ %{} :Expr (:at 1613808417806) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613808427997) (:by |rJG4IHzWf) (:text |persist-storage!)
|yN $ %{} :Expr (:at 1533919529874) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544956062322) (:by |rJG4IHzWf) (:text |repeat!)
|b $ %{} :Leaf (:at 1544956066171) (:by |rJG4IHzWf) (:text |60)
|j $ %{} :Leaf (:at 1533919535136) (:by |rJG4IHzWf) (:text |persist-storage!)
|yP $ %{} :Expr (:at 1518157492640) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157495438) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1518157495644) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1518157495826) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157496930) (:by |root) (:text |raw)
|j $ %{} :Expr (:at 1518157497615) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1691944127038) (:by |rJG4IHzWf) (:text |js/localStorage.getItem)
|r $ %{} :Expr (:at 1518157506313) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1544956709260) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1527788293499) (:by |root) (:text |config/site)
|r $ %{} :Expr (:at 1518157514334) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533919640958) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Expr (:at 1518157515117) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157515786) (:by |root) (:text |some?)
|j $ %{} :Leaf (:at 1518157516878) (:by |root) (:text |raw)
|r $ %{} :Expr (:at 1518157521635) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157523818) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1691944120677) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1691944121808) (:by |rJG4IHzWf) (:text |::)
|L $ %{} :Leaf (:at 1691944122237) (:by |rJG4IHzWf) (:text |:hydrate-storage)
|T $ %{} :Expr (:at 1610893046028) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1610893058941) (:by |rJG4IHzWf) (:text |extract-cirru-edn)
|T $ %{} :Expr (:at 1518157527987) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1610893045196) (:by |rJG4IHzWf) (:text |js/JSON.parse)
|j $ %{} :Leaf (:at 1518157531240) (:by |root) (:text |raw)
|yT $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |println)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text "||App started.")
|mount-target $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |mount-target)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |.querySelector)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |js/document)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text ||.app)
|persist-storage! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919517365) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!)
|r $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|v $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |.setItem)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |js/localStorage)
|r $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544956703087) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |config/site)
|v $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610893070568) (:by |rJG4IHzWf) (:text |js/JSON.stringify)
|j $ %{} :Expr (:at 1610893071642) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1610893075826) (:by |rJG4IHzWf) (:text |to-cirru-edn)
|T $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |:store)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |@*reel)
|reload! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1656005510047) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1656005511881) (:by |rJG4IHzWf) (:text |defn)
|L $ %{} :Leaf (:at 1656005513525) (:by |rJG4IHzWf) (:text |reload!)
|P $ %{} :Expr (:at 1656005515817) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1656005534133) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1656005534642) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1656005535093) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005535093) (:by |rJG4IHzWf) (:text |nil?)
|b $ %{} :Leaf (:at 1656005535093) (:by |rJG4IHzWf) (:text |build-errors)
|T $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|Q $ %{} :Leaf (:at 1656005533464) (:by |rJG4IHzWf) (:text |do)
|u $ %{} :Expr (:at 1507461699387) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461702453) (:by |root) (:text |clear-cache!)
|uT $ %{} :Expr (:at 1613807422685) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807424481) (:by |rJG4IHzWf) (:text |remove-watch)
|j $ %{} :Leaf (:at 1613807426393) (:by |rJG4IHzWf) (:text |*reel)
|r $ %{} :Leaf (:at 1613807428740) (:by |rJG4IHzWf) (:text |:changes)
|v $ %{} :Expr (:at 1613807421975) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807421975) (:by |rJG4IHzWf) (:text |add-watch)
|j $ %{} :Leaf (:at 1613807421975) (:by |rJG4IHzWf) (:text |*reel)
|r $ %{} :Leaf (:at 1613807421975) (:by |rJG4IHzWf) (:text |:changes)
|v $ %{} :Expr (:at 1613807421975) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807421975) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1613807421975) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807421975) (:by |rJG4IHzWf) (:text |reel)
|j $ %{} :Leaf (:at 1613807421975) (:by |rJG4IHzWf) (:text |prev)
|r $ %{} :Expr (:at 1613807421975) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1613807421975) (:by |rJG4IHzWf) (:text |render-app!)
|j $ %{} :Leaf (:at 1613807421975) (:by |rJG4IHzWf) (:text |render!)
|w $ %{} :Expr (:at 1507461704162) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461706990) (:by |root) (:text |reset!)
|j $ %{} :Leaf (:at 1507461708965) (:by |root) (:text |*reel)
|r $ %{} :Expr (:at 1507461710020) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461730190) (:by |root) (:text |refresh-reel)
|j $ %{} :Leaf (:at 1507461719097) (:by |root) (:text |@*reel)
|r $ %{} :Leaf (:at 1507461721870) (:by |root) (:text |schema/store)
|v $ %{} :Leaf (:at 1507461722724) (:by |root) (:text |updater)
|y $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |println)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text "||Code updated.")
|z $ %{} :Expr (:at 1656005554602) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005556050) (:by |rJG4IHzWf) (:text |hud!)
|b $ %{} :Leaf (:at 1656005558292) (:by |rJG4IHzWf) (:text "|\"ok~")
|h $ %{} :Leaf (:at 1656005559644) (:by |rJG4IHzWf) (:text "|\"Ok")
|b $ %{} :Expr (:at 1656005552809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1656005552809) (:by |rJG4IHzWf) (:text |hud!)
|b $ %{} :Leaf (:at 1656005552809) (:by |rJG4IHzWf) (:text "|\"error")
|h $ %{} :Leaf (:at 1656005552809) (:by |rJG4IHzWf) (:text |build-errors)
|render-app! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render-app!)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |renderer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |renderer)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |mount-target)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|j $ %{} :Leaf (:at 1507400119272) (:by |root) (:text |@*reel)
|t $ %{} :Leaf (:at 1691944143483) (:by |rJG4IHzWf) (:text |dispatch!)
|repeat! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1610892988399) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610892988399) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1610892988399) (:by |rJG4IHzWf) (:text |repeat!)
|r $ %{} :Expr (:at 1610892988399) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610892990796) (:by |rJG4IHzWf) (:text |duration)
|j $ %{} :Leaf (:at 1610892992433) (:by |rJG4IHzWf) (:text |cb)
|v $ %{} :Expr (:at 1610892994510) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610892998868) (:by |rJG4IHzWf) (:text |js/setTimeout)
|j $ %{} :Expr (:at 1610893001466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610893001716) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1610893002114) (:by |rJG4IHzWf)
:data $ {}
|r $ %{} :Expr (:at 1610893011946) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610893013650) (:by |rJG4IHzWf) (:text |cb)
|v $ %{} :Expr (:at 1610893016110) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610893021187) (:by |rJG4IHzWf) (:text |repeat!)
|j $ %{} :Leaf (:at 1610893022385) (:by |rJG4IHzWf) (:text |duration)
|r $ %{} :Leaf (:at 1610893023274) (:by |rJG4IHzWf) (:text |cb)
|r $ %{} :Expr (:at 1610893010389) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1610893010389) (:by |rJG4IHzWf) (:text |*)
|j $ %{} :Leaf (:at 1610893010389) (:by |rJG4IHzWf) (:text |duration)
|r $ %{} :Leaf (:at 1610893010389) (:by |rJG4IHzWf) (:text |1000)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |calcit-theme.main)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render!)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |clear-cache!)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |realize-ssr!)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |calcit-theme.comp.container)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|y $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1508556737455) (:by |root) (:text |calcit-theme.updater)