-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcalcit.cirru
2179 lines (2178 loc) · 193 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:users $ {}
|rJG4IHzWf $ {} (:id |rJG4IHzWf) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:ns $ {} (:type :expr) (:id |H1o_Y9ar-) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:id |rJgjuY5pSb) (:by |root) (:at 1499755354983)
|j $ {} (:type :leaf) (:text |app.comp.container) (:id |HybjuF9pS-) (:by |root) (:at 1499755354983)
|v $ {} (:type :expr) (:id |SJkgodY9TSW) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:id |H1egs_K9pSZ) (:by |root) (:at 1499755354983)
|yr $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516208242324) (:id |SJl5OebpNM)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516208243101) (:text |[]) (:id |SJl5OebpNMleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1549593967522) (:text "|\"highlight.js") (:id |rkWi_lb6Nz)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516208247220) (:text |:as) (:id |HyN0ueb6Ez)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516208248422) (:text |hljs) (:id |ryZJtx-6Nf)
|yT $ {} (:type :expr) (:id |SynTHYbzf) (:by |root) (:at 1513358787560)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SynTHYbzfleaf) (:by |root) (:at 1513358789041)
|j $ {} (:type :leaf) (:text |app.theme) (:id |BkMTpSYbGz) (:by |root) (:at 1513358791107)
|r $ {} (:type :leaf) (:text |:as) (:id |S1NyArtWzz) (:by |root) (:at 1513358791779)
|v $ {} (:type :leaf) (:text |theme) (:id |SkflCrKbzf) (:by |root) (:at 1513358792449)
|j $ {} (:type :expr) (:id |ryWeiOtqTBW) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |S1Mgj_K9TBZ) (:by |root) (:at 1499755354983)
|j $ {} (:type :leaf) (:text |hsl.core) (:id |HkQgiutcTBW) (:by |root) (:at 1499755354983)
|r $ {} (:type :leaf) (:text |:refer) (:id |HkVxodtqTrW) (:by |root) (:at 1499755354983)
|v $ {} (:type :expr) (:id |SyHeiOYcTr-) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |BkLgidF56rb) (:by |root) (:at 1499755354983)
|j $ {} (:type :leaf) (:text |hsl) (:id |SkPxidY56H-) (:by |root) (:at 1499755354983)
|x $ {} (:type :expr) (:id |Sy4-oOt96SZ) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |HJH-s_t96rb) (:by |root) (:at 1499755354983)
|j $ {} (:type :leaf) (:text |respo.comp.space) (:id |SyUbi_t5pH-) (:by |root) (:at 1499755354983)
|r $ {} (:type :leaf) (:text |:refer) (:id |S1v-s_KcTHZ) (:by |root) (:at 1499755354983)
|v $ {} (:type :expr) (:id |rJd-iOKc6rZ) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |rkFWouKcTr-) (:by |root) (:at 1499755354983)
|j $ {} (:type :leaf) (:text |=<) (:id |Hy5WjdY5TS-) (:by |root) (:at 1499755354983)
|v $ {} (:type :expr) (:id |SJgC3cjTTW) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |r1BodKcprZ) (:by |root) (:at 1499755354983)
|j $ {} (:type :leaf) (:text |respo.core) (:id |ryLoOY5pHb) (:by |root) (:at 1541238722985)
|r $ {} (:type :leaf) (:text |:refer) (:id |SJDjOYqaHW) (:by |root) (:at 1508946162679)
|v $ {} (:type :expr) (:id |H1do_K5aS-) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |S1KidKq6r-) (:by |root) (:at 1499755354983)
|n $ {} (:type :leaf) (:text |>>) (:id |BJlz9oM90-) (:by |rJG4IHzWf) (:at 1588003593861)
|yr $ {} (:type :leaf) (:by |root) (:at 1531325938009) (:text |meta') (:id |HyeKgAjQ7X)
|yT $ {} (:type :leaf) (:by |root) (:at 1518685975862) (:text |img) (:id |rJlJ710zPz)
|j $ {} (:type :leaf) (:text |defcomp) (:id |B1cs_Fq6B-) (:by |root) (:at 1499755354983)
|x $ {} (:type :leaf) (:text |button) (:id |BkpiOFq6S-) (:by |root) (:at 1499755354983)
|v $ {} (:type :leaf) (:text |div) (:id |SJ2oOY96S-) (:by |root) (:at 1499755354983)
|yj $ {} (:type :leaf) (:by |root) (:at 1520740452052) (:text |style) (:id |HkxsP_XfKM)
|xj $ {} (:type :leaf) (:text |a) (:id |HkfIIFWGz) (:by |root) (:at 1513358922001)
|xb $ {} (:type :leaf) (:text |pre) (:id |Hklb-p7fMG) (:by |root) (:at 1513401593678)
|r $ {} (:type :leaf) (:text |<>) (:id |SJsiOY5pr-) (:by |root) (:at 1499755354983)
|y $ {} (:type :leaf) (:text |span) (:id |r1Aj_YqaB-) (:by |root) (:at 1499755354983)
|xT $ {} (:type :leaf) (:text |textarea) (:id |BJtB8rGbG) (:by |rJG4IHzWf) (:at 1512359490531)
|yj $ {} (:type :expr) (:id |Bkld5tXMGf) (:by |root) (:at 1513400720429)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |Bkld5tXMGfleaf) (:by |root) (:at 1513400720845)
|j $ {} (:type :leaf) (:text |app.style) (:id |SJWYct7zfM) (:by |root) (:at 1513400722256)
|r $ {} (:type :leaf) (:text |:as) (:id |SkSqcKmzGf) (:by |root) (:at 1513400722797)
|v $ {} (:type :leaf) (:text |style) (:id |ByMs9KmMzG) (:by |root) (:at 1513400723737)
|yx $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1534305789872) (:id |A1C5KBkHlv)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534305790196) (:text |[]) (:id |A1C5KBkHlvleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1549593968859) (:text |shadow.resource) (:id |wP1jZ3m4E1)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534305794471) (:text |:refer) (:id |5hr7cpRU8y)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1534305794684) (:id |jztaPxDbjT)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534305794927) (:text |[]) (:id |yHwqxSrK8)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1549593971977) (:text |inline) (:id |GA5ude-O2D)
|r $ {} (:type :expr) (:id |Sydli_Ycarb) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |HJtgouK5pBZ) (:by |root) (:at 1499755354983)
|j $ {} (:type :leaf) (:text |respo-ui.core) (:id |HJ5eouFqaHb) (:by |root) (:at 1517992530537)
|r $ {} (:type :leaf) (:text |:as) (:id |HJoxsuF5pr-) (:by |root) (:at 1499755354983)
|v $ {} (:type :leaf) (:text |ui) (:id |r1hgjuY5TH-) (:by |root) (:at 1499755354983)
|y $ {} (:type :expr) (:id |SkACcYv2-) (:by |root) (:at 1507461845717)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SkACcYv2-leaf) (:by |root) (:at 1507461846175)
|j $ {} (:type :leaf) (:text |reel.comp.reel) (:id |HJfRR5KPh-) (:by |root) (:at 1507461855480)
|r $ {} (:type :leaf) (:text |:refer) (:id |ryOyjtwnb) (:by |root) (:at 1507461856264)
|v $ {} (:type :expr) (:id |BJwOyitPhW) (:by |root) (:at 1507461856484)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |HJ8u1otP3W) (:by |root) (:at 1507461856706)
|j $ {} (:type :leaf) (:text |comp-reel) (:id |r1bt1sKwhZ) (:by |root) (:at 1507461858342)
|yn $ {} (:type :expr) (:by |root) (:at 1520739988628) (:id |S1T5LmzFM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520739989339) (:text |[]) (:id |S1T5LmzFMleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1520739993596) (:text |respo-md.comp.md) (:id |BJGpq87ftG)
|r $ {} (:type :leaf) (:by |root) (:at 1520739994335) (:text |:refer) (:id |HylGi87MYG)
|v $ {} (:type :expr) (:by |root) (:at 1520739994577) (:id |HJmjIQMKz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520739994738) (:text |[]) (:id |SyPzsIQfFG)
|j $ {} (:type :leaf) (:by |root) (:at 1520739997238) (:text |comp-md-block) (:id |BJGmiL7GKG)
|yv $ {} (:type :expr) (:by |root) (:at 1523983780338) (:id |rJWnjHjQnM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523983780752) (:text |[]) (:id |rJWnjHjQnMleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1545843397527) (:text |app.config) (:id |By-6jBiXhM)
|r $ {} (:type :leaf) (:by |root) (:at 1523983786221) (:text |:refer) (:id |r1ZnHo73f)
|v $ {} (:type :expr) (:by |root) (:at 1523983786424) (:id |HyPfhSo7nf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523983787229) (:text |[]) (:id |rJ8fhSiX2z)
|j $ {} (:type :leaf) (:by |root) (:at 1523983788268) (:text |dev?) (:id |rkZX3rjQ2f)
:defs $ {}
|render-header $ {} (:type :expr) (:id |rJx6BhmzfG) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |H1-aB2QffM) (:by |root) (:at 1513401454111)
|j $ {} (:type :leaf) (:text |render-header) (:id |rkGTHn7GMf) (:by |root) (:at 1513401412900)
|n $ {} (:type :expr) (:id |Skx_dnQGzM) (:by |root) (:at 1513401456333) (:data $ {})
|r $ {} (:type :expr) (:id |ByQ6B2XGGG) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |BJVTrhmMMG) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |rkSarhmGMG) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |S18aH3XMMz) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |r1PaH3QMzG) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |Byd6S2mGMf) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |BkKar3mGGz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |merge) (:id |Hy9Trhmzfz) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |ui/row-parted) (:id |BksaShXzMz) (:by |root) (:at 1513401412900)
|r $ {} (:type :expr) (:id |Sk2TH2mffz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |B16aSnQMGf) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |Bk0pH2Qfzz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:id |Bkyx6B2mMMG) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |theme/dark) (:id |Bkeepr2mGMz) (:by |root) (:at 1513401412900)
|r $ {} (:type :expr) (:id |H1WgTHhmMzf) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:id |Byfe6B3XfzM) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |:white) (:id |ByXepH37MfG) (:by |root) (:at 1513401412900)
|v $ {} (:type :expr) (:id |S1VepH2mMzz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:height) (:id |BJBxpBh7Gfz) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |60) (:id |S1Ix6r2XzzM) (:by |root) (:at 1513401412900)
|x $ {} (:type :expr) (:id |ryDxTBh7fGM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:id |r1Oxpr2mMfz) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text "||0 16px") (:id |BJtxaShQfGz) (:by |root) (:at 1513401412900)
|r $ {} (:type :expr) (:id |By9lpBnQffz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |S1jl6rh7zff) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |Sk3gpS37fzM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SJ6gprhmMMf) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |BJAeprn7Mff) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |BJJ-ar3QfGf) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |ui/row-center) (:id |HJeW6BhmzfM) (:by |root) (:at 1513401412900)
|v $ {} (:type :expr) (:id |Hy3GpS37ffz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |r1TMTSnXzfz) (:by |root) (:at 1513401412900)
|w $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516207187787) (:id |H1jVkXhLM)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207189699) (:text |=<) (:id |HJn83gaVzleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207252640) (:text |32) (:id |rJ1v2epEf)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207191683) (:text |nil) (:id |SJGyv2epEG)
|s $ {} (:type :expr) (:id |S12t3gpVG) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |ryWQar3mfzz) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |SJz76rn7GzM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SymQaShQfMG) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |SyNmTrn7zfM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:href) (:id |r1HXaHhmfGM) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text ||https://code.thheller.com/) (:id |SJUQpHhQGfz) (:by |rJG4IHzWf) (:at 1516207243156)
|r $ {} (:type :expr) (:id |B1Ppl3777) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |By_mTSnmzMf) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |S1F7TSnmGff) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HkqmTrhQGMG) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |Bks7TH37GMf) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:id |S1nXaBhQfMz) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |:white) (:id |SyTQpB2QGMM) (:by |root) (:at 1513401412900)
|r $ {} (:type :expr) (:id |rkCXpr2QfMz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |BJyVaS27GzM) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text ||Blogs) (:id |HyxEpB3mGGG) (:by |rJG4IHzWf) (:at 1516207245882)
|yT $ {} (:type :expr) (:id |rJpqktJFz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |ryWQar3mfzz) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |SJz76rn7GzM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SymQaShQfMG) (:by |root) (:at 1513401412900)
|n $ {} (:type :expr) (:by |root) (:at 1518248195943) (:id |Hy2-W73IM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518248197338) (:text |:href) (:id |Hy2-W73IMleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1531326644160) (:text "|\"https://clojureverse.org/c/projects/shadow-cljs") (:id |Sy0WZ7nLz)
|r $ {} (:type :expr) (:id |S1PmpBhXzfM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |By_mTSnmzMf) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |S1F7TSnmGff) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HkqmTrhQGMG) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |Bks7TH37GMf) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:id |S1nXaBhQfMz) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |:white) (:id |SyTQpB2QGMM) (:by |root) (:at 1513401412900)
|r $ {} (:type :expr) (:id |rkCXpr2QfMz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |BJyVaS27GzM) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text "|\"Forum") (:id |HyxEpB3mGGG) (:by |root) (:at 1531326641669)
|j $ {} (:type :expr) (:id |rJRG6B2mfGM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |rJy76S2XGzM) (:by |root) (:at 1513401412900)
|x $ {} (:type :expr) (:id |HJmVkX28M) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |ryWQar3mfzz) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |SJz76rn7GzM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SymQaShQfMG) (:by |root) (:at 1513401412900)
|n $ {} (:type :expr) (:by |root) (:at 1518248195943) (:id |Hy2-W73IM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518248197338) (:text |:href) (:id |Hy2-W73IMleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1520566183078) (:text ||https://clojurians.slack.com/messages/C6N245JGG/) (:id |Sy0WZ7nLz)
|r $ {} (:type :expr) (:id |S1PmpBhXzfM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |By_mTSnmzMf) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |S1F7TSnmGff) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HkqmTrhQGMG) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |Bks7TH37GMf) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:id |S1nXaBhQfMz) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |:white) (:id |SyTQpB2QGMM) (:by |root) (:at 1513401412900)
|r $ {} (:type :expr) (:id |rkCXpr2QfMz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |BJyVaS27GzM) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text ||Slack) (:id |HyxEpB3mGGG) (:by |root) (:at 1518248203993)
|v $ {} (:type :expr) (:id |S1eHE3xaVM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |ryWQar3mfzz) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |SJz76rn7GzM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SymQaShQfMG) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |SyNmTrn7zfM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:href) (:id |r1HXaHhmfGM) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text ||https://github.com/thheller/shadow-cljs) (:id |SJUQpHhQGfz) (:by |root) (:at 1513401412900)
|r $ {} (:type :expr) (:id |S1PmpBhXzfM) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |By_mTSnmzMf) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |S1F7TSnmGff) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HkqmTrhQGMG) (:by |root) (:at 1513401412900)
|j $ {} (:type :expr) (:id |Bks7TH37GMf) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:id |S1nXaBhQfMz) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text |:white) (:id |SyTQpB2QGMM) (:by |root) (:at 1513401412900)
|r $ {} (:type :expr) (:id |rkCXpr2QfMz) (:by |root) (:at 1513401412900)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |BJyVaS27GzM) (:by |root) (:at 1513401412900)
|j $ {} (:type :leaf) (:text ||GitHub) (:id |HyxEpB3mGGG) (:by |root) (:at 1513401412900)
|t $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516207187787) (:id |HJn83gaVz)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207189699) (:text |=<) (:id |HJn83gaVzleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207252640) (:text |32) (:id |rJ1v2epEf)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207191683) (:text |nil) (:id |SJGyv2epEG)
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516207187787) (:id |S15q1KyYG)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207189699) (:text |=<) (:id |HJn83gaVzleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207252640) (:text |32) (:id |rJ1v2epEf)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207191683) (:text |nil) (:id |SJGyv2epEG)
|comp-date $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109987235) (:id |bAOnDsz4BC)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109989434) (:text |defcomp) (:id |TXuRklJ4wY)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109987235) (:text |comp-date) (:id |WNnlPrEVh0)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109987235) (:id |k3LfAk85qU)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109993113) (:text |date) (:id |GL5gWdMccQ)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109993430) (:id |8MNbOJjjoy)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109994027) (:text |<>) (:id |8MNbOJjjoyleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109996629) (:text |date) (:id |ZpdhDtLRu)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109998842) (:id |tGR0REB09c)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109999201) (:text |{}) (:id |wOsz733DO)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109999446) (:id |SS4xAi0U6F)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551110000947) (:text |:color) (:id |wgfw4tj4oq)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551110001170) (:id |JY-lSFq584)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551110001501) (:text |hsl) (:id |r7N-OBo69a)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551110002323) (:text |0) (:id |Dxttb9hk4)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551110002641) (:text |0) (:id |qFuMZDIyS)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551110058163) (:text |70) (:id |wuV5SCaFbj)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551110040108) (:id |dxJudVyoS)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551110042585) (:text |:font-family) (:id |dxJudVyoSleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551110046317) (:text |ui/font-fancy) (:id |fgygqRmtHm)
|comp-post $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203651413) (:id |hNShYoUmmM)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203653621) (:text |defcomp) (:id |mHZxtuhyML)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203651413) (:text |comp-post) (:id |bn7dvFVmEU)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203651413) (:id |04YttwXnMj)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203656236) (:text |date) (:id |VtqdmDel1)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203657744) (:text |title) (:id |BMVuyUh4Xf)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203658759) (:text |link) (:id |xvHPnu0oi6)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203659384) (:id |0FYU5JkiWZ)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203660425) (:text |div) (:id |0FYU5JkiWZleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203660621) (:id |3rjSeS7Vs)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203660948) (:text |{}) (:id |ozwpUZ1jvd)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203668188) (:id |lkJVNQnFW2)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203668188) (:text |comp-date) (:id |s56JOL8m8L)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203695211) (:text |date) (:id |of5wY-SGU8)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203677383) (:id |teTTD7wX_Z)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203677383) (:text |=<) (:id |KLq4TAW9FD)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203677383) (:text |8) (:id |Q6mhY622mr)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203677383) (:text |nil) (:id |BudQanlbT2)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203685939) (:id |pNffV7EiFX)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203685939) (:text |a) (:id |gBsgL3cwQ3)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203685939) (:id |Py4y4us-xq)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203685939) (:text |{}) (:id |ZNcwPdGCTJ)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203685939) (:id |neW6oGSF-q)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203685939) (:text |:href) (:id |esH4yF77H5)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203689762) (:text |link) (:id |Uwf_A7s6qK)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203685939) (:id |Obrvs8r8tT)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203685939) (:text |:inner-text) (:id |3RQyIQYCwF)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203691805) (:text |title) (:id |9QmvPy6fVJ)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203685939) (:id |0soadCcTeq)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203685939) (:text |:target) (:id |MCbYgJTOFW)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203685939) (:text "|\"_blank") (:id |_Lrj16NyI9)
|render-footer $ {} (:type :expr) (:id |Hkgdf1NMzz) (:by |root) (:at 1513402128153)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |rk-_zJEzMf) (:by |root) (:at 1513402128153)
|j $ {} (:type :leaf) (:text |render-footer) (:id |Syf_zkEzzG) (:by |root) (:at 1513402128153)
|r $ {} (:type :expr) (:id |Hy7dGyNzfM) (:by |root) (:at 1513402128153) (:data $ {})
|v $ {} (:type :expr) (:id |SJqM1EMfz) (:by |root) (:at 1513402129760)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |SJqM1EMfzleaf) (:by |root) (:at 1513402130540)
|j $ {} (:type :expr) (:id |Sk-sGk4GMG) (:by |root) (:at 1513402130785)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |Sygjz1NMzf) (:by |root) (:at 1513402131105)
|j $ {} (:type :expr) (:id |Syw4J4zzG) (:by |root) (:at 1513402158687)
:data $ {}
|D $ {} (:type :leaf) (:text |:style) (:id |H1lD4kEGMG) (:by |root) (:at 1513402160215)
|T $ {} (:type :expr) (:id |B1FE14GGf) (:by |root) (:at 1513402160819)
:data $ {}
|D $ {} (:type :leaf) (:text |{}) (:id |r1xKEkVfMM) (:by |root) (:at 1513402161522)
|T $ {} (:type :expr) (:id |r1BoG1VzMM) (:by |root) (:at 1513402131287)
:data $ {}
|T $ {} (:type :leaf) (:text |:height) (:id |HyNoGkVzMz) (:by |root) (:at 1513402133082)
|j $ {} (:type :leaf) (:text |240) (:id |B1SaGJ4GMM) (:by |root) (:at 1523984355202)
|j $ {} (:type :expr) (:id |r1gnfvymGf) (:by |root) (:at 1513449235909)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:id |r1gnfvymGfleaf) (:by |root) (:at 1513449239238)
|j $ {} (:type :leaf) (:text |theme/dark) (:id |S1b-mw17zG) (:by |root) (:at 1513449244299)
|r $ {} (:type :expr) (:id |SylF7PJXff) (:by |root) (:at 1513449249503)
:data $ {}
|T $ {} (:type :leaf) (:text |:margin-top) (:id |SylF7PJXffleaf) (:by |root) (:at 1513449251335)
|j $ {} (:type :leaf) (:text |120) (:id |H12XD1QzM) (:by |root) (:at 1513449255058)
|v $ {} (:type :expr) (:id |SyxdUPkQMG) (:by |root) (:at 1513449296325)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:id |SyxdUPkQMGleaf) (:by |root) (:at 1513449298516)
|j $ {} (:type :leaf) (:text |theme/green-dark) (:id |H11Dvk7zf) (:by |root) (:at 1513449319991)
|x $ {} (:type :expr) (:id |rJNPD17MG) (:by |root) (:at 1513449307640)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:id |rJNPD17MGleaf) (:by |root) (:at 1513449308899)
|j $ {} (:type :leaf) (:text |16) (:id |r1NBDPyXMG) (:by |root) (:at 1513449309339)
|v $ {} (:type :expr) (:by |root) (:at 1523984305361) (:id |Hyt3PjQnM)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1523984306116) (:text |div) (:id |Hy53DsmhM)
|L $ {} (:type :expr) (:by |root) (:at 1523984306376) (:id |HyVq2vjQ3f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523984306746) (:text |{}) (:id |S1Qqhwjm2G)
|j $ {} (:type :expr) (:by |root) (:at 1523984310470) (:id |SkfRnDjmhf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523984312078) (:text |:style) (:id |SJbAnPiXhz)
|j $ {} (:type :expr) (:by |root) (:at 1523984312293) (:id |BkrgawoQ3f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523984314213) (:text |{}) (:id |HkVe6woQ3z)
|j $ {} (:type :expr) (:by |root) (:at 1523984314533) (:id |H1m6viQnz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523984321633) (:text |:max-width) (:id |SJMzpPjQnG)
|j $ {} (:type :leaf) (:by |root) (:at 1523984318581) (:text |800) (:id |BkNTDs7nz)
|r $ {} (:type :expr) (:by |root) (:at 1523984322483) (:id |BJQcawomhG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523984323894) (:text |:margin) (:id |BJQcawomhGleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523984325564) (:text |:auto) (:id |rJapDjXnG)
|v $ {} (:type :expr) (:by |root) (:at 1523984330705) (:id |Bk70wiQhz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523984331607) (:text |:color) (:id |Bk70wiQhzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523984332417) (:text |:white) (:id |BJl40vj73z)
|P $ {} (:type :expr) (:id |r1C2Pi7hM) (:by |root) (:at 1513449271682)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |SyeHDkmzzleaf) (:by |root) (:at 1513449272249)
|j $ {} (:type :leaf) (:text "|\"Site built with shadow-cljs and ") (:id |rJfSvJXzG) (:by |rJG4IHzWf) (:at 1569517604405)
|Q $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517421231) (:id |yT5945JX_J)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517421697) (:text |a) (:id |yT5945JX_Jleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517422283) (:id |FVOvQgJJ51)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517422677) (:text |{}) (:id |s_Ix-hWvEZ)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517423005) (:id |fthVFEIA88)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517423787) (:text |:href) (:id |uYpjcm_yUi)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517430646) (:text "|\"http://respo-mvc.org") (:id |qlp7gMEslT)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517433996) (:id |BRofpDu1J)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517436885) (:text |:inner-text) (:id |BRofpDu1Jleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517438650) (:text "|\"Respo") (:id |_yc4NriqPC)
|t $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517540196) (:id |k0Jeli0TN)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517541432) (:text |:target) (:id |k0Jeli0TNleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517543203) (:text "|\"_blank") (:id |YMGkrvRGO)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517526840) (:id |kEsID66II)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517528340) (:text |:style) (:id |kEsID66IIleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517528553) (:id |KR6RPs5fT)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517528946) (:text |{}) (:id |yprO7Fs88m)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517529234) (:id |O5ypfx1xrb)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517529974) (:text |:color) (:id |e5HBsRX4uD)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517530692) (:text |:white) (:id |rHuQNBiEaH)
|QT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517444079) (:id |Tvpn6fsUFN)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517444490) (:text |<>) (:id |Tvpn6fsUFNleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569518018916) (:text "|\". Contribute content at ") (:id |05bK7fxRi)
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516208962311) (:id |Hk9BX-p4z)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516208963167) (:text |a) (:id |Hk9BX-p4zleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516208969697) (:id |BklfL7b6NG)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516208970038) (:text |{}) (:id |ByMIXbTVG)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516208971294) (:id |HylQLXZ64f)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516208972127) (:text |:href) (:id |S1XIXbpEM)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569518007529) (:text "|\"https://github.com/shadow-cljs/shadow-cljs.org") (:id |ryrI7-pEM)
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517578360) (:id |7tOKKzeGTc)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517581234) (:text |:inner-text) (:id |7tOKKzeGTcleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517582730) (:text "|\"shadow-cljs/shadow-cljs.org") (:id |Bq8i4MaV0R)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516209007330) (:id |SkDumWaVG)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516209008358) (:text |:style) (:id |HJxSum-aVM)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516209008723) (:id |SJtOQbaEz)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516209009168) (:text |{}) (:id |ryBduXWaNM)
|j $ {} (:type :expr) (:by |root) (:at 1523984342829) (:id |r1yy_oX3M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523984343516) (:text |:color) (:id |Hk60wsQ3M)
|j $ {} (:type :leaf) (:by |root) (:at 1523984345206) (:text |:white) (:id |rkekOiXhM)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1569517988062) (:id |NH_PkuW4zT)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517988062) (:text |<>) (:id |nKoNS7WGCN)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1569517989576) (:text "|\".") (:id |ZLIihkWh-K)
|comp-container $ {} (:type :expr) (:id |BJ2WiOF9pBW) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |defcomp) (:id |Hy6-sOYqaSb) (:by |root) (:at 1499755354983)
|j $ {} (:type :leaf) (:text |comp-container) (:id |HyC-jOFq6r-) (:by |root) (:at 1499755354983)
|r $ {} (:type :expr) (:id |H1yfo_t9aB-) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |reel) (:id |r1gMj_KqTSZ) (:by |root) (:at 1507461830530)
|v $ {} (:type :expr) (:id |r1-eRcYv3-) (:by |root) (:at 1507461832154)
:data $ {}
|D $ {} (:type :leaf) (:text |let) (:id |SkGx0cFPh-) (:by |root) (:at 1507461833421)
|L $ {} (:type :expr) (:id |SyeGC5tw3-) (:by |root) (:at 1507461834351)
:data $ {}
|T $ {} (:type :expr) (:id |Hy7CcFP3W) (:by |root) (:at 1507461834650)
:data $ {}
|T $ {} (:type :leaf) (:text |store) (:id |SyMAqtD2W) (:by |root) (:at 1507461835738)
|j $ {} (:type :expr) (:id |S1XN05tw3-) (:by |root) (:at 1507461836110)
:data $ {}
|T $ {} (:type :leaf) (:text |:store) (:id |r1GEC5Kv3Z) (:by |root) (:at 1507461837276)
|j $ {} (:type :leaf) (:text |reel) (:id |B1NBC5tPh-) (:by |root) (:at 1507461838285)
|j $ {} (:type :expr) (:id |rkgYtjzqAW) (:by |root) (:at 1509727104820)
:data $ {}
|T $ {} (:type :leaf) (:text |states) (:id |rkgYtjzqAWleaf) (:by |root) (:at 1509727105928)
|j $ {} (:type :expr) (:id |HJBcYszqCZ) (:by |root) (:at 1509727106316)
:data $ {}
|T $ {} (:type :leaf) (:text |:states) (:id |HJE9tjzqAb) (:by |root) (:at 1509727107223)
|j $ {} (:type :leaf) (:text |store) (:id |SySiYoMc0-) (:by |root) (:at 1509727108033)
|T $ {} (:type :expr) (:id |SyWfsuY5THW) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |B1zMoOFc6HZ) (:by |root) (:at 1499755354983)
|j $ {} (:type :expr) (:id |Hy7Gj_YcaSb) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |Bk4GoOt5aSZ) (:by |root) (:at 1499755354983)
|j $ {} (:type :expr) (:id |BkBzj_F5TrW) (:by nil) (:at 1499755354983)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |Bk8ModK9pHW) (:by |root) (:at 1499755354983)
|j $ {} (:type :expr) (:id |rybnWIY-Gz) (:by |root) (:at 1513358852444)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |ByenbLFZGG) (:by |root) (:at 1513358852792)
|j $ {} (:type :expr) (:by |root) (:at 1518248088686) (:id |r1e-ix728f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518248094570) (:text |:background-color) (:id |S1WoeQ3If)
|j $ {} (:type :leaf) (:by |root) (:at 1518248095331) (:text |:white) (:id |S1evsxXhUz)
|m $ {} (:type :expr) (:by |root) (:at 1531325898477) (:id |HyGRTiXXm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531325907954) (:text |comp-open-graph) (:id |HyGRTiXXmleaf)
|q $ {} (:type :expr) (:id |SyxgLn7fGG) (:by |root) (:at 1513401416361)
:data $ {}
|T $ {} (:type :leaf) (:text |render-header) (:id |H1bVTB2QMGf) (:by |root) (:at 1513401412900)
|t $ {} (:type :expr) (:id |SyTPh7zzf) (:by |root) (:at 1513401445108)
:data $ {}
|T $ {} (:type :leaf) (:text |render-visual) (:id |BkeBYPnXGGz) (:by |root) (:at 1513401440694)
|v $ {} (:type :expr) (:id |H1RjhQfff) (:by |root) (:at 1513401510202)
:data $ {}
|T $ {} (:type :leaf) (:text |render-features) (:id |H1RjhQfffleaf) (:by |root) (:at 1513401520232)
|w $ {} (:type :expr) (:id |rkJfJ4zfG) (:by |root) (:at 1513402118523)
:data $ {}
|T $ {} (:type :leaf) (:text |render-footer) (:id |rkJfJ4zfGleaf) (:by |root) (:at 1513402127387)
|x $ {} (:type :expr) (:by |root) (:at 1523983774260) (:id |HklUsSsQhG)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1523983776375) (:text |if) (:id |rJwoBjXnz)
|L $ {} (:type :leaf) (:by |root) (:at 1523983777354) (:text |dev?) (:id |HkbdoBi7hz)
|T $ {} (:type :expr) (:id |rJc29KD2-) (:by |root) (:at 1507461809635)
:data $ {}
|T $ {} (:type :leaf) (:text |comp-reel) (:id |rJc29KD2-leaf) (:by |root) (:at 1507461815046)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588003589484)
:data $ {}
|T $ {} (:type :leaf) (:text |states) (:id |B1BYoG90Z) (:by |root) (:at 1509727101297)
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588003590241) (:text |>>) (:id |-qm3RW8KBX)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588003590947) (:text |:reel) (:id |TSyk77QA4Y)
:id |9hkx0KTvL_
|j $ {} (:type :leaf) (:text |reel) (:id |rJx_05Fw3Z) (:by |root) (:at 1507461840459)
|r $ {} (:type :expr) (:id |B1xKR5Fw3b) (:by |root) (:at 1507461840980)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |Bkt05FDhW) (:by |root) (:at 1507461841342)
|render-features $ {} (:type :expr) (:id |Skl93nXGGz) (:by |root) (:at 1513401522460)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |rJ-5nnXfMG) (:by |root) (:at 1513401522460)
|j $ {} (:type :leaf) (:text |render-features) (:id |ByM9327zGG) (:by |root) (:at 1513401522460)
|r $ {} (:type :expr) (:id |S179237zfM) (:by |root) (:at 1513401522460) (:data $ {})
|v $ {} (:type :expr) (:id |Sk6337GzM) (:by |root) (:at 1513401524556)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |Sk6337GzMleaf) (:by |root) (:at 1513401525916)
|j $ {} (:type :expr) (:id |H14C2n7ffG) (:by |root) (:at 1513401526138)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |rk7Ch3mzfG) (:by |root) (:at 1513401526647)
|j $ {} (:type :expr) (:id |HJ-IMTmMMz) (:by |root) (:at 1513401614202)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |HyeLGaQzzz) (:by |root) (:at 1513401615186)
|j $ {} (:type :expr) (:id |r1IwzpXMzf) (:by |root) (:at 1513401615458)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |r1HvM6mzzM) (:by |root) (:at 1513401617418)
|j $ {} (:type :expr) (:id |Sk-H58RGMG) (:by |root) (:at 1513445005485)
:data $ {}
|T $ {} (:type :leaf) (:text |:margin) (:id |B19zamzGM) (:by |root) (:at 1513401623661)
|j $ {} (:type :leaf) (:text ||auto) (:id |S1zx7aXGMz) (:by |root) (:at 1513449173552)
|x $ {} (:type :expr) (:id |rJg12LyQMG) (:by |root) (:at 1513449127079)
:data $ {}
|T $ {} (:type :leaf) (:text |:max-width) (:id |rJg12LyQMGleaf) (:by |root) (:at 1513449130607)
|j $ {} (:type :leaf) (:text |800) (:id |Sk-Q3UyQMf) (:by |root) (:at 1523983849183)
|y $ {} (:type :expr) (:by |root) (:at 1523984629739) (:id |S1CgYom3M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523984631589) (:text |:padding) (:id |S1CgYom3Mleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523984633067) (:text |16) (:id |BJgxWtoXnM)
|yT $ {} (:type :expr) (:by |root) (:at 1531326274888) (:id |BJgjryn7XX)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1531326277311) (:text |:padding-top) (:id |BJgjryn7XXleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1531326279187) (:text |40) (:id |r1CHy2mX7)
|l $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109582199) (:id |8tHsVk6-x1)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109582840) (:text |div) (:id |8tHsVk6-x1leaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109583103) (:id |kPJ0kbkpaM)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109583422) (:text |{}) (:id |yNrqrUqG2N)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109775056) (:id |PJIx5_tFrS)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109776510) (:text |:style) (:id |8s8NMY9-RO)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109776745) (:id |qQQkt-hrqq)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109777071) (:text |{}) (:id |s7XRv99P3)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109777401) (:id |Qzfyd65H4U)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109781487) (:text |:background-color) (:id |fDtvtXGLWA)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109781675) (:id |oYQen-afoM)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109782738) (:text |hsl) (:id |6joy8fEDB)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109783021) (:text |0) (:id |GHDmNKl7Qi)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109783253) (:text |0) (:id |GMxGHwD-O1)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551110026778) (:text |96) (:id |P6hCYexovU)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109787312) (:id |8FWq46jq7S)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109788581) (:text |:padding) (:id |8FWq46jq7Sleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109790707) (:text |16) (:id |bMvGTYy9Up)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109584592) (:id |PzPunG9iK)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109587572) (:text |div) (:id |PzPunG9iKleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109588223) (:id |9thzNTlJ1C)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109588567) (:text |{}) (:id |FSLWSluNYN)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109831112) (:id |yr2izV4AXt)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109832417) (:text |:style) (:id |woQKYXSkqJ)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109832873) (:id |ItNQ2bUQtS)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109832873) (:text |{}) (:id |_q4_-vNTae)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109832873) (:id |ZON5GvzJ8N)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109832873) (:text |:font-family) (:id |RVU9Fh1U7g)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109832873) (:text |ui/font-fancy) (:id |stXxI8fxNj)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109832873) (:id |7xsaBQd4b5)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109832873) (:text |:font-size) (:id |UP1ntmoCAV)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109832873) (:text |20) (:id |4KMfUaoaAv)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109589088) (:id |-r2TufhP2U)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109589589) (:text |<>) (:id |-r2TufhP2Uleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109594623) (:text "|\"Recent posts") (:id |hZD6rqMROt)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109598820) (:id |aLcAQYLEh)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109599954) (:text |div) (:id |aLcAQYLEhleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109600204) (:id |8YD3eoefZ7)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109600536) (:text |{}) (:id |o229lfAI1A)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109839232) (:id |JbWBmnOHoG)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109839971) (:text |:style) (:id |rDKYtd7ydR)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109871126) (:id |cdHS1wTLX4)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109871833) (:text |{}) (:id |Y2NJOchs2U)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109872188) (:id |uBKKEXca14)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109937708) (:text |:padding-top) (:id |QshFrjDdpN)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109930108) (:text |12) (:id |DorC9iKqb2)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551109872188) (:id |NgOQInvW-)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109941039) (:text |:padding-left) (:id |QshFrjDdpN)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551109930108) (:text |12) (:id |DorC9iKqb2)
|kr $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203633346) (:id |v7sXT5WM-)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203637013) (:text |comp-post) (:id |v7sXT5WM-leaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1592406920524) (:text "|\"2020-06-17") (:id |qLBN-yu_G)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1592406907158) (:text "|\"Generating ES Modules (Browser, Deno, …) ") (:id |4OhVKc7zF)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1592406913580) (:text "|\"https://clojureverse.org/t/generating-es-modules-browser-deno/6116") (:id |BvcAAf1z3F)
|kr/ $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203633346) (:id |fpO7UoISF1)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203637013) (:text |comp-post) (:id |v7sXT5WM-leaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589042480850) (:text "|\"2020-05-08") (:id |qLBN-yu_G)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589042486034) (:text "|\"How about webpack now?") (:id |4OhVKc7zF)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589042491095) (:text "|\"https://code.thheller.com/blog/shadow-cljs/2020/05/08/how-about-webpack-now.html") (:id |BvcAAf1z3F)
|kr- $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1551203633346) (:id |Iev8kVSUs)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1551203637013) (:text |comp-post) (:id |v7sXT5WM-leaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591719974607) (:text "|\"2020-06-09") (:id |qLBN-yu_G)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591719956715) (:text "|\"Status Update - Inspect, cljs_eval") (:id |4OhVKc7zF)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1591719961783) (:text "|\"https://clojureverse.org/t/status-update-inspect-cljs-eval/6074") (:id |BvcAAf1z3F)
|n $ {} (:type :expr) (:by |root) (:at 1520739935757) (:id |SJ_DLXftM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520783905566) (:text |comp-md-block) (:id |SJ_DLXftMleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1534305772170) (:id |ZrPG8M3MD4)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1549593974148) (:text |inline) (:id |SyCvI7MKM)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1549595204574) (:text "|\"introduction.md") (:id |-9j-GAEl51)
|r $ {} (:type :expr) (:by |root) (:at 1520739947773) (:id |H1eNOLmMKf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520739948297) (:text |{}) (:id |SyGOL7MKM)
|j $ {} (:type :expr) (:by |root) (:at 1520740969762) (:id |r1xGu97GYG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520740972034) (:text |:highlight) (:id |Syzd5mGFf)
|j $ {} (:type :expr) (:by |root) (:at 1520740981341) (:id |ryg6uqXzYz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520740981817) (:text |fn) (:id |HkTd97MFM)
|j $ {} (:type :expr) (:by |root) (:at 1520740982254) (:id |SJfAd9XMFM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520783898388) (:text |code) (:id |Hk-Au5XMFz)
|j $ {} (:type :leaf) (:by |root) (:at 1520740984090) (:text |lang) (:id |ryM1KqXfFM)
|r $ {} (:type :expr) (:by |root) (:at 1520740984949) (:id |ByeZKc7GtM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520740998425) (:text |.-value) (:id |ByeZKc7GtMleaf)
|j $ {} (:type :expr) (:by |root) (:at 1520740998939) (:id |Ske1qqmGFf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520741004902) (:text |.highlight) (:id |Sykq9XGKG)
|j $ {} (:type :leaf) (:by |root) (:at 1520741008429) (:text |hljs) (:id |BJNr9c7zFM)
|r $ {} (:type :leaf) (:by |root) (:at 1520741011375) (:text |lang) (:id |Skt99mGYM)
|v $ {} (:type :leaf) (:by |root) (:at 1520741012447) (:text |code) (:id |B1moq9XfYG)
|render-visual $ {} (:type :expr) (:id |HyxYD27ffG) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |rybtw27GfG) (:by |root) (:at 1513401450294)
|j $ {} (:type :leaf) (:text |render-visual) (:id |S1zKw37MGM) (:by |root) (:at 1513401440694)
|n $ {} (:type :expr) (:id |r1lunXMzM) (:by |root) (:at 1513401447672) (:data $ {})
|r $ {} (:type :expr) (:id |Hk7FP3XMzG) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |rkNYwh7zzG) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |S1SFPn7MGf) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |H1IYw37zMM) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |rJvKD3XzGz) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |rkdtwhXzzM) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |SJYtwhQfGf) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |merge) (:id |HkcFw3mGzf) (:by |root) (:at 1513401440694)
|j $ {} (:type :leaf) (:text |ui/center) (:id |ryjFvnXGzz) (:by |root) (:at 1513401440694)
|r $ {} (:type :expr) (:id |SJ2Kv37ffz) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |S1ptP2mfMz) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |B1AYP3QzMf) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:id |BJkgtvnmfzf) (:by |root) (:at 1513401440694)
|j $ {} (:type :leaf) (:text |theme/dark) (:id |BkxlYD27Mfz) (:by |root) (:at 1513401440694)
|r $ {} (:type :expr) (:id |Sk-xFvhQfzM) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:height) (:id |HyzxYvhQGff) (:by |root) (:at 1513401440694)
|j $ {} (:type :leaf) (:text |600) (:id |SkmeKw2QGzG) (:by |root) (:at 1513401440694)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1593362910449)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593362911855) (:text |:color) (:id |nTpotgZVtleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593362913722) (:text |:white) (:id |Dkkn9xaZtz)
:id |nTpotgZVt
|n $ {} (:type :expr) (:id |r1gq0hx6EM) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |BkezFwnXfzM) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |ryZzYDnQMff) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SkGfKwnQGMz) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |rJQGtwn7ffG) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |HkVfFD27GfG) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |HkBftPnQfGG) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |ByUfYPh7zzG) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |r1DMKD2XzGf) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-size) (:id |HJuzKDnQffG) (:by |rJG4IHzWf) (:at 1516207131728)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207365127) (:text |64) (:id |HygNmnlT4G)
|r $ {} (:type :expr) (:id |SyK1UJXfz) (:by |root) (:at 1513448928576)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:id |SyK1UJXfzleaf) (:by |root) (:at 1513448930225)
|j $ {} (:type :leaf) (:text "||0 16px") (:id |ryik81QfG) (:by |root) (:at 1513448933603)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516207100686) (:id |rJB-3x64f)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207103219) (:text |:font-family) (:id |rJB-3x64fleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593362822874) (:text |ui/font-fancy) (:id |SkKbhxTNz)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516207121980) (:id |S1qzhlpVf)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207123412) (:text |:font-weight) (:id |S1qzhlpVfleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207124934) (:text |100) (:id |Hk2Gnx6VG)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1593362829510)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593362831746) (:text |:class-name) (:id |4YZWurtTz6leaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1595865511771) (:text "|\"brand") (:id |7X9skoizY1)
:id |4YZWurtTz6
|r $ {} (:type :expr) (:id |ry9Mtw2XGGM) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |HyjfFvnXGzG) (:by |root) (:at 1513401440694)
|j $ {} (:type :leaf) (:text "|\"shadow-cljs") (:id |ByhGKwhXMGz) (:by |rJG4IHzWf) (:at 1534819427638)
|o $ {} (:type :expr) (:id |HJ8VpeaVf) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |BkezFwnXfzM) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |ryZzYDnQMff) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SkGfKwnQGMz) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |rJQGtwn7ffG) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |HkVfFD27GfG) (:by |rJG4IHzWf) (:at 1534819432111)
|j $ {} (:type :expr) (:id |HkBftPnQfGG) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |ByUfYPh7zzG) (:by |root) (:at 1513401440694)
|j $ {} (:type :expr) (:id |r1DMKD2XzGf) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-size) (:id |HJuzKDnQffG) (:by |rJG4IHzWf) (:at 1516207131728)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207461390) (:text |18) (:id |HygNmnlT4G)
|r $ {} (:type :expr) (:id |SyK1UJXfz) (:by |root) (:at 1513448928576)
:data $ {}
|T $ {} (:type :leaf) (:text |:padding) (:id |SyK1UJXfzleaf) (:by |root) (:at 1513448930225)
|j $ {} (:type :leaf) (:text "||0 16px") (:id |ryik81QfG) (:by |root) (:at 1513448933603)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516207100686) (:id |rJB-3x64f)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207103219) (:text |:font-family) (:id |rJB-3x64fleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593362949525) (:text |ui/font-normal) (:id |SkKbhxTNz)
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1516207121980) (:id |S1qzhlpVf)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207123412) (:text |:font-weight) (:id |S1qzhlpVfleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1516207124934) (:text |100) (:id |Hk2Gnx6VG)
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1593362940583)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593362942802) (:text |:user-select) (:id |KKKU-9M8VWleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593362943706) (:text |:none) (:id |ra_4-SRSwq)
:id |KKKU-9M8VW
|r $ {} (:type :expr) (:id |ry9Mtw2XGGM) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |HyjfFvnXGzG) (:by |root) (:at 1513401440694)
|j $ {} (:type :leaf) (:text "||ClojureScript compilation made easy!") (:id |ByhGKwhXMGz) (:by |rJG4IHzWf) (:at 1516207637931)
|t $ {} (:type :expr) (:by |root) (:at 1518686125109) (:id |BylB3kRfvG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518686125862) (:text |=<) (:id |BylB3kRfvGleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1518686158713) (:text |8) (:id |SkWI3kCMDM)
|r $ {} (:type :leaf) (:by |root) (:at 1518686127188) (:text |nil) (:id |rygPh1CGwz)
|v $ {} (:type :expr) (:by |root) (:at 1518685967021) (:id |rJlcj1AfwG)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534820384115) (:text |img) (:id |HJfDz10fvfleaf)
|j $ {} (:type :expr) (:by |root) (:at 1518685968666) (:id |SyKG1AGPG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518685969008) (:text |{}) (:id |SJedGyRMwz)
|b $ {} (:type :expr) (:by |root) (:at 1518686135574) (:id |HJg6yRGPM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518686136946) (:text |:style) (:id |Hke1aJAfwG)
|j $ {} (:type :expr) (:by |root) (:at 1518686137323) (:id |SkGW610zvG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518686137664) (:text |{}) (:id |rybbp1RMvM)
|j $ {} (:type :expr) (:by |root) (:at 1518686137921) (:id |SJGzpkAGPf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518686141384) (:text |:vertical-align) (:id |H1-zTy0zPz)
|j $ {} (:type :leaf) (:by |root) (:at 1518686143787) (:text |:middle) (:id |By8rTJRzwz)
|j $ {} (:type :expr) (:by |root) (:at 1518685971213) (:id |ryQsGJCzPf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518685971044) (:text |:src) (:id |HkMtz1CMDG)
|j $ {} (:type :leaf) (:by |root) (:at 1518685972082) (:text ||https://img.shields.io/npm/v/shadow-cljs.svg) (:id |Sk2GJ0MvG)
|p $ {} (:type :expr) (:id |B1xRRhxaEG) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |=<) (:id |BJnWYw3XfMf) (:by |root) (:at 1513401440694)
|f $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534819606517) (:text |nil) (:id |10c1-5H2A)
|r $ {} (:type :leaf) (:text |32) (:id |HJAbFPnXGGf) (:by |root) (:at 1513401440694)
|u $ {} (:type :expr) (:by |root) (:at 1523985039074) (:id |SyxP5cim3f)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1523985040279) (:text |div) (:id |SJZvc9jmnG)
|L $ {} (:type :expr) (:by |root) (:at 1523985040483) (:id |rkQd5qjXhz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985040848) (:text |{}) (:id |SyfOc5iX3f)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1525171221369) (:id |rylTzV6rpz)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1525171223069) (:text |:class-name) (:id |rylTzV6rpzleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534820600912) (:text "|\"logo-circle") (:id |rJNyQVpS6f)
|j $ {} (:type :expr) (:by |root) (:at 1523985043966) (:id |ryghc9s72f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985045719) (:text |:style) (:id |Hync9oX2M)
|j $ {} (:type :expr) (:by |root) (:at 1523985046411) (:id |S1f0cqim3M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985046757) (:text |{}) (:id |HkZC95sXnM)
|j $ {} (:type :expr) (:id |rkfiqs7hG) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:width) (:id |HkI-tw3XMGM) (:by |root) (:at 1513401440694)
|j $ {} (:type :leaf) (:text |240) (:id |HJDZYvnXfzz) (:by |rJG4IHzWf) (:at 1516207327036)
|r $ {} (:type :expr) (:id |SJl4o5oX2f) (:by |root) (:at 1513401440694)
:data $ {}
|T $ {} (:type :leaf) (:text |:height) (:id |BytWYDh7fzf) (:by |root) (:at 1513401440694)
|j $ {} (:type :leaf) (:text |240) (:id |By5ZKDn7fff) (:by |rJG4IHzWf) (:at 1516207328424)
|x $ {} (:type :expr) (:by |root) (:at 1523985059489) (:id |Bkgjs9oQ2M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985060685) (:text |:position) (:id |Bkgjs9oQ2Mleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985061963) (:text |:relative) (:id |Sy-aicim3f)
|yT $ {} (:type :expr) (:by |root) (:at 1523985207485) (:id |Syx1SoiXnG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985209386) (:text |:border-radius) (:id |Syx1SoiXnGleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985211767) (:text "|\"50%") (:id |ryGHjoXnM)
|N $ {} (:type :expr) (:by |root) (:at 1523985238181) (:id |BkyXQ6Hpz)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534820425215) (:text |div) (:id |B1RIsim2fleaf)
|j $ {} (:type :expr) (:by |root) (:at 1523985238930) (:id |ryzyDijQ3z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985239266) (:text |{}) (:id |HJ-kDos7hz)
|b $ {} (:type :expr) (:by |root) (:at 1523985511107) (:id |Sy-SKnjXhz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985513637) (:text |:class-name) (:id |rk1dhiQ2fleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1525170907806) (:text "|\"bubble circle-dark") (:id |SkZGuhsmhf)
|j $ {} (:type :expr) (:by |root) (:at 1523985240348) (:id |BkeewjiXnM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985243851) (:text |:style) (:id |r1ePoomnM)
|j $ {} (:type :expr) (:by |root) (:at 1523985244071) (:id |S174Diimhf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985245110) (:text |{}) (:id |SJfNDosXnf)
|j $ {} (:type :expr) (:by |root) (:at 1523985246350) (:id |S1bUPijm2M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985253150) (:text |:border-radius) (:id |SJmrvjsQnz)
|j $ {} (:type :leaf) (:by |root) (:at 1523985254875) (:text "|\"50%") (:id |Bk8pwsi7nz)
|r $ {} (:type :expr) (:by |root) (:at 1523985189759) (:id |SkbmeXaH6f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985195975) (:text |:background-color) (:id |SygRmio72Mleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1534819614189) (:text "|\"rgb(67,128,219)") (:id |rkNEEoj73M)
|v $ {} (:type :expr) (:by |root) (:at 1523985316593) (:id |HypijoQhM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985318744) (:text |:width) (:id |HypijoQhMleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1525170949213) (:text |652) (:id |HkZknijmnz)
|x $ {} (:type :expr) (:by |root) (:at 1523985320997) (:id |rkZ-3js73M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985322219) (:text |:height) (:id |rkZ-3js73Mleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1525170951188) (:text |652) (:id |ByBznos7hz)
|y $ {} (:type :expr) (:by |root) (:at 1523985354255) (:id |B1lzAjjmnz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985357600) (:text |:position) (:id |B1lzAjjmnzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985359693) (:text |:absolute) (:id |Sy-I0ssX2f)
|P $ {} (:type :expr) (:by |root) (:at 1523985238181) (:id |rJlM3smhG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985238689) (:text |div) (:id |B1RIsim2fleaf)
|j $ {} (:type :expr) (:by |root) (:at 1523985238930) (:id |ryzyDijQ3z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985239266) (:text |{}) (:id |HJ-kDos7hz)
|b $ {} (:type :expr) (:by |root) (:at 1523985511107) (:id |Bkl0OniX3z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985513637) (:text |:class-name) (:id |rk1dhiQ2fleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1525170534519) (:text "|\"bubble circle-green") (:id |SkZGuhsmhf)
|j $ {} (:type :expr) (:by |root) (:at 1523985240348) (:id |BkeewjiXnM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985243851) (:text |:style) (:id |r1ePoomnM)
|j $ {} (:type :expr) (:by |root) (:at 1523985244071) (:id |S174Diimhf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985245110) (:text |{}) (:id |SJfNDosXnf)
|j $ {} (:type :expr) (:by |root) (:at 1523985246350) (:id |S1bUPijm2M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985253150) (:text |:border-radius) (:id |SJmrvjsQnz)
|j $ {} (:type :leaf) (:by |root) (:at 1523985254875) (:text "|\"50%") (:id |Bk8pwsi7nz)
|r $ {} (:type :expr) (:by |root) (:at 1523985256066) (:id |Skg_ioXhz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985261749) (:text |:background-color) (:id |Skg_ioXhzleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1525170508671) (:text "|\"rgb(65,180,0)") (:id |SJfyLZaB6M)
|v $ {} (:type :expr) (:by |root) (:at 1523985316593) (:id |HypijoQhM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985318744) (:text |:width) (:id |HypijoQhMleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985499775) (:text |279) (:id |HkZknijmnz)
|x $ {} (:type :expr) (:by |root) (:at 1523985320997) (:id |rkZ-3js73M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985322219) (:text |:height) (:id |rkZ-3js73Mleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985501857) (:text |279) (:id |ByBznos7hz)
|y $ {} (:type :expr) (:by |root) (:at 1523985354255) (:id |B1lzAjjmnz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985357600) (:text |:position) (:id |B1lzAjjmnzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985359693) (:text |:absolute) (:id |Sy-I0ssX2f)
|Q $ {} (:type :expr) (:by |root) (:at 1523985238181) (:id |Hkcjnj72f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985238689) (:text |div) (:id |B1RIsim2fleaf)
|j $ {} (:type :expr) (:by |root) (:at 1523985238930) (:id |ryzyDijQ3z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985239266) (:text |{}) (:id |HJ-kDos7hz)
|b $ {} (:type :expr) (:by |root) (:at 1523985511107) (:id |Sy-SKnjXhz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985513637) (:text |:class-name) (:id |rk1dhiQ2fleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985734403) (:text "|\"bubble circle-blue") (:id |SkZGuhsmhf)
|j $ {} (:type :expr) (:by |root) (:at 1523985240348) (:id |BkeewjiXnM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985243851) (:text |:style) (:id |r1ePoomnM)
|j $ {} (:type :expr) (:by |root) (:at 1523985244071) (:id |S174Diimhf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985245110) (:text |{}) (:id |SJfNDosXnf)
|j $ {} (:type :expr) (:by |root) (:at 1523985246350) (:id |S1bUPijm2M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985253150) (:text |:border-radius) (:id |SJmrvjsQnz)
|j $ {} (:type :leaf) (:by |root) (:at 1523985254875) (:text "|\"50%") (:id |Bk8pwsi7nz)
|r $ {} (:type :expr) (:by |root) (:at 1523985256066) (:id |Skg_ioXhz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985261749) (:text |:background-color) (:id |Skg_ioXhzleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1525170496967) (:text "|\"#89b4ff") (:id |rkfIOsimhf)
|v $ {} (:type :expr) (:by |root) (:at 1523985316593) (:id |HypijoQhM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985318744) (:text |:width) (:id |HypijoQhMleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985485581) (:text |71) (:id |HkZknijmnz)
|x $ {} (:type :expr) (:by |root) (:at 1523985320997) (:id |rkZ-3js73M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985322219) (:text |:height) (:id |rkZ-3js73Mleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985486724) (:text |71) (:id |ByBznos7hz)
|y $ {} (:type :expr) (:by |root) (:at 1523985354255) (:id |B1lzAjjmnz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985357600) (:text |:position) (:id |B1lzAjjmnzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985359693) (:text |:absolute) (:id |Sy-I0ssX2f)
|R $ {} (:type :expr) (:by |root) (:at 1523985238181) (:id |H1g7GhiXhz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985238689) (:text |div) (:id |B1RIsim2fleaf)
|j $ {} (:type :expr) (:by |root) (:at 1523985238930) (:id |ryzyDijQ3z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985239266) (:text |{}) (:id |HJ-kDos7hz)
|b $ {} (:type :expr) (:by |root) (:at 1523985511107) (:id |rk1dhiQ2f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985513637) (:text |:class-name) (:id |rk1dhiQ2fleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1525170531790) (:text "|\"bubble circle-yellow") (:id |SkZGuhsmhf)
|j $ {} (:type :expr) (:by |root) (:at 1523985240348) (:id |BkeewjiXnM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985243851) (:text |:style) (:id |r1ePoomnM)
|j $ {} (:type :expr) (:by |root) (:at 1523985244071) (:id |S174Diimhf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985245110) (:text |{}) (:id |SJfNDosXnf)
|j $ {} (:type :expr) (:by |root) (:at 1523985246350) (:id |S1bUPijm2M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985253150) (:text |:border-radius) (:id |SJmrvjsQnz)
|j $ {} (:type :leaf) (:by |root) (:at 1523985254875) (:text "|\"50%") (:id |Bk8pwsi7nz)
|r $ {} (:type :expr) (:by |root) (:at 1523985256066) (:id |Skg_ioXhz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985261749) (:text |:background-color) (:id |Skg_ioXhzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1523985453386) (:text "|\"#76e013") (:id |rkfIOsimhf)
|v $ {} (:type :expr) (:by |root) (:at 1523985316593) (:id |HypijoQhM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1523985318744) (:text |:width) (:id |HypijoQhMleaf)