-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
1569 lines (1568 loc) · 148 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/ |respo-feather.calcit/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.color-pad $ {}
:defs $ {}
|comp-color-pad $ {} (:at 1520183774813) (:by |root) (:id |HygvJ9jY_M) (:type :expr)
:data $ {}
|T $ {} (:at 1520183777780) (:by |root) (:id |BJbw15iFuM) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1520183774813) (:by |root) (:id |ryMDJcsFOz) (:text |comp-color-pad) (:type :leaf)
|r $ {} (:at 1520183774813) (:by |root) (:id |rJQwkcsYuM) (:type :expr)
:data $ {}
|D $ {} (:at 1535133419659) (:by |rJG4IHzWf) (:id |qIUt_L_kbV) (:text |states) (:type :leaf)
|T $ {} (:at 1520183834739) (:by |root) (:id |rJlzm5sKuM) (:text |color) (:type :leaf)
|v $ {} (:at 1520183778836) (:by |root) (:id |S1iy5jtOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520183779336) (:by |root) (:id |S1iy5jtOMleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1520183779591) (:by |root) (:id |Sk2yqjFdG) (:type :expr)
:data $ {}
|T $ {} (:at 1520183779932) (:by |root) (:id |rkQsk9iYOG) (:text |{}) (:type :leaf)
|j $ {} (:at 1520183910117) (:by |root) (:id |HJK_9iYOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520183911007) (:by |root) (:id |SkAD9iK_f) (:text |:style) (:type :leaf)
|j $ {} (:at 1520183911251) (:by |root) (:id |r1E1_ciY_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520183911563) (:by |root) (:id |S1Qyd9sFdz) (:text |{}) (:type :leaf)
|j $ {} (:at 1520183911901) (:by |root) (:id |r1feOqsFOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520183913210) (:by |root) (:id |HJbeucjYOf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1520183914068) (:by |root) (:id |r1E-d9itdz) (:text |16) (:type :leaf)
|v $ {} (:at 1520183863091) (:by |root) (:id |Sye1Scituf) (:type :expr)
:data $ {}
|T $ {} (:at 1520183864269) (:by |root) (:id |Sye1Scitufleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1520183864941) (:by |root) (:id |H1gZH9itdG) (:type :expr)
:data $ {}
|T $ {} (:at 1520183865735) (:by |root) (:id |B1-BqoKuz) (:text |{}) (:type :leaf)
|j $ {} (:at 1520183866254) (:by |root) (:id |BkbMr9sFdG) (:type :expr)
:data $ {}
|T $ {} (:at 1520183867028) (:by |root) (:id |BJlGH9iYuf) (:text |:style) (:type :leaf)
|j $ {} (:at 1520264488976) (:by |root) (:id |S1MEB5oYuf) (:text |ui/row) (:type :leaf)
|wL $ {} (:at 1520263071403) (:by |root) (:id |vFCKztKV9X) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rJQSliyyjuG) (:text |comp-hundred) (:type :leaf)
|j $ {} (:at 1520263219139) (:by |root) (:id |S1eqEe1juG) (:text |color) (:type :leaf)
|r $ {} (:at 1520263226178) (:by |root) (:id |ryfBxkoOf) (:text |:h) (:type :leaf)
|wR $ {} (:at 1520263078018) (:by |root) (:id |mc7FpzETh) (:type :expr)
:data $ {}
|T $ {} (:at 1520263079323) (:by |root) (:id |Skx0jkyi_Gleaf) (:text |=<) (:type :leaf)
|j $ {} (:at 1535133297191) (:by |rJG4IHzWf) (:id |BJln11jdz) (:text |32) (:type :leaf)
|r $ {} (:at 1520263080969) (:by |root) (:id |B1-2k1iOG) (:text |nil) (:type :leaf)
|wX $ {} (:at 1520263071403) (:by |root) (:id |yG0bl_Qeni) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rJQSliyyjuG) (:text |comp-hundred) (:type :leaf)
|j $ {} (:at 1520263230521) (:by |root) (:id |rygySe1o_M) (:text |color) (:type :leaf)
|r $ {} (:at 1520263231697) (:by |root) (:id |ry4eHekjdM) (:text |:l) (:type :leaf)
|wj $ {} (:at 1535133987659) (:by |rJG4IHzWf) (:id |BkC-msHzM) (:type :expr)
:data $ {}
|T $ {} (:at 1535133988895) (:by |rJG4IHzWf) (:id |BkC-msHzMleaf) (:text |=<) (:type :leaf)
|j $ {} (:at 1535133989934) (:by |rJG4IHzWf) (:id |Ago8hcaWlJ) (:text |32) (:type :leaf)
|r $ {} (:at 1535133990788) (:by |rJG4IHzWf) (:id |RDgUORELHz) (:text |nil) (:type :leaf)
|x $ {} (:at 1520263071403) (:by |root) (:id |Hk5sy1iuf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rJQSliyyjuG) (:text |comp-hundred) (:type :leaf)
|j $ {} (:at 1520263222216) (:by |root) (:id |BJxhVe1odz) (:text |color) (:type :leaf)
|r $ {} (:at 1520263228565) (:by |root) (:id |SyxmHeyj_G) (:text |:s) (:type :leaf)
|xD $ {} (:at 1535133987659) (:by |rJG4IHzWf) (:id |MXSbNDDGp) (:type :expr)
:data $ {}
|T $ {} (:at 1535133988895) (:by |rJG4IHzWf) (:id |BkC-msHzMleaf) (:text |=<) (:type :leaf)
|j $ {} (:at 1535133989934) (:by |rJG4IHzWf) (:id |Ago8hcaWlJ) (:text |32) (:type :leaf)
|r $ {} (:at 1535133990788) (:by |rJG4IHzWf) (:id |RDgUORELHz) (:text |nil) (:type :leaf)
|yT $ {} (:at 1535133395267) (:by |rJG4IHzWf) (:id |TGgHxFTdE) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |2-WFVip3-cv) (:text |comp-color-square) (:type :leaf)
|b $ {} (:at 1535133421482) (:by |rJG4IHzWf) (:id |8_CEKX2Q4P) (:text |states) (:type :leaf)
|j $ {} (:at 1535133397179) (:by |rJG4IHzWf) (:id |miUeiSYGK) (:text |color) (:type :leaf)
|comp-color-square $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |x1HunyyFXl) (:type :expr)
:data $ {}
|T $ {} (:at 1535133392179) (:by |rJG4IHzWf) (:id |-ec1P14uWM) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |txlvjTpEYu) (:text |comp-color-square) (:type :leaf)
|n $ {} (:at 1535133393304) (:by |rJG4IHzWf) (:id |xacljLnZrS) (:type :expr)
:data $ {}
|D $ {} (:at 1535133426286) (:by |rJG4IHzWf) (:id |-jHswdP-gx) (:text |states) (:type :leaf)
|T $ {} (:at 1535133394022) (:by |rJG4IHzWf) (:id |kqIJVjTqnP) (:text |color) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |iaOqBwUiae) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |tBV8R17diV) (:text |let) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |Rua0YcIyzf) (:type :expr)
:data $ {}
|5 $ {} (:at 1629028489735) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629028490737) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1629028491531) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629028493859) (:by |rJG4IHzWf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1629028494709) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|D $ {} (:at 1535133442973) (:by |rJG4IHzWf) (:id |fZNZUoMbFY) (:type :expr)
:data $ {}
|T $ {} (:at 1535133443910) (:by |rJG4IHzWf) (:id |fZNZUoMbFYleaf) (:text |state) (:type :leaf)
|j $ {} (:at 1535133444158) (:by |rJG4IHzWf) (:id |1VGqDez5ZP) (:type :expr)
:data $ {}
|T $ {} (:at 1535133446533) (:by |rJG4IHzWf) (:id |s9sV-1fRog) (:text |or) (:type :leaf)
|j $ {} (:at 1535133446912) (:by |rJG4IHzWf) (:id |VKGqqBd-Wt) (:type :expr)
:data $ {}
|T $ {} (:at 1535133447749) (:by |rJG4IHzWf) (:id |PZcrgaATOw) (:text |:data) (:type :leaf)
|j $ {} (:at 1535133448641) (:by |rJG4IHzWf) (:id |vaqHROG8FH) (:text |states) (:type :leaf)
|r $ {} (:at 1535133452014) (:by |rJG4IHzWf) (:id |O4hElsQD_) (:type :expr)
:data $ {}
|T $ {} (:at 1535133452434) (:by |rJG4IHzWf) (:id |s1t_qpImh) (:text |{}) (:type :leaf)
|j $ {} (:at 1535133453353) (:by |rJG4IHzWf) (:id |IBrWuGFyok) (:type :expr)
:data $ {}
|T $ {} (:at 1535133459368) (:by |rJG4IHzWf) (:id |PbPS00xfH) (:text |:hint?) (:type :leaf)
|j $ {} (:at 1535133460280) (:by |rJG4IHzWf) (:id |-Vgu2c1QGQ) (:text |false) (:type :leaf)
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |NmHYIH9f_8) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |bnE7j8xPCL) (:text |color-text) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |gUmKF3k6pU) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |i1Ki-4yz2Y) (:text |hsl100) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |w5JOM4vtT8) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |tgb2o1rZHE) (:text |:h) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |dPmeJR3v-B) (:text |color) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |4n52ofIOQ5) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |FRy5NDauUs) (:text |:s) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |u3msG5iev6d) (:text |color) (:type :leaf)
|v $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |9YMLbevv75B) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |Nffwkx79lBo) (:text |:l) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |AxKwp_VvT1w) (:text |color) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |JgW8gUu88bm) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |PjDrywBu2a0) (:text |div) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |OamZS52pPR3) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |bfnNMnijH_g) (:text |{}) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |ddEtE5gj_eR) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |pz7esr5kDYF) (:text |:style) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |zCEkeQKxmu6) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |Tbwt5BqNdqE) (:text |merge) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |PQQoitEF2vX) (:text |ui/center) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |Uv2FxlsAnIy) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |u6_QX4i8KTP) (:text |{}) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |aDgljwkv8tr) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |ImhOipA1Fty) (:text |:width) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |LFQoWKspDZ9) (:text |400) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |jKnRl_9CIUC) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |7XojDepno88) (:text |:height) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |wcjIyZiYBLa) (:text |400) (:type :leaf)
|v $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |3NZl_JPwS4Y) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |lp0ttp0omkO) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |1S7JH4Gh8fg) (:text |color-text) (:type :leaf)
|yj $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |jQe_nCN9Yun) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |4lRrp67pD-c) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |LivZWtmrdJA) (:text |:pointer) (:type :leaf)
|yr $ {} (:at 1535133431566) (:by |rJG4IHzWf) (:id |hbY6VOEib) (:type :expr)
:data $ {}
|T $ {} (:at 1535133433724) (:by |rJG4IHzWf) (:id |hbY6VOEibleaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1535133435893) (:by |rJG4IHzWf) (:id |vgVssJ0u-f) (:text |:relative) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |jBaf8OUqD1Q) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |uo8qTa77-jN) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |HDed2od2Q3E) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |on1nAkMjFTV) (:text |fn) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |_zTJYYWKyqC) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |xEDtnNRAFX-) (:text |e) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |aCGDwpzRYnE) (:text |d!) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |vYrZGFrldHA) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |2ZCXR5gjKhs) (:text |copy!) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |2a8AQhExX6n) (:text |color-text) (:type :leaf)
|v $ {} (:at 1535133482711) (:by |rJG4IHzWf) (:id |FYlZHj9y1) (:type :expr)
:data $ {}
|T $ {} (:at 1629028500114) (:by |rJG4IHzWf) (:id |FYlZHj9y1leaf) (:text |d!) (:type :leaf)
|b $ {} (:at 1629028501820) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1535133484609) (:by |rJG4IHzWf) (:id |sqvlZDOyW) (:type :expr)
:data $ {}
|T $ {} (:at 1535133485593) (:by |rJG4IHzWf) (:id |AQ7FoksqaF) (:text |assoc) (:type :leaf)
|j $ {} (:at 1535133486942) (:by |rJG4IHzWf) (:id |hmpfH3jbvR) (:text |state) (:type :leaf)
|r $ {} (:at 1535133488284) (:by |rJG4IHzWf) (:id |gD_PsyJNpc) (:text |:hint?) (:type :leaf)
|v $ {} (:at 1535133489925) (:by |rJG4IHzWf) (:id |DIHGeAYZg_) (:text |true) (:type :leaf)
|x $ {} (:at 1535133490688) (:by |rJG4IHzWf) (:id |UyYfJWDlR) (:type :expr)
:data $ {}
|T $ {} (:at 1535133494147) (:by |rJG4IHzWf) (:id |UyYfJWDlRleaf) (:text |js/setTimeout) (:type :leaf)
|j $ {} (:at 1535133494868) (:by |rJG4IHzWf) (:id |ljd-iqTEDF) (:type :expr)
:data $ {}
|T $ {} (:at 1535133495181) (:by |rJG4IHzWf) (:id |YHy4fN8xy) (:text |fn) (:type :leaf)
|j $ {} (:at 1535133495752) (:by |rJG4IHzWf) (:id |0P_aGHXgd) (:type :expr)
:data $ {}
|r $ {} (:at 1535133482711) (:by |rJG4IHzWf) (:id |hdV0vPfUVY) (:type :expr)
:data $ {}
|T $ {} (:at 1629028503916) (:by |rJG4IHzWf) (:id |FYlZHj9y1leaf) (:text |d!) (:type :leaf)
|b $ {} (:at 1629028505278) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1535133484609) (:by |rJG4IHzWf) (:id |sqvlZDOyW) (:type :expr)
:data $ {}
|T $ {} (:at 1535133485593) (:by |rJG4IHzWf) (:id |AQ7FoksqaF) (:text |assoc) (:type :leaf)
|j $ {} (:at 1535133486942) (:by |rJG4IHzWf) (:id |hmpfH3jbvR) (:text |state) (:type :leaf)
|r $ {} (:at 1535133488284) (:by |rJG4IHzWf) (:id |gD_PsyJNpc) (:text |:hint?) (:type :leaf)
|v $ {} (:at 1535133602126) (:by |rJG4IHzWf) (:id |DIHGeAYZg_) (:text |false) (:type :leaf)
|r $ {} (:at 1535133612313) (:by |rJG4IHzWf) (:id |RIvegjMvG) (:text |1200) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |TptWNfXOv0h) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |GP4tZngMEGK) (:text |<>) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |tRPMxlJbIJd) (:text |color-text) (:type :leaf)
|r $ {} (:at 1535133571512) (:by |rJG4IHzWf) (:id |P_2GWbrEtq) (:type :expr)
:data $ {}
|T $ {} (:at 1535133572224) (:by |rJG4IHzWf) (:id |UdloGUXIzW) (:text |{}) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |ec36fv5b4) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |a5QYl2a8yDg) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |c9A_zHMa8Nq) (:text |ui/font-code) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |RFxnTM5pPe) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |q9PSh1s0H3f) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |kQUufm2z48t) (:text |24) (:type :leaf)
|v $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |IFOyleYoB) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |0DUQ39QWMbf) (:text |:color) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |ZdpFXayj2fQ) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |Ai6-0GkQe2u) (:text |if) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |i3jCBkhv05m) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |rkRUWx5y2vp) (:text |>) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |2pWqni-bQ4a) (:type :expr)
:data $ {}
|T $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |4NhEMaRCHSx) (:text |:l) (:type :leaf)
|j $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |-PkrCuNEEjI) (:text |color) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |rvnRjPlRmcK) (:text |50) (:type :leaf)
|r $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |25n67sa9u46) (:text |:black) (:type :leaf)
|v $ {} (:at 1535133390020) (:by |rJG4IHzWf) (:id |pzH4bEV97l9) (:text |:white) (:type :leaf)
|v $ {} (:at 1535133465422) (:by |rJG4IHzWf) (:id |GLtnhsFXla) (:type :expr)
:data $ {}
|T $ {} (:at 1535133466574) (:by |rJG4IHzWf) (:id |GLtnhsFXlaleaf) (:text |when) (:type :leaf)
|j $ {} (:at 1535133466935) (:by |rJG4IHzWf) (:id |JTXBQ4Pky2) (:type :expr)
:data $ {}
|T $ {} (:at 1535133469485) (:by |rJG4IHzWf) (:id |9wZJOsXMRx) (:text |:hint?) (:type :leaf)
|j $ {} (:at 1535133470100) (:by |rJG4IHzWf) (:id |GUn1d4dZa) (:text |state) (:type :leaf)
|r $ {} (:at 1535133470958) (:by |rJG4IHzWf) (:id |ZpkUiYpWjl) (:type :expr)
:data $ {}
|T $ {} (:at 1535133471957) (:by |rJG4IHzWf) (:id |ZpkUiYpWjlleaf) (:text |div) (:type :leaf)
|j $ {} (:at 1535133547426) (:by |rJG4IHzWf) (:id |CiNM0KrGAO) (:type :expr)
:data $ {}
|D $ {} (:at 1535133549412) (:by |rJG4IHzWf) (:id |-WbS2NARK) (:text |{}) (:type :leaf)
|T $ {} (:at 1535133549894) (:by |rJG4IHzWf) (:id |7XemNisgsj) (:type :expr)
:data $ {}
|D $ {} (:at 1535133551109) (:by |rJG4IHzWf) (:id |qiu9M8-hvE) (:text |:style) (:type :leaf)
|T $ {} (:at 1535133472328) (:by |rJG4IHzWf) (:id |FcCyL9C7tH) (:type :expr)
:data $ {}
|T $ {} (:at 1535133473325) (:by |rJG4IHzWf) (:id |3SHbzHEOZU) (:text |{}) (:type :leaf)
|j $ {} (:at 1535133522847) (:by |rJG4IHzWf) (:id |2Y3FEF0qRt) (:type :expr)
:data $ {}
|T $ {} (:at 1535133527699) (:by |rJG4IHzWf) (:id |FjqEEtu3Yt) (:text |:position) (:type :leaf)
|j $ {} (:at 1535133530788) (:by |rJG4IHzWf) (:id |ObZgWSZLPc) (:text |:absolute) (:type :leaf)
|r $ {} (:at 1535133531411) (:by |rJG4IHzWf) (:id |EkhBwt1Y3B) (:type :expr)
:data $ {}
|T $ {} (:at 1535133532573) (:by |rJG4IHzWf) (:id |EkhBwt1Y3Bleaf) (:text |:left) (:type :leaf)
|j $ {} (:at 1535133533408) (:by |rJG4IHzWf) (:id |5esR950Xfj) (:text |8) (:type :leaf)
|v $ {} (:at 1535133534321) (:by |rJG4IHzWf) (:id |icmrcMwMXA) (:type :expr)
:data $ {}
|T $ {} (:at 1535133535331) (:by |rJG4IHzWf) (:id |icmrcMwMXAleaf) (:text |:top) (:type :leaf)
|j $ {} (:at 1535133536993) (:by |rJG4IHzWf) (:id |Zjl4Dzsky) (:text |-20) (:type :leaf)
|x $ {} (:at 1535133555822) (:by |rJG4IHzWf) (:id |fFCQ9Op3-) (:type :expr)
:data $ {}
|T $ {} (:at 1535133557892) (:by |rJG4IHzWf) (:id |fFCQ9Op3-leaf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1535133558809) (:by |rJG4IHzWf) (:id |OGQc5As42J) (:text |14) (:type :leaf)
|y $ {} (:at 1535133561467) (:by |rJG4IHzWf) (:id |9ypaUODYeV) (:type :expr)
:data $ {}
|T $ {} (:at 1535133564457) (:by |rJG4IHzWf) (:id |9ypaUODYeVleaf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1535133594399) (:by |rJG4IHzWf) (:id |GBPueweAJB) (:text |ui/font-fancy) (:type :leaf)
|r $ {} (:at 1535133474440) (:by |rJG4IHzWf) (:id |8EPDvC9YlY) (:type :expr)
:data $ {}
|T $ {} (:at 1535133474856) (:by |rJG4IHzWf) (:id |8EPDvC9YlYleaf) (:text |<>) (:type :leaf)
|j $ {} (:at 1535133477635) (:by |rJG4IHzWf) (:id |RtDmLHPeu) (:text "|\"Copied") (:type :leaf)
|comp-hundred $ {} (:at 1520263064342) (:by |root) (:id |SJegjykjOG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263244019) (:by |root) (:id |HJ-ei1kjdz) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |Hyfliy1odz) (:text |comp-hundred) (:type :leaf)
|n $ {} (:at 1520263068138) (:by |root) (:id |HJeEsy1idf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263236765) (:by |root) (:id |ryljHe1jOG) (:text |color) (:type :leaf)
|j $ {} (:at 1520263241725) (:by |root) (:id |B1GTHxJjdM) (:text |letter) (:type :leaf)
|r $ {} (:at 1520263542871) (:by |root) (:id |rkkF-JsuM) (:type :expr)
:data $ {}
|D $ {} (:at 1520263544836) (:by |root) (:id |H1l1Fbko_f) (:text |let) (:type :leaf)
|L $ {} (:at 1520263546909) (:by |root) (:id |rk7FW1iuz) (:type :expr)
:data $ {}
|D $ {} (:at 1520263555940) (:by |root) (:id |r1g2KWJsdf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263567161) (:by |root) (:id |r1g2KWJsdfleaf) (:text |weight) (:type :leaf)
|j $ {} (:at 1520263569330) (:by |root) (:id |r1KqWJjOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263570099) (:by |root) (:id |rySDqZysdG) (:text |get) (:type :leaf)
|j $ {} (:at 1520263571200) (:by |root) (:id |SyMqcZyjdz) (:text |color) (:type :leaf)
|r $ {} (:at 1520263572392) (:by |root) (:id |ByNo9W1juz) (:text |letter) (:type :leaf)
|L $ {} (:at 1520263600406) (:by |root) (:id |rkW_hWyidG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263601779) (:by |root) (:id |rkW_hWyidGleaf) (:text |digit) (:type :leaf)
|j $ {} (:at 1520263603168) (:by |root) (:id |B1einWJidG) (:type :expr)
:data $ {}
|T $ {} (:at 1629028342239) (:by |rJG4IHzWf) (:id |H1i2WJouz) (:text |.rem) (:type :leaf)
|j $ {} (:at 1520263643772) (:by |root) (:id |H1m1M1iuz) (:text |weight) (:type :leaf)
|r $ {} (:at 1520263644368) (:by |root) (:id |SJGNkfyi_M) (:text |10) (:type :leaf)
|T $ {} (:at 1520263547089) (:by |root) (:id |BJlQFZ1sOf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263646556) (:by |root) (:id |HkMWtWko_M) (:text |decade) (:type :leaf)
|j $ {} (:at 1520263552052) (:by |root) (:id |HkfuYZJiOG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263650034) (:by |root) (:id |Hy-_YZJidM) (:text |/) (:type :leaf)
|b $ {} (:at 1520263652027) (:by |root) (:id |rJ2kz1jdM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263654103) (:by |root) (:id |rkGokfki_G) (:text |-) (:type :leaf)
|j $ {} (:at 1520263657370) (:by |root) (:id |ryJeG1ouz) (:text |weight) (:type :leaf)
|r $ {} (:at 1520263659188) (:by |root) (:id |SJMeMyjdf) (:text |digit) (:type :leaf)
|j $ {} (:at 1520263651259) (:by |root) (:id |HyiyG1jdG) (:text |10) (:type :leaf)
|T $ {} (:at 1520263064342) (:by |root) (:id |B1mxsJ1iOf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |S1NxsJkjdz) (:text |div) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |rkBgsJ1odM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rJUlsJJsuz) (:text |{}) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |rywgo1ysOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |ByOlikJouM) (:text |:style) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |rJFxoy1sOG) (:text |ui/row) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |SJcejJJiOf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |ByoloJyiOM) (:text |div) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |rkngjk1odM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |ByTeoy1o_f) (:text |{}) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |BkCxjkJi_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |HJyggsJ1sdM) (:text |:style) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |HkxlgoykiOz) (:text |ui/row) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |H1-leskkidM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |BJzleoJyidf) (:text |list->) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |BJQgeo1kjuG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |BkEegjkJodG) (:text |{}) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |BkBeeiJJo_f) (:type :expr)
:data $ {}
|T $ {} (:at 1629028118685) (:by |rJG4IHzWf) (:id |rkUxgs11sOG) (:text |->) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |BkPgxi1kj_f) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |r1_lgskJjdG) (:text |range) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |BJFglok1j_z) (:text |10) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |ryclliJJs_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |BJigeskksdf) (:text |map) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |B13xliyJidz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |HkplgsJJjdf) (:text |fn) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |SyRgxjy1jdG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |SJ1-gjJkodM) (:text |i) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |HygWljyJjOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rybZejykj_f) (:text |[]) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |r1M-lsJJsuz) (:text |i) (:type :leaf)
|r $ {} (:at 1520264090206) (:by |root) (:id |BJgGom1suM) (:type :expr)
:data $ {}
|D $ {} (:at 1520264091013) (:by |root) (:id |Bkmimyjuf) (:text |let) (:type :leaf)
|L $ {} (:at 1520264091401) (:by |root) (:id |Sy4momJjOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520264091547) (:by |root) (:id |SkVsmksuG) (:type :expr)
:data $ {}
|T $ {} (:at 1520264099927) (:by |root) (:id |SJmmjXJodz) (:text |current-weight) (:type :leaf)
|j $ {} (:at 1520263780747) (:by |root) (:id |ByyhmJjOf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263781433) (:by |root) (:id |HJlEPMJoOG) (:text |+) (:type :leaf)
|j $ {} (:at 1520263784032) (:by |root) (:id |ryRwfyidM) (:text |digit) (:type :leaf)
|r $ {} (:at 1520263784949) (:by |root) (:id |SJxbOz1sOf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263787332) (:by |root) (:id |rJZuMkjOG) (:text |*) (:type :leaf)
|j $ {} (:at 1520263791709) (:by |root) (:id |SJPuMyjuG) (:text |10) (:type :leaf)
|r $ {} (:at 1520263791999) (:by |root) (:id |H1WuuMJodf) (:text |i) (:type :leaf)
|j $ {} (:at 1520264722294) (:by |root) (:id |Hkx5fIJsdM) (:type :expr)
:data $ {}
|T $ {} (:at 1520264725298) (:by |root) (:id |Hkx5fIJsdMleaf) (:text |computed-color) (:type :leaf)
|j $ {} (:at 1520264040353) (:by |root) (:id |HygWQLyodM) (:type :expr)
:data $ {}
|T $ {} (:at 1629028151388) (:by |rJG4IHzWf) (:id |rJgldmJodG) (:text |case-default) (:type :leaf)
|j $ {} (:at 1520264043994) (:by |root) (:id |rkgmOX1o_z) (:text |letter) (:type :leaf)
|n $ {} (:at 1629028152205) (:by |rJG4IHzWf) (:text |:transparent) (:type :leaf)
|r $ {} (:at 1520264045963) (:by |root) (:id |BkeUOm1o_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520264047582) (:by |root) (:id |HkUOQkjdG) (:text |:h) (:type :leaf)
|j $ {} (:at 1520264070967) (:by |root) (:id |r1e1cXJsuf) (:type :expr)
:data $ {}
|T $ {} (:at 1520264215136) (:by |root) (:id |ry1qX1iOG) (:text |hsl100) (:type :leaf)
|j $ {} (:at 1520264113270) (:by |root) (:id |ByZbq71sdz) (:text |current-weight) (:type :leaf)
|r $ {} (:at 1520264113945) (:by |root) (:id |SkgqhmyodG) (:type :expr)
:data $ {}
|T $ {} (:at 1520264114609) (:by |root) (:id |Syq2Qkjuf) (:text |:s) (:type :leaf)
|j $ {} (:at 1520264116393) (:by |root) (:id |r13nQ1juz) (:text |color) (:type :leaf)
|v $ {} (:at 1520264116859) (:by |root) (:id |B1g6nXkidM) (:type :expr)
:data $ {}
|T $ {} (:at 1520264117692) (:by |root) (:id |B1g6nXkidMleaf) (:text |:l) (:type :leaf)
|j $ {} (:at 1520264118603) (:by |root) (:id |Syx0hQkjOM) (:text |color) (:type :leaf)
|v $ {} (:at 1520264048129) (:by |root) (:id |HJWOu7yidf) (:type :expr)
:data $ {}
|T $ {} (:at 1520264048672) (:by |root) (:id |HJWOu7yidfleaf) (:text |:s) (:type :leaf)
|j $ {} (:at 1520264123335) (:by |root) (:id |HkWmaXksOG) (:type :expr)
:data $ {}
|T $ {} (:at 1520264243320) (:by |root) (:id |rkgQamyouM) (:text |hsl100) (:type :leaf)
|j $ {} (:at 1520264125882) (:by |root) (:id |HJCN4ksuf) (:type :expr)
:data $ {}
|T $ {} (:at 1520264126099) (:by |root) (:id |B1GE6QJsdf) (:text |:h) (:type :leaf)
|j $ {} (:at 1520264127594) (:by |root) (:id |S1bIp7yjOf) (:text |color) (:type :leaf)
|r $ {} (:at 1520264131760) (:by |root) (:id |H1-_p7kiufleaf) (:text |current-weight) (:type :leaf)
|v $ {} (:at 1520264133412) (:by |root) (:id |By-apQki_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520264136576) (:by |root) (:id |ryeTT7Jo_M) (:text |:l) (:type :leaf)
|j $ {} (:at 1520264138213) (:by |root) (:id |Hyeb0m1sOf) (:text |color) (:type :leaf)
|x $ {} (:at 1520264049360) (:by |root) (:id |B1WKu71juz) (:type :expr)
:data $ {}
|T $ {} (:at 1520264051186) (:by |root) (:id |B1WKu71juzleaf) (:text |:l) (:type :leaf)
|j $ {} (:at 1520264139767) (:by |root) (:id |H1xN0XJi_M) (:type :expr)
:data $ {}
|T $ {} (:at 1520264287911) (:by |root) (:id |SkNRQkouf) (:text |hsl100) (:type :leaf)
|j $ {} (:at 1520264142743) (:by |root) (:id |rygrEJjOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520264143300) (:by |root) (:id |SJGBR7JjdM) (:text |:h) (:type :leaf)
|j $ {} (:at 1520264144335) (:by |root) (:id |r1_RXJoOz) (:text |color) (:type :leaf)
|r $ {} (:at 1520264144814) (:by |root) (:id |BJlFAX1i_G) (:type :expr)
:data $ {}
|T $ {} (:at 1520264145398) (:by |root) (:id |BJlFAX1i_Gleaf) (:text |:s) (:type :leaf)
|j $ {} (:at 1520264146221) (:by |root) (:id |H15CQyo_M) (:text |color) (:type :leaf)
|v $ {} (:at 1520264150352) (:by |root) (:id |r1h07kjOf) (:text |current-weight) (:type :leaf)
|T $ {} (:at 1520263064342) (:by |root) (:id |Sk7Wxsk1jOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |B1EZxjy1sOz) (:text |div) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |rkSbgoyyjuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |HyIWeiJki_M) (:text |{}) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |SywWls1Jouz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |HJOWgjJyidM) (:text |:style) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |SJKWlo1JiOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rkcZxikJsdz) (:text |merge) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |ryo-gj1ksOM) (:text |ui/center) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |S1nWxsk1jdG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |BJTWeoyyj_z) (:text |{}) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |B1CZlsJ1sOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |HkkMljJJidG) (:text |:width) (:type :leaf)
|j $ {} (:at 1520264465198) (:by |root) (:id |SkgMgiJksdG) (:text |40) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |SJZMlj11suf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |ryzzeiyJo_M) (:text |:height) (:type :leaf)
|j $ {} (:at 1520264467873) (:by |root) (:id |B1mMgjkyiOf) (:text |40) (:type :leaf)
|v $ {} (:at 1520263064342) (:by |root) (:id |S14Gli11jdM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rJBGxo11jdG) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1520264734642) (:by |root) (:id |Sk4Q81iuz) (:text |computed-color) (:type :leaf)
|x $ {} (:at 1520263826547) (:by |root) (:id |SkscGkj_f) (:type :expr)
:data $ {}
|T $ {} (:at 1520263833101) (:by |root) (:id |SkscGkj_fleaf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1520263834285) (:by |root) (:id |H14Ziz1sdz) (:text |:pointer) (:type :leaf)
|y $ {} (:at 1520524804625) (:by |root) (:id |S1fwACRdf) (:type :expr)
:data $ {}
|T $ {} (:at 1520524808105) (:by |root) (:id |SJghZCRAOM) (:text |:border-radius) (:type :leaf)
|j $ {} (:at 1520524810573) (:by |root) (:id |HkbMCRAuf) (:text ||0px) (:type :leaf)
|v $ {} (:at 1520263671054) (:by |root) (:id |H1lkZzJjuG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263671566) (:by |root) (:id |H1lkZzJjuGleaf) (:text |if) (:type :leaf)
|j $ {} (:at 1520263672278) (:by |root) (:id |B1Wx-M1iuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263672648) (:by |root) (:id |HJlgWMksdG) (:text |=) (:type :leaf)
|j $ {} (:at 1520263675235) (:by |root) (:id |rJx-bMkjdG) (:text |decade) (:type :leaf)
|r $ {} (:at 1520263676738) (:by |root) (:id |ry4WzksdG) (:text |i) (:type :leaf)
|r $ {} (:at 1520524956542) (:by |root) (:id |ryrsR00df) (:type :expr)
:data $ {}
|D $ {} (:at 1520524957817) (:by |root) (:id |HJlBoA0RdM) (:text |{}) (:type :leaf)
|r $ {} (:at 1520263759315) (:by |root) (:id |ByWPUfys_M) (:type :expr)
:data $ {}
|T $ {} (:at 1535132953113) (:by |rJG4IHzWf) (:id |ByWPUfys_Mleaf) (:text |:on-mouseenter) (:type :leaf)
|j $ {} (:at 1520263761592) (:by |root) (:id |B1cUfyo_M) (:type :expr)
:data $ {}
|T $ {} (:at 1520263762212) (:by |root) (:id |rJHYUfyi_z) (:text |fn) (:type :leaf)
|j $ {} (:at 1520263762579) (:by |root) (:id |Hki8M1jdz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263762762) (:by |root) (:id |B1z5If1j_z) (:text |e) (:type :leaf)
|j $ {} (:at 1520263764101) (:by |root) (:id |H1WoUzJidz) (:text |d!) (:type :leaf)
|r $ {} (:at 1520263766493) (:by |root) (:id |BylRLMyjdz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263769492) (:by |root) (:id |BylRLMyjdzleaf) (:text |d!) (:type :leaf)
|j $ {} (:at 1520263771557) (:by |root) (:id |H1zvMyouG) (:text |letter) (:type :leaf)
|r $ {} (:at 1520264109517) (:by |root) (:id |BkgZ3mkoOM) (:text |current-weight) (:type :leaf)
|v $ {} (:at 1520263064342) (:by |root) (:id |H19GlokkjOG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |HyiMloJkj_z) (:text |list->) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |rynGgo11iuf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |Bk6fgs1kj_z) (:text |{}) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |r1RzlsJ1sdM) (:type :expr)
:data $ {}
|T $ {} (:at 1629028122054) (:by |rJG4IHzWf) (:id |SykXxikkiuf) (:text |->) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |H1xQxiyyoOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |HkWQljy1o_z) (:text |range) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |HkGmxsyJsdG) (:text |10) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |HJX7lo11ouM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |HJVXgs1Js_f) (:text |map) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |S1Hmljk1iuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |r18mxjJysdG) (:text |fn) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |Syw7xiJyi_G) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rkuQlikysuM) (:text |i) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |ryKXlikkjdf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |Bk9QejkJoOM) (:text |[]) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |S1jQljyJjuG) (:text |i) (:type :leaf)
|r $ {} (:at 1520264256920) (:by |root) (:id |r1eKHE1juG) (:type :expr)
:data $ {}
|D $ {} (:at 1520264257644) (:by |root) (:id |ryMFHNkj_f) (:text |let) (:type :leaf)
|L $ {} (:at 1520264257863) (:by |root) (:id |rJM5BNJidG) (:type :expr)
:data $ {}
|T $ {} (:at 1520264257996) (:by |root) (:id |rymqH4ksuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520264260013) (:by |root) (:id |BJZcSEJsdz) (:text |current-weight) (:type :leaf)
|j $ {} (:at 1520263802901) (:by |root) (:id |rJ8LVks_M) (:type :expr)
:data $ {}
|T $ {} (:at 1520263803213) (:by |root) (:id |HJVMtMkoOz) (:text |+) (:type :leaf)
|j $ {} (:at 1520263807446) (:by |root) (:id |S1WXtMJiOf) (:text |i) (:type :leaf)
|r $ {} (:at 1520263807964) (:by |root) (:id |SyxOKGys_M) (:type :expr)
:data $ {}
|T $ {} (:at 1520263808699) (:by |root) (:id |BJdYG1juM) (:text |*) (:type :leaf)
|j $ {} (:at 1520263810367) (:by |root) (:id |HyeFYG1suf) (:text |decade) (:type :leaf)
|r $ {} (:at 1520263811943) (:by |root) (:id |HJoKGkidf) (:text |10) (:type :leaf)
|j $ {} (:at 1520264715938) (:by |root) (:id |SJlNMUyj_M) (:type :expr)
:data $ {}
|T $ {} (:at 1520264718936) (:by |root) (:id |SJlNMUyj_Mleaf) (:text |computed-color) (:type :leaf)
|j $ {} (:at 1520264040353) (:by |root) (:id |rJuGIJsuz) (:type :expr)
:data $ {}
|T $ {} (:at 1629028136776) (:by |rJG4IHzWf) (:id |rJgldmJodG) (:text |case-default) (:type :leaf)
|j $ {} (:at 1520264043994) (:by |root) (:id |rkgmOX1o_z) (:text |letter) (:type :leaf)
|n $ {} (:at 1629028138264) (:by |rJG4IHzWf) (:text |:transparent) (:type :leaf)
|r $ {} (:at 1520264045963) (:by |root) (:id |BkeUOm1o_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520264047582) (:by |root) (:id |HkUOQkjdG) (:text |:h) (:type :leaf)
|j $ {} (:at 1520264070967) (:by |root) (:id |r1e1cXJsuf) (:type :expr)
:data $ {}
|T $ {} (:at 1520264215136) (:by |root) (:id |ry1qX1iOG) (:text |hsl100) (:type :leaf)
|j $ {} (:at 1520264113270) (:by |root) (:id |ByZbq71sdz) (:text |current-weight) (:type :leaf)
|r $ {} (:at 1520264113945) (:by |root) (:id |SkgqhmyodG) (:type :expr)
:data $ {}
|T $ {} (:at 1520264114609) (:by |root) (:id |Syq2Qkjuf) (:text |:s) (:type :leaf)
|j $ {} (:at 1520264116393) (:by |root) (:id |r13nQ1juz) (:text |color) (:type :leaf)
|v $ {} (:at 1520264116859) (:by |root) (:id |B1g6nXkidM) (:type :expr)
:data $ {}
|T $ {} (:at 1520264117692) (:by |root) (:id |B1g6nXkidMleaf) (:text |:l) (:type :leaf)
|j $ {} (:at 1520264118603) (:by |root) (:id |Syx0hQkjOM) (:text |color) (:type :leaf)
|v $ {} (:at 1520264048129) (:by |root) (:id |HJWOu7yidf) (:type :expr)
:data $ {}
|T $ {} (:at 1520264048672) (:by |root) (:id |HJWOu7yidfleaf) (:text |:s) (:type :leaf)
|j $ {} (:at 1520264123335) (:by |root) (:id |HkWmaXksOG) (:type :expr)
:data $ {}
|T $ {} (:at 1520264243320) (:by |root) (:id |rkgQamyouM) (:text |hsl100) (:type :leaf)
|j $ {} (:at 1520264125882) (:by |root) (:id |HJCN4ksuf) (:type :expr)
:data $ {}
|T $ {} (:at 1520264126099) (:by |root) (:id |B1GE6QJsdf) (:text |:h) (:type :leaf)
|j $ {} (:at 1520264127594) (:by |root) (:id |S1bIp7yjOf) (:text |color) (:type :leaf)
|r $ {} (:at 1520264131760) (:by |root) (:id |H1-_p7kiufleaf) (:text |current-weight) (:type :leaf)
|v $ {} (:at 1520264133412) (:by |root) (:id |By-apQki_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520264136576) (:by |root) (:id |ryeTT7Jo_M) (:text |:l) (:type :leaf)
|j $ {} (:at 1520264138213) (:by |root) (:id |Hyeb0m1sOf) (:text |color) (:type :leaf)
|x $ {} (:at 1520264049360) (:by |root) (:id |B1WKu71juz) (:type :expr)
:data $ {}
|T $ {} (:at 1520264051186) (:by |root) (:id |B1WKu71juzleaf) (:text |:l) (:type :leaf)
|j $ {} (:at 1520264139767) (:by |root) (:id |H1xN0XJi_M) (:type :expr)
:data $ {}
|T $ {} (:at 1520264285683) (:by |root) (:id |SkNRQkouf) (:text |hsl100) (:type :leaf)
|j $ {} (:at 1520264142743) (:by |root) (:id |rygrEJjOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520264143300) (:by |root) (:id |SJGBR7JjdM) (:text |:h) (:type :leaf)
|j $ {} (:at 1520264144335) (:by |root) (:id |r1_RXJoOz) (:text |color) (:type :leaf)
|r $ {} (:at 1520264144814) (:by |root) (:id |BJlFAX1i_G) (:type :expr)
:data $ {}
|T $ {} (:at 1520264145398) (:by |root) (:id |BJlFAX1i_Gleaf) (:text |:s) (:type :leaf)
|j $ {} (:at 1520264146221) (:by |root) (:id |H15CQyo_M) (:text |color) (:type :leaf)
|v $ {} (:at 1520264150352) (:by |root) (:id |r1h07kjOf) (:text |current-weight) (:type :leaf)
|T $ {} (:at 1520263064342) (:by |root) (:id |BJ2mxsyyo_G) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |Hy6mxj1ysOf) (:text |div) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |SyAXxo1yo_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |B114xiykoOM) (:text |{}) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |S1gElsyJsuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |SJZVxiy1juG) (:text |:style) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |ByzExskysuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |B17Vxik1sOM) (:text |merge) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |HJENxokkidf) (:text |ui/center) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |rJrNejJJsOf) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rk8VgoJkjdM) (:text |{}) (:type :leaf)
|j $ {} (:at 1520263064342) (:by |root) (:id |HJwEgs1yj_M) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |B1uVliJJsOz) (:text |:width) (:type :leaf)
|j $ {} (:at 1520264469913) (:by |root) (:id |SyKEgi1Ji_z) (:text |40) (:type :leaf)
|r $ {} (:at 1520263064342) (:by |root) (:id |SkcEljJ1jdz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rkjNlj1JiuM) (:text |:height) (:type :leaf)
|j $ {} (:at 1520264472425) (:by |root) (:id |H1nExjkyjdG) (:text |40) (:type :leaf)
|v $ {} (:at 1520263064342) (:by |root) (:id |rkgsJm1i_f) (:type :expr)
:data $ {}
|T $ {} (:at 1520263064342) (:by |root) (:id |rJBGxo11jdG) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1520264714478) (:by |root) (:id |r1eAW81ouM) (:text |computed-color) (:type :leaf)
|x $ {} (:at 1520263826547) (:by |root) (:id |SyIozJjdG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263833101) (:by |root) (:id |SkscGkj_fleaf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1520263834285) (:by |root) (:id |H14Ziz1sdz) (:text |:pointer) (:type :leaf)
|xT $ {} (:at 1520524804625) (:by |root) (:id |S1b_DAARdz) (:type :expr)
:data $ {}
|T $ {} (:at 1520524808105) (:by |root) (:id |SJghZCRAOM) (:text |:border-radius) (:type :leaf)
|j $ {} (:at 1520524833089) (:by |root) (:id |HkbMCRAuf) (:text ||0px) (:type :leaf)
|v $ {} (:at 1520263710327) (:by |root) (:id |r1e87G1odG) (:type :expr)
:data $ {}
|T $ {} (:at 1520263710840) (:by |root) (:id |r1e87G1odGleaf) (:text |if) (:type :leaf)
|j $ {} (:at 1520263711451) (:by |root) (:id |SJzvXfJoOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263712139) (:by |root) (:id |SkbwXfJj_f) (:text |=) (:type :leaf)
|j $ {} (:at 1520263717289) (:by |root) (:id |B1edQzki_f) (:text |digit) (:type :leaf)
|r $ {} (:at 1520263718417) (:by |root) (:id |B1E67zkjdM) (:text |i) (:type :leaf)
|r $ {} (:at 1520263720575) (:by |root) (:id |BkbVz1o_G) (:type :expr)
:data $ {}
|T $ {} (:at 1520263721418) (:by |root) (:id |Hkgx4Mkiuf) (:text |{}) (:type :leaf)
|r $ {} (:at 1520263794052) (:by |root) (:id |BJl9OGyoOf) (:type :expr)
:data $ {}
|T $ {} (:at 1535132966757) (:by |rJG4IHzWf) (:id |BJl9OGyoOfleaf) (:text |:on-mouseenter) (:type :leaf)
|j $ {} (:at 1520263795968) (:by |root) (:id |ByGnuG1j_z) (:type :expr)
:data $ {}
|T $ {} (:at 1520263796286) (:by |root) (:id |S1Z2uM1odM) (:text |fn) (:type :leaf)
|j $ {} (:at 1520263796558) (:by |root) (:id |B1T_zysuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263796959) (:by |root) (:id |HkBn_M1j_z) (:text |e) (:type :leaf)
|j $ {} (:at 1520263797785) (:by |root) (:id |S1bTdMyj_G) (:text |d!) (:type :leaf)
|r $ {} (:at 1520263799513) (:by |root) (:id |SJZ1YMksOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520263800425) (:by |root) (:id |SJZ1YMksOMleaf) (:text |d!) (:type :leaf)
|j $ {} (:at 1520263802242) (:by |root) (:id |ryWtMyoOM) (:text |letter) (:type :leaf)
|r $ {} (:at 1520264267045) (:by |root) (:id |HJegUV1jOz) (:text |current-weight) (:type :leaf)
|hsl100 $ {} (:at 1520264217546) (:by |root) (:id |rJlMmVki_f) (:type :expr)
:data $ {}
|T $ {} (:at 1520264217546) (:by |root) (:id |Hy-GmVJiuG) (:text |defn) (:type :leaf)
|j $ {} (:at 1520264217546) (:by |root) (:id |HJGG7V1j_G) (:text |hsl100) (:type :leaf)
|r $ {} (:at 1520264217546) (:by |root) (:id |rk7zQ41jOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520264221717) (:by |root) (:id |H1-77N1sdz) (:text |h100) (:type :leaf)
|j $ {} (:at 1520264222218) (:by |root) (:id |r1-UXNJidG) (:text |s) (:type :leaf)
|r $ {} (:at 1520264225234) (:by |root) (:id |B1mUXVJsdG) (:text |l) (:type :leaf)
|v $ {} (:at 1520264225778) (:by |root) (:id |Bke5741suM) (:type :expr)
:data $ {}
|T $ {} (:at 1520264229172) (:by |root) (:id |Bke5741suMleaf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1535133817999) (:by |rJG4IHzWf) (:id |4p3NUfb54) (:type :expr)
:data $ {}
|D $ {} (:at 1629028426641) (:by |rJG4IHzWf) (:id |8m1oc89g6) (:text |.!toFixed) (:type :leaf)
|T $ {} (:at 1520264231796) (:by |root) (:id |B1-eNN1iOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520264230118) (:by |root) (:id |ryAmVko_M) (:text |*) (:type :leaf)
|j $ {} (:at 1520270178130) (:by |root) (:id |H1GeVE1iuM) (:text |3.6) (:type :leaf)
|r $ {} (:at 1520264296324) (:by |root) (:id |H1-bNEJjuM) (:text |h100) (:type :leaf)
|r $ {} (:at 1520264234017) (:by |root) (:id |SkgMNNyoOG) (:text |s) (:type :leaf)
|v $ {} (:at 1520264235649) (:by |root) (:id |HkMGNNyodM) (:text |l) (:type :leaf)
:ns $ {} (:at 1520183771362) (:by |root) (:id |BkxQk9iY_G) (:type :expr)
:data $ {}
|T $ {} (:at 1520183771362) (:by |root) (:id |HJ-7y5sYuz) (:text |ns) (:type :leaf)
|j $ {} (:at 1520183771362) (:by |root) (:id |ryzX15iKdM) (:text |app.comp.color-pad) (:type :leaf)
|r $ {} (:id |SyZSgcjFuG) (: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 1629028100914) (: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 1548343932673) (:author |root) (:by |rJG4IHzWf) (: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 $ {} (:author |root) (:id |BJlz9oM90-) (:text |cursor->) (:time 1509727116530) (:type :leaf)
|p $ {} (:at 1515731655961) (:by |root) (:id |BJl0ac3r4M) (:text |action->) (:type :leaf)
|q $ {} (:at 1515731659206) (:by |root) (:id |rkWxC53BNM) (:text |mutation->) (:type :leaf)
|qT $ {} (:at 1520262621510) (:by |root) (:id |r1eNy009_M) (:text |list->) (: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)
|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)
|yj $ {} (:at 1535133041210) (:by |rJG4IHzWf) (:id |1GKeyp2uCb) (:type :expr)
:data $ {}
|T $ {} (:at 1535133041548) (:by |rJG4IHzWf) (:id |1GKeyp2uCbleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1535133042503) (:by |rJG4IHzWf) (:id |2-x_icEgjT) (:text "|\"copy-text-to-clipboard") (:type :leaf)
|r $ {} (:at 1629028329448) (:by |rJG4IHzWf) (:id |UypIO4O2k) (:text |:default) (:type :leaf)
|v $ {} (:at 1535133044585) (:by |rJG4IHzWf) (:id |txadBiUKVX) (:text |copy!) (:type :leaf)
:proc $ {} (:at 1520183771362) (:by |root) (:id |Bkm7k9oK_M) (:type :expr)
:data $ {}
|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)
|r $ {} (:at 1520263968650) (:by |root) (:id |rJt7Xkiuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520263971614) (:by |root) (:id |rJt7Xkiuzleaf) (:text |color) (:type :leaf)
|j $ {} (:at 1520263972304) (:by |root) (:id |H1W2X71s_G) (:type :expr)
:data $ {}
|T $ {} (:at 1520263973037) (:by |root) (:id |rJx2mQJjOG) (:text |:color) (:type :leaf)
|j $ {} (:at 1520263973840) (:by |root) (:id |SyETQ7kj_M) (:text |store) (: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 1520264493536) (:author |root) (:by |root) (:id |rktMsOY56HW) (:text |ui/center) (:time 1499755354983) (:type :leaf)
|r $ {} (:at 1520264504118) (:by |root) (:id |HyloVH1o_M) (:text |ui/fullscreen) (:type :leaf)
|v $ {} (:at 1548345344527) (:by |rJG4IHzWf) (:id |Rd00815wA) (:type :expr)
:data $ {}
|T $ {} (:at 1548345344897) (:by |rJG4IHzWf) (:id |FwsHxHh0Cb) (:text |{}) (:type :leaf)
|j $ {} (:at 1548345345314) (:by |rJG4IHzWf) (:id |1bzwconRfn) (:type :expr)
:data $ {}
|T $ {} (:at 1548345348972) (:by |rJG4IHzWf) (:id |2ATrWre4D2) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1548347027225) (:by |rJG4IHzWf) (:id |wh_7ADhNZ8) (:text |:transparent) (:type :leaf)
|t $ {} (:at 1520183820158) (:by |root) (:id |SkgNG5sFdz) (:type :expr)
:data $ {}
|T $ {} (:at 1520183829139) (:by |root) (:id |SkgNG5sFdzleaf) (:text |comp-color-pad) (:type :leaf)
|b $ {} (:at 1535133415242) (:by |rJG4IHzWf) (:id |_2nxlqR-vQ) (:text |states) (:type :leaf)
|j $ {} (:at 1520263977500) (:by |root) (:id |rJeEX1juM) (:text |color) (:type :leaf)
|v $ {} (:at 1548345834352) (:by |rJG4IHzWf) (:id |MHD3jsWPE) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |CrBktOJV8Xk) (:text |comp-repo-entry) (:type :leaf)
|x $ {} (:author |root) (:id |rJc29KD2-) (:time 1507461809635) (:type :expr)
:data $ {}
|T $ {} (:author |root) (:id |rJc29KD2-leaf) (:text |comp-reel) (:time 1507461815046) (:type :leaf)
|b $ {} (:at 1629028162681) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629028163375) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|T $ {} (:author |root) (:id |B1BYoG90Z) (:text |states) (:time 1509727101297) (:type :leaf)
|j $ {} (:at 1629028164169) (: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)
|y $ {} (:at 1520265009018) (:by |root) (:id |ByltVP1idG) (:type :expr)
:data $ {}
|T $ {} (:at 1520265011326) (:by |root) (:id |ByltVP1idGleaf) (:text |comp-inspect) (:type :leaf)
|j $ {} (:at 1548345630370) (:by |rJG4IHzWf) (:id |Syp4v1s_f) (:text "|\"color") (:type :leaf)
|r $ {} (:at 1520265022293) (:by |root) (:id |ryWLrwysuz) (:type :expr)
:data $ {}
|T $ {} (:at 1520265023213) (:by |root) (:id |HJ8BwJouM) (:text |:color) (:type :leaf)
|j $ {} (:at 1520265024500) (:by |root) (:id |rJNvBwkouf) (:text |store) (:type :leaf)
|v $ {} (:at 1520265025593) (:by |root) (:id |S15rw1suf) (:type :expr)
:data $ {}
|T $ {} (:at 1520265026583) (:by |root) (:id |SkgtBw1o_M) (:text |{}) (:type :leaf)
|j $ {} (:at 1520265027438) (:by |root) (:id |SJ-sHwJj_G) (:type :expr)
:data $ {}
|T $ {} (:at 1520265031527) (:by |root) (:id |SkljBPkoOz) (:text |:bottom) (:type :leaf)
|j $ {} (:at 1520265032406) (:by |root) (:id |HyxlLvkjOf) (:text |0) (:type :leaf)
|r $ {} (:at 1520265059285) (:by |root) (:id |S1owPyouf) (:type :expr)
:data $ {}
|T $ {} (:at 1520265063882) (:by |root) (:id |S1owPyoufleaf) (:text |:left) (:type :leaf)
|j $ {} (:at 1520265064356) (:by |root) (:id |SyQxuw1i_f) (:text |0) (:type :leaf)
|comp-repo-entry $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |fde59hVu8K) (:type :expr)
:data $ {}
|T $ {} (:at 1548345831260) (:by |rJG4IHzWf) (:id |OQSLftY9El) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |vj-JxcNlnt) (:text |comp-repo-entry) (:type :leaf)
|n $ {} (:at 1548345832180) (:by |rJG4IHzWf) (:id |IEX0opL12v) (:type :expr)
:data $ {}
|r $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |h5VBOOqV91) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |rZmUxl1WdG) (:text |a) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |VVJGy-w6zM) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |aHAY2Z9eVf) (:text |{}) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |qRGvR_9OG_) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |HJIA0VlaaO) (:text |:style) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |qqNH7QqPm1) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |4j6Fd71_-q) (:text |{}) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |ZD82Yl7lVW) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |1tBsH7xlvj) (:text |:position) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |PzYgugMBBC) (:text |:absolute) (:type :leaf)
|r $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |xrWdEeflzO) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |Pa8BXUfajDH) (:text |:right) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |xITZv9k3QTS) (:text |0) (:type :leaf)
|v $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |sIeV9cQa8Ap) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |PZRg45qSrYN) (:text |:top) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |E6G_DpSgd6z) (:text |0) (:type :leaf)
|x $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |eaBeH8fJoyR) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |J15ujDGqizp) (:text |:margin) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |pzenA-L_bvo) (:text |8) (:type :leaf)
|y $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |stLSiLnVKWn) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |Alz6p_3K2oa) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |l3kIiaCdkND) (:text |ui/font-fancy) (:type :leaf)
|yT $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |lBQFF3i5at-) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |JOlC-UloEaN) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |PgFE3IWTxRx) (:text |16) (:type :leaf)
|r $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |m8ihl4VqdLH) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |kf_PxpIb35f) (:text |:href) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |FMORSXuUYVo) (:text "|\"https://github.com/Memkits/color-pad") (:type :leaf)
|v $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |d33f858xqhq) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |VKKD2lcaVQN) (:text |:target) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |1ZQISGW8U2z) (:text "|\"_blank") (:type :leaf)
|r $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |7ENTDoZFegS) (:type :expr)
:data $ {}
|T $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |M9OrD82Xd1u) (:text |<>) (:type :leaf)
|j $ {} (:at 1548345829642) (:by |rJG4IHzWf) (:id |5piQKzAWnyC) (:text "|\"Color Pad") (: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 1629028169388) (: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 1548343926139) (:author |root) (:by |rJG4IHzWf) (: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)
|q $ {} (:at 1629028173990) (:by |rJG4IHzWf) (:id |rkWxC53BNM) (:text |>>) (: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 1520264545581) (:by |root) (:id |S1lFvHksdG) (: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)
|yj $ {} (:at 1520183799191) (:by |root) (:id |HkgkW5otdM) (:type :expr)
:data $ {}
|T $ {} (:at 1520183799807) (:by |root) (:id |HkgkW5otdMleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1520183807325) (:by |root) (:id |H1ZZ5sYuz) (:text |app.comp.color-pad) (:type :leaf)
|r $ {} (:at 1520183808713) (:by |root) (:id |B1BP-qjKOG) (:text |:refer) (:type :leaf)
|v $ {} (:at 1520183809028) (:by |root) (:id |HkmtZcstOM) (:type :expr)
:data $ {}
|T $ {} (:at 1520183811203) (:by |root) (:id |ByMFWqoKuz) (:text |[]) (:type :leaf)
|j $ {} (:at 1520183813977) (:by |root) (:id |BJn-qoKuz) (:text |comp-color-pad) (:type :leaf)
|yr $ {} (:at 1520265037437) (:by |root) (:id |SJxrUPysdG) (:type :expr)
:data $ {}
|T $ {} (:at 1520265038144) (:by |root) (:id |SJxrUPysdGleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1520265052969) (:by |root) (:id |HkbIUv1ouM) (:text |respo.comp.inspect) (:type :leaf)
|r $ {} (:at 1520265044173) (:by |root) (:id |SkiIDyjuf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1520265044402) (:by |root) (:id |HJBnUPkiOz) (:type :expr)
:data $ {}
|T $ {} (:at 1520265044575) (:by |root) (:id |HJNh8Pys_G) (:text |[]) (:type :leaf)
|j $ {} (:at 1520265047122) (:by |root) (:id |rkZp8vyiuG) (:text |comp-inspect) (:type :leaf)
:proc $ {} (:id |rksbjOYqpSZ) (:time 1499755354983) (:type :expr)
:data $ {}
|app.config $ {}
:defs $ {}
|cdn? $ {} (:at 1548343734795) (:by |rJG4IHzWf) (:id |4EBzX6hske) (:type :expr)
:data $ {}
|T $ {} (:at 1548343734795) (:by |rJG4IHzWf) (:id |HU1AwiMS76) (:text |def) (:type :leaf)
|j $ {} (:at 1548343734795) (:by |rJG4IHzWf) (:id |pZlu6khbZu) (:text |cdn?) (:type :leaf)