generated from calcit-lang/respo-calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
1516 lines (1515 loc) · 115 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 |app)
:configs $ {} (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.1)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |reel.calcit/
:entries $ {}
:files $ {}
|app.comp.container $ %{} :FileEntry
:defs $ {}
|CodeEntry $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1692512738900) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512738900) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1692512846961) (:by |rJG4IHzWf) (:text |CodeEntry)
|h $ %{} :Expr (:at 1692512738900) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512741858) (:by |rJG4IHzWf) (:text |new-record)
|X $ %{} :Leaf (:at 1692512843591) (:by |rJG4IHzWf) (:text |:CodeEntry)
|b $ %{} :Leaf (:at 1692512742570) (:by |rJG4IHzWf) (:text |:doc)
|h $ %{} :Leaf (:at 1692512745718) (:by |rJG4IHzWf) (:text |:code)
|Expr $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1692512298976) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512300687) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1692512298976) (:by |rJG4IHzWf) (:text |Expr)
|h $ %{} :Expr (:at 1692512298976) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512306170) (:by |rJG4IHzWf) (:text |new-record)
|b $ %{} :Leaf (:at 1692512307855) (:by |rJG4IHzWf) (:text |:Expr)
|h $ %{} :Leaf (:at 1692512311299) (:by |rJG4IHzWf) (:text |:data)
|l $ %{} :Leaf (:at 1692512355880) (:by |rJG4IHzWf) (:text |:by)
|o $ %{} :Leaf (:at 1692512362685) (:by |rJG4IHzWf) (:text |:at)
|FileEntry $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1693220532055) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220535197) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1693220532055) (:by |rJG4IHzWf) (:text |FileEntry)
|h $ %{} :Expr (:at 1693220532055) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220537276) (:by |rJG4IHzWf) (:text |new-record)
|b $ %{} :Leaf (:at 1693220541805) (:by |rJG4IHzWf) (:text |:FileEntry)
|h $ %{} :Leaf (:at 1693220543531) (:by |rJG4IHzWf) (:text |:ns)
|l $ %{} :Leaf (:at 1693220545036) (:by |rJG4IHzWf) (:text |:defs)
|Leaf $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1692512319765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512319765) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1692512319765) (:by |rJG4IHzWf) (:text |Leaf)
|h $ %{} :Expr (:at 1692512319765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512323858) (:by |rJG4IHzWf) (:text |new-record)
|X $ %{} :Leaf (:at 1692512349780) (:by |rJG4IHzWf) (:text |:Leaf)
|b $ %{} :Leaf (:at 1692512327799) (:by |rJG4IHzWf) (:text |:by)
|h $ %{} :Leaf (:at 1692512341934) (:by |rJG4IHzWf) (:text |:at)
|l $ %{} :Leaf (:at 1692512343105) (:by |rJG4IHzWf) (:text |:text)
|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 1507461830530) (:by |root) (:text |reel)
|v $ %{} :Expr (:at 1507461832154) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1507461833421) (:by |root) (: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 1626777497473) (:by |rJG4IHzWf) (:text |store)
|n $ %{} :Expr (:at 1584780921790) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780923771) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1584780991636) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1627849325504) (:by |rJG4IHzWf) (:text |or)
|T $ %{} :Expr (:at 1584780923944) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780925829) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1584780926681) (:by |rJG4IHzWf) (:text |states)
|b $ %{} :Expr (:at 1679237728653) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1679237728821) (:by |rJG4IHzWf) (:text |[])
|r $ %{} :Expr (:at 1584780887905) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780889620) (:by |rJG4IHzWf) (:text |state)
|j $ %{} :Expr (:at 1584780889933) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1627849327831) (:by |rJG4IHzWf) (:text |or)
|j $ %{} :Expr (:at 1584780894090) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780894689) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1584780900314) (:by |rJG4IHzWf) (:text |states)
|r $ %{} :Expr (:at 1584780901014) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780901408) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1584780901741) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780906050) (:by |rJG4IHzWf) (:text |:content)
|j $ %{} :Leaf (:at 1584780907617) (:by |rJG4IHzWf) (:text "|\"")
|n $ %{} :Expr (:at 1692511427351) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511432212) (:by |rJG4IHzWf) (:text |:next-data)
|b $ %{} :Leaf (:at 1692511432981) (:by |rJG4IHzWf) (:text |nil)
|t $ %{} :Expr (:at 1693415447032) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415449197) (:by |rJG4IHzWf) (:text |display-text)
|b $ %{} :Expr (:at 1693415449836) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415449836) (:by |rJG4IHzWf) (:text |format-cirru-edn)
|b $ %{} :Expr (:at 1693415449836) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415449836) (:by |rJG4IHzWf) (:text |:next-data)
|b $ %{} :Leaf (:at 1693415449836) (:by |rJG4IHzWf) (:text |state)
|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 |{})
|b $ %{} :Expr (:at 1693415771196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415772844) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1693415773202) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415774990) (:by |rJG4IHzWf) (:text |str-spaced)
|b $ %{} :Leaf (:at 1693415781522) (:by |rJG4IHzWf) (:text |css/fullscreen)
|h $ %{} :Leaf (:at 1693415783200) (:by |rJG4IHzWf) (:text |css/global)
|l $ %{} :Leaf (:at 1693415784512) (:by |rJG4IHzWf) (:text |css/row)
|n $ %{} :Expr (:at 1512359496483) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1552321295613) (:by |rJG4IHzWf) (:text |textarea)
|j $ %{} :Expr (:at 1512359504511) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359504843) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1512359505095) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359505740) (:by |rJG4IHzWf) (:text |:value)
|j $ %{} :Expr (:at 1512359518303) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359519072) (:by |rJG4IHzWf) (:text |:content)
|j $ %{} :Leaf (:at 1584780914332) (:by |rJG4IHzWf) (:text |state)
|n $ %{} :Expr (:at 1512359562842) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359565393) (:by |rJG4IHzWf) (:text |:placeholder)
|j $ %{} :Leaf (:at 1626201966743) (:by |rJG4IHzWf) (:text "|\"Content")
|o $ %{} :Expr (:at 1692511594589) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511596087) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1693415788284) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1693415790366) (:by |rJG4IHzWf) (:text |str-spaced)
|L $ %{} :Leaf (:at 1693415797970) (:by |rJG4IHzWf) (:text |css/expand)
|P $ %{} :Leaf (:at 1693415799361) (:by |rJG4IHzWf) (:text |css/textarea)
|T $ %{} :Leaf (:at 1692511611088) (:by |rJG4IHzWf) (:text |css/font-code!)
|p $ %{} :Expr (:at 1512359616676) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359618050) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1512359675605) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359676048) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1692511687394) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511693616) (:by |rJG4IHzWf) (:text |:white-space)
|b $ %{} :Leaf (:at 1692511690358) (:by |rJG4IHzWf) (:text |:pre)
|h $ %{} :Expr (:at 1692511697454) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511698914) (:by |rJG4IHzWf) (:text |:font-size)
|b $ %{} :Leaf (:at 1692511699990) (:by |rJG4IHzWf) (:text |12)
|r $ %{} :Expr (:at 1512359551423) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1515731637149) (:by |root) (:text |:on-input)
|r $ %{} :Expr (:at 1573355456413) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1573355458962) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1573355459236) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1573355459482) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1573355459980) (:by |rJG4IHzWf) (:text |d!)
|T $ %{} :Expr (:at 1515731639686) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1573355463209) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Leaf (:at 1584780918978) (:by |rJG4IHzWf) (:text |cursor)
|v $ %{} :Expr (:at 1584780929603) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1584780932163) (:by |rJG4IHzWf) (:text |assoc)
|L $ %{} :Leaf (:at 1584780932805) (:by |rJG4IHzWf) (:text |state)
|P $ %{} :Leaf (:at 1584780935039) (:by |rJG4IHzWf) (:text |:content)
|T $ %{} :Expr (:at 1512359558827) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359559399) (:by |rJG4IHzWf) (:text |:value)
|j $ %{} :Leaf (:at 1573355472480) (:by |rJG4IHzWf) (:text |e)
|t $ %{} :Expr (:at 1694353423367) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694353425141) (:by |rJG4IHzWf) (:text |:on-paste)
|b $ %{} :Expr (:at 1694353425707) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694353425919) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1694353426164) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694353426341) (:by |rJG4IHzWf) (:text |e)
|b $ %{} :Leaf (:at 1694353426826) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Expr (:at 1694353441956) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694353442922) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1694353443999) (:by |rJG4IHzWf) (:text |cursor)
|h $ %{} :Expr (:at 1694353444246) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694353445090) (:by |rJG4IHzWf) (:text |assoc)
|b $ %{} :Leaf (:at 1694353445695) (:by |rJG4IHzWf) (:text |state)
|e $ %{} :Leaf (:at 1694353463012) (:by |rJG4IHzWf) (:text |:next-data)
|f $ %{} :Leaf (:at 1694353464067) (:by |rJG4IHzWf) (:text |nil)
|l $ %{} :Expr (:at 1694365187201) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365188384) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Expr (:at 1694365190255) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365191693) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1694365196000) (:by |rJG4IHzWf) (:text |:interact)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1692511495220) (:by |rJG4IHzWf) (:text |2)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |nil)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|f $ %{} :Expr (:at 1512359526483) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359526843) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1535563521753) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415802158) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1692511480858) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1693415804664) (:by |rJG4IHzWf) (:text |str-spaced)
|L $ %{} :Leaf (:at 1693415805957) (:by |rJG4IHzWf) (:text |css/column)
|T $ %{} :Leaf (:at 1693415807149) (:by |rJG4IHzWf) (:text |css/expand)
|r $ %{} :Expr (:at 1692511488672) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692511489515) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1692511489850) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511490159) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1693415737795) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Leaf (:at 1693415739859) (:by |rJG4IHzWf) (:text |css/button)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:inner-text)
|j $ %{} :Leaf (:at 1692520891101) (:by |rJG4IHzWf) (:text "|\"Convert Calcit")
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1515731664266) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1512359578073) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359578445) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1512359578681) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359578853) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1512359579539) (:by |rJG4IHzWf) (:text |d!)
|t $ %{} :Expr (:at 1692511621236) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511621819) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1692511623227) (:by |rJG4IHzWf) (:text |cursor)
|h $ %{} :Expr (:at 1692511623453) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511624214) (:by |rJG4IHzWf) (:text |assoc)
|b $ %{} :Leaf (:at 1692511624863) (:by |rJG4IHzWf) (:text |state)
|h $ %{} :Leaf (:at 1692511627756) (:by |rJG4IHzWf) (:text |:next-data)
|l $ %{} :Expr (:at 1692511628320) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511632025) (:by |rJG4IHzWf) (:text |transform-snapshot)
|b $ %{} :Expr (:at 1692511634069) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511640495) (:by |rJG4IHzWf) (:text |parse-cirru-edn)
|b $ %{} :Expr (:at 1692511643097) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511644213) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Leaf (:at 1692511646590) (:by |rJG4IHzWf) (:text |state)
|u $ %{} :Expr (:at 1694365201830) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365201830) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Expr (:at 1694365201830) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365201830) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1694365201830) (:by |rJG4IHzWf) (:text |:interact)
|X $ %{} :Expr (:at 1692520898057) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520899424) (:by |rJG4IHzWf) (:text |=<)
|b $ %{} :Leaf (:at 1692520899744) (:by |rJG4IHzWf) (:text |8)
|h $ %{} :Leaf (:at 1692520900266) (:by |rJG4IHzWf) (:text |nil)
|b $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1693415743461) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Leaf (:at 1693415745079) (:by |rJG4IHzWf) (:text |css/button)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:inner-text)
|j $ %{} :Leaf (:at 1692520896579) (:by |rJG4IHzWf) (:text "|\"Convert Compact")
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1515731664266) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1512359578073) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359578445) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1512359578681) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359578853) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1512359579539) (:by |rJG4IHzWf) (:text |d!)
|t $ %{} :Expr (:at 1692511621236) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511621819) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1692511623227) (:by |rJG4IHzWf) (:text |cursor)
|h $ %{} :Expr (:at 1692511623453) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511624214) (:by |rJG4IHzWf) (:text |assoc)
|b $ %{} :Leaf (:at 1692511624863) (:by |rJG4IHzWf) (:text |state)
|h $ %{} :Leaf (:at 1692511627756) (:by |rJG4IHzWf) (:text |:next-data)
|l $ %{} :Expr (:at 1692511628320) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520905403) (:by |rJG4IHzWf) (:text |transform-compact)
|b $ %{} :Expr (:at 1692511634069) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511640495) (:by |rJG4IHzWf) (:text |parse-cirru-edn)
|b $ %{} :Expr (:at 1692511643097) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511644213) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Leaf (:at 1692511646590) (:by |rJG4IHzWf) (:text |state)
|u $ %{} :Expr (:at 1694365204698) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365204698) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Expr (:at 1694365204698) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365204698) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1694365204698) (:by |rJG4IHzWf) (:text |:interact)
|e $ %{} :Expr (:at 1693220440426) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220440426) (:by |rJG4IHzWf) (:text |=<)
|b $ %{} :Leaf (:at 1693220440426) (:by |rJG4IHzWf) (:text |8)
|h $ %{} :Leaf (:at 1693220440426) (:by |rJG4IHzWf) (:text |nil)
|h $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1693415746781) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Leaf (:at 1693415748230) (:by |rJG4IHzWf) (:text |css/button)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:inner-text)
|j $ %{} :Leaf (:at 1693220445517) (:by |rJG4IHzWf) (:text "|\"FileEntry")
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1515731664266) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1512359578073) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359578445) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1512359578681) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1512359578853) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1512359579539) (:by |rJG4IHzWf) (:text |d!)
|t $ %{} :Expr (:at 1692511621236) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511621819) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1692511623227) (:by |rJG4IHzWf) (:text |cursor)
|h $ %{} :Expr (:at 1692511623453) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511624214) (:by |rJG4IHzWf) (:text |assoc)
|b $ %{} :Leaf (:at 1692511624863) (:by |rJG4IHzWf) (:text |state)
|h $ %{} :Leaf (:at 1692511627756) (:by |rJG4IHzWf) (:text |:next-data)
|l $ %{} :Expr (:at 1692511628320) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220459452) (:by |rJG4IHzWf) (:text |transform-file-entry)
|b $ %{} :Expr (:at 1692511634069) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511640495) (:by |rJG4IHzWf) (:text |parse-cirru-edn)
|b $ %{} :Expr (:at 1692511643097) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511644213) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Leaf (:at 1692511646590) (:by |rJG4IHzWf) (:text |state)
|u $ %{} :Expr (:at 1694365207174) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365207174) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Expr (:at 1694365207174) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365207174) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1694365207174) (:by |rJG4IHzWf) (:text |:interact)
|t $ %{} :Expr (:at 1692511448712) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511448712) (:by |rJG4IHzWf) (:text |textarea)
|b $ %{} :Expr (:at 1692511448712) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511448712) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1692511448712) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511448712) (:by |rJG4IHzWf) (:text |:value)
|b $ %{} :Leaf (:at 1693415443318) (:by |rJG4IHzWf) (:text |display-text)
|e $ %{} :Expr (:at 1692511617554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511617554) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1693415754579) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1693415757030) (:by |rJG4IHzWf) (:text |str-spaced)
|L $ %{} :Leaf (:at 1693415765053) (:by |rJG4IHzWf) (:text |css/expand)
|P $ %{} :Leaf (:at 1693415766684) (:by |rJG4IHzWf) (:text |css/textarea)
|T $ %{} :Leaf (:at 1692511617554) (:by |rJG4IHzWf) (:text |css/font-code!)
|h $ %{} :Expr (:at 1692511448712) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511448712) (:by |rJG4IHzWf) (:text |:placeholder)
|b $ %{} :Leaf (:at 1692511518597) (:by |rJG4IHzWf) (:text "|\"data")
|l $ %{} :Expr (:at 1692511448712) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511448712) (:by |rJG4IHzWf) (:text |:style)
|b $ %{} :Expr (:at 1692511945098) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511945098) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1692511945098) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511945098) (:by |rJG4IHzWf) (:text |:white-space)
|b $ %{} :Leaf (:at 1692511945098) (:by |rJG4IHzWf) (:text |:pre)
|h $ %{} :Expr (:at 1692511945098) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511945098) (:by |rJG4IHzWf) (:text |:font-size)
|b $ %{} :Leaf (:at 1692511945098) (:by |rJG4IHzWf) (:text |12)
|o $ %{} :Expr (:at 1692511512588) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511514989) (:by |rJG4IHzWf) (:text |:disabled)
|b $ %{} :Leaf (:at 1692511516390) (:by |rJG4IHzWf) (:text |true)
|u $ %{} :Expr (:at 1694365283188) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1694365283648) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1694365283957) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365284293) (:by |rJG4IHzWf) (:text |:interacted?)
|b $ %{} :Leaf (:at 1694365285168) (:by |rJG4IHzWf) (:text |store)
|T $ %{} :Expr (:at 1693415452181) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415458463) (:by |rJG4IHzWf) (:text |comp-copy)
|b $ %{} :Expr (:at 1694364830785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694364830785) (:by |rJG4IHzWf) (:text |:next-data)
|b $ %{} :Leaf (:at 1694364830785) (:by |rJG4IHzWf) (:text |state)
|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 1584780610581) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1584780611347) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1509727101297) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1584780613268) (: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 |{})
|comp-copy $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1693415461478) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415463508) (:by |rJG4IHzWf) (:text |defcomp)
|b $ %{} :Leaf (:at 1693415461478) (:by |rJG4IHzWf) (:text |comp-copy)
|h $ %{} :Expr (:at 1693415461478) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694364833898) (:by |rJG4IHzWf) (:text |data)
|l $ %{} :Expr (:at 1693415464936) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415466149) (:by |rJG4IHzWf) (:text |[])
|X $ %{} :Expr (:at 1693415470023) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694364937019) (:by |rJG4IHzWf) (:text |effect-copy)
|b $ %{} :Leaf (:at 1694364835380) (:by |rJG4IHzWf) (:text |data)
|b $ %{} :Expr (:at 1693415531666) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415532256) (:by |rJG4IHzWf) (:text |span)
|b $ %{} :Expr (:at 1693415555175) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415555633) (:by |rJG4IHzWf) (:text |{})
|effect-copy $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1693415486115) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415487810) (:by |rJG4IHzWf) (:text |defeffect)
|b $ %{} :Leaf (:at 1693415486115) (:by |rJG4IHzWf) (:text |effect-copy)
|h $ %{} :Expr (:at 1693415486115) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694364837738) (:by |rJG4IHzWf) (:text |data)
|l $ %{} :Expr (:at 1693415497372) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415498617) (:by |rJG4IHzWf) (:text |action)
|b $ %{} :Leaf (:at 1693415504509) (:by |rJG4IHzWf) (:text |el)
|h $ %{} :Leaf (:at 1693415505577) (:by |rJG4IHzWf) (:text |at?)
|m $ %{} :Expr (:at 1694364866221) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694364870361) (:by |rJG4IHzWf) (:text |println)
|b $ %{} :Leaf (:at 1694364875188) (:by |rJG4IHzWf) (:text "|\"Copy Effect:")
|h $ %{} :Leaf (:at 1694364877030) (:by |rJG4IHzWf) (:text |action)
|l $ %{} :Expr (:at 1694364878181) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694364879019) (:by |rJG4IHzWf) (:text |some?)
|b $ %{} :Leaf (:at 1694364879781) (:by |rJG4IHzWf) (:text |data)
|o $ %{} :Expr (:at 1693415618041) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1693415618597) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1693415618852) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415618972) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Leaf (:at 1693415620618) (:by |rJG4IHzWf) (:text |action)
|h $ %{} :Leaf (:at 1693415622268) (:by |rJG4IHzWf) (:text |:update)
|T $ %{} :Expr (:at 1694364854034) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1694364854730) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1694364857910) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694364858899) (:by |rJG4IHzWf) (:text |some?)
|b $ %{} :Leaf (:at 1694364859592) (:by |rJG4IHzWf) (:text |data)
|T $ %{} :Expr (:at 1693415673442) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1694364840447) (:by |rJG4IHzWf) (:text |let)
|P $ %{} :Expr (:at 1694364840687) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1694364840845) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694364841576) (:by |rJG4IHzWf) (:text |text)
|b $ %{} :Expr (:at 1694364844954) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1694364847523) (:by |rJG4IHzWf) (:text |format-cirru-edn)
|T $ %{} :Leaf (:at 1694364844673) (:by |rJG4IHzWf) (:text |data)
|b $ %{} :Expr (:at 1693415675613) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415677764) (:by |rJG4IHzWf) (:text |copy!)
|b $ %{} :Leaf (:at 1693415679544) (:by |rJG4IHzWf) (:text |text)
|h $ %{} :Expr (:at 1694365048158) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365051295) (:by |rJG4IHzWf) (:text |println)
|b $ %{} :Leaf (:at 1694365056354) (:by |rJG4IHzWf) (:text "|\"Copied!")
|h $ %{} :Expr (:at 1694365059385) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694365060121) (:by |rJG4IHzWf) (:text |count)
|b $ %{} :Leaf (:at 1694365062575) (:by |rJG4IHzWf) (:text |text)
|transform-code $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1692512262981) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512262981) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1692512262981) (:by |rJG4IHzWf) (:text |transform-code)
|h $ %{} :Expr (:at 1692512262981) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512265416) (:by |rJG4IHzWf) (:text |expr)
|l $ %{} :Expr (:at 1692512267614) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512268060) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Expr (:at 1692512271268) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512272802) (:by |rJG4IHzWf) (:text |=)
|X $ %{} :Leaf (:at 1692512281242) (:by |rJG4IHzWf) (:text |:expr)
|b $ %{} :Expr (:at 1692512273090) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512273834) (:by |rJG4IHzWf) (:text |:type)
|b $ %{} :Leaf (:at 1692512277979) (:by |rJG4IHzWf) (:text |expr)
|h $ %{} :Expr (:at 1692512282620) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692512289165) (:by |rJG4IHzWf) (:text |%{})
|T $ %{} :Leaf (:at 1692512286402) (:by |rJG4IHzWf) (:text |Expr)
|b $ %{} :Expr (:at 1692512368737) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512373542) (:by |rJG4IHzWf) (:text |:by)
|b $ %{} :Expr (:at 1692512374824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512375240) (:by |rJG4IHzWf) (:text |:by)
|b $ %{} :Leaf (:at 1692512376020) (:by |rJG4IHzWf) (:text |expr)
|h $ %{} :Expr (:at 1692512368737) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512379636) (:by |rJG4IHzWf) (:text |:at)
|b $ %{} :Expr (:at 1692512374824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512380884) (:by |rJG4IHzWf) (:text |:at)
|b $ %{} :Leaf (:at 1692512376020) (:by |rJG4IHzWf) (:text |expr)
|o $ %{} :Expr (:at 1692512386129) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512386802) (:by |rJG4IHzWf) (:text |:data)
|b $ %{} :Expr (:at 1692512457544) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692512458601) (:by |rJG4IHzWf) (:text |->)
|T $ %{} :Expr (:at 1692512388171) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512388678) (:by |rJG4IHzWf) (:text |:data)
|b $ %{} :Leaf (:at 1692512389455) (:by |rJG4IHzWf) (:text |expr)
|b $ %{} :Expr (:at 1692512459399) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512462660) (:by |rJG4IHzWf) (:text |map-kv)
|b $ %{} :Expr (:at 1692512463102) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512463392) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1692512464306) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512464449) (:by |rJG4IHzWf) (:text |k)
|b $ %{} :Leaf (:at 1692512464889) (:by |rJG4IHzWf) (:text |v)
|h $ %{} :Expr (:at 1692512466341) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512467335) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1692512467522) (:by |rJG4IHzWf) (:text |k)
|h $ %{} :Expr (:at 1692512468476) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692512470506) (:by |rJG4IHzWf) (:text |transform-code)
|T $ %{} :Leaf (:at 1692512467853) (:by |rJG4IHzWf) (:text |v)
|l $ %{} :Expr (:at 1692512317020) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512318520) (:by |rJG4IHzWf) (:text |%{})
|b $ %{} :Leaf (:at 1692512319338) (:by |rJG4IHzWf) (:text |Leaf)
|h $ %{} :Expr (:at 1692512391273) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512392872) (:by |rJG4IHzWf) (:text |:by)
|b $ %{} :Expr (:at 1692512393153) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512393632) (:by |rJG4IHzWf) (:text |:by)
|b $ %{} :Leaf (:at 1692512394506) (:by |rJG4IHzWf) (:text |expr)
|l $ %{} :Expr (:at 1692512397454) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512397454) (:by |rJG4IHzWf) (:text |:at)
|b $ %{} :Expr (:at 1692512397454) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512397454) (:by |rJG4IHzWf) (:text |:at)
|b $ %{} :Leaf (:at 1692512397454) (:by |rJG4IHzWf) (:text |expr)
|q $ %{} :Expr (:at 1692512403256) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512404808) (:by |rJG4IHzWf) (:text |:text)
|b $ %{} :Expr (:at 1692512403256) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512405782) (:by |rJG4IHzWf) (:text |:text)
|b $ %{} :Leaf (:at 1692512403256) (:by |rJG4IHzWf) (:text |expr)
|transform-compact $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1692520907721) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520907721) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1692520907721) (:by |rJG4IHzWf) (:text |transform-compact)
|h $ %{} :Expr (:at 1692520907721) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520911665) (:by |rJG4IHzWf) (:text |data)
|l $ %{} :Expr (:at 1692520925046) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520925635) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Leaf (:at 1692520926541) (:by |rJG4IHzWf) (:text |data)
|h $ %{} :Expr (:at 1692520927615) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520928281) (:by |rJG4IHzWf) (:text |update)
|b $ %{} :Leaf (:at 1692520929109) (:by |rJG4IHzWf) (:text |:files)
|h $ %{} :Expr (:at 1692520929388) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520929629) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1692520929864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520930476) (:by |rJG4IHzWf) (:text |files)
|h $ %{} :Expr (:at 1692520931138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520931894) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Leaf (:at 1692520943247) (:by |rJG4IHzWf) (:text |files)
|h $ %{} :Expr (:at 1692520943620) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520945335) (:by |rJG4IHzWf) (:text |map-kv)
|b $ %{} :Expr (:at 1692520945932) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520947495) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1692520947778) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520947840) (:by |rJG4IHzWf) (:text |k)
|b $ %{} :Leaf (:at 1692520957545) (:by |rJG4IHzWf) (:text |file)
|h $ %{} :Expr (:at 1692520949433) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520951775) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1692520952952) (:by |rJG4IHzWf) (:text |k)
|h $ %{} :Expr (:at 1692520959537) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520961182) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Leaf (:at 1692520962249) (:by |rJG4IHzWf) (:text |file)
|h $ %{} :Expr (:at 1692520962564) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520966944) (:by |rJG4IHzWf) (:text |update)
|b $ %{} :Leaf (:at 1692520968192) (:by |rJG4IHzWf) (:text |:ns)
|h $ %{} :Expr (:at 1692520968831) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520969314) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1692520970047) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520969842) (:by |rJG4IHzWf) (:text |c)
|h $ %{} :Expr (:at 1692520972225) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692520987554) (:by |rJG4IHzWf) (:text |%{})
|T $ %{} :Leaf (:at 1692520985976) (:by |rJG4IHzWf) (:text |CodeEntry)
|b $ %{} :Expr (:at 1692520993178) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520994194) (:by |rJG4IHzWf) (:text |:doc)
|b $ %{} :Leaf (:at 1692520995071) (:by |rJG4IHzWf) (:text ||)
|h $ %{} :Expr (:at 1692520995548) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692520996960) (:by |rJG4IHzWf) (:text |:code)
|b $ %{} :Leaf (:at 1692520997260) (:by |rJG4IHzWf) (:text |c)
|l $ %{} :Expr (:at 1692520999294) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521000362) (:by |rJG4IHzWf) (:text |update)
|b $ %{} :Leaf (:at 1692521002310) (:by |rJG4IHzWf) (:text |:defs)
|h $ %{} :Expr (:at 1692521002929) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521003194) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1692521003438) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521004346) (:by |rJG4IHzWf) (:text |defs)
|h $ %{} :Expr (:at 1692521004945) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521005434) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Leaf (:at 1692521008508) (:by |rJG4IHzWf) (:text |defs)
|h $ %{} :Expr (:at 1692521008904) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521010339) (:by |rJG4IHzWf) (:text |map-kv)
|b $ %{} :Expr (:at 1692521010709) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521010940) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1692521011183) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521013220) (:by |rJG4IHzWf) (:text |def-name)
|b $ %{} :Leaf (:at 1692521014355) (:by |rJG4IHzWf) (:text |code)
|h $ %{} :Expr (:at 1692521015649) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521016010) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1692521018513) (:by |rJG4IHzWf) (:text |def-name)
|h $ %{} :Expr (:at 1692521023949) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521023949) (:by |rJG4IHzWf) (:text |%{})
|b $ %{} :Leaf (:at 1692521023949) (:by |rJG4IHzWf) (:text |CodeEntry)
|h $ %{} :Expr (:at 1692521023949) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521023949) (:by |rJG4IHzWf) (:text |:doc)
|b $ %{} :Leaf (:at 1692521023949) (:by |rJG4IHzWf) (:text ||)
|l $ %{} :Expr (:at 1692521023949) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692521023949) (:by |rJG4IHzWf) (:text |:code)
|b $ %{} :Leaf (:at 1692521026442) (:by |rJG4IHzWf) (:text |code)
|transform-file-entry $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1693220463372) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220463372) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1693220463372) (:by |rJG4IHzWf) (:text |transform-file-entry)
|h $ %{} :Expr (:at 1693220463372) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220467603) (:by |rJG4IHzWf) (:text |snapshot)
|l $ %{} :Expr (:at 1693220479108) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220481773) (:by |rJG4IHzWf) (:text |update)
|b $ %{} :Leaf (:at 1693220482185) (:by |rJG4IHzWf) (:text |snapshot)
|h $ %{} :Leaf (:at 1693220483358) (:by |rJG4IHzWf) (:text |:files)
|l $ %{} :Expr (:at 1693220483594) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220483813) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1693220484398) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220486291) (:by |rJG4IHzWf) (:text |files)
|h $ %{} :Expr (:at 1693220486881) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220494568) (:by |rJG4IHzWf) (:text |map-kv)
|b $ %{} :Leaf (:at 1693220490228) (:by |rJG4IHzWf) (:text |files)
|h $ %{} :Expr (:at 1693220490947) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220496415) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1693220496791) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220497041) (:by |rJG4IHzWf) (:text |k)
|b $ %{} :Leaf (:at 1693220497358) (:by |rJG4IHzWf) (:text |v)
|h $ %{} :Expr (:at 1693220499024) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220499187) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1693220499805) (:by |rJG4IHzWf) (:text |k)
|h $ %{} :Expr (:at 1693220500205) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1693220531304) (:by |rJG4IHzWf) (:text |%{})
|T $ %{} :Leaf (:at 1693220528751) (:by |rJG4IHzWf) (:text |FileEntry)
|b $ %{} :Expr (:at 1693220548062) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220548591) (:by |rJG4IHzWf) (:text |:ns)
|b $ %{} :Expr (:at 1693220550238) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220551257) (:by |rJG4IHzWf) (:text |:ns)
|b $ %{} :Leaf (:at 1693220551646) (:by |rJG4IHzWf) (:text |v)
|h $ %{} :Expr (:at 1693220554271) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220555192) (:by |rJG4IHzWf) (:text |:defs)
|b $ %{} :Expr (:at 1693220555591) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693220556558) (:by |rJG4IHzWf) (:text |:defs)
|b $ %{} :Leaf (:at 1693220557158) (:by |rJG4IHzWf) (:text |v)
|transform-snapshot $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1692511649788) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511649788) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1692511649788) (:by |rJG4IHzWf) (:text |transform-snapshot)
|h $ %{} :Expr (:at 1692511649788) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511655201) (:by |rJG4IHzWf) (:text |snapshot)
|l $ %{} :Expr (:at 1692513677456) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692513678942) (:by |rJG4IHzWf) (:text |let)
|T $ %{} :Expr (:at 1692513679530) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1692513679915) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692513680904) (:by |rJG4IHzWf) (:text |next)
|T $ %{} :Expr (:at 1692511900419) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511900846) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Leaf (:at 1692511902537) (:by |rJG4IHzWf) (:text |snapshot)
|h $ %{} :Expr (:at 1692511902857) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692512107291) (:by |rJG4IHzWf) (:text |update-in)
|b $ %{} :Expr (:at 1692512108060) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692512108566) (:by |rJG4IHzWf) (:text |[])
|L $ %{} :Leaf (:at 1692512109815) (:by |rJG4IHzWf) (:text |:ir)
|T $ %{} :Leaf (:at 1692511904874) (:by |rJG4IHzWf) (:text |:files)
|h $ %{} :Expr (:at 1692511907118) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511907388) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1692511908218) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511909751) (:by |rJG4IHzWf) (:text |files)
|h $ %{} :Expr (:at 1692511910877) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511912520) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Leaf (:at 1692511913328) (:by |rJG4IHzWf) (:text |files)
|h $ %{} :Expr (:at 1692511914359) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511915975) (:by |rJG4IHzWf) (:text |map-kv)
|b $ %{} :Expr (:at 1692511923367) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511923644) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1692511923872) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692511923972) (:by |rJG4IHzWf) (:text |k)
|b $ %{} :Leaf (:at 1692511965061) (:by |rJG4IHzWf) (:text |file)
|h $ %{} :Expr (:at 1692511925093) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1692511933775) (:by |rJG4IHzWf) (:text |[])
|T $ %{} :Leaf (:at 1692511925663) (:by |rJG4IHzWf) (:text |k)
|X $ %{} :Expr (:at 1693414993252) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693414995883) (:by |rJG4IHzWf) (:text |%{})
|b $ %{} :Leaf (:at 1693415079151) (:by |rJG4IHzWf) (:text |FileEntry)
|h $ %{} :Expr (:at 1693415007173) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415007803) (:by |rJG4IHzWf) (:text |:ns)
|b $ %{} :Expr (:at 1693415016784) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415016784) (:by |rJG4IHzWf) (:text |%{})
|b $ %{} :Leaf (:at 1693415016784) (:by |rJG4IHzWf) (:text |CodeEntry)
|h $ %{} :Expr (:at 1693415016784) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415016784) (:by |rJG4IHzWf) (:text |:doc)
|b $ %{} :Leaf (:at 1693415016784) (:by |rJG4IHzWf) (:text "|\"")
|l $ %{} :Expr (:at 1693415016784) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415016784) (:by |rJG4IHzWf) (:text |:code)
|b $ %{} :Expr (:at 1693415016784) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415016784) (:by |rJG4IHzWf) (:text |transform-code)
|b $ %{} :Expr (:at 1693415020385) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415021029) (:by |rJG4IHzWf) (:text |:ns)
|b $ %{} :Leaf (:at 1693415024314) (:by |rJG4IHzWf) (:text |file)
|l $ %{} :Expr (:at 1693415028343) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415029041) (:by |rJG4IHzWf) (:text |:defs)
|b $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Expr (:at 1693415037571) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415040338) (:by |rJG4IHzWf) (:text |:defs)
|b $ %{} :Leaf (:at 1693415044728) (:by |rJG4IHzWf) (:text |file)
|h $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |map-kv)
|b $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |def-name)
|b $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |code)
|h $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |def-name)
|h $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |%{})
|b $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |CodeEntry)
|h $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |:doc)
|b $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text "|\"")
|l $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |:code)
|b $ %{} :Expr (:at 1693415035887) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |transform-code)
|b $ %{} :Leaf (:at 1693415035887) (:by |rJG4IHzWf) (:text |code)
|b $ %{} :Expr (:at 1692513683260) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692513684447) (:by |rJG4IHzWf) (:text |->)
|b $ %{} :Leaf (:at 1692513685917) (:by |rJG4IHzWf) (:text |next)
|h $ %{} :Expr (:at 1692513686642) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692513687910) (:by |rJG4IHzWf) (:text |dissoc)
|b $ %{} :Leaf (:at 1693220825826) (:by |rJG4IHzWf) (:text |:ir)
|l $ %{} :Expr (:at 1692513691375) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692513692871) (:by |rJG4IHzWf) (:text |assoc)
|b $ %{} :Leaf (:at 1692513695778) (:by |rJG4IHzWf) (:text |:package)
|h $ %{} :Expr (:at 1692513696057) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692513697528) (:by |rJG4IHzWf) (:text |get-in)
|b $ %{} :Leaf (:at 1692513701366) (:by |rJG4IHzWf) (:text |next)
|h $ %{} :Expr (:at 1692513703562) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692513703795) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1692513704721) (:by |rJG4IHzWf) (:text |:ir)
|h $ %{} :Leaf (:at 1692513706885) (:by |rJG4IHzWf) (:text |:package)
|o $ %{} :Expr (:at 1692513691375) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692513692871) (:by |rJG4IHzWf) (:text |assoc)
|b $ %{} :Leaf (:at 1692513711915) (:by |rJG4IHzWf) (:text |:files)
|h $ %{} :Expr (:at 1692513696057) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692513697528) (:by |rJG4IHzWf) (:text |get-in)
|b $ %{} :Leaf (:at 1692513701366) (:by |rJG4IHzWf) (:text |next)
|h $ %{} :Expr (:at 1692513703562) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1692513703795) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Leaf (:at 1692513704721) (:by |rJG4IHzWf) (:text |:ir)
|h $ %{} :Leaf (:at 1692513713918) (:by |rJG4IHzWf) (:text |:files)
: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 |app.comp.container)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require)
|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)
|l $ %{} :Leaf (:at 1573355389740) (:by |rJG4IHzWf) (:text |defeffect)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>)
|t $ %{} :Leaf (:at 1584780606618) (:by |rJG4IHzWf) (: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)
|yT $ %{} :Leaf (:at 1552321107012) (:by |rJG4IHzWf) (:text |input)
|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 $ {}