-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
2099 lines (2098 loc) · 186 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
{}
:configs $ {} (:extension |.cljs) (: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 $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:defs $ {}
|comp-container $ {} (:id |BJ2WiOF9pBW) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |Hy6-sOYqaSb) (:text |defcomp) (:time 1499755354983) (:type :leaf)
|j $ {} (:author |root) (:id |HyC-jOFq6r-) (:text |comp-container) (:time 1499755354983) (:type :leaf)
|r $ {} (:id |H1yfo_t9aB-) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |r1gMj_KqTSZ) (:text |reel) (:time 1507461830530) (:type :leaf)
|v $ {} (:author |root) (:id |r1-eRcYv3-) (:time 1507461832154) (:type :expr)
:data $ {}
|D $ {} (:author |root) (:id |SkGx0cFPh-) (:text |let) (:time 1507461833421) (:type :leaf)
|L $ {} (:author |root) (:id |SyeGC5tw3-) (:time 1507461834351) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |Hy7CcFP3W) (:time 1507461834650) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |SyMAqtD2W) (:text |store) (:time 1507461835738) (:type :leaf)
|j $ {} (:author |root) (:id |S1XN05tw3-) (:time 1507461836110) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |r1GEC5Kv3Z) (:text |:store) (:time 1507461837276) (:type :leaf)
|j $ {} (:author |root) (:id |B1NBC5tPh-) (:text |reel) (:time 1507461838285) (:type :leaf)
|j $ {} (:author |root) (:id |rkgYtjzqAW) (:time 1509727104820) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rkgYtjzqAWleaf) (:text |states) (:time 1509727105928) (:type :leaf)
|j $ {} (:author |root) (:id |HJBcYszqCZ) (:time 1509727106316) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |HJE9tjzqAb) (:text |:states) (:time 1509727107223) (:type :leaf)
|j $ {} (:author |root) (:id |SySiYoMc0-) (:text |store) (:time 1509727108033) (:type :leaf)
|T $ {} (:id |SyWfsuY5THW) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |B1zMoOFc6HZ) (:text |div) (:time 1499755354983) (:type :leaf)
|j $ {} (:id |Hy7Gj_YcaSb) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |Bk4GoOt5aSZ) (:text |{}) (:time 1499755354983) (:type :leaf)
|j $ {} (:id |BkBzj_F5TrW) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |Bk8ModK9pHW) (:text |:style) (:time 1499755354983) (:type :leaf)
|j $ {} (:id |rJDfsutcaBb) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |BydGiOKqpHW) (:text |merge) (:time 1499755354983) (:type :leaf)
|j $ {} (:at 1521129814235) (:author |root) (:by |root) (:id |rktMsOY56HW) (:text |ui/global) (:time 1499755354983) (:type :leaf)
|r $ {} (:at 1522948765118) (:by |root) (:id |ByxSocCmsM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948769675) (:by |root) (:id |ByriqR7if) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948769994) (:by |root) (:id |BkGqiqAQoz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948773992) (:by |root) (:id |HJWciqR7sG) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1522948778318) (:by |root) (:id |ry4Ai5RQjf) (:text |:white) (:type :leaf)
|r $ {} (:at 1523073809090) (:by |root) (:id |rygKMQaBiG) (:type :expr)
:data $ {}
|T $ {} (:at 1523073813086) (:by |root) (:id |rygKMQaBiGleaf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1523073813669) (:by |root) (:id |HkETG7aHjG) (:text |16) (:type :leaf)
|o $ {} (:at 1522948480885) (:by |root) (:id |HkeYttAQoz) (:type :expr)
:data $ {}
|D $ {} (:at 1522948481588) (:by |root) (:id |rybKYYAQsz) (:text |div) (:type :leaf)
|L $ {} (:at 1522948481811) (:by |root) (:id |HJZcYY0XiG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948482566) (:by |root) (:id |rJx9tKCXjf) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948495102) (:by |root) (:id |Hy-D9K0XjM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948496516) (:by |root) (:id |H1eDcFCQjM) (:text |:style) (:type :leaf)
|j $ {} (:at 1522948497065) (:by |root) (:id |r1xY5FCmjG) (:type :expr)
:data $ {}
|j $ {} (:at 1522948127370) (:by |root) (:id |SyewQdC7iM) (:text |{}) (:type :leaf)
|r $ {} (:at 1522948139197) (:by |root) (:id |rJbm4OC7of) (:type :expr)
:data $ {}
|T $ {} (:at 1522948270617) (:by |root) (:id |HkgXNO0moG) (:text |:background-image) (:type :leaf)
|j $ {} (:at 1522948230004) (:by |root) (:id |BJE8EdC7sM) (:text "|\"linear-gradient(to right, #0f2242, #2452a1)") (:type :leaf)
|T $ {} (:at 1522927456356) (:by |root) (:id |HJWqjuRmjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927467845) (:by |root) (:id |SJ_PvKQoGleaf) (:text |comp-header) (:type :leaf)
|b $ {} (:at 1524241700846) (:by |root) (:id |Skj88cPnf) (:type :expr)
:data $ {}
|D $ {} (:at 1524241701570) (:by |root) (:id |HJ-a7S5P3M) (:text |div) (:type :leaf)
|L $ {} (:at 1524241701800) (:by |root) (:id |r1b0QB5D3M) (:type :expr)
:data $ {}
|T $ {} (:at 1524241702374) (:by |root) (:id |BJlRXScP3G) (:text |{}) (:type :leaf)
|j $ {} (:at 1524241725337) (:by |root) (:id |Sk-rSB5D2M) (:type :expr)
:data $ {}
|T $ {} (:at 1524241727658) (:by |root) (:id |rJgrHScPnf) (:text |:style) (:type :leaf)
|j $ {} (:at 1524241728562) (:by |root) (:id |HyYrr5vhz) (:type :expr)
:data $ {}
|T $ {} (:at 1524241729631) (:by |root) (:id |BJWOBB9vnG) (:text |{}) (:type :leaf)
|j $ {} (:at 1524241730137) (:by |root) (:id |rkzqBBcD2M) (:type :expr)
:data $ {}
|T $ {} (:at 1524241731478) (:by |root) (:id |BJZ5SBqD2G) (:text |:color) (:type :leaf)
|j $ {} (:at 1524241732264) (:by |root) (:id |Sk2rB9Pnf) (:text |:white) (:type :leaf)
|r $ {} (:at 1524241737452) (:by |root) (:id |SylW8BqP3f) (:type :expr)
:data $ {}
|T $ {} (:at 1524241739551) (:by |root) (:id |SylW8BqP3fleaf) (:text |:font-weight) (:type :leaf)
|j $ {} (:at 1524241759545) (:by |root) (:id |Hkx48SqP3z) (:text |300) (:type :leaf)
|v $ {} (:at 1524241742439) (:by |root) (:id |HkM8UBcDnz) (:type :expr)
:data $ {}
|T $ {} (:at 1524241744878) (:by |root) (:id |HkM8UBcDnzleaf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1524241749745) (:by |root) (:id |H1ZFUS5v2M) (:text |ui/font-fancy) (:type :leaf)
|x $ {} (:at 1524241752970) (:by |root) (:id |HJe-wBqw3z) (:type :expr)
:data $ {}
|T $ {} (:at 1524241755736) (:by |root) (:id |HJe-wBqw3zleaf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1524241767961) (:by |root) (:id |Bkz4DHqPhf) (:text |20) (:type :leaf)
|y $ {} (:at 1524241776256) (:by |root) (:id |r1g_uH9vnz) (:type :expr)
:data $ {}
|T $ {} (:at 1524241777376) (:by |root) (:id |r1g_uH9vnzleaf) (:text |:margin) (:type :leaf)
|j $ {} (:at 1524241778956) (:by |root) (:id |rJq_Sqv2M) (:text |:auto) (:type :leaf)
|yT $ {} (:at 1524241787472) (:by |root) (:id |rkgXtBqw3G) (:type :expr)
:data $ {}
|T $ {} (:at 1524241789717) (:by |root) (:id |rkgXtBqw3Gleaf) (:text |:text-align) (:type :leaf)
|j $ {} (:at 1524241791210) (:by |root) (:id |SygItH5P2M) (:text |:center) (:type :leaf)
|yj $ {} (:at 1524241795678) (:by |root) (:id |Sy2YScD2f) (:type :expr)
:data $ {}
|T $ {} (:at 1524241798413) (:by |root) (:id |Sy2YScD2fleaf) (:text |:max-width) (:type :leaf)
|j $ {} (:at 1524241799651) (:by |root) (:id |BJJcB5Dhf) (:text |800) (:type :leaf)
|yr $ {} (:at 1524242200639) (:by |root) (:id |B1-7vcvhM) (:type :expr)
:data $ {}
|T $ {} (:at 1524242202253) (:by |root) (:id |B1-7vcvhMleaf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1524242204514) (:by |root) (:id |H1BfQw5PnG) (:text "|\"0 16px") (:type :leaf)
|T $ {} (:at 1522928949667) (:by |root) (:id |r12XBcD3f) (:type :expr)
:data $ {}
|T $ {} (:at 1522928956555) (:by |root) (:id |rJR4Ttmizleaf) (:text |comp-md-block) (:type :leaf)
|j $ {} (:at 1541526135286) (:by |root) (:id |CyZpGyP2fg) (:type :expr)
:data $ {}
|T $ {} (:at 1558092187272) (:by |rJG4IHzWf) (:id |HJxBSpK7jz) (:text |inline) (:type :leaf)
|j $ {} (:at 1558092189086) (:by |rJG4IHzWf) (:id |3w_DyMxZ0Q) (:text "|\"clojure-is.md") (:type :leaf)
|r $ {} (:at 1522929001629) (:by |root) (:id |SyGOTYQoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522929001979) (:by |root) (:id |SygbuatQsz) (:text |{}) (:type :leaf)
|j $ {} (:at 1522990526339) (:by |root) (:id |Hy-L6p_Eiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522990528100) (:by |root) (:id |r1eUppO4iG) (:text |:class-name) (:type :leaf)
|j $ {} (:at 1524242037482) (:by |root) (:id |ByVO66O4oz) (:text "|\"content on-dark") (:type :leaf)
|j $ {} (:at 1522927807702) (:by |root) (:id |SJ-AFt0Xsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927816926) (:by |root) (:id |H1O6uKXjzleaf) (:text |comp-showcase) (:type :leaf)
|j $ {} (:at 1522986209137) (:by |root) (:id |HkYkpPNjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522986211474) (:by |root) (:id |r1xDy6w4sG) (:text |:case-idx) (:type :leaf)
|j $ {} (:at 1522986458084) (:by |root) (:id |H1nypPEsf) (:text |store) (:type :leaf)
|r $ {} (:at 1522949454699) (:by |root) (:id |B1w860Qsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522949455304) (:by |root) (:id |B1w860Qsfleaf) (:text |=<) (:type :leaf)
|j $ {} (:at 1522949456412) (:by |root) (:id |Hyd8a07jM) (:text |nil) (:type :leaf)
|r $ {} (:at 1522949457103) (:by |root) (:id |B1Y8607of) (:text |32) (:type :leaf)
|v $ {} (:at 1522928396680) (:by |root) (:id |BJrziK7oG) (:type :expr)
:data $ {}
|T $ {} (:at 1522928398243) (:by |root) (:id |BJrziK7oGleaf) (:text |comp-tools) (:type :leaf)
|w $ {} (:at 1522929013153) (:by |root) (:id |Hkl6OaKQsM) (:type :expr)
:data $ {}
|T $ {} (:at 1522929017692) (:by |root) (:id |Hkl6OaKQsMleaf) (:text |comp-resources) (:type :leaf)
|wD $ {} (:at 1522948788182) (:by |root) (:id |Hye3h9Rmjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522948789364) (:by |root) (:id |Hye3h9Rmjfleaf) (:text |=<) (:type :leaf)
|b $ {} (:at 1522948793694) (:by |root) (:id |HkxWp9AXjf) (:text |nil) (:type :leaf)
|j $ {} (:at 1522948790527) (:by |root) (:id |ByAhq0mjz) (:text |16) (:type :leaf)
|wT $ {} (:at 1522948703874) (:by |root) (:id |HJxOD50Xiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948705624) (:by |root) (:id |HJxOD50Xizleaf) (:text |comp-footer) (:type :leaf)
|x $ {} (:at 1521954055333) (:by |root) (:id |SyWJfaiV5z) (:type :expr)
:data $ {}
|D $ {} (:at 1521954057510) (:by |root) (:id |rJgM6oE5f) (:text |when) (:type :leaf)
|L $ {} (:at 1521954059290) (:by |root) (:id |H1fGajVqz) (:text |dev?) (:type :leaf)
|T $ {} (:author |root) (:id |rJc29KD2-) (:time 1507461809635) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rJc29KD2-leaf) (:text |comp-reel) (:time 1507461815046) (:type :leaf)
|b $ {} (:at 1629270517422) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629270518092) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|T $ {} (:author |root) (:id |B1BYoG90Z) (:text |states) (:time 1509727101297) (:type :leaf)
|j $ {} (:at 1629270519330) (:by |rJG4IHzWf) (:text |:reel) (:type :leaf)
|j $ {} (:author |root) (:id |rJx_05Fw3Z) (:text |reel) (:time 1507461840459) (:type :leaf)
|r $ {} (:author |root) (:id |B1xKR5Fw3b) (:time 1507461840980) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |Bkt05FDhW) (:text |{}) (:time 1507461841342) (:type :leaf)
|comp-footer $ {} (:at 1522948706411) (:by |root) (:id |HJf9DcCXjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948707984) (:by |root) (:id |Sk79PcCQof) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1522948706411) (:by |root) (:id |SJEqvqC7iM) (:text |comp-footer) (:type :leaf)
|r $ {} (:at 1522948706411) (:by |root) (:id |BJH9P907if) (:type :expr)
:data $ {}
|v $ {} (:at 1522948708871) (:by |root) (:id |Bk6w9A7jz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948709279) (:by |root) (:id |Bk6w9A7jzleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522948709520) (:by |root) (:id |SJRv50moG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948709852) (:by |root) (:id |rJQ6Dq0Qiz) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948710517) (:by |root) (:id |B1XAvqRmsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522948711631) (:by |root) (:id |SJMRv9AXjf) (:text |:style) (:type :leaf)
|j $ {} (:at 1522948713202) (:by |root) (:id |S1WWd5AQjM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948713580) (:by |root) (:id |HJZxd5Cmjf) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948713849) (:by |root) (:id |SJGfu9C7iz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948716562) (:by |root) (:id |ryZG_50Qoz) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1522948725427) (:by |root) (:id |BJlHO5R7sG) (:text "|\"#292d2e") (:type :leaf)
|r $ {} (:at 1522948727760) (:by |root) (:id |r1xKqAmjM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948732595) (:by |root) (:id |r1xKqAmjMleaf) (:text |:height) (:type :leaf)
|j $ {} (:at 1522948737393) (:by |root) (:id |rJerKqC7iM) (:text |200) (:type :leaf)
|v $ {} (:at 1523073649251) (:by |root) (:id |S1gYuMTSoz) (:type :expr)
:data $ {}
|T $ {} (:at 1523073652232) (:by |root) (:id |S1gYuMTSozleaf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1523073653156) (:by |root) (:id |BySndMTBoM) (:text |16) (:type :leaf)
|r $ {} (:at 1522949511096) (:by |root) (:id |Bkek5pAmsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949514398) (:by |root) (:id |Bkek5pAmsGleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522949514688) (:by |root) (:id |B1Xqa07sG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949515024) (:by |root) (:id |rJXMc6CQjf) (:text |{}) (:type :leaf)
|j $ {} (:at 1522949515868) (:by |root) (:id |B1gE9p0XsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949516569) (:by |root) (:id |Hk4c6CXoG) (:text |:style) (:type :leaf)
|j $ {} (:at 1522949516796) (:by |root) (:id |SybB5607jM) (:type :expr)
:data $ {}
|T $ {} (:at 1522949517616) (:by |root) (:id |SyercpCQsM) (:text |{}) (:type :leaf)
|j $ {} (:at 1522949517994) (:by |root) (:id |HkW85a0XjM) (:type :expr)
:data $ {}
|T $ {} (:at 1523073441257) (:by |root) (:id |HygU560QjM) (:text |:max-width) (:type :leaf)
|j $ {} (:at 1522949520046) (:by |root) (:id |HyfDcpCQjG) (:text |800) (:type :leaf)
|r $ {} (:at 1522949561158) (:by |root) (:id |S1eZ6pAmiM) (:type :expr)
:data $ {}
|T $ {} (:at 1522949564847) (:by |root) (:id |S1eZ6pAmiMleaf) (:text |:margin) (:type :leaf)
|j $ {} (:at 1522949568608) (:by |root) (:id |BkxSTpC7sz) (:text |:auto) (:type :leaf)
|r $ {} (:at 1522949521697) (:by |root) (:id |Sy996AXsz) (:type :expr)
:data $ {}
|T $ {} (:at 1522949526713) (:by |root) (:id |Sy996AXszleaf) (:text |a) (:type :leaf)
|j $ {} (:at 1522949527089) (:by |root) (:id |BkZys6RQiM) (:type :expr)
:data $ {}
|T $ {} (:at 1522949527402) (:by |root) (:id |Hkeks6CXif) (:text |{}) (:type :leaf)
|b $ {} (:at 1522949571040) (:by |root) (:id |SyliapRXif) (:type :expr)
:data $ {}
|T $ {} (:at 1522949573759) (:by |root) (:id |SyliapRXifleaf) (:text |:style) (:type :leaf)
|j $ {} (:at 1522949574034) (:by |root) (:id |BkMRapCXjz) (:type :expr)
:data $ {}
|T $ {} (:at 1522949574394) (:by |root) (:id |rybCpTCmoG) (:text |{}) (:type :leaf)
|j $ {} (:at 1522949574795) (:by |root) (:id |HylJAaRQsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522949576734) (:by |root) (:id |r11Ap0Qoz) (:text |:color) (:type :leaf)
|j $ {} (:at 1522949577037) (:by |root) (:id |By7bCaCQoM) (:type :expr)
:data $ {}
|T $ {} (:at 1522949578687) (:by |root) (:id |H1MZC60Qjz) (:text |hsl) (:type :leaf)
|j $ {} (:at 1522949579834) (:by |root) (:id |Hkg7ATRQiG) (:text |240) (:type :leaf)
|r $ {} (:at 1522949580177) (:by |root) (:id |ByxEAp0QsM) (:text |80) (:type :leaf)
|v $ {} (:at 1522949580410) (:by |root) (:id |HkQE0p0QjG) (:text |80) (:type :leaf)
|r $ {} (:at 1522949599523) (:by |root) (:id |HyuJCCQjz) (:type :expr)
:data $ {}
|T $ {} (:at 1522949603857) (:by |root) (:id |HyuJCCQjzleaf) (:text |:text-decoration) (:type :leaf)
|j $ {} (:at 1522949605606) (:by |root) (:id |B1m3k0CmjG) (:text |:none) (:type :leaf)
|j $ {} (:at 1522949527721) (:by |root) (:id |HJges6RQiG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949529844) (:by |root) (:id |H1loaC7jG) (:text |:href) (:type :leaf)
|j $ {} (:at 1522949530731) (:by |root) (:id |SkXMoTCmiz) (:text "|\"https://github.com/clojure-china/clojure-script.org") (:type :leaf)
|r $ {} (:at 1522949531443) (:by |root) (:id |HyZmsTRXsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522949532535) (:by |root) (:id |HyZmsTRXsfleaf) (:text |:target) (:type :leaf)
|j $ {} (:at 1522949535474) (:by |root) (:id |rJlHia0Xif) (:text "|\"_blank") (:type :leaf)
|r $ {} (:at 1522949538507) (:by |root) (:id |HJzcjpCXsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522949541070) (:by |root) (:id |HJzcjpCXsfleaf) (:text |<>) (:type :leaf)
|j $ {} (:at 1523241745677) (:by |root) (:id |rympopAXif) (:text "|\"Site built with shadow-cljs & Respo.") (:type :leaf)
|comp-header $ {} (:at 1522927468650) (:by |root) (:id |r1xBuDY7sz) (:type :expr)
:data $ {}
|T $ {} (:at 1522927471372) (:by |root) (:id |S1ZBuPKmif) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1522927468650) (:by |root) (:id |S1zBuDKXsf) (:text |comp-header) (:type :leaf)
|r $ {} (:at 1522927468650) (:by |root) (:id |rJmB_DYXoz) (:type :expr)
:data $ {}
|v $ {} (:at 1522927473986) (:by |root) (:id |B1l9_vKmjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927474618) (:by |root) (:id |B1l9_vKmjfleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522927474879) (:by |root) (:id |Bk-odDKXsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927475213) (:by |root) (:id |B1eodvYmif) (:text |{}) (:type :leaf)
|j $ {} (:at 1522927475714) (:by |root) (:id |r1g2dwtmiG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927477728) (:by |root) (:id |rk2_DKXjf) (:text |:style) (:type :leaf)
|j $ {} (:at 1522927478224) (:by |root) (:id |HyG0_DKQsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927478573) (:by |root) (:id |SJZR_wK7if) (:text |{}) (:type :leaf)
|r $ {} (:at 1522927491639) (:by |root) (:id |r1nYvKXoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927619178) (:by |root) (:id |r1nYvKXoGleaf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1522987747340) (:by |root) (:id |BkmoW_Y7sM) (:text |16) (:type :leaf)
|r $ {} (:at 1522927525985) (:by |root) (:id |H1xAovYmof) (:type :expr)
:data $ {}
|T $ {} (:at 1522927526391) (:by |root) (:id |H1xAovYmofleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522927526876) (:by |root) (:id |B1khvYmiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522927527268) (:by |root) (:id |SkN0oDY7jG) (:text |{}) (:type :leaf)
|j $ {} (:at 1522927621887) (:by |root) (:id |H1lCZdY7sM) (:type :expr)
:data $ {}
|T $ {} (:at 1522927623771) (:by |root) (:id |SkR-_Kmof) (:text |:style) (:type :leaf)
|j $ {} (:at 1522927630498) (:by |root) (:id |S1WUG_KXjf) (:type :expr)
:data $ {}
|D $ {} (:at 1522927631372) (:by |root) (:id |S1PMOKXjG) (:text |merge) (:type :leaf)
|L $ {} (:at 1522927635216) (:by |root) (:id |BkSwfOKmsf) (:text |ui/row-parted) (:type :leaf)
|T $ {} (:at 1522927624041) (:by |root) (:id |Skfxz_FmsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927624472) (:by |root) (:id |BkWxfOtQoz) (:text |{}) (:type :leaf)
|j $ {} (:at 1522927626289) (:by |root) (:id |SybzzdYXoz) (:type :expr)
:data $ {}
|T $ {} (:at 1523073421532) (:by |root) (:id |Sk-MOKQjz) (:text |:max-width) (:type :leaf)
|j $ {} (:at 1522927788049) (:by |root) (:id |SkNmzutmif) (:text |800) (:type :leaf)
|r $ {} (:at 1522927792185) (:by |root) (:id |Hybunut7sf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927793839) (:by |root) (:id |Hybunut7sfleaf) (:text |:margin) (:type :leaf)
|j $ {} (:at 1522927798049) (:by |root) (:id |rks3dKXoM) (:text |:auto) (:type :leaf)
|r $ {} (:at 1522987672401) (:by |root) (:id |H1xesMdVsz) (:type :expr)
:data $ {}
|D $ {} (:at 1522987673161) (:by |root) (:id |HJbsGu4jG) (:text |div) (:type :leaf)
|L $ {} (:at 1522987673859) (:by |root) (:id |ryzjMuVjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522987674873) (:by |root) (:id |By7WsM_4oz) (:text |{}) (:type :leaf)
|j $ {} (:at 1522987675176) (:by |root) (:id |HyMXiMOEjM) (:type :expr)
:data $ {}
|T $ {} (:at 1522987678020) (:by |root) (:id |HJWQjfu4jf) (:text |:style) (:type :leaf)
|j $ {} (:at 1523199242597) (:by |root) (:id |BJQfpjDoM) (:type :expr)
:data $ {}
|D $ {} (:at 1523199243635) (:by |root) (:id |BkeQGpswof) (:text |merge) (:type :leaf)
|T $ {} (:at 1522987705583) (:by |root) (:id |BJGIjM_NjM) (:text |ui/row-center) (:type :leaf)
|j $ {} (:at 1523199244273) (:by |root) (:id |HymVGTjDjz) (:type :expr)
:data $ {}
|T $ {} (:at 1523199244604) (:by |root) (:id |B1zEzTswjf) (:text |{}) (:type :leaf)
|j $ {} (:at 1522986685666) (:by |root) (:id |H1MSGTsviz) (:type :expr)
:data $ {}
|T $ {} (:at 1522986687374) (:by |root) (:id |BkLaRw4sfleaf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1522986688435) (:by |root) (:id |H1Oa0w4jf) (:text |:pointer) (:type :leaf)
|r $ {} (:at 1522986480059) (:by |root) (:id |HycWajDoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522986481453) (:by |root) (:id |SkZugCwEjGleaf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1522986481910) (:by |root) (:id |SkgqeADVsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522986490574) (:by |root) (:id |rJxMZCPEjM) (:text |fn) (:type :leaf)
|j $ {} (:at 1522986490880) (:by |root) (:id |HJ-QZAPNiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522986491109) (:by |root) (:id |H1l7ZRvVjz) (:text |e) (:type :leaf)
|j $ {} (:at 1522986491946) (:by |root) (:id |S1X7ZCw4sf) (:text |d!) (:type :leaf)
|r $ {} (:at 1522986493205) (:by |root) (:id |SkZBZ0w4sz) (:type :expr)
:data $ {}
|T $ {} (:at 1522986493976) (:by |root) (:id |SkZBZ0w4szleaf) (:text |d!) (:type :leaf)
|j $ {} (:at 1522986498859) (:by |root) (:id |r1xUZCDEjz) (:text |:pick-case) (:type :leaf)
|r $ {} (:at 1522986501469) (:by |root) (:id |r1aZAwVjz) (:type :expr)
:data $ {}
|T $ {} (:at 1522986505757) (:by |root) (:id |S1GsZ0vNif) (:text |rand-int) (:type :leaf)
|j $ {} (:at 1522991167921) (:by |root) (:id |S1fMz0wVjG) (:text |10) (:type :leaf)
|T $ {} (:at 1522927528376) (:by |root) (:id |r1ll2vYmjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927530589) (:by |root) (:id |r1ll2vYmjfleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522927530806) (:by |root) (:id |r1-72vFmsz) (:type :expr)
:data $ {}
|T $ {} (:at 1522927531132) (:by |root) (:id |Hyx73PY7sM) (:text |{}) (:type :leaf)
|j $ {} (:at 1522927575345) (:by |root) (:id |HJxy1OtXjf) (:type :expr)
:data $ {}
|D $ {} (:at 1522927578376) (:by |root) (:id |B1ekdFmif) (:text |:style) (:type :leaf)
|T $ {} (:at 1522927578745) (:by |root) (:id |r1xXk_tXjG) (:type :expr)
:data $ {}
|D $ {} (:at 1522927579304) (:by |root) (:id |H1WmyOtmof) (:text |{}) (:type :leaf)
|T $ {} (:at 1522927531463) (:by |root) (:id |BkBmnDKmoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927535945) (:by |root) (:id |BkEm3DF7iz) (:text |:background-image) (:type :leaf)
|j $ {} (:at 1522927536567) (:by |root) (:id |HJKhPF7iz) (:type :expr)
:data $ {}
|T $ {} (:at 1522927538381) (:by |root) (:id |Hkm_nPYQoM) (:text |str) (:type :leaf)
|j $ {} (:at 1522927566996) (:by |root) (:id |Bko3wFmiM) (:text "|\"url(http://cdn.tiye.me/logo/cljs.png)") (:type :leaf)
|j $ {} (:at 1522927580509) (:by |root) (:id |HyGV1_KXiG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927583672) (:by |root) (:id |HyGV1_KXiGleaf) (:text |:width) (:type :leaf)
|j $ {} (:at 1522927584441) (:by |root) (:id |HkbdJdFQoz) (:text |40) (:type :leaf)
|r $ {} (:at 1522927584949) (:by |root) (:id |HJxK1dt7jf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927586041) (:by |root) (:id |HJxK1dt7jfleaf) (:text |:height) (:type :leaf)
|j $ {} (:at 1522927586792) (:by |root) (:id |BJS5kdtQjz) (:text |40) (:type :leaf)
|v $ {} (:at 1522927587598) (:by |root) (:id |Bk21OKQoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927591558) (:by |root) (:id |Bk21OKQoGleaf) (:text |:background-position) (:type :leaf)
|j $ {} (:at 1522927595747) (:by |root) (:id |SygeluYmoz) (:text "|\"center center") (:type :leaf)
|x $ {} (:at 1522927601049) (:by |root) (:id |ByeFedKQof) (:type :expr)
:data $ {}
|T $ {} (:at 1522927610287) (:by |root) (:id |ByeFedKQofleaf) (:text |:background-size) (:type :leaf)
|j $ {} (:at 1522927607921) (:by |root) (:id |HkgTldF7sf) (:text |:cover) (:type :leaf)
|n $ {} (:at 1524065049871) (:by |root) (:id |rJgGQQ1S2G) (:type :expr)
:data $ {}
|T $ {} (:at 1524065050702) (:by |root) (:id |rJgGQQ1S2Gleaf) (:text |=<) (:type :leaf)
|j $ {} (:at 1524065051089) (:by |root) (:id |HJgQQXyS2M) (:text |8) (:type :leaf)
|r $ {} (:at 1524065051752) (:by |root) (:id |rkzQ77yS3G) (:text |nil) (:type :leaf)
|r $ {} (:at 1522927639027) (:by |root) (:id |HJsf7yHnf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927639470) (:by |root) (:id |HkgyQOKQsMleaf) (:text |a) (:type :leaf)
|j $ {} (:at 1522927642149) (:by |root) (:id |SkeGXuYXoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927642436) (:by |root) (:id |Bkgm_FXoM) (:text |{}) (:type :leaf)
|j $ {} (:at 1522927642686) (:by |root) (:id |r1emQOtXjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927644433) (:by |root) (:id |Hym7_YQiM) (:text |:href) (:type :leaf)
|j $ {} (:at 1522988106607) (:by |root) (:id |Byr7OtQiG) (:text "|\"https://clojurescript.org/") (:type :leaf)
|r $ {} (:at 1522927646332) (:by |root) (:id |H1ZUQ_Y7sz) (:type :expr)
:data $ {}
|T $ {} (:at 1522927731637) (:by |root) (:id |H1ZUQ_Y7szleaf) (:text |:inner-text) (:type :leaf)
|j $ {} (:at 1524065147233) (:by |root) (:id |S1l3dOtmsz) (:text "|\"(Unofficial)") (:type :leaf)
|x $ {} (:at 1522927764444) (:by |root) (:id |By-hquYmsz) (:type :expr)
:data $ {}
|T $ {} (:at 1522927765622) (:by |root) (:id |By-hquYmszleaf) (:text |:style) (:type :leaf)
|j $ {} (:at 1522927765852) (:by |root) (:id |HkzRcdtQsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522927766220) (:by |root) (:id |Hy-A5uFXsf) (:text |{}) (:type :leaf)
|j $ {} (:at 1522927766440) (:by |root) (:id |rkLR9OK7iG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927767742) (:by |root) (:id |ryBR9uKQsz) (:text |:color) (:type :leaf)
|j $ {} (:at 1522927768789) (:by |root) (:id |rJgZidYmof) (:type :expr)
:data $ {}
|T $ {} (:at 1522927769107) (:by |root) (:id |BJzxi_KQjf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1522927770765) (:by |root) (:id |HyV-sdtmoG) (:text |240) (:type :leaf)
|r $ {} (:at 1522927771097) (:by |root) (:id |r1XQodKmjM) (:text |80) (:type :leaf)
|v $ {} (:at 1522927771367) (:by |root) (:id |r1LmouKQoz) (:text |80) (:type :leaf)
|r $ {} (:at 1522987773675) (:by |root) (:id |HJUZQONjz) (:type :expr)
:data $ {}
|T $ {} (:at 1522987782982) (:by |root) (:id |HJUZQONjzleaf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1522987789044) (:by |root) (:id |SJmJG7dVoz) (:text |ui/font-fancy) (:type :leaf)
|v $ {} (:at 1522987790811) (:by |root) (:id |rJewGm_Njf) (:type :expr)
:data $ {}
|T $ {} (:at 1522987793823) (:by |root) (:id |rJewGm_Njfleaf) (:text |:text-decoration) (:type :leaf)
|j $ {} (:at 1522987794651) (:by |root) (:id |ryQczXuEif) (:text |:none) (:type :leaf)
|v $ {} (:at 1522927637488) (:by |root) (:id |H1gTMdYmoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927637949) (:by |root) (:id |H1gTMdYmoGleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522927638149) (:by |root) (:id |SyQ0fdYmiG) (:type :expr)
:data $ {}
|T $ {} (:at 1522927638491) (:by |root) (:id |Hyf0G_FXjG) (:text |{}) (:type :leaf)
|comp-resources $ {} (:at 1522929018497) (:by |root) (:id |Bk-fK6Y7iG) (:type :expr)
:data $ {}
|T $ {} (:at 1522929023075) (:by |root) (:id |HyMMFpFmsf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1522929018497) (:by |root) (:id |BJQzYpt7jz) (:text |comp-resources) (:type :leaf)
|r $ {} (:at 1522929018497) (:by |root) (:id |BJ4MFaYmjG) (:type :expr)
:data $ {}
|v $ {} (:at 1522929025195) (:by |root) (:id |SyxKYTFmsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522929025658) (:by |root) (:id |SyxKYTFmsGleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522929025885) (:by |root) (:id |HJz9KTYQsz) (:type :expr)
:data $ {}
|T $ {} (:at 1522929026196) (:by |root) (:id |rkbctpFXjM) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948092643) (:by |root) (:id |Hkr-_AXoz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948095139) (:by |root) (:id |H1x4bu0Xsz) (:text |:style) (:type :leaf)
|j $ {} (:at 1522948095386) (:by |root) (:id |ry7wZuA7sM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948095759) (:by |root) (:id |SJGPbdRQsG) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948096035) (:by |root) (:id |BJfu-uAQoG) (:type :expr)
:data $ {}
|T $ {} (:at 1523073575525) (:by |root) (:id |H1buZOCmsM) (:text |:max-width) (:type :leaf)
|j $ {} (:at 1522948097846) (:by |root) (:id |HJzt-uR7jf) (:text |800) (:type :leaf)
|r $ {} (:at 1522948099268) (:by |root) (:id |BJZs-dR7if) (:type :expr)
:data $ {}
|T $ {} (:at 1522948100197) (:by |root) (:id |BJZs-dR7ifleaf) (:text |:margin) (:type :leaf)
|j $ {} (:at 1522948103370) (:by |root) (:id |HyBnb_CmiG) (:text |:auto) (:type :leaf)
|v $ {} (:at 1523073585619) (:by |root) (:id |H1cNz6BjM) (:type :expr)
:data $ {}
|T $ {} (:at 1523073586862) (:by |root) (:id |H1cNz6BjMleaf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1523073588023) (:by |root) (:id |rJnVMpHof) (:text |16) (:type :leaf)
|r $ {} (:at 1522929026704) (:by |root) (:id |BJloKaFXoM) (:type :expr)
:data $ {}
|T $ {} (:at 1522929029255) (:by |root) (:id |BJloKaFXoMleaf) (:text |comp-md-block) (:type :leaf)
|j $ {} (:at 1541525906104) (:by |root) (:id |y875yEP2ur) (:type :expr)
:data $ {}
|T $ {} (:at 1558092125890) (:by |rJG4IHzWf) (:id |Sk0FTtmof) (:text |inline) (:type :leaf)
|j $ {} (:at 1558092123190) (:by |rJG4IHzWf) (:id |aTxFP39Vde) (:text "|\"resource.md") (:type :leaf)
|r $ {} (:at 1522929031007) (:by |root) (:id |rJyqaKXiM) (:type :expr)
:data $ {}
|T $ {} (:at 1522929031337) (:by |root) (:id |HybRF6FQoG) (:text |{}) (:type :leaf)
|j $ {} (:at 1522990546889) (:by |root) (:id |HJZjC6u4of) (:type :expr)
:data $ {}
|T $ {} (:at 1522990549911) (:by |root) (:id |H1xsRaO4jz) (:text |:class-name) (:type :leaf)
|j $ {} (:at 1522990553018) (:by |root) (:id |BkQARadNoG) (:text "|\"content") (:type :leaf)
|comp-tool-card $ {} (:at 1522948922085) (:by |root) (:id |H1bzriR7jM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948923551) (:by |root) (:id |S1GzrjCXsM) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1522948922085) (:by |root) (:id |ry7GHoCXjf) (:text |comp-tool-card) (:type :leaf)
|r $ {} (:at 1522948922085) (:by |root) (:id |ryEfroAmsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948925023) (:by |root) (:id |rJGNrjCQsf) (:text |info) (:type :leaf)
|v $ {} (:at 1522948925551) (:by |root) (:id |r1UBiCQsf) (:type :expr)
:data $ {}
|T $ {} (:at 1522948926049) (:by |root) (:id |r1UBiCQsfleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522948926286) (:by |root) (:id |rkNIBjAXof) (:type :expr)
:data $ {}
|T $ {} (:at 1522948926585) (:by |root) (:id |HkmLHjAmjz) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948927524) (:by |root) (:id |HJuSi07iM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948928829) (:by |root) (:id |HJ-PSs0Xjf) (:text |:style) (:type :leaf)
|j $ {} (:at 1522949008070) (:by |root) (:id |Hyeu5oCmiz) (:type :expr)
:data $ {}
|D $ {} (:at 1522949008970) (:by |root) (:id |rJZdci0msM) (:text |merge) (:type :leaf)
|L $ {} (:at 1522949013038) (:by |root) (:id |B1NY9oCQsM) (:text |ui/row-parted) (:type :leaf)
|T $ {} (:at 1522948929096) (:by |root) (:id |SkXtHsAXjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522948929585) (:by |root) (:id |r1MYSs0QjM) (:text |{}) (:type :leaf)
|r $ {} (:at 1522949207100) (:by |root) (:id |r1xyDnCQjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522949213811) (:by |root) (:id |r1xyDnCQjfleaf) (:text |:border) (:type :leaf)
|j $ {} (:at 1522949214250) (:by |root) (:id |rJ7Uw2RmiG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949216381) (:by |root) (:id |Skuv3A7oz) (:text |str) (:type :leaf)
|j $ {} (:at 1522949221904) (:by |root) (:id |BkKDh0Qjf) (:text "|\"1px solid ") (:type :leaf)
|r $ {} (:at 1522949222957) (:by |root) (:id |SJgJu2RQjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949223460) (:by |root) (:id |rJJd3AmoG) (:text |hsl) (:type :leaf)
|j $ {} (:at 1522949223731) (:by |root) (:id |SJl_3AQoG) (:text |0) (:type :leaf)
|r $ {} (:at 1522949223965) (:by |root) (:id |rkWednCmiG) (:text |0) (:type :leaf)
|v $ {} (:at 1522949305779) (:by |root) (:id |ryQlOh07iM) (:text |90) (:type :leaf)
|v $ {} (:at 1522949230155) (:by |root) (:id |S1l8d3Rmiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522949232107) (:by |root) (:id |S1l8d3Rmizleaf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1522949243005) (:by |root) (:id |rkVd_nCmiM) (:text "|\"8px 16px") (:type :leaf)
|x $ {} (:at 1522949246202) (:by |root) (:id |BJgIt20mjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522949277954) (:by |root) (:id |BJgIt20mjfleaf) (:text |:border-radius) (:type :leaf)
|j $ {} (:at 1522949280510) (:by |root) (:id |HJl8on0XoM) (:text "|\"8px") (:type :leaf)
|y $ {} (:at 1522949292679) (:by |root) (:id |r1r320QsM) (:type :expr)
:data $ {}
|T $ {} (:at 1522949294948) (:by |root) (:id |r1r320QsMleaf) (:text |:margin-top) (:type :leaf)
|j $ {} (:at 1522949299675) (:by |root) (:id |Syu33A7sf) (:text |16) (:type :leaf)
|r $ {} (:at 1522949253779) (:by |root) (:id |B1AK2R7jz) (:type :expr)
:data $ {}
|D $ {} (:at 1522949255471) (:by |root) (:id |rygAt20Xoz) (:text |div) (:type :leaf)
|L $ {} (:at 1522949255720) (:by |root) (:id |Byel93RQiM) (:type :expr)
:data $ {}
|T $ {} (:at 1522949256083) (:by |root) (:id |B1echRmjM) (:text |{}) (:type :leaf)
|T $ {} (:at 1522949258057) (:by |root) (:id |Syez5hAmiG) (:type :expr)
:data $ {}
|D $ {} (:at 1522949258819) (:by |root) (:id |Bk-MqnC7sM) (:text |div) (:type :leaf)
|L $ {} (:at 1522949259709) (:by |root) (:id |S1E9hAXoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949260031) (:by |root) (:id |ByzXchRQsM) (:text |{}) (:type :leaf)
|T $ {} (:at 1522949316589) (:by |root) (:id |Syaan0Xoz) (:type :expr)
:data $ {}
|D $ {} (:at 1522949317160) (:by |root) (:id |S1ea6nR7jG) (:text |a) (:type :leaf)
|L $ {} (:at 1522949317536) (:by |root) (:id |SJR63CQiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522949317852) (:by |root) (:id |SyG6a3CmiG) (:text |{}) (:type :leaf)
|j $ {} (:at 1522949319322) (:by |root) (:id |rylkC2R7jM) (:type :expr)
:data $ {}
|T $ {} (:at 1522949320934) (:by |root) (:id |ry1R2C7jG) (:text |:href) (:type :leaf)
|j $ {} (:at 1522949322217) (:by |root) (:id |Sk-fAhCXsz) (:type :expr)
:data $ {}
|T $ {} (:at 1522949323260) (:by |root) (:id |HJGAhRmjM) (:text |:url) (:type :leaf)
|j $ {} (:at 1522949324155) (:by |root) (:id |SJM7RhCQof) (:text |info) (:type :leaf)
|r $ {} (:at 1522949326228) (:by |root) (:id |H1gICnCQif) (:type :expr)
:data $ {}
|T $ {} (:at 1522949327411) (:by |root) (:id |H1gICnCQifleaf) (:text |:target) (:type :leaf)
|j $ {} (:at 1522949333673) (:by |root) (:id |B1K0hAQif) (:text "|\"_blank") (:type :leaf)
|v $ {} (:at 1522991373773) (:by |root) (:id |Hyx8fbKVsz) (:type :expr)
:data $ {}
|T $ {} (:at 1522991375336) (:by |root) (:id |Hyx8fbKVszleaf) (:text |:style) (:type :leaf)
|j $ {} (:at 1522991376499) (:by |root) (:id |S1ufWtNoM) (:type :expr)
:data $ {}
|T $ {} (:at 1522991376846) (:by |root) (:id |BkUDM-KEiM) (:text |{}) (:type :leaf)
|j $ {} (:at 1522991377068) (:by |root) (:id |HyGFzZKNjM) (:type :expr)
:data $ {}
|T $ {} (:at 1522991381138) (:by |root) (:id |HJ-YMWt4oM) (:text |:text-decoration) (:type :leaf)
|j $ {} (:at 1522991381991) (:by |root) (:id |By7TGZKNjz) (:text |:none) (:type :leaf)
|r $ {} (:at 1522991382517) (:by |root) (:id |r1E0GZtNif) (:type :expr)
:data $ {}
|T $ {} (:at 1522991387840) (:by |root) (:id |r1E0GZtNifleaf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1522991388377) (:by |root) (:id |ByG4QWtViG) (:text |16) (:type :leaf)
|v $ {} (:at 1522991388970) (:by |root) (:id |ryxSQbt4sM) (:type :expr)
:data $ {}
|T $ {} (:at 1522991390459) (:by |root) (:id |ryxSQbt4sMleaf) (:text |:color) (:type :leaf)
|j $ {} (:at 1522991390718) (:by |root) (:id |H1lPQbKEif) (:type :expr)
:data $ {}
|T $ {} (:at 1522991391790) (:by |root) (:id |HJP7-F4jM) (:text |hsl) (:type :leaf)
|j $ {} (:at 1522991392932) (:by |root) (:id |BkxOQZKEsf) (:text |240) (:type :leaf)
|r $ {} (:at 1522991397119) (:by |root) (:id |SyxYXWYNiG) (:text |90) (:type :leaf)
|v $ {} (:at 1522991433077) (:by |root) (:id |S17tQZFNsz) (:text |70) (:type :leaf)
|x $ {} (:at 1522991406888) (:by |root) (:id |ByxDEZtVsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522991410203) (:by |root) (:id |ByxDEZtVsGleaf) (:text |:line-height) (:type :leaf)
|j $ {} (:at 1522991421061) (:by |root) (:id |r1rqE-KNiG) (:text "|\"1.4em") (:type :leaf)
|y $ {} (:at 1522991437988) (:by |root) (:id |Hye8LZYNsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522991444159) (:by |root) (:id |Hye8LZYNsGleaf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1522991447236) (:by |root) (:id |H1b2IZFNoM) (:text |ui/font-fancy) (:type :leaf)
|T $ {} (:at 1522948942543) (:by |root) (:id |ByDLsCXoz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948944117) (:by |root) (:id |ByDLsCXozleaf) (:text |<>) (:type :leaf)
|j $ {} (:at 1522948947913) (:by |root) (:id |S1bnUjCmsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948948672) (:by |root) (:id |BytLjCQjM) (:text |:name) (:type :leaf)
|j $ {} (:at 1522948949057) (:by |root) (:id |rybaIsCQiz) (:text |info) (:type :leaf)
|j $ {} (:at 1522949261687) (:by |root) (:id |B1I9hRmjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522949262122) (:by |root) (:id |B1I9hRmjfleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522949262381) (:by |root) (:id |HJBUchAQiG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949262758) (:by |root) (:id |ByNL93CQsf) (:text |{}) (:type :leaf)
|r $ {} (:at 1522949263442) (:by |root) (:id |SyfPch0QjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949263875) (:by |root) (:id |SyfPch0QjGleaf) (:text |<>) (:type :leaf)
|j $ {} (:at 1522949265874) (:by |root) (:id |r1cq20msz) (:type :expr)
:data $ {}
|T $ {} (:at 1522949268584) (:by |root) (:id |BkWd5hCmoM) (:text |:description) (:type :leaf)
|j $ {} (:at 1522949270076) (:by |root) (:id |Sy093CmsM) (:text |info) (:type :leaf)
|v $ {} (:at 1522948949957) (:by |root) (:id |ByeALsRXiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948950536) (:by |root) (:id |ByeALsRXizleaf) (:text |if) (:type :leaf)
|j $ {} (:at 1522948953067) (:by |root) (:id |r1WZDsR7sG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948953969) (:by |root) (:id |rylkPiAQoM) (:text |some?) (:type :leaf)
|j $ {} (:at 1522948956329) (:by |root) (:id |BkEvsA7jG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948957033) (:by |root) (:id |S1WGPoAmif) (:text |:logo) (:type :leaf)
|j $ {} (:at 1522948957733) (:by |root) (:id |H1ESvj07of) (:text |info) (:type :leaf)
|r $ {} (:at 1522948959878) (:by |root) (:id |B1ZuDsCmoM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948960950) (:by |root) (:id |B1ZuDsCmoMleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522948961172) (:by |root) (:id |ByXFDoCmiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948961515) (:by |root) (:id |rkGtPoRmjf) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948962849) (:by |root) (:id |H1sPi0XjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948963656) (:by |root) (:id |S19ws0miG) (:text |:style) (:type :leaf)
|j $ {} (:at 1522948963935) (:by |root) (:id |B1fnwoRmjz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948964329) (:by |root) (:id |r1W3viCQsf) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948964639) (:by |root) (:id |rJTPsC7oz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948969219) (:by |root) (:id |rkB2vs0mjz) (:text |:background-image) (:type :leaf)
|j $ {} (:at 1522948971020) (:by |root) (:id |rylXds0mif) (:type :expr)
:data $ {}
|T $ {} (:at 1522948971885) (:by |root) (:id |rk7us07iz) (:text |str) (:type :leaf)
|j $ {} (:at 1522949149751) (:by |root) (:id |rJzE_sAXoz) (:text "|\"url(") (:type :leaf)
|n $ {} (:at 1522948980554) (:by |root) (:id |SkTdiCmoz) (:type :expr)
:data $ {}
|T $ {} (:at 1522949104323) (:by |root) (:id |rJgqOjAmjf) (:text |:logo) (:type :leaf)
|j $ {} (:at 1522948982374) (:by |root) (:id |S1f0usAXof) (:text |info) (:type :leaf)
|r $ {} (:at 1522948976720) (:by |root) (:id |ry__jCXsM) (:text "|\")") (:type :leaf)
|r $ {} (:at 1522948988779) (:by |root) (:id |BJHYsAQjz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948995936) (:by |root) (:id |BJHYsAQjzleaf) (:text |:background-size) (:type :leaf)
|j $ {} (:at 1522949083941) (:by |root) (:id |SkW3Ko0Xiz) (:text |:cover) (:type :leaf)
|t $ {} (:at 1522949085388) (:by |root) (:id |S1xByhCXof) (:type :expr)
:data $ {}
|T $ {} (:at 1522949090327) (:by |root) (:id |S1xByhCXofleaf) (:text |:background-position) (:type :leaf)
|j $ {} (:at 1522949091324) (:by |root) (:id |HkQ5Jh0Xof) (:text |:center) (:type :leaf)
|v $ {} (:at 1522948998336) (:by |root) (:id |HJ-RKs07iG) (:type :expr)
:data $ {}
|T $ {} (:at 1522949000256) (:by |root) (:id |HJ-RKs07iGleaf) (:text |:width) (:type :leaf)
|j $ {} (:at 1522949002861) (:by |root) (:id |rk-9jAQiG) (:text |40) (:type :leaf)
|x $ {} (:at 1522949003615) (:by |root) (:id |HkN9o0XsM) (:type :expr)
:data $ {}
|T $ {} (:at 1522949004620) (:by |root) (:id |HkN9o0XsMleaf) (:text |:height) (:type :leaf)
|j $ {} (:at 1522949005497) (:by |root) (:id |HJ-Sqj0Qiz) (:text |40) (:type :leaf)
|comp-tools $ {} (:at 1522928398988) (:by |root) (:id |SkgPGoYmiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522928401054) (:by |root) (:id |Hk-vMiKXiz) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1522928398988) (:by |root) (:id |ryGPziKmoG) (:text |comp-tools) (:type :leaf)
|r $ {} (:at 1522928398988) (:by |root) (:id |r17PzsKQof) (:type :expr)
:data $ {}
|v $ {} (:at 1522928945803) (:by |root) (:id |S1e9VTt7sG) (:type :expr)
:data $ {}
|D $ {} (:at 1522928947189) (:by |root) (:id |SJb9VpKmif) (:text |div) (:type :leaf)
|L $ {} (:at 1522928947429) (:by |root) (:id |H1mi4aFXsG) (:type :expr)
:data $ {}
|T $ {} (:at 1522928949124) (:by |root) (:id |BJfiNaKXoM) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948067629) (:by |root) (:id |HynJuAmjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948069601) (:by |root) (:id |ryskOAXjG) (:text |:style) (:type :leaf)
|j $ {} (:at 1522948069900) (:by |root) (:id |BybAJOAXjM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948072185) (:by |root) (:id |HkgCk_RmjG) (:text |{}) (:type :leaf)
|j $ {} (:at 1522948072426) (:by |root) (:id |ry7xxdAQsM) (:type :expr)
:data $ {}
|T $ {} (:at 1523073394169) (:by |root) (:id |HJzlgdAXoM) (:text |:max-width) (:type :leaf)
|j $ {} (:at 1522948074300) (:by |root) (:id |Bk4Wxd0QoM) (:text |800) (:type :leaf)
|r $ {} (:at 1522948075073) (:by |root) (:id |H1e7e_R7iG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948076206) (:by |root) (:id |H1e7e_R7iGleaf) (:text |:margin) (:type :leaf)
|j $ {} (:at 1522948077430) (:by |root) (:id |SyH4e_0XoM) (:text |:auto) (:type :leaf)
|v $ {} (:at 1523073600790) (:by |root) (:id |H1gYrfpBjz) (:type :expr)
:data $ {}
|T $ {} (:at 1523073602257) (:by |root) (:id |H1gYrfpBjzleaf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1523073603549) (:by |root) (:id |SJHqHfpSoG) (:text |16) (:type :leaf)
|N $ {} (:at 1522928949667) (:by |root) (:id |SyIAEzOnz) (:type :expr)
:data $ {}
|T $ {} (:at 1522928956555) (:by |root) (:id |rJR4Ttmizleaf) (:text |comp-md-block) (:type :leaf)
|j $ {} (:at 1541526068585) (:by |root) (:id |vj2taqWrT) (:type :expr)
:data $ {}
|T $ {} (:at 1558092161811) (:by |rJG4IHzWf) (:id |HJxBSpK7jz) (:text |inline) (:type :leaf)
|j $ {} (:at 1558092163574) (:by |rJG4IHzWf) (:id |Nd-2berHIF) (:text "|\"quote.md") (:type :leaf)
|r $ {} (:at 1522929001629) (:by |root) (:id |SyGOTYQoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522929001979) (:by |root) (:id |SygbuatQsz) (:text |{}) (:type :leaf)
|j $ {} (:at 1522990526339) (:by |root) (:id |Hy-L6p_Eiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522990528100) (:by |root) (:id |r1eUppO4iG) (:text |:class-name) (:type :leaf)
|j $ {} (:at 1522990532235) (:by |root) (:id |ByVO66O4oz) (:text "|\"content") (:type :leaf)
|Q $ {} (:at 1523460830629) (:by |root) (:id |BkvJijosG) (:type :expr)
:data $ {}
|T $ {} (:at 1523460843445) (:by |root) (:id |BkvJijosGleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1523460843718) (:by |root) (:id |HyVgsoosf) (:type :expr)
:data $ {}
|T $ {} (:at 1523461207929) (:by |root) (:id |rJfQxoiiiG) (:text |{}) (:type :leaf)
|j $ {} (:at 1523461209787) (:by |root) (:id |rkzDnjjoz) (:type :expr)
:data $ {}
|T $ {} (:at 1523461210672) (:by |root) (:id |HJggP3ijiM) (:text |:style) (:type :leaf)
|j $ {} (:at 1523461211002) (:by |root) (:id |H1GXvnjosz) (:type :expr)
:data $ {}
|T $ {} (:at 1523461211324) (:by |root) (:id |SkWmwnjijf) (:text |{}) (:type :leaf)
|j $ {} (:at 1523461211553) (:by |root) (:id |SkED2sjsM) (:type :expr)
:data $ {}
|T $ {} (:at 1523461218521) (:by |root) (:id |HyrXwhoosM) (:text |:margin-top) (:type :leaf)
|j $ {} (:at 1523461224112) (:by |root) (:id |rkxjw2ojsz) (:text |48) (:type :leaf)
|r $ {} (:at 1523460867871) (:by |root) (:id |SJn-osoiz) (:type :expr)
:data $ {}
|T $ {} (:at 1523460883775) (:by |root) (:id |SJn-osoizleaf) (:text |<>) (:type :leaf)
|j $ {} (:at 1523460888000) (:by |root) (:id |Hk-3MoosjM) (:text ||Learning) (:type :leaf)
|r $ {} (:at 1523460889232) (:by |root) (:id |H1eZQooioz) (:type :expr)
:data $ {}
|T $ {} (:at 1523460889594) (:by |root) (:id |S1ZmjoiiM) (:text |{}) (:type :leaf)
|j $ {} (:at 1523460930656) (:by |root) (:id |S1eirsjosf) (:type :expr)
:data $ {}
|T $ {} (:at 1523460932301) (:by |root) (:id |rkoHijsiG) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1523460933407) (:by |root) (:id |rkpSjjsjM) (:text |24) (:type :leaf)
|r $ {} (:at 1523460934232) (:by |root) (:id |S1MCHoiosz) (:type :expr)
:data $ {}
|T $ {} (:at 1523460935729) (:by |root) (:id |S1MCHoioszleaf) (:text |:font-weight) (:type :leaf)
|j $ {} (:at 1523460937986) (:by |root) (:id |BJ-gIoiisz) (:text |100) (:type :leaf)
|v $ {} (:at 1523460939103) (:by |root) (:id |r1b7IjssiM) (:type :expr)
:data $ {}
|T $ {} (:at 1523460941585) (:by |root) (:id |r1b7IjssiMleaf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1523461006306) (:by |root) (:id |SJe8Uojoif) (:text |ui/font-normal) (:type :leaf)
|x $ {} (:at 1523460955446) (:by |root) (:id |r1xXPjossz) (:type :expr)
:data $ {}
|T $ {} (:at 1523460958597) (:by |root) (:id |r1xXPjosszleaf) (:text |:vertical-align) (:type :leaf)
|j $ {} (:at 1523460960383) (:by |root) (:id |HkePwjjijf) (:text |:middle) (:type :leaf)
|v $ {} (:at 1523460890864) (:by |root) (:id |rJ77jiiif) (:type :expr)
:data $ {}
|T $ {} (:at 1523460891485) (:by |root) (:id |rJ77jiiifleaf) (:text |=<) (:type :leaf)
|j $ {} (:at 1523460893341) (:by |root) (:id |H1Vmijjiz) (:text |16) (:type :leaf)
|r $ {} (:at 1523460893992) (:by |root) (:id |r1UXjsoof) (:text |nil) (:type :leaf)
|x $ {} (:at 1523460894648) (:by |root) (:id |HkwXoiisf) (:type :expr)
:data $ {}
|T $ {} (:at 1523460922622) (:by |root) (:id |HkwXoiisfleaf) (:text |a) (:type :leaf)
|j $ {} (:at 1523460896703) (:by |root) (:id |BJxK7oissM) (:type :expr)
:data $ {}
|T $ {} (:at 1523460897053) (:by |root) (:id |ryKmsjojG) (:text |{}) (:type :leaf)
|j $ {} (:at 1523460897263) (:by |root) (:id |B14KXoijsf) (:type :expr)
:data $ {}
|T $ {} (:at 1523460898009) (:by |root) (:id |Bk7YXsosjM) (:text |:style) (:type :leaf)
|j $ {} (:at 1523460962115) (:by |root) (:id |BkgqDijojz) (:type :expr)
:data $ {}
|D $ {} (:at 1523460963057) (:by |root) (:id |SJ-5voissz) (:text |merge) (:type :leaf)
|T $ {} (:at 1523460900995) (:by |root) (:id |SyVcQojjsM) (:text |ui/button) (:type :leaf)
|j $ {} (:at 1523460963537) (:by |root) (:id |Sy2vsojoG) (:type :expr)
:data $ {}
|T $ {} (:at 1523460963858) (:by |root) (:id |BJBsPssosG) (:text |{}) (:type :leaf)
|j $ {} (:at 1523460964055) (:by |root) (:id |S1XhPsojof) (:type :expr)
:data $ {}
|T $ {} (:at 1523460966592) (:by |root) (:id |S1fnPsiijz) (:text |:vertical-align) (:type :leaf)
|j $ {} (:at 1523460968836) (:by |root) (:id |HJl1uioosG) (:text |:middle) (:type :leaf)
|r $ {} (:at 1523460971112) (:by |root) (:id |rJe7diijiM) (:type :expr)
:data $ {}
|T $ {} (:at 1523460975587) (:by |root) (:id |rJe7diijiMleaf) (:text |:border-radius) (:type :leaf)
|j $ {} (:at 1523460978507) (:by |root) (:id |S1xu_oijsG) (:text "|\"16px") (:type :leaf)
|v $ {} (:at 1523460981037) (:by |root) (:id |Syxadsisoz) (:type :expr)
:data $ {}
|T $ {} (:at 1523460982146) (:by |root) (:id |Syxadsisozleaf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1523460984717) (:by |root) (:id |rk1FoissM) (:text "|\"0 16px") (:type :leaf)
|x $ {} (:at 1523460991709) (:by |root) (:id |rkdYioisz) (:type :expr)
:data $ {}
|T $ {} (:at 1523460995499) (:by |root) (:id |rkdYioiszleaf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1523461000951) (:by |root) (:id |H1nKsjjjG) (:text |ui/font-fancy) (:type :leaf)
|y $ {} (:at 1523461011432) (:by |root) (:id |SyZiqsjssM) (:type :expr)
:data $ {}
|T $ {} (:at 1523461013337) (:by |root) (:id |SyZiqsjssMleaf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1523461019232) (:by |root) (:id |HJv65soisM) (:text |20) (:type :leaf)
|yT $ {} (:at 1523461059496) (:by |root) (:id |HJ-oTisojf) (:type :expr)
:data $ {}
|T $ {} (:at 1523461063487) (:by |root) (:id |HJ-oTisojfleaf) (:text |:text-decoration) (:type :leaf)
|j $ {} (:at 1523461064591) (:by |root) (:id |BklAiosoz) (:text |:none) (:type :leaf)
|yj $ {} (:at 1523461083467) (:by |root) (:id |H1gQk3sojz) (:type :expr)
:data $ {}
|T $ {} (:at 1523461085412) (:by |root) (:id |H1gQk3sojzleaf) (:text |:line-height) (:type :leaf)
|j $ {} (:at 1523461094421) (:by |root) (:id |BkLHy2oijG) (:text "|\"32px") (:type :leaf)
|yr $ {} (:at 1523461099071) (:by |root) (:id |ryxml3jisM) (:type :expr)
:data $ {}
|T $ {} (:at 1523461101591) (:by |root) (:id |ryxml3jisMleaf) (:text |:display) (:type :leaf)
|j $ {} (:at 1523461105988) (:by |root) (:id |HJxIxhsojM) (:text |:inline-block) (:type :leaf)
|r $ {} (:at 1523461025176) (:by |root) (:id |SyeYssoooz) (:type :expr)
:data $ {}
|T $ {} (:at 1523461027193) (:by |root) (:id |SyeYssooozleaf) (:text |:href) (:type :leaf)
|j $ {} (:at 1523461075878) (:by |root) (:id |S1HisjjjoM) (:text "|\"http://clojurescript.io/") (:type :leaf)
|v $ {} (:at 1523461050120) (:by |root) (:id |S1fajjijM) (:type :expr)
:data $ {}
|T $ {} (:at 1523461051710) (:by |root) (:id |S1fajjijMleaf) (:text |:target) (:type :leaf)
|j $ {} (:at 1523461078716) (:by |root) (:id |rkfEpisiiz) (:text "|\"_blank") (:type :leaf)
|r $ {} (:at 1523460902361) (:by |root) (:id |r1WC7ssjoz) (:type :expr)
:data $ {}
|T $ {} (:at 1523460902815) (:by |root) (:id |r1WC7ssjozleaf) (:text |<>) (:type :leaf)
|j $ {} (:at 1523460915910) (:by |root) (:id |Bk-J4sissf) (:text "|\"Get an online REPL") (:type :leaf)
|R $ {} (:at 1522928949667) (:by |root) (:id |SJw5qojjz) (:type :expr)
:data $ {}
|T $ {} (:at 1522928956555) (:by |root) (:id |rJR4Ttmizleaf) (:text |comp-md-block) (:type :leaf)
|j $ {} (:at 1541526017237) (:by |root) (:id |pTDyIwhl8T) (:type :expr)
:data $ {}
|T $ {} (:at 1558092167157) (:by |rJG4IHzWf) (:id |HJxBSpK7jz) (:text |inline) (:type :leaf)
|j $ {} (:at 1558092169530) (:by |rJG4IHzWf) (:id |GBAp2dVrZ) (:text "|\"learning.md") (:type :leaf)
|r $ {} (:at 1522929001629) (:by |root) (:id |SyGOTYQoG) (:type :expr)
:data $ {}
|T $ {} (:at 1522929001979) (:by |root) (:id |SygbuatQsz) (:text |{}) (:type :leaf)
|j $ {} (:at 1522990526339) (:by |root) (:id |Hy-L6p_Eiz) (:type :expr)
:data $ {}
|T $ {} (:at 1522990528100) (:by |root) (:id |r1eUppO4iG) (:text |:class-name) (:type :leaf)
|j $ {} (:at 1522990532235) (:by |root) (:id |ByVO66O4oz) (:text "|\"content") (:type :leaf)
|T $ {} (:at 1522928402271) (:by |root) (:id |B1l5zsK7jG) (:type :expr)
:data $ {}
|T $ {} (:at 1522928402725) (:by |root) (:id |B1l5zsK7jGleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1522928402943) (:by |root) (:id |HJXsfjtmsz) (:type :expr)
:data $ {}
|T $ {} (:at 1522928403286) (:by |root) (:id |rJMizsFQjz) (:text |{}) (:type :leaf)
|j $ {} (:at 1522928403812) (:by |root) (:id |r1g3fsKXoM) (:type :expr)
:data $ {}
|T $ {} (:at 1522928405509) (:by |root) (:id |HJnzsKmsf) (:text |:style) (:type :leaf)
|j $ {} (:at 1522928507712) (:by |root) (:id |rJNKjF7oG) (:type :expr)
:data $ {}
|D $ {} (:at 1522928508606) (:by |root) (:id |rJgEtjtQof) (:text |merge) (:type :leaf)
|T $ {} (:at 1522928405762) (:by |root) (:id |B1g0GjKQjM) (:type :expr)
:data $ {}
|T $ {} (:at 1522928406173) (:by |root) (:id |ryCzjtXif) (:text |{}) (:type :leaf)
|j $ {} (:at 1522928406447) (:by |root) (:id |rJEAGiFQjG) (:type :expr)
:data $ {}
|T $ {} (:at 1522928407925) (:by |root) (:id |H1QCfiYXif) (:text |:width) (:type :leaf)
|j $ {} (:at 1522928524016) (:by |root) (:id |rJtXstQoM) (:text |:auto) (:type :leaf)
|w $ {} (:at 1522948836212) (:by |root) (:id |S1x3yiA7iz) (:type :expr)
:data $ {}
|T $ {} (:at 1522948817070) (:by |root) (:id |Skpac0QjMleaf) (:text |comp-tool-card) (:type :leaf)
|r $ {} (:at 1522948837857) (:by |root) (:id |ByeC1jAQsM) (:type :expr)
:data $ {}
|D $ {} (:at 1522948839276) (:by |root) (:id |rk-AJo0mjz) (:text |{}) (:type :leaf)
|L $ {} (:at 1522948843069) (:by |root) (:id |r1xXeoR7sM) (:type :expr)
:data $ {}
|T $ {} (:at 1522948844657) (:by |root) (:id |r1xXeoR7sMleaf) (:text |:name) (:type :leaf)
|j $ {} (:at 1522948847921) (:by |root) (:id |H1-SxoAmoM) (:text "|\"shadow-cljs") (:type :leaf)
|T $ {} (:at 1522948840174) (:by |root) (:id |BkWexiRXiG) (:type :expr)
:data $ {}
|D $ {} (:at 1522948842201) (:by |root) (:id |rJWeoCmiG) (:text |:logo) (:type :leaf)
|T $ {} (:at 1522949167726) (:by |root) (:id |S1eUki0QiG) (:text "|\"http://cdn.tiye.me/logo/shadow-cljs.png") (:type :leaf)
|j $ {} (:at 1522948848853) (:by |root) (:id |HkeKloRQiG) (:type :expr)
:data $ {}
|T $ {} (:at 1522948852157) (:by |root) (:id |HkeKloRQiGleaf) (:text |:url) (:type :leaf)
|j $ {} (:at 1522948869282) (:by |root) (:id |HyaliCmsM) (:text "|\"http://shadow-cljs.org") (:type :leaf)
|r $ {} (:at 1522949368407) (:by |root) (:id |Bke-T07sf) (:type :expr)
:data $ {}
|T $ {} (:at 1522949371836) (:by |root) (:id |Bke-T07sfleaf) (:text |:description) (:type :leaf)
|j $ {} (:at 1522949374268) (:by |root) (:id |B1eV-p0Qof) (:text "|\"ClojureScript compilation made easy.") (:type :leaf)
|wD $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |P4o1cpteOq) (:type :expr)
:data $ {}
|T $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |D8Fi9qFLDA) (:text |comp-tool-card) (:type :leaf)
|j $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |jZA-P_ZIOd) (:type :expr)
:data $ {}
|T $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |6FXZ5wZpND) (:text |{}) (:type :leaf)
|j $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |FYIGauRCeZ) (:type :expr)
:data $ {}
|T $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |voYGhm4OOA) (:text |:name) (:type :leaf)
|j $ {} (:at 1544974581829) (:by |rJG4IHzWf) (:id |2kHia-p4Df) (:text "|\"figwheel-main") (:type :leaf)
|r $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |H-2s0Vd3VO) (:type :expr)
:data $ {}
|T $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |fOfqDxhI_n) (:text |:logo) (:type :leaf)
|j $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |YvsCTF-pZP) (:text |nil) (:type :leaf)
|v $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |u2bTZFhRiQ) (:type :expr)
:data $ {}
|T $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |3-4IR9p9NS) (:text |:url) (:type :leaf)
|j $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |WwudobnDbA) (:text "|\"https://figwheel.org") (:type :leaf)
|x $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |GVSwrD53BS) (:type :expr)
:data $ {}
|T $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |5lg1yiFk4X) (:text |:description) (:type :leaf)
|j $ {} (:at 1544974382876) (:by |rJG4IHzWf) (:id |f7gAwtup6O5) (:text "|\"Figwheel Main builds your ClojureScript code and hot loads it as you are coding!") (:type :leaf)
:ns $ {} (:id |H1o_Y9ar-) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rJgjuY5pSb) (:text |ns) (:time 1499755354983) (:type :leaf)
|j $ {} (:author |root) (:id |HybjuF9pS-) (:text |app.comp.container) (:time 1499755354983) (:type :leaf)
|v $ {} (:id |SJkgodY9TSW) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |H1egs_K9pSZ) (:text |:require) (:time 1499755354983) (:type :leaf)
|j $ {} (:id |ryWeiOtqTBW) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |S1Mgj_K9TBZ) (:text |[]) (:time 1499755354983) (:type :leaf)
|j $ {} (:at 1629270381462) (:by |rJG4IHzWf) (:text |respo-ui.core) (:type :leaf)
|r $ {} (:author |root) (:id |HkVxodtqTrW) (:text |:refer) (:time 1499755354983) (:type :leaf)
|v $ {} (:id |SyHeiOYcTr-) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |BkLgidF56rb) (:text |[]) (:time 1499755354983) (:type :leaf)
|j $ {} (:author |root) (:id |SkPxidY56H-) (:text |hsl) (:time 1499755354983) (:type :leaf)
|r $ {} (:id |Sydli_Ycarb) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |HJtgouK5pBZ) (:text |[]) (:time 1499755354983) (:type :leaf)
|j $ {} (:at 1516527080962) (:author |root) (:by |root) (:id |HJ5eouFqaHb) (:text |respo-ui.core) (:time 1499755354983) (:type :leaf)
|r $ {} (:author |root) (:id |HJoxsuF5pr-) (:text |:as) (:time 1499755354983) (:type :leaf)
|v $ {} (:author |root) (:id |r1hgjuY5TH-) (:text |ui) (:time 1499755354983) (:type :leaf)
|v $ {} (:id |SJgC3cjTTW) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |r1BodKcprZ) (:text |[]) (:time 1499755354983) (:type :leaf)
|j $ {} (:at 1541525754099) (:author |root) (:by |root) (:id |ryLoOY5pHb) (:text |respo.core) (:time 1499755354983) (:type :leaf)
|r $ {} (:author |root) (:id |SJDjOYqaHW) (:text |:refer) (:time 1508946162679) (:type :leaf)
|v $ {} (:id |H1do_K5aS-) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |S1KidKq6r-) (:text |[]) (:time 1499755354983) (:type :leaf)
|j $ {} (:author |root) (:id |B1cs_Fq6B-) (:text |defcomp) (:time 1499755354983) (:type :leaf)
|n $ {} (:at 1629270385619) (:author |root) (:by |rJG4IHzWf) (:id |BJlz9oM90-) (:text |>>) (:time 1509727116530) (:type :leaf)
|r $ {} (:author |root) (:id |SJsiOY5pr-) (:text |<>) (:time 1499755354983) (:type :leaf)
|v $ {} (:author |root) (:id |SJ2oOY96S-) (:text |div) (:time 1499755354983) (:type :leaf)
|x $ {} (:author |root) (:id |BkpiOFq6S-) (:text |button) (:time 1499755354983) (:type :leaf)
|xT $ {} (:author |rJG4IHzWf) (:id |BJtB8rGbG) (:text |textarea) (:time 1512359490531) (:type :leaf)
|y $ {} (:author |root) (:id |r1Aj_YqaB-) (:text |span) (:time 1499755354983) (:type :leaf)
|yT $ {} (:at 1522927757147) (:by |root) (:id |S1lrcOFQoz) (:text |a) (:type :leaf)
|x $ {} (:id |Sy4-oOt96SZ) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |HJH-s_t96rb) (:text |[]) (:time 1499755354983) (:type :leaf)
|j $ {} (:author |root) (:id |SyUbi_t5pH-) (:text |respo.comp.space) (:time 1499755354983) (:type :leaf)
|r $ {} (:author |root) (:id |S1v-s_KcTHZ) (:text |:refer) (:time 1499755354983) (:type :leaf)
|v $ {} (:id |rJd-iOKc6rZ) (:time 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rkFWouKcTr-) (:text |[]) (:time 1499755354983) (:type :leaf)
|j $ {} (:author |root) (:id |Hy5WjdY5TS-) (:text |=<) (:time 1499755354983) (:type :leaf)
|y $ {} (:author |root) (:id |SkACcYv2-) (:time 1507461845717) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |SkACcYv2-leaf) (:text |[]) (:time 1507461846175) (:type :leaf)
|j $ {} (:author |root) (:id |HJfRR5KPh-) (:text |reel.comp.reel) (:time 1507461855480) (:type :leaf)
|r $ {} (:author |root) (:id |ryOyjtwnb) (:text |:refer) (:time 1507461856264) (:type :leaf)
|v $ {} (:author |root) (:id |BJwOyitPhW) (:time 1507461856484) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |HJ8u1otP3W) (:text |[]) (:time 1507461856706) (:type :leaf)
|j $ {} (:author |root) (:id |r1bt1sKwhZ) (:text |comp-reel) (:time 1507461858342) (:type :leaf)
|yT $ {} (:at 1519699088529) (:by |root) (:id |ryKcErMdG) (:type :expr)
:data $ {}
|T $ {} (:at 1519699088805) (:by |root) (:id |ryKcErMdGleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1519699092590) (:by |root) (:id |HJMtqNBGuf) (:text |respo-md.comp.md) (:type :leaf)
|r $ {} (:at 1519699093410) (:by |root) (:id |Syl69VHMuM) (:text |:refer) (:type :leaf)
|v $ {} (:at 1519699093683) (:by |root) (:id |S1R54BfuG) (:type :expr)
:data $ {}
|T $ {} (:at 1519699093922) (:by |root) (:id |HJwaqVHM_M) (:text |[]) (:type :leaf)
|j $ {} (:at 1519699096732) (:by |root) (:id |BJf0cVSMdz) (:text |comp-md) (:type :leaf)
|r $ {} (:at 1522927886069) (:by |root) (:id |B1gLzttmsM) (:text |comp-md-block) (:type :leaf)
|yj $ {} (:at 1521954061310) (:by |root) (:id |SJxSfaoE5f) (:type :expr)
:data $ {}
|T $ {} (:at 1521954061645) (:by |root) (:id |SJxSfaoE5fleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1544956105924) (:by |rJG4IHzWf) (:id |rkb8MTo45G) (:text |app.config) (:type :leaf)
|r $ {} (:at 1521954064826) (:by |root) (:id |H1SuzTjV5M) (:text |:refer) (:type :leaf)
|v $ {} (:at 1521954065004) (:by |root) (:id |S1QtM6j4cz) (:type :expr)
:data $ {}
|T $ {} (:at 1521954065219) (:by |root) (:id |S1MtGTiE5G) (:text |[]) (:type :leaf)
|j $ {} (:at 1521954067604) (:by |root) (:id |HkUKG6oNcG) (:text |dev?) (:type :leaf)
|yr $ {} (:at 1522985268841) (:by |root) (:id |HkxaVKwNjz) (:type :expr)
:data $ {}
|T $ {} (:at 1522985269244) (:by |root) (:id |HkxaVKwNjzleaf) (:text |[]) (:type :leaf)
|b $ {} (:at 1522985274611) (:by |root) (:id |r1ekStPNsG) (:text |app.util) (:type :leaf)
|f $ {} (:at 1522985276667) (:by |root) (:id |HkVHYPEsf) (:text |:refer) (:type :leaf)
|j $ {} (:at 1522985277353) (:by |root) (:id |rJzSrFDNoz) (:type :expr)
:data $ {}
|D $ {} (:at 1522985277970) (:by |root) (:id |rJUStDEsM) (:text |[]) (:type :leaf)
|T $ {} (:at 1522985270534) (:by |root) (:id |BJANFvEsM) (:text |highlighter) (:type :leaf)
|j $ {} (:at 1629270488166) (:by |rJG4IHzWf) (:text |inline) (:type :leaf)
|yv $ {} (:at 1522986087412) (:by |root) (:id |B1lJu3v4iz) (:type :expr)
:data $ {}
|T $ {} (:at 1522986087739) (:by |root) (:id |B1lJu3v4izleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1522986091514) (:by |root) (:id |SkbxdnwNsf) (:text |app.comp.showcase) (:type :leaf)
|r $ {} (:at 1522986092351) (:by |root) (:id |Hy4_2wEsG) (:text |:refer) (:type :leaf)
|v $ {} (:at 1522986092539) (:by |root) (:id |HyrunD4iG) (:type :expr)
:data $ {}
|T $ {} (:at 1522986092694) (:by |root) (:id |rkU4d3DNoM) (:text |[]) (:type :leaf)
|j $ {} (:at 1522986096478) (:by |root) (:id |rJGBd3DEiM) (:text |comp-showcase) (:type :leaf)
|z $ {} (:at 1688286614063) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1688286617369) (:by |rJG4IHzWf) (:text "|\"@calcit/std") (:type :leaf)
|b $ {} (:at 1688286618651) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1688286618945) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1688286620426) (:by |rJG4IHzWf) (:text |rand-int) (:type :leaf)
:proc $ {} (:id |rksbjOYqpSZ) (:time 1499755354983) (:type :expr)
:data $ {}
|app.comp.showcase $ {}
:defs $ {}
|comp-showcase $ {} (:at 1522927817734) (:by |root) (:id |S1eM0_FmiM) (:type :expr)
:data $ {}
|T $ {} (:at 1522927818754) (:by |root) (:id |SJbzC_FXsf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1522927817734) (:by |root) (:id |HkGfAOYmsz) (:text |comp-showcase) (:type :leaf)
|r $ {} (:at 1522927817734) (:by |root) (:id |B1mfRuFmif) (:type :expr)
:data $ {}
|T $ {} (:at 1522986218922) (:by |root) (:id |rJlggpDVjf) (:text |case-idx) (:type :leaf)
|v $ {} (:at 1522986614492) (:by |root) (:id |rJAdAvEjf) (:type :expr)
:data $ {}
|D $ {} (:at 1522986615786) (:by |root) (:id |HJ1tRPViz) (:text |let) (:type :leaf)
|L $ {} (:at 1522986615997) (:by |root) (:id |BJQgKCDViz) (:type :expr)
:data $ {}
|T $ {} (:at 1522986616156) (:by |root) (:id |r1VlYRPEjf) (:type :expr)
:data $ {}
|T $ {} (:at 1522986625240) (:by |root) (:id |HyfxtRv4sf) (:text |showcase) (:type :leaf)
|j $ {} (:at 1522986229281) (:by |root) (:id |HJ8YADViG) (:type :expr)