-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
9204 lines (9203 loc) · 840 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
{}
:users $ {}
|B1y7Rc-Zz $ {} (:id |B1y7Rc-Zz) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
|L8cneq2r- $ {} (:name |jiang) (:id |L8cneq2r-) (:nickname |jiang) (:avatar nil) (:password |e3b56a299bfab49b5e64c8a01fe3aca9) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |app)
:root $ {} (:ns |main) (:def |main!)
:files $ {}
|app.comp.code-reader $ {}
:ns $ {} (:type :expr) (:by |root) (:at 1515430385777) (:id |Hygqgzm-Ef)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430385777) (:text |ns) (:id |BJ-9lMQb4z)
|j $ {} (:type :leaf) (:by |root) (:at 1515430385777) (:text |app.comp.code-reader) (:id |B1G5eGQWNG)
|r $ {} (:type :expr) (:by |root) (:at 1515059054723) (:id |BkeEfzX-VG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |:require) (:id |HyEvOwOiQM)
|j $ {} (:type :expr) (:by |root) (:at 1515059054723) (:id |r1Sw_DujQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |[]) (:id |HJLwOwdimz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |hsl.core) (:id |SkvP_wujQG)
|r $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |:refer) (:id |SkOD_vusmz)
|v $ {} (:type :expr) (:by |root) (:at 1515059054723) (:id |SJKD_vOj7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |[]) (:id |rkqPdvOiQf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |hsl) (:id |ryowdPuoXz)
|r $ {} (:type :expr) (:by |root) (:at 1515059054723) (:id |By2DODOomM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |[]) (:id |r16DOwdi7M)
|j $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |respo-ui.core) (:id |ByCvdDuoQG)
|r $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |:as) (:id |rJ1xDdv_o7G)
|v $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |ui) (:id |HJggwuvusmf)
|v $ {} (:type :expr) (:by |root) (:at 1515059054723) (:id |Sybevuv_oQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |[]) (:id |ryzlPODdjXM)
|j $ {} (:type :leaf) (:by |root) (:at 1542469754075) (:text |respo.core) (:id |r1XxPdvusmM)
|r $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |:refer) (:id |S14eDdDdsmf)
|v $ {} (:type :expr) (:by |root) (:at 1515059054723) (:id |ByHgDOPOiXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |[]) (:id |HyLxDOPOi7M)
|yr $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |span) (:id |H1RxDOP_j7G)
|yT $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |button) (:id |HJnew_PdsQz)
|p $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1591808076096) (:text |>>) (:id |c1yh132tI)
|j $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |defcomp) (:id |rkwgP_P_i7G)
|x $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |<>) (:id |ry9xDOw_j7f)
|v $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |list->) (:id |B1YeD_POi7M)
|yj $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |textarea) (:id |SJ6lv_w_jmM)
|y $ {} (:type :leaf) (:by |root) (:at 1515059054723) (:text |div) (:id |HysgwOwOoXf)
|y $ {} (:type :expr) (:by |root) (:at 1515430450451) (:id |rJ-cVzXW4f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430451068) (:text |[]) (:id |rJ-cVzXW4fleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1515430452417) (:text |app.style) (:id |rkZs4f7bNM)
|r $ {} (:type :leaf) (:by |root) (:at 1515430453529) (:text |:as) (:id |ryU3NGQWVM)
|v $ {} (:type :leaf) (:by |root) (:at 1515430454707) (:text |style) (:id |r1xAEMmbVz)
:defs $ {}
|comp-code-reader $ {} (:type :expr) (:by |root) (:at 1515430391330) (:id |HygJbGXW4f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430394098) (:text |defcomp) (:id |Skbk-MQZEz)
|j $ {} (:type :leaf) (:by |root) (:at 1515430391330) (:text |comp-code-reader) (:id |HkzJZGm-NG)
|r $ {} (:type :expr) (:by |root) (:at 1515430391330) (:id |HkXyWG7bEz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430422551) (:text |tree) (:id |S1b3zfX-Ez)
|v $ {} (:type :expr) (:by |root) (:at 1515430423251) (:id |rybkQGXZNf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430427264) (:text |div) (:id |rybkQGXZNfleaf)
|j $ {} (:type :expr) (:by |root) (:at 1515430427467) (:id |SJrXmfmbNM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430427785) (:text |{}) (:id |SJVmXzmbVM)
|r $ {} (:type :expr) (:by |root) (:at 1515430428554) (:id |rkS7zXW4M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430430685) (:text |textarea) (:id |rkS7zXW4Mleaf)
|j $ {} (:type :expr) (:by |root) (:at 1515430431349) (:id |HkMDmM7bEf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430431752) (:text |{}) (:id |HyZDmMm-Ez)
|b $ {} (:type :expr) (:by |root) (:at 1515430441150) (:id |S1Z4zX-VG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430442856) (:text |:style) (:id |S1Z4zX-VGleaf)
|j $ {} (:type :expr) (:by |root) (:at 1515430487845) (:id |H1evGQWVG)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1515430488826) (:text |merge) (:id |SyxxPz7bNM)
|T $ {} (:type :leaf) (:by |root) (:at 1515430447863) (:text |style/textarea) (:id |HyMmNfmZVz)
|j $ {} (:type :expr) (:by |root) (:at 1515430489448) (:id |ByVZPG7-Nf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430491542) (:text |{}) (:id |rkQwfQZ4G)
|j $ {} (:type :expr) (:by |root) (:at 1515430491839) (:id |HyWEDMmbNf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430492590) (:text |:width) (:id |BJx4PMm-EG)
|j $ {} (:type :leaf) (:by |root) (:at 1515430502721) (:text |800) (:id |HJLDG7W4M)
|r $ {} (:type :expr) (:by |root) (:at 1515430497137) (:id |rJxtPMXZEM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430498442) (:text |:height) (:id |rJxtPMXZEMleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1515430499410) (:text |400) (:id |HkovGm-Nz)
|v $ {} (:type :expr) (:by |root) (:at 1515430509211) (:id |H1gB_GXZ4f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430513669) (:text |:font-family) (:id |H1gB_GXZ4fleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1515430516221) (:text |style/mono) (:id |Hyl5_f7ZVz)
|j $ {} (:type :expr) (:by |root) (:at 1515430431935) (:id |rkfuXGm-VG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430432801) (:text |:value) (:id |rkZuQMXZ4z)
|j $ {} (:type :expr) (:by |root) (:at 1515430433171) (:id |SybK7GQWVG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515430436682) (:text |pr-str) (:id |rygtQfXbVG)
|j $ {} (:type :leaf) (:by |root) (:at 1515430437787) (:text |tree) (:id |H1WaQzQZEM)
:proc $ {} (:type :expr) (:by |root) (:at 1515430385777) (:id |Hk75xGXZEz) (:data $ {})
|app.updater.element $ {}
:ns $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1e0P5ujXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |ns) (:id |r1-RPqusXG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |app.updater.element) (:id |ByM0v5us7z)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BkmAvqOo7z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:require) (:id |SJVRDqOiQM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryrAw9uoXz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |rkUAvcdsXf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |bisection-key.util) (:id |ByvRP9ujmz)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:refer) (:id |ryuCwqOsQz)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |B1tRD5ui7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |Hy90DcujQM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |key-append) (:id |SkjRvc_sXf)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |key-prepend) (:id |r1hRvc_smz)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |key-after) (:id |HypCP5Oomz)
|x $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |key-before) (:id |ByR0wqOoQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rk1gAw9OsQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |Syxx0Pcdi7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515060671241) (:text |app.schema) (:id |r1ZxRwcuiXM)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:as) (:id |rkGlRDqds7z)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |schema) (:id |rymgAD5domf)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJ4eAPcdiXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |SJrgCP5OsQG)
|j $ {} (:type :leaf) (:by |root) (:at 1515060673479) (:text |app.util) (:id |HyLxAwquiQf)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:refer) (:id |rJDgAP9domf)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1ueCPqusXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |H1FlAw9dsXM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |H1qe0D9dj7f)
:defs $ {}
|change-style $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJ3eCD5ds7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |rJ6eAPcOo7z)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |change-style) (:id |HyCeCDq_imM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HyybAwc_iQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977269984) (:text |db) (:id |HkgZ0DcdsXz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |By-WRDqOj7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |HJMbCwcusQG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |k) (:id |rJm-Av5_sXf)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |v) (:id |H14ZAv5_s7f)
|r $ {} (:type :leaf) (:by |root) (:at 1521977273175) (:text |sid) (:id |rkxJpvbB5z)
|v $ {} (:type :leaf) (:by |root) (:at 1521977275270) (:text |op-id) (:id |BkHbTPZr5z)
|x $ {} (:type :leaf) (:by |root) (:at 1521977276102) (:text |op-time) (:id |ryHm6v-S5M)
|v $ {} (:type :expr) (:by |root) (:at 1521977277196) (:id |HJZSTvbHcM)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521977277862) (:text |let) (:id |HyMSpwZBqz)
|L $ {} (:type :expr) (:by |root) (:at 1521977278187) (:id |HJQITDWScf)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1PTwbr5M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BkBZAP9OsmM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |H1IbRw9_i7M)
|j $ {} (:type :leaf) (:by |root) (:at 1521977287808) (:text |db) (:id |BJD-CP9Oomf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1_WCPqdsQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |concat) (:id |HJYWRvq_iXf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJ5Z0v5uoXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |list) (:id |rJiW0Pqdj7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |SJ2b0Pc_i7f)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Sy6WAw5uoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |BkC-CP5_jmM)
|j $ {} (:type :leaf) (:by |root) (:at 1521977291073) (:text |focus) (:id |ByxzCP-S9M)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryMMAvcOoQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |list) (:id |SJQzRD9djXG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:styles) (:id |S1NGAwcuj7f)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |k) (:id |rkHGCwcdimG)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |v) (:id |r1IMRPq_i7M)
|after-item $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SkDMAPcOjmG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |r1uz0v9OsXG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |after-item) (:id |BJYM0v9ujXz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Sy5GRv9_sXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977066032) (:text |db) (:id |SysfAPcds7z)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |Sk3zRvqdomf)
|r $ {} (:type :leaf) (:by |root) (:at 1521977067304) (:text |sid) (:id |HJQxDZHcG)
|v $ {} (:type :leaf) (:by |root) (:at 1521977068180) (:text |op-id) (:id |SyXXewbBcf)
|x $ {} (:type :leaf) (:by |root) (:at 1521977069030) (:text |op-time) (:id |B1EEgv-Bqf)
|v $ {} (:type :expr) (:by |root) (:at 1521977084318) (:id |rye4WwbB9M)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521977084971) (:text |let) (:id |BkBZv-rcM)
|L $ {} (:type :expr) (:by |root) (:at 1521977085459) (:id |SkNr-wbSqf)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1edWDbH9z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Bkaz0w9OoQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |if) (:id |Hy0fRP5uo7G)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1kXAD9uiQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |empty?) (:id |H1gmCvqui7f)
|j $ {} (:type :leaf) (:by |root) (:at 1521977093175) (:text |focus) (:id |BkZ5ZDZrqf)
|r $ {} (:type :leaf) (:by |root) (:at 1521977099378) (:text |db) (:id |r147RP9_omz)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1S7Cw5djmz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |let) (:id |HyIQAD9OiQz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BkwmADqdjQM)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HkdmCvc_jmf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |rktQ0D5djXz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hkqm0vcOjmf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |Hys7CD9Oo7M)
|j $ {} (:type :leaf) (:by |root) (:at 1521977095008) (:text |db) (:id |rknQRPcds7G)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1M4CD9_s7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |base-focus) (:id |rymVCPcuiQz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJ4ERw5di7z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |pop) (:id |HkB4Awq_smG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BkLEAwcdjXf)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJw4AvqOoXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |SkdNRwcusmM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1tNCvq_iQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |get-in) (:id |rJqN0DcOiQM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |HJj40vc_sXz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SynERP5uoXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |SkT40D5OjmM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |base-focus) (:id |H1RNCw9doQM)
|x $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ry1HAP9_oXz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |r1eSAD5Oomf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ry-H0v5Oimz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |key-after) (:id |SyfHAwqdi7f)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H17rAPcusXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:children) (:id |BJNrRw5_smM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |ryBB0vcdsQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SyLSAPcOiXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |last) (:id |BJPBAPq_sXf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |rydHRv5ds7M)
|y $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SytSAP5uiQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-element) (:id |BJ5HAwcOimM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |schema/element) (:id |BJjBCP5ujmG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Sk3SAw9Oo7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |->) (:id |S16SCwq_omG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977100819) (:text |db) (:id |BkCSCP5_imz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryyUAvqOo7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update-in) (:id |rJlLADcOoQM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1-L0vcujQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |cons) (:id |Bkz80wc_iXM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |H17U0P9_oQM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HyEIAvcuiXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |HySIRwqdo7f)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |base-focus) (:id |rkU8CDqujQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1vLCw9_omf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |fn) (:id |Sku8RPq_i7M)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |B1tLCD9dsXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |B1qU0D5djQf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryo8Aw5uj7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |SJ38CvcdsmG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |Sk6LRwcOiXf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1CL0w9doXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |H1JvAwq_s7z)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:children) (:id |BkxDAv9OjXz)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |rJZw0P9dimf)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-element) (:id |SyGvRwqOjXz)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJQDCvc_imM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update) (:id |HkEvCwqOimM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:focus) (:id |S1HvCD5ujXz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1LvAv5di7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |fn) (:id |rywwAwq_smM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1_vCw9us7z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |HyKwAv5do7M)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rk9wCv5uomM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |conj) (:id |SJjvCw5Os7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |base-focus) (:id |Bk2v0v9doQM)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |HkawRvqOimz)
|set-styles $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkRwRP9_sQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |Hk1ORPcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |set-styles) (:id |Sylu0w5uoQf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hk-_CP9Osmf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977229764) (:text |db) (:id |HyzO0Dq_i7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |SJXdCw5usXG)
|r $ {} (:type :leaf) (:by |root) (:at 1521977230735) (:text |sid) (:id |H1bI5Dbrcf)
|v $ {} (:type :leaf) (:by |root) (:at 1521977232010) (:text |op-id) (:id |r1ZvcDbBcz)
|x $ {} (:type :leaf) (:by |root) (:at 1521977232889) (:text |op-time) (:id |BkGd9DWH9M)
|v $ {} (:type :expr) (:by |root) (:at 1521977221929) (:id |rkx0YDWrcf)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521977222585) (:text |let) (:id |HkZCtvZH9G)
|L $ {} (:type :expr) (:by |root) (:at 1521977222835) (:id |SJZycDZBqM)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJxm9vZBqG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ByNdCvqusmG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |HySdRvcusmG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977241685) (:text |db) (:id |Hy8uRv9OsQM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJwu0D5ds7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |flatten) (:id |B1_OAP5dsmM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJKOAP9us7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |list) (:id |HkcuCD5Oj7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |Hksu0wcOoXf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Bk2u0w9OsXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |H1T_0P9_jQM)
|j $ {} (:type :leaf) (:by |root) (:at 1521977235783) (:text |focus) (:id |HybocvZrqf)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:styles) (:id |SJ-KCwcuoXM)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |HJfY0vq_smf)
|append-item $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1XtAPqdoQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |H14FAPq_iQM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |append-item) (:id |SyrtRw9OoXz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkIYCw5Oi7z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521976993183) (:text |db) (:id |rywYCDqujXf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |SJOF0vqOs7G)
|r $ {} (:type :leaf) (:by |root) (:at 1521977014810) (:text |sid) (:id |BkxRnLWScz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977016540) (:text |op-id) (:id |rkGJ6LbrqG)
|x $ {} (:type :leaf) (:by |root) (:at 1521977017400) (:text |op-time) (:id |SkgWaUZScM)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJFFCPquoXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |let) (:id |H1qYCD9usXz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1otAP5_s7G)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BknYCDqOsQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |ryTKRPcusmf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rJRYAP9_omG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |Bkk9CDq_oQM)
|j $ {} (:type :leaf) (:by |root) (:at 1521976995027) (:text |db) (:id |S1l9CP9Ojmz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1b9Rvc_s7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |SyfqAvcuoXz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Bkm50Pq_sQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521976984870) (:text |get-in) (:id |HyV5Cvquo7M)
|j $ {} (:type :leaf) (:by |root) (:at 1521976996112) (:text |db) (:id |HkScAwcdiXf)
|r $ {} (:type :expr) (:by |root) (:at 1521977002976) (:id |rk-73LZrqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977003428) (:text |[]) (:id |rkQnU-B5M)
|j $ {} (:type :leaf) (:by |root) (:at 1521977008471) (:text |:sessions) (:id |HkShUZHqG)
|r $ {} (:type :leaf) (:by |root) (:at 1521977011590) (:text |sid) (:id |SyKnLZHcf)
|v $ {} (:type :leaf) (:by |root) (:at 1521977020711) (:text |:focus) (:id |HJlQTIZSqz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hk89CP9OsXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |H1D5ADc_imG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rJ_qADcuj7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |get-in) (:id |BkYc0D9djQf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |rkq5Aw5_jQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Ski90PqOjmG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |B12cCPcujQz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |Hyp90v9OoQz)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SyAqRwc_iQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |HJJjAw9OoQM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryxi0DqOj7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |key-append) (:id |By-oRw9OsXf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1GjRPq_oQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:children) (:id |rJXiCPcujmG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |BkNoCD5_sXG)
|x $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |B1HiADcui7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-element) (:id |rJ8iRw9_i7M)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |schema/element) (:id |S1PiRvqOoXz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HyusCDquimG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |if) (:id |BJYj0wcOimG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkqjCwquimG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |=) (:id |S1js0Dquj7M)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:box) (:id |B1ni0v9us7f)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJ6sRP9dsmf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:kind) (:id |B1Cj0w5usmG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |By1hRPqOjXf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJx3RD5Os7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |->) (:id |Hy-nCwc_oQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521976997605) (:text |db) (:id |HyGhCwcOsQf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rJXhAPcuiXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update-in) (:id |Sy4h0w5_oXG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkH3ADqOs7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |cons) (:id |H1I30vqdsXM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |S1D2CPqujQM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Syu20Dqdomf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |SkK3RP5ds7z)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |Hkc3Av5_s7z)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJi20wc_smM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |fn) (:id |r1n3Rvc_jmf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1a20wq_j7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |r1AnCvcOs7f)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ByyaCvcOsmG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |B1lTAv5ds7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |H1WTCP9dj7G)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |B1zpAv5OomG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |BkmpCD5OimG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:children) (:id |SkV6CvqdoXG)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |BkSpCv5uj7G)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-element) (:id |HJUTCvcuiQf)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1Dp0w5di7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update) (:id |SJuTADcuoXG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:focus) (:id |HJta0w9doQz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hk5TRv5ujQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |fn) (:id |ryoa0w5do7M)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |B1npRPqdiQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |H1pTADcuimM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJC60vc_imG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |conj) (:id |H1JRAvcdi7f)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |r1eC0P5usmG)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |ry-RCvqdsXG)
|v $ {} (:type :leaf) (:by |root) (:at 1521976998927) (:text |db) (:id |B1fC0wc_smM)
|prepend-item $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkm00Dq_iXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |SkE00P5_iXG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |prepend-item) (:id |rySAAvq_s7G)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1LRAvq_iXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977029733) (:text |db) (:id |S1vA0P9doXz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |rkd00wcuomG)
|r $ {} (:type :leaf) (:by |root) (:at 1521977044749) (:text |sid) (:id |Bkg2AU-BcM)
|v $ {} (:type :leaf) (:by |root) (:at 1521977046206) (:text |op-id) (:id |SJWTAU-S9G)
|x $ {} (:type :leaf) (:by |root) (:at 1521977047151) (:text |op-time) (:id |r1GRAU-rqf)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rJKR0vcOsmG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |let) (:id |Hk90APqujXM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ByoCRwc_oXz)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HyhR0wqus7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |HypCADqus7z)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJ000vc_s7z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |BJk1g0v9usQz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977031553) (:text |db) (:id |B1eJxAw5usmz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1WyeCw9OjXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rJ8ye0D9ui7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |S1v1eRv9_iQf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJdyl0DcOomz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |get-in) (:id |rJtygRvc_oQz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |ry51eADcdiQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJjygCwcOj7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |HyhkgRD9_jQz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |SJpylCDcuoQG)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |By0yxAwquiXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |r1JgxAwq_jmM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BygleRvquimG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |key-prepend) (:id |SyZgg0PcOo7z)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJzexAvcOi7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:children) (:id |HkQegAPq_jQf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |B1Egx0D9uj7z)
|x $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SkHgxCPcuoXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-element) (:id |BJIleRDcdimG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |schema/element) (:id |BJwgg0vq_iQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hy_ggRwc_omf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |if) (:id |ByYlgAv5OiQz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SyqgxADcdsQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |=) (:id |rJsxlCwq_sQM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:box) (:id |S1hlxAP9dsQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJ6eeRDqOjQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:kind) (:id |HyCgl0P5Oj7M)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |HJyWe0PcdiQM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HkgZg0wq_sXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |->) (:id |S1-bx0wqusXG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977034575) (:text |db) (:id |HkGbe0Pq_oQM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rk7Zg0w9OsQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update-in) (:id |SkE-gCvc_sXG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HyrZeRw5_i7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |cons) (:id |BkIZxRD9OoXf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |HkPWgAD9OjQz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SyObgAvcdimf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |HJKWgRDqdo7M)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |Syqbl0w9uiQM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HkjZeRPq_imG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |fn) (:id |By2bgAwqOsQG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1pWe0D9_iQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |ry0Zl0P9_smz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SykGlCPqdo7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |SyeflCw5_iQf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |Sy-Ml0v5_o7z)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1GGe0P5djmz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |[]) (:id |HyQMx0w5uiQz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:children) (:id |rJNMeAPqdsmf)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |H1SMgRDq_oXG)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-element) (:id |SyUMlRD5ui7G)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryvMeAv9domf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update) (:id |B1uMgCPqus7z)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:focus) (:id |rkYMlCP5OomG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJqMxCP9_iXz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |fn) (:id |SksGeAPc_omf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SknMeAwqdiQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |r1TfxADcOiXM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJ0fx0Pcdj7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |conj) (:id |ryyQgCw9diXM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |HkxQeADqOjmG)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |B1ZQgRDcOs7M)
|v $ {} (:type :leaf) (:by |root) (:at 1521977036085) (:text |db) (:id |Hkf7lCvquiQf)
|set-content $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ByXmlCvqOiXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |rJ4QeCPqujXG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |set-content) (:id |r1HmeRPqOsXM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJL7xRvcuj7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977199498) (:text |db) (:id |B1vXxCvcui7M)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |Hy_7lCv5djmG)
|r $ {} (:type :leaf) (:by |root) (:at 1521977202125) (:text |sid) (:id |ryGKuPWHqG)
|v $ {} (:type :leaf) (:by |root) (:at 1521977202924) (:text |op-id) (:id |rJMq_wbH9G)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1532881791861) (:text |op-time) (:id |B1Gi_DbHcM)
|v $ {} (:type :expr) (:by |root) (:at 1521977194649) (:id |r1xm_DZHcz)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521977196206) (:text |let) (:id |HkZ7dwbBcz)
|L $ {} (:type :expr) (:by |root) (:at 1521977196472) (:id |B17EuPWrqz)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rklLuw-H5M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SktQgCPc_j7z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |B19Ql0DqdoXM)
|j $ {} (:type :leaf) (:by |root) (:at 1521977214660) (:text |db) (:id |SJsmxAP9OiQz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SknXxRDqdsQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |concat) (:id |HJ6XlRwqOimM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HyCmxAw9dimG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text "|'()") (:id |H1yVxCDc_jXf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |rJl4lAPq_sQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJZVgAP9ujXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |HkfElRvcOjQM)
|j $ {} (:type :leaf) (:by |root) (:at 1521977208893) (:text |focus) (:id |SygYwbr5f)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Bk8Nl0D5OjQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text "|'()") (:id |SJP4e0w9doQM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:content) (:id |BJ_EeRDqdjQM)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |r1FVeCPcOj7f)
|set-presets $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rycExCPc_jQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |rksEx0Pq_smM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |set-presets) (:id |ry2NeRDcuiQM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HkaEgCPcOi7z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977248501) (:text |db) (:id |ryCVlCv9uoQM)
|j $ {} (:type :leaf) (:by |root) (:at 1521977249753) (:text |op-data) (:id |SJkreAPcuiXM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977250329) (:text |sid) (:id |ByxqjDbH9f)
|v $ {} (:type :leaf) (:by |root) (:at 1521977251285) (:text |op-id) (:id |HkjoDZB9G)
|x $ {} (:type :leaf) (:by |root) (:at 1521977252563) (:text |op-time) (:id |BJSssPbScz)
|v $ {} (:type :expr) (:by |root) (:at 1521977245215) (:id |SklrivWBqM)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521977245843) (:text |let) (:id |HJWHsvWS9z)
|L $ {} (:type :expr) (:by |root) (:at 1521977246085) (:id |S1XUsvWr9f)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ByPjPZH9f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkeHlRD9OoXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |S1WSlAv5us7z)
|j $ {} (:type :leaf) (:by |root) (:at 1521977258909) (:text |db) (:id |SkGSxADc_smM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Sy7HlAv5_jmf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |flatten) (:id |SJVHgAvqusQz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryBrlCv5domM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |list) (:id |rkUrxAwcdjmM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |SkwrxAv9diXG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hk_HxADqOjXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |r1tSl0D5_j7z)
|j $ {} (:type :leaf) (:by |root) (:at 1521977255504) (:text |focus) (:id |B1lk2DWBcM)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:presets) (:id |rk6rlCD9_iQM)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |S1RBgADcuj7z)
|set-kind $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rJkUlAwcui7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |HylIlRv5_jmM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |set-kind) (:id |rJ-Ug0wcOsmM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1MUgRP5_o7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977166234) (:text |db) (:id |B1XLgCv9ds7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |S1N8g0w9ujQf)
|r $ {} (:type :leaf) (:by |root) (:at 1521977170233) (:text |sid) (:id |SJZF8vWBcM)
|v $ {} (:type :leaf) (:by |root) (:at 1521977171494) (:text |op-id) (:id |r1oLvbr5z)
|x $ {} (:type :leaf) (:by |root) (:at 1521977172416) (:text |op-time) (:id |H1n8DbS9z)
|v $ {} (:type :expr) (:by |root) (:at 1521977155944) (:id |HyghBDbB9M)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521977156537) (:text |let) (:id |HJWhrvZr9M)
|L $ {} (:type :expr) (:by |root) (:at 1521977157656) (:id |HkRHPWrqG)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJlCBPbHcz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryBIx0w5OsQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |H1UUgCP9OjQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977167787) (:text |db) (:id |Skv8gCvqdsXG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ByuUgRw9diQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |concat) (:id |ryFLgCDq_oQz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJ9LxCwqdjQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text "|'()") (:id |rkjIeAv5ujXz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |SJhIg0D9Os7z)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HyaLxAD5dsXz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |H1AIgCD5ujXG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977161040) (:text |focus) (:id |HkWxLD-Hcz)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryzPgAP9ujmG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text "|'()") (:id |rJQDgADcdiQf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:kind) (:id |Hk4wxCDqdoXG)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |ByBDgAwqus7G)
|remove-item $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |B1UPgAvc_jQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |r1PDeAw9diQM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |remove-item) (:id |HkOwgRD5djXM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJtvgAvq_jQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977137172) (:text |db) (:id |rJqPlCwqOoQf)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |rJiDlCv5Ojmz)
|r $ {} (:type :leaf) (:by |root) (:at 1521977138438) (:text |sid) (:id |rJcEvbr5f)
|v $ {} (:type :leaf) (:by |root) (:at 1521977139674) (:text |op-id) (:id |r1m9EDWr9M)
|x $ {} (:type :leaf) (:by |root) (:at 1521977140989) (:text |op-time) (:id |SkWhVPZHcM)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJ2vgCw9ds7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |let) (:id |BkavlCw5uoXf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hy0Pe0PcOiXG)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SygOVw-S5z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJNOxRPquoXz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |HkHulRP9domG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJ8_eCP5_oQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |SyvOgCwqdiQf)
|j $ {} (:type :leaf) (:by |root) (:at 1521977145443) (:text |db) (:id |HkdueAPc_sXG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HkK_lCD9_smz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |if) (:id |r15dg0Pc_sQG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rJouxCwq_j7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |empty?) (:id |S13dgRwcus7f)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BkpueCwcOomf)
|r $ {} (:type :leaf) (:by |root) (:at 1521977144238) (:text |db) (:id |r1RdeRw9diQM)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hk1teRw5_o7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |let) (:id |HylKg0D9_smM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ry-FxRvcuo7f)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkftxCP5_j7z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-focus) (:id |H17txADqOs7z)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkEYxADqdsQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |pop) (:id |rJBKgRD9Oi7z)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |SJLYeRwcdiQf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJvKeRv9djXz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |->) (:id |B1uKxCPqdjmz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977149414) (:text |db) (:id |r1tFl0w9_jmG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJcFeRvc_i7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update-in) (:id |BksKe0P9_j7f)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SkhYeAw9uiQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |cons) (:id |ByaFxCvqOo7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |rkAKgCvq_iQz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJy9gAv5_s7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |B1g9g0Pqds7f)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-focus) (:id |BJW9xCvc_jXM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SkzqeCPcOj7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |fn) (:id |Bkm5gADqOjmM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ryE9x0w9diQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |SJHql0wcOimz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S189l0P5_sQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update) (:id |S1v9eCw5domz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |SJO5gRwqOsQf)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:children) (:id |BkYqlRv5dsmM)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkc9xRwcOsQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |fn) (:id |rkj5eAwqOi7M)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkhqxCPq_sXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |children) (:id |Byp5eAD9dsQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HkA5g0DqdsXz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |dissoc) (:id |S11sgRPquoQz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |children) (:id |HJgsg0D5_omM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HyZjgCw5dsQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |peek) (:id |HkGix0wqusQM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |B1mslRw5uomf)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJVsl0Pc_iQz)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1532883753105) (:text |assoc-in) (:id |rJBseCDcujQz)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1532883755058) (:id |Ya4V1vLPk)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1532883755670) (:text |[]) (:id |54zHxlS5jZ)
|L $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1532883758410) (:text |:sessions) (:id |w4eYtRB_UR)
|P $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1532883760298) (:text |sid) (:id |L2U_iYntJ)
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:focus) (:id |HyIig0Dq_iQf)
|r $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-focus) (:id |S1Pix0D5ujmG)
|set-layout $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJOig0v9djmf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |Sytse0wcuiXz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |set-layout) (:id |BkqigAD9dimG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1ojgRvqOsmG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977179797) (:text |db) (:id |Bkhil0PcuomG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |HkpjgCv5domM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977181069) (:text |sid) (:id |HyBPPWSqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977182030) (:text |op-id) (:id |rkmSPwZSqf)
|x $ {} (:type :leaf) (:by |root) (:at 1521977183668) (:text |op-time) (:id |HkMIPP-Bcz)
|v $ {} (:type :expr) (:by |root) (:at 1521977176530) (:id |r1-vD-S5f)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521977177166) (:text |let) (:id |SyxZPvbSqz)
|L $ {} (:type :expr) (:by |root) (:at 1521977177892) (:id |r1fvw-r9z)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BJxMPwWH9z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1AjeAwqdi7f)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |assoc-in) (:id |rykhl0Dq_iQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977185719) (:text |db) (:id |B1xhlRPquj7M)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Bkb2eRDquj7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |concat) (:id |ryz3x0Pc_iXM)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HkQnxAwcuiQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text "|'()") (:id |BJVneRvqdimM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |rkrnlCw5ui7z)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJIhx0DcdoQM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |BJv2eRDqOjXM)
|j $ {} (:type :leaf) (:by |root) (:at 1521977189816) (:text |focus) (:id |Syl2DDZr5z)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rysng0w5OsQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text "|'()") (:id |SJ2hl0wcOiXG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:layout) (:id |rJT2gADcdiXf)
|v $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |BkChlADcdsQM)
|before-item $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rkyag0Pquimf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |defn) (:id |BJxTg0w5uiXM)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |before-item) (:id |ryWTl0v9domG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |BkGpl0v5OjXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977111498) (:text |db) (:id |Hkmax0Pq_o7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |op-data) (:id |rJE6e0PcdoXG)
|r $ {} (:type :leaf) (:by |root) (:at 1521977112711) (:text |sid) (:id |rJexmPWS5G)
|v $ {} (:type :leaf) (:by |root) (:at 1521977114542) (:text |op-id) (:id |S1-ZQPWH9z)
|x $ {} (:type :leaf) (:by |root) (:at 1521977115376) (:text |op-time) (:id |HJlQXDZScz)
|v $ {} (:type :expr) (:by |root) (:at 1521977106523) (:id |rJizDbBcz)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1521977107158) (:text |let) (:id |SJljGDZScG)
|L $ {} (:type :expr) (:by |root) (:at 1521977107467) (:id |H1rjGw-BqM)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SklpGw-HcG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |BJfJlRD5_omG)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r17kgRPqdoQG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977041598) (:text |get-in) (:id |SJVkeAwcOoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1521977049820) (:text |db) (:id |rkoA8br5f)
|r $ {} (:type :expr) (:by |root) (:at 1521977050256) (:id |BJzMkv-SqM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1521977050431) (:text |[]) (:id |BkbGkvWSqz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977051875) (:text |:sessions) (:id |ryX1wbrqM)
|r $ {} (:type :leaf) (:by |root) (:at 1521977052488) (:text |sid) (:id |BJXEJPWHqz)
|v $ {} (:type :leaf) (:by |root) (:at 1521977054491) (:text |:focus) (:id |S1rkDWrcG)
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |rJSpxCPcusXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |if) (:id |rJ8peRDcOsmz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |r1vpx0P9djQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |empty?) (:id |SJ_6xRvcuomz)
|j $ {} (:type :leaf) (:by |root) (:at 1521977124111) (:text |focus) (:id |B137DWH9M)
|r $ {} (:type :leaf) (:by |root) (:at 1521977125600) (:text |db) (:id |SJ2TlCDcuoXz)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1TTxRwqui7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |let) (:id |SJA6lRvcdomf)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1J0lRPcOiXG)
:data $ {}
|T $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |B1lRxAP5Oj7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |rybCeAPcus7z)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SyfAgAvq_jXM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:tree) (:id |B17RxAP9usXM)
|j $ {} (:type :leaf) (:by |root) (:at 1521977126937) (:text |db) (:id |BkVRe0P9_sXM)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hy5AgCwc_iXf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |base-focus) (:id |HksReAwcds7f)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1hCgCw9_imM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |pop) (:id |ryaClRDqdoQG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |SJCAeAvc_omM)
|v $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1kk-Rw5uoQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |ryx1W0w5usXz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJZJ-ADcuomG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |get-in) (:id |SyzkbAvqOjQG)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |tree) (:id |ry7ybCPqOjmG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SJNk-Av9OsXz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |wrap-path) (:id |BkBkb0w9Oo7G)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |base-focus) (:id |S1LyW0P5doXz)
|x $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |S1P1bRwqOi7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-id) (:id |rJuJbAD5dsXz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |H1F1ZRw5_j7M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |key-before) (:id |rkqy-0DcdsQz)
|j $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |Hksy-ADcuoQf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |:children) (:id |Syn1bCv9dsmz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |target-node) (:id |HJa1bRD9dsQG)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |ByRk-RPqusQz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |last) (:id |BkJgW0DcdjXz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |focus) (:id |rkglW0w5djQM)
|y $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |B1bgZAvqOimz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |new-element) (:id |HJMl-0DqOimz)
|j $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |schema/element) (:id |HkXlZADquiXz)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |SkNgZ0wqdsXG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |->) (:id |H1rx-AD9OjXf)
|j $ {} (:type :leaf) (:by |root) (:at 1521977129759) (:text |db) (:id |HJ8g-CvqOsQf)
|r $ {} (:type :expr) (:by |root) (:at 1515059813978) (:id |HJDx-0P5_j7G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1515059813978) (:text |update-in) (:id |BJOgb0w5usmz)