generated from mvc-works/calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
1538 lines (1537 loc) · 130 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:configs $ {} (:extension |.cljs) (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.1)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:defs $ {}
|comp-container $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1507461830530) (:by |root) (:text |reel) (:type :leaf)
|v $ {} (:at 1507461832154) (:by |root) (:type :expr)
:data $ {}
|D $ {} (:at 1507461833421) (:by |root) (:text |let) (:type :leaf)
|L $ {} (:at 1507461834351) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461834650) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461835738) (:by |root) (:text |store) (:type :leaf)
|j $ {} (:at 1507461836110) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461837276) (:by |root) (:text |:store) (:type :leaf)
|j $ {} (:at 1507461838285) (:by |root) (:text |reel) (:type :leaf)
|j $ {} (:at 1509727104820) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1509727105928) (:by |root) (:text |states) (:type :leaf)
|j $ {} (:at 1509727106316) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1509727107223) (:by |root) (:text |:states) (:type :leaf)
|j $ {} (:at 1509727108033) (:by |root) (:text |store) (:type :leaf)
|n $ {} (:at 1584780921790) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780923771) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1584780991636) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1584780992272) (:by |rJG4IHzWf) (:text |or) (:type :leaf)
|T $ {} (:at 1584780923944) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780925829) (:by |rJG4IHzWf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1584780926681) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|j $ {} (:at 1584780993270) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780994497) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|r $ {} (:at 1584780887905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780889620) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|j $ {} (:at 1584780889933) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780892595) (:by |rJG4IHzWf) (:text |or) (:type :leaf)
|j $ {} (:at 1584780894090) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780894689) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|j $ {} (:at 1584780900314) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1584780901014) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780901408) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1584780901741) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780906050) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1584780907617) (:by |rJG4IHzWf) (:text "|\"") (:type :leaf)
|r $ {} (:at 1604307322587) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307336393) (:by |rJG4IHzWf) (:text |:list?) (:type :leaf)
|j $ {} (:at 1604307339377) (:by |rJG4IHzWf) (:text |false) (:type :leaf)
|v $ {} (:at 1604307528620) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307531797) (:by |rJG4IHzWf) (:text |:data?) (:type :leaf)
|j $ {} (:at 1604307532921) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|T $ {} (:at 1604307341230) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604307341913) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|L $ {} (:at 1604307342119) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307342466) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604307342744) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307343580) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604307345603) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307345413) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|j $ {} (:at 1604307348336) (:by |rJG4IHzWf) (:text |ui/fullscreen) (:type :leaf)
|r $ {} (:at 1604307354612) (:by |rJG4IHzWf) (:text |ui/column) (:type :leaf)
|T $ {} (:at 1604307357153) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604307357746) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1604307358413) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307359544) (:by |rJG4IHzWf) (:text |:list?) (:type :leaf)
|j $ {} (:at 1604307360621) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|P $ {} (:at 1604307361148) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307361603) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1604307362993) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307363356) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604307490638) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307493917) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604307495167) (:by |rJG4IHzWf) (:text |ui/expand) (:type :leaf)
|r $ {} (:at 1604307370239) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307371980) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1604307373954) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307373676) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|r $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |button) (:type :leaf)
|j $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |ui/button) (:type :leaf)
|r $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |:inner-text) (:type :leaf)
|j $ {} (:at 1604307384681) (:by |rJG4IHzWf) (:text "|\"Edit") (:type :leaf)
|v $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1604307381819) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1604307388094) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307390275) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1604307391304) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|r $ {} (:at 1604307391795) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307398589) (:by |rJG4IHzWf) (:text |update) (:type :leaf)
|j $ {} (:at 1604307400526) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1604307401754) (:by |rJG4IHzWf) (:text |:list?) (:type :leaf)
|v $ {} (:at 1604307403333) (:by |rJG4IHzWf) (:text |not) (:type :leaf)
|t $ {} (:at 1604387147153) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387148348) (:by |rJG4IHzWf) (:text |=<) (:type :leaf)
|j $ {} (:at 1604387150196) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|r $ {} (:at 1604387150944) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|v $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|j $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:text |some?) (:type :leaf)
|j $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:text |:days) (:type :leaf)
|j $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|j $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:text |comp-viewer) (:type :leaf)
|j $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|j $ {} (:at 1604387145972) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|T $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |div) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |{}) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |:style) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |merge) (:type :leaf)
|j $ {} (:at 1521129814235) (:by |root) (:text |ui/global) (:type :leaf)
|n $ {} (:at 1604307488985) (:by |rJG4IHzWf) (:text |ui/expand) (:type :leaf)
|r $ {} (:at 1604307432603) (:by |rJG4IHzWf) (:text |ui/column) (:type :leaf)
|l $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604307437781) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604307438852) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|j $ {} (:at 1604307439366) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307439699) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604307439923) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307445672) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1604307442053) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|v $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |button) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |ui/button) (:type :leaf)
|r $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |:inner-text) (:type :leaf)
|j $ {} (:at 1604307883036) (:by |rJG4IHzWf) (:text "|\"Read") (:type :leaf)
|v $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|v $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|r $ {} (:at 1604307543065) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604307543770) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|L $ {} (:at 1604307545089) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |update) (:type :leaf)
|r $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |:list?) (:type :leaf)
|v $ {} (:at 1604307429323) (:by |rJG4IHzWf) (:text |not) (:type :leaf)
|j $ {} (:at 1604307547626) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307551401) (:by |rJG4IHzWf) (:text |assoc) (:type :leaf)
|j $ {} (:at 1604307552457) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|r $ {} (:at 1604385574247) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604385604209) (:by |rJG4IHzWf) (:text |grab-info) (:type :leaf)
|T $ {} (:at 1604307553942) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629371538783) (:by |rJG4IHzWf) (:text |parse-cirru-edn) (:type :leaf)
|j $ {} (:at 1604307559251) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307560164) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1604307561036) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|n $ {} (:at 1512359496483) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1552321295613) (:by |rJG4IHzWf) (:text |textarea) (:type :leaf)
|j $ {} (:at 1512359504511) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1512359504843) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1512359505095) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1512359505740) (:by |rJG4IHzWf) (:text |:value) (:type :leaf)
|j $ {} (:at 1512359518303) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1512359519072) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1584780914332) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|n $ {} (:at 1512359562842) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1512359565393) (:by |rJG4IHzWf) (:text |:placeholder) (:type :leaf)
|j $ {} (:at 1552321072612) (:by |rJG4IHzWf) (:text "|\"Content") (:type :leaf)
|p $ {} (:at 1512359616676) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1512359618050) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1512359674211) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1512359675059) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|L $ {} (:at 1555609489873) (:by |rJG4IHzWf) (:text |ui/expand) (:type :leaf)
|T $ {} (:at 1512359621430) (:by |rJG4IHzWf) (:text |ui/textarea) (:type :leaf)
|j $ {} (:at 1512359675605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1512359676048) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|r $ {} (:at 1512359678671) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1512359679785) (:by |rJG4IHzWf) (:text |:height) (:type :leaf)
|j $ {} (:at 1604307466135) (:by |rJG4IHzWf) (:text |420) (:type :leaf)
|v $ {} (:at 1629372893871) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372896554) (:by |rJG4IHzWf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1629372899475) (:by |rJG4IHzWf) (:text |ui/font-code) (:type :leaf)
|x $ {} (:at 1629372906718) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372912863) (:by |rJG4IHzWf) (:text |:white-space) (:type :leaf)
|j $ {} (:at 1629372914133) (:by |rJG4IHzWf) (:text |:nowrap) (:type :leaf)
|r $ {} (:at 1512359551423) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1515731637149) (:by |root) (:text |:on-input) (:type :leaf)
|r $ {} (:at 1573355456413) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1573355458962) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|L $ {} (:at 1573355459236) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573355459482) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1573355459980) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|T $ {} (:at 1515731639686) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1573355463209) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1584780918978) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|v $ {} (:at 1584780929603) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1584780932163) (:by |rJG4IHzWf) (:text |assoc) (:type :leaf)
|L $ {} (:at 1584780932805) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|P $ {} (:at 1584780935039) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|T $ {} (:at 1512359558827) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1512359559399) (:by |rJG4IHzWf) (:text |:value) (:type :leaf)
|j $ {} (:at 1573355472480) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |=<) (:type :leaf)
|j $ {} (:at 1584875384898) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |nil) (:type :leaf)
|x $ {} (:at 1521954055333) (:by |root) (:type :expr)
:data $ {}
|D $ {} (:at 1521954057510) (:by |root) (:text |when) (:type :leaf)
|L $ {} (:at 1521954059290) (:by |root) (:text |dev?) (:type :leaf)
|T $ {} (:at 1507461809635) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461815046) (:by |root) (:text |comp-reel) (:type :leaf)
|b $ {} (:at 1584780610581) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1584780611347) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|T $ {} (:at 1509727101297) (:by |root) (:text |states) (:type :leaf)
|j $ {} (:at 1584780613268) (:by |rJG4IHzWf) (:text |:reel) (:type :leaf)
|j $ {} (:at 1507461840459) (:by |root) (:text |reel) (:type :leaf)
|r $ {} (:at 1507461840980) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461841342) (:by |root) (:text |{}) (:type :leaf)
|comp-viewer $ {} (:at 1604307601775) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307603847) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1604307601775) (:by |rJG4IHzWf) (:text |comp-viewer) (:type :leaf)
|r $ {} (:at 1604307601775) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604307606168) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|v $ {} (:at 1604307763433) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604385806532) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1604307764492) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|x $ {} (:at 1604308148860) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308154833) (:by |rJG4IHzWf) (:text |from-day) (:type :leaf)
|j $ {} (:at 1604386184805) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604386188145) (:by |rJG4IHzWf) (:text |dayjs) (:type :leaf)
|T $ {} (:at 1604385730325) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385731827) (:by |rJG4IHzWf) (:text |:from-day) (:type :leaf)
|j $ {} (:at 1604385732698) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|yT $ {} (:at 1604308186870) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308187479) (:by |rJG4IHzWf) (:text |days) (:type :leaf)
|j $ {} (:at 1604385726341) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385727752) (:by |rJG4IHzWf) (:text |:days) (:type :leaf)
|j $ {} (:at 1604385728359) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|yj $ {} (:at 1604309292594) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309298658) (:by |rJG4IHzWf) (:text |grouped-tasks) (:type :leaf)
|j $ {} (:at 1604385712810) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385714863) (:by |rJG4IHzWf) (:text |:grouped-tasks) (:type :leaf)
|j $ {} (:at 1604385717449) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|yr $ {} (:at 1604309327819) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309332613) (:by |rJG4IHzWf) (:text |grouped-notes) (:type :leaf)
|j $ {} (:at 1604385719344) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385723422) (:by |rJG4IHzWf) (:text |:grouped-notes) (:type :leaf)
|j $ {} (:at 1604385724301) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|ST $ {} (:at 1604308343079) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604309390717) (:by |rJG4IHzWf) (:text |list->) (:type :leaf)
|L $ {} (:at 1604308344887) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308345200) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604309409139) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604309410556) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|T $ {} (:at 1604309407544) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604309408256) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|T $ {} (:at 1604309395535) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309396548) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1604309401739) (:by |rJG4IHzWf) (:text "|\"4px 8px") (:type :leaf)
|T $ {} (:at 1604308346171) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629371932979) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|T $ {} (:at 1604308334189) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308336387) (:by |rJG4IHzWf) (:text |range) (:type :leaf)
|j $ {} (:at 1604308337951) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308338937) (:by |rJG4IHzWf) (:text |inc) (:type :leaf)
|j $ {} (:at 1604308341326) (:by |rJG4IHzWf) (:text |days) (:type :leaf)
|j $ {} (:at 1604308351602) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308355118) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|j $ {} (:at 1604308358143) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308358406) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1604308358817) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308359647) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1604308360271) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308362021) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|j $ {} (:at 1604308363687) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308363895) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308365294) (:by |rJG4IHzWf) (:text |the-day) (:type :leaf)
|j $ {} (:at 1604308367012) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604308375427) (:by |rJG4IHzWf) (:text |.add) (:type :leaf)
|T $ {} (:at 1604308373738) (:by |rJG4IHzWf) (:text |from-day) (:type :leaf)
|j $ {} (:at 1604308378773) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1604308381925) (:by |rJG4IHzWf) (:text "|\"days") (:type :leaf)
|r $ {} (:at 1604308393390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308393726) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1604308395333) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1604308581033) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604308581634) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1604308582025) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308582142) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308584725) (:by |rJG4IHzWf) (:text |day-format) (:type :leaf)
|j $ {} (:at 1604308586566) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308586566) (:by |rJG4IHzWf) (:text |.format) (:type :leaf)
|j $ {} (:at 1604308586566) (:by |rJG4IHzWf) (:text |the-day) (:type :leaf)
|r $ {} (:at 1604387176809) (:by |rJG4IHzWf) (:text "|\"YYYY-MM-DD") (:type :leaf)
|b $ {} (:at 1604387183583) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387189256) (:by |rJG4IHzWf) (:text |day-with-week) (:type :leaf)
|j $ {} (:at 1604387192522) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387192522) (:by |rJG4IHzWf) (:text |.format) (:type :leaf)
|j $ {} (:at 1604387192522) (:by |rJG4IHzWf) (:text |the-day) (:type :leaf)
|r $ {} (:at 1604387221607) (:by |rJG4IHzWf) (:text "|\"YYYY-MM-DD ddd") (:type :leaf)
|j $ {} (:at 1604308663477) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308665413) (:by |rJG4IHzWf) (:text |day-tasks) (:type :leaf)
|b $ {} (:at 1604309352553) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604309354249) (:by |rJG4IHzWf) (:text |get) (:type :leaf)
|T $ {} (:at 1604309353039) (:by |rJG4IHzWf) (:text |grouped-tasks) (:type :leaf)
|j $ {} (:at 1604309356582) (:by |rJG4IHzWf) (:text |day-format) (:type :leaf)
|r $ {} (:at 1604308663477) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308679227) (:by |rJG4IHzWf) (:text |day-notes) (:type :leaf)
|b $ {} (:at 1604309360605) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309361046) (:by |rJG4IHzWf) (:text |get) (:type :leaf)
|j $ {} (:at 1604309363065) (:by |rJG4IHzWf) (:text |grouped-notes) (:type :leaf)
|r $ {} (:at 1604309365296) (:by |rJG4IHzWf) (:text |day-format) (:type :leaf)
|T $ {} (:at 1604308395611) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308398076) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1604308398415) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308398748) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604309458632) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309459379) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604386580507) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604386581464) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|T $ {} (:at 1604386624461) (:by |rJG4IHzWf) (:text |ui/column) (:type :leaf)
|j $ {} (:at 1604386582302) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386584281) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604386585068) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386586012) (:by |rJG4IHzWf) (:text |:display) (:type :leaf)
|j $ {} (:at 1604386589188) (:by |rJG4IHzWf) (:text |:inline-flex) (:type :leaf)
|r $ {} (:at 1604386594004) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386657745) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1604386612258) (:by |rJG4IHzWf) (:text "|\"14%") (:type :leaf)
|v $ {} (:at 1604386636468) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386641390) (:by |rJG4IHzWf) (:text |:padding-right) (:type :leaf)
|j $ {} (:at 1604386646047) (:by |rJG4IHzWf) (:text "|\"20px") (:type :leaf)
|w $ {} (:at 1604386700115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386702054) (:by |rJG4IHzWf) (:text |:padding-left) (:type :leaf)
|j $ {} (:at 1604386702540) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|x $ {} (:at 1604386671024) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386675910) (:by |rJG4IHzWf) (:text |:margin-bottom) (:type :leaf)
|j $ {} (:at 1604386676286) (:by |rJG4IHzWf) (:text |16) (:type :leaf)
|y $ {} (:at 1604386680004) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386682349) (:by |rJG4IHzWf) (:text |:border-left) (:type :leaf)
|j $ {} (:at 1604386683135) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386684230) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1604386689713) (:by |rJG4IHzWf) (:text "|\"1px solid ") (:type :leaf)
|r $ {} (:at 1604386690834) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386691266) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1604386691629) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1604386692010) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1604386692473) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|r $ {} (:at 1604308399223) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308399534) (:by |rJG4IHzWf) (:text |<>) (:type :leaf)
|j $ {} (:at 1604387201766) (:by |rJG4IHzWf) (:text |day-with-week) (:type :leaf)
|r $ {} (:at 1604308862499) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308863325) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604308863531) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308869011) (:by |rJG4IHzWf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1604308871362) (:by |rJG4IHzWf) (:text |ui/font-fancy) (:type :leaf)
|r $ {} (:at 1604308872259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308875884) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1604308876111) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308876425) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1604308877020) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1604308877362) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1604386796739) (:by |rJG4IHzWf) (:text |70) (:type :leaf)
|v $ {} (:at 1604309502716) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309507568) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1604386790102) (:by |rJG4IHzWf) (:text |14) (:type :leaf)
|x $ {} (:at 1604309509503) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309511269) (:by |rJG4IHzWf) (:text |:font-weight) (:type :leaf)
|j $ {} (:at 1604309512330) (:by |rJG4IHzWf) (:text |300) (:type :leaf)
|v $ {} (:at 1604386330185) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604386330984) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|L $ {} (:at 1604386332440) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386331550) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604386549787) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386551191) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604386724737) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604386726307) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|T $ {} (:at 1604386552396) (:by |rJG4IHzWf) (:text |ui/expand) (:type :leaf)
|j $ {} (:at 1604386727148) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386727415) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604386728127) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386730089) (:by |rJG4IHzWf) (:text |:padding-left) (:type :leaf)
|j $ {} (:at 1604386749914) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|T $ {} (:at 1604308696684) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604308697207) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1604308699619) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308699969) (:by |rJG4IHzWf) (:text |not) (:type :leaf)
|j $ {} (:at 1604308700681) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308705652) (:by |rJG4IHzWf) (:text |empty?) (:type :leaf)
|j $ {} (:at 1604308708016) (:by |rJG4IHzWf) (:text |day-tasks) (:type :leaf)
|T $ {} (:at 1604308469291) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308473250) (:by |rJG4IHzWf) (:text |list->) (:type :leaf)
|j $ {} (:at 1604308473745) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308474099) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604308810868) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308812475) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604386723019) (:by |rJG4IHzWf) (:text |style-list) (:type :leaf)
|r $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629371943665) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1604308675744) (:by |rJG4IHzWf) (:text |day-tasks) (:type :leaf)
|v $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:text |map-indexed) (:type :leaf)
|j $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|j $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:text |task) (:type :leaf)
|r $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308661195) (:by |rJG4IHzWf) (:text |<>) (:type :leaf)
|j $ {} (:at 1604308747512) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308754457) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1604308756012) (:by |rJG4IHzWf) (:text |task) (:type :leaf)
|r $ {} (:at 1604309189728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309190976) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604309197684) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309199929) (:by |rJG4IHzWf) (:text |:display) (:type :leaf)
|j $ {} (:at 1604309224824) (:by |rJG4IHzWf) (:text |:block) (:type :leaf)
|r $ {} (:at 1604309526328) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309529571) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1604309530120) (:by |rJG4IHzWf) (:text |13) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |not) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |empty?) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |day-notes) (:type :leaf)
|r $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |list->) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |style-list) (:type :leaf)
|r $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629371945662) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |day-notes) (:type :leaf)
|r $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |map-indexed) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |note) (:type :leaf)
|r $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |<>) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |note) (:type :leaf)
|r $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|r $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |70) (:type :leaf)
|v $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1604386335785) (:by |rJG4IHzWf) (:text |13) (:type :leaf)
|grab-info $ {} (:at 1604385605148) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385605148) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1604385605148) (:by |rJG4IHzWf) (:text |grab-info) (:type :leaf)
|r $ {} (:at 1604385605148) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608112) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|v $ {} (:at 1604385618150) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604385618746) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |tasks) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372034565) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372606170) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|n $ {} (:at 1629372612624) (:by |rJG4IHzWf) (:text |:tasks) (:type :leaf)
|r $ {} (:at 1629372609300) (:by |rJG4IHzWf) (:text |:working) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629372616155) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|L $ {} (:at 1629372616808) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|P $ {} (:at 1629372620565) (:by |rJG4IHzWf) (:text |:tasks) (:type :leaf)
|T $ {} (:at 1629372619089) (:by |rJG4IHzWf) (:text |:finished) (:type :leaf)
|r $ {} (:at 1629372035199) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372037836) (:by |rJG4IHzWf) (:text |.to-list) (:type :leaf)
|v $ {} (:at 1629372038456) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372056877) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|j $ {} (:at 1629372055123) (:by |rJG4IHzWf) (:text |last) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |notes) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372046005) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |:notes) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |data) (:type :leaf)
|r $ {} (:at 1629372046493) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372048849) (:by |rJG4IHzWf) (:text |.to-list) (:type :leaf)
|v $ {} (:at 1629372050650) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372051981) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|j $ {} (:at 1629372052858) (:by |rJG4IHzWf) (:text |last) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |all-time) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |filter) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |concat) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |tasks) (:type :leaf)
|v $ {} (:at 1629372003743) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372004019) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1629372005017) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372004336) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|r $ {} (:at 1629372842218) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629372842905) (:by |rJG4IHzWf) (:text |or) (:type :leaf)
|L $ {} (:at 1629372844168) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372847688) (:by |rJG4IHzWf) (:text |:finished-time) (:type :leaf)
|j $ {} (:at 1629372847985) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|T $ {} (:at 1629372006091) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372005838) (:by |rJG4IHzWf) (:text |:created-time) (:type :leaf)
|j $ {} (:at 1629372006852) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |notes) (:type :leaf)
|v $ {} (:at 1629372009257) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629372011107) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|T $ {} (:at 1629372012042) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629372013084) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|j $ {} (:at 1629372016940) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372016403) (:by |rJG4IHzWf) (:text |:time) (:type :leaf)
|j $ {} (:at 1629372017732) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|v $ {} (:at 1629371976858) (:by |rJG4IHzWf) (:text |some?) (:type :leaf)
|v $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |from-day) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |dayjs) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |min) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |all-time) (:type :leaf)
|x $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |to-day) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |dayjs) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |max) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |all-time) (:type :leaf)
|y $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |days) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |js/Math.ceil) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |/) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |max) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |all-time) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |min) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |all-time) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |1000) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|v $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|x $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |24) (:type :leaf)
|yT $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |grouped-tasks) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |group-by) (:type :leaf)
|b $ {} (:at 1629371960892) (:by |rJG4IHzWf) (:text |tasks) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |task) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |.format) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |dayjs) (:type :leaf)
|j $ {} (:at 1629372972728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372972728) (:by |rJG4IHzWf) (:text |or) (:type :leaf)
|j $ {} (:at 1629372972728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372972728) (:by |rJG4IHzWf) (:text |:finished-time) (:type :leaf)
|j $ {} (:at 1629372979398) (:by |rJG4IHzWf) (:text |task) (:type :leaf)
|r $ {} (:at 1629372972728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629372972728) (:by |rJG4IHzWf) (:text |:created-time) (:type :leaf)
|j $ {} (:at 1629372980952) (:by |rJG4IHzWf) (:text |task) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text "|\"YYYY-MM-DD") (:type :leaf)
|yj $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |grouped-notes) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |group-by) (:type :leaf)
|b $ {} (:at 1629371964222) (:by |rJG4IHzWf) (:text |notes) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |note) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |.format) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |dayjs) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |:time) (:type :leaf)
|j $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text |note) (:type :leaf)
|r $ {} (:at 1604385608885) (:by |rJG4IHzWf) (:text "|\"YYYY-MM-DD") (:type :leaf)
|yr $ {} (:at 1604387019140) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604387020490) (:by |rJG4IHzWf) (:text |week-day) (:type :leaf)
|j $ {} (:at 1604387021209) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629371984529) (:by |rJG4IHzWf) (:text |.!day) (:type :leaf)
|j $ {} (:at 1604387031414) (:by |rJG4IHzWf) (:text |from-day) (:type :leaf)
|j $ {} (:at 1604385624325) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385626378) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1604385627431) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385628866) (:by |rJG4IHzWf) (:text |:days) (:type :leaf)
|j $ {} (:at 1604387037893) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1604387038469) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|T $ {} (:at 1604385631346) (:by |rJG4IHzWf) (:text |days) (:type :leaf)
|j $ {} (:at 1604387040976) (:by |rJG4IHzWf) (:text |week-day) (:type :leaf)
|r $ {} (:at 1604385678522) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385681040) (:by |rJG4IHzWf) (:text |:from-day) (:type :leaf)
|j $ {} (:at 1604386176125) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629371987405) (:by |rJG4IHzWf) (:text |.!format) (:type :leaf)
|T $ {} (:at 1604387043851) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629371989492) (:by |rJG4IHzWf) (:text |.!subtract) (:type :leaf)
|T $ {} (:at 1604385684949) (:by |rJG4IHzWf) (:text |from-day) (:type :leaf)
|j $ {} (:at 1604387108312) (:by |rJG4IHzWf) (:text |week-day) (:type :leaf)
|r $ {} (:at 1604387091262) (:by |rJG4IHzWf) (:text "|\"days") (:type :leaf)
|j $ {} (:at 1604386181571) (:by |rJG4IHzWf) (:text "|\"YYYY-MM-DD") (:type :leaf)
|v $ {} (:at 1604385631954) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385660556) (:by |rJG4IHzWf) (:text |:grouped-tasks) (:type :leaf)
|j $ {} (:at 1604385673500) (:by |rJG4IHzWf) (:text |grouped-tasks) (:type :leaf)
|x $ {} (:at 1604385645550) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604385665303) (:by |rJG4IHzWf) (:text |:grouped-notes) (:type :leaf)
|j $ {} (:at 1604385670243) (:by |rJG4IHzWf) (:text |grouped-notes) (:type :leaf)
|style-list $ {} (:at 1604308822133) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308822133) (:by |rJG4IHzWf) (:text |def) (:type :leaf)
|j $ {} (:at 1604308822133) (:by |rJG4IHzWf) (:text |style-list) (:type :leaf)
|r $ {} (:at 1604308822133) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604308823460) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|r $ {} (:at 1604309163996) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1604309166857) (:by |rJG4IHzWf) (:text |:margin-bottom) (:type :leaf)
|j $ {} (:at 1604387278457) (:by |rJG4IHzWf) (:text |4) (:type :leaf)
:ns $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |ns) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |app.comp.container) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |:require) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1629371525058) (:by |rJG4IHzWf) (:text |respo-ui.core) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |hsl) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1516527080962) (:by |root) (:text |respo-ui.core) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |:as) (:type :leaf)
|v $ {} (:at 1499755354983) (:by |root) (:text |ui) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1540958704705) (:by |root) (:text |respo.core) (:type :leaf)
|r $ {} (:at 1508946162679) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |defcomp) (:type :leaf)
|l $ {} (:at 1573355389740) (:by |rJG4IHzWf) (:text |defeffect) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |<>) (:type :leaf)
|t $ {} (:at 1584780606618) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|u $ {} (:at 1604308419977) (:by |rJG4IHzWf) (:text |list->) (:type :leaf)
|v $ {} (:at 1499755354983) (:by |root) (:text |div) (:type :leaf)
|x $ {} (:at 1499755354983) (:by |root) (:text |button) (:type :leaf)
|xT $ {} (:at 1512359490531) (:by |rJG4IHzWf) (:text |textarea) (:type :leaf)
|y $ {} (:at 1499755354983) (:by |root) (:text |span) (:type :leaf)
|yT $ {} (:at 1552321107012) (:by |rJG4IHzWf) (:text |input) (:type :leaf)
|x $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |respo.comp.space) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |=<) (:type :leaf)
|y $ {} (:at 1507461845717) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461846175) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1507461855480) (:by |root) (:text |reel.comp.reel) (:type :leaf)
|r $ {} (:at 1507461856264) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1507461856484) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461856706) (:by |root) (:text |[]) (:type :leaf)
|j $ {} (:at 1507461858342) (:by |root) (:text |comp-reel) (:type :leaf)