-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
4419 lines (4418 loc) · 373 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 $ {}
|SygU7c6BlG $ {} (:id |SygU7c6BlG) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |recollect)
:root $ {} (:ns |main) (:def |main!)
:files $ {}
|recollect.app.upload $ {}
:ns $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |mH8tBcdG7Y)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |ns) (:id |CvmEbS6Q5W)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |recollect.app.upload) (:id |JXC0-faKf_)
|r $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |bgc4XV2BQK)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |:require) (:id |doYYyjtBV1)
|j $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |uiArJGOBa-)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |[]) (:id |ydxLCpNG6O)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text "|\"child_process") (:id |DJhYVuIEdw)
|r $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |:as) (:id |7pDvBcBPpq)
|v $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |cp) (:id |Jd9R3OI3Tk)
|r $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |PntFedLF8-)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |[]) (:id |PSkYToi7B3)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |recollect.config) (:id |lw2yz-4y78)
|r $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |:as) (:id |hjmemal9cJ)
|v $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |config) (:id |-QBmsW3LV1)
|v $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |PS-wFIvE-8y)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |[]) (:id |uNlfcWYDol8)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |cumulo-util.file) (:id |wlwAG7WQk3d)
|r $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |:refer) (:id |uaThbdLAD7o)
|v $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |aYRajGjxem6)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |[]) (:id |C1q6buot7FF)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |sh!) (:id |nlirC_jySt0)
|v $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |PP8qhaIKpSG)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |:require-macros) (:id |mkTOueKGbPD)
|j $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |fwhuOahzZE-)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |[]) (:id |1xIYlG9zjKj)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |clojure.core.strint) (:id |3AM-7aGdyfY)
|r $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |:refer) (:id |52uRiiyfK9t)
|v $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |PKNiqI_EiH8)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |[]) (:id |BoSdQNQ0GDw)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |<<) (:id |diXYO7_rQXB)
:defs $ {}
|main! $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |Qa8oheWEp0i)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |defn) (:id |dgOA6-DHXVA)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |main!) (:id |1ML2ecFCYkY)
|r $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |HrbLKz6k15X)
:data $ {}
|v $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |F-HH94xV667)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |sh!) (:id |-GC-7F202qj)
|j $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |eu8JwRKFdwP)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |<<) (:id |fQcP4lnz2TH)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text "|\"rsync -avr --progress dist/* ~(:cdn-folder config/site)") (:id |X8KEtuSQvvg)
|x $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |UuqU2YvpoI1)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |sh!) (:id |uJfmIetLP6e)
|j $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |AIr6g8NdCdt)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |<<) (:id |egjpL49aBUM)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text "|\"rsync -avr --progress dist/{index.html,manifest.json} ~(:upload-folder config/site)") (:id |fSCuDgxIaLK)
|reload! $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |hzAafnowNbW)
:data $ {}
|T $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |defn) (:id |_Liu9pU9qIf)
|j $ {} (:type :leaf) (:by |SygU7c6BlG) (:at 1561172085040) (:text |reload!) (:id |nWjJNfVD3Zf)
|r $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |hZo84aFPz50)
:data $ {}
:proc $ {} (:type :expr) (:by |SygU7c6BlG) (:at 1561172085040) (:id |h_uG-Na469_)
:data $ {}
|recollect.patch $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |recollect.patch) (:by |root) (:at 1500476982536)
|r $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:by |root) (:at 1500476982536)
|j $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |clojure.set) (:by |root) (:at 1500476982536)
|r $ {} (:type :leaf) (:text |:refer) (:by |root) (:at 1500476982536)
|v $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |union) (:by |root) (:at 1500476982536)
|r $ {} (:type :leaf) (:text |difference) (:by |root) (:at 1500476982536)
|r $ {} (:type :expr) (:id |ryxOn1LEyf) (:by |root) (:at 1510395824346)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |ryxOn1LEyfleaf) (:by |root) (:at 1510395825680)
|j $ {} (:type :leaf) (:text |recollect.schema) (:id |Sy-921L4kG) (:by |root) (:at 1510395829788)
|r $ {} (:type :leaf) (:text |:as) (:id |rJMR2yUN1G) (:by |root) (:at 1510395830200)
|v $ {} (:type :leaf) (:text |schema) (:id |H1803kLNyz) (:by |root) (:at 1510395830966)
|v $ {} (:type :expr) (:id |Skle03UV1f) (:by |root) (:at 1510399176477)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |Skle03UV1fleaf) (:by |root) (:at 1510399176906)
|j $ {} (:type :leaf) (:text |recollect.util) (:id |HJWZC38N1f) (:by |root) (:at 1510399183840)
|r $ {} (:type :leaf) (:text |:refer) (:id |H1zOAhLVyf) (:by |root) (:at 1510399185360)
|v $ {} (:type :expr) (:id |B1cAnU4kf) (:by |root) (:at 1510399185627)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |H1VK0nUV1f) (:by |root) (:at 1510399185772)
|j $ {} (:type :leaf) (:text |vec-add) (:id |Skz503IVyz) (:by |root) (:at 1510399186231)
|r $ {} (:type :leaf) (:text |seq-add) (:id |SJe0T0LNJf) (:by |root) (:at 1510399686395)
:defs $ {}
|patch-map-remove $ {} (:type :expr) (:id |ryxVFpIEyf) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |B1b4Y6L4yM) (:by |root) (:at 1510399355526)
|j $ {} (:type :leaf) (:text |patch-map-remove) (:id |SyfVK6UEyM) (:by |root) (:at 1510399355526)
|r $ {} (:type :expr) (:id |ryQ4ta8N1z) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |base) (:id |HJVVY684JG) (:by |root) (:at 1510399355526)
|j $ {} (:type :leaf) (:text |coord) (:id |HJB4KaU4Jf) (:by |root) (:at 1510399355526)
|r $ {} (:type :leaf) (:text |path) (:id |Hy8EKp8Nyf) (:by |root) (:at 1510399355526)
|v $ {} (:type :expr) (:id |BJP4tTLNkz) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:id |SkO4KpU41z) (:by |root) (:at 1510399355526)
|j $ {} (:type :expr) (:id |SyYEFaLNJG) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:id |SJc4KT8NyG) (:by |root) (:at 1510399355526)
|j $ {} (:type :leaf) (:text |coord) (:id |H1iNYTUE1G) (:by |root) (:at 1510399355526)
|r $ {} (:type :expr) (:id |H1h4KaLEyG) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |dissoc) (:id |BypVY6IVyM) (:by |root) (:at 1510399355526)
|j $ {} (:type :leaf) (:text |base) (:id |S1C4KTUV1M) (:by |root) (:at 1510399355526)
|r $ {} (:type :leaf) (:text |path) (:id |S1yeNtpUEyG) (:by |root) (:at 1510399355526)
|v $ {} (:type :expr) (:id |rJleNtTUNkf) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |update-in) (:id |rJ-xEK68EJG) (:by |root) (:at 1510399355526)
|j $ {} (:type :leaf) (:text |base) (:id |BkGxEtaLEyz) (:by |root) (:at 1510399355526)
|r $ {} (:type :leaf) (:text |coord) (:id |H1XgEFT8EyG) (:by |root) (:at 1510399355526)
|v $ {} (:type :expr) (:id |HJEg4KpIVyM) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:id |rJBl4YpLNkz) (:by |root) (:at 1510399355526)
|j $ {} (:type :expr) (:id |BJLxVYT84JG) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |cursor) (:id |SyDeEKpLEkz) (:by |root) (:at 1510399355526)
|r $ {} (:type :expr) (:id |S1ul4KTUNkz) (:by |root) (:at 1510399355526)
:data $ {}
|T $ {} (:type :leaf) (:text |dissoc) (:id |r1Ke4YTI4kz) (:by |root) (:at 1510399355526)
|j $ {} (:type :leaf) (:text |cursor) (:id |Byce4Fa8Vyf) (:by |root) (:at 1510399355526)
|r $ {} (:type :leaf) (:text |path) (:id |BkslNF6IE1f) (:by |root) (:at 1510399355526)
|patch-map-set $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |patch-map-set) (:by |root) (:at 1500476982536)
|r $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |base) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1500476982536)
|r $ {} (:type :leaf) (:text |data) (:by |root) (:at 1500476982536)
|v $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:by |root) (:at 1500476982536)
|j $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1500476982536)
|r $ {} (:type :leaf) (:text |data) (:by |root) (:at 1500476982536)
|v $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |assoc-in) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |base) (:by |root) (:at 1500476982536)
|r $ {} (:type :leaf) (:text |coord) (:by |root) (:at 1500476982536)
|v $ {} (:type :leaf) (:text |data) (:by |root) (:at 1500476982536)
|patch-one $ {} (:type :expr) (:id |H1e6OZIEyf) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |r1-6u-8NJz) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |patch-one) (:id |rJMpdZU4yf) (:by |root) (:at 1510396277262)
|r $ {} (:type :expr) (:id |Hk7pdWLNkG) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |base) (:id |rk46dbIEkf) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |change) (:id |B1STub8EyM) (:by |root) (:at 1510396277262)
|v $ {} (:type :expr) (:id |ByUTObLVyf) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:id |HyP6_WL4kG) (:by |root) (:at 1510396277262)
|j $ {} (:type :expr) (:id |H1Op_WI4Jz) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :expr) (:id |rkFTdWUVyG) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :expr) (:id |HkcT_-U4kG) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |Ski6_b8Vyf) (:by |root) (:at 1510396277262)
|b $ {} (:type :leaf) (:text |op) (:id |H1g1jOI4yz) (:by |root) (:at 1510398103478)
|j $ {} (:type :leaf) (:text |coord) (:id |B13TObINkG) (:by |root) (:at 1510396277262)
|v $ {} (:type :leaf) (:text |data) (:id |SyRTuZ8NJM) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |change) (:id |r1yepO-8Eyz) (:by |root) (:at 1510396277262)
|r $ {} (:type :expr) (:id |ryxxTOWIVkz) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |cond) (:id |By-gaubU41M) (:by |root) (:at 1510396837690)
|r $ {} (:type :expr) (:id |SJXxaub8Nkf) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :expr) (:id |H1xGh78NJM) (:by |root) (:at 1510396841893)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:id |rkZf2mIVyG) (:by |root) (:at 1510396842586)
|L $ {} (:type :leaf) (:text |op) (:id |r1em37U4Jf) (:by |root) (:at 1510396843407)
|T $ {} (:type :leaf) (:text |schema/tree-op-vec-append) (:id |SkVxad-8N1G) (:by |root) (:at 1510396739155)
|j $ {} (:type :expr) (:id |SJBlT_-LEyG) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-vector-append) (:id |BJ8e6O-84JG) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |base) (:id |SkwxT_WIVyM) (:by |root) (:at 1510396277262)
|r $ {} (:type :leaf) (:text |coord) (:id |rJueaO-I41z) (:by |root) (:at 1510396277262)
|v $ {} (:type :leaf) (:text |data) (:id |HJtl6OZIE1f) (:by |root) (:at 1510396277262)
|v $ {} (:type :expr) (:id |HJcxTuW84Jz) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :expr) (:id |B1gV2mLV1M) (:by |root) (:at 1510396844387)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:id |ryHhQL4kf) (:by |root) (:at 1510396845345)
|L $ {} (:type :leaf) (:text |op) (:id |HJUnmUV1M) (:by |root) (:at 1510396847864)
|T $ {} (:type :leaf) (:text |schema/tree-op-vec-drop) (:id |Skiep_WLN1G) (:by |root) (:at 1510396277262)
|j $ {} (:type :expr) (:id |B13e6Ob8NkG) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-vector-drop) (:id |S1alT_WL41M) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |base) (:id |HyAxpO-8E1G) (:by |root) (:at 1510396277262)
|r $ {} (:type :leaf) (:text |coord) (:id |rJkW6OWU4Jz) (:by |root) (:at 1510396277262)
|v $ {} (:type :leaf) (:text |data) (:id |r1x-6_bL4yf) (:by |root) (:at 1510396277262)
|x $ {} (:type :expr) (:id |SJb-TdWU4yM) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :expr) (:id |SJlY2XI4JM) (:by |root) (:at 1510396849173)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:id |HkbY37IEJG) (:by |root) (:at 1510396849769)
|L $ {} (:type :leaf) (:text |op) (:id |H1ecn7UVyf) (:by |root) (:at 1510396850200)
|T $ {} (:type :leaf) (:text |schema/tree-op-dissoc) (:id |rJf-6_-UEyM) (:by |root) (:at 1510396277262)
|j $ {} (:type :expr) (:id |r1mW6ObIEJM) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-map-remove) (:id |H14bTuZIVyz) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |base) (:id |BJSZad-LEJf) (:by |root) (:at 1510396277262)
|r $ {} (:type :leaf) (:text |coord) (:id |Sy8Wadb8EyM) (:by |root) (:at 1510396277262)
|v $ {} (:type :leaf) (:text |data) (:id |rkwW6O-84yz) (:by |root) (:at 1510396277262)
|y $ {} (:type :expr) (:id |Bk_bauWLNJG) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :expr) (:id |H1go27UN1G) (:by |root) (:at 1510396851167)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:id |Sk-j2QU4kz) (:by |root) (:at 1510396851909)
|L $ {} (:type :leaf) (:text |op) (:id |SJe23XIE1f) (:by |root) (:at 1510396852301)
|T $ {} (:type :leaf) (:text |schema/tree-op-assoc) (:id |rkFZpO-UNJf) (:by |root) (:at 1510396277262)
|j $ {} (:type :expr) (:id |SkcW6ub84Jf) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-map-set) (:id |SJsZTObUN1M) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |base) (:id |By3Z6dZ841M) (:by |root) (:at 1510396277262)
|r $ {} (:type :leaf) (:text |coord) (:id |BkabpOZ8E1f) (:by |root) (:at 1510396277262)
|v $ {} (:type :leaf) (:text |data) (:id |HJR-p_bLNJG) (:by |root) (:at 1510396277262)
|yT $ {} (:type :expr) (:id |HyJM6Ob84yM) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :expr) (:id |SyRhQIEkM) (:by |root) (:at 1510396853994)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:id |rkx02XIVkG) (:by |root) (:at 1510396854800)
|L $ {} (:type :leaf) (:text |op) (:id |SJgJTQIEyz) (:by |root) (:at 1510396855418)
|T $ {} (:type :leaf) (:text |schema/tree-op-set-splice) (:id |SklfaubIEyz) (:by |root) (:at 1510396294220)
|j $ {} (:type :expr) (:id |Hk-Ma_ZIEyG) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-set) (:id |Hkzf6dW8Ekz) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |base) (:id |HJQMaObLVyf) (:by |root) (:at 1510396277262)
|r $ {} (:type :leaf) (:text |coord) (:id |BJEMaO-8Vyz) (:by |root) (:at 1510396277262)
|v $ {} (:type :leaf) (:text |data) (:id |HJSMaO-8Nkz) (:by |root) (:at 1510396277262)
|yj $ {} (:type :expr) (:id |BJIzpd-U4kz) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :expr) (:id |BkxZaQLVkf) (:by |root) (:at 1510396857079)
:data $ {}
|D $ {} (:type :leaf) (:text |=) (:id |r1-Z6mL4Jz) (:by |root) (:at 1510396858094)
|L $ {} (:type :leaf) (:text |op) (:id |BkQTmU4kf) (:by |root) (:at 1510396858894)
|T $ {} (:type :leaf) (:text |schema/tree-op-seq-splice) (:id |SywzT_-8V1G) (:by |root) (:at 1510396290210)
|j $ {} (:type :expr) (:id |BydGpdZIVyf) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-seq) (:id |S1tGT_ZLNJf) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text |base) (:id |HJqzad-U4kz) (:by |root) (:at 1510396277262)
|r $ {} (:type :leaf) (:text |coord) (:id |HyoGpdbLEyz) (:by |root) (:at 1510396277262)
|v $ {} (:type :leaf) (:text |data) (:id |SJ3fau-8Nyf) (:by |root) (:at 1510396277262)
|yr $ {} (:type :expr) (:id |HkgrpmU4yG) (:by |root) (:at 1510396860935)
:data $ {}
|D $ {} (:type :leaf) (:text |:else) (:id |HkWB6mU4Jz) (:by |root) (:at 1510396861953)
|T $ {} (:type :expr) (:id |H16faOb8Ekz) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |do) (:id |SkCzT_ZINyG) (:by |root) (:at 1510396277262)
|j $ {} (:type :expr) (:id |rJy76_ZUE1z) (:by |root) (:at 1510396277262)
:data $ {}
|T $ {} (:type :leaf) (:text |println) (:id |SJgmpuZUEJM) (:by |root) (:at 1510396277262)
|j $ {} (:type :leaf) (:text "||Unkown op:") (:id |HyW7TuZ8VkM) (:by |root) (:at 1510396277262)
|r $ {} (:type :leaf) (:text |op) (:id |rJf76ubUNJf) (:by |root) (:at 1510396277262)
|r $ {} (:type :leaf) (:text |base) (:id |SJmQTubLEJG) (:by |root) (:at 1510396277262)
|patch-seq $ {} (:type :expr) (:id |Skxa268E1z) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |HyWp2p84JM) (:by |root) (:at 1510399413479)
|j $ {} (:type :leaf) (:text |patch-seq) (:id |Hyzp26841z) (:by |root) (:at 1510399413479)
|r $ {} (:type :expr) (:id |HymT26IV1G) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |base) (:id |r1ET2aUNyM) (:by |root) (:at 1510399413479)
|j $ {} (:type :leaf) (:text |coord) (:id |BJBTnaLVkG) (:by |root) (:at 1510399413479)
|r $ {} (:type :leaf) (:text |data) (:id |HyU6n68Vkz) (:by |root) (:at 1510399413479)
|v $ {} (:type :expr) (:id |BkP6hpI41G) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:id |ByOTnaIVyz) (:by |root) (:at 1510399413479)
|j $ {} (:type :expr) (:id |rJY63p8E1f) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :expr) (:id |Syqah6IEkG) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :expr) (:id |Bys6hpIVJz) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |rJ3pn6INyG) (:by |root) (:at 1510399413479)
|j $ {} (:type :leaf) (:text |n) (:id |rypanT8VJf) (:by |root) (:at 1510399413479)
|r $ {} (:type :leaf) (:text |content) (:id |HJAan6IV1z) (:by |root) (:at 1510399413479)
|j $ {} (:type :leaf) (:text |data) (:id |BkygT268N1G) (:by |root) (:at 1510399413479)
|r $ {} (:type :expr) (:id |S1le63aU4kz) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |update-in) (:id |HyZla26IEkM) (:by |root) (:at 1510399413479)
|j $ {} (:type :leaf) (:text |base) (:id |rJGxan6LVyM) (:by |root) (:at 1510399413479)
|r $ {} (:type :leaf) (:text |coord) (:id |r1mx6268Nkf) (:by |root) (:at 1510399413479)
|v $ {} (:type :expr) (:id |S1Nxa3aIVyM) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:id |BkBgT2TUVkz) (:by |root) (:at 1510399413479)
|j $ {} (:type :expr) (:id |SJLea2aUVyM) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |cursor) (:id |r1we63pLNkG) (:by |root) (:at 1510399413479)
|v $ {} (:type :expr) (:id |SylKjR8NJz) (:by |root) (:at 1510399649311)
:data $ {}
|T $ {} (:type :leaf) (:text |seq-add) (:id |SylKjR8NJzleaf) (:by |root) (:at 1510399650284)
|j $ {} (:type :leaf) (:text |content) (:id |SJaiC8E1f) (:by |root) (:at 1510399666550)
|r $ {} (:type :expr) (:id |ByXpRLV1M) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:id |Hk2x6na84JM) (:by |root) (:at 1510399413479)
|j $ {} (:type :expr) (:id |Sy6xTnpIE1f) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |zero?) (:id |HJ0ga26U4yf) (:by |root) (:at 1510399413479)
|j $ {} (:type :leaf) (:text |n) (:id |Hyy-T2pI4yf) (:by |root) (:at 1510399413479)
|r $ {} (:type :leaf) (:text |cursor) (:id |HyxZ62aUEkz) (:by |root) (:at 1510399413479)
|v $ {} (:type :expr) (:id |rkWZ636L4Jf) (:by |root) (:at 1510399413479)
:data $ {}
|T $ {} (:type :leaf) (:text |drop) (:id |S1MZph68E1G) (:by |root) (:at 1510399413479)
|j $ {} (:type :leaf) (:text |n) (:id |H1Qbp2aI41G) (:by |root) (:at 1510399413479)
|r $ {} (:type :leaf) (:text |cursor) (:id |HJ4bp2p8E1z) (:by |root) (:at 1510399413479)
|patch-set $ {} (:type :expr) (:id |BJx3s6U4yf) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |Sybhip8E1f) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |patch-set) (:id |ryMni6LVyz) (:by |root) (:at 1510399396189)
|r $ {} (:type :expr) (:id |r1QnoaI4JG) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |base) (:id |Hy42iT8NJf) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |coord) (:id |rkShjpLVkG) (:by |root) (:at 1510399396189)
|r $ {} (:type :leaf) (:text |data) (:id |H182oaLVkf) (:by |root) (:at 1510399396189)
|v $ {} (:type :expr) (:id |ryD3o6IV1z) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:id |rkd2i684JG) (:by |root) (:at 1510399396189)
|j $ {} (:type :expr) (:id |ByYhiTUNyG) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :expr) (:id |B1c2saUEJM) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :expr) (:id |H1o2i6L41M) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |B13nsTUVkM) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |removed) (:id |Sya3jTI4yG) (:by |root) (:at 1510399396189)
|r $ {} (:type :leaf) (:text |added) (:id |S1R2jT8Vkf) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |data) (:id |S1yx2jaLVkM) (:by |root) (:at 1510399396189)
|r $ {} (:type :expr) (:id |r1gg3ipI4JM) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:id |HJZx3s6IVkz) (:by |root) (:at 1510399396189)
|j $ {} (:type :expr) (:id |H1zxnoaIVyM) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:id |HJmg3o6UE1z) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |coord) (:id |rkVxhi6IVkz) (:by |root) (:at 1510399396189)
|r $ {} (:type :expr) (:id |r1Bgho6UN1G) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:id |B1IghoTUNyM) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |base) (:id |HyDl2o6L4yM) (:by |root) (:at 1510399396189)
|r $ {} (:type :expr) (:id |Hyulhi68NkG) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |difference) (:id |S1Ye2s6LVJf) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |removed) (:id |Bk5ehiTLN1M) (:by |root) (:at 1510399396189)
|v $ {} (:type :expr) (:id |HkolhjaU4kz) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |union) (:id |HJnlho6LEkz) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |added) (:id |Sy6enj6LVkM) (:by |root) (:at 1510399396189)
|v $ {} (:type :expr) (:id |H1AghoaLVJG) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |update-in) (:id |B1JW2jaUNyG) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |base) (:id |BJl-niTIVJz) (:by |root) (:at 1510399396189)
|r $ {} (:type :leaf) (:text |coord) (:id |HkZb2j6LVJM) (:by |root) (:at 1510399396189)
|v $ {} (:type :expr) (:id |ByzbhjTU41M) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:id |HymWhjpUV1z) (:by |root) (:at 1510399396189)
|j $ {} (:type :expr) (:id |SyEZ3ipLEJM) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |cursor) (:id |rJrWhopI4JG) (:by |root) (:at 1510399396189)
|r $ {} (:type :expr) (:id |r18-3oa84yf) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |->) (:id |B1w-hi6LEJM) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |cursor) (:id |SkuWhsT8NJG) (:by |root) (:at 1510399396189)
|r $ {} (:type :expr) (:id |HJF-3iTIVkf) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |difference) (:id |B1qWniaIEJf) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |removed) (:id |HysZ3j6UE1M) (:by |root) (:at 1510399396189)
|v $ {} (:type :expr) (:id |Sy3Wns6IEJz) (:by |root) (:at 1510399396189)
:data $ {}
|T $ {} (:type :leaf) (:text |union) (:id |H1T-njaL4kz) (:by |root) (:at 1510399396189)
|j $ {} (:type :leaf) (:text |added) (:id |ByRb2jaU4yz) (:by |root) (:at 1510399396189)
|patch-twig $ {} (:type :expr) (:id |Bkl4UnzIAb) (:by |root) (:at 1509465163977)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |ryZN83zUR-) (:by |root) (:at 1509465163977)
|j $ {} (:type :leaf) (:text |patch-twig) (:id |B1fVUhzLCb) (:by |root) (:at 1509465163977)
|r $ {} (:type :expr) (:id |HJ748nzLRZ) (:by |root) (:at 1509465163977)
:data $ {}
|T $ {} (:type :leaf) (:text |base) (:id |rkNEU3GLCW) (:by |root) (:at 1509465163977)
|j $ {} (:type :leaf) (:text |changes) (:id |HJBN8nfU0W) (:by |root) (:at 1509465163977)
|v $ {} (:type :expr) (:id |HyIVL3zIAZ) (:by |root) (:at 1509465163977)
:data $ {}
|T $ {} (:type :leaf) (:text |if) (:id |BywV83G8C-) (:by |root) (:at 1509465163977)
|j $ {} (:type :expr) (:id |r1u4LhML0b) (:by |root) (:at 1509465163977)
:data $ {}
|T $ {} (:type :leaf) (:text |empty?) (:id |SJtE8hMUCW) (:by |root) (:at 1509465163977)
|j $ {} (:type :leaf) (:text |changes) (:id |Hy9VL3ML0W) (:by |root) (:at 1509465163977)
|r $ {} (:type :leaf) (:text |base) (:id |B1sVLnfUAZ) (:by |root) (:at 1509465163977)
|v $ {} (:type :expr) (:id |rk2NUhzUCW) (:by |root) (:at 1509465163977)
:data $ {}
|T $ {} (:type :leaf) (:text |recur) (:id |HkaVLhfIAZ) (:by |root) (:at 1509465163977)
|j $ {} (:type :expr) (:id |By0EUhfICW) (:by |root) (:at 1509465163977)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-one) (:id |BykgEIhGI0W) (:by |root) (:at 1509465163977)
|j $ {} (:type :leaf) (:text |base) (:id |r1exE8hMIC-) (:by |root) (:at 1509465163977)
|r $ {} (:type :expr) (:id |SyWeNL2fU0Z) (:by |root) (:at 1509465163977)
:data $ {}
|T $ {} (:type :leaf) (:text |first) (:id |r1flVL3zLRb) (:by |root) (:at 1509465163977)
|j $ {} (:type :leaf) (:text |changes) (:id |rJXlV83zU0Z) (:by |root) (:at 1509465163977)
|r $ {} (:type :expr) (:id |SkNeVUnG8RW) (:by |root) (:at 1509465163977)
:data $ {}
|T $ {} (:type :leaf) (:text |rest) (:id |ByrgV82GI0W) (:by |root) (:at 1509465163977)
|j $ {} (:type :leaf) (:text |changes) (:id |H18eV83zURZ) (:by |root) (:at 1509465163977)
|patch-vector-append $ {} (:type :expr) (:id |B1eQr2f8CZ) (:by |root) (:at 1509465147384)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |BJWQHhM8R-) (:by |root) (:at 1509465147384)
|j $ {} (:type :leaf) (:text |patch-vector-append) (:id |SkG7H2zI0b) (:by |root) (:at 1509465147384)
|r $ {} (:type :expr) (:id |Hk7QBnfL0-) (:by |root) (:at 1509465147384)
:data $ {}
|T $ {} (:type :leaf) (:text |base) (:id |SJ4XS2M8R-) (:by |root) (:at 1509465147384)
|j $ {} (:type :leaf) (:text |coord) (:id |BkSXHnMLAb) (:by |root) (:at 1509465147384)
|r $ {} (:type :leaf) (:text |data) (:id |r18XH3z8RZ) (:by |root) (:at 1509465147384)
|v $ {} (:type :expr) (:id |HyP7r2GIAW) (:by |root) (:at 1509465147384)
:data $ {}
|T $ {} (:type :leaf) (:text |update-in) (:id |SJdmr3MIAW) (:by |root) (:at 1509465147384)
|j $ {} (:type :leaf) (:text |base) (:id |BkKXB2z8Ab) (:by |root) (:at 1509465147384)
|r $ {} (:type :leaf) (:text |coord) (:id |rJ9QS2M80W) (:by |root) (:at 1509465147384)
|v $ {} (:type :expr) (:id |SJiXHhG80W) (:by |root) (:at 1509465147384)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:id |SJ3mShzLAb) (:by |root) (:at 1509465147384)
|j $ {} (:type :expr) (:id |HJaXS2f80Z) (:by |root) (:at 1509465147384)
:data $ {}
|T $ {} (:type :leaf) (:text |cursor) (:id |SyRmSnzLRb) (:by |root) (:at 1509465147384)
|v $ {} (:type :expr) (:id |S1l-p3UEyf) (:by |root) (:at 1510399161013)
:data $ {}
|T $ {} (:type :leaf) (:text |vec-add) (:id |S1l-p3UEyfleaf) (:by |root) (:at 1510399162798)
|j $ {} (:type :leaf) (:text |cursor) (:id |HyN6nUEJz) (:by |root) (:at 1510399169709)
|r $ {} (:type :leaf) (:text |data) (:id |ByW5a3LEJf) (:by |root) (:at 1510399170308)
|patch-vector-drop $ {} (:type :expr) (:id |HJgsBnGUCW) (:by |root) (:at 1509465155073)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |SJZsSnMUAW) (:by |root) (:at 1509465155073)
|j $ {} (:type :leaf) (:text |patch-vector-drop) (:id |ByzoSnzIRZ) (:by |root) (:at 1509465155073)
|r $ {} (:type :expr) (:id |HyQjBhGLAb) (:by |root) (:at 1509465155073)
:data $ {}
|T $ {} (:type :leaf) (:text |base) (:id |rJEjH3zURW) (:by |root) (:at 1509465155073)
|j $ {} (:type :leaf) (:text |coord) (:id |rkriBnMIRW) (:by |root) (:at 1509465155073)
|r $ {} (:type :leaf) (:text |data) (:id |HkLsB2MI0W) (:by |root) (:at 1509465155073)
|v $ {} (:type :expr) (:id |SkDsrnzUCW) (:by |root) (:at 1509465155073)
:data $ {}
|T $ {} (:type :leaf) (:text |update-in) (:id |S1OiHhfICW) (:by |root) (:at 1509465155073)
|j $ {} (:type :leaf) (:text |base) (:id |rytsB2MLRZ) (:by |root) (:at 1509465155073)
|r $ {} (:type :leaf) (:text |coord) (:id |B19sShGUAZ) (:by |root) (:at 1509465155073)
|v $ {} (:type :expr) (:id |HyjjHhMLR-) (:by |root) (:at 1509465155073)
:data $ {}
|T $ {} (:type :leaf) (:text |fn) (:id |Bk3oB3MIAW) (:by |root) (:at 1509465155073)
|j $ {} (:type :expr) (:id |SJajBhMLCW) (:by |root) (:at 1509465155073)
:data $ {}
|T $ {} (:type :leaf) (:text |cursor) (:id |SkRoBnG8R-) (:by |root) (:at 1509465155073)
|r $ {} (:type :expr) (:id |SkJlsBnGUC-) (:by |root) (:at 1509465155073)
:data $ {}
|T $ {} (:type :leaf) (:text |subvec) (:id |BygeiHhfUAb) (:by |root) (:at 1509465155073)
|j $ {} (:type :leaf) (:text |cursor) (:id |By-esrnzI0b) (:by |root) (:at 1509465155073)
|r $ {} (:type :leaf) (:text |0) (:id |SJMeoB2GUCb) (:by |root) (:at 1509465155073)
|v $ {} (:type :leaf) (:text |data) (:id |r17lir3MIRW) (:by |root) (:at 1509465155073)
:proc $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|recollect.schema $ {}
:ns $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |recollect.schema) (:by |root) (:at 1500476982536)
:defs $ {}
|store $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:by |root) (:at 1500476982536)
|j $ {} (:type :leaf) (:text |store) (:by |root) (:at 1500476982536)
|r $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1500476982536)
|j $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |:states) (:by |root) (:at 1500476982536)
|j $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:by |root) (:at 1500476982536)
|tree-op-assoc $ {} (:type :expr) (:id |Hygbey8Nyf) (:by |root) (:at 1510395625376)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |SyWZgJ8EJf) (:by |root) (:at 1510395754641)
|j $ {} (:type :leaf) (:text |tree-op-assoc) (:id |r1zZxyIVJz) (:by |root) (:at 1510395625376)
|r $ {} (:type :leaf) (:text |0) (:id |B1eruJI4kM) (:by |root) (:at 1510395757413)
|tree-op-dissoc $ {} (:type :expr) (:id |HkebW1LVyM) (:by |root) (:at 1510395641509)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |r1Wb-k84yz) (:by |root) (:at 1510395765557)
|j $ {} (:type :leaf) (:text |tree-op-dissoc) (:id |rkGWbJL41z) (:by |root) (:at 1510395641509)
|r $ {} (:type :leaf) (:text |1) (:id |S1g3dkUEyG) (:by |root) (:at 1510395764625)
|tree-op-seq-splice $ {} (:type :expr) (:id |rkepvyLEJz) (:by |root) (:at 1510395749463)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |r1-TPJ8Vkz) (:by |root) (:at 1510395807006)
|j $ {} (:type :leaf) (:text |tree-op-seq-splice) (:id |Hkz6P1UVyG) (:by |root) (:at 1510395749463)
|r $ {} (:type :leaf) (:text |5) (:id |HyeIi1L4kz) (:by |root) (:at 1510396679666)
|tree-op-set-splice $ {} (:type :expr) (:id |SygrvJIN1G) (:by |root) (:at 1510395740519)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |BybBP1U4kM) (:by |root) (:at 1510395791452)
|j $ {} (:type :leaf) (:text |tree-op-set-splice) (:id |HkfBv1UVyz) (:by |root) (:at 1510395740519)
|r $ {} (:type :leaf) (:text |4) (:id |rkZ85yLNkf) (:by |root) (:at 1510395790540)
|tree-op-vec-append $ {} (:type :expr) (:id |r1xWf18Nyz) (:by |root) (:at 1510395656922)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |rkbbGkIE1f) (:by |root) (:at 1510395773871)
|j $ {} (:type :leaf) (:text |tree-op-vec-append) (:id |SkfWfJ8V1z) (:by |root) (:at 1510395656922)
|r $ {} (:type :leaf) (:text |2) (:id |HylvFyLVJG) (:by |root) (:at 1510395775204)
|tree-op-vec-drop $ {} (:type :expr) (:id |ByerfJ8NJM) (:by |root) (:at 1510395661177)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |SkbSfyIV1G) (:by |root) (:at 1510395784648)
|j $ {} (:type :leaf) (:text |tree-op-vec-drop) (:id |HJMBMyU41M) (:by |root) (:at 1510395661177)
|r $ {} (:type :leaf) (:text |3) (:id |HkZyq1INJG) (:by |root) (:at 1510395783292)
:proc $ {} (:type :expr) (:by nil) (:at 1500476982536)
:data $ {}
|recollect.test $ {}
:ns $ {} (:type :expr) (:id |ByeAF4UN1M) (:by |root) (:at 1510397062373)
:data $ {}
|T $ {} (:type :leaf) (:text |ns) (:id |BkZCK48VJf) (:by |root) (:at 1510397062373)
|j $ {} (:type :leaf) (:text |recollect.test) (:id |Skf0KEU4JM) (:by |root) (:at 1510397062373)
|r $ {} (:type :expr) (:id |rJQ0KNU41M) (:by |root) (:at 1510397062373)
:data $ {}
|T $ {} (:type :leaf) (:text |:require) (:id |SJVRYVI4yz) (:by |root) (:at 1510397062373)
|j $ {} (:type :expr) (:id |B1rRKEI4kf) (:by |root) (:at 1510397062373)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |r1UAtE8VJz) (:by |root) (:at 1510397062373)
|j $ {} (:type :leaf) (:text |cljs.test) (:id |BkwCK4I41f) (:by |root) (:at 1510397062373)
|r $ {} (:type :leaf) (:text |:refer) (:id |HJu0KVINyM) (:by |root) (:at 1510397062373)
|v $ {} (:type :expr) (:id |BktCKE8Vkf) (:by |root) (:at 1510397062373)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |BJ50tV8NJG) (:by |root) (:at 1510397062373)
|j $ {} (:type :leaf) (:text |deftest) (:id |BkiCYVL4JG) (:by |root) (:at 1510397062373)
|r $ {} (:type :leaf) (:text |is) (:id |BJnAKN8E1z) (:by |root) (:at 1510397062373)
|v $ {} (:type :leaf) (:text |run-tests) (:id |ry6AKVU4kz) (:by |root) (:at 1510397062373)
|r $ {} (:type :expr) (:id |Sy0At4LNyM) (:by |root) (:at 1510397062373)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |r11x0KNLN1f) (:by |root) (:at 1510397062373)
|j $ {} (:type :leaf) (:text |recollect.diff) (:id |BJegAKNIEyf) (:by |root) (:at 1510397062373)
|r $ {} (:type :leaf) (:text |:refer) (:id |r1ZlAY484kG) (:by |root) (:at 1510397062373)
|v $ {} (:type :expr) (:id |ByGgCFVL4JG) (:by |root) (:at 1510397062373)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |B1QeCFELNkM) (:by |root) (:at 1510397062373)
|j $ {} (:type :leaf) (:text |diff-twig) (:id |HJVxAtEU4yG) (:by |root) (:at 1510397062373)
|t $ {} (:type :expr) (:id |S1xadHh4kG) (:by |root) (:at 1510397062373)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |r11x0KNLN1f) (:by |root) (:at 1510397062373)
|j $ {} (:type :leaf) (:text |recollect.patch) (:id |BJegAKNIEyf) (:by |root) (:at 1510421880774)
|r $ {} (:type :leaf) (:text |:refer) (:id |r1ZlAY484kG) (:by |root) (:at 1510397062373)
|v $ {} (:type :expr) (:id |ByGgCFVL4JG) (:by |root) (:at 1510397062373)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |B1QeCFELNkM) (:by |root) (:at 1510397062373)
|j $ {} (:type :leaf) (:text |patch-twig) (:id |HJVxAtEU4yG) (:by |root) (:at 1510421884483)
|v $ {} (:type :expr) (:id |BJeW9VLVkz) (:by |root) (:at 1510397065004)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |BJeW9VLVkzleaf) (:by |root) (:at 1510397065564)
|j $ {} (:type :leaf) (:text |recollect.schema) (:id |SJxzcNLEkG) (:by |root) (:at 1510397068143)
|r $ {} (:type :leaf) (:text |:as) (:id |SkHV5NL4JM) (:by |root) (:at 1510397068520)
|v $ {} (:type :leaf) (:text |schema) (:id |rkgr5EUNJM) (:by |root) (:at 1510397070260)
|x $ {} (:type :expr) (:id |H1VfhtVyM) (:by |root) (:at 1510411276045)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |H1VfhtVyMleaf) (:by |root) (:at 1510411276485)
|j $ {} (:type :leaf) (:text |recollect.util) (:id |HySMnKE1G) (:by |root) (:at 1510411286101)
|r $ {} (:type :leaf) (:text |:refer) (:id |B1i73tE1G) (:by |root) (:at 1510411300130)
|v $ {} (:type :expr) (:id |BJaX3KEkG) (:by |root) (:at 1510411300732)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |S1r27ht4kf) (:by |root) (:at 1510411301033)
|j $ {} (:type :leaf) (:text |vec-add) (:id |ByfaX2F4kf) (:by |root) (:at 1510411305460)
|r $ {} (:type :leaf) (:text |seq-add) (:id |HJfN3YNJz) (:by |root) (:at 1510411323874)
:defs $ {}
|test-diff-same-keyword $ {} (:type :expr) (:id |SyePAc6Sef) (:by |SygU7c6BlG) (:at 1511541455144)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:id |SkZv0cTrez) (:by |SygU7c6BlG) (:at 1511541468395)
|j $ {} (:type :leaf) (:text |test-diff-same-keyword) (:id |BkfvAq6Bxz) (:by |SygU7c6BlG) (:at 1511541455144)
|r $ {} (:type :expr) (:id |BJ7vA5THez) (:by |SygU7c6BlG) (:at 1511541455144)
:data $ {}
|v $ {} (:type :expr) (:id |SJgksTSlz) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:id |SJSft3zIRW) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |SyLfY2G8R-) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :expr) (:id |S1wMY3zIRW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |BJuzF3GLCZ) (:by |root) (:at 1509465210258)
|j $ {} (:type :leaf) (:text |:x) (:id |B1-9ljTrxz) (:by |SygU7c6BlG) (:at 1511541491478)
|j $ {} (:type :expr) (:id |S1ZgfF3fUA-) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |b) (:id |SyMlGKhGUCb) (:by |root) (:at 1509465210258)
|j $ {} (:type :leaf) (:text |:x) (:id |SyWaxo6SgG) (:by |SygU7c6BlG) (:at 1511542059512)
|r $ {} (:type :expr) (:id |H1olfthfU0W) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |options) (:id |Hy3gMF2zI0W) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |ryagGK2M8Ab) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |Hy0xzt2M8R-) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |HJJ-zK3MLRW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |:key) (:id |rJgWMY2GL0b) (:by |root) (:at 1509465210258)
|j $ {} (:type :leaf) (:text |:id) (:id |SJZZfthGL0-) (:by |root) (:at 1509465210258)
|v $ {} (:type :expr) (:id |SkeGNI3Vkf) (:by |root) (:at 1510422058511)
:data $ {}
|T $ {} (:type :leaf) (:text |changes) (:id |SkeGNI3Vkfleaf) (:by |root) (:at 1510422059229)
|j $ {} (:type :expr) (:id |Hy4EUnEJG) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |ByhZfF3GLA-) (:by |root) (:at 1509465210258)
|r $ {} (:type :expr) (:id |rkz-zK3fIRb) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:id |B1m-Mt3M8AZ) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |HJEbfYnG8AW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:id |H1rWMthGLAW) (:by |root) (:at 1509465210258)
|b $ {} (:type :leaf) (:text |changes) (:id |r1eNI2VJM) (:by |root) (:at 1510422056550)
|j $ {} (:type :expr) (:id |S1Ibft2GICW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |diff-twig) (:id |S1w-fY2fIC-) (:by |root) (:at 1509465210258)
|j $ {} (:type :leaf) (:text |a) (:id |HyuZzK2zLA-) (:by |root) (:at 1509465210258)
|r $ {} (:type :leaf) (:text |b) (:id |SJY-MK2G8C-) (:by |root) (:at 1509465210258)
|v $ {} (:type :leaf) (:text |options) (:id |HJ9-GthGI0b) (:by |root) (:at 1509465210258)
|v $ {} (:type :expr) (:id |S1L4Un41M) (:by |root) (:at 1510422062171)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:id |S1L4Un41Mleaf) (:by |root) (:at 1510422062571)
|j $ {} (:type :expr) (:id |B1-vEIhNkM) (:by |root) (:at 1510422062780)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:id |S1xvV83VkM) (:by |root) (:at 1510422062893)
|j $ {} (:type :leaf) (:text |b) (:id |S1XvEU2NJM) (:by |root) (:at 1510422064871)
|r $ {} (:type :expr) (:id |S1fYNU3Nyf) (:by |root) (:at 1510422065167)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-twig) (:id |BkWFN82E1f) (:by |root) (:at 1510422067303)
|j $ {} (:type :leaf) (:text |a) (:id |BknEU3V1f) (:by |root) (:at 1510422068117)
|r $ {} (:type :leaf) (:text |changes) (:id |HkWn4I2VkM) (:by |root) (:at 1510422069064)
|test-diff-maps $ {} (:type :expr) (:id |SygN9l3EkM) (:by |root) (:at 1510420619815)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:id |SkbEcx3VJz) (:by |root) (:at 1510420647356)
|j $ {} (:type :leaf) (:text |test-diff-maps) (:id |Byf45x2NyM) (:by |root) (:at 1510420619815)
|r $ {} (:type :expr) (:id |SkbbuaqVyG) (:by |root) (:at 1510415720890)
:data $ {}
|v $ {} (:type :expr) (:id |Sy7Op9Vkf) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:id |SJSft3zIRW) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |SyLfY2G8R-) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :expr) (:id |S1wMY3zIRW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |BJuzF3GLCZ) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |r1e7N0c4kf) (:by |root) (:at 1510415915211)
:data $ {}
|D $ {} (:type :leaf) (:text |{}) (:id |HJEECqE1G) (:by |root) (:at 1510415919907)
|T $ {} (:type :expr) (:id |H1bYVA5VJM) (:by |root) (:at 1510415921306)
:data $ {}
|D $ {} (:type :leaf) (:text |:a) (:id |r19NCqV1z) (:by |root) (:at 1510415921952)
|b $ {} (:type :expr) (:id |SJ9hgnV1z) (:by |root) (:at 1510420657817)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |B1xKhg2NJG) (:by |root) (:at 1510420658375)
|j $ {} (:type :expr) (:id |S1lo2eh4JG) (:by |root) (:at 1510420659012)
:data $ {}
|T $ {} (:type :leaf) (:text |:b) (:id |Hksnen4yM) (:by |root) (:at 1510420663957)
|j $ {} (:type :leaf) (:text |1) (:id |rk76e34Jf) (:by |root) (:at 1510420667486)
|j $ {} (:type :expr) (:id |S1ZgfF3fUA-) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |b) (:id |SyMlGKhGUCb) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |BJgnNRqE1G) (:by |root) (:at 1510415924247)
:data $ {}
|D $ {} (:type :leaf) (:text |{}) (:id |rkpN0941G) (:by |root) (:at 1510415925032)
|T $ {} (:type :expr) (:id |Hkl0VRq4yz) (:by |root) (:at 1510415925877)
:data $ {}
|D $ {} (:type :leaf) (:text |:a) (:id |ryWCEA541M) (:by |root) (:at 1510415926685)
|b $ {} (:type :expr) (:id |H1eL6enEJf) (:by |root) (:at 1510420670211)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SJUpehVyf) (:by |root) (:at 1510420670599)
|j $ {} (:type :expr) (:id |rJzvpxh4kf) (:by |root) (:at 1510420670870)
:data $ {}
|T $ {} (:type :leaf) (:text |:c) (:id |HJWP6xhE1f) (:by |root) (:at 1510420672767)
|j $ {} (:type :leaf) (:text |2) (:id |H1gY6ln4kG) (:by |root) (:at 1510420673370)
|r $ {} (:type :expr) (:id |S1lzq6c4yG) (:by |root) (:at 1510415754351)
:data $ {}
|T $ {} (:type :leaf) (:text |options) (:id |S1lzq6c4yGleaf) (:by |root) (:at 1510415755460)
|j $ {} (:type :expr) (:id |H1g4qa5VJf) (:by |root) (:at 1510415756094)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SyV5TcVkG) (:by |root) (:at 1510415757130)
|j $ {} (:type :expr) (:id |rJEH5a9Nyz) (:by |root) (:at 1510415757340)
:data $ {}
|T $ {} (:type :leaf) (:text |:key) (:id |SkmB9aqVyz) (:by |root) (:at 1510415758221)
|j $ {} (:type :leaf) (:text |:id) (:id |HkML5pqEyG) (:by |root) (:at 1510415759893)
|v $ {} (:type :expr) (:id |HyW70H2VJM) (:by |root) (:at 1510421963431)
:data $ {}
|T $ {} (:type :leaf) (:text |changes) (:id |SJlQ0Hh41z) (:by |root) (:at 1510421964233)
|j $ {} (:type :expr) (:id |S1SCrnVyz) (:by |root) (:at 1510420691490)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |B1goRl3V1M) (:by |root) (:at 1510420747380)
|j $ {} (:type :expr) (:id |HyIMZhEkf) (:by |root) (:at 1510420749791)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |rJBz-hEyG) (:by |root) (:at 1510420750529)
|j $ {} (:type :leaf) (:text |schema/tree-op-dissoc) (:id |B1lvfb24kz) (:by |root) (:at 1510420773354)
|r $ {} (:type :expr) (:id |BJgbNWn4JM) (:by |root) (:at 1510420776793)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |Hk-NWn4Jz) (:by |root) (:at 1510420777560)
|j $ {} (:type :leaf) (:text |:a) (:id |BJeM4Z3Vyz) (:by |root) (:at 1510420778279)
|v $ {} (:type :leaf) (:text |:b) (:id |r1BE-hN1G) (:by |root) (:at 1510420781604)
|r $ {} (:type :expr) (:id |BkvN-2EkM) (:by |root) (:at 1510420783084)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |BkvN-2EkMleaf) (:by |root) (:at 1510420783499)
|j $ {} (:type :leaf) (:text |schema/tree-op-assoc) (:id |ByO4b34JM) (:by |root) (:at 1510420790928)
|r $ {} (:type :expr) (:id |SkMSW3NkM) (:by |root) (:at 1510420793518)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |Hk-JHbhNJz) (:by |root) (:at 1510420794409)
|j $ {} (:type :leaf) (:text |:a) (:id |BJMzHZhNyM) (:by |root) (:at 1510420794948)
|r $ {} (:type :leaf) (:text |:c) (:id |ryZXSbn4yG) (:by |root) (:at 1510420797023)
|v $ {} (:type :leaf) (:text |2) (:id |r1ZBHWhNkM) (:by |root) (:at 1510420804548)
|r $ {} (:type :expr) (:id |rkz-zK3fIRb) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:id |B1m-Mt3M8AZ) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |HJEbfYnG8AW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:id |H1rWMthGLAW) (:by |root) (:at 1509465210258)
|V $ {} (:type :leaf) (:text |changes) (:id |BkbCBnVyf) (:by |root) (:at 1510421961405)
|X $ {} (:type :expr) (:id |HyOcnYV1z) (:by |root) (:at 1510411407745)
:data $ {}
|T $ {} (:type :leaf) (:text |diff-twig) (:id |Bylv92tVJz) (:by |root) (:at 1510415740384)
|j $ {} (:type :leaf) (:text |a) (:id |ryTcntNJM) (:by |root) (:at 1510411413111)
|r $ {} (:type :leaf) (:text |b) (:id |SybT92YN1f) (:by |root) (:at 1510411413808)
|v $ {} (:type :leaf) (:text |options) (:id |rJgK96qE1f) (:by |root) (:at 1510415762374)
|v $ {} (:type :expr) (:id |S1WvCShEkf) (:by |root) (:at 1510421967427)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:id |S1WvCShEkfleaf) (:by |root) (:at 1510421968294)
|j $ {} (:type :expr) (:id |H1t0Sh41f) (:by |root) (:at 1510421968870)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:id |HkWuABh4kG) (:by |root) (:at 1510421968506)
|j $ {} (:type :leaf) (:text |b) (:id |B1xKCB34kM) (:by |root) (:at 1510421970159)
|r $ {} (:type :expr) (:id |BJbc0r34JG) (:by |root) (:at 1510421970437)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-twig) (:id |H1x9AS3NJz) (:by |root) (:at 1510421972785)
|j $ {} (:type :leaf) (:text |a) (:id |SJ00r2EJM) (:by |root) (:at 1510421974420)
|r $ {} (:type :leaf) (:text |changes) (:id |HJmARHhV1M) (:by |root) (:at 1510421975433)
|test-diff-sets $ {} (:type :expr) (:id |rkeHBfhEyz) (:by |root) (:at 1510421053075)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:id |BJbSHM24JG) (:by |root) (:at 1510421065744)
|j $ {} (:type :leaf) (:text |test-diff-sets) (:id |ByfHHGnV1z) (:by |root) (:at 1510421053075)
|n $ {} (:type :expr) (:id |B1LUGhE1G) (:by |root) (:at 1510415720890)
:data $ {}
|r $ {} (:type :expr) (:id |r1OIf34kz) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:id |SJSft3zIRW) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |SyLfY2G8R-) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :expr) (:id |S1wMY3zIRW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |BJuzF3GLCZ) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |r1e7N0c4kf) (:by |root) (:at 1510415915211)
:data $ {}
|D $ {} (:type :leaf) (:text |{}) (:id |HJEECqE1G) (:by |root) (:at 1510415919907)
|T $ {} (:type :expr) (:id |H1bYVA5VJM) (:by |root) (:at 1510415921306)
:data $ {}
|D $ {} (:type :leaf) (:text |:a) (:id |r19NCqV1z) (:by |root) (:at 1510415921952)
|b $ {} (:type :expr) (:id |ryWGYf2EJz) (:by |root) (:at 1510421114287)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:id |SkeGYGn4kG) (:by |root) (:at 1510421115481)
|j $ {} (:type :leaf) (:text |1) (:id |BkVtz2Nyf) (:by |root) (:at 1510421116303)
|r $ {} (:type :leaf) (:text |2) (:id |BJb4FMhVyM) (:by |root) (:at 1510421116528)
|v $ {} (:type :leaf) (:text |3) (:id |H1gBKfh41f) (:by |root) (:at 1510421117181)
|j $ {} (:type :expr) (:id |S1ZgfF3fUA-) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |b) (:id |SyMlGKhGUCb) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |BJgnNRqE1G) (:by |root) (:at 1510415924247)
:data $ {}
|D $ {} (:type :leaf) (:text |{}) (:id |rkpN0941G) (:by |root) (:at 1510415925032)
|T $ {} (:type :expr) (:id |Hkl0VRq4yz) (:by |root) (:at 1510415925877)
:data $ {}
|D $ {} (:type :leaf) (:text |:a) (:id |ryWCEA541M) (:by |root) (:at 1510415926685)
|b $ {} (:type :expr) (:id |SkdFz2V1z) (:by |root) (:at 1510421119609)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:id |Hk-wtM3VyG) (:by |root) (:at 1510421121719)
|j $ {} (:type :leaf) (:text |2) (:id |B1-9KG2NyM) (:by |root) (:at 1510421123642)
|r $ {} (:type :leaf) (:text |3) (:id |r1xhYG241z) (:by |root) (:at 1510421123934)
|v $ {} (:type :leaf) (:text |4) (:id |Syz2Fz2Vyz) (:by |root) (:at 1510421124237)
|r $ {} (:type :expr) (:id |S1lzq6c4yG) (:by |root) (:at 1510415754351)
:data $ {}
|T $ {} (:type :leaf) (:text |options) (:id |S1lzq6c4yGleaf) (:by |root) (:at 1510415755460)
|j $ {} (:type :expr) (:id |H1g4qa5VJf) (:by |root) (:at 1510415756094)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SyV5TcVkG) (:by |root) (:at 1510415757130)
|j $ {} (:type :expr) (:id |rJEH5a9Nyz) (:by |root) (:at 1510415757340)
:data $ {}
|T $ {} (:type :leaf) (:text |:key) (:id |SkmB9aqVyz) (:by |root) (:at 1510415758221)
|j $ {} (:type :leaf) (:text |:id) (:id |HkML5pqEyG) (:by |root) (:at 1510415759893)
|v $ {} (:type :expr) (:id |rJVLHhNJz) (:by |root) (:at 1510421835711)
:data $ {}
|T $ {} (:type :leaf) (:text |changes) (:id |B1lQUHh4kz) (:by |root) (:at 1510421836456)
|j $ {} (:type :expr) (:id |B1lHUB24JG) (:by |root) (:at 1510421130702)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SJezqGhV1G) (:by |root) (:at 1510421132041)
|j $ {} (:type :expr) (:id |BkgxiGnNkG) (:by |root) (:at 1510421144505)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |S1eoM2E1G) (:by |root) (:at 1510421144924)
|j $ {} (:type :leaf) (:text |schema/tree-op-set-splice) (:id |rJbbiM341z) (:by |root) (:at 1510421172947)
|r $ {} (:type :expr) (:id |Bkg-aG2Nyz) (:by |root) (:at 1510421176926)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SJWpMnNkG) (:by |root) (:at 1510421177954)
|j $ {} (:type :leaf) (:text |:a) (:id |rJgG6znNyG) (:by |root) (:at 1510421178850)
|v $ {} (:type :expr) (:id |H1bN6zhVkG) (:by |root) (:at 1510421180497)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SklNpznVJM) (:by |root) (:at 1510421182043)
|j $ {} (:type :expr) (:id |SyN86M2Nkf) (:by |root) (:at 1510421182480)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:id |r1mUTf3Nyf) (:by |root) (:at 1510421186342)
|j $ {} (:type :leaf) (:text |1) (:id |rkoaGhVyf) (:by |root) (:at 1510421186906)
|r $ {} (:type :expr) (:id |SJe2pfnEJM) (:by |root) (:at 1510421187766)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:id |SJe2pfnEJMleaf) (:by |root) (:at 1510421189518)
|j $ {} (:type :leaf) (:text |4) (:id |r1JRGhEkz) (:by |root) (:at 1510421191439)
|r $ {} (:type :expr) (:id |rkz-zK3fIRb) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:id |B1m-Mt3M8AZ) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |HJEbfYnG8AW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:id |H1rWMthGLAW) (:by |root) (:at 1509465210258)
|V $ {} (:type :leaf) (:text |changes) (:id |rkx1iBnE1M) (:by |root) (:at 1510421911132)
|X $ {} (:type :expr) (:id |HyOcnYV1z) (:by |root) (:at 1510411407745)
:data $ {}
|T $ {} (:type :leaf) (:text |diff-twig) (:id |Bylv92tVJz) (:by |root) (:at 1510415740384)
|j $ {} (:type :leaf) (:text |a) (:id |ryTcntNJM) (:by |root) (:at 1510411413111)
|r $ {} (:type :leaf) (:text |b) (:id |SybT92YN1f) (:by |root) (:at 1510411413808)
|v $ {} (:type :leaf) (:text |options) (:id |rJgK96qE1f) (:by |root) (:at 1510415762374)
|v $ {} (:type :expr) (:id |HyzjS3VkM) (:by |root) (:at 1510421913642)
:data $ {}
|D $ {} (:type :leaf) (:text |is) (:id |HklMirnEyf) (:by |root) (:at 1510421915547)
|T $ {} (:type :expr) (:id |r1lu8r2Ekf) (:by |root) (:at 1510421840270)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:id |r1lu8r2Ekfleaf) (:by |root) (:at 1510421913157)
|j $ {} (:type :leaf) (:text |b) (:id |r1qLB2EkM) (:by |root) (:at 1510421854890)
|r $ {} (:type :expr) (:id |Sy-PwS341z) (:by |root) (:at 1510421855195)
:data $ {}
|T $ {} (:type :leaf) (:text |patch-twig) (:id |SkgPwrhVyG) (:by |root) (:at 1510421859967)
|j $ {} (:type :leaf) (:text |a) (:id |rJb3DrnN1M) (:by |root) (:at 1510421860635)
|r $ {} (:type :leaf) (:text |changes) (:id |BJxTwrn4kz) (:by |root) (:at 1510421862008)
|test-diff-same-sets $ {} (:type :expr) (:id |B1eWIH3-eG) (:by |root) (:at 1511273800585)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:id |B1-ZLrhbgz) (:by |root) (:at 1511273925279)
|j $ {} (:type :leaf) (:text |test-diff-same-sets) (:id |HyMZ8HnZxz) (:by |root) (:at 1511273800585)
|r $ {} (:type :expr) (:id |BkXWIH2bef) (:by |root) (:at 1511273800585)
:data $ {}
|v $ {} (:type :expr) (:id |S1EDS2Wxf) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:id |SJSft3zIRW) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |SyLfY2G8R-) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :expr) (:id |S1wMY3zIRW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |BJuzF3GLCZ) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |r1e7N0c4kf) (:by |root) (:at 1510415915211)
:data $ {}
|D $ {} (:type :leaf) (:text |{}) (:id |HJEECqE1G) (:by |root) (:at 1510415919907)
|T $ {} (:type :expr) (:id |H1bYVA5VJM) (:by |root) (:at 1510415921306)
:data $ {}
|D $ {} (:type :leaf) (:text |:a) (:id |r19NCqV1z) (:by |root) (:at 1510415921952)
|b $ {} (:type :expr) (:id |ryWGYf2EJz) (:by |root) (:at 1510421114287)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:id |SkeGYGn4kG) (:by |root) (:at 1510421115481)
|j $ {} (:type :leaf) (:text |1) (:id |BkVtz2Nyf) (:by |root) (:at 1510421116303)
|r $ {} (:type :leaf) (:text |2) (:id |BJb4FMhVyM) (:by |root) (:at 1510421116528)
|v $ {} (:type :leaf) (:text |3) (:id |H1gBKfh41f) (:by |root) (:at 1510421117181)
|j $ {} (:type :expr) (:id |S1ZgfF3fUA-) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |b) (:id |SyMlGKhGUCb) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |BJgnNRqE1G) (:by |root) (:at 1510415924247)
:data $ {}
|D $ {} (:type :leaf) (:text |{}) (:id |rkpN0941G) (:by |root) (:at 1510415925032)
|T $ {} (:type :expr) (:id |Hkl0VRq4yz) (:by |root) (:at 1510415925877)
:data $ {}
|D $ {} (:type :leaf) (:text |:a) (:id |ryWCEA541M) (:by |root) (:at 1510415926685)
|b $ {} (:type :expr) (:id |SkdFz2V1z) (:by |root) (:at 1510421119609)
:data $ {}
|T $ {} (:type :leaf) (:text |#{}) (:id |Hk-wtM3VyG) (:by |root) (:at 1510421121719)
|b $ {} (:type :leaf) (:text |1) (:id |HJtvH3ZgG) (:by |root) (:at 1511273824927)
|j $ {} (:type :leaf) (:text |2) (:id |B1-9KG2NyM) (:by |root) (:at 1510421123642)
|r $ {} (:type :leaf) (:text |3) (:id |r1xhYG241z) (:by |root) (:at 1510421123934)
|r $ {} (:type :expr) (:id |S1lzq6c4yG) (:by |root) (:at 1510415754351)
:data $ {}
|T $ {} (:type :leaf) (:text |options) (:id |S1lzq6c4yGleaf) (:by |root) (:at 1510415755460)
|j $ {} (:type :expr) (:id |H1g4qa5VJf) (:by |root) (:at 1510415756094)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |SyV5TcVkG) (:by |root) (:at 1510415757130)
|j $ {} (:type :expr) (:id |rJEH5a9Nyz) (:by |root) (:at 1510415757340)
:data $ {}
|T $ {} (:type :leaf) (:text |:key) (:id |SkmB9aqVyz) (:by |root) (:at 1510415758221)
|j $ {} (:type :leaf) (:text |:id) (:id |HkML5pqEyG) (:by |root) (:at 1510415759893)
|v $ {} (:type :expr) (:id |rJVLHhNJz) (:by |root) (:at 1510421835711)
:data $ {}
|T $ {} (:type :leaf) (:text |changes) (:id |B1lQUHh4kz) (:by |root) (:at 1510421836456)
|j $ {} (:type :expr) (:id |B1lHUB24JG) (:by |root) (:at 1510421130702)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |SJezqGhV1G) (:by |root) (:at 1510421132041)
|n $ {} (:type :expr) (:id |ryxQ2ShWgM) (:by |root) (:at 1511273899160)
:data $ {}
|T $ {} (:type :leaf) (:text |print) (:id |ryxQ2ShWgMleaf) (:by |root) (:at 1511273903148)
|j $ {} (:type :leaf) (:text |changes) (:id |rJEv3H2-gG) (:by |root) (:at 1511273906198)
|r $ {} (:type :expr) (:id |rkz-zK3fIRb) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |is) (:id |B1m-Mt3M8AZ) (:by |root) (:at 1509465210258)
|j $ {} (:type :expr) (:id |HJEbfYnG8AW) (:by |root) (:at 1509465210258)
:data $ {}
|T $ {} (:type :leaf) (:text |=) (:id |H1rWMthGLAW) (:by |root) (:at 1509465210258)
|V $ {} (:type :leaf) (:text |changes) (:id |rkx1iBnE1M) (:by |root) (:at 1510421911132)
|X $ {} (:type :expr) (:id |HyOcnYV1z) (:by |root) (:at 1510411407745)
:data $ {}
|T $ {} (:type :leaf) (:text |diff-twig) (:id |Bylv92tVJz) (:by |root) (:at 1510415740384)
|j $ {} (:type :leaf) (:text |a) (:id |ryTcntNJM) (:by |root) (:at 1510411413111)
|r $ {} (:type :leaf) (:text |b) (:id |SybT92YN1f) (:by |root) (:at 1510411413808)
|v $ {} (:type :leaf) (:text |options) (:id |rJgK96qE1f) (:by |root) (:at 1510415762374)
|test-diff-map-by-ids $ {} (:type :expr) (:id |ryl1KEUVJM) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |deftest) (:id |BJW1F48NJG) (:by |root) (:at 1510397046924)
|j $ {} (:type :leaf) (:text |test-diff-map-by-ids) (:id |SyGJtV8VJM) (:by |root) (:at 1510397046924)
|r $ {} (:type :expr) (:id |HJmJF4UNJf) (:by |root) (:at 1510397046924)
:data $ {}
|v $ {} (:type :expr) (:id |ryEyFEUNyG) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |let) (:id |HJH1YVINyM) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |B1LkYNLNkz) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :expr) (:id |ryD1F4IE1z) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |a) (:id |rku1Y4L4kM) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |B1KkKVUNyf) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |rkqJKELVkG) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |HkokKVLVyf) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:id |r1hJYN841f) (:by |root) (:at 1510397046924)
|j $ {} (:type :leaf) (:text |1) (:id |Skp1F4UEyz) (:by |root) (:at 1510397046924)
|r $ {} (:type :expr) (:id |rkCkt4841G) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |:data) (:id |H1JlktVLNyf) (:by |root) (:at 1510397046924)
|j $ {} (:type :leaf) (:text |1) (:id |B1xg1KVU41f) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |S1Zl1YEIEkf) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |b) (:id |HJMekF48Nkz) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |Hy7eJKVU4Jz) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |S1NgkK48VkM) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |rySektV8VkG) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:id |H1Il1FNUEJz) (:by |root) (:at 1510397046924)
|j $ {} (:type :leaf) (:text |2) (:id |SkvgJFNU4yM) (:by |root) (:at 1510397046924)
|r $ {} (:type :expr) (:id |S1ulyKVLVkM) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |:data) (:id |rytgJtEI4kf) (:by |root) (:at 1510397046924)
|j $ {} (:type :leaf) (:text |1) (:id |H15gyF48EyM) (:by |root) (:at 1510397046924)
|r $ {} (:type :expr) (:id |BJigJtVUN1G) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |options) (:id |SknxyFNU4yz) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |ry6xJK4I4kz) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HkCxytVU4kz) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |r1JWkYELVyM) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |:key) (:id |BklbJY48EJf) (:by |root) (:at 1510397046924)
|j $ {} (:type :leaf) (:text |:id) (:id |HJZbJF4IV1G) (:by |root) (:at 1510397046924)
|v $ {} (:type :expr) (:id |ryeNz8h41G) (:by |root) (:at 1510422027953)
:data $ {}
|T $ {} (:type :leaf) (:text |changes) (:id |S1NMIhN1f) (:by |root) (:at 1510422028666)
|j $ {} (:type :expr) (:id |BkMrMU34kG) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |H12-JF4UE1G) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |HypZytVIVkG) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |HJRZktNUNyM) (:by |root) (:at 1510397046924)
|b $ {} (:type :leaf) (:text |schema/tree-op-assoc) (:id |ry_Fat4Jf) (:by |root) (:at 1510411648209)
|j $ {} (:type :expr) (:id |By1zJt4841z) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |HJgzkFNLVkz) (:by |root) (:at 1510397046924)
|v $ {} (:type :expr) (:id |ByMM1YNU4kG) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |HJ7z1tV8VkG) (:by |root) (:at 1510397046924)
|j $ {} (:type :expr) (:id |HJNfJKE8V1G) (:by |root) (:at 1510397046924)
:data $ {}
|T $ {} (:type :leaf) (:text |:id) (:id |HkSGyFVUVkG) (:by |root) (:at 1510397046924)
|j $ {} (:type :leaf) (:text |2) (:id |SJ8GJtV8VkG) (:by |root) (:at 1510397046924)
|r $ {} (:type :expr) (:id |H1vMJtVUEkG) (:by |root) (:at 1510397046924)
:data $ {}