-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcalcit.cirru
1757 lines (1756 loc) · 126 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
{} (:package |fuzzy-filter)
:configs $ {} (:init-fn |fuzzy-filter.main/main!) (:output |src) (:port 6001) (:reload-fn |fuzzy-filter.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.8)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/
:entries $ {}
:files $ {}
|fuzzy-filter.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1507461830530) (:by |root) (:text |reel)
|v $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1507461833421) (:by |root) (:text |let)
|L $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461835738) (:by |root) (:text |store)
|j $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461837276) (:by |root) (:text |:store)
|j $ %{} :Leaf (:at 1507461838285) (:by |root) (:text |reel)
|j $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727105928) (:by |root) (:text |states)
|j $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727107223) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1509727108033) (:by |root) (:text |store)
|T $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{})
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:style)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |merge)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui/global)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui/column)
|v $ %{} :Expr (:at 1537902442310) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537902444388) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537902445048) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537902447286) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1537902448788) (:by |root) (:text |16)
|q $ %{} :Expr (:at 1537552778164) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537552778854) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1537552779034) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552779429) (:by |root) (:text |{})
|T $ %{} :Expr (:at 1537552476672) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537552477552) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1537552477753) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552478164) (:by |root) (:text |{})
|T $ %{} :Expr (:at 1537552392307) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552393729) (:by |root) (:text |input)
|j $ %{} :Expr (:at 1537552393951) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552394366) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537552395735) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552397621) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1537552400767) (:by |root) (:text |ui/input)
|r $ %{} :Expr (:at 1537552425022) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552426501) (:by |root) (:text |:value)
|j $ %{} :Expr (:at 1537552426800) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552436325) (:by |root) (:text |:content)
|j $ %{} :Leaf (:at 1537552437728) (:by |root) (:text |store)
|t $ %{} :Expr (:at 1537552463139) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552465870) (:by |root) (:text |:placeholder)
|j $ %{} :Leaf (:at 1537552471622) (:by |root) (:text "|\"text")
|v $ %{} :Expr (:at 1537552438918) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552442868) (:by |root) (:text |:on-input)
|j $ %{} :Expr (:at 1537552443209) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552444309) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1537552444574) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552445145) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1537552446455) (:by |root) (:text |d!)
|r $ %{} :Leaf (:at 1537552447174) (:by |root) (:text |m!)
|r $ %{} :Expr (:at 1537552448123) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552449905) (:by |root) (:text |d!)
|j $ %{} :Leaf (:at 1537552450965) (:by |root) (:text |:content)
|r $ %{} :Expr (:at 1537552459946) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552460691) (:by |root) (:text |:value)
|j $ %{} :Leaf (:at 1537552460922) (:by |root) (:text |e)
|b $ %{} :Expr (:at 1537552833361) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552836131) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1537552837559) (:by |root) (:text |nil)
|r $ %{} :Leaf (:at 1537552837830) (:by |root) (:text |8)
|j $ %{} :Expr (:at 1537552476672) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537552477552) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1537552477753) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552478164) (:by |root) (:text |{})
|T $ %{} :Expr (:at 1537552392307) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552393729) (:by |root) (:text |input)
|j $ %{} :Expr (:at 1537552393951) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552394366) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537552395735) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552397621) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1537552400767) (:by |root) (:text |ui/input)
|r $ %{} :Expr (:at 1537552425022) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552426501) (:by |root) (:text |:value)
|j $ %{} :Expr (:at 1537552426800) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552784704) (:by |root) (:text |:query)
|j $ %{} :Leaf (:at 1537552437728) (:by |root) (:text |store)
|t $ %{} :Expr (:at 1537552463139) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552465870) (:by |root) (:text |:placeholder)
|j $ %{} :Leaf (:at 1537552787051) (:by |root) (:text "|\"query")
|v $ %{} :Expr (:at 1537552438918) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552442868) (:by |root) (:text |:on-input)
|j $ %{} :Expr (:at 1537552443209) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552444309) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1537552444574) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552445145) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1537552446455) (:by |root) (:text |d!)
|r $ %{} :Leaf (:at 1537552447174) (:by |root) (:text |m!)
|r $ %{} :Expr (:at 1537552448123) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552449905) (:by |root) (:text |d!)
|j $ %{} :Leaf (:at 1537552789529) (:by |root) (:text |:query)
|r $ %{} :Expr (:at 1537552459946) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552460691) (:by |root) (:text |:value)
|j $ %{} :Leaf (:at 1537552460922) (:by |root) (:text |e)
|t $ %{} :Expr (:at 1537804573458) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537804578214) (:by |root) (:text |let)
|T $ %{} :Expr (:at 1537804598721) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1537804578941) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537804590911) (:by |root) (:text |result)
|L $ %{} :Expr (:at 1537804594918) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537902490055) (:by |root) (:text |parse-by-letter)
|j $ %{} :Expr (:at 1537804594918) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804594918) (:by |root) (:text |:content)
|j $ %{} :Leaf (:at 1537804594918) (:by |root) (:text |store)
|r $ %{} :Expr (:at 1537804594918) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804594918) (:by |root) (:text |:query)
|j $ %{} :Leaf (:at 1537804594918) (:by |root) (:text |store)
|j $ %{} :Expr (:at 1537903150715) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537903162739) (:by |root) (:text |word-result)
|j $ %{} :Expr (:at 1537903154898) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537903155221) (:by |root) (:text |parse-by-word)
|j $ %{} :Expr (:at 1537903156408) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537903157251) (:by |root) (:text |:content)
|j $ %{} :Leaf (:at 1537903158089) (:by |root) (:text |store)
|r $ %{} :Expr (:at 1537903158533) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537903159474) (:by |root) (:text |:query)
|j $ %{} :Leaf (:at 1537903160720) (:by |root) (:text |store)
|j $ %{} :Expr (:at 1537804600700) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804601135) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1537804602422) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804602772) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |pre)
|j $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |:font-family)
|j $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |ui/font-code)
|r $ %{} :Expr (:at 1629616612344) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629616613023) (:by |rJG4IHzWf) (:text |code)
|L $ %{} :Expr (:at 1629616613762) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616614191) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |<>)
|j $ %{} :Expr (:at 1629616695855) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629616696744) (:by |rJG4IHzWf) (:text |.trim)
|T $ %{} :Expr (:at 1629616570141) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629616575556) (:by |rJG4IHzWf) (:text |format-cirru-edn)
|T $ %{} :Leaf (:at 1537804623638) (:by |root) (:text |result)
|t $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |pre)
|j $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |:font-family)
|j $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |ui/font-code)
|r $ %{} :Expr (:at 1629616602088) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629616602883) (:by |rJG4IHzWf) (:text |code)
|L $ %{} :Expr (:at 1629616603199) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616603563) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1537804605402) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804605402) (:by |root) (:text |<>)
|j $ %{} :Expr (:at 1629616693533) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629616694431) (:by |rJG4IHzWf) (:text |.trim)
|T $ %{} :Expr (:at 1629616578483) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629616579024) (:by |rJG4IHzWf) (:text |format-cirru-edn)
|T $ %{} :Leaf (:at 1537903166033) (:by |root) (:text |word-result)
|v $ %{} :Expr (:at 1537804627354) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804652519) (:by |root) (:text |when)
|j $ %{} :Expr (:at 1537804629535) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537842988549) (:by |rJG4IHzWf) (:text |:matches?)
|j $ %{} :Leaf (:at 1537804631215) (:by |root) (:text |result)
|r $ %{} :Expr (:at 1537903690895) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537903692340) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1537903692580) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537903692909) (:by |root) (:text |{})
|T $ %{} :Expr (:at 1537804634734) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804637579) (:by |root) (:text |comp-visual)
|j $ %{} :Expr (:at 1537804641482) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537843019240) (:by |rJG4IHzWf) (:text |:chunks)
|j $ %{} :Leaf (:at 1537804648494) (:by |root) (:text |result)
|r $ %{} :Expr (:at 1537805138738) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805139875) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537805309852) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805312479) (:by |root) (:text |:style-rest)
|j $ %{} :Expr (:at 1537805313449) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805313787) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537805314031) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805315271) (:by |root) (:text |:color)
|j $ %{} :Expr (:at 1537805315527) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805315845) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1537805316116) (:by |root) (:text |0)
|r $ %{} :Leaf (:at 1537805316802) (:by |root) (:text |0)
|v $ %{} :Leaf (:at 1537805317242) (:by |root) (:text |70)
|x $ %{} :Expr (:at 1537804627354) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804652519) (:by |root) (:text |when)
|j $ %{} :Expr (:at 1537804629535) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537842988549) (:by |rJG4IHzWf) (:text |:matches?)
|j $ %{} :Leaf (:at 1537903684788) (:by |root) (:text |word-result)
|r $ %{} :Expr (:at 1537903694453) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537903695962) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1537903696264) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537903697006) (:by |root) (:text |{})
|T $ %{} :Expr (:at 1537804634734) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804637579) (:by |root) (:text |comp-visual)
|j $ %{} :Expr (:at 1537804641482) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537843019240) (:by |rJG4IHzWf) (:text |:chunks)
|j $ %{} :Leaf (:at 1537903686147) (:by |root) (:text |word-result)
|r $ %{} :Expr (:at 1537805138738) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805139875) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537805309852) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805312479) (:by |root) (:text |:style-rest)
|j $ %{} :Expr (:at 1537805313449) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805313787) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537805314031) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805315271) (:by |root) (:text |:color)
|j $ %{} :Expr (:at 1537805315527) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805315845) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1537805316116) (:by |root) (:text |0)
|r $ %{} :Leaf (:at 1537805316802) (:by |root) (:text |0)
|v $ %{} :Leaf (:at 1537805317242) (:by |root) (:text |70)
|x $ %{} :Expr (:at 1521954055333) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1521954057510) (:by |root) (:text |when)
|L $ %{} :Leaf (:at 1521954059290) (:by |root) (:text |dev?)
|T $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461815046) (:by |root) (:text |comp-reel)
|b $ %{} :Expr (:at 1629616368318) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629616369018) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1509727101297) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1629616369678) (:by |rJG4IHzWf) (:text |:reel)
|j $ %{} :Leaf (:at 1507461840459) (:by |root) (:text |reel)
|r $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461841342) (:by |root) (:text |{})
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |fuzzy-filter.comp.container)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require)
|j $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1629616118672) (:by |rJG4IHzWf) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|n $ %{} :Leaf (:at 1509727116530) (:by |root) (:text |>>)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|xT $ %{} :Leaf (:at 1512359490531) (:by |rJG4IHzWf) (:text |textarea)
|y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span)
|yT $ %{} :Leaf (:at 1537552408438) (:by |root) (:text |input)
|yj $ %{} :Leaf (:at 1537552817346) (:by |root) (:text |pre)
|yr $ %{} :Leaf (:at 1629616606384) (:by |rJG4IHzWf) (:text |code)
|x $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<)
|y $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461846175) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1507461855480) (:by |root) (:text |reel.comp.reel)
|r $ %{} :Leaf (:at 1507461856264) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at nil) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461856706) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1507461858342) (:by |root) (:text |comp-reel)
|yT $ %{} :Expr (:at 1519699088529) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519699088805) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1519699092590) (:by |root) (:text |respo-md.comp.md)
|r $ %{} :Leaf (:at 1519699093410) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1519699093683) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519699093922) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1519699096732) (:by |root) (:text |comp-md)
|yj $ %{} :Expr (:at 1521954061310) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1521954061645) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1527788377809) (:by |root) (:text |fuzzy-filter.config)
|r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1521954065004) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1521954065219) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?)
|yr $ %{} :Expr (:at 1537552796860) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552796860) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537552796860) (:by |root) (:text |fuzzy-filter.core)
|r $ %{} :Leaf (:at 1537552796860) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1537552796860) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552796860) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537902493693) (:by |root) (:text |parse-by-letter)
|r $ %{} :Leaf (:at 1537903141688) (:by |root) (:text |parse-by-word)
|yv $ %{} :Expr (:at 1537804563432) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804563432) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804563432) (:by |root) (:text |fuzzy-filter.comp.visual)
|r $ %{} :Leaf (:at 1537804563432) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1537804563432) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804563432) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804563432) (:by |root) (:text |comp-visual)
|fuzzy-filter.comp.visual $ %{} :FileEntry
:defs $ {}
|comp-visual $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1537804433130) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804496655) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1537804433130) (:by |root) (:text |comp-visual)
|r $ %{} :Expr (:at 1537804433130) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804509627) (:by |root) (:text |pieces)
|j $ %{} :Leaf (:at 1537805163801) (:by |root) (:text |options)
|v $ %{} :Expr (:at 1537804751680) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537804753258) (:by |root) (:text |list->)
|L $ %{} :Expr (:at 1537804758004) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804758395) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1629616547637) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616550130) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Expr (:at 1629616550305) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616550646) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1629616550944) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616552740) (:by |rJG4IHzWf) (:text |:display)
|j $ %{} :Leaf (:at 1629616556108) (:by |rJG4IHzWf) (:text |:inline-block)
|f $ %{} :Expr (:at 1537804760342) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629616495290) (:by |rJG4IHzWf) (:text |->)
|j $ %{} :Leaf (:at 1537804763091) (:by |root) (:text |pieces)
|r $ %{} :Expr (:at 1537804764410) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804771777) (:by |root) (:text |map-indexed)
|j $ %{} :Expr (:at 1537804765798) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804766121) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1537804766474) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804774226) (:by |root) (:text |idx)
|j $ %{} :Leaf (:at 1537804778180) (:by |root) (:text |chunk)
|r $ %{} :Expr (:at 1537804783116) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804783514) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804784315) (:by |root) (:text |idx)
|r $ %{} :Expr (:at 1537804785282) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804803698) (:by |root) (:text |span)
|j $ %{} :Expr (:at 1537804786132) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804786492) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537804805746) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804809014) (:by |root) (:text |:inner-text)
|j $ %{} :Expr (:at 1537804811208) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537804815649) (:by |root) (:text |last)
|T $ %{} :Leaf (:at 1537804813295) (:by |root) (:text |chunk)
|r $ %{} :Expr (:at 1537805001737) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805004695) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1537805385591) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537805387993) (:by |root) (:text |merge)
|L $ %{} :Expr (:at 1537805390856) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805392808) (:by |root) (:text |:style-base)
|j $ %{} :Leaf (:at 1537805393673) (:by |root) (:text |options)
|T $ %{} :Expr (:at 1537805012031) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805167677) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1537805020784) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537805021331) (:by |root) (:text |=)
|L $ %{} :Leaf (:at 1545586204177) (:by |root) (:text |:hit)
|T $ %{} :Expr (:at 1537805014653) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805018064) (:by |root) (:text |first)
|j $ %{} :Leaf (:at 1537805020226) (:by |root) (:text |chunk)
|r $ %{} :Expr (:at 1537805099124) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537805101229) (:by |root) (:text |merge)
|T $ %{} :Expr (:at 1537805024495) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805024932) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537805025454) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805027671) (:by |root) (:text |:font-weight)
|j $ %{} :Leaf (:at 1537805028891) (:by |root) (:text |:bold)
|j $ %{} :Expr (:at 1537805151770) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1545586227564) (:by |root) (:text |:style-hit)
|j $ %{} :Leaf (:at 1537805162043) (:by |root) (:text |options)
|v $ %{} :Expr (:at 1537805169099) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537805175233) (:by |root) (:text |:style-rest)
|j $ %{} :Leaf (:at 1537805178760) (:by |root) (:text |options)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1537804418622) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804418622) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1537804418622) (:by |root) (:text |fuzzy-filter.comp.visual)
|r $ %{} :Expr (:at 1537804436236) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1537804436236) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |hsl.core)
|r $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1537804436236) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1537804436236) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |ui)
|v $ %{} :Expr (:at 1537804436236) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1542731643086) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1537804436236) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |defcomp)
|r $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |cursor->)
|u $ %{} :Leaf (:at 1537804755675) (:by |root) (:text |list->)
|y $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |<>)
|yT $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |div)
|yj $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |button)
|yr $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |textarea)
|yv $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |span)
|yx $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |input)
|yy $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |pre)
|y $ %{} :Expr (:at 1537804436236) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1537804436236) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1537804436236) (:by |root) (:text |=<)
|fuzzy-filter.config $ %{} :FileEntry
:defs $ {}
|bundle-builds $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1528097494445) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1528097496062) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1528097494445) (:by |root) (:text |bundle-builds)
|r $ %{} :Expr (:at 1528097494445) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1528097498660) (:by |root) (:text |#{})
|j $ %{} :Leaf (:at 1528097501085) (:by |root) (:text "|\"release")
|r $ %{} :Leaf (:at 1528097507902) (:by |root) (:text "|\"local-bundle")
|dev? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1629616211823) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616211823) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1629616211823) (:by |rJG4IHzWf) (:text |dev?)
|r $ %{} :Expr (:at 1629616211823) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616211823) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1629616211823) (:by |rJG4IHzWf) (:text "|\"dev")
|r $ %{} :Expr (:at 1629616211823) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616211823) (:by |rJG4IHzWf) (:text |get-env)
|j $ %{} :Leaf (:at 1629616211823) (:by |rJG4IHzWf) (:text "|\"mode")
|site $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1518157327696) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157345496) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1518157327696) (:by |root) (:text |site)
|r $ %{} :Expr (:at 1518157327696) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157346643) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1518157346876) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157348163) (:by |root) (:text |:storage)
|j $ %{} :Leaf (:at 1537467712225) (:by |root) (:text "|\"fuzzy-filter")
|r $ %{} :Expr (:at 1527526861413) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527526864597) (:by |root) (:text |:dev-ui)
|j $ %{} :Leaf (:at 1527526903571) (:by |root) (:text "|\"http://localhost:8100/main.css")
|v $ %{} :Expr (:at 1527526865931) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527526868617) (:by |root) (:text |:release-ui)
|j $ %{} :Leaf (:at 1527526887965) (:by |root) (:text "|\"http://cdn.tiye.me/favored-fonts/main.css")
|w $ %{} :Expr (:at 1528008960614) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1528008962775) (:by |root) (:text |:cdn-url)
|j $ %{} :Leaf (:at 1537467718358) (:by |root) (:text "|\"http://cdn.tiye.me/fuzzy-filter/")
|wT $ %{} :Expr (:at 1528008973460) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1528008977180) (:by |root) (:text |:cdn-folder)
|j $ %{} :Leaf (:at 1537467720493) (:by |root) (:text "|\"tiye.me:cdn/fuzzy-filter")
|y $ %{} :Expr (:at 1527868456422) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527868457305) (:by |root) (:text |:title)
|j $ %{} :Leaf (:at 1537467724098) (:by |root) (:text "|\"Fuzzy Filter")
|yT $ %{} :Expr (:at 1527868457696) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527868458476) (:by |root) (:text |:icon)
|j $ %{} :Leaf (:at 1527868478815) (:by |root) (:text "|\"http://cdn.tiye.me/logo/mvc-works.png")
|yr $ %{} :Expr (:at 1528009081454) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1528009091856) (:by |root) (:text |:upload-folder)
|j $ %{} :Leaf (:at 1537467728425) (:by |root) (:text "|\"tiye.me:repo/mvc-works/fuzzy-filter/")
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1527788237503) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |fuzzy-filter.config)
|r $ %{} :Expr (:at 1528096830557) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1528096832720) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1528096834008) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1528096834172) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1528096836503) (:by |root) (:text |fuzzy-filter.util)
|r $ %{} :Leaf (:at 1528096837559) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1528096837768) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1528096839259) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1528096846216) (:by |root) (:text |get-env!)
|fuzzy-filter.core $ %{} :FileEntry
:defs $ {}
|conflate-chunks $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1537803104545) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629616235577) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1537803104545) (:by |root) (:text |conflate-chunks)
|r $ %{} :Expr (:at 1537803120050) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537803120721) (:by |root) (:text |xs)
|v $ %{} :Expr (:at 1537803122879) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629616223124) (:by |rJG4IHzWf) (:text |conflate-chunks-iter)
|j $ %{} :Expr (:at 1537803131008) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537803130354) (:by |root) (:text |[])
|r $ %{} :Leaf (:at 1537803145317) (:by |root) (:text |nil)
|v $ %{} :Leaf (:at 1537803137115) (:by |root) (:text |xs)
|conflate-chunks-iter $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1629616223848) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616227263) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1629616223848) (:by |rJG4IHzWf) (:text |conflate-chunks-iter)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |acc)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |buffer)
|r $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |xs)
|v $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |empty?)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |nil?)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |buffer)
|r $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |acc)
|v $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |conj)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |acc)
|r $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |buffer)
|v $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |let)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |x0)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |nil?)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |buffer)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |recur)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |acc)
|r $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |x0)
|v $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |rest)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |xs)
|v $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |buffer)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |x0)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |recur)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |acc)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |buffer)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |last)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |buffer)
|r $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |last)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |x0)
|v $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |rest)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |xs)
|v $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |recur)
|j $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |conj)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |acc)
|r $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |buffer)
|r $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |x0)
|v $ %{} :Expr (:at 1629616224651) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |rest)
|j $ %{} :Leaf (:at 1629616224651) (:by |rJG4IHzWf) (:text |xs)
|parse-by-letter $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1537552707235) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629616194999) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1537552707235) (:by |root) (:text |parse-by-letter)
|r $ %{} :Expr (:at 1537552707235) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537552712460) (:by |root) (:text |text)
|j $ %{} :Leaf (:at 1537552717968) (:by |root) (:text |query)
|v $ %{} :Expr (:at 1537639476417) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537639479469) (:by |root) (:text |let)
|T $ %{} :Expr (:at 1537639480692) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1537639480878) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537639485501) (:by |root) (:text |results)
|T $ %{} :Expr (:at 1537803760803) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537803761717) (:by |root) (:text |conflate-chunks)
|T $ %{} :Expr (:at 1537638433614) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629616187648) (:by |rJG4IHzWf) (:text |parse-by-letter-iter)
|j $ %{} :Expr (:at 1537638440135) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537638440328) (:by |root) (:text |[])
|r $ %{} :Expr (:at 1537638451103) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1629616291942) (:by |rJG4IHzWf) (:text |.split)
|T $ %{} :Leaf (:at 1537638445346) (:by |root) (:text |text)
|j $ %{} :Leaf (:at 1629616293543) (:by |rJG4IHzWf) (:text "|\"")
|v $ %{} :Expr (:at 1537638464031) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629616296138) (:by |rJG4IHzWf) (:text |.split)
|j $ %{} :Leaf (:at 1537638466096) (:by |root) (:text |query)
|r $ %{} :Leaf (:at 1629616297223) (:by |rJG4IHzWf) (:text "|\"")
|j $ %{} :Expr (:at 1537639487589) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537639490850) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1537639491176) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537842978707) (:by |rJG4IHzWf) (:text |:matches?)
|j $ %{} :Expr (:at 1537639596932) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1537639598205) (:by |root) (:text |not)
|T $ %{} :Expr (:at 1537639510128) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629616302145) (:by |rJG4IHzWf) (:text |any?)
|b $ %{} :Leaf (:at 1629616305256) (:by |rJG4IHzWf) (:text |results)
|j $ %{} :Expr (:at 1537639521162) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537639521472) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1537639522652) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537639522855) (:by |root) (:text |x)
|r $ %{} :Expr (:at 1537639523833) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537639525779) (:by |root) (:text |=)
|j $ %{} :Leaf (:at 1537639531692) (:by |root) (:text |:missed)
|r $ %{} :Expr (:at 1537639535594) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537639587571) (:by |root) (:text |first)
|j $ %{} :Leaf (:at 1537639589341) (:by |root) (:text |x)
|r $ %{} :Expr (:at 1537639493020) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1537843023518) (:by |rJG4IHzWf) (:text |:chunks)
|j $ %{} :Leaf (:at 1537639503941) (:by |root) (:text |results)
|v $ %{} :Expr (:at 1537842959220) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1537842969979) (:by |rJG4IHzWf) (:text |:text)
|j $ %{} :Leaf (:at 1537842966833) (:by |rJG4IHzWf) (:text |text)
|parse-by-letter-iter $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1629616188021) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616193013) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1629616188021) (:by |rJG4IHzWf) (:text |parse-by-letter-iter)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |acc)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |ys)
|v $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |empty?)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |empty?)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |ys)
|r $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |acc)
|v $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |conj)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |acc)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |:missed)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |apply)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |str)
|r $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |ys)
|v $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |empty?)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |conj)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |acc)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |:missed)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |apply)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |str)
|r $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |ys)
|v $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |ys)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |recur)
|j $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |conj)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |acc)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |:hit)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |xs)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |rest)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |xs)
|v $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |rest)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |ys)
|v $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text "|\" ")
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |ys)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |recur)
|j $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |conj)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |acc)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |:space)
|r $ %{} :Expr (:at 1629616190138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |first)
|j $ %{} :Leaf (:at 1629616190138) (:by |rJG4IHzWf) (:text |xs)