-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
8974 lines (8973 loc) · 661 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 |respo-ui)
:configs $ {} (:init-fn |respo-ui.main/main!) (:output |src) (:port 6001) (:reload-fn |respo-ui.main/reload!) (:storage-key |calcit.cirru) (:version |0.6.2)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-router.calcit/ |respo-markdown.calcit/
:entries $ {}
:files $ {}
|respo-ui.comp $ %{} :FileEntry
:defs $ {}
|comp-attributes $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1678209340788) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209346467) (:by |bjmr3HZle) (:text |defcomp)
|b $ %{} :Leaf (:at 1678209340788) (:by |bjmr3HZle) (:text |comp-attributes)
|h $ %{} :Expr (:at 1678209340788) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209351158) (:by |bjmr3HZle) (:text |options)
|l $ %{} :Expr (:at 1678209351634) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209352015) (:by |bjmr3HZle) (:text |let)
|b $ %{} :Expr (:at 1678209352669) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1678209352849) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209355137) (:by |bjmr3HZle) (:text |items)
|b $ %{} :Expr (:at 1678209355999) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209357891) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678209358877) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678209361131) (:by |bjmr3HZle) (:text |:items)
|b $ %{} :Expr (:at 1678209362282) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209381768) (:by |bjmr3HZle) (:text |item-width)
|b $ %{} :Expr (:at 1678209694729) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1678209697164) (:by |bjmr3HZle) (:text |either)
|T $ %{} :Expr (:at 1678209382269) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209385604) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678209386563) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678209389695) (:by |bjmr3HZle) (:text |:item-width)
|b $ %{} :Leaf (:at 1678209769043) (:by |bjmr3HZle) (:text |160)
|h $ %{} :Expr (:at 1678209391388) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209394380) (:by |bjmr3HZle) (:text |item-height)
|b $ %{} :Expr (:at 1678209396058) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209396058) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678209396058) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678209398675) (:by |bjmr3HZle) (:text |:item-height)
|l $ %{} :Expr (:at 1678209400787) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209402359) (:by |bjmr3HZle) (:text |title)
|b $ %{} :Expr (:at 1678209403923) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678209405193) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678209408070) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678209410410) (:by |bjmr3HZle) (:text |:title)
|o $ %{} :Expr (:at 1678305436337) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305436706) (:by |bjmr3HZle) (:text |ret)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |list->)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:class-name)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |merge)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:display)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:grid)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:grid-template-columns)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |str)
|b $ %{} :Leaf (:at 1678305603560) (:by |bjmr3HZle) (:text "|\"repeat(auto-fit, minmax(")
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |item-width)
|l $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text "|\"px,1fr))")
|l $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:gap)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |8)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:style)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |->)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |items)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |map-indexed)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |fn)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |idx)
|b $ %{} :Leaf (:at 1704820916598) (:by |bjmr3HZle) (:text |info)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |[])
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |idx)
|h $ %{} :Expr (:at 1704820907360) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1704820910793) (:by |bjmr3HZle) (:text |let)
|L $ %{} :Expr (:at 1704820911839) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1704820911981) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820919111) (:by |bjmr3HZle) (:text |item)
|b $ %{} :Expr (:at 1704820919780) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820921975) (:by |bjmr3HZle) (:text |cond)
|b $ %{} :Expr (:at 1704820922877) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1704820923017) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820925567) (:by |bjmr3HZle) (:text |map?)
|b $ %{} :Leaf (:at 1704820926161) (:by |bjmr3HZle) (:text |info)
|b $ %{} :Leaf (:at 1704820927308) (:by |bjmr3HZle) (:text |info)
|h $ %{} :Expr (:at 1704820929051) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1704820931552) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820930229) (:by |bjmr3HZle) (:text |tuple?)
|b $ %{} :Leaf (:at 1704820932962) (:by |bjmr3HZle) (:text |info)
|b $ %{} :Expr (:at 1704820934164) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820936263) (:by |bjmr3HZle) (:text |tag-match)
|b $ %{} :Leaf (:at 1704820936786) (:by |bjmr3HZle) (:text |info)
|h $ %{} :Expr (:at 1704820937536) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1704820937917) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821015667) (:by |bjmr3HZle) (:text |:attr)
|h $ %{} :Leaf (:at 1704820941394) (:by |bjmr3HZle) (:text |l)
|l $ %{} :Leaf (:at 1704821018057) (:by |bjmr3HZle) (:text |v)
|b $ %{} :Expr (:at 1704820943576) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820943922) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1704820947534) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820948987) (:by |bjmr3HZle) (:text |:value)
|b $ %{} :Leaf (:at 1704820949223) (:by |bjmr3HZle) (:text |v)
|h $ %{} :Expr (:at 1704820949730) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820952459) (:by |bjmr3HZle) (:text |:label)
|b $ %{} :Leaf (:at 1704820954564) (:by |bjmr3HZle) (:text |l)
|l $ %{} :Expr (:at 1704820937536) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1704820937917) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821193401) (:by |bjmr3HZle) (:text |:attr-span)
|h $ %{} :Leaf (:at 1704820941394) (:by |bjmr3HZle) (:text |l)
|l $ %{} :Leaf (:at 1704821018057) (:by |bjmr3HZle) (:text |v)
|o $ %{} :Leaf (:at 1704821191309) (:by |bjmr3HZle) (:text |s)
|b $ %{} :Expr (:at 1704820943576) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820943922) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1704820947534) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820948987) (:by |bjmr3HZle) (:text |:value)
|b $ %{} :Leaf (:at 1704820949223) (:by |bjmr3HZle) (:text |v)
|h $ %{} :Expr (:at 1704820949730) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820952459) (:by |bjmr3HZle) (:text |:label)
|b $ %{} :Leaf (:at 1704820954564) (:by |bjmr3HZle) (:text |l)
|l $ %{} :Expr (:at 1704821195120) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821196400) (:by |bjmr3HZle) (:text |:span)
|b $ %{} :Leaf (:at 1704821197373) (:by |bjmr3HZle) (:text |s)
|l $ %{} :Expr (:at 1704820956970) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820958190) (:by |bjmr3HZle) (:text |true)
|b $ %{} :Expr (:at 1704820961733) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704820964710) (:by |bjmr3HZle) (:text |raise)
|b $ %{} :Leaf (:at 1704820979595) (:by |bjmr3HZle) (:text "|\"unknown attribute info")
|T $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |div)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:grid-column)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |let)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |sp)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |item)
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:span)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |if)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |some?)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |sp)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |str-spaced)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text "|\"span")
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |sp)
|l $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text "|\"")
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |str-spaced)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |style-item)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:css-item)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |div)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |str-spaced)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |css-item-label)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:css-label)
|h $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |<>)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |item)
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:label)
|l $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |div)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |:css-value)
|h $ %{} :Expr (:at 1699981778595) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1699981779167) (:by |bjmr3HZle) (:text |let)
|L $ %{} :Expr (:at 1699981779645) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1699981779818) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1699981780464) (:by |bjmr3HZle) (:text |v)
|b $ %{} :Expr (:at 1699981780926) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1699981780926) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1699981780926) (:by |bjmr3HZle) (:text |item)
|h $ %{} :Leaf (:at 1699981780926) (:by |bjmr3HZle) (:text |:value)
|T $ %{} :Expr (:at 1699981782818) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1699981783268) (:by |bjmr3HZle) (:text |if)
|L $ %{} :Expr (:at 1699981783753) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700027667108) (:by |bjmr3HZle) (:text |literal?)
|b $ %{} :Leaf (:at 1699981786114) (:by |bjmr3HZle) (:text |v)
|T $ %{} :Expr (:at 1678305437314) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305437314) (:by |bjmr3HZle) (:text |<>)
|b $ %{} :Leaf (:at 1699981789686) (:by |bjmr3HZle) (:text |v)
|b $ %{} :Leaf (:at 1699981791356) (:by |bjmr3HZle) (:text |v)
|h $ %{} :Expr (:at 1678305439112) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305440665) (:by |bjmr3HZle) (:text |if)
|b $ %{} :Expr (:at 1678305440961) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305441691) (:by |bjmr3HZle) (:text |some?)
|b $ %{} :Leaf (:at 1678305442501) (:by |bjmr3HZle) (:text |title)
|h $ %{} :Expr (:at 1678305444078) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305445277) (:by |bjmr3HZle) (:text |div)
|b $ %{} :Expr (:at 1678305445586) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305445873) (:by |bjmr3HZle) (:text |{})
|h $ %{} :Expr (:at 1678305450271) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1678305450958) (:by |bjmr3HZle) (:text |div)
|L $ %{} :Expr (:at 1678305451224) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305451528) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1678305482597) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305487893) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1678305499040) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1678305510236) (:by |bjmr3HZle) (:text |str-spaced)
|L $ %{} :Leaf (:at 1678305506543) (:by |bjmr3HZle) (:text |style-attributes-title)
|T $ %{} :Expr (:at 1678305489615) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305491268) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1678305493281) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1678305495711) (:by |bjmr3HZle) (:text |:css-title)
|T $ %{} :Expr (:at 1678305447286) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1678305448269) (:by |bjmr3HZle) (:text |<>)
|b $ %{} :Leaf (:at 1678305449664) (:by |bjmr3HZle) (:text |title)
|l $ %{} :Leaf (:at 1678305452973) (:by |bjmr3HZle) (:text |ret)
|l $ %{} :Leaf (:at 1678305454788) (:by |bjmr3HZle) (:text |ret)
|comp-catoptric-text $ %{} :CodeEntry (:doc "|by \"catoptric text\" I mean text added with CSS content, thus unsearchable from browser search or select. The text can still be grabbed from DOM tree though.")
:code $ %{} :Expr (:at 1702490308575) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490317703) (:by |bjmr3HZle) (:text |defcomp)
|b $ %{} :Leaf (:at 1702490308575) (:by |bjmr3HZle) (:text |comp-catoptric-text)
|h $ %{} :Expr (:at 1702490308575) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490334717) (:by |bjmr3HZle) (:text |text)
|X $ %{} :Leaf (:at 1702490337600) (:by |bjmr3HZle) (:text |?)
|b $ %{} :Leaf (:at 1702490336111) (:by |bjmr3HZle) (:text |options)
|l $ %{} :Expr (:at 1702490750976) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702490754466) (:by |bjmr3HZle) (:text |[])
|L $ %{} :Expr (:at 1702490755838) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490766808) (:by |bjmr3HZle) (:text |effect-dataset-text)
|b $ %{} :Leaf (:at 1702490767991) (:by |bjmr3HZle) (:text |text)
|T $ %{} :Expr (:at 1702490338947) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490345981) (:by |bjmr3HZle) (:text |span)
|b $ %{} :Expr (:at 1702490347307) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490347662) (:by |bjmr3HZle) (:text |{})
|X $ %{} :Expr (:at 1702490352479) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490354022) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1702490411973) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702490414584) (:by |bjmr3HZle) (:text |str-spaced)
|T $ %{} :Leaf (:at 1702490359287) (:by |bjmr3HZle) (:text |style-catoptric)
|b $ %{} :Expr (:at 1702490416395) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490416798) (:by |bjmr3HZle) (:text |get)
|b $ %{} :Leaf (:at 1702490428635) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1702490420539) (:by |bjmr3HZle) (:text |:class-name)
|Y $ %{} :Expr (:at 1702490422462) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490423416) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Expr (:at 1702490423653) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702490424227) (:by |bjmr3HZle) (:text |get)
|b $ %{} :Leaf (:at 1702490425115) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1702490426996) (:by |bjmr3HZle) (:text |:style)
|comp-cirru-snippet $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1593161556909) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1593161560305) (:by |bjmr3HZle) (:text |defcomp)
|j $ %{} :Leaf (:at 1695746203264) (:by |bjmr3HZle) (:text |comp-cirru-snippet)
|r $ %{} :Expr (:at 1593161556909) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1593161566336) (:by |bjmr3HZle) (:text |text)
|b $ %{} :Leaf (:at 1704535271114) (:by |bjmr3HZle) (:text |?)
|j $ %{} :Leaf (:at 1704534963897) (:by |bjmr3HZle) (:text |options)
|v $ %{} :Expr (:at 1593161567991) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1593161568559) (:by |bjmr3HZle) (:text |div)
|j $ %{} :Expr (:at 1593161568734) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1593161569113) (:by |bjmr3HZle) (:text |{})
|f $ %{} :Expr (:at 1651248364126) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1651248366396) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1699981992811) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1699981994815) (:by |bjmr3HZle) (:text |str-spaced)
|L $ %{} :Leaf (:at 1699981996950) (:by |bjmr3HZle) (:text |css/row)
|T $ %{} :Leaf (:at 1651248378515) (:by |bjmr3HZle) (:text |css-snippet)
|b $ %{} :Expr (:at 1704534972483) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704534973598) (:by |bjmr3HZle) (:text |get)
|b $ %{} :Leaf (:at 1704535152617) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1704534976147) (:by |bjmr3HZle) (:text |:class-name)
|r $ %{} :Expr (:at 1593161579964) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1593161581563) (:by |bjmr3HZle) (:text |:style)
|j $ %{} :Expr (:at 1704534965813) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1704534966658) (:by |bjmr3HZle) (:text |get)
|L $ %{} :Leaf (:at 1704534967095) (:by |bjmr3HZle) (:text |options)
|T $ %{} :Leaf (:at 1704534968705) (:by |bjmr3HZle) (:text |:style)
|r $ %{} :Expr (:at 1593161962470) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1644509679567) (:by |bjmr3HZle) (:text |pre)
|j $ %{} :Expr (:at 1644509685930) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1644509686908) (:by |bjmr3HZle) (:text |{})
|L $ %{} :Expr (:at 1699981999124) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1699982001579) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Leaf (:at 1699982005231) (:by |bjmr3HZle) (:text |css/expand)
|T $ %{} :Expr (:at 1644509687460) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1644509691389) (:by |bjmr3HZle) (:text |:innerHTML)
|T $ %{} :Expr (:at 1644509721979) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1644509722599) (:by |bjmr3HZle) (:text |generateHtml)
|T $ %{} :Leaf (:at 1593161963758) (:by |bjmr3HZle) (:text |text)
|t $ %{} :Expr (:at 1703010308877) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1703010311491) (:by |bjmr3HZle) (:text |span)
|L $ %{} :Expr (:at 1703010312196) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1703010312480) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1703010312892) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1703010318011) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Leaf (:at 1703010332961) (:by |bjmr3HZle) (:text |style-copy-wrapper)
|T $ %{} :Expr (:at 1696701087648) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701094815) (:by |bjmr3HZle) (:text |comp-copy)
|X $ %{} :Leaf (:at 1703009964130) (:by |bjmr3HZle) (:text |text)
|b $ %{} :Expr (:at 1696701728619) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701728619) (:by |bjmr3HZle) (:text |fn)
|b $ %{} :Expr (:at 1696701728619) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1703010195980) (:by |bjmr3HZle) (:text |e)
|b $ %{} :Leaf (:at 1703010196624) (:by |bjmr3HZle) (:text |d!)
|h $ %{} :Expr (:at 1696701728619) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701728619) (:by |bjmr3HZle) (:text |copy!)
|b $ %{} :Leaf (:at 1703009968857) (:by |bjmr3HZle) (:text |text)
|comp-close $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1702317145066) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317149413) (:by |bjmr3HZle) (:text |defcomp)
|b $ %{} :Leaf (:at 1702317145066) (:by |bjmr3HZle) (:text |comp-close)
|h $ %{} :Expr (:at 1702317145066) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702317157796) (:by |bjmr3HZle) (:text |?)
|T $ %{} :Leaf (:at 1702317151954) (:by |bjmr3HZle) (:text |options)
|o $ %{} :Expr (:at 1702317180822) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317183162) (:by |bjmr3HZle) (:text |span)
|b $ %{} :Expr (:at 1702317183454) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317183801) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1702317184149) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317185804) (:by |bjmr3HZle) (:text |:inner-text)
|b $ %{} :Leaf (:at 1702317402782) (:by |bjmr3HZle) (:text "|\"✕")
|h $ %{} :Expr (:at 1702317212025) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317214524) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Expr (:at 1702317217422) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317217422) (:by |bjmr3HZle) (:text |get)
|b $ %{} :Leaf (:at 1702317217422) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1702317220802) (:by |bjmr3HZle) (:text |:style)
|l $ %{} :Expr (:at 1702317212025) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317225345) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1702317230781) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702317234733) (:by |bjmr3HZle) (:text |str-spaced)
|L $ %{} :Leaf (:at 1702317237057) (:by |bjmr3HZle) (:text |style-close)
|T $ %{} :Expr (:at 1702317217422) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317217422) (:by |bjmr3HZle) (:text |get)
|b $ %{} :Leaf (:at 1702317217422) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1702317228996) (:by |bjmr3HZle) (:text |:class-name)
|o $ %{} :Expr (:at 1702317252527) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317254073) (:by |bjmr3HZle) (:text |:on-click)
|b $ %{} :Expr (:at 1702317258066) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702317258480) (:by |bjmr3HZle) (:text |get)
|b $ %{} :Leaf (:at 1702317260083) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1702317262764) (:by |bjmr3HZle) (:text |:on-click)
|comp-copy $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1696701096431) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701097878) (:by |bjmr3HZle) (:text |defcomp)
|b $ %{} :Leaf (:at 1696701096431) (:by |bjmr3HZle) (:text |comp-copy)
|h $ %{} :Expr (:at 1696701096431) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1703009999286) (:by |bjmr3HZle) (:text |code)
|L $ %{} :Leaf (:at 1703010065817) (:by |bjmr3HZle) (:text |?)
|T $ %{} :Leaf (:at 1696701732753) (:by |bjmr3HZle) (:text |f)
|l $ %{} :Expr (:at 1696701100285) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701100804) (:by |bjmr3HZle) (:text |div)
|b $ %{} :Expr (:at 1696701101139) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701101468) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1696701132055) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701136429) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1696701518858) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1696701523933) (:by |bjmr3HZle) (:text |str-spaced)
|T $ %{} :Leaf (:at 1696701519766) (:by |bjmr3HZle) (:text |style-copy-outline)
|b $ %{} :Leaf (:at 1696701520406) (:by |bjmr3HZle) (:text |style-copy-container)
|h $ %{} :Expr (:at 1696701738627) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701740545) (:by |bjmr3HZle) (:text |:on-click)
|b $ %{} :Expr (:at 1703010213934) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1703010214913) (:by |bjmr3HZle) (:text |either)
|L $ %{} :Leaf (:at 1703010215785) (:by |bjmr3HZle) (:text |f)
|T $ %{} :Expr (:at 1696701740830) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701741069) (:by |bjmr3HZle) (:text |fn)
|b $ %{} :Expr (:at 1696701743860) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701744443) (:by |bjmr3HZle) (:text |e)
|b $ %{} :Leaf (:at 1696701745193) (:by |bjmr3HZle) (:text |d!)
|h $ %{} :Expr (:at 1703010219391) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1703010219391) (:by |bjmr3HZle) (:text |copy!)
|b $ %{} :Leaf (:at 1703010219391) (:by |bjmr3HZle) (:text |code)
|h $ %{} :Expr (:at 1696701102289) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701102974) (:by |bjmr3HZle) (:text |div)
|b $ %{} :Expr (:at 1696701103318) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701105788) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1696701214119) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701215659) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Leaf (:at 1696701217338) (:by |bjmr3HZle) (:text |style-copy-outline)
|h $ %{} :Expr (:at 1696701220447) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701221558) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Expr (:at 1696701221880) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701222264) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1696701222913) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701332420) (:by |bjmr3HZle) (:text |:top)
|b $ %{} :Leaf (:at 1703010450356) (:by |bjmr3HZle) (:text |-5)
|h $ %{} :Expr (:at 1696701228663) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701360409) (:by |bjmr3HZle) (:text |:right)
|b $ %{} :Leaf (:at 1703010456022) (:by |bjmr3HZle) (:text |-2)
|comp-placeholder $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1592799104566) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799104566) (:by |bjmr3HZle) (:text |defcomp)
|j $ %{} :Leaf (:at 1592799104566) (:by |bjmr3HZle) (:text |comp-placeholder)
|r $ %{} :Expr (:at 1592799104566) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799104566) (:by |bjmr3HZle) (:text |text)
|v $ %{} :Expr (:at 1592799104566) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799104566) (:by |bjmr3HZle) (:text |div)
|j $ %{} :Expr (:at 1592799104566) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799104566) (:by |bjmr3HZle) (:text |{})
|j $ %{} :Expr (:at 1592799104566) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1651248033341) (:by |bjmr3HZle) (:text |:class-name)
|j $ %{} :Leaf (:at 1651248013735) (:by |bjmr3HZle) (:text |css-placeholder)
|r $ %{} :Expr (:at 1592799104566) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799104566) (:by |bjmr3HZle) (:text |<>)
|j $ %{} :Leaf (:at 1592799104566) (:by |bjmr3HZle) (:text |text)
|comp-snippet $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1695746978499) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1695747010205) (:by |bjmr3HZle) (:text |defcomp)
|b $ %{} :Leaf (:at 1695746978499) (:by |bjmr3HZle) (:text |comp-snippet)
|h $ %{} :Expr (:at 1695746978499) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1695747011535) (:by |bjmr3HZle) (:text |code)
|b $ %{} :Leaf (:at 1695747014606) (:by |bjmr3HZle) (:text |?)
|h $ %{} :Leaf (:at 1695747015932) (:by |bjmr3HZle) (:text |options)
|l $ %{} :Expr (:at 1696700721430) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1696700722238) (:by |bjmr3HZle) (:text |div)
|L $ %{} :Expr (:at 1696700723197) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696700723519) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1696700733437) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696700736326) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1696700746197) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1696700749415) (:by |bjmr3HZle) (:text |str-spaced)
|L $ %{} :Leaf (:at 1699981914391) (:by |bjmr3HZle) (:text |css/row)
|T $ %{} :Leaf (:at 1696700747140) (:by |bjmr3HZle) (:text |css-snippet)
|X $ %{} :Expr (:at 1696700779277) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696700780936) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Leaf (:at 1696700782154) (:by |bjmr3HZle) (:text |options)
|T $ %{} :Expr (:at 1695747007292) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1695747065908) (:by |bjmr3HZle) (:text |pre)
|b $ %{} :Expr (:at 1695747007292) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1695747007292) (:by |bjmr3HZle) (:text |{})
|a $ %{} :Expr (:at 1699981921225) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1699981923209) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Leaf (:at 1699981926163) (:by |bjmr3HZle) (:text |css/expand)
|h $ %{} :Expr (:at 1695747007292) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1695747007292) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Expr (:at 1695747029613) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704535175717) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Leaf (:at 1695747030895) (:by |bjmr3HZle) (:text |options)
|l $ %{} :Expr (:at 1695747073442) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1695747073442) (:by |bjmr3HZle) (:text |:inner-text)
|b $ %{} :Leaf (:at 1695747151171) (:by |bjmr3HZle) (:text |code)
|b $ %{} :Expr (:at 1703010361323) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1703010362581) (:by |bjmr3HZle) (:text |span)
|L $ %{} :Expr (:at 1703010362959) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1703010362959) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1703010362959) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1703010362959) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Leaf (:at 1703010362959) (:by |bjmr3HZle) (:text |style-copy-wrapper)
|T $ %{} :Expr (:at 1696701047696) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701052143) (:by |bjmr3HZle) (:text |comp-copy)
|X $ %{} :Leaf (:at 1703009980449) (:by |bjmr3HZle) (:text |code)
|b $ %{} :Expr (:at 1696701700544) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701700914) (:by |bjmr3HZle) (:text |fn)
|b $ %{} :Expr (:at 1696701706898) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1703010206615) (:by |bjmr3HZle) (:text |e)
|b $ %{} :Leaf (:at 1703010207342) (:by |bjmr3HZle) (:text |d!)
|h $ %{} :Expr (:at 1696701711871) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1696701714738) (:by |bjmr3HZle) (:text |copy!)
|b $ %{} :Leaf (:at 1696701717588) (:by |bjmr3HZle) (:text |code)
|comp-tabs $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |defcomp)
|j $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |comp-tabs)
|r $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799778467) (:by |bjmr3HZle) (:text |options)
|j $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |tabs)
|r $ %{} :Leaf (:at 1592799303204) (:by |bjmr3HZle) (:text |on-route)
|v $ %{} :Expr (:at 1702404733200) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702404733784) (:by |bjmr3HZle) (:text |let)
|L $ %{} :Expr (:at 1702404734044) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1702404734206) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404736136) (:by |bjmr3HZle) (:text |selected)
|b $ %{} :Expr (:at 1702404738439) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404738439) (:by |bjmr3HZle) (:text |:selected)
|b $ %{} :Leaf (:at 1702404738439) (:by |bjmr3HZle) (:text |options)
|b $ %{} :Expr (:at 1702405635908) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702405638049) (:by |bjmr3HZle) (:text |vertical?)
|b $ %{} :Expr (:at 1702405638477) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702405638477) (:by |bjmr3HZle) (:text |:vertical?)
|b $ %{} :Leaf (:at 1702405638477) (:by |bjmr3HZle) (:text |options)
|T $ %{} :Expr (:at 1702404384789) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702404386534) (:by |bjmr3HZle) (:text |[])
|L $ %{} :Expr (:at 1702404387752) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404396969) (:by |bjmr3HZle) (:text |effect-tab-highlight)
|b $ %{} :Leaf (:at 1702404740440) (:by |bjmr3HZle) (:text |selected)
|h $ %{} :Leaf (:at 1702405653254) (:by |bjmr3HZle) (:text |vertical?)
|T $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404373304) (:by |bjmr3HZle) (:text |div)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1651248083054) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1651248087603) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1702404206612) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702404208480) (:by |bjmr3HZle) (:text |str-spaced)
|L $ %{} :Leaf (:at 1702405295275) (:by |bjmr3HZle) (:text |style-tabs)
|T $ %{} :Expr (:at 1651248089742) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1651248089742) (:by |bjmr3HZle) (:text |if)
|b $ %{} :Leaf (:at 1702405641405) (:by |bjmr3HZle) (:text |vertical?)
|h $ %{} :Leaf (:at 1651248197750) (:by |bjmr3HZle) (:text |css/column)
|l $ %{} :Leaf (:at 1651248211154) (:by |bjmr3HZle) (:text |css/row)
|b $ %{} :Expr (:at 1702404212717) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404213162) (:by |bjmr3HZle) (:text |get)
|b $ %{} :Leaf (:at 1702404214539) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1702404217038) (:by |bjmr3HZle) (:text |:class-name)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |:style)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |merge)
|r $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |{})
|r $ %{} :Expr (:at 1592800386993) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592800388420) (:by |bjmr3HZle) (:text |:width)
|j $ %{} :Expr (:at 1592800389116) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592800389837) (:by |bjmr3HZle) (:text |:width)
|j $ %{} :Leaf (:at 1592800391265) (:by |bjmr3HZle) (:text |options)
|v $ %{} :Expr (:at 1592799814864) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404222158) (:by |bjmr3HZle) (:text |get)
|j $ %{} :Leaf (:at 1592799817864) (:by |bjmr3HZle) (:text |options)
|n $ %{} :Leaf (:at 1702404222927) (:by |bjmr3HZle) (:text |:style)
|l $ %{} :Expr (:at 1702404314942) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404316188) (:by |bjmr3HZle) (:text |div)
|b $ %{} :Expr (:at 1702404316490) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404316824) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1702404319253) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404324279) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1702576331686) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702576337382) (:by |bjmr3HZle) (:text |str-spaced)
|P $ %{} :Leaf (:at 1702576431320) (:by |bjmr3HZle) (:text |style-tab-highlight)
|b $ %{} :Expr (:at 1702576442719) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702576443346) (:by |bjmr3HZle) (:text |if)
|L $ %{} :Leaf (:at 1702576445312) (:by |bjmr3HZle) (:text |vertical?)
|T $ %{} :Leaf (:at 1702576345857) (:by |bjmr3HZle) (:text |style-tab-vertical-highlight)
|n $ %{} :Leaf (:at 1702404296471) (:by |bjmr3HZle) (:text |&)
|r $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1619548188082) (:by |bjmr3HZle) (:text |->)
|j $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |tabs)
|r $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |map)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |fn)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |info)
|r $ %{} :Expr (:at 1702404768514) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702404769844) (:by |bjmr3HZle) (:text |let)
|L $ %{} :Expr (:at 1702404770104) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Expr (:at 1704821486966) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821488327) (:by |bjmr3HZle) (:text |item)
|b $ %{} :Expr (:at 1704821490054) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821490863) (:by |bjmr3HZle) (:text |cond)
|b $ %{} :Expr (:at 1704821491237) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1704821491786) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821494287) (:by |bjmr3HZle) (:text |tuple?)
|b $ %{} :Leaf (:at 1704821496127) (:by |bjmr3HZle) (:text |info)
|b $ %{} :Leaf (:at 1704821497914) (:by |bjmr3HZle) (:text |info)
|h $ %{} :Expr (:at 1704821499737) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1704821501125) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821501818) (:by |bjmr3HZle) (:text |map?)
|b $ %{} :Leaf (:at 1704821502973) (:by |bjmr3HZle) (:text |info)
|b $ %{} :Expr (:at 1704821503630) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821504328) (:by |bjmr3HZle) (:text |::)
|b $ %{} :Leaf (:at 1704821508496) (:by |bjmr3HZle) (:text |:tab)
|h $ %{} :Expr (:at 1704821529724) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1704821530768) (:by |bjmr3HZle) (:text |or)
|T $ %{} :Expr (:at 1704821513549) (:by |bjmr3HZle)
:data $ {}
|H $ %{} :Leaf (:at 1704821524847) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1704821513549) (:by |bjmr3HZle) (:text |info)
|h $ %{} :Leaf (:at 1704821525958) (:by |bjmr3HZle) (:text |:value)
|b $ %{} :Expr (:at 1704821513549) (:by |bjmr3HZle)
:data $ {}
|H $ %{} :Leaf (:at 1704821524847) (:by |bjmr3HZle) (:text |&map:get)
|b $ %{} :Leaf (:at 1704821513549) (:by |bjmr3HZle) (:text |info)
|h $ %{} :Leaf (:at 1704821535991) (:by |bjmr3HZle) (:text |:name)
|l $ %{} :Expr (:at 1704821541861) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821541861) (:by |bjmr3HZle) (:text |or)
|b $ %{} :Expr (:at 1704821541861) (:by |bjmr3HZle)
:data $ {}
|5 $ %{} :Leaf (:at 1704821547268) (:by |bjmr3HZle) (:text |&map:get)
|D $ %{} :Leaf (:at 1704821545423) (:by |bjmr3HZle) (:text |info)
|T $ %{} :Leaf (:at 1704821541861) (:by |bjmr3HZle) (:text |:display)
|h $ %{} :Expr (:at 1704821541861) (:by |bjmr3HZle)
:data $ {}
|5 $ %{} :Leaf (:at 1704821551632) (:by |bjmr3HZle) (:text |&map:get)
|D $ %{} :Leaf (:at 1704821549545) (:by |bjmr3HZle) (:text |info)
|T $ %{} :Leaf (:at 1704821541861) (:by |bjmr3HZle) (:text |:title)
|l $ %{} :Expr (:at 1704821554160) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821555954) (:by |bjmr3HZle) (:text |true)
|b $ %{} :Expr (:at 1704821557276) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821557781) (:by |bjmr3HZle) (:text |raise)
|b $ %{} :Leaf (:at 1704821565196) (:by |bjmr3HZle) (:text "|\"Unknown tab value")
|T $ %{} :Expr (:at 1704821576545) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1704821581417) (:by |bjmr3HZle) (:text |tag-match)
|L $ %{} :Leaf (:at 1704821581953) (:by |bjmr3HZle) (:text |item)
|T $ %{} :Expr (:at 1704821582772) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Expr (:at 1704821583499) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821586041) (:by |bjmr3HZle) (:text |:tab)
|b $ %{} :Leaf (:at 1704821610476) (:by |bjmr3HZle) (:text |value)
|h $ %{} :Leaf (:at 1704821612338) (:by |bjmr3HZle) (:text |display)
|T $ %{} :Expr (:at 1704821601029) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1704821601798) (:by |bjmr3HZle) (:text |let)
|L $ %{} :Expr (:at 1704821603084) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Expr (:at 1704821605347) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821605347) (:by |bjmr3HZle) (:text |selected?)
|b $ %{} :Expr (:at 1704821605347) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1704821605347) (:by |bjmr3HZle) (:text |=)
|b $ %{} :Leaf (:at 1704821605347) (:by |bjmr3HZle) (:text |selected)
|h $ %{} :Leaf (:at 1704821617547) (:by |bjmr3HZle) (:text |value)
|T $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |div)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1651248124487) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1651248129502) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1702404185930) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1702404188305) (:by |bjmr3HZle) (:text |str-spaced)
|T $ %{} :Leaf (:at 1651248132145) (:by |bjmr3HZle) (:text |css-tab)
|b $ %{} :Expr (:at 1702404189423) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404191745) (:by |bjmr3HZle) (:text |get)
|b $ %{} :Leaf (:at 1702404192732) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Leaf (:at 1702405842836) (:by |bjmr3HZle) (:text |:tab-class-name)
|h $ %{} :Expr (:at 1702404756644) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1702404758022) (:by |bjmr3HZle) (:text |if)
|b $ %{} :Leaf (:at 1702404777908) (:by |bjmr3HZle) (:text |selected?)
|h $ %{} :Leaf (:at 1702404784441) (:by |bjmr3HZle) (:text |style-selected-tab)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |:style)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |merge)
|n $ %{} :Expr (:at 1645115709994) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1645115715023) (:by |bjmr3HZle) (:text |:tab-style)
|b $ %{} :Leaf (:at 1645115717877) (:by |bjmr3HZle) (:text |options)
|r $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |if)
|j $ %{} :Leaf (:at 1702404775508) (:by |bjmr3HZle) (:text |selected?)
|r $ %{} :Expr (:at 1645115726755) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1645115736116) (:by |bjmr3HZle) (:text |:selected-tab-style)
|b $ %{} :Leaf (:at 1645115737055) (:by |bjmr3HZle) (:text |options)
|r $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |:on-click)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |fn)
|j $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |e)
|j $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |d!)
|v $ %{} :Expr (:at 1592799308117) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799309439) (:by |bjmr3HZle) (:text |on-route)
|j $ %{} :Leaf (:at 1704821631348) (:by |bjmr3HZle) (:text |item)
|r $ %{} :Leaf (:at 1592799313113) (:by |bjmr3HZle) (:text |d!)
|r $ %{} :Expr (:at 1592799089998) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1592799089998) (:by |bjmr3HZle) (:text |<>)
|b $ %{} :Leaf (:at 1704821621993) (:by |bjmr3HZle) (:text |display)
|comp-tag $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1700586762229) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700586764928) (:by |bjmr3HZle) (:text |defcomp)
|b $ %{} :Leaf (:at 1700586762229) (:by |bjmr3HZle) (:text |comp-tag)
|h $ %{} :Expr (:at 1700586762229) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700586769880) (:by |bjmr3HZle) (:text |kind)
|b $ %{} :Leaf (:at 1700586776061) (:by |bjmr3HZle) (:text |content)
|h $ %{} :Leaf (:at 1700586778262) (:by |bjmr3HZle) (:text |?)
|l $ %{} :Leaf (:at 1700586780037) (:by |bjmr3HZle) (:text |options)
|l $ %{} :Expr (:at 1700586781646) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700586782310) (:by |bjmr3HZle) (:text |div)
|b $ %{} :Expr (:at 1700586782564) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700586783687) (:by |bjmr3HZle) (:text |{})
|b $ %{} :Expr (:at 1700586784221) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700586791336) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Expr (:at 1700587296860) (:by |bjmr3HZle)
:data $ {}
|D $ %{} :Leaf (:at 1700587298878) (:by |bjmr3HZle) (:text |str-spaced)
|T $ %{} :Leaf (:at 1700586807139) (:by |bjmr3HZle) (:text |style-tag)
|b $ %{} :Expr (:at 1700587309379) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700587302390) (:by |bjmr3HZle) (:text |case-default)
|b $ %{} :Leaf (:at 1700587310178) (:by |bjmr3HZle) (:text |kind)
|h $ %{} :Leaf (:at 1700587311919) (:by |bjmr3HZle) (:text |nil)
|l $ %{} :Expr (:at 1700587312296) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700587314207) (:by |bjmr3HZle) (:text |:info)
|b $ %{} :Leaf (:at 1700587319663) (:by |bjmr3HZle) (:text |style-tag-info)
|m $ %{} :Expr (:at 1700587312296) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700587785967) (:by |bjmr3HZle) (:text |:success)
|b $ %{} :Leaf (:at 1700587788564) (:by |bjmr3HZle) (:text |style-tag-success)
|o $ %{} :Expr (:at 1700587312296) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700587331126) (:by |bjmr3HZle) (:text |:warning)
|b $ %{} :Leaf (:at 1700587370242) (:by |bjmr3HZle) (:text |style-tag-warning)
|q $ %{} :Expr (:at 1700587312296) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700587329304) (:by |bjmr3HZle) (:text |:error)
|b $ %{} :Leaf (:at 1700587377109) (:by |bjmr3HZle) (:text |style-tag-error)
|h $ %{} :Expr (:at 1700587675695) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700587679762) (:by |bjmr3HZle) (:text |:class-name)
|b $ %{} :Leaf (:at 1700587681030) (:by |bjmr3HZle) (:text |options)
|h $ %{} :Expr (:at 1700587682653) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700587683594) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Expr (:at 1700587685387) (:by |bjmr3HZle)
:data $ {}
|T $ %{} :Leaf (:at 1700587690380) (:by |bjmr3HZle) (:text |:style)
|b $ %{} :Leaf (:at 1700587688167) (:by |bjmr3HZle) (:text |options)