-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
1910 lines (1909 loc) · 141 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/ |respo-markdown.calcit/ |reel.calcit/
:entries $ {}
:files $ {}
|app.comp.container $ %{} :FileEntry
:defs $ {}
|comp-checked $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1535106366223) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106518525) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1535106366223) (:by |rJG4IHzWf) (:text |comp-checked)
|r $ %{} :Expr (:at 1535106366223) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106369947) (:by |rJG4IHzWf) (:text |checked?)
|j $ %{} :Leaf (:at 1535106372240) (:by |rJG4IHzWf) (:text |text)
|r $ %{} :Leaf (:at 1535106373787) (:by |rJG4IHzWf) (:text |handler)
|v $ %{} :Expr (:at 1535106378049) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1535106379317) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1535106379616) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106379925) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1700672500454) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672502408) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1700672506036) (:by |rJG4IHzWf) (:text |css/row-center)
|j $ %{} :Expr (:at 1535106380431) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106382779) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1563643740982) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643741378) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1563643741940) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643741940) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1563643741940) (:by |rJG4IHzWf) (:text |:pointer)
|r $ %{} :Expr (:at 1563643730727) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643730727) (:by |rJG4IHzWf) (:text |:on-click)
|j $ %{} :Leaf (:at 1563643730727) (:by |rJG4IHzWf) (:text |handler)
|T $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |input)
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |:type)
|j $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text "|\"checkbox")
|r $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |:checked)
|j $ %{} :Leaf (:at 1535106398706) (:by |rJG4IHzWf) (:text |checked?)
|v $ %{} :Expr (:at 1732210171184) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210172297) (:by |rJG4IHzWf) (:text |:style)
|L $ %{} :Expr (:at 1732210172856) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210173163) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1732210178742) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210178742) (:by |rJG4IHzWf) (:text |:cursor)
|b $ %{} :Leaf (:at 1732210178742) (:by |rJG4IHzWf) (:text |:pointer)
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Leaf (:at 1535106394738) (:by |rJG4IHzWf) (:text |text)
|n $ %{} :Leaf (:at 1700672514976) (:by |rJG4IHzWf) (:text |css/font-fancy)
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1686561203533) (:by |rJG4IHzWf)
: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 1509727108033) (:by |root) (:text |store)
|n $ %{} :Expr (:at 1534956299085) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956301282) (:by |rJG4IHzWf) (:text |sorted?)
|j $ %{} :Expr (:at 1534956301606) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956303032) (:by |rJG4IHzWf) (:text |:sorted?)
|j $ %{} :Leaf (:at 1534956305434) (:by |rJG4IHzWf) (:text |store)
|p $ %{} :Expr (:at 1535106144225) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643219228) (:by |rJG4IHzWf) (:text |show-result?)
|j $ %{} :Expr (:at 1535106149181) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643217683) (:by |rJG4IHzWf) (:text |:show-result?)
|j $ %{} :Leaf (:at 1535106151051) (:by |rJG4IHzWf) (:text |store)
|q $ %{} :Expr (:at 1535106144225) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210122440) (:by |rJG4IHzWf) (:text |by-word?)
|j $ %{} :Expr (:at 1732210381143) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210382629) (:by |rJG4IHzWf) (:text |w-js-log)
|T $ %{} :Expr (:at 1535106149181) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210126982) (:by |rJG4IHzWf) (:text |:by-word?)
|j $ %{} :Leaf (:at 1535106151051) (:by |rJG4IHzWf) (:text |store)
|qT $ %{} :Expr (:at 1732210305564) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210307844) (:by |rJG4IHzWf) (:text |differ)
|b $ %{} :Expr (:at 1732210308766) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210309113) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Leaf (:at 1732210311422) (:by |rJG4IHzWf) (:text |by-word?)
|h $ %{} :Leaf (:at 1732210313107) (:by |rJG4IHzWf) (:text |diff/diffWords)
|l $ %{} :Leaf (:at 1732210318129) (:by |rJG4IHzWf) (:text |diff/diffLines)
|r $ %{} :Expr (:at 1569087179299) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785057491) (:by |rJG4IHzWf) (:text |changes)
|j $ %{} :Expr (:at 1629027274788) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1686561206767) (:by |rJG4IHzWf) (:text |tagging-data)
|T $ %{} :Expr (:at 1534784709348) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629027114295) (:by |rJG4IHzWf) (:text |to-calcit-data)
|T $ %{} :Expr (:at 1534956787232) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1534956787835) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Leaf (:at 1534956789030) (:by |rJG4IHzWf) (:text |sorted?)
|T $ %{} :Expr (:at 1534784689082) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210320779) (:by |rJG4IHzWf) (:text |differ)
|j $ %{} :Expr (:at 1534956798012) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1534956812886) (:by |rJG4IHzWf) (:text |sort-by-line)
|T $ %{} :Expr (:at 1534784693796) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784696847) (:by |rJG4IHzWf) (:text |:old-text)
|j $ %{} :Leaf (:at 1534784697804) (:by |rJG4IHzWf) (:text |store)
|r $ %{} :Expr (:at 1534956802215) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1534956811066) (:by |rJG4IHzWf) (:text |sort-by-line)
|T $ %{} :Expr (:at 1534784698240) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784699828) (:by |rJG4IHzWf) (:text |:new-text)
|j $ %{} :Leaf (:at 1534784701175) (:by |rJG4IHzWf) (:text |store)
|j $ %{} :Expr (:at 1534784689082) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210321746) (:by |rJG4IHzWf) (:text |differ)
|j $ %{} :Expr (:at 1534784693796) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784696847) (:by |rJG4IHzWf) (:text |:old-text)
|j $ %{} :Leaf (:at 1534784697804) (:by |rJG4IHzWf) (:text |store)
|r $ %{} :Expr (:at 1534784698240) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784699828) (:by |rJG4IHzWf) (:text |:new-text)
|j $ %{} :Leaf (:at 1534784701175) (:by |rJG4IHzWf) (:text |store)
|T $ %{} :Expr (:at 1534955911769) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1534955913193) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1534955914484) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534955916297) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1700672315544) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1700672319036) (:by |rJG4IHzWf) (:text |str-spaced)
|j $ %{} :Leaf (:at 1700672320560) (:by |rJG4IHzWf) (:text |css/global)
|n $ %{} :Leaf (:at 1700672322214) (:by |rJG4IHzWf) (:text |css/fullscreen)
|r $ %{} :Leaf (:at 1700672323995) (:by |rJG4IHzWf) (:text |css/column)
|P $ %{} :Expr (:at 1563643510402) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643510402) (:by |rJG4IHzWf) (:text |comp-toolbar)
|j $ %{} :Leaf (:at 1563643510402) (:by |rJG4IHzWf) (:text |show-result?)
|r $ %{} :Leaf (:at 1563643510402) (:by |rJG4IHzWf) (:text |sorted?)
|t $ %{} :Leaf (:at 1732210132211) (:by |rJG4IHzWf) (:text |by-word?)
|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 1700672294985) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672299025) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1700672301340) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672303860) (:by |rJG4IHzWf) (:text |str-spaced)
|b $ %{} :Leaf (:at 1700672306274) (:by |rJG4IHzWf) (:text |css/flex)
|h $ %{} :Leaf (:at 1700672307526) (:by |rJG4IHzWf) (:text |css/row)
|j $ %{} :Expr (:at 1534955927406) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534955928149) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1550915974490) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1550915974814) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1550915975045) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1550915976425) (:by |root) (:text |:overflow)
|j $ %{} :Leaf (:at 1550915977353) (:by |root) (:text |:auto)
|q $ %{} :Expr (:at 1535106233671) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1563643283615) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Leaf (:at 1563643222178) (:by |rJG4IHzWf) (:text |show-result?)
|P $ %{} :Expr (:at 1563643288224) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643288224) (:by |rJG4IHzWf) (:text |comp-diff-view)
|j $ %{} :Leaf (:at 1563643288224) (:by |rJG4IHzWf) (:text |changes)
|n $ %{} :Leaf (:at 1732210196612) (:by |rJG4IHzWf) (:text |by-word?)
|T $ %{} :Expr (:at 1535106054844) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1535106055580) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1535106055847) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106056181) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1535106066279) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672397804) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1535106080857) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700672400600) (:by |rJG4IHzWf) (:text |str-spaced)
|L $ %{} :Leaf (:at 1700672402746) (:by |rJG4IHzWf) (:text |css/expand)
|T $ %{} :Leaf (:at 1700672404816) (:by |rJG4IHzWf) (:text |css/row)
|j $ %{} :Leaf (:at 1700672406542) (:by |rJG4IHzWf) (:text |css/flex)
|T $ %{} :Expr (:at 1534784453832) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784455689) (:by |rJG4IHzWf) (:text |textarea)
|j $ %{} :Expr (:at 1534784456498) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784457247) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1534784457602) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672430443) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1534784465430) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700672432518) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1700672434244) (:by |rJG4IHzWf) (:text |css/textarea)
|b $ %{} :Leaf (:at 1700672435920) (:by |rJG4IHzWf) (:text |css/expand)
|j $ %{} :Leaf (:at 1534785387652) (:by |rJG4IHzWf) (:text |style-text)
|r $ %{} :Expr (:at 1534784539645) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784540358) (:by |rJG4IHzWf) (:text |:value)
|j $ %{} :Expr (:at 1534784542476) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784544760) (:by |rJG4IHzWf) (:text |:old-text)
|j $ %{} :Leaf (:at 1534784547354) (:by |rJG4IHzWf) (:text |store)
|t $ %{} :Expr (:at 1534784566883) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784569317) (:by |rJG4IHzWf) (:text |:placeholder)
|j $ %{} :Leaf (:at 1534784573842) (:by |rJG4IHzWf) (:text "|\"Old text")
|v $ %{} :Expr (:at 1534784548850) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784551511) (:by |rJG4IHzWf) (:text |:on-input)
|j $ %{} :Expr (:at 1534784551726) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784551968) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1534784552226) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784552459) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1534784553537) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1534784555422) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784555959) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1688621042676) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1688621043228) (:by |rJG4IHzWf) (:text |::)
|L $ %{} :Leaf (:at 1688621043593) (:by |rJG4IHzWf) (:text |:write-old)
|T $ %{} :Expr (:at 1534784560615) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784563165) (:by |rJG4IHzWf) (:text |:value)
|j $ %{} :Leaf (:at 1534784563403) (:by |rJG4IHzWf) (:text |e)
|x $ %{} :Expr (:at 1534822914034) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534823005039) (:by |rJG4IHzWf) (:text |:spell-check)
|j $ %{} :Leaf (:at 1534822917435) (:by |rJG4IHzWf) (:text |false)
|y $ %{} :Expr (:at 1565369381598) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369401149) (:by |rJG4IHzWf) (:text |:autofocus)
|j $ %{} :Leaf (:at 1565369386147) (:by |rJG4IHzWf) (:text |true)
|j $ %{} :Expr (:at 1534822598496) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822602153) (:by |rJG4IHzWf) (:text |comp-divider)
|r $ %{} :Expr (:at 1534784453832) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784455689) (:by |rJG4IHzWf) (:text |textarea)
|j $ %{} :Expr (:at 1534784456498) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784457247) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1534784457602) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672447203) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1534784469522) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700672449450) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1700672450951) (:by |rJG4IHzWf) (:text |css/textarea)
|b $ %{} :Leaf (:at 1700672452576) (:by |rJG4IHzWf) (:text |css/expand)
|j $ %{} :Leaf (:at 1534785389650) (:by |rJG4IHzWf) (:text |style-text)
|r $ %{} :Expr (:at 1534784574846) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784575870) (:by |rJG4IHzWf) (:text |:value)
|j $ %{} :Expr (:at 1534784576417) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784580651) (:by |rJG4IHzWf) (:text |:new-text)
|j $ %{} :Leaf (:at 1534784583031) (:by |rJG4IHzWf) (:text |store)
|v $ %{} :Expr (:at 1534784583781) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784585567) (:by |rJG4IHzWf) (:text |:placeholder)
|j $ %{} :Leaf (:at 1534784588167) (:by |rJG4IHzWf) (:text "|\"New text")
|x $ %{} :Expr (:at 1534784588608) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784592360) (:by |rJG4IHzWf) (:text |:on-input)
|j $ %{} :Expr (:at 1534784592595) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784592863) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1534784593163) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784593404) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1629027057445) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1534784595271) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784595999) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1688621045644) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1688621046269) (:by |rJG4IHzWf) (:text |::)
|L $ %{} :Leaf (:at 1688621046686) (:by |rJG4IHzWf) (:text |:write-new)
|T $ %{} :Expr (:at 1534784598322) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534784598976) (:by |rJG4IHzWf) (:text |:value)
|j $ %{} :Leaf (:at 1534784599453) (:by |rJG4IHzWf) (:text |e)
|y $ %{} :Expr (:at 1534822914034) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822993378) (:by |rJG4IHzWf) (:text |:spellcheck)
|j $ %{} :Leaf (:at 1534822917435) (:by |rJG4IHzWf) (:text |false)
|j $ %{} :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 1629026731217) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629026731917) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1509727101297) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1629026732606) (: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 |{})
|r $ %{} :Expr (:at 1534956899404) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956899932) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Leaf (:at 1534956900826) (:by |rJG4IHzWf) (:text |dev?)
|r $ %{} :Expr (:at 1534956902054) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956905286) (:by |rJG4IHzWf) (:text |comp-inspect)
|j $ %{} :Leaf (:at 1534956930797) (:by |rJG4IHzWf) (:text "|\"Store")
|r $ %{} :Leaf (:at 1534956929143) (:by |rJG4IHzWf) (:text |store)
|v $ %{} :Expr (:at 1534956909801) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956910138) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1535106264058) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106265154) (:by |rJG4IHzWf) (:text |:bottom)
|j $ %{} :Leaf (:at 1535106270831) (:by |rJG4IHzWf) (:text |0)
|comp-diff-view $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956215424) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |comp-diff-view)
|n $ %{} :Expr (:at 1534956216192) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956231008) (:by |rJG4IHzWf) (:text |changes)
|b $ %{} :Leaf (:at 1732210198874) (:by |rJG4IHzWf) (:text |by-word?)
|r $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|r $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |list->)
|v $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1700672543943) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672546778) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1700672548388) (:by |rJG4IHzWf) (:text |css/flex)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535105834704) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1535105558428) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535105561802) (:by |rJG4IHzWf) (:text |:padding-bottom)
|j $ %{} :Leaf (:at 1535105562493) (:by |rJG4IHzWf) (:text |80)
|v $ %{} :Expr (:at 1535105869360) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535105871462) (:by |rJG4IHzWf) (:text |:overflow)
|j $ %{} :Leaf (:at 1535105873619) (:by |rJG4IHzWf) (:text |:auto)
|w $ %{} :Expr (:at 1732210946517) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210949253) (:by |rJG4IHzWf) (:text |:line-height)
|b $ %{} :Expr (:at 1732210951369) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210951734) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Leaf (:at 1732210953195) (:by |rJG4IHzWf) (:text |by-word?)
|h $ %{} :Leaf (:at 1732210966197) (:by |rJG4IHzWf) (:text "|\"20px")
|x $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026886408) (:by |rJG4IHzWf) (:text |->)
|j $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |changes)
|r $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |map-indexed)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |idx)
|j $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |chunk)
|r $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |idx)
|r $ %{} :Expr (:at 1732210751804) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210752552) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1732210752865) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1732210752998) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210880261) (:by |rJG4IHzWf) (:text |tok)
|b $ %{} :Expr (:at 1732210756581) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210756581) (:by |rJG4IHzWf) (:text |:value)
|b $ %{} :Leaf (:at 1732210756581) (:by |rJG4IHzWf) (:text |chunk)
|T $ %{} :Expr (:at 1535106725916) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |cond)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |:removed)
|j $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |chunk)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|L $ %{} :Leaf (:at 1732210723534) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |{})
|X $ %{} :Expr (:at 1732210747959) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210747959) (:by |rJG4IHzWf) (:text |:inner-text)
|b $ %{} :Leaf (:at 1732210882238) (:by |rJG4IHzWf) (:text |tok)
|b $ %{} :Expr (:at 1700672556674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672559269) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1732210211752) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210214653) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1700672560800) (:by |rJG4IHzWf) (:text |style-line)
|X $ %{} :Leaf (:at 1732210599657) (:by |rJG4IHzWf) (:text |style-removed)
|b $ %{} :Expr (:at 1732210252240) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210252963) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Leaf (:at 1732210254797) (:by |rJG4IHzWf) (:text |by-word?)
|T $ %{} :Leaf (:at 1732210229397) (:by |rJG4IHzWf) (:text |style-word-mode)
|v $ %{} :Expr (:at 1563644039592) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563644039592) (:by |rJG4IHzWf) (:text |:title)
|j $ %{} :Expr (:at 1563644039592) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026893845) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Leaf (:at 1629026902799) (:by |rJG4IHzWf) (:text "|\"Removed ")
|n $ %{} :Expr (:at 1629026903840) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026903840) (:by |rJG4IHzWf) (:text |:count)
|j $ %{} :Leaf (:at 1629026903840) (:by |rJG4IHzWf) (:text |chunk)
|r $ %{} :Leaf (:at 1732211038666) (:by |rJG4IHzWf) (:text "|\" chunks")
|r $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |:added)
|j $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |chunk)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|L $ %{} :Leaf (:at 1732210725923) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |{})
|X $ %{} :Expr (:at 1732210745191) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210745191) (:by |rJG4IHzWf) (:text |:inner-text)
|b $ %{} :Leaf (:at 1732210883289) (:by |rJG4IHzWf) (:text |tok)
|b $ %{} :Expr (:at 1700672568401) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672568401) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1732210259457) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210261987) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1732210264446) (:by |rJG4IHzWf) (:text |style-line)
|X $ %{} :Leaf (:at 1732210613030) (:by |rJG4IHzWf) (:text |style-added)
|b $ %{} :Expr (:at 1732210262831) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210262831) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Leaf (:at 1732210262831) (:by |rJG4IHzWf) (:text |by-word?)
|h $ %{} :Leaf (:at 1732210262831) (:by |rJG4IHzWf) (:text |style-word-mode)
|v $ %{} :Expr (:at 1563643934781) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643936994) (:by |rJG4IHzWf) (:text |:title)
|j $ %{} :Expr (:at 1563643940607) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629026907866) (:by |rJG4IHzWf) (:text |str)
|T $ %{} :Leaf (:at 1629026917021) (:by |rJG4IHzWf) (:text "|\"Added ")
|b $ %{} :Expr (:at 1629026917960) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026917960) (:by |rJG4IHzWf) (:text |:count)
|j $ %{} :Leaf (:at 1629026917960) (:by |rJG4IHzWf) (:text |chunk)
|j $ %{} :Leaf (:at 1732211040709) (:by |rJG4IHzWf) (:text "|\" chunks")
|v $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210730470) (:by |rJG4IHzWf) (:text |true)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|L $ %{} :Leaf (:at 1732210728661) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1534956208010) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956208010) (:by |rJG4IHzWf) (:text |{})
|X $ %{} :Expr (:at 1732210740415) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210740415) (:by |rJG4IHzWf) (:text |:inner-text)
|b $ %{} :Leaf (:at 1732210884298) (:by |rJG4IHzWf) (:text |tok)
|b $ %{} :Expr (:at 1700672574735) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672574735) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1732210266619) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210272309) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1700672574735) (:by |rJG4IHzWf) (:text |style-line)
|X $ %{} :Leaf (:at 1732210630222) (:by |rJG4IHzWf) (:text |style-no-change)
|b $ %{} :Expr (:at 1732210273465) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210273465) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Leaf (:at 1732210273465) (:by |rJG4IHzWf) (:text |by-word?)
|h $ %{} :Leaf (:at 1732210273465) (:by |rJG4IHzWf) (:text |style-word-mode)
|v $ %{} :Expr (:at 1563644045394) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732211020417) (:by |rJG4IHzWf) (:text |;)
|T $ %{} :Leaf (:at 1563644045394) (:by |rJG4IHzWf) (:text |:title)
|j $ %{} :Expr (:at 1563644045394) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026923480) (:by |rJG4IHzWf) (:text |str)
|b $ %{} :Expr (:at 1629026930320) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026930320) (:by |rJG4IHzWf) (:text |:count)
|j $ %{} :Leaf (:at 1629026930320) (:by |rJG4IHzWf) (:text |chunk)
|j $ %{} :Leaf (:at 1732211041598) (:by |rJG4IHzWf) (:text "|\" chunks reversed")
|comp-divider $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1534822606655) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822608306) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1534822606655) (:by |rJG4IHzWf) (:text |comp-divider)
|r $ %{} :Expr (:at 1534822606655) (:by |rJG4IHzWf)
:data $ {}
|v $ %{} :Expr (:at 1534822610282) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822610705) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1534822610968) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822611344) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1534822612028) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822613013) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1534822613254) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822613562) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1534822617617) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822618477) (:by |rJG4IHzWf) (:text |:width)
|j $ %{} :Leaf (:at 1534822619066) (:by |rJG4IHzWf) (:text |1)
|v $ %{} :Expr (:at 1534822619978) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822624906) (:by |rJG4IHzWf) (:text |:background-color)
|j $ %{} :Expr (:at 1534822625147) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822625441) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1534822625713) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1534822625927) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1534822634189) (:by |rJG4IHzWf) (:text |94)
|comp-toolbar $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106111770) (:by |rJG4IHzWf) (:text |defcomp)
|j $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |comp-toolbar)
|n $ %{} :Expr (:at 1535106112536) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1563643229196) (:by |rJG4IHzWf) (:text |show-result?)
|T $ %{} :Leaf (:at 1535106118234) (:by |rJG4IHzWf) (:text |sorted?)
|b $ %{} :Leaf (:at 1732210136650) (:by |rJG4IHzWf) (:text |by-word?)
|r $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672476804) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672475503) (:by |rJG4IHzWf) (:text |str-spaced)
|j $ %{} :Leaf (:at 1700672479843) (:by |rJG4IHzWf) (:text |css/row-parted)
|n $ %{} :Leaf (:at 1700672484831) (:by |rJG4IHzWf) (:text |style-toolbar)
|r $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643518715) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Leaf (:at 1563643526609) (:by |rJG4IHzWf) (:text "|\"Diff View")
|r $ %{} :Expr (:at 1563643548685) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643549116) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1563643549329) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643552061) (:by |rJG4IHzWf) (:text |:color)
|j $ %{} :Expr (:at 1563643552297) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643552706) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1563643554370) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1563643554627) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1563643560485) (:by |rJG4IHzWf) (:text |40)
|r $ %{} :Expr (:at 1563643562976) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1563643564528) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1563643566485) (:by |rJG4IHzWf) (:text |ui/font-fancy)
|v $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672493617) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |merge)
|j $ %{} :Leaf (:at 1700672496461) (:by |rJG4IHzWf) (:text |css/row-center)
|sD $ %{} :Expr (:at 1535106341744) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106347872) (:by |rJG4IHzWf) (:text |comp-checked)
|j $ %{} :Leaf (:at 1563643233014) (:by |rJG4IHzWf) (:text |show-result?)
|r $ %{} :Leaf (:at 1563643370889) (:by |rJG4IHzWf) (:text "|\"Result?(⌘ e)")
|v $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Expr (:at 1688621059610) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1688621060172) (:by |rJG4IHzWf) (:text |::)
|T $ %{} :Leaf (:at 1563643238729) (:by |rJG4IHzWf) (:text |:toggle-result)
|sT $ %{} :Expr (:at 1535106195538) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106196152) (:by |rJG4IHzWf) (:text |=<)
|b $ %{} :Leaf (:at 1535106203694) (:by |rJG4IHzWf) (:text |16)
|j $ %{} :Leaf (:at 1535106197762) (:by |rJG4IHzWf) (:text |nil)
|x $ %{} :Expr (:at 1535106341744) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106347872) (:by |rJG4IHzWf) (:text |comp-checked)
|j $ %{} :Leaf (:at 1535106351940) (:by |rJG4IHzWf) (:text |sorted?)
|r $ %{} :Leaf (:at 1535106358276) (:by |rJG4IHzWf) (:text "|\"Sorted")
|v $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1535106110442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Expr (:at 1688621062227) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1688621062815) (:by |rJG4IHzWf) (:text |::)
|T $ %{} :Leaf (:at 1535106110442) (:by |rJG4IHzWf) (:text |:toggle-sorted)
|y $ %{} :Expr (:at 1565369303222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369303709) (:by |rJG4IHzWf) (:text |=<)
|j $ %{} :Leaf (:at 1565369304857) (:by |rJG4IHzWf) (:text |16)
|r $ %{} :Leaf (:at 1565369305710) (:by |rJG4IHzWf) (:text |nil)
|y/ $ %{} :Expr (:at 1732210144945) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210144945) (:by |rJG4IHzWf) (:text |comp-checked)
|b $ %{} :Leaf (:at 1732210152191) (:by |rJG4IHzWf) (:text |by-word?)
|h $ %{} :Leaf (:at 1732210148741) (:by |rJG4IHzWf) (:text "|\"ByWord")
|l $ %{} :Expr (:at 1732210144945) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210144945) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1732210144945) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210144945) (:by |rJG4IHzWf) (:text |e)
|b $ %{} :Leaf (:at 1732210144945) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Expr (:at 1732210144945) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210144945) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Expr (:at 1732210144945) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210144945) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1732210154245) (:by |rJG4IHzWf) (:text |:toggle-word)
|y1 $ %{} :Expr (:at 1565369303222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369303709) (:by |rJG4IHzWf) (:text |=<)
|j $ %{} :Leaf (:at 1565369304857) (:by |rJG4IHzWf) (:text |16)
|r $ %{} :Leaf (:at 1565369305710) (:by |rJG4IHzWf) (:text |nil)
|y5 $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |a)
|j $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672520012) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Leaf (:at 1700672522037) (:by |rJG4IHzWf) (:text |css/link)
|r $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |:inner-text)
|j $ %{} :Leaf (:at 1569087226573) (:by |rJG4IHzWf) (:text "|\"Swap")
|v $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |:title)
|j $ %{} :Leaf (:at 1569087211900) (:by |rJG4IHzWf) (:text "|\"⌘ i")
|x $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |:on-click)
|j $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1569087206785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569087206785) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Expr (:at 1688621066508) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1688621067085) (:by |rJG4IHzWf) (:text |::)
|T $ %{} :Leaf (:at 1569087218242) (:by |rJG4IHzWf) (:text |:swap-text)
|yD $ %{} :Expr (:at 1565369303222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369303709) (:by |rJG4IHzWf) (:text |=<)
|j $ %{} :Leaf (:at 1565369304857) (:by |rJG4IHzWf) (:text |16)
|r $ %{} :Leaf (:at 1565369305710) (:by |rJG4IHzWf) (:text |nil)
|yT $ %{} :Expr (:at 1565369306214) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369308358) (:by |rJG4IHzWf) (:text |a)
|j $ %{} :Expr (:at 1565369308611) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369309786) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1700672524313) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672524313) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1700672524313) (:by |rJG4IHzWf) (:text |css/link)
|r $ %{} :Expr (:at 1565369316864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369318889) (:by |rJG4IHzWf) (:text |:inner-text)
|j $ %{} :Leaf (:at 1565369320889) (:by |rJG4IHzWf) (:text "|\"Clear")
|t $ %{} :Expr (:at 1565369525521) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369527230) (:by |rJG4IHzWf) (:text |:title)
|j $ %{} :Leaf (:at 1565369538637) (:by |rJG4IHzWf) (:text "|\"⌘ k")
|v $ %{} :Expr (:at 1565369323249) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369327764) (:by |rJG4IHzWf) (:text |:on-click)
|j $ %{} :Expr (:at 1565369328056) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369328306) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1565369329256) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369328699) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1565369330505) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1565369331667) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1565369332336) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Expr (:at 1688621068723) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1688621069344) (:by |rJG4IHzWf) (:text |::)
|T $ %{} :Leaf (:at 1565369334130) (:by |rJG4IHzWf) (:text |:clear-text)
|sort-by-line $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1534956813598) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956813598) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1534956813598) (:by |rJG4IHzWf) (:text |sort-by-line)
|r $ %{} :Expr (:at 1534956813598) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534956817023) (:by |rJG4IHzWf) (:text |text)
|v $ %{} :Expr (:at 1534956844879) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629026667936) (:by |rJG4IHzWf) (:text |->)
|H $ %{} :Leaf (:at 1534956861349) (:by |rJG4IHzWf) (:text |text)
|L $ %{} :Expr (:at 1534956847120) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026669849) (:by |rJG4IHzWf) (:text |.split-lines)
|P $ %{} :Expr (:at 1534956863477) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026698140) (:by |rJG4IHzWf) (:text |.sort-by)
|j $ %{} :Leaf (:at 1629026701566) (:by |rJG4IHzWf) (:text |identity)
|T $ %{} :Expr (:at 1534956817760) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629026685784) (:by |rJG4IHzWf) (:text |.join-str)
|j $ %{} :Leaf (:at 1629026688227) (:by |rJG4IHzWf) (:text |&newline)
|style-added $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1732210613510) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210614697) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1732210613510) (:by |rJG4IHzWf) (:text |style-added)
|h $ %{} :Expr (:at 1732210613510) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210616338) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1732210616682) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210617438) (:by |rJG4IHzWf) (:text "|\"&")
|b $ %{} :Expr (:at 1732210617949) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210617949) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1732210617949) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210617949) (:by |rJG4IHzWf) (:text |:background-color)
|b $ %{} :Expr (:at 1732210617949) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210617949) (:by |rJG4IHzWf) (:text |hsl)
|b $ %{} :Leaf (:at 1732210617949) (:by |rJG4IHzWf) (:text |200)
|h $ %{} :Leaf (:at 1732210617949) (:by |rJG4IHzWf) (:text |100)
|l $ %{} :Leaf (:at 1732210617949) (:by |rJG4IHzWf) (:text |92)
|style-line $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1534785244973) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672583048) (:by |rJG4IHzWf) (:text |defstyle)
|j $ %{} :Leaf (:at 1534785244973) (:by |rJG4IHzWf) (:text |style-line)
|r $ %{} :Expr (:at 1700672583830) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700672585361) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1700672585839) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700672587507) (:by |rJG4IHzWf) (:text "|\"&")
|T $ %{} :Expr (:at 1534785244973) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785247288) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1534785247609) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785250644) (:by |rJG4IHzWf) (:text |:line-height)
|j $ %{} :Leaf (:at 1732210794665) (:by |rJG4IHzWf) (:text "|\"24px")
|n $ %{} :Expr (:at 1534785633977) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785638530) (:by |rJG4IHzWf) (:text |:font-size)
|j $ %{} :Leaf (:at 1534785639586) (:by |rJG4IHzWf) (:text |12)
|r $ %{} :Expr (:at 1534785256209) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785260130) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1534785263161) (:by |rJG4IHzWf) (:text |ui/font-code)
|v $ %{} :Expr (:at 1534785341889) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785342834) (:by |rJG4IHzWf) (:text |:margin)
|j $ %{} :Leaf (:at 1534785343447) (:by |rJG4IHzWf) (:text |0)
|x $ %{} :Expr (:at 1534785347809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785348886) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1534785350470) (:by |rJG4IHzWf) (:text "|\"0 8px")
|y $ %{} :Expr (:at 1535105773758) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535105688835) (:by |rJG4IHzWf) (:text |:white-space)
|j $ %{} :Leaf (:at 1535105703545) (:by |rJG4IHzWf) (:text |:pre)
|yT $ %{} :Expr (:at 1535106633127) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1535106637555) (:by |rJG4IHzWf) (:text |:overflow-x)
|j $ %{} :Leaf (:at 1535106638862) (:by |rJG4IHzWf) (:text |:auto)
|style-no-change $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1732210630710) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210631875) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1732210630710) (:by |rJG4IHzWf) (:text |style-no-change)
|h $ %{} :Expr (:at 1732210633072) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210633576) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1732210634181) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210635779) (:by |rJG4IHzWf) (:text "|\"&")
|T $ %{} :Expr (:at 1732210632806) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210632806) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1732210632806) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210632806) (:by |rJG4IHzWf) (:text |:color)
|b $ %{} :Expr (:at 1732210632806) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210632806) (:by |rJG4IHzWf) (:text |hsl)
|b $ %{} :Leaf (:at 1732210632806) (:by |rJG4IHzWf) (:text |0)
|h $ %{} :Leaf (:at 1732210632806) (:by |rJG4IHzWf) (:text |0)
|l $ %{} :Leaf (:at 1732210632806) (:by |rJG4IHzWf) (:text |80)
|h $ %{} :Expr (:at 1732210632806) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210632806) (:by |rJG4IHzWf) (:text |:line-height)
|b $ %{} :Leaf (:at 1732210632806) (:by |rJG4IHzWf) (:text "|\"15px")
|style-removed $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1732210581561) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210592519) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1732210581561) (:by |rJG4IHzWf) (:text |style-removed)
|h $ %{} :Expr (:at 1732210583849) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210587618) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1732210588130) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1732210589306) (:by |rJG4IHzWf) (:text "|\"&")
|T $ %{} :Expr (:at 1732210583355) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210583355) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1732210583355) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210583355) (:by |rJG4IHzWf) (:text |:background-color)
|b $ %{} :Expr (:at 1732210583355) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210583355) (:by |rJG4IHzWf) (:text |hsl)
|b $ %{} :Leaf (:at 1732210583355) (:by |rJG4IHzWf) (:text |0)
|h $ %{} :Leaf (:at 1732210583355) (:by |rJG4IHzWf) (:text |100)
|l $ %{} :Leaf (:at 1732210583355) (:by |rJG4IHzWf) (:text |78)
|h $ %{} :Expr (:at 1732210583355) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1732210583355) (:by |rJG4IHzWf) (:text |:color)
|b $ %{} :Leaf (:at 1732210583355) (:by |rJG4IHzWf) (:text |:white)
|style-text $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1534785390406) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700672439152) (:by |rJG4IHzWf) (:text |defstyle)
|j $ %{} :Leaf (:at 1534785390406) (:by |rJG4IHzWf) (:text |style-text)
|r $ %{} :Expr (:at 1700672439954) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700672440373) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1700672441023) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700672442124) (:by |rJG4IHzWf) (:text "|\"&")
|T $ %{} :Expr (:at 1534785390406) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785393682) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1534785395408) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785397148) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1534785400296) (:by |rJG4IHzWf) (:text |ui/font-code)
|r $ %{} :Expr (:at 1534785403620) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785406534) (:by |rJG4IHzWf) (:text |:line-height)
|j $ %{} :Leaf (:at 1705477049521) (:by |rJG4IHzWf) (:text "|\"20px")
|t $ %{} :Expr (:at 1534822510094) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822513161) (:by |rJG4IHzWf) (:text |:font-size)
|j $ %{} :Leaf (:at 1534822903596) (:by |rJG4IHzWf) (:text |12)
|v $ %{} :Expr (:at 1534785473488) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785475442) (:by |rJG4IHzWf) (:text |:white-space)
|j $ %{} :Leaf (:at 1534785496741) (:by |rJG4IHzWf) (:text |:pre)
|x $ %{} :Expr (:at 1534785481460) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534785484243) (:by |rJG4IHzWf) (:text |:overflow)
|j $ %{} :Leaf (:at 1534785485135) (:by |rJG4IHzWf) (:text |:auto)
|y $ %{} :Expr (:at 1534822587971) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822590121) (:by |rJG4IHzWf) (:text |:border)
|j $ %{} :Leaf (:at 1534822592616) (:by |rJG4IHzWf) (:text |:none)
|yT $ %{} :Expr (:at 1534822654229) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534822656998) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1534822665428) (:by |rJG4IHzWf) (:text "|\"8px 8px 80px 8px")
|yj $ %{} :Expr (:at 1534823107123) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1534823108296) (:by |rJG4IHzWf) (:text |:resize)
|j $ %{} :Leaf (:at 1534823109551) (:by |rJG4IHzWf) (:text |:none)