generated from mvc-works/calcit-nodejs-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
9338 lines (9337 loc) · 760 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 $ {}
|rJG4IHzWf $ {} (:id |rJG4IHzWf) (: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 |lilac-parser)
:files $ {}
|lilac-parser.updater $ {}
:ns $ {} (:type :expr) (:time 1499755354983) (:id |B1Z1gjdFqaBZ)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |ns) (:id |SkG1lo_t9pHZ)
|j $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |lilac-parser.updater) (:id |B17kxjdFq6r-)
|r $ {} (:type :expr) (:author |root) (:time 1507399862664) (:id |rykTu9L2Z)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1507399864640) (:text |:require) (:id |H1xR2d5Uh-)
|j $ {} (:type :expr) (:author |root) (:time 1507399864883) (:id |r17bT_cLnZ)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1507399865654) (:text |[]) (:id |rkf-6u9InW)
|j $ {} (:type :leaf) (:author |root) (:time 1507399873143) (:text |respo.cursor) (:id |Hkefpu983W)
|r $ {} (:type :leaf) (:author |root) (:time 1507399874041) (:text |:refer) (:id |rkrYaO5UnZ)
|v $ {} (:type :expr) (:author |root) (:time 1507399874214) (:id |BkUcpdc83b)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1507399874938) (:text |[]) (:id |BJBqpOq8hZ)
|j $ {} (:type :leaf) (:author |root) (:time 1507399875675) (:text |update-states) (:id |rJbi6_c83-) (:at 1586663128996) (:by |rJG4IHzWf)
:defs $ {}
|updater $ {} (:type :expr) (:time 1499755354983) (:id |SkS1lout5aBb)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |defn) (:id |H1U1esuY5TBZ)
|j $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |updater) (:id |SJwJxj_Y5aHZ)
|r $ {} (:type :expr) (:time 1499755354983) (:id |SkdkeiOK5TBZ)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |store) (:id |r1YyxidF96rW)
|j $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |op) (:id |r1cJxouK5aSZ)
|r $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |op-data) (:id |Bkj1ljdY5Tr-)
|v $ {} (:type :leaf) (:by |root) (:at 1519489491135) (:text |op-id) (:id |S1gUCbfy_G)
|x $ {} (:type :leaf) (:by |root) (:at 1519489492110) (:text |op-time) (:id |ryzsAWMkdG)
|v $ {} (:type :expr) (:time 1499755354983) (:id |BJ2yxjOKqpHb)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |case) (:id |ry61gjOFqpH-)
|j $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |op) (:id |HyAylout56Hb)
|n $ {} (:type :expr) (:author |root) (:time 1507399852251) (:id |ryNh_5L3b)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1507399855618) (:text |:states) (:id |HJxX2OqUh-)
|j $ {} (:type :expr) (:author |root) (:time 1507399856471) (:id |Sk-_hdqU2b)
:data $ {}
|T $ {} (:type :leaf) (:author |root) (:time 1507399857991) (:text |update-states) (:id |rylOn_5I2Z) (:at 1586663135188) (:by |rJG4IHzWf)
|j $ {} (:type :leaf) (:author |root) (:time 1507399858922) (:text |store) (:id |ByE92uq82b)
|n $ {} (:type :leaf) (:author |root) (:time 1507400135515) (:text |op-data) (:id |ByxCTYqL3W) (:at 1586663138819) (:by |rJG4IHzWf)
|r $ {} (:type :expr) (:time 1499755354983) (:id |S1kexiuF9arZ)
:data $ {}
|T $ {} (:type :leaf) (:author |rJG4IHzWf) (:time 1512359657160) (:text |:content) (:id |S1lxeout56HW)
|j $ {} (:type :expr) (:time 1499755354983) (:id |SJ-gxidtcTrZ)
:data $ {}
|T $ {} (:type :leaf) (:author |rJG4IHzWf) (:time 1512359666053) (:text |assoc) (:id |BkfgesdF9TH-)
|j $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |store) (:id |HJQeloOt5TrZ)
|r $ {} (:type :leaf) (:author |rJG4IHzWf) (:time 1512359660859) (:text |:content) (:id |HkNexodK9Tr-)
|v $ {} (:type :leaf) (:author |rJG4IHzWf) (:time 1512359663126) (:text |op-data) (:id |B1eIlwHzbz)
|t $ {} (:type :expr) (:by |root) (:at 1518157547521) (:id |SkNl1ac8z)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518157657108) (:text |:hydrate-storage) (:id |SkNl1ac8zleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1518157553355) (:text |op-data) (:id |SJzueyp5Iz)
|v $ {} (:type :leaf) (:author |root) (:time 1499755354983) (:text |store) (:id |S1Lexs_tcpBZ)
:proc $ {} (:type :expr) (:time 1499755354983) (:id |HJ41lsuY5pSZ) (:data $ {})
|lilac-parser.core $ {}
:ns $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |ns) (:id |xXTCNxk3C)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |lilac-parser.core) (:id |LBa9RVQGz)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:require-macros) (:id |g4P94CkUY)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |[]) (:id |r-bLNVQKA)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |lilac-parser.core) (:id |wd4tE-3FP)
:id |mqEr2uUli
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1593949689123)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593949689123) (:text |[]) (:id |kVPGZXJASi)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593949689123) (:text |clojure.core.strint) (:id |nl5XNe3ksI)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593949689123) (:text |:refer) (:id |7Z3tyM7a7v)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1593949689123)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593949689123) (:text |[]) (:id |NoyqtWp1VJ)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593949689123) (:text |<<) (:id |JU3hyRyHys)
:id |z2SkpvnLoa
:id |TYb60UcD9D
:id |C6duGjg3w
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584185344109)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584185347045) (:text |:require) (:id |RIEppgu6leaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584185347308)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584185349095) (:text |[]) (:id |QmSVOAXH)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584185352032) (:text |clojure.string) (:id |NEQwZjLHg)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584185352414) (:text |:as) (:id |0NBEa5wh)
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584185353115) (:text |string) (:id |BoEcGb1zo)
:id |1pm5C9niW
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588583714225)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588583714843) (:text |[]) (:id |8nhgzFWiZleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588583769218) (:text |lilac-parser.config) (:id |6pJ-DRZ2V4)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588583772546) (:text |:refer) (:id |IvuTlM8EAw)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588583772734)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588583774255) (:text |[]) (:id |9PJHFeIUCw)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588583775273) (:text |dev?) (:id |v6cqamiVTe)
:id |-tlJdAmfMd
:id |8nhgzFWiZ
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590168336700)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590168336700) (:text |[]) (:id |5OZY_zG_fk)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590168336700) (:text |lilac-parser.util) (:id |dtVOZczs-B)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590168336700) (:text |:refer) (:id |iZj8fRCOvG)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590168336700)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590168336700) (:text |[]) (:id |qu5k06x6uv)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590168336700) (:text |seq-strip-beginning) (:id |VaDBdOH80E)
:id |_mRb_0tlel
:id |n1on-MQrKy
:id |RIEppgu6
:id |j0_nfxFtz
:defs $ {}
|parse-label $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867346187)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867346187) (:text |defn) (:id |RYxwiFMjTZ)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867346187) (:text |parse-label) (:id |j248bJk0eK)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867346187)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867363188) (:text |xs) (:id |gryL1x3EuZ)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867363936) (:text |rule) (:id |SOBGfvwial)
:id |wxzn2nTWo4
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867426796)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867427301) (:text |let) (:id |M2AOejHVtJleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867427928)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867428100)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867432352) (:text |result) (:id |A0CpsS83a)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867433140)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867433140) (:text |parse-lilac) (:id |UCa3N5E4mw)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867433140) (:text |xs) (:id |49kZNv6nO5)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867437086)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867510458) (:text |:item) (:id |hXw7qOfF1)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867438801) (:text |rule) (:id |EKeeGqQ_UW)
:id |TMQILHZW6
:id |n5wma9csx3
:id |zlDNnC7uP
:id |9mxdHKL7p6
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867444729)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867445135) (:text |if) (:id |6hK4WwyuWleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867446203)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867449031) (:text |:ok?) (:id |tVm7U6-sUE)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867451032) (:text |result) (:id |C2D3aCQZs)
:id |Z2s9Q-K_l
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867451829)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867452473) (:text |{}) (:id |vixhNQNNeHleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867455800)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867456736) (:text |:ok?) (:id |AqELJILhc)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867457349) (:text |true) (:id |IWUi7V_ip6)
:id |Pv4olUcRaA
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867458206)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867459087) (:text |:value) (:id |ORHocxKOEleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867460557)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867461954) (:text |:value) (:id |sjlThOBvWg)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867463592) (:text |result) (:id |MOHRN9z6Wm)
:id |45BxxCmOp
:id |ORHocxKOE
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867464356)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867466367) (:text |:rest) (:id |Yz9cy5XCTnleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867466872)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867546778) (:text |:rest) (:id |hZfxArCjwA)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867469476) (:text |result) (:id |QG4_qu7HnY)
:id |hLeSk9tHrN
:id |Yz9cy5XCTn
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867476182)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867478832) (:text |:parser-node) (:id |IzcdqmK1qleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588868199167) (:text |:label) (:id |QuF26IIwTn)
:id |IzcdqmK1q
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588868117144)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588868117144) (:text |:result) (:id |3G11TDrf50)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588868117144) (:text |result) (:id |WHx78EsPjK)
:id |mXKE25NrcT
|p $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588868188741)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588868191393) (:text |:label) (:id |IzcdqmK1qleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588868196836)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588868196836) (:text |:label) (:id |Xo51O2bFmZ)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588868196836) (:text |rule) (:id |07vRsg8Sq3)
:id |6BuR2Y_Hxd
:id |9rVMAEA34
:text |:la
:id |vixhNQNNeH
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867511855)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867512347) (:text |{}) (:id |HoX459cY9qleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867512992)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867516821) (:text |:ok?) (:id |0JRsFDmd7A)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867515637) (:text |false) (:id |Hi4akNzR6)
:id |ms72fOIFiH
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867527419)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867527419) (:text |:parser-node) (:id |2AwItXwkXI)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867780457) (:text |:label) (:id |-xQhbJ7rf1)
:id |L2Go7eE98B
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867528253)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867529940) (:text |:result) (:id |Is-BdYdXzleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867537720) (:text |result) (:id |hsBbhuSXUS)
:id |Is-BdYdXz
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867538517)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867539410) (:text |:rest) (:id |MZtj700bL1leaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867540269)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867542268) (:text |:rest) (:id |_KNiN-_ss)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867544706) (:text |result) (:id |F3uap8KFUx)
:id |LB9TKb9_Pg
:id |MZtj700bL1
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867699596)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867701272) (:text |:message) (:id |a-kAhfS_Dleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588869289388) (:text |nil) (:id |IPFENRVsTm)
:id |a-kAhfS_D
|t $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867527419)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588868209505) (:text |:label) (:id |2AwItXwkXI)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588867780457)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867780457) (:text |:label) (:id |-xQhbJ7rf1)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588867780457) (:text |rule) (:id |AHyRbf2AGP)
:id |kFGuBk5M21
:id |P9bfxLBGxx
:id |HoX459cY9q
:id |6hK4WwyuW
:id |M2AOejHVtJ
:id |OeVyJ-wN2q
|core-methods $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167847157)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167848583) (:text |def) (:id |ZzD0rT270m)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167847157) (:text |core-methods) (:id |3c1dLw0jl_)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167847157)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167851641) (:text |{}) (:id |1ACcdd8_6)
|yr $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:one-of) (:id |_0NgKM-sIGT)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-one-of) (:id |tjH2KX-qSQh)
:id |Ro0DZ5VtvJ7
|yT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:component) (:id |H_OnbiyvjUr)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-component) (:id |3KEhVEypZaI)
:id |hLGaxlY34Xj
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:is) (:id |rktw1tf7jz)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-is) (:id |8oCXjeYRTb)
:id |YInUc7t7u7
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:some) (:id |anZw7KKJagZ)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-some) (:id |7DWePY72BsQ)
:id |_58xnsG-ork
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:many) (:id |vm6sRjubUIr)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-many) (:id |Ohhpe3PMI_9)
:id |cVPGqKsfTN6
|yj $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:combine) (:id |eSaswgOEo3t)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-combine) (:id |MgqBxGLlzcl)
:id |_pAZVXlHqEy
|yx $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:other-than) (:id |oLaVaKVEgl7)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-other-than) (:id |jAu5MTPEj-E)
:id |IF_PDRIdS0x
|yyT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1593949766788)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593949772959) (:text |:unicode-range) (:id |Kc_-30k-Mleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1593949779132) (:text |parse-unicode-range) (:id |Dzwons2cUF)
:id |Kc_-30k-M
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:or) (:id |fUZqXne3Yj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167889352) (:text |parse-or) (:id |Ih4Um_ziBiS)
:id |dJ7quSTjEx
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:optional) (:id |gj8neN3_EE7)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-optional) (:id |Nm1bYsnGKUX)
:id |8mYInKw2DHq
|yy $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:label) (:id |veFlxFWPFHP)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-label) (:id |Jj9DDeSxvE9)
:id |q6IwL3CmENJ
|yv $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1590167861555)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |:interleave) (:id |iFGcqbsAgNe)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1590167861555) (:text |parse-interleave) (:id |yStlQe0k_UN)
:id |d2kEyKSyKrO
:id |YvqeVbOufW
:id |npQReVXXXr
|many+ $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100343011) (:text |defn$) (:id |-CrNU2sVJP)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |many+) (:id |_7_haH0Acd)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1589100345564)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |{}) (:id |gG7ntlQejO)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:parser-node) (:id |NAqxsyO3x8)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:many) (:id |OqFFFyfaWO)
:id |OCM8kSt1FX
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:item) (:id |42YmQFUPuV)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584193219382) (:text |item) (:id |uoosMctrg1)
:id |2PZfpKTNto
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1589100364321)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100364937) (:text |:transform) (:id |P8RLqNNACHleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100365732) (:text |transform) (:id |bz-s_uW8X)
:id |P8RLqNNACH
:id |0bM-lsJtp3
|D $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1589100346875)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100346875) (:text |item) (:id |XVN9Fzo8r0)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100362346) (:text |transform) (:id |PEJGZOPKs)
:id |2QOaGxQfbz
:id |prP1KqDlQq
|p $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1589100349296)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1589100349898)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100350414) (:text |item) (:id |DZApcpJJtleaf)
:id |2XiHweXI0H
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1589100352622)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100354188) (:text |many+) (:id |-UWVBywQqm)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100354763) (:text |item) (:id |TOdwK8l7kZ)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1589100355680) (:text |nil) (:id |tMa_tLGp0O)
:id |cJJsNhRhH
:id |DZApcpJJt
:id |p-85UGaRNJ
|indent+ $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588676735007) (:text |defn$) (:id |MtL5mD7Qcl)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |indent+) (:id |f3F77l0kQo)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588676692427)
:data $ {}
|D $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588676693304) (:data $ {}) (:id |jnltqb8d68)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588676709982)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588676713354) (:text |indent+) (:id |yL9avUbivp)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588676715129) (:text |identity) (:id |f6EjQ7YTM)
:id |MRlnY9BEq1
:id |cCGmc6iK9f
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588676692427)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |{}) (:id |Du48VrPQZ0)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:parser-node) (:id |R-KpL7NQyW)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:indent) (:id |qNkHJsLRMc)
:id |J7TUyRGpq_
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588676717616)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588676720098) (:text |:transform) (:id |JaK8HG3YgFleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588676723663) (:text |transform) (:id |FpFFJk2cFp)
:id |JaK8HG3YgF
:id |XbURlteQ-1
|D $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588676693304)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588676742889) (:text |transform) (:id |FcCGCVVmb5)
:id |jnltqb8d68
:id |gPblDE3SJ
:id |HOAErbKnKT
|parse-interleave $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588588947270)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588588947270) (:text |defn) (:id |LQFMr4zP8l)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588588947270) (:text |parse-interleave) (:id |Yd4cp4yrQg)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |xs0) (:id |BropYaEQc1)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |rule) (:id |3sbOgmtNoh)
:id |70mJum59W7
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |let) (:id |kKRSTbdU0f)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589188251) (:text |x0) (:id |G6JdRC9sf_)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589164714) (:text |:x) (:id |tEycQS4nLN)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |rule) (:id |p6-vLGnc4P)
:id |YI2ZmnM1kn
:id |cxuhAQNuOT
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589167501)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589189787) (:text |y0) (:id |GNwKGwidsXleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589168523)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589170108) (:text |:y) (:id |7q9fxjyl8V)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589171433) (:text |rule) (:id |94toUdS6bS)
:id |s2PlXmzvlP
:id |GNwKGwidsX
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677799779)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677799779) (:text |transform) (:id |FBZ2ctXchg)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677799779)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677799779) (:text |:transform) (:id |bZoVS6vEqA)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677799779) (:text |rule) (:id |DaDCZ5tsbp)
:id |U2XkbbgX2e
:id |Cf9vvN37tk
:id |aAB-JYmUE9
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |loop) (:id |rXfAjWMZzSr)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |acc) (:id |2lYbmyFdjJT)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |[]) (:id |JBt-Sq_Ij92)
:id |fhV_23ImMBr
:id |z1Yhruf9tsa
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |xs) (:id |t1EVomvxtsy)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |xs0) (:id |G3224U_JlJd)
:id |4v_qw8SgCRt
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589191688)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589191913) (:text |x) (:id |5VduhNVmNVleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589193157) (:text |x0) (:id |-mf_RSiih)
:id |5VduhNVmNV
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589194257)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589196080) (:text |y) (:id |-QvlPVKYSleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589197035) (:text |y0) (:id |JEYfdyBUKV)
:id |-QvlPVKYS
:id |VNjDPyKCZNY
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |let) (:id |HRWsop6_jE2)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |result) (:id |IYSssnlSg3Q)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |parse-lilac) (:id |iWpG98O3gXi)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |xs) (:id |fUbZtFBLwCy)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589210181) (:text |x) (:id |gl5jmf40PXv)
:id |fagUFdmXY-G
:id |EpFGJwgghRN
:id |2qqdcqJgT_N
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |if) (:id |G-V26fCa-AC)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:ok?) (:id |szz2H9Iz0b5)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |result) (:id |OxgAPo81MOj)
:id |1t9LmKTpgxn
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |recur) (:id |04Irm52hkib)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |conj) (:id |7W48Rt4O-D0)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |acc) (:id |9DgC4AsZBjU)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |result) (:id |jcNsB_LftHg)
:id |YTAhiGHkS69
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:rest) (:id |olDurAY2_fn)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |result) (:id |XhI2cxmzNac)
:id |9Hq4MiNfpUm
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589207499) (:text |y) (:id |Jan5E3gEZ)
|x $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589208404) (:text |x) (:id |2-3Pto-cQ)
:id |etYKLFleqeD
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |if) (:id |rEDDyIVjmlR)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |empty?) (:id |8XnqHSKi5Di)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |acc) (:id |pU5rpEJ6ANi)
:id |pWLZ6PBhMz8
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |{}) (:id |lhhB6hxtnI5)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:ok?) (:id |8av8w_L2Ow2)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |false) (:id |GYBOsedGtHw)
:id |oL7t7aZtck_
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:message) (:id |1LNf0TJMENd)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588869845968) (:text "|\"no match") (:id |ICmO0BwQ3lD)
:id |_6OVIkbBplN
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:parser-node) (:id |oK9Hg015zA-)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589497196) (:text |:interleave) (:id |wyd9xD5r0mG)
:id |cQRgc4ak4hp
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:peek-result) (:id |n9BPmj_vqHn)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |result) (:id |c8E_mBpA6L4)
:id |nbLElhde08i
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:rest) (:id |N2HokTE9JMp)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |xs) (:id |_gcSZkzQhOV)
:id |F0NXaVa9JiW
:id |nlYB2HEC5cl
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |{}) (:id |Yq2SlvlPL_B)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:ok?) (:id |VBC5FEO5cfF)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |true) (:id |5TUL9KTedEW)
:id |93DKdHu_pMp
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:value) (:id |sX7F1WxjlG2)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680625140)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677807572)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677807572) (:text |if) (:id |u6dRbJi9qI)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677807572)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677807572) (:text |some?) (:id |Nt65u0IrEz)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677807572) (:text |transform) (:id |Su1VYHEPGb)
:id |YOtwaFxVFE
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677807572)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677807572) (:text |transform) (:id |8fFy0VHrK_)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680622945) (:text |v) (:id |oqRgKtIivx)
:id |u4dXt0fRzZ
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680624546) (:text |v) (:id |lUYJMP7Cap)
:id |PMSEVosDuR
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680625814) (:text |let) (:id |qTjPIHKLAQ)
|L $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680626065)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680626234)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680626520) (:text |v) (:id |Skjie4ADrk)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680627060)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680627060) (:text |map) (:id |joI2_FsCrq)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680627060) (:text |:value) (:id |dRBGgVczgC)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680627060) (:text |acc) (:id |KDgP2SjipG)
:id |qRLtwG_63E
:id |KpmM8kGfd_
:id |e4caP7xfI
:id |zUgWoRacm
:id |ehU9K3JZj48
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:rest) (:id |jDaB3jzn6Sa)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |xs) (:id |xcbeRDAHPtJ)
:id |9ZyTWj2eay-
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:parser-node) (:id |9LJRH5a5o4q)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589505784) (:text |:interleave) (:id |1uRNep2AaY3)
:id |hHM4kF4yn94
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:results) (:id |yyJeC_Q8cGj)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |acc) (:id |Ilkn7Yr_sJ3)
:id |108wiicL35F
|yT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588589065081)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |:peek-result) (:id |pn8Q7StWPJv)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588589065081) (:text |result) (:id |bf62J8_w2BZ)
:id |WMqhJRumqLL
:id |MMifF2cTJCv
:id |fu2jO5EKHEN
:id |vfV7ZSNr6XK
:id |0M9SfMPa2JI
:id |hO1mNbd66W
:id |VmwYQrfFwd
:id |EsfR6TFTdK
|parse-some $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189042838)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189042838) (:text |defn) (:id |31APxKS88)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189042838) (:text |parse-some) (:id |hbkRZedf4)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189042838)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584193197723) (:text |xs0) (:id |x6_tz6T1W)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189042838) (:text |rule) (:id |90KRlf4Lk)
:id |dprsPmJC-
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |let) (:id |4ppMJT7AN)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |item) (:id |FdLKhC0Xn)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |:item) (:id |6dJtLJgBR)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |rule) (:id |XZ5MlXRuZ)
:id |oDV2dQUkH
:id |RYyHNgCB7
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677679725)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677679725) (:text |transform) (:id |o04A_i4hDR)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677679725)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677679725) (:text |:transform) (:id |1Zk3dZDtif)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677679725) (:text |rule) (:id |_zv0uZLhx7)
:id |D8VSCcIFpY
:id |dG_wCMAFuu
:id |lYGkSFYSy
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |loop) (:id |dcnhIT4pFc)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |acc) (:id |eBCTxE8BRM)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |[]) (:id |COpyn_LWdo)
:id |RPQhyvhkPr
:id |LwI64QeEBZ
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |xs) (:id |lRTsXfq-X_)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |xs0) (:id |7uTYZG6wJS)
:id |UWmXWxfvPd
:id |sqRh98ovsl
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |let) (:id |Vbb1X7kP1b)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |result) (:id |q4Eab7JZwD)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |parse-lilac) (:id |TiC_rKPFAt)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |xs) (:id |JDSy0b5VdJ)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |item) (:id |-IHHO8akRp)
:id |yLZY2GE9ra
:id |uBXhCpNu1_
:id |D5XPPQRsEK
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |if) (:id |4MP9F0GuRR)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |:ok?) (:id |WP439mgTBd)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |result) (:id |IGRP9ul6PQ)
:id |MVdf8n2Ikl
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |recur) (:id |CsUWVri_8L)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |conj) (:id |Qp7nnGLMIz)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |acc) (:id |yR1bnVfqZh)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |result) (:id |wQgd0lnXlo)
:id |dinWSYcZBa
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |:rest) (:id |obz_XN3Y8Z)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |result) (:id |62c6W173sR)
:id |nvzwhmKYCa
:id |-HqWsdVzu7
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |{}) (:id |k-_pYi1LAG)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |:ok?) (:id |YI4-u_LuPM)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |true) (:id |AN8lSILjAg)
:id |-JIlLG1dWX
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |:value) (:id |5x_ptll2-W)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680580570)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677687468)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677687468) (:text |if) (:id |ecQ7bk5KNl)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677687468)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677687468) (:text |some?) (:id |BZnblrOCeS)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677687468) (:text |transform) (:id |RhzKWHPwU1)
:id |BABfiwDPDF
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677687468)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677687468) (:text |transform) (:id |AVQuoR79Ri)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680578600) (:text |v) (:id |x4gj-0h7H3)
:id |P9H5r-GsVm
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680579839) (:text |v) (:id |lalf6GtrW)
:id |2BPVTlUahz
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680581259) (:text |let) (:id |y_Gf71GEXE)
|L $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680581461)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680581580)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680583788) (:text |v) (:id |F7zLZ_lccS)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680584383)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680584383) (:text |map) (:id |MMmj_eRFLx)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680584383) (:text |:value) (:id |TTmSxQMutu)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680584383) (:text |acc) (:id |gfu9WQcul6)
:id |GeOxbCn1j-
:id |gkXZ3Fzksi
:id |wwDs2xndjl
:id |nri7vRCZJ7
:id |0zzFzs27mr
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189043842)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189043842) (:text |:rest) (:id |JoAv49Mfg8)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205819783) (:text |xs) (:id |BOIzuO6mNa)
:id |BuO4HC08yc
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584205851101)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205854044) (:text |:results) (:id |bcq136HRleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205867670) (:text |acc) (:id |wDcwSsJV)
:id |bcq136HR
|w $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584205860121)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584254631661) (:text |:parser-node) (:id |Td7Ie6A9R)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205860121) (:text |:some) (:id |B9mc81ZYh)
:id |GHlWI475l
|y $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584254731911)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584254737444) (:text |:peek-result) (:id |lwJoODzaHleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584254739639) (:text |result) (:id |TERmgQFAZ)
:id |lwJoODzaH
:id |htF4_3pC2p
:id |sqtJVRvDRK
:id |hk-K4YjlbL
:id |1a3QhgMQup
:id |HlCU_f2Y0
:id |VWy2n5g_T
|parse-many $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188567360)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188567360) (:text |defn) (:id |ja6cBoU74)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188567360) (:text |parse-many) (:id |PuEuQt1ga)
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188567360)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188798018) (:text |xs0) (:id |--bEvCwtB)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188567360) (:text |rule) (:id |pGnph5LmF)
:id |aG7v5CKcM
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188568418)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188569870) (:text |let) (:id |X_7-Tlq8leaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188570043)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188570203)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188574495) (:text |item) (:id |wsAlYrrjF)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188574760)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188575351) (:text |:item) (:id |-K_Ergk5n)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188576063) (:text |rule) (:id |0bwKtCCzL)
:id |x5eDsT0lE
:id |4ZrdnKc1
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677656216)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677656216) (:text |transform) (:id |vqGODdB2R3)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677656216)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677656216) (:text |:transform) (:id |L1Nc2vbcUs)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677656216) (:text |rule) (:id |CzU4MxGaEi)
:id |hfwtoYXzdh
:id |sdvCfPH9CT
:id |YUHsLqpEo
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188577944)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188764343) (:text |loop) (:id |5mGiJ0Ub6leaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188765130)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188766765)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188767826) (:text |acc) (:id |xhR5ZpI1h)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188768217)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188768404) (:text |[]) (:id |8au7wlcTd)
:id |X4SoRu6Q
:id |Tv6WenGTS
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188783985)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188801407) (:text |xs) (:id |sdjNNAqaleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188799739) (:text |xs0) (:id |HS2yKsUuy)
:id |sdjNNAqa
:id |TaE4r8Bf
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188806328)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188809733) (:text |let) (:id |hGotFCXfleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188809906)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188810059)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188814200) (:text |result) (:id |XDPoFs4MC)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188814404)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188819939) (:text |parse-lilac) (:id |2htU0lXpk)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188820528) (:text |item) (:id |679Vv3J4)
|b $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188888907) (:text |xs) (:id |jRiFxf2rT)
:id |KObKuOG4V
:id |7j1HiWGNt
:id |cMszvn1rU
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188830526)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188832524) (:text |if) (:id |MO-e89OtLleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188833070)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188838214) (:text |:ok?) (:id |V_7D87MDM)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188839136) (:text |result) (:id |r_UIiMcYj)
:id |LC9FrtLx
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188841622)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188847079) (:text |recur) (:id |kCHSPbbk)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188852049)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188854803) (:text |conj) (:id |4W0UwbXk)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188855347) (:text |acc) (:id |TW4LoNrJk)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188856831) (:text |result) (:id |9YGomiN3E)
:id |UhDtSE4u4
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188897221)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188900753) (:text |:rest) (:id |4yRR6ZE1)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188907644) (:text |result) (:id |2KrwEvN8)
:id |Ny3r4uH8
:id |XVJNN0Qd
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188912451)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188913405) (:text |if) (:id |3_f_ImOkleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188913570)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188915391) (:text |empty?) (:id |EmLkDESF5)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188916436) (:text |acc) (:id |0h09n4LQw)
:id |c8NqB5--d
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188918223)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188919119) (:text |{}) (:id |1LW29EXsleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188919416)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188921556) (:text |:ok?) (:id |K_hfZ4YB0)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188924506) (:text |false) (:id |3CwgQjeG6)
:id |8oNn-Sra-
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188934913)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584254903276) (:text |:peek-result) (:id |sIFzNjskleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188946994) (:text |result) (:id |zBcO3uYG)
:id |sIFzNjsk
|n $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584205590799)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205592498) (:text |:parser-node) (:id |aLNNBJB_tleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205598954) (:text |:many) (:id |wx86L9hi)
:id |aLNNBJB_t
|l $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584205672228)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205672228) (:text |:message) (:id |qwRFGM6Dk)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588869433488) (:text "|\"no match") (:id |X4nk_0w8P)
:id |YADMzXlqv
|x $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584256004316)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584256005425) (:text |:rest) (:id |hqbdRfb0leaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584256006051) (:text |xs) (:id |VbbyuBiRo)
:id |hqbdRfb0
:id |1LW29EXs
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188949143)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188950276) (:text |{}) (:id |f4NjzWTuleaf)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584188950607)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188952281) (:text |:ok?) (:id |ph1_xnvom)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584188952909) (:text |true) (:id |_EzTwx1RC)
:id |NbgRvLKsX
|l $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584189096872)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205624590) (:text |:parser-node) (:id |mfUFm7tq1leaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584189101491) (:text |:many) (:id |n_WZRxEPB)
:id |mfUFm7tq1
|k $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584205620477)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205620477) (:text |:rest) (:id |_ArF2kizV)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205620477) (:text |xs) (:id |Fj7hLgyFP)
:id |saTVAR3Y_
|jT $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584205629612)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584205629612) (:text |:value) (:id |hNOM188Yh)
|b $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680569802)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677664669)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677664669) (:text |if) (:id |LKhYWFJhAl)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677664669)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677664669) (:text |some?) (:id |O-KDU6iOj_)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677664669) (:text |transform) (:id |PWqS5WEBL3)
:id |G-TdF5CEaF
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588677664669)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588677664669) (:text |transform) (:id |DBX23cDy8P)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680568182) (:text |v) (:id |_KzO8UeaCT)
:id |4uCE-dxY3r
|v $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680569424) (:text |v) (:id |kMr8ySVn_1)
:id |4QmBYeEKis
|D $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680572012) (:text |let) (:id |6rlm4_d1wy)
|L $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680572344)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680572493)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680572868) (:text |v) (:id |C7FUeluQV)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588680573387)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680573387) (:text |map) (:id |5LRbdUc_lU)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680573387) (:text |:value) (:id |olzJaoZJGs)
|r $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588680573387) (:text |acc) (:id |0xVZY21wMi)
:id |WRy-v3loSN
:id |bepsni3ziW
:id |4bl3YCKyW1
:id |cLBECReuRS
:id |_gE7gU6hK
|s $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584205675650)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584207414487) (:text |:results) (:id |l4NBkkLuXleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584207416049) (:text |acc) (:id |Ta56J0P7)
:id |l4NBkkLuX
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584254890395)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584254894051) (:text |:peek-result) (:id |eB6Er8PZleaf)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584254896074) (:text |result) (:id |_uZazWNK)
:id |eB6Er8PZ
:id |f4NjzWTu
:id |3_f_ImOk
:id |MO-e89OtL
:id |hGotFCXf
:id |5mGiJ0Ub6
:id |X_7-Tlq8
:id |h9ueWK8gI
|some+ $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1588676998519) (:text |defn$) (:id |U9QZkvGbpE)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |some+) (:id |hsKmnVfvo-)
|v $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1588676976112)
:data $ {}
|T $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |{}) (:id |9d-Tkj0gM-)
|j $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:parser-node) (:id |3BsFoVGEpF)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:some) (:id |PX20C3Zf4R)
:id |KpfWpZ3erv
|r $ {} (:type :expr) (:by |rJG4IHzWf) (:at 1584121099445)
:data $ {}
|T $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |:item) (:id |VqzDac7IEO)
|j $ {} (:type :leaf) (:by |rJG4IHzWf) (:at 1584121099445) (:text |x) (:id |iTTDU-4gXF)
:id |5o4ZVAuzj2