generated from calcit-lang/respo-calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
4697 lines (4696 loc) · 339 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{} (:package |recollect)
:configs $ {} (:init-fn |recollect.app.main/main!) (:port 6001) (:reload-fn |recollect.app.main/reload!) (:version |0.0.16)
:modules $ [] |respo.calcit/compact.cirru |lilac/compact.cirru |memof/compact.cirru |respo-ui.calcit/compact.cirru |respo-value.calcit/
:entries $ {}
:test $ {} (:init-fn |recollect.app.main/test!) (:reload-fn |recollect.app.main/test!)
:modules $ [] |calcit-test/
:files $ {}
|recollect.app.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |data-twig)
|j $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |client-store)
|v $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |states)
|j $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |client-store)
|r $ %{} :Expr (:at 1690104214726) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1690104216352) (:by |SygU7c6BlG) (:text |div)
|P $ %{} :Expr (:at 1690104234751) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1690104235319) (:by |SygU7c6BlG) (:text |{})
|T $ %{} :Expr (:at 1690104235805) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1690104237500) (:by |SygU7c6BlG) (:text |:style)
|T $ %{} :Expr (:at 1690104220780) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104220780) (:by |SygU7c6BlG) (:text |merge)
|b $ %{} :Leaf (:at 1690104220780) (:by |SygU7c6BlG) (:text |ui/global)
|h $ %{} :Leaf (:at 1690104220780) (:by |SygU7c6BlG) (:text |ui/fullscreen)
|T $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1611985708012) (:by |SygU7c6BlG) (:text |ui/row)
|r $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1698946388230) (:by |SygU7c6BlG) (:text |memof1-call)
|T $ %{} :Leaf (:at 1509464861363) (:by |root) (:text |comp-panel)
|v $ %{} :Expr (:at 1611985712764) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1611985713430) (:by |SygU7c6BlG) (:text |div)
|L $ %{} :Expr (:at 1611985713677) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611985713985) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611985721286) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611985722702) (:by |SygU7c6BlG) (:text |:style)
|j $ %{} :Leaf (:at 1611985724776) (:by |SygU7c6BlG) (:text |ui/expand)
|T $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |div)
|r $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1656927117244) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927118091) (:by |SygU7c6BlG) (:text |:style)
|b $ %{} :Expr (:at 1656927232877) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1656927233911) (:by |SygU7c6BlG) (:text |merge)
|T $ %{} :Leaf (:at 1656927118917) (:by |SygU7c6BlG) (:text |ui/row)
|b $ %{} :Expr (:at 1656927234437) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927235299) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1656927235622) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927236636) (:by |SygU7c6BlG) (:text |:padding)
|b $ %{} :Leaf (:at 1656927237134) (:by |SygU7c6BlG) (:text |8)
|v $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1656926869599) (:by |SygU7c6BlG) (:text |pre)
|r $ %{} :Expr (:at 1656926870014) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1656926870864) (:by |SygU7c6BlG) (:text |{})
|L $ %{} :Expr (:at 1656927123410) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927128843) (:by |SygU7c6BlG) (:text |:class-name)
|b $ %{} :Leaf (:at 1656927142148) (:by |SygU7c6BlG) (:text |css-code-block)
|T $ %{} :Expr (:at 1656926871676) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1656926873221) (:by |SygU7c6BlG) (:text |:inner-text)
|T $ %{} :Expr (:at 1656927194681) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1656927195749) (:by |SygU7c6BlG) (:text |trim)
|T $ %{} :Expr (:at 1509464095098) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1656926774455) (:by |SygU7c6BlG) (:text |format-cirru-edn)
|j $ %{} :Leaf (:at 1509464095098) (:by |root) (:text |data-twig)
|vT $ %{} :Expr (:at 1656927226046) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927226576) (:by |SygU7c6BlG) (:text |=<)
|b $ %{} :Leaf (:at 1656927227155) (:by |SygU7c6BlG) (:text |8)
|h $ %{} :Leaf (:at 1656927227751) (:by |SygU7c6BlG) (:text |nil)
|w $ %{} :Expr (:at 1656927114409) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927114409) (:by |SygU7c6BlG) (:text |pre)
|b $ %{} :Expr (:at 1656927114409) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927114409) (:by |SygU7c6BlG) (:text |{})
|X $ %{} :Expr (:at 1656927137008) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927137008) (:by |SygU7c6BlG) (:text |:class-name)
|b $ %{} :Leaf (:at 1656927139342) (:by |SygU7c6BlG) (:text |css-code-block)
|b $ %{} :Expr (:at 1656927114409) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927114409) (:by |SygU7c6BlG) (:text |:inner-text)
|b $ %{} :Expr (:at 1656927197531) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1656927198362) (:by |SygU7c6BlG) (:text |trim)
|T $ %{} :Expr (:at 1656927114409) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927114409) (:by |SygU7c6BlG) (:text |format-cirru-edn)
|b $ %{} :Leaf (:at 1656927114409) (:by |SygU7c6BlG) (:text |client-store)
|r $ %{} :Expr (:at 1611985719473) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611985719473) (:by |SygU7c6BlG) (:text |comp-value)
|j $ %{} :Expr (:at 1611985719473) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611985719473) (:by |SygU7c6BlG) (:text |>>)
|j $ %{} :Leaf (:at 1611985719473) (:by |SygU7c6BlG) (:text |states)
|r $ %{} :Leaf (:at 1611985719473) (:by |SygU7c6BlG) (:text |:value)
|r $ %{} :Leaf (:at 1611985719473) (:by |SygU7c6BlG) (:text |client-store)
|v $ %{} :Leaf (:at 1611985719473) (:by |SygU7c6BlG) (:text |0)
|b $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |div)
|b $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |{})
|h $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |let)
|b $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |changes)
|b $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |diff-twig)
|b $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |deep-a)
|h $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |deep-b)
|l $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107774538) (:by |SygU7c6BlG) (:text |changes2)
|b $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |diff-twig)
|b $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |deep-a)
|h $ %{} :Leaf (:at 1690107772957) (:by |SygU7c6BlG) (:text |1)
|l $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104240969) (:by |SygU7c6BlG) (:text |{})
|h $ %{} :Expr (:at 1690104240969) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104251333) (:by |SygU7c6BlG) (:text |pre)
|h $ %{} :Expr (:at 1690104252490) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1690104253585) (:by |SygU7c6BlG) (:text |{})
|L $ %{} :Expr (:at 1690104295165) (:by |SygU7c6BlG)
:data $ {}
|b $ %{} :Leaf (:at 1690104297595) (:by |SygU7c6BlG) (:text |:style)
|h $ %{} :Expr (:at 1690104300979) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104302745) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104303087) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104304795) (:by |SygU7c6BlG) (:text |:line-height)
|b $ %{} :Leaf (:at 1690104308770) (:by |SygU7c6BlG) (:text "|\"1.4")
|h $ %{} :Expr (:at 1690104312178) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104313694) (:by |SygU7c6BlG) (:text |:margin)
|b $ %{} :Leaf (:at 1690104315658) (:by |SygU7c6BlG) (:text "|\"0 8px")
|T $ %{} :Expr (:at 1690104254110) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1690104256277) (:by |SygU7c6BlG) (:text |:inner-text)
|T $ %{} :Expr (:at 1690104266215) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1690104270140) (:by |SygU7c6BlG) (:text |format-cirru-edn)
|T $ %{} :Leaf (:at 1690111932135) (:by |SygU7c6BlG) (:text |changes)
|css-code-block $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1656927142983) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927144532) (:by |SygU7c6BlG) (:text |defstyle)
|b $ %{} :Leaf (:at 1656927142983) (:by |SygU7c6BlG) (:text |css-code-block)
|h $ %{} :Expr (:at 1656927142983) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927155419) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1656927155693) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927157121) (:by |SygU7c6BlG) (:text "|\"$0")
|b $ %{} :Expr (:at 1656927157340) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927157779) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1656927158077) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927161580) (:by |SygU7c6BlG) (:text |:line-height)
|b $ %{} :Leaf (:at 1656927164604) (:by |SygU7c6BlG) (:text "|\"20px")
|h $ %{} :Expr (:at 1656927166729) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927169949) (:by |SygU7c6BlG) (:text |:margin)
|b $ %{} :Leaf (:at 1656927171806) (:by |SygU7c6BlG) (:text |0)
|j $ %{} :Expr (:at 1656927203986) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927205313) (:by |SygU7c6BlG) (:text |:padding)
|b $ %{} :Leaf (:at 1656927207483) (:by |SygU7c6BlG) (:text "|\"8px")
|k $ %{} :Expr (:at 1656927211338) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927214073) (:by |SygU7c6BlG) (:text |:border-radius)
|b $ %{} :Leaf (:at 1656927215986) (:by |SygU7c6BlG) (:text "|\"4px")
|l $ %{} :Expr (:at 1656927172488) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927177261) (:by |SygU7c6BlG) (:text |:background-color)
|b $ %{} :Expr (:at 1656927177555) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927177974) (:by |SygU7c6BlG) (:text |hsl)
|b $ %{} :Leaf (:at 1656927178312) (:by |SygU7c6BlG) (:text |0)
|h $ %{} :Leaf (:at 1656927178581) (:by |SygU7c6BlG) (:text |0)
|l $ %{} :Leaf (:at 1656927179070) (:by |SygU7c6BlG) (:text |90)
|deep-a $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1690104034282) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104034282) (:by |SygU7c6BlG) (:text |def)
|b $ %{} :Leaf (:at 1690104034282) (:by |SygU7c6BlG) (:text |deep-a)
|h $ %{} :Expr (:at 1690104034282) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104036701) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104037833) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104038451) (:by |SygU7c6BlG) (:text |:a)
|b $ %{} :Expr (:at 1690104038850) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104042044) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104042891) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104043200) (:by |SygU7c6BlG) (:text |:b)
|b $ %{} :Expr (:at 1690104044220) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104044531) (:by |SygU7c6BlG) (:text |[])
|b $ %{} :Leaf (:at 1690104045805) (:by |SygU7c6BlG) (:text |1)
|h $ %{} :Leaf (:at 1690104046366) (:by |SygU7c6BlG) (:text |2)
|l $ %{} :Expr (:at 1690104046879) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104047327) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104048442) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104049623) (:by |SygU7c6BlG) (:text |:c)
|b $ %{} :Expr (:at 1690104054443) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104056270) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104056650) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104059428) (:by |SygU7c6BlG) (:text |:kind)
|b $ %{} :Leaf (:at 1690104061039) (:by |SygU7c6BlG) (:text |:leaf)
|h $ %{} :Expr (:at 1690104066550) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104068038) (:by |SygU7c6BlG) (:text |:text)
|b $ %{} :Leaf (:at 1690104070464) (:by |SygU7c6BlG) (:text "|\"demo")
|l $ %{} :Expr (:at 1690104072381) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104073174) (:by |SygU7c6BlG) (:text |:time)
|b $ %{} :Leaf (:at 1690104074254) (:by |SygU7c6BlG) (:text |:a)
|o $ %{} :Expr (:at 1690104075139) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104078184) (:by |SygU7c6BlG) (:text |:by)
|b $ %{} :Leaf (:at 1690104083611) (:by |SygU7c6BlG) (:text "|\"me")
|q $ %{} :Expr (:at 1690107052778) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107056107) (:by |SygU7c6BlG) (:text |:children)
|b $ %{} :Expr (:at 1690107057012) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107057358) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690107057708) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107057978) (:by |SygU7c6BlG) (:text |:a)
|b $ %{} :Leaf (:at 1690107058690) (:by |SygU7c6BlG) (:text |1)
|h $ %{} :Expr (:at 1690107059308) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107059660) (:by |SygU7c6BlG) (:text |:b)
|b $ %{} :Leaf (:at 1690107060525) (:by |SygU7c6BlG) (:text |2)
|h $ %{} :Expr (:at 1690107560160) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107561085) (:by |SygU7c6BlG) (:text |:aa1)
|b $ %{} :Leaf (:at 1690107562231) (:by |SygU7c6BlG) (:text |2)
|deep-b $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1690104164455) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104164455) (:by |SygU7c6BlG) (:text |def)
|b $ %{} :Leaf (:at 1690104164455) (:by |SygU7c6BlG) (:text |deep-b)
|h $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |:a)
|b $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |:b)
|b $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |[])
|b $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |1)
|h $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |2)
|l $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |:c)
|b $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |:kind)
|b $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |:leaf)
|h $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |:text)
|b $ %{} :Leaf (:at 1690104175596) (:by |SygU7c6BlG) (:text "|\"demo2")
|l $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104173282) (:by |SygU7c6BlG) (:text |:time)
|b $ %{} :Leaf (:at 1690104173876) (:by |SygU7c6BlG) (:text |112)
|o $ %{} :Expr (:at 1690104165495) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104165495) (:by |SygU7c6BlG) (:text |:by)
|b $ %{} :Leaf (:at 1690104167528) (:by |SygU7c6BlG) (:text "|\"me2")
|q $ %{} :Expr (:at 1690107067267) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107067267) (:by |SygU7c6BlG) (:text |:children)
|b $ %{} :Expr (:at 1690107067267) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107067267) (:by |SygU7c6BlG) (:text |{})
|b $ %{} :Expr (:at 1690107067267) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107067267) (:by |SygU7c6BlG) (:text |:a)
|b $ %{} :Leaf (:at 1690107067267) (:by |SygU7c6BlG) (:text |1)
|h $ %{} :Expr (:at 1690107067267) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107067267) (:by |SygU7c6BlG) (:text |:b)
|b $ %{} :Leaf (:at 1690107069278) (:by |SygU7c6BlG) (:text |3)
|h $ %{} :Expr (:at 1690107568566) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690107568566) (:by |SygU7c6BlG) (:text |:aa1)
|b $ %{} :Leaf (:at 1690111872661) (:by |SygU7c6BlG) (:text |4)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |recollect.app.comp.container)
|r $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1656927187889) (:by |SygU7c6BlG) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |ui)
|w $ %{} :Expr (:at 1542475245750) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1542475247469) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1542475248139) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1542475249389) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1542475249389) (:by |root) (:text |defcomp)
|r $ %{} :Leaf (:at 1590921459226) (:by |SygU7c6BlG) (:text |>>)
|v $ %{} :Leaf (:at 1542475249389) (:by |root) (:text |<>)
|x $ %{} :Leaf (:at 1542475249389) (:by |root) (:text |span)
|y $ %{} :Leaf (:at 1542475249389) (:by |root) (:text |div)
|z $ %{} :Leaf (:at 1656926883473) (:by |SygU7c6BlG) (:text |pre)
|wT $ %{} :Expr (:at 1656927147045) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927148212) (:by |SygU7c6BlG) (:text |respo.css)
|b $ %{} :Leaf (:at 1656927150398) (:by |SygU7c6BlG) (:text |:refer)
|h $ %{} :Expr (:at 1656927150637) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1656927152296) (:by |SygU7c6BlG) (:text |defstyle)
|x $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |=<)
|y $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1593881951827) (:by |SygU7c6BlG) (:text |recollect.app.comp.panel)
|r $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |comp-panel)
|yT $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |respo-value.comp.value)
|r $ %{} :Leaf (:at 1509464131106) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1509464131106) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509464136290) (:by |root) (:text |comp-value)
|yj $ %{} :Expr (:at 1611983682281) (:by |SygU7c6BlG)
:data $ {}
|j $ %{} :Leaf (:at 1698946366864) (:by |SygU7c6BlG) (:text |memof.once)
|r $ %{} :Leaf (:at 1611983691660) (:by |SygU7c6BlG) (:text |:refer)
|v $ %{} :Expr (:at 1611983692154) (:by |SygU7c6BlG)
:data $ {}
|j $ %{} :Leaf (:at 1698946384121) (:by |SygU7c6BlG) (:text |memof1-call)
|z $ %{} :Expr (:at 1690104001492) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104010712) (:by |SygU7c6BlG) (:text |recollect.diff)
|b $ %{} :Leaf (:at 1690104011542) (:by |SygU7c6BlG) (:text |:refer)
|h $ %{} :Expr (:at 1690104011782) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1690104015349) (:by |SygU7c6BlG) (:text |diff-twig)
|recollect.app.comp.panel $ %{} :FileEntry
:defs $ {}
|comp-panel $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |comp-panel)
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|v $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |style-line)
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Change lit-0")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:lit-0)
|v $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |nil)
|x $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Change lit-1")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:lit-1)
|v $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |style-line)
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Change map-0")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:map-0)
|v $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |nil)
|x $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Remove map-0")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:map-0-rm)
|x $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |style-line)
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Change vec-0")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:vec-0)
|v $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |nil)
|x $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465287970) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Remove vec-0")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:vec-0-rm)
|y $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |style-line)
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1689477912814) (:by |SygU7c6BlG) (:text "||Change vec-0")
|r $ %{} :Leaf (:at 1689477930337) (:by |SygU7c6BlG) (:text |:vec-0)
|v $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |nil)
|x $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465391140) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1689477913844) (:by |SygU7c6BlG) (:text "||Change vec-0 remove")
|r $ %{} :Leaf (:at 1689477931575) (:by |SygU7c6BlG) (:text |:vec-0-rm)
|yT $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |style-line)
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Change set-0")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:set-0)
|v $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |0)
|x $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Change set-0 remove")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:set-0-rm)
|yj $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |style-line)
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Change date")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:date)
|yr $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |style-line)
|r $ %{} :Expr (:at 1509465285678) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |render-button)
|j $ %{} :Leaf (:at 1509465285678) (:by |root) (:text "||Change types")
|r $ %{} :Leaf (:at 1509465285678) (:by |root) (:text |:types)
|on-click $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |on-click)
|r $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |op)
|v $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |dispatch!)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |op)
|r $ %{} :Expr (:at 1656926709078) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1656926748770) (:by |SygU7c6BlG) (:text |js/Math.round)
|T $ %{} :Expr (:at 1656926707099) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1656926707776) (:by |SygU7c6BlG) (:text |*)
|L $ %{} :Leaf (:at 1656926708254) (:by |SygU7c6BlG) (:text |100)
|T $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1656926702630) (:by |SygU7c6BlG) (:text |js/Math.random)
|render-button $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1509465301721) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |render-button)
|r $ %{} :Expr (:at 1509465301721) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |title)
|j $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |op)
|v $ %{} :Expr (:at 1509465301721) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1509465301721) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1509465301721) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |ui/button)
|p $ %{} :Expr (:at 1509465367352) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465369522) (:by |root) (:text |:inner-text)
|j $ %{} :Leaf (:at 1509465371479) (:by |root) (:text |title)
|v $ %{} :Expr (:at 1509465301721) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518542069228) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1509465301721) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |on-click)
|j $ %{} :Leaf (:at 1509465301721) (:by |root) (:text |op)
|style-line $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |style-line)
|r $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |:height)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text ||40px)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |recollect.app.comp.panel)
|v $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |hsl.core)
|r $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |ui)
|w $ %{} :Expr (:at 1542475222178) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1542475227493) (:by |root) (:text |[])
|L $ %{} :Leaf (:at 1542475228908) (:by |root) (:text |respo.core)
|P $ %{} :Leaf (:at 1542475230327) (:by |root) (:text |:refer)
|T $ %{} :Expr (:at 1542475226137) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1542475226137) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1542475226137) (:by |root) (:text |defcomp)
|r $ %{} :Leaf (:at 1542475226137) (:by |root) (:text |<>)
|v $ %{} :Leaf (:at 1542475226137) (:by |root) (:text |span)
|x $ %{} :Leaf (:at 1542475226137) (:by |root) (:text |div)
|x $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |=<)
|recollect.app.config $ %{} :FileEntry
:defs $ {}
|dev? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |def)
|j $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |dev?)
|r $ %{} :Leaf (:at 1611982261419) (:by |SygU7c6BlG) (:text |true)
|site $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |def)
|j $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |site)
|r $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |:dev-ui)
|j $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text "|\"http://localhost:8100/main-fonts.css")
|r $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |:release-ui)
|j $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text "|\"http://cdn.tiye.me/favored-fonts/main-fonts.css")
|v $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |:cdn-url)
|j $ %{} :Leaf (:at 1561172126497) (:by |SygU7c6BlG) (:text "|\"http://cdn.tiye.me/recollect/")
|x $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |:cdn-folder)
|j $ %{} :Leaf (:at 1561172131042) (:by |SygU7c6BlG) (:text "|\"tiye.me:cdn/recollect")
|y $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |:title)
|j $ %{} :Leaf (:at 1561172134533) (:by |SygU7c6BlG) (:text "|\"Recollect")
|yT $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |:icon)
|j $ %{} :Leaf (:at 1561172137490) (:by |SygU7c6BlG) (:text "|\"http://cdn.tiye.me/logo/cirru.png")
|yj $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |:storage-key)
|j $ %{} :Leaf (:at 1561172140852) (:by |SygU7c6BlG) (:text "|\"recollect")
|yr $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |:upload-folder)
|j $ %{} :Leaf (:at 1561172149622) (:by |SygU7c6BlG) (:text "|\"tiye.me:repo/Cumulo/recollect/")
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1561172113809) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |ns)
|j $ %{} :Leaf (:at 1561172113809) (:by |SygU7c6BlG) (:text |recollect.app.config)
|recollect.app.main $ %{} :FileEntry
:defs $ {}
|*client-store $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1611982300164) (:by |SygU7c6BlG) (:text |defatom)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |*client-store)
|r $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |schema/store)
|*data-twig $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1611982284418) (:by |SygU7c6BlG) (:text |defatom)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |*data-twig)
|r $ %{} :Leaf (:at 1611987849251) (:by |SygU7c6BlG) (:text |nil)
|*store $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1611982277807) (:by |SygU7c6BlG) (:text |defatom)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |*store)
|r $ %{} :Expr (:at 1611987683739) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987866557) (:by |SygU7c6BlG) (:text |merge)
|j $ %{} :Leaf (:at 1611987868378) (:by |SygU7c6BlG) (:text |schema/store)
|r $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:lit-0)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |1)
|r $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:vec-0)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |[])
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:a)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |1)
|v $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1689477967174) (:by |SygU7c6BlG) (:text |:vec-0)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |[])
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:a)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |1)
|x $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:set-0)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |#{})
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |1)
|r $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:a)
|y $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:map-0)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:x)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |0)
|yT $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:in-map)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:lit-1)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |1)
|r $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:vec-1)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |[])
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:a)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |1)
|yj $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:date)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:year)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |2016)
|r $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:month)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |10)
|yr $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:user)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:name)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text ||Chen)
|yv $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:types)
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |{})
|j $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |:name)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |1)
|r $ %{} :Expr (:at 1611987868935) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text ||name)
|j $ %{} :Leaf (:at 1611987868935) (:by |SygU7c6BlG) (:text |2)
|dispatch! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1500476982536) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500476982536) (:by |root) (:text |op)
|t $ %{} :Expr (:at 1590921614103) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1590921615125) (:by |SygU7c6BlG) (:text |when)
|j $ %{} :Expr (:at 1590921636388) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1590921637164) (:by |SygU7c6BlG) (:text |and)
|T $ %{} :Leaf (:at 1590921633120) (:by |SygU7c6BlG) (:text |config/dev?)
|r $ %{} :Expr (:at 1590921645609) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1689478459689) (:by |SygU7c6BlG) (:text |js/console.log)
|b $ %{} :Leaf (:at 1611985069217) (:by |SygU7c6BlG) (:text "|\"Dispatch:")
|j $ %{} :Leaf (:at 1590921647257) (:by |SygU7c6BlG) (:text |op)
|v $ %{} :Expr (:at 1590921612301) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1590921612301) (:by |SygU7c6BlG) (:text |reset!)
|j $ %{} :Leaf (:at 1611989195396) (:by |SygU7c6BlG) (:text |*store)
|v $ %{} :Expr (:at 1590921612301) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1590921612301) (:by |SygU7c6BlG) (:text |updater)
|j $ %{} :Leaf (:at 1611989197658) (:by |SygU7c6BlG) (:text |@*store)
|r $ %{} :Leaf (:at 1590921612301) (:by |SygU7c6BlG) (:text |op)
|main! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1511002230884) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |main!)
|r $ %{} :Expr (:at 1511002230884) (:by |root)
:data $ {}
|s $ %{} :Expr (:at 1624090635042) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1624090639772) (:by |SygU7c6BlG) (:text |load-console-formatter!)
|t $ %{} :Expr (:at 1561172322294) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172322294) (:by |SygU7c6BlG) (:text |println)
|j $ %{} :Leaf (:at 1561172322294) (:by |SygU7c6BlG) (:text "|\"Running mode:")
|r $ %{} :Expr (:at 1561172322294) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1561172322294) (:by |SygU7c6BlG) (:text |if)
|j $ %{} :Leaf (:at 1561172322294) (:by |SygU7c6BlG) (:text |config/dev?)
|r $ %{} :Leaf (:at 1561172322294) (:by |SygU7c6BlG) (:text "|\"dev")
|v $ %{} :Leaf (:at 1561172322294) (:by |SygU7c6BlG) (:text "|\"release")
|v $ %{} :Expr (:at 1511002230884) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |if)
|j $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |ssr?)
|r $ %{} :Expr (:at 1511002230884) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |render-app!)
|j $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |realize-ssr!)
|x $ %{} :Expr (:at 1511002230884) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |render-app!)
|j $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |render!)
|y $ %{} :Expr (:at 1511002230884) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |add-watch)
|j $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |*store)
|r $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |:changes)
|v $ %{} :Expr (:at 1613976464031) (:by |SygU7c6BlG)
:data $ {}
|D $ %{} :Leaf (:at 1613976464664) (:by |SygU7c6BlG) (:text |fn)
|L $ %{} :Expr (:at 1613976465625) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1613976468348) (:by |SygU7c6BlG) (:text |store)
|j $ %{} :Leaf (:at 1613976469174) (:by |SygU7c6BlG) (:text |prev)
|T $ %{} :Expr (:at 1613976470472) (:by |SygU7c6BlG)
:data $ {}
|T $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |render-data-twig!)
|yT $ %{} :Expr (:at 1511002230884) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |add-watch)
|j $ %{} :Leaf (:at 1511002230884) (:by |root) (:text |*client-store)