-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
3409 lines (3408 loc) · 266 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{} (:package |app)
:configs $ {} (: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 $ {}
:files $ {}
|app.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |defcomp)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-container)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1569518511474) (:by |rJG4IHzWf) (:text |reel)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|D $ %{} :Leaf (:at nil) (:by nil) (:text |let)
|L $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |store)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |:store)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |reel)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |states)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |:states)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |store)
|r $ %{} :Expr (:at 1578202672218) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202672854) (:by |rJG4IHzWf) (:text |router)
|j $ %{} :Expr (:at 1578202673077) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202673771) (:by |rJG4IHzWf) (:text |:router)
|j $ %{} :Leaf (:at 1578202674500) (:by |rJG4IHzWf) (:text |store)
|T $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |div)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |{})
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |:style)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |merge)
|j $ %{} :Leaf (:at 1521129814235) (:by |root) (:text |ui/global)
|n $ %{} :Leaf (:at 1569855942403) (:by |rJG4IHzWf) (:text |ui/fullscreen)
|r $ %{} :Leaf (:at 1569518690875) (:by |rJG4IHzWf) (:text |ui/column)
|m $ %{} :Expr (:at 1569518694361) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518694937) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1569518695187) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518695509) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518700103) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518700771) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1569518842309) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569518843938) (:by |rJG4IHzWf) (:text |merge)
|T $ %{} :Leaf (:at 1569518704375) (:by |rJG4IHzWf) (:text |ui/row-middle)
|j $ %{} :Expr (:at 1569518844555) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518844893) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518845154) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518850033) (:by |rJG4IHzWf) (:text |:border-bottom)
|j $ %{} :Expr (:at 1569518850666) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518851149) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Leaf (:at 1569518856134) (:by |rJG4IHzWf) (:text "|\"1px solid ")
|r $ %{} :Expr (:at 1569518856784) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518857380) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1569518858087) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1569518858355) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1569518858725) (:by |rJG4IHzWf) (:text |90)
|r $ %{} :Expr (:at 1569518705262) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518715569) (:by |rJG4IHzWf) (:text |render-entry)
|b $ %{} :Leaf (:at 1569518722655) (:by |rJG4IHzWf) (:text "|\"Home")
|f $ %{} :Leaf (:at 1569518736017) (:by |rJG4IHzWf) (:text |:home)
|p $ %{} :Leaf (:at 1578202676778) (:by |rJG4IHzWf) (:text |router)
|v $ %{} :Expr (:at 1569518705262) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518715569) (:by |rJG4IHzWf) (:text |render-entry)
|b $ %{} :Leaf (:at 1569518730677) (:by |rJG4IHzWf) (:text "|\"Editor")
|f $ %{} :Leaf (:at 1569518738797) (:by |rJG4IHzWf) (:text |:editor)
|p $ %{} :Leaf (:at 1578202678367) (:by |rJG4IHzWf) (:text |router)
|q $ %{} :Expr (:at 1569518421336) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124639173) (:by |rJG4IHzWf) (:text |case-default)
|b $ %{} :Expr (:at 1569692235232) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569692237776) (:by |rJG4IHzWf) (:text |or)
|T $ %{} :Expr (:at 1569518559674) (:by |rJG4IHzWf)
:data $ {}
|v $ %{} :Leaf (:at 1578202247907) (:by |rJG4IHzWf) (:text |:name)
|x $ %{} :Leaf (:at 1578202689315) (:by |rJG4IHzWf) (:text |router)
|j $ %{} :Leaf (:at 1569692239659) (:by |rJG4IHzWf) (:text |:home)
|h $ %{} :Expr (:at 1629124641562) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124641562) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1629124641562) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124641562) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1629124641562) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124641562) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Expr (:at 1629124641562) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124641562) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Leaf (:at 1629124641562) (:by |rJG4IHzWf) (:text "|\"Else")
|r $ %{} :Expr (:at 1629124641562) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124641562) (:by |rJG4IHzWf) (:text |:page)
|j $ %{} :Leaf (:at 1629124641562) (:by |rJG4IHzWf) (:text |store)
|n $ %{} :Expr (:at 1569518564160) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518566480) (:by |rJG4IHzWf) (:text |:home)
|j $ %{} :Expr (:at 1569518573147) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518574749) (:by |rJG4IHzWf) (:text |comp-viewer)
|b $ %{} :Expr (:at 1597936954926) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1597936957222) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1597936956224) (:by |rJG4IHzWf) (:text |states)
|j $ %{} :Leaf (:at 1597936958304) (:by |rJG4IHzWf) (:text |:viewer)
|j $ %{} :Expr (:at 1569692214315) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569692214315) (:by |rJG4IHzWf) (:text |:records)
|j $ %{} :Leaf (:at 1569692214315) (:by |rJG4IHzWf) (:text |store)
|t $ %{} :Expr (:at 1569518564160) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518578857) (:by |rJG4IHzWf) (:text |:editor)
|j $ %{} :Expr (:at 1569518573147) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518580542) (:by |rJG4IHzWf) (:text |comp-editor)
|b $ %{} :Expr (:at 1597936961766) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1597936962784) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1569691675874) (:by |rJG4IHzWf) (:text |states)
|j $ %{} :Leaf (:at 1597936963542) (:by |rJG4IHzWf) (:text |:editor)
|j $ %{} :Expr (:at 1569691434375) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691435419) (:by |rJG4IHzWf) (:text |:records)
|j $ %{} :Leaf (:at 1569691436718) (:by |rJG4IHzWf) (:text |store)
|u $ %{} :Expr (:at 1569923302099) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923304909) (:by |rJG4IHzWf) (:text |:food-analysis)
|j $ %{} :Expr (:at 1569923311167) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923315913) (:by |rJG4IHzWf) (:text |comp-food-analysis)
|j $ %{} :Expr (:at 1569923372203) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923373937) (:by |rJG4IHzWf) (:text |:records)
|j $ %{} :Leaf (:at 1569923374708) (:by |rJG4IHzWf) (:text |store)
|r $ %{} :Leaf (:at 1578202680998) (:by |rJG4IHzWf) (:text |router)
|v $ %{} :Expr (:at 1569923302099) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1570555072912) (:by |rJG4IHzWf) (:text |:place-analysis)
|j $ %{} :Expr (:at 1569923311167) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1570555074967) (:by |rJG4IHzWf) (:text |comp-place-analysis)
|j $ %{} :Expr (:at 1569923372203) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923373937) (:by |rJG4IHzWf) (:text |:records)
|j $ %{} :Leaf (:at 1569923374708) (:by |rJG4IHzWf) (:text |store)
|r $ %{} :Leaf (:at 1578202683542) (:by |rJG4IHzWf) (:text |router)
|x $ %{} :Expr (:at 1569691757182) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691757182) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Leaf (:at 1569691757182) (:by |rJG4IHzWf) (:text |dev?)
|r $ %{} :Expr (:at 1569691757182) (:by |rJG4IHzWf)
:data $ {}
|r $ %{} :Leaf (:at 1569691757182) (:by |rJG4IHzWf) (:text |comp-reel)
|v $ %{} :Expr (:at 1597936969334) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1597936970204) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1569691757182) (:by |rJG4IHzWf) (:text |states)
|j $ %{} :Leaf (:at 1597936970976) (:by |rJG4IHzWf) (:text |:reel)
|x $ %{} :Leaf (:at 1569691757182) (:by |rJG4IHzWf) (:text |reel)
|y $ %{} :Expr (:at 1569691757182) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691757182) (:by |rJG4IHzWf) (:text |{})
|y $ %{} :Expr (:at 1569691758250) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691758799) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Leaf (:at 1569691760098) (:by |rJG4IHzWf) (:text |dev?)
|r $ %{} :Expr (:at 1569691760436) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691763639) (:by |rJG4IHzWf) (:text |comp-inspect)
|b $ %{} :Leaf (:at 1569691787337) (:by |rJG4IHzWf) (:text "|\"store")
|j $ %{} :Leaf (:at 1569691828573) (:by |rJG4IHzWf) (:text |store)
|r $ %{} :Expr (:at 1569691784247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691783697) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569691821781) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691822766) (:by |rJG4IHzWf) (:text |:bottom)
|j $ %{} :Leaf (:at 1569691823585) (:by |rJG4IHzWf) (:text |0)
|render-entry $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1569518748392) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518748392) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1569518748392) (:by |rJG4IHzWf) (:text |render-entry)
|r $ %{} :Expr (:at 1569518748392) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518751255) (:by |rJG4IHzWf) (:text |title)
|j $ %{} :Leaf (:at 1569518753480) (:by |rJG4IHzWf) (:text |code)
|r $ %{} :Leaf (:at 1578202302203) (:by |rJG4IHzWf) (:text |router)
|v $ %{} :Expr (:at 1569518757012) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518758111) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1569518758381) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518759318) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518765562) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518766964) (:by |rJG4IHzWf) (:text |:on-click)
|j $ %{} :Expr (:at 1569518767364) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518769310) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1569518769564) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518769746) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1569518772196) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1569518773282) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518773926) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Leaf (:at 1578202335443) (:by |rJG4IHzWf) (:text |:router)
|r $ %{} :Expr (:at 1578202335966) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578202336519) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1578202337450) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578202338494) (:by |rJG4IHzWf) (:text |:name)
|T $ %{} :Leaf (:at 1569518791536) (:by |rJG4IHzWf) (:text |code)
|j $ %{} :Expr (:at 1578202341412) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202340185) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1578202342115) (:by |rJG4IHzWf) (:text |nil)
|r $ %{} :Expr (:at 1569518805468) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518807904) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1569518816969) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569518818107) (:by |rJG4IHzWf) (:text |merge)
|T $ %{} :Expr (:at 1569518809017) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518809369) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518810256) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518811581) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1569518813355) (:by |rJG4IHzWf) (:text "|\"0 8px")
|n $ %{} :Expr (:at 1569518810256) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518922539) (:by |rJG4IHzWf) (:text |:margin)
|j $ %{} :Leaf (:at 1569518813355) (:by |rJG4IHzWf) (:text "|\"0 8px")
|p $ %{} :Expr (:at 1569518923226) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518925360) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1569518926875) (:by |rJG4IHzWf) (:text |:pointer)
|r $ %{} :Expr (:at 1569518868234) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518870207) (:by |rJG4IHzWf) (:text |:color)
|j $ %{} :Expr (:at 1569518870422) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518870744) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1569518874576) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1569518872414) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1569518905106) (:by |rJG4IHzWf) (:text |70)
|t $ %{} :Expr (:at 1569518908141) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518910122) (:by |rJG4IHzWf) (:text |:font-size)
|j $ %{} :Leaf (:at 1569518914166) (:by |rJG4IHzWf) (:text |16)
|v $ %{} :Expr (:at 1569518892366) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518895207) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1569518899046) (:by |rJG4IHzWf) (:text |ui/font-fancy)
|j $ %{} :Expr (:at 1569518818993) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518819988) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1569518820228) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518820508) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1569518821130) (:by |rJG4IHzWf) (:text |code)
|r $ %{} :Expr (:at 1578202306106) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202309800) (:by |rJG4IHzWf) (:text |:name)
|j $ %{} :Leaf (:at 1578202310468) (:by |rJG4IHzWf) (:text |router)
|r $ %{} :Expr (:at 1569518825653) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518826603) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518826871) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518880341) (:by |rJG4IHzWf) (:text |:color)
|j $ %{} :Expr (:at 1569518881111) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518882307) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1569518882874) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1569518883181) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1569518884221) (:by |rJG4IHzWf) (:text |30)
|r $ %{} :Expr (:at 1569518795478) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518795837) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Leaf (:at 1569518797816) (:by |rJG4IHzWf) (:text |title)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |ns)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |app.comp.container)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |:require)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at 1629124263663) (:by |rJG4IHzWf) (:text |respo-ui.core)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |hsl)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:as)
|v $ %{} :Leaf (:at nil) (:by nil) (:text |ui)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at 1540958704705) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |defcomp)
|n $ %{} :Leaf (:at 1597936908727) (:by |rJG4IHzWf) (:text |>>)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |<>)
|v $ %{} :Leaf (:at nil) (:by nil) (:text |div)
|x $ %{} :Leaf (:at nil) (:by nil) (:text |button)
|xT $ %{} :Leaf (:at nil) (:by nil) (:text |textarea)
|y $ %{} :Leaf (:at nil) (:by nil) (:text |span)
|yT $ %{} :Leaf (:at 1552321107012) (:by |rJG4IHzWf) (:text |input)
|x $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |respo.comp.space)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |=<)
|y $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |reel.comp.reel)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-reel)
|yD $ %{} :Expr (:at 1569691774857) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691775147) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569691779107) (:by |rJG4IHzWf) (:text |respo.comp.inspect)
|r $ %{} :Leaf (:at 1569691779846) (:by |rJG4IHzWf) (:text |:refer)
|v $ %{} :Expr (:at 1569691780008) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691780182) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569691782066) (:by |rJG4IHzWf) (:text |comp-inspect)
|yT $ %{} :Expr (:at 1519699088529) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519699088805) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1519699092590) (:by |root) (:text |respo-md.comp.md)
|r $ %{} :Leaf (:at 1519699093410) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1519699093683) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519699093922) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1519699096732) (:by |root) (:text |comp-md)
|yj $ %{} :Expr (:at 1521954061310) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1521954061645) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1527788377809) (:by |root) (:text |app.config)
|r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1521954065004) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1521954065219) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?)
|yr $ %{} :Expr (:at 1569518542514) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518542514) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569518542514) (:by |rJG4IHzWf) (:text |app.comp.viewer)
|r $ %{} :Leaf (:at 1569518542514) (:by |rJG4IHzWf) (:text |:refer)
|v $ %{} :Expr (:at 1569518542514) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518542514) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569518542514) (:by |rJG4IHzWf) (:text |comp-viewer)
|yv $ %{} :Expr (:at 1569518542514) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518542514) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569518545587) (:by |rJG4IHzWf) (:text |app.comp.editor)
|r $ %{} :Leaf (:at 1569518542514) (:by |rJG4IHzWf) (:text |:refer)
|v $ %{} :Expr (:at 1569518542514) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518542514) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569518547834) (:by |rJG4IHzWf) (:text |comp-editor)
|yx $ %{} :Expr (:at 1569923354442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923354442) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569923354442) (:by |rJG4IHzWf) (:text |app.comp.food-analysis)
|r $ %{} :Leaf (:at 1569923354442) (:by |rJG4IHzWf) (:text |:refer)
|v $ %{} :Expr (:at 1569923354442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923354442) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569923354442) (:by |rJG4IHzWf) (:text |comp-food-analysis)
|yy $ %{} :Expr (:at 1569923354442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923354442) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1570555080215) (:by |rJG4IHzWf) (:text |app.comp.place-analysis)
|r $ %{} :Leaf (:at 1569923354442) (:by |rJG4IHzWf) (:text |:refer)
|v $ %{} :Expr (:at 1569923354442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923354442) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1570555082239) (:by |rJG4IHzWf) (:text |comp-place-analysis)
|app.comp.editor $ %{} :FileEntry
:defs $ {}
|comp-editor $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |defcomp)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-editor)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|D $ %{} :Leaf (:at 1569691670949) (:by |rJG4IHzWf) (:text |states)
|T $ %{} :Leaf (:at 1569691669970) (:by |rJG4IHzWf) (:text |records)
|v $ %{} :Expr (:at 1569691438998) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569691439597) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1569691440582) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Expr (:at 1597937018192) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1597937018996) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1597937019225) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1597937020846) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1597937021574) (:by |rJG4IHzWf) (:text |states)
|T $ %{} :Expr (:at 1569691441243) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691441927) (:by |rJG4IHzWf) (:text |state)
|j $ %{} :Expr (:at 1569691445565) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569691446094) (:by |rJG4IHzWf) (:text |or)
|T $ %{} :Expr (:at 1569691442146) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691442934) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1569691444430) (:by |rJG4IHzWf) (:text |states)
|j $ %{} :Expr (:at 1569691470579) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691470579) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569691470579) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691482536) (:by |rJG4IHzWf) (:text |:text)
|j $ %{} :Expr (:at 1569691472673) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1711562758251) (:by |rJG4IHzWf) (:text |to-lispy-string)
|j $ %{} :Leaf (:at 1569691475773) (:by |rJG4IHzWf) (:text |records)
|T $ %{} :Expr (:at 1569518495770) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518497088) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1569518497296) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518497633) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518977815) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518980543) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1578203227787) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578203229058) (:by |rJG4IHzWf) (:text |merge)
|L $ %{} :Leaf (:at 1578203231279) (:by |rJG4IHzWf) (:text |ui/expand)
|T $ %{} :Expr (:at 1569518980743) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518981600) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518981956) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518983480) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1569518988123) (:by |rJG4IHzWf) (:text |16)
|r $ %{} :Expr (:at 1569518500526) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518938316) (:by |rJG4IHzWf) (:text |textarea)
|j $ %{} :Expr (:at 1569518941342) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518941709) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518941951) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518942723) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1569518957370) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569518958191) (:by |rJG4IHzWf) (:text |merge)
|L $ %{} :Leaf (:at 1569518965867) (:by |rJG4IHzWf) (:text |ui/textarea)
|T $ %{} :Expr (:at 1569518943105) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518943463) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569518943704) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518944603) (:by |rJG4IHzWf) (:text |:width)
|j $ %{} :Leaf (:at 1578203213686) (:by |rJG4IHzWf) (:text "|\"100%")
|r $ %{} :Expr (:at 1569518948621) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569518949709) (:by |rJG4IHzWf) (:text |:height)
|j $ %{} :Leaf (:at 1578203220424) (:by |rJG4IHzWf) (:text "|\"80%")
|v $ %{} :Expr (:at 1569519004442) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569519006614) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1569519008935) (:by |rJG4IHzWf) (:text |ui/font-code)
|w $ %{} :Expr (:at 1578203256503) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578203260935) (:by |rJG4IHzWf) (:text |:font-size)
|j $ %{} :Leaf (:at 1578203305365) (:by |rJG4IHzWf) (:text |12)
|x $ %{} :Expr (:at 1578203241104) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578203245749) (:by |rJG4IHzWf) (:text |:padding-bottom)
|j $ %{} :Leaf (:at 1578203246383) (:by |rJG4IHzWf) (:text |200)
|r $ %{} :Expr (:at 1569691485496) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691486934) (:by |rJG4IHzWf) (:text |:value)
|j $ %{} :Expr (:at 1569691487885) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691489022) (:by |rJG4IHzWf) (:text |:text)
|j $ %{} :Leaf (:at 1569691489620) (:by |rJG4IHzWf) (:text |state)
|t $ %{} :Expr (:at 1578203160507) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578203162582) (:by |rJG4IHzWf) (:text |:placeholder)
|j $ %{} :Leaf (:at 1578203201130) (:by |rJG4IHzWf) (:text "|\"EDN piece of diaries storage, keys are dates")
|v $ %{} :Expr (:at 1569691497257) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691505050) (:by |rJG4IHzWf) (:text |:on-input)
|j $ %{} :Expr (:at 1569691505289) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691505530) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1569691505800) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691506016) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1569691506581) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1569691508089) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1597937026494) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1597937027841) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1569691510240) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691511183) (:by |rJG4IHzWf) (:text |assoc)
|j $ %{} :Leaf (:at 1569691512249) (:by |rJG4IHzWf) (:text |state)
|r $ %{} :Leaf (:at 1569691514041) (:by |rJG4IHzWf) (:text |:text)
|v $ %{} :Expr (:at 1569691514372) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691515559) (:by |rJG4IHzWf) (:text |:value)
|j $ %{} :Leaf (:at 1569691515822) (:by |rJG4IHzWf) (:text |e)
|v $ %{} :Expr (:at 1569691383977) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691385279) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1569691385550) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691385925) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569691407896) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691409837) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1569691410018) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691410323) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569691410818) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691412795) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1569691423534) (:by |rJG4IHzWf) (:text "|\"16px 0")
|r $ %{} :Expr (:at 1569691386506) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691388979) (:by |rJG4IHzWf) (:text |button)
|j $ %{} :Expr (:at 1569691389273) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691389608) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569691389846) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691390574) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Leaf (:at 1569691393821) (:by |rJG4IHzWf) (:text |ui/button)
|r $ %{} :Expr (:at 1569691395807) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691397620) (:by |rJG4IHzWf) (:text |:inner-text)
|j $ %{} :Leaf (:at 1569691404681) (:by |rJG4IHzWf) (:text "|\"Analyze")
|v $ %{} :Expr (:at 1569691520849) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691524382) (:by |rJG4IHzWf) (:text |:on-click)
|j $ %{} :Expr (:at 1569691529167) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691530565) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1569691530864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691531025) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1569691532422) (:by |rJG4IHzWf) (:text |d!)
|r $ %{} :Expr (:at 1569691533668) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691552576) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Leaf (:at 1569691553750) (:by |rJG4IHzWf) (:text |:records)
|r $ %{} :Expr (:at 1569691573294) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124369618) (:by |rJG4IHzWf) (:text |parse-cirru-edn)
|j $ %{} :Expr (:at 1569691577345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691579151) (:by |rJG4IHzWf) (:text |:text)
|j $ %{} :Leaf (:at 1569691579772) (:by |rJG4IHzWf) (:text |state)
|v $ %{} :Expr (:at 1569691866042) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1597937031444) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1597937032812) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Leaf (:at 1569691871757) (:by |rJG4IHzWf) (:text |nil)
|x $ %{} :Expr (:at 1569691880849) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691881591) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Leaf (:at 1578202354306) (:by |rJG4IHzWf) (:text |:router)
|r $ %{} :Expr (:at 1578202354622) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578202355162) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1578202356564) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578202357619) (:by |rJG4IHzWf) (:text |:name)
|T $ %{} :Leaf (:at 1569691884887) (:by |rJG4IHzWf) (:text |:home)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |ns)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |app.comp.editor)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |:require)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |hsl.core)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |hsl)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:as)
|v $ %{} :Leaf (:at nil) (:by nil) (:text |ui)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at 1540958704705) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |defcomp)
|n $ %{} :Leaf (:at 1597936901607) (:by |rJG4IHzWf) (:text |>>)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |<>)
|v $ %{} :Leaf (:at nil) (:by nil) (:text |div)
|x $ %{} :Leaf (:at nil) (:by nil) (:text |button)
|xT $ %{} :Leaf (:at nil) (:by nil) (:text |textarea)
|y $ %{} :Leaf (:at nil) (:by nil) (:text |span)
|yT $ %{} :Leaf (:at 1552321107012) (:by |rJG4IHzWf) (:text |input)
|x $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |respo.comp.space)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |=<)
|y $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |reel.comp.reel)
|r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |[])
|j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-reel)
|yT $ %{} :Expr (:at 1519699088529) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519699088805) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1519699092590) (:by |root) (:text |respo-md.comp.md)
|r $ %{} :Leaf (:at 1519699093410) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1519699093683) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519699093922) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1519699096732) (:by |root) (:text |comp-md)
|yj $ %{} :Expr (:at 1521954061310) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1521954061645) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1527788377809) (:by |root) (:text |app.config)
|r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1521954065004) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1521954065219) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?)
|yr $ %{} :Expr (:at 1569691581703) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691582078) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569691586029) (:by |rJG4IHzWf) (:text |clojure.string)
|r $ %{} :Leaf (:at 1569691586440) (:by |rJG4IHzWf) (:text |:as)
|v $ %{} :Leaf (:at 1569691589716) (:by |rJG4IHzWf) (:text |string)
|yv $ %{} :Expr (:at 1569691689385) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691689705) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569691691952) (:by |rJG4IHzWf) (:text |cljs.reader)
|r $ %{} :Leaf (:at 1569691692640) (:by |rJG4IHzWf) (:text |:refer)
|v $ %{} :Expr (:at 1569691692804) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569691693009) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569691695088) (:by |rJG4IHzWf) (:text |read-string)
|app.comp.food-analysis $ %{} :FileEntry
:defs $ {}
|comp-food-analysis $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at nil) (:by nil) (:text |defcomp)
|j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-food-analysis)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1578202693942) (:by |rJG4IHzWf) (:text |records)
|j $ %{} :Leaf (:at 1578202694882) (:by |rJG4IHzWf) (:text |router)
|v $ %{} :Expr (:at 1569923396594) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569923397266) (:by |rJG4IHzWf) (:text |let)
|L $ %{} :Expr (:at 1569923398002) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1569923398143) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923401013) (:by |rJG4IHzWf) (:text |foods)
|j $ %{} :Expr (:at 1569923402359) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124750790) (:by |rJG4IHzWf) (:text |->)
|j $ %{} :Leaf (:at 1569923412503) (:by |rJG4IHzWf) (:text |records)
|n $ %{} :Expr (:at 1629125491571) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629125492926) (:by |rJG4IHzWf) (:text |.to-list)
|r $ %{} :Expr (:at 1569923432655) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1597937757200) (:by |rJG4IHzWf) (:text |map)
|b $ %{} :Leaf (:at 1597937758075) (:by |rJG4IHzWf) (:text |last)
|t $ %{} :Expr (:at 1577977159901) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1577977159901) (:by |rJG4IHzWf) (:text |filter)
|j $ %{} :Expr (:at 1577977159901) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1577977159901) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1577977159901) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1577977159901) (:by |rJG4IHzWf) (:text |day-info)
|r $ %{} :Expr (:at 1578202836135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1578202836135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |some?)
|j $ %{} :Expr (:at 1578202836135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |router)
|r $ %{} :Expr (:at 1578202836135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Expr (:at 1578202836135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |router)
|r $ %{} :Expr (:at 1578202836135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |get-year)
|j $ %{} :Expr (:at 1578202836135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |:time)
|j $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |day-info)
|v $ %{} :Leaf (:at 1578202836135) (:by |rJG4IHzWf) (:text |true)
|v $ %{} :Expr (:at 1569923433613) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923437872) (:by |rJG4IHzWf) (:text |map)
|j $ %{} :Expr (:at 1629124758461) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629124759224) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1629124759539) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124759881) (:by |rJG4IHzWf) (:text |x)
|T $ %{} :Expr (:at 1629126876099) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629126876643) (:by |rJG4IHzWf) (:text |or)
|T $ %{} :Expr (:at 1629124760566) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629124762475) (:by |rJG4IHzWf) (:text |get)
|L $ %{} :Leaf (:at 1629124765547) (:by |rJG4IHzWf) (:text |x)
|T $ %{} :Leaf (:at 1569923439568) (:by |rJG4IHzWf) (:text |:food)
|j $ %{} :Leaf (:at 1629126877886) (:by |rJG4IHzWf) (:text "|\"")
|x $ %{} :Expr (:at 1569923775516) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569923794652) (:by |rJG4IHzWf) (:text |mapcat)
|T $ %{} :Expr (:at 1569923783831) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569923785436) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1569923785765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923787678) (:by |rJG4IHzWf) (:text |chunk)
|P $ %{} :Expr (:at 1597937787772) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1597937787772) (:by |rJG4IHzWf) (:text |split-words)
|j $ %{} :Expr (:at 1597937787772) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1597937787772) (:by |rJG4IHzWf) (:text |[])
|r $ %{} :Leaf (:at 1597937787772) (:by |rJG4IHzWf) (:text "|\"")
|v $ %{} :Leaf (:at 1597937787772) (:by |rJG4IHzWf) (:text |chunk)
|xT $ %{} :Expr (:at 1569923861088) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1569923862627) (:by |rJG4IHzWf) (:text |filter)
|T $ %{} :Expr (:at 1569923844650) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923860642) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1569923846523) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923846839) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1569923848153) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569923848927) (:by |rJG4IHzWf) (:text |not)
|j $ %{} :Expr (:at 1569923850519) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124425428) (:by |rJG4IHzWf) (:text |.blank?)
|j $ %{} :Leaf (:at 1569923852618) (:by |rJG4IHzWf) (:text |x)
|y $ %{} :Expr (:at 1569923828014) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1711562905488) (:by |rJG4IHzWf) (:text |frequencies)
|T $ %{} :Expr (:at 1578202869677) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578202870443) (:by |rJG4IHzWf) (:text |div)
|L $ %{} :Expr (:at 1578202870649) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202871025) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1578202877825) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202877825) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1578202877825) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202877825) (:by |rJG4IHzWf) (:text |merge)
|j $ %{} :Leaf (:at 1578202877825) (:by |rJG4IHzWf) (:text |ui/expand)
|n $ %{} :Leaf (:at 1578202915911) (:by |rJG4IHzWf) (:text |ui/column)
|t $ %{} :Expr (:at 1578203095846) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578203096365) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1578203095497) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578203095497) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1578203098847) (:by |rJG4IHzWf) (:text "|\"8px 16px")
|P $ %{} :Expr (:at 1578202880693) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202881152) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1578202881392) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202881768) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1578202953230) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202957048) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1578202957252) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202957583) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1578202884228) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202887893) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Expr (:at 1578202905317) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578202906140) (:by |rJG4IHzWf) (:text |str)
|T $ %{} :Leaf (:at 1578202996205) (:by |rJG4IHzWf) (:text "|\"Foods of ")
|j $ %{} :Expr (:at 1578202906787) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202906787) (:by |rJG4IHzWf) (:text |or)
|j $ %{} :Expr (:at 1578202906787) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202906787) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1578202906787) (:by |rJG4IHzWf) (:text |router)
|r $ %{} :Leaf (:at 1578202906787) (:by |rJG4IHzWf) (:text "|\"all")
|r $ %{} :Expr (:at 1578202981827) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202981427) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1578202982320) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202985468) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1578202987295) (:by |rJG4IHzWf) (:text |ui/font-fancy)
|T $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |list->)
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1578202921946) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202927050) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1578202947100) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1578202948130) (:by |rJG4IHzWf) (:text |merge)
|T $ %{} :Leaf (:at 1578202928138) (:by |rJG4IHzWf) (:text |ui/expand)
|j $ %{} :Expr (:at 1578202948738) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202948738) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1578202948738) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1578202948738) (:by |rJG4IHzWf) (:text |:column-count)
|j $ %{} :Leaf (:at 1578202948738) (:by |rJG4IHzWf) (:text |10)
|r $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124434638) (:by |rJG4IHzWf) (:text |->)
|j $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |foods)
|n $ %{} :Expr (:at 1629125527510) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629125529178) (:by |rJG4IHzWf) (:text |.to-list)
|r $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124805081) (:by |rJG4IHzWf) (:text |.sort-by)
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124445640) (:by |rJG4IHzWf) (:text |pair)
|r $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124447445) (:by |rJG4IHzWf) (:text |negate)
|j $ %{} :Expr (:at 1629124439561) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124919025) (:by |rJG4IHzWf) (:text |last)
|j $ %{} :Leaf (:at 1629124441923) (:by |rJG4IHzWf) (:text |pair)
|v $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |map)
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124468760) (:by |rJG4IHzWf) (:text |pair)
|r $ %{} :Expr (:at 1629124454460) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629124459626) (:by |rJG4IHzWf) (:text |let[])
|L $ %{} :Expr (:at 1629124460678) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629124463947) (:by |rJG4IHzWf) (:text |food)
|j $ %{} :Leaf (:at 1629124464907) (:by |rJG4IHzWf) (:text |times)
|P $ %{} :Leaf (:at 1629124466289) (:by |rJG4IHzWf) (:text |pair)
|T $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |food)
|r $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |div)
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1569924947920) (:by |rJG4IHzWf) (:text "|\"0 8px")
|r $ %{} :Expr (:at 1569924901032) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924907225) (:by |rJG4IHzWf) (:text |:line-height)
|j $ %{} :Leaf (:at 1569924916512) (:by |rJG4IHzWf) (:text |1.5)
|r $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |<>)
|j $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |times)
|r $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |:margin-right)
|j $ %{} :Leaf (:at 1569924266228) (:by |rJG4IHzWf) (:text |8)
|r $ %{} :Expr (:at 1569924229345) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1569924229345) (:by |rJG4IHzWf) (:text |ui/font-code)
|v $ %{} :Expr (:at 1569924447590) (:by |rJG4IHzWf)
:data $ {}