generated from Cumulo/cumulo-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalcit.cirru
4444 lines (4443 loc) · 390 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 $ {} (:init-fn |app.client/main!) (:output |src) (:port 6001) (:reload-fn |app.client/reload!) (:storage-key |calcit.cirru)
:modules $ [] |lilac/ |recollect/ |memof/ |respo-ui.calcit/ |ws-edn.calcit/ |cumulo-util.calcit/ |cumulo-reel.calcit/ |phlox/ |bisection-key/ |pointed-prompt/
:entries $ {}
:server $ {} (:init-fn |app.server/main!) (:port 6001) (:reload-fn |app.server/reload!) (:storage-key |calcit.cirru)
:modules $ [] |lilac/ |recollect/ |memof/ |ws-edn.calcit/ |cumulo-util.calcit/ |cumulo-reel.calcit/ |calcit-wss/ |calcit.std/ |bisection-key/
:ir $ {} (:package |app)
:files $ {}
|app.client $ {}
:defs $ {}
|*states $ {} (:at 1500541010211) (:by nil) (:id |HyttQ9UlgCSW) (:type :expr)
:data $ {}
|T $ {} (:at 1629891410857) (:by |B1y7Rc-Zz) (:id |BJqtmc8gx0BZ) (:text |defatom) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BJjtXqUxg0SZ) (:text |*states) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |HkRKmc8leABb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HyJ975UexAHW) (:text |{}) (:type :leaf)
|j $ {} (:at 1584880530097) (:by |B1y7Rc-Zz) (:id |1Yuq22AQ1) (:type :expr)
:data $ {}
|T $ {} (:at 1584880530868) (:by |B1y7Rc-Zz) (:id |1GDjFomnM-) (:text |:states) (:type :leaf)
|j $ {} (:at 1584880531270) (:by |B1y7Rc-Zz) (:id |zRWFjSytJ) (:type :expr)
:data $ {}
|T $ {} (:at 1584880532120) (:by |B1y7Rc-Zz) (:id |Bn7orHMVAa) (:text |{}) (:type :leaf)
|j $ {} (:at 1585987499710) (:by |B1y7Rc-Zz) (:id |Lt2VwiMM-B) (:type :expr)
:data $ {}
|T $ {} (:at 1585987500772) (:by |B1y7Rc-Zz) (:id |39jxlNxWE) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1585987501807) (:by |B1y7Rc-Zz) (:id |w79CFHznfJ) (:type :expr)
:data $ {}
|T $ {} (:at 1585987502110) (:by |B1y7Rc-Zz) (:id |CseTC1Zs8i) (:text |[]) (:type :leaf)
|*store $ {} (:at 1500541010211) (:by nil) (:id |H1dE79UxlCHZ) (:type :expr)
:data $ {}
|T $ {} (:at 1629891422280) (:by |B1y7Rc-Zz) (:id |HyFVQqIgxAH-) (:text |defatom) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BJ9NQcLgx0rW) (:text |*store) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |ry6EXcUleRBb) (:text |nil) (:type :leaf)
|connect! $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |defn) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |connect!) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|v $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |let) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |url-obj) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |url-parse) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |js/location.href) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |true) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |host) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |either) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |->) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |url-obj) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |.-query) (:type :leaf)
|v $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |.-host) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |js/location.hostname) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |port) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |either) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |->) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |url-obj) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |.-query) (:type :leaf)
|v $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |.-port) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |:port) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |config/site) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |ws-connect!) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |str) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text "|\"ws://") (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |host) (:type :leaf)
|v $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text "|\":") (:type :leaf)
|x $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |port) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |{}) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |:on-open) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |event) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |simulate-login!) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |:on-close) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |event) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |reset!) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |*store) (:type :leaf)
|r $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |nil) (:type :leaf)
|v $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |js/console.error) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text "|\"Lost connection!") (:type :leaf)
|v $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |:on-data) (:type :leaf)
|j $ {} (:at 1629891242831) (:by |B1y7Rc-Zz) (:text |on-server-data) (:type :leaf)
|dispatch! $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |defn) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |dispatch!) (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op-data) (:type :leaf)
|v $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |when) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |and) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |config/dev?) (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |not=) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |:states) (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |println) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text "|\"Dispatch") (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|v $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op-data) (:type :leaf)
|x $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |case-default) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |ws-send!) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |{}) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |:kind) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |:op) (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |:op) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op) (:type :leaf)
|v $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |:data) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op-data) (:type :leaf)
|v $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |:states) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |reset!) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |*states) (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |update-states) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |@*states) (:type :leaf)
|r $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |op-data) (:type :leaf)
|x $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |:effect/connect) (:type :leaf)
|j $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891122329) (:by |B1y7Rc-Zz) (:text |connect!) (:type :leaf)
|global-fonts $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |vHoAceRut1) (:type :expr)
:data $ {}
|T $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |zy0xEtmZ2s) (:text |def) (:type :leaf)
|j $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |yaKRE66BtG) (:text |global-fonts) (:type :leaf)
|r $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |EkRo2rbFa1) (:type :expr)
:data $ {}
|T $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |47y4u-KRvm) (:text |js/Promise.all) (:type :leaf)
|j $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |GmhaYjLVCp) (:type :expr)
:data $ {}
|T $ {} (:at 1629891299786) (:by |B1y7Rc-Zz) (:id |0k7NFe_iDZ) (:text |js-array) (:type :leaf)
|j $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |HZ8GAY3H9y) (:type :expr)
:data $ {}
|T $ {} (:at 1629891303649) (:by |B1y7Rc-Zz) (:id |7UvyiFb0T_) (:text |.!load) (:type :leaf)
|j $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |0KAIyo15TR) (:type :expr)
:data $ {}
|D $ {} (:at 1629891305444) (:by |B1y7Rc-Zz) (:text |new) (:type :leaf)
|T $ {} (:at 1629891306391) (:by |B1y7Rc-Zz) (:id |txCcYD8j5M) (:text |FontFaceObserver) (:type :leaf)
|j $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |QzV29M1k51) (:text "|\"Josefin Sans") (:type :leaf)
|r $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |HvWLjQOajw) (:type :expr)
:data $ {}
|T $ {} (:at 1629891310008) (:by |B1y7Rc-Zz) (:id |8v3JJxxetox) (:text |.!load) (:type :leaf)
|j $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |mC6uNqCSk1O) (:type :expr)
:data $ {}
|D $ {} (:at 1629891308459) (:by |B1y7Rc-Zz) (:text |new) (:type :leaf)
|T $ {} (:at 1629891307882) (:by |B1y7Rc-Zz) (:id |Ymp-COOn0uE) (:text |FontFaceObserver) (:type :leaf)
|j $ {} (:at 1585988248872) (:by |B1y7Rc-Zz) (:id |VCSDICqWMSq) (:text "|\"Hind") (:type :leaf)
|main! $ {} (:at 1500541010211) (:by nil) (:id |BJCEXcIglASW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B1krmcIglAHb) (:text |defn) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |r1gSXcLlgAHZ) (:text |main!) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |r1ZBm58llAS-) (:type :expr)
:data $ {}
|t $ {} (:at 1544874518376) (:by |B1y7Rc-Zz) (:id |ICEtj5Fxmg) (:type :expr)
:data $ {}
|T $ {} (:at 1544874519276) (:by |B1y7Rc-Zz) (:id |ICEtj5Fxmgleaf) (:text |println) (:type :leaf)
|j $ {} (:at 1544874524299) (:by |B1y7Rc-Zz) (:id |ckXl0VHmU) (:text "|\"Running mode:") (:type :leaf)
|r $ {} (:at 1544874525129) (:by |B1y7Rc-Zz) (:id |6gcIZj22Hd) (:type :expr)
:data $ {}
|T $ {} (:at 1544874525354) (:by |B1y7Rc-Zz) (:id |hoH8abMFL) (:text |if) (:type :leaf)
|j $ {} (:at 1544874529605) (:by |B1y7Rc-Zz) (:id |VT1AFOCPy3) (:text |config/dev?) (:type :leaf)
|r $ {} (:at 1544874539526) (:by |B1y7Rc-Zz) (:id |tJW-De5LCf) (:text "|\"dev") (:type :leaf)
|v $ {} (:at 1544874537560) (:by |B1y7Rc-Zz) (:id |1o5SA2gNC) (:text "|\"release") (:type :leaf)
|v $ {} (:at 1585987459018) (:by |B1y7Rc-Zz) (:id |xW995k5WQi) (:type :expr)
:data $ {}
|T $ {} (:at 1585987459018) (:by |B1y7Rc-Zz) (:id |HmUWQsFcmS) (:text |->) (:type :leaf)
|j $ {} (:at 1585987459018) (:by |B1y7Rc-Zz) (:id |liFoMO__P1) (:text |global-fonts) (:type :leaf)
|r $ {} (:at 1585987459018) (:by |B1y7Rc-Zz) (:id |5tO4gio70R) (:type :expr)
:data $ {}
|T $ {} (:at 1629891392485) (:by |B1y7Rc-Zz) (:id |j4U4LA8kSa) (:text |.!then) (:type :leaf)
|j $ {} (:at 1585994692548) (:by |B1y7Rc-Zz) (:id |pNocLtndf5) (:type :expr)
:data $ {}
|T $ {} (:at 1585994692548) (:by |B1y7Rc-Zz) (:id |w6ZbnSoZMo) (:text |fn) (:type :leaf)
|j $ {} (:at 1585994692548) (:by |B1y7Rc-Zz) (:id |Tpe4OON6k0) (:type :expr)
:data $ {}
|T $ {} (:at 1629891762905) (:by |B1y7Rc-Zz) (:text |e) (:type :leaf)
|r $ {} (:at 1585994692548) (:by |B1y7Rc-Zz) (:id |IdJPsJk8yo) (:type :expr)
:data $ {}
|T $ {} (:at 1585994692548) (:by |B1y7Rc-Zz) (:id |TjgXF3JBIq) (:text |render-app!) (:type :leaf)
|j $ {} (:at 1585994692548) (:by |B1y7Rc-Zz) (:id |VyfK6aljro) (:text |false) (:type :leaf)
|w5 $ {} (:at 1585987461633) (:by |B1y7Rc-Zz) (:id |Ug1VrzPMal) (:type :expr)
:data $ {}
|T $ {} (:at 1585987461633) (:by |B1y7Rc-Zz) (:id |6OB5WVMRGP) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1585987461633) (:by |B1y7Rc-Zz) (:id |Zk7Hpu0cwD) (:text |*store) (:type :leaf)
|r $ {} (:at 1585987461633) (:by |B1y7Rc-Zz) (:id |9MDPxggDD1) (:text |:change) (:type :leaf)
|v $ {} (:at 1585994685140) (:by |B1y7Rc-Zz) (:id |APsiZSs99) (:type :expr)
:data $ {}
|D $ {} (:at 1585994686684) (:by |B1y7Rc-Zz) (:id |7DQQNbPd0v) (:text |fn) (:type :leaf)
|L $ {} (:at 1585994687390) (:by |B1y7Rc-Zz) (:id |MNgzrucOUR) (:type :expr)
:data $ {}
|T $ {} (:at 1629891764095) (:by |B1y7Rc-Zz) (:text |s) (:type :leaf)
|j $ {} (:at 1629891764541) (:by |B1y7Rc-Zz) (:text |p) (:type :leaf)
|T $ {} (:at 1585994688568) (:by |B1y7Rc-Zz) (:id |FTB7mg2WLP) (:type :expr)
:data $ {}
|T $ {} (:at 1585991480947) (:by |B1y7Rc-Zz) (:id |6aWZPRlHv) (:text |render-app!) (:type :leaf)
|j $ {} (:at 1585994689516) (:by |B1y7Rc-Zz) (:id |1SZLfm-BEO) (:text |false) (:type :leaf)
|w9 $ {} (:at 1585987461633) (:by |B1y7Rc-Zz) (:id |qtfvGnHYf) (:type :expr)
:data $ {}
|T $ {} (:at 1585987461633) (:by |B1y7Rc-Zz) (:id |6OB5WVMRGP) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1585991466181) (:by |B1y7Rc-Zz) (:id |Zk7Hpu0cwD) (:text |*states) (:type :leaf)
|r $ {} (:at 1585987461633) (:by |B1y7Rc-Zz) (:id |9MDPxggDD1) (:text |:change) (:type :leaf)
|v $ {} (:at 1585994691385) (:by |B1y7Rc-Zz) (:id |q6z44OCyuj) (:type :expr)
:data $ {}
|T $ {} (:at 1585994691385) (:by |B1y7Rc-Zz) (:id |Z5RbhsiYWp) (:text |fn) (:type :leaf)
|j $ {} (:at 1585994691385) (:by |B1y7Rc-Zz) (:id |VfMq-Fkp5R) (:type :expr)
:data $ {}
|T $ {} (:at 1629891765901) (:by |B1y7Rc-Zz) (:text |s) (:type :leaf)
|j $ {} (:at 1629891767215) (:by |B1y7Rc-Zz) (:text |p) (:type :leaf)
|r $ {} (:at 1585994691385) (:by |B1y7Rc-Zz) (:id |Kag2XxZrh0) (:type :expr)
:data $ {}
|T $ {} (:at 1585994691385) (:by |B1y7Rc-Zz) (:id |xvK0UAI1u2) (:text |render-app!) (:type :leaf)
|j $ {} (:at 1585994691385) (:by |B1y7Rc-Zz) (:id |fPa9QPWnE2) (:text |false) (:type :leaf)
|xD $ {} (:at 1512319371768) (:by |B1y7Rc-Zz) (:id |ryN9FobbM) (:type :expr)
:data $ {}
|T $ {} (:at 1512319373162) (:by |B1y7Rc-Zz) (:id |HkeQ9KjZ-f) (:text |connect!) (:type :leaf)
|yp $ {} (:at 1545239347653) (:by |B1y7Rc-Zz) (:id |xsXQphbiL) (:type :expr)
:data $ {}
|T $ {} (:at 1545239515366) (:by |B1y7Rc-Zz) (:id |xsXQphbiLleaf) (:text |on-page-touch) (:type :leaf)
|j $ {} (:at 1629891434419) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|D $ {} (:at 1629891435034) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|L $ {} (:at 1629891435253) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1545239354450) (:by |B1y7Rc-Zz) (:id |L4nfTN5HbZ) (:type :expr)
:data $ {}
|j $ {} (:at 1545239386447) (:by |B1y7Rc-Zz) (:id |VLEK7Deo8y) (:text |if) (:type :leaf)
|r $ {} (:at 1545239374628) (:by |B1y7Rc-Zz) (:id |UXyM65FXAg) (:type :expr)
:data $ {}
|T $ {} (:at 1545239374628) (:by |B1y7Rc-Zz) (:id |-Is1GQONi9) (:text |nil?) (:type :leaf)
|j $ {} (:at 1545239374628) (:by |B1y7Rc-Zz) (:id |9pOm8A9oLv) (:text |@*store) (:type :leaf)
|v $ {} (:at 1545239374628) (:by |B1y7Rc-Zz) (:id |bL7TIWGWuL) (:type :expr)
:data $ {}
|T $ {} (:at 1562176366189) (:by |B1y7Rc-Zz) (:id |ff1BEzXXGX) (:text |connect!) (:type :leaf)
|yr $ {} (:at 1500541010211) (:by nil) (:id |rJ8FQc8xx0S-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ryvF75UgxCHW) (:text |println) (:type :leaf)
|j $ {} (:at 1562176360971) (:by |B1y7Rc-Zz) (:id |BJuKm5IglCSb) (:text "|\"App started!") (:type :leaf)
|mount-target $ {} (:at 1500541010211) (:by nil) (:id |BkpTXqIleASW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJAa7qIllRrW) (:text |def) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BykCX9IlxCrZ) (:text |mount-target) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |rJl0mcUxeRS-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rJbRmqLgeCHW) (:text |.querySelector) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |Byz0Q58leRrb) (:text |js/document) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |BkmCm9LggCrW) (:text "|\".app") (:type :leaf)
|on-server-data $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |defn) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |on-server-data) (:type :leaf)
|r $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|v $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |case-default) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |:kind) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|r $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |println) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text "|\"unknown server data kind:") (:type :leaf)
|r $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|v $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |:patch) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |let) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |changes) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |:data) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |data) (:type :leaf)
|r $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |when) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |config/dev?) (:type :leaf)
|r $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |js/console.log) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text "|\"Changes") (:type :leaf)
|r $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |to-js-data) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |changes) (:type :leaf)
|v $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |reset!) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |*store) (:type :leaf)
|r $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |patch-twig) (:type :leaf)
|j $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |@*store) (:type :leaf)
|r $ {} (:at 1629891249861) (:by |B1y7Rc-Zz) (:text |changes) (:type :leaf)
|reload! $ {} (:at 1500541010211) (:by nil) (:id |BybpmqIeeCr-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |Skz6mqLllAB-) (:text |defn) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BkXp7qLxx0Sb) (:text |reload!) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |HyN67qUllASZ) (:type :expr)
:data $ {}
|v $ {} (:at 1632896812615) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896815788) (:by |B1y7Rc-Zz) (:text |remove-watch) (:type :leaf)
|j $ {} (:at 1632896817344) (:by |B1y7Rc-Zz) (:text |*states) (:type :leaf)
|r $ {} (:at 1632896819030) (:by |B1y7Rc-Zz) (:text |:change) (:type :leaf)
|vT $ {} (:at 1632896812615) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896815788) (:by |B1y7Rc-Zz) (:text |remove-watch) (:type :leaf)
|j $ {} (:at 1632896822757) (:by |B1y7Rc-Zz) (:text |*store) (:type :leaf)
|r $ {} (:at 1632896819030) (:by |B1y7Rc-Zz) (:text |:change) (:type :leaf)
|w $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:text |*states) (:type :leaf)
|r $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:text |:change) (:type :leaf)
|v $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|j $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:text |s) (:type :leaf)
|j $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:text |p) (:type :leaf)
|r $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:text |render-app!) (:type :leaf)
|j $ {} (:at 1632896794068) (:by |B1y7Rc-Zz) (:text |false) (:type :leaf)
|x $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:text |*store) (:type :leaf)
|r $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:text |:change) (:type :leaf)
|v $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:text |fn) (:type :leaf)
|j $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:text |s) (:type :leaf)
|j $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:text |p) (:type :leaf)
|r $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:text |render-app!) (:type :leaf)
|j $ {} (:at 1632896799732) (:by |B1y7Rc-Zz) (:text |false) (:type :leaf)
|xT $ {} (:at 1632896832717) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632896832717) (:by |B1y7Rc-Zz) (:text |render-app!) (:type :leaf)
|j $ {} (:at 1632896832717) (:by |B1y7Rc-Zz) (:text |true) (:type :leaf)
|y $ {} (:at 1500541010211) (:by nil) (:id |Hyc6Q9Uel0Bb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SkipXq8geAB-) (:text |println) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |Hyh679IegASZ) (:text "|\"Code updated.") (:type :leaf)
|render-app! $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |EMfYjJQYkc) (:type :expr)
:data $ {}
|T $ {} (:at 1585991473132) (:by |B1y7Rc-Zz) (:id |HPrHi0nz0H) (:text |defn) (:type :leaf)
|j $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |xUep7tlbzQ) (:text |render-app!) (:type :leaf)
|n $ {} (:at 1585991473895) (:by |B1y7Rc-Zz) (:id |X8NMXfRqM3) (:type :expr)
:data $ {}
|T $ {} (:at 1585994669186) (:by |B1y7Rc-Zz) (:id |6NW5Mcld2) (:text |swap?) (:type :leaf)
|r $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |YOigmdYRJx) (:type :expr)
:data $ {}
|T $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |lVOf30AeAf) (:text |render!) (:type :leaf)
|j $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |sZoVV3AAc3) (:type :expr)
:data $ {}
|T $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |hkCBPsbusi) (:text |comp-container) (:type :leaf)
|j $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |xhrDuhvdns) (:type :expr)
:data $ {}
|T $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |WKhTy8viVP) (:text |:states) (:type :leaf)
|j $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |KJPff3cEjR) (:text |@*states) (:type :leaf)
|r $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |kyWQJ80SXu) (:text |@*store) (:type :leaf)
|r $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |QF1jq7Zyy3) (:text |dispatch!) (:type :leaf)
|v $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |rlLgP3WCiF) (:type :expr)
:data $ {}
|T $ {} (:at 1585991470283) (:by |B1y7Rc-Zz) (:id |aQG_3xKEWW) (:text |{}) (:type :leaf)
|j $ {} (:at 1585994670692) (:by |B1y7Rc-Zz) (:id |iwojPdg1jP) (:type :expr)
:data $ {}
|T $ {} (:at 1585994675152) (:by |B1y7Rc-Zz) (:id |VK7zhSHPL1) (:text |:swap?) (:type :leaf)
|j $ {} (:at 1585994677410) (:by |B1y7Rc-Zz) (:id |-PH26aER0w) (:text |swap?) (:type :leaf)
|simulate-login! $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |defn) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |simulate-login!) (:type :leaf)
|r $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|v $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |let) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |raw) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |.!getItem) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |js/localStorage) (:type :leaf)
|r $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |:storage-key) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |config/site) (:type :leaf)
|r $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |if) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |some?) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |raw) (:type :leaf)
|r $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |do) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |println) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text "|\"Found storage.") (:type :leaf)
|r $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |dispatch!) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |:user/log-in) (:type :leaf)
|r $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |parse-cirru-edn) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |raw) (:type :leaf)
|v $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |do) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text |println) (:type :leaf)
|j $ {} (:at 1629891260113) (:by |B1y7Rc-Zz) (:text "|\"Found no storage.") (:type :leaf)
:ns $ {} (:at 1500541010211) (:by nil) (:id |S1uAGcLllRr-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |H1KCzq8geASW) (:text |ns) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BycAGqLleAH-) (:text |app.client) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |BysRMcUleArZ) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B130M9IxgASW) (:text |:require) (:type :leaf)
|h $ {} (:at 1585987320948) (:by |B1y7Rc-Zz) (:id |PzlC5d3OHU) (:type :expr)
:data $ {}
|T $ {} (:at 1585987320240) (:by |B1y7Rc-Zz) (:id |xnqxBv7zB) (:text |[]) (:type :leaf)
|j $ {} (:at 1585987324459) (:by |B1y7Rc-Zz) (:id |-rvSmhF-G) (:text "|\"pixi.js") (:type :leaf)
|r $ {} (:at 1585987325339) (:by |B1y7Rc-Zz) (:id |H_gKu-_rGN) (:text |:as) (:type :leaf)
|v $ {} (:at 1585987326245) (:by |B1y7Rc-Zz) (:id |yp0C3T0-nm) (:text |PIXI) (:type :leaf)
|o $ {} (:at 1585987327210) (:by |B1y7Rc-Zz) (:id |M2oVamktd) (:type :expr)
:data $ {}
|T $ {} (:at 1585987327941) (:by |B1y7Rc-Zz) (:id |M2oVamktdleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1585987330741) (:by |B1y7Rc-Zz) (:id |QKA8zM0jz) (:text |phlox.core) (:type :leaf)
|r $ {} (:at 1585987331449) (:by |B1y7Rc-Zz) (:id |5Xe0NvnqGl) (:text |:refer) (:type :leaf)
|v $ {} (:at 1585987331678) (:by |B1y7Rc-Zz) (:id |K6xcPaVwAf) (:type :expr)
:data $ {}
|T $ {} (:at 1585987331865) (:by |B1y7Rc-Zz) (:id |62bfIMcD0C) (:text |[]) (:type :leaf)
|j $ {} (:at 1585987333660) (:by |B1y7Rc-Zz) (:id |lsB3YfGVPF) (:text |render!) (:type :leaf)
|r $ {} (:at 1585987339871) (:by |B1y7Rc-Zz) (:id |jCjWDoWnQ-) (:type :expr)
:data $ {}
|T $ {} (:at 1585987339871) (:by |B1y7Rc-Zz) (:id |QITyHoHRn-) (:text |[]) (:type :leaf)
|j $ {} (:at 1629891327140) (:by |B1y7Rc-Zz) (:id |FsLj7-WvRT) (:text "|\"fontfaceobserver-es") (:type :leaf)
|r $ {} (:at 1629891330733) (:by |B1y7Rc-Zz) (:id |S6l1Jama73) (:text |:default) (:type :leaf)
|v $ {} (:at 1585987339871) (:by |B1y7Rc-Zz) (:id |h-mcm9uxKb) (:text |FontFaceObserver) (:type :leaf)
|t $ {} (:at 1585987341275) (:by |B1y7Rc-Zz) (:id |yEXbGyzuf) (:type :expr)
:data $ {}
|T $ {} (:at 1585987341624) (:by |B1y7Rc-Zz) (:id |yEXbGyzufleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1585987347309) (:by |B1y7Rc-Zz) (:id |jwz_2gvWRE) (:text |phlox.cursor) (:type :leaf)
|r $ {} (:at 1585987347944) (:by |B1y7Rc-Zz) (:id |fB-dhR6PS7) (:text |:refer) (:type :leaf)
|v $ {} (:at 1585987348134) (:by |B1y7Rc-Zz) (:id |Tw_WWBLVS) (:type :expr)
:data $ {}
|T $ {} (:at 1585987348338) (:by |B1y7Rc-Zz) (:id |KiiRJhBzXX) (:text |[]) (:type :leaf)
|j $ {} (:at 1585987357152) (:by |B1y7Rc-Zz) (:id |vt12W8Tz6) (:text |update-states) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |r1pJXcIgx0SW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HJ0J7cLeeCS-) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |BJJe75Igx0Sb) (:text |app.comp.container) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |rklgX5UxxCHW) (:text |:refer) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |SyWx7qIex0BW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HkMx75Ixl0rW) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |rJmxQqIelAS-) (:text |comp-container) (:type :leaf)
|yT $ {} (:at 1500541010211) (:by nil) (:id |HJXbm58xeRrW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B14bQq8eg0rW) (:text |[]) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |HyrZm9IegRSZ) (:text |app.schema) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |BJ8b75LgeCS-) (:text |:as) (:type :leaf)
|v $ {} (:at 1500541010211) (:by |root) (:id |Byw-mqIgl0HZ) (:text |schema) (:type :leaf)
|yj $ {} (:at 1527788760671) (:by |root) (:id |rJWJr3TyQ) (:type :expr)
:data $ {}
|T $ {} (:at 1527788761874) (:by |root) (:id |rJWJr3TyQleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1527788764341) (:by |root) (:id |SJZzyHh6J7) (:text |app.config) (:type :leaf)
|r $ {} (:at 1527788766627) (:by |root) (:id |HJI4JHhakX) (:text |:as) (:type :leaf)
|v $ {} (:at 1527788767318) (:by |root) (:id |BJ-DJH3a17) (:text |config) (:type :leaf)
|yr $ {} (:at 1544638775980) (:by |B1y7Rc-Zz) (:id |lMCAY6KwD) (:type :expr)
:data $ {}
|T $ {} (:at 1544638776805) (:by |B1y7Rc-Zz) (:id |lMCAY6KwDleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1544638780714) (:by |B1y7Rc-Zz) (:id |zEN00LwW1E) (:text |ws-edn.client) (:type :leaf)
|r $ {} (:at 1544638782705) (:by |B1y7Rc-Zz) (:id |m3-1FVuogh) (:text |:refer) (:type :leaf)
|v $ {} (:at 1544638782913) (:by |B1y7Rc-Zz) (:id |wG2B6CmLNG) (:type :expr)
:data $ {}
|T $ {} (:at 1544638783120) (:by |B1y7Rc-Zz) (:id |I2hXPBL2YJ) (:text |[]) (:type :leaf)
|j $ {} (:at 1544638785998) (:by |B1y7Rc-Zz) (:id |JiK-h2n4iN) (:text |ws-connect!) (:type :leaf)
|r $ {} (:at 1544638787583) (:by |B1y7Rc-Zz) (:id |h15_zxZNZf) (:text |ws-send!) (:type :leaf)
|yv $ {} (:at 1544639047460) (:by |B1y7Rc-Zz) (:id |rkLsBPMduC) (:type :expr)
:data $ {}
|T $ {} (:at 1544639047763) (:by |B1y7Rc-Zz) (:id |N6w_dOM0yc) (:text |[]) (:type :leaf)
|j $ {} (:at 1544639048479) (:by |B1y7Rc-Zz) (:id |KvS5_SXv0S) (:text |recollect.patch) (:type :leaf)
|r $ {} (:at 1544639049759) (:by |B1y7Rc-Zz) (:id |8FxYaO5JP) (:text |:refer) (:type :leaf)
|v $ {} (:at 1544639049952) (:by |B1y7Rc-Zz) (:id |07xWSkTUjV) (:type :expr)
:data $ {}
|T $ {} (:at 1544639050115) (:by |B1y7Rc-Zz) (:id |D49-t_AC7B) (:text |[]) (:type :leaf)
|j $ {} (:at 1544639057259) (:by |B1y7Rc-Zz) (:id |y2z8vLZvwg) (:text |patch-twig) (:type :leaf)
|yx $ {} (:at 1545239397101) (:by |B1y7Rc-Zz) (:id |9yRRVSPy_o) (:type :expr)
:data $ {}
|T $ {} (:at 1545239397493) (:by |B1y7Rc-Zz) (:id |9yRRVSPy_oleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1545239402091) (:by |B1y7Rc-Zz) (:id |pVpV5eueG) (:text |cumulo-util.core) (:type :leaf)
|r $ {} (:at 1545239402776) (:by |B1y7Rc-Zz) (:id |KGMk6pkEm_) (:text |:refer) (:type :leaf)
|v $ {} (:at 1545239402983) (:by |B1y7Rc-Zz) (:id |39TJMdIhRL) (:type :expr)
:data $ {}
|T $ {} (:at 1545239403156) (:by |B1y7Rc-Zz) (:id |CzqRUswnLt) (:text |[]) (:type :leaf)
|j $ {} (:at 1545239519506) (:by |B1y7Rc-Zz) (:id |9b8ZYaPnbu) (:text |on-page-touch) (:type :leaf)
|yy $ {} (:at 1553788385335) (:by |B1y7Rc-Zz) (:id |Ol6pRFB9Pq) (:type :expr)
:data $ {}
|T $ {} (:at 1553788385624) (:by |B1y7Rc-Zz) (:id |Ol6pRFB9Pqleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1553788387912) (:by |B1y7Rc-Zz) (:id |PjY-5vhezr) (:text "|\"url-parse") (:type :leaf)
|r $ {} (:at 1629891321246) (:by |B1y7Rc-Zz) (:id |xuQXGFRA-i) (:text |:default) (:type :leaf)
|v $ {} (:at 1553788391454) (:by |B1y7Rc-Zz) (:id |BlhK80C3x7) (:text |url-parse) (:type :leaf)
:proc $ {} (:at 1500541010211) (:by nil) (:id |S1dWm9UggRBZ) (:type :expr)
:data $ {}
|app.comp.container $ {}
:defs $ {}
|comp-container $ {} (:at 1500541010211) (:by nil) (:id |rJcN9Iee0Bb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ryo4cIlgAHZ) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |H1hV5IlxCH-) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |r1aE9IglCB-) (:type :expr)
:data $ {}
|L $ {} (:at 1585987418288) (:by |B1y7Rc-Zz) (:id |cmuE7gkvue) (:text |states) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |SkyrqIglCr-) (:text |store) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |HyxSq8llRHb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |ByZB58exAB-) (:text |let) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |rkzr9UggCHW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by nil) (:id |HJmS5IllASW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rJVBcUxx0Bb) (:text |state) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |ByrH5IggAHW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |S1LScUglRSW) (:text |:data) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |SJvHc8eeAB-) (:text |states) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |ryuSqIllABW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |rkYrq8lgCHb) (:text |session) (:type :leaf)
|j $ {} (:at 1500541010211) (:by nil) (:id |BycSqLllCSW) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |Hksr5IxlCSZ) (:text |:session) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |SJhS5UxeRBb) (:text |store) (:type :leaf)
|r $ {} (:at 1525106928554) (:by |root) (:id |HyYgtpEaG) (:type :expr)
:data $ {}
|T $ {} (:at 1525106929232) (:by |root) (:id |HyYgtpEaGleaf) (:text |router) (:type :leaf)
|j $ {} (:at 1525106929915) (:by |root) (:id |Skg5etaNTM) (:type :expr)
:data $ {}
|T $ {} (:at 1525106930860) (:by |root) (:id |HyLFeYpEaG) (:text |:router) (:type :leaf)
|j $ {} (:at 1525106931558) (:by |root) (:id |HkNigK646z) (:text |store) (:type :leaf)
|v $ {} (:at 1525106933346) (:by |root) (:id |Sye6lY64aM) (:type :expr)
:data $ {}
|T $ {} (:at 1525106935393) (:by |root) (:id |Sye6lY64aMleaf) (:text |router-data) (:type :leaf)
|j $ {} (:at 1525106935675) (:by |root) (:id |H1eWtaNTz) (:type :expr)
:data $ {}
|T $ {} (:at 1525106936827) (:by |root) (:id |r1u1WKTNTz) (:text |:data) (:type :leaf)
|j $ {} (:at 1525106937665) (:by |root) (:id |SkMW-tpE6M) (:text |router) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |ByaHq8gxCSW) (:type :expr)
:data $ {}
|T $ {} (:at 1585987603649) (:by |B1y7Rc-Zz) (:id |S10HqUelASb) (:text |container) (:type :leaf)
|j $ {} (:at 1585987603902) (:by |B1y7Rc-Zz) (:id |tNtJ-pK5Ta) (:type :expr)
:data $ {}
|T $ {} (:at 1585987604393) (:by |B1y7Rc-Zz) (:id |D8DaFchDob) (:text |{}) (:type :leaf)
|pT $ {} (:at 1586017248380) (:by |B1y7Rc-Zz) (:id |BGmuewrVP) (:type :expr)
:data $ {}
|T $ {} (:at 1586017250117) (:by |B1y7Rc-Zz) (:id |BGmuewrVPleaf) (:text |comp-status) (:type :leaf)
|j $ {} (:at 1586017251045) (:by |B1y7Rc-Zz) (:id |rr4om6rAwG) (:text |store) (:type :leaf)
|r $ {} (:at 1586017843675) (:by |B1y7Rc-Zz) (:id |zulT7JUDr0) (:type :expr)
:data $ {}
|T $ {} (:at 1586017843675) (:by |B1y7Rc-Zz) (:id |OLkLfsFgS8) (:text |[]) (:type :leaf)
|j $ {} (:at 1586017843675) (:by |B1y7Rc-Zz) (:id |jNU4VUSBjr) (:text |40) (:type :leaf)
|r $ {} (:at 1586017843675) (:by |B1y7Rc-Zz) (:id |s67G5zW5Xq) (:type :expr)
:data $ {}
|T $ {} (:at 1586017843675) (:by |B1y7Rc-Zz) (:id |j7Q0qgeMfk) (:text |-) (:type :leaf)
|j $ {} (:at 1586017843675) (:by |B1y7Rc-Zz) (:id |85Vq6e3v8T) (:text |js/window.innerHeight) (:type :leaf)
|r $ {} (:at 1586017851625) (:by |B1y7Rc-Zz) (:id |4yxhBSMWE_) (:text |52) (:type :leaf)
|q $ {} (:at 1586017681283) (:by |B1y7Rc-Zz) (:id |WIanrnsp1) (:type :expr)
:data $ {}
|D $ {} (:at 1586017682802) (:by |B1y7Rc-Zz) (:id |KlaSf_0V1D) (:text |when) (:type :leaf)
|L $ {} (:at 1586017683580) (:by |B1y7Rc-Zz) (:id |np3aQWDKc2) (:text |dev?) (:type :leaf)
|T $ {} (:at 1586016992699) (:by |B1y7Rc-Zz) (:id |AiHn4xdW9u) (:type :expr)
:data $ {}
|T $ {} (:at 1586016997719) (:by |B1y7Rc-Zz) (:id |OHDdj9U1n) (:text |comp-reel) (:type :leaf)
|j $ {} (:at 1586017000016) (:by |B1y7Rc-Zz) (:id |28qPOn3ud9) (:type :expr)
:data $ {}
|T $ {} (:at 1586017000390) (:by |B1y7Rc-Zz) (:id |_oO-xOaYy) (:text |{}) (:type :leaf)
|j $ {} (:at 1586017113678) (:by |B1y7Rc-Zz) (:id |cNHnyzk6p7) (:type :expr)
:data $ {}
|T $ {} (:at 1586017114865) (:by |B1y7Rc-Zz) (:id |sLdxTZsmT) (:text |:position) (:type :leaf)
|j $ {} (:at 1586017115154) (:by |B1y7Rc-Zz) (:id |0nc8O0o66) (:type :expr)
:data $ {}
|T $ {} (:at 1586017115423) (:by |B1y7Rc-Zz) (:id |mFfK5Iwq7a) (:text |[]) (:type :leaf)
|j $ {} (:at 1632896663054) (:by |B1y7Rc-Zz) (:id |6OKRYK-qOF) (:text |0) (:type :leaf)
|r $ {} (:at 1586017124263) (:by |B1y7Rc-Zz) (:id |wAGVVDOcm) (:type :expr)
:data $ {}
|T $ {} (:at 1586017124486) (:by |B1y7Rc-Zz) (:id |tJdIDyPuD) (:text |-) (:type :leaf)
|j $ {} (:at 1586017129884) (:by |B1y7Rc-Zz) (:id |Pzohbh1hnH) (:text |js/window.innerHeight) (:type :leaf)
|r $ {} (:at 1586017168917) (:by |B1y7Rc-Zz) (:id |xwa7SYliGx) (:text |60) (:type :leaf)
|r $ {} (:at 1586017478498) (:by |B1y7Rc-Zz) (:id |053PXucriO) (:type :expr)
:data $ {}
|T $ {} (:at 1586017479851) (:by |B1y7Rc-Zz) (:id |053PXucriOleaf) (:text |:size) (:type :leaf)
|j $ {} (:at 1586017481897) (:by |B1y7Rc-Zz) (:id |xKXG2KFII) (:type :expr)
:data $ {}
|T $ {} (:at 1586017633712) (:by |B1y7Rc-Zz) (:id |zIdb6UvA-4) (:text |:reel-length) (:type :leaf)
|j $ {} (:at 1586017484291) (:by |B1y7Rc-Zz) (:id |OktfS84Cfh) (:text |store) (:type :leaf)
|r $ {} (:at 1585988694037) (:by |B1y7Rc-Zz) (:id |Hsyg-SX8ZS) (:type :expr)
:data $ {}
|T $ {} (:at 1585988696902) (:by |B1y7Rc-Zz) (:id |Hsyg-SX8ZSleaf) (:text |if) (:type :leaf)
|j $ {} (:at 1585988697494) (:by |B1y7Rc-Zz) (:id |bVreF_FAhQ) (:type :expr)
:data $ {}
|T $ {} (:at 1585988699129) (:by |B1y7Rc-Zz) (:id |bb6w9167l) (:text |nil?) (:type :leaf)
|j $ {} (:at 1585988699804) (:by |B1y7Rc-Zz) (:id |8HCVwWCjuc) (:text |store) (:type :leaf)
|r $ {} (:at 1585988700584) (:by |B1y7Rc-Zz) (:id |qh5S2MGZoa) (:type :expr)
:data $ {}
|T $ {} (:at 1585988703213) (:by |B1y7Rc-Zz) (:id |qh5S2MGZoaleaf) (:text |text) (:type :leaf)
|j $ {} (:at 1585988703624) (:by |B1y7Rc-Zz) (:id |LkXWRXVteV) (:type :expr)
:data $ {}
|T $ {} (:at 1585988704736) (:by |B1y7Rc-Zz) (:id |EOlmMlHsT8) (:text |{}) (:type :leaf)
|j $ {} (:at 1585988705068) (:by |B1y7Rc-Zz) (:id |kDiLqpLku) (:type :expr)
:data $ {}
|T $ {} (:at 1585988705859) (:by |B1y7Rc-Zz) (:id |Nb0Gbe3v19) (:text |:text) (:type :leaf)
|j $ {} (:at 1585994713464) (:by |B1y7Rc-Zz) (:id |-S5KmH7FwZ) (:text "|\"Client is offline...") (:type :leaf)
|n $ {} (:at 1585994557666) (:by |B1y7Rc-Zz) (:id |wgJJiTlB8) (:type :expr)
:data $ {}
|T $ {} (:at 1585994558987) (:by |B1y7Rc-Zz) (:id |wgJJiTlB8leaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1585994559461) (:by |B1y7Rc-Zz) (:id |YRnyxjLHWO) (:type :expr)
:data $ {}
|T $ {} (:at 1585994559734) (:by |B1y7Rc-Zz) (:id |PY8lg-6vv) (:text |[]) (:type :leaf)
|j $ {} (:at 1632896764464) (:by |B1y7Rc-Zz) (:id |RgdOqKZYk) (:text |-80) (:type :leaf)
|r $ {} (:at 1632896769833) (:by |B1y7Rc-Zz) (:id |9EVE2rOc5a) (:text |-40) (:type :leaf)
|r $ {} (:at 1585988709018) (:by |B1y7Rc-Zz) (:id |5P-mnaVzCw) (:type :expr)
:data $ {}
|T $ {} (:at 1585988709805) (:by |B1y7Rc-Zz) (:id |5P-mnaVzCwleaf) (:text |:style) (:type :leaf)
|j $ {} (:at 1585988710052) (:by |B1y7Rc-Zz) (:id |T_celAe6Cv) (:type :expr)
:data $ {}
|T $ {} (:at 1585988710405) (:by |B1y7Rc-Zz) (:id |1wVfkAi7jB) (:text |{}) (:type :leaf)
|j $ {} (:at 1585988710651) (:by |B1y7Rc-Zz) (:id |7r3C6mMpMo) (:type :expr)
:data $ {}
|T $ {} (:at 1585988712940) (:by |B1y7Rc-Zz) (:id |KMSwbNs-XS) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1585988715841) (:by |B1y7Rc-Zz) (:id |YXqj8GO2d) (:text |ui/font-fancy) (:type :leaf)
|n $ {} (:at 1585994540433) (:by |B1y7Rc-Zz) (:id |VDAJ0i7VkS) (:type :expr)
:data $ {}
|T $ {} (:at 1585994550438) (:by |B1y7Rc-Zz) (:id |VDAJ0i7VkSleaf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1585994541817) (:by |B1y7Rc-Zz) (:id |Kob1dfyNcE) (:type :expr)
:data $ {}
|T $ {} (:at 1585994542986) (:by |B1y7Rc-Zz) (:id |JxrIYyo0bd) (:text |hslx) (:type :leaf)
|j $ {} (:at 1585994543602) (:by |B1y7Rc-Zz) (:id |Ky_ayp2kz) (:text |0) (:type :leaf)
|r $ {} (:at 1585994543804) (:by |B1y7Rc-Zz) (:id |lkUs2pg3f3) (:text |0) (:type :leaf)
|v $ {} (:at 1585994717975) (:by |B1y7Rc-Zz) (:id |cT5q8sOZKP) (:text |50) (:type :leaf)
|r $ {} (:at 1585988717518) (:by |B1y7Rc-Zz) (:id |SVPkJiJSeU) (:type :expr)
:data $ {}
|T $ {} (:at 1585988718813) (:by |B1y7Rc-Zz) (:id |SVPkJiJSeUleaf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1585994721401) (:by |B1y7Rc-Zz) (:id |8u96f0gGRT) (:text |40) (:type :leaf)
|v $ {} (:at 1585994722688) (:by |B1y7Rc-Zz) (:id |zRvGHn3131) (:type :expr)
:data $ {}
|T $ {} (:at 1585994730800) (:by |B1y7Rc-Zz) (:id |zRvGHn3131leaf) (:text |:font-weight) (:type :leaf)
|j $ {} (:at 1585994734506) (:by |B1y7Rc-Zz) (:id |nDHKIfO2c0) (:text |300) (:type :leaf)
|v $ {} (:at 1589819227624) (:by |B1y7Rc-Zz) (:id |CPDQOoPEv) (:type :expr)
:data $ {}
|D $ {} (:at 1589819228358) (:by |B1y7Rc-Zz) (:id |fEDAYRhF1N) (:text |if) (:type :leaf)
|L $ {} (:at 1589819228999) (:by |B1y7Rc-Zz) (:id |lDiD8Oq_He) (:type :expr)
:data $ {}
|T $ {} (:at 1589819234353) (:by |B1y7Rc-Zz) (:id |95YhHJVQmY) (:text |:logged-in?) (:type :leaf)
|j $ {} (:at 1589819235125) (:by |B1y7Rc-Zz) (:id |3G5IJNYwsl) (:text |store) (:type :leaf)
|N $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |If4ba8oJds) (:type :expr)
:data $ {}
|T $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |yonuetkFBh) (:text |container) (:type :leaf)
|j $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |BG9-g6Z1DP) (:type :expr)
:data $ {}
|T $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |JkAiNMvuT9) (:text |{}) (:type :leaf)
|r $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |yOTctHOLFu) (:type :expr)
:data $ {}
|T $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |X37kF19qBu) (:text |comp-workspace) (:type :leaf)
|j $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |U4fTS-Lrij) (:type :expr)
:data $ {}
|T $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |-uJ_6zILon) (:text |>>) (:type :leaf)
|j $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |vTIdIBq75F) (:text |states) (:type :leaf)
|r $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |6kOC7JcF7b) (:text |:workspace) (:type :leaf)
|r $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |tCHv7QUKoh) (:type :expr)
:data $ {}
|T $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |9GKQEviNYz) (:text |:points) (:type :leaf)
|j $ {} (:at 1589819493729) (:by |B1y7Rc-Zz) (:id |TbAhpZ4Z3L) (:text |store) (:type :leaf)
|P $ {} (:at 1589819238009) (:by |B1y7Rc-Zz) (:id |c0OX6nJePr) (:type :expr)
:data $ {}
|T $ {} (:at 1589819243708) (:by |B1y7Rc-Zz) (:id |c0OX6nJePrleaf) (:text |comp-signin) (:type :leaf)
|j $ {} (:at 1589819304774) (:by |B1y7Rc-Zz) (:id |7jgWWFRF3L) (:type :expr)
:data $ {}
|T $ {} (:at 1589819305261) (:by |B1y7Rc-Zz) (:id |eW6rxRvC0) (:text |>>) (:type :leaf)
|j $ {} (:at 1589819306108) (:by |B1y7Rc-Zz) (:id |Je1Sggtiqv) (:text |states) (:type :leaf)
|r $ {} (:at 1589819308543) (:by |B1y7Rc-Zz) (:id |C942CiO9kr) (:text |:signin) (:type :leaf)
|x $ {} (:at 1589820449876) (:by |B1y7Rc-Zz) (:id |O8GvTFmTaa) (:type :expr)
:data $ {}
|D $ {} (:at 1589820450575) (:by |B1y7Rc-Zz) (:id |ooe5okmU_) (:text |if) (:type :leaf)
|L $ {} (:at 1589820450908) (:by |B1y7Rc-Zz) (:id |qJf-Nqqbok) (:type :expr)
:data $ {}
|T $ {} (:at 1589820451894) (:by |B1y7Rc-Zz) (:id |d2AmLOsGb3) (:text |some?) (:type :leaf)
|j $ {} (:at 1589820452291) (:by |B1y7Rc-Zz) (:id |Se0ZlaeRh4) (:type :expr)
:data $ {}
|T $ {} (:at 1589820453367) (:by |B1y7Rc-Zz) (:id |hHZXPpcAP) (:text |:user) (:type :leaf)
|j $ {} (:at 1589820455123) (:by |B1y7Rc-Zz) (:id |DFHdTA1_1L) (:text |store) (:type :leaf)
|T $ {} (:at 1589820299072) (:by |B1y7Rc-Zz) (:id |oKvdGjaRr) (:type :expr)
:data $ {}
|T $ {} (:at 1589820305291) (:by |B1y7Rc-Zz) (:id |oKvdGjaRrleaf) (:text |comp-profile) (:type :leaf)
|j $ {} (:at 1589820445390) (:by |B1y7Rc-Zz) (:id |wC0SVfbwr) (:type :expr)
:data $ {}
|T $ {} (:at 1589820446824) (:by |B1y7Rc-Zz) (:id |w19H7GcdJa) (:text |:user) (:type :leaf)
|j $ {} (:at 1589820448700) (:by |B1y7Rc-Zz) (:id |aUirQ6svHu) (:text |store) (:type :leaf)
|y $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |lRzR_kZLY0) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |tiyhmlW1Pw) (:text |comp-messages) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |vFBOluxlSM) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |rfijrUoNBD) (:text |{}) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |BY8l9nAru_) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |ErxjYfut5c) (:text |:messages) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |QL_NE93i53) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |OHEG4PI-KW) (:text |or) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |6z77dI9rJ9) (:type :expr)
:data $ {}
|T $ {} (:at 1629891823676) (:by |B1y7Rc-Zz) (:id |_KK9JowBRc) (:text |->) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |MTINmreHcz) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |JxFyBCFwgQ) (:text |:messages) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |vdlhivCpmh) (:text |session) (:type :leaf)
|r $ {} (:at 1629891824888) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891824599) (:by |B1y7Rc-Zz) (:text |.to-list) (:type :leaf)
|v $ {} (:at 1629891829824) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1629891832927) (:by |B1y7Rc-Zz) (:text |map) (:type :leaf)
|j $ {} (:at 1629891833828) (:by |B1y7Rc-Zz) (:text |last) (:type :leaf)
|r $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |rK4t4Tf8XZ) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |iZvceTwrizY) (:text |[]) (:type :leaf)
|n $ {} (:at 1632898036472) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632898041370) (:by |B1y7Rc-Zz) (:text |:position) (:type :leaf)
|j $ {} (:at 1632898041926) (:by |B1y7Rc-Zz) (:type :expr)
:data $ {}
|T $ {} (:at 1632898042125) (:by |B1y7Rc-Zz) (:text |[]) (:type :leaf)
|j $ {} (:at 1632898117608) (:by |B1y7Rc-Zz) (:text |200) (:type :leaf)
|r $ {} (:at 1632898123522) (:by |B1y7Rc-Zz) (:text |-200) (:type :leaf)
|r $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |icNGhzPmCAT) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |bD9V0I_fNd5) (:text |:on-pointertap) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |hiHgvukTSrw) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |CY7FlSPrPPO) (:text |fn) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |fpASJKFjIid) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |Mw7y-Vbc-9L) (:text |message) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |DIER2ba-F9X) (:text |d!) (:type :leaf)
|r $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |2EZJOV6GLem) (:type :expr)
:data $ {}
|T $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |BMrRXpOv8dJ) (:text |d!) (:type :leaf)
|j $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |SbzoG63KpJt) (:text |:session/remove-message) (:type :leaf)
|r $ {} (:at 1589820694889) (:by |B1y7Rc-Zz) (:id |0z7UNDdXvj6) (:text |message) (:type :leaf)
:ns $ {} (:at 1500541010211) (:by nil) (:id |B15IxeRH-) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |SJxc8xl0HZ) (:text |ns) (:type :leaf)
|j $ {} (:at 1500541010211) (:by |root) (:id |SkZcLgxAB-) (:text |app.comp.container) (:type :leaf)
|v $ {} (:at 1500541010211) (:by nil) (:id |SkCq8lx0rb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |HyJlqLelRBW) (:text |:require) (:type :leaf)
|r $ {} (:at 1500541010211) (:by nil) (:id |ryvl5IllRSb) (:type :expr)
:data $ {}
|T $ {} (:at 1500541010211) (:by |root) (:id |B1dg5UeeRSW) (:text |[]) (:type :leaf)
|j $ {} (:at 1516547378489) (:by |root) (:id |H1Fgc8egCSW) (:text |respo-ui.core) (:type :leaf)
|r $ {} (:at 1500541010211) (:by |root) (:id |Hy9x5IeeASW) (:text |:as) (:type :leaf)
|v $ {} (:at 1500541010211) (:by |root) (:id |rkoe5LxlCBW) (:text |ui) (:type :leaf)
|xS $ {} (:at 1585988259890) (:by |B1y7Rc-Zz) (:id |KRNPPDzfzu) (:type :expr)
:data $ {}
|T $ {} (:at 1585988260189) (:by |B1y7Rc-Zz) (:id |KRNPPDzfzuleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1585988263920) (:by |B1y7Rc-Zz) (:id |48EszT0ply) (:text |phlox.core) (:type :leaf)
|r $ {} (:at 1585988265034) (:by |B1y7Rc-Zz) (:id |fXaU65_9Cq) (:text |:refer) (:type :leaf)
|v $ {} (:at 1585988265191) (:by |B1y7Rc-Zz) (:id |sFH3UCLyds) (:type :expr)
:data $ {}
|T $ {} (:at 1585988265462) (:by |B1y7Rc-Zz) (:id |n-mXLbC0E) (:text |[]) (:type :leaf)
|b $ {} (:at 1585988569906) (:by |B1y7Rc-Zz) (:id |iNPd3XiQjo) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1585988266695) (:by |B1y7Rc-Zz) (:id |xkox6PFtID) (:text |container) (:type :leaf)
|n $ {} (:at 1585991014483) (:by |B1y7Rc-Zz) (:id |BQjDaJgT4-) (:text |>>) (:type :leaf)
|r $ {} (:at 1585988753603) (:by |B1y7Rc-Zz) (:id |1UjxYcVRM) (:text |hslx) (:type :leaf)
|v $ {} (:at 1585988758654) (:by |B1y7Rc-Zz) (:id |toaKyyj-1) (:text |text) (:type :leaf)
|x $ {} (:at 1585988762449) (:by |B1y7Rc-Zz) (:id |gB1Hq-PmO) (:text |rect) (:type :leaf)
|y $ {} (:at 1585988802327) (:by |B1y7Rc-Zz) (:id |ZqaBtXGfB) (:text |circle) (:type :leaf)
|yy $ {} (:at 1521911479054) (:by |root) (:id |BygkTL-EqM) (:type :expr)
:data $ {}
|T $ {} (:at 1521911480104) (:by |root) (:id |BygkTL-EqMleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1527789167264) (:by |root) (:id |SJMe6IZ45z) (:text |app.config) (:type :leaf)
|r $ {} (:at 1521911483589) (:by |root) (:id |B1GaI-V5M) (:text |:refer) (:type :leaf)
|v $ {} (:at 1521911483778) (:by |root) (:id |BJb4T8ZNcM) (:type :expr)
:data $ {}
|T $ {} (:at 1521911483935) (:by |root) (:id |HJeEpLbVqz) (:text |[]) (:type :leaf)
|j $ {} (:at 1521911485489) (:by |root) (:id |rJ4V6Lb49f) (:text |dev?) (:type :leaf)
|yyj $ {} (:at 1529230793085) (:by |root) (:id |B1Z0rnQWm) (:type :expr)
:data $ {}
|T $ {} (:at 1529230793389) (:by |root) (:id |B1Z0rnQWmleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1529230796079) (:by |root) (:id |rJGbRHh7W7) (:text |app.schema) (:type :leaf)
|r $ {} (:at 1529230796499) (:by |root) (:id |r1ZEAH2m-m) (:text |:as) (:type :leaf)
|v $ {} (:at 1529230797248) (:by |root) (:id |ByBAH37Zm) (:text |schema) (:type :leaf)
|yyr $ {} (:at 1535564714854) (:by |B1y7Rc-Zz) (:id |62fxkh4Uk4) (:type :expr)
:data $ {}
|T $ {} (:at 1535564716963) (:by |B1y7Rc-Zz) (:id |62fxkh4Uk4leaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1535564718729) (:by |B1y7Rc-Zz) (:id |9xYrE_G3ic) (:text |app.config) (:type :leaf)
|r $ {} (:at 1535564719687) (:by |B1y7Rc-Zz) (:id |ccmXGZ69Z1) (:text |:as) (:type :leaf)
|v $ {} (:at 1535564721387) (:by |B1y7Rc-Zz) (:id |agsiaMgXOQ) (:text |config) (:type :leaf)
|yyv $ {} (:at 1585989416710) (:by |B1y7Rc-Zz) (:id |iHkdtPTPPC) (:type :expr)
:data $ {}
|T $ {} (:at 1585989419844) (:by |B1y7Rc-Zz) (:id |iHkdtPTPPCleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1585989423613) (:by |B1y7Rc-Zz) (:id |Mk6ZBr6RPg) (:text |app.comp.workspace) (:type :leaf)
|r $ {} (:at 1585989427188) (:by |B1y7Rc-Zz) (:id |udMc2-bE4n) (:text |:refer) (:type :leaf)
|v $ {} (:at 1585989427330) (:by |B1y7Rc-Zz) (:id |I8MovcdpOh) (:type :expr)
:data $ {}
|T $ {} (:at 1585989427556) (:by |B1y7Rc-Zz) (:id |9v11X3cLkn) (:text |[]) (:type :leaf)
|j $ {} (:at 1585989431172) (:by |B1y7Rc-Zz) (:id |I6FEjTrCVx) (:text |comp-workspace) (:type :leaf)
|yyx $ {} (:at 1586016982406) (:by |B1y7Rc-Zz) (:id |gNq_sxHrZx) (:type :expr)
:data $ {}
|T $ {} (:at 1586016982406) (:by |B1y7Rc-Zz) (:id |erhNVmDafl) (:text |[]) (:type :leaf)
|j $ {} (:at 1586016982406) (:by |B1y7Rc-Zz) (:id |IWru8F9RR0) (:text |app.comp.reel) (:type :leaf)
|r $ {} (:at 1586016982406) (:by |B1y7Rc-Zz) (:id |Cz2e9WDGAM) (:text |:refer) (:type :leaf)
|v $ {} (:at 1586016982406) (:by |B1y7Rc-Zz) (:id |xcAe7pPVfi) (:type :expr)
:data $ {}
|T $ {} (:at 1586016982406) (:by |B1y7Rc-Zz) (:id |k-98Z87tzV) (:text |[]) (:type :leaf)
|j $ {} (:at 1586016982406) (:by |B1y7Rc-Zz) (:id |K3Dt11ma_K) (:text |comp-reel) (:type :leaf)
|r $ {} (:at 1586017202280) (:by |B1y7Rc-Zz) (:id |Tp0WA5LZZE) (:text |comp-status) (:type :leaf)
|yyy $ {} (:at 1589819284442) (:by |B1y7Rc-Zz) (:id |jOXB6-LqQ) (:type :expr)
:data $ {}
|T $ {} (:at 1589819285905) (:by |B1y7Rc-Zz) (:id |jOXB6-LqQleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1589819290294) (:by |B1y7Rc-Zz) (:id |x_ayV169Eq) (:text |app.comp.signin) (:type :leaf)
|r $ {} (:at 1589819291512) (:by |B1y7Rc-Zz) (:id |p_NbjXaNle) (:text |:refer) (:type :leaf)
|v $ {} (:at 1589819291706) (:by |B1y7Rc-Zz) (:id |fqzNOSxYUo) (:type :expr)
:data $ {}
|T $ {} (:at 1589819291900) (:by |B1y7Rc-Zz) (:id |33B85UHwtx) (:text |[]) (:type :leaf)
|j $ {} (:at 1589819294408) (:by |B1y7Rc-Zz) (:id |EQos7TRlva) (:text |comp-signin) (:type :leaf)
|yyyT $ {} (:at 1589820114675) (:by |B1y7Rc-Zz) (:id |K5AqD16lDN) (:type :expr)
:data $ {}
|T $ {} (:at 1589820114675) (:by |B1y7Rc-Zz) (:id |Aq3HlQqxxM) (:text |[]) (:type :leaf)
|j $ {} (:at 1589820114675) (:by |B1y7Rc-Zz) (:id |iZk0TrhOXu) (:text |phlox.comp.messages) (:type :leaf)
|r $ {} (:at 1589820114675) (:by |B1y7Rc-Zz) (:id |mQiIisywa5) (:text |:refer) (:type :leaf)
|v $ {} (:at 1589820114675) (:by |B1y7Rc-Zz) (:id |PEV-Uy5-vf) (:type :expr)
:data $ {}
|T $ {} (:at 1589820114675) (:by |B1y7Rc-Zz) (:id |55K66dPtuA) (:text |[]) (:type :leaf)
|j $ {} (:at 1589820114675) (:by |B1y7Rc-Zz) (:id |4xulPjs7Bz) (:text |comp-messages) (:type :leaf)
|yyyj $ {} (:at 1589820335919) (:by |B1y7Rc-Zz) (:id |hUPvtdOJZx) (:type :expr)
:data $ {}
|T $ {} (:at 1589820336978) (:by |B1y7Rc-Zz) (:id |hUPvtdOJZxleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1589820340542) (:by |B1y7Rc-Zz) (:id |x6-mSChwi) (:text |app.comp.profile) (:type :leaf)
|r $ {} (:at 1589820341925) (:by |B1y7Rc-Zz) (:id |Q5w1fIxTdq) (:text |:refer) (:type :leaf)
|v $ {} (:at 1589820343333) (:by |B1y7Rc-Zz) (:id |3dhjUFPZJe) (:type :expr)
:data $ {}
|T $ {} (:at 1589820343575) (:by |B1y7Rc-Zz) (:id |SBVaDyLkm) (:text |[]) (:type :leaf)
|j $ {} (:at 1589820348489) (:by |B1y7Rc-Zz) (:id |mKcZPzmaVM) (:text |comp-profile) (:type :leaf)
:proc $ {} (:at 1500541010211) (:by nil) (:id |S1om9LgxCBZ) (:type :expr)
:data $ {}
|app.comp.profile $ {}
:configs $ {}
:defs $ {}
|comp-profile $ {} (:at 1589820349631) (:by |B1y7Rc-Zz) (:id |uHbM-giYFv) (:type :expr)
:data $ {}
|T $ {} (:at 1589820351962) (:by |B1y7Rc-Zz) (:id |op3Gkt_7W-) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1589820349631) (:by |B1y7Rc-Zz) (:id |t2CqSHu_N6) (:text |comp-profile) (:type :leaf)
|r $ {} (:at 1589820349631) (:by |B1y7Rc-Zz) (:id |nR3jUv4rax) (:type :expr)
:data $ {}
|T $ {} (:at 1589820358128) (:by |B1y7Rc-Zz) (:id |WtsOfV2x8) (:text |user) (:type :leaf)
|v $ {} (:at 1589820358705) (:by |B1y7Rc-Zz) (:id |x4Hl5hd9xV) (:type :expr)
:data $ {}
|T $ {} (:at 1589820362091) (:by |B1y7Rc-Zz) (:id |x4Hl5hd9xVleaf) (:text |container) (:type :leaf)
|j $ {} (:at 1589820362340) (:by |B1y7Rc-Zz) (:id |ZLjX9GlfU7) (:type :expr)
:data $ {}
|T $ {} (:at 1589820362716) (:by |B1y7Rc-Zz) (:id |cgsrj2602a) (:text |{}) (:type :leaf)
|r $ {} (:at 1589820363508) (:by |B1y7Rc-Zz) (:id |Fq2XfZj6Hz) (:type :expr)
:data $ {}
|T $ {} (:at 1589820374784) (:by |B1y7Rc-Zz) (:id |Fq2XfZj6Hzleaf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1589820386490) (:by |B1y7Rc-Zz) (:id |zLW5D5VMNf) (:type :expr)
:data $ {}
|T $ {} (:at 1589820386895) (:by |B1y7Rc-Zz) (:id |AvMJ4Qsg4) (:text |{}) (:type :leaf)
|b $ {} (:at 1589820399123) (:by |B1y7Rc-Zz) (:id |gy-GEvGZ5) (:type :expr)
:data $ {}
|T $ {} (:at 1589820401273) (:by |B1y7Rc-Zz) (:id |gy-GEvGZ5leaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1589820403793) (:by |B1y7Rc-Zz) (:id |9lYsF9piJ) (:type :expr)
:data $ {}
|T $ {} (:at 1589820404747) (:by |B1y7Rc-Zz) (:id |-1bN74YwD9) (:text |[]) (:type :leaf)
|j $ {} (:at 1589820406142) (:by |B1y7Rc-Zz) (:id |k7ywBDkAl) (:type :expr)
:data $ {}
|T $ {} (:at 1589820407917) (:by |B1y7Rc-Zz) (:id |JstG_4FoU) (:text |-) (:type :leaf)
|j $ {} (:at 1589820413405) (:by |B1y7Rc-Zz) (:id |hsktKHQPD) (:text |js/window.innerWidth) (:type :leaf)
|r $ {} (:at 1589820562376) (:by |B1y7Rc-Zz) (:id |Vhj-R_amj) (:text |90) (:type :leaf)
|r $ {} (:at 1589820437538) (:by |B1y7Rc-Zz) (:id |ZJXyH3nBr) (:text |16) (:type :leaf)
|f $ {} (:at 1589820426608) (:by |B1y7Rc-Zz) (:id |YgqSdG0qp6) (:type :expr)
:data $ {}
|T $ {} (:at 1589820427316) (:by |B1y7Rc-Zz) (:id |YgqSdG0qp6leaf) (:text |:align-right?) (:type :leaf)
|j $ {} (:at 1589820429451) (:by |B1y7Rc-Zz) (:id |M21ONbU-KX) (:text |true) (:type :leaf)
|j $ {} (:at 1589820387424) (:by |B1y7Rc-Zz) (:id |mdQ_ujKHvj) (:type :expr)
:data $ {}
|T $ {} (:at 1589820388644) (:by |B1y7Rc-Zz) (:id |A_IvuJm7J) (:text |:text) (:type :leaf)
|j $ {} (:at 1589820392081) (:by |B1y7Rc-Zz) (:id |_LXeOz0UK) (:type :expr)
:data $ {}
|T $ {} (:at 1589820393201) (:by |B1y7Rc-Zz) (:id |PuCe3cQG9P) (:text |:name) (:type :leaf)
|j $ {} (:at 1589820393725) (:by |B1y7Rc-Zz) (:id |uDBPPrygIr) (:text |user) (:type :leaf)
|v $ {} (:at 1589820363508) (:by |B1y7Rc-Zz) (:id |l3_JeWKRQ) (:type :expr)
:data $ {}
|T $ {} (:at 1589820374784) (:by |B1y7Rc-Zz) (:id |Fq2XfZj6Hzleaf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1589820386490) (:by |B1y7Rc-Zz) (:id |zLW5D5VMNf) (:type :expr)
:data $ {}
|T $ {} (:at 1589820386895) (:by |B1y7Rc-Zz) (:id |AvMJ4Qsg4) (:text |{}) (:type :leaf)
|b $ {} (:at 1589820399123) (:by |B1y7Rc-Zz) (:id |gy-GEvGZ5) (:type :expr)
:data $ {}
|T $ {} (:at 1589820401273) (:by |B1y7Rc-Zz) (:id |gy-GEvGZ5leaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1589820403793) (:by |B1y7Rc-Zz) (:id |9lYsF9piJ) (:type :expr)