generated from Phlox-GL/phlox-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
4044 lines (4043 loc) · 339 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:configs $ {} (:compact-output? true) (:extension |.cljs) (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.4.10)
:modules $ [] |memof/ |lilac/ |respo.calcit/ |respo-ui.calcit/ |phlox/ |touch-control/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.bending $ {}
:configs $ {}
:defs $ {}
|comp-bending $ {} (:at 1651509288897) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509291071) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|b $ {} (:at 1654861538385) (:by |rJG4IHzWf) (:text |comp-bending) (:type :leaf)
|h $ {} (:at 1651509288897) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509327256) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|l $ {} (:at 1651509369329) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651509370847) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1651509371064) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509371183) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509372764) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|b $ {} (:at 1651509372973) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509374191) (:by |rJG4IHzWf) (:text |:cursor) (:type :leaf)
|b $ {} (:at 1651509375002) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|b $ {} (:at 1651509375620) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509376203) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|b $ {} (:at 1651509376424) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509380112) (:by |rJG4IHzWf) (:text |or) (:type :leaf)
|b $ {} (:at 1651509380335) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509380884) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|b $ {} (:at 1651509381691) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|h $ {} (:at 1651509382262) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509382637) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651509382824) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509390398) (:by |rJG4IHzWf) (:text |:n) (:type :leaf)
|b $ {} (:at 1651509391468) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |mesh) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|h $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651509493848) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|h $ {} (:at 1651509495620) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|l $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:geometry) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:attributes) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|h $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:id) (:type :leaf)
|b $ {} (:at 1651509936008) (:by |rJG4IHzWf) (:text ||aVertexPosition) (:type :leaf)
|h $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:size) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|l $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:text |:buffer) (:type :leaf)
|b $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:text |-400) (:type :leaf)
|h $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:text |-400) (:type :leaf)
|l $ {} (:at 1651510244128) (:by |rJG4IHzWf) (:text |400) (:type :leaf)
|o $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:text |-400) (:type :leaf)
|q $ {} (:at 1651510246221) (:by |rJG4IHzWf) (:text |400) (:type :leaf)
|s $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:text |400) (:type :leaf)
|t $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:text |-400) (:type :leaf)
|u $ {} (:at 1651509979057) (:by |rJG4IHzWf) (:text |400) (:type :leaf)
|l $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:id) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text ||aUvs) (:type :leaf)
|h $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:size) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|l $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:buffer) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651510133746) (:by |rJG4IHzWf) (:text |-1) (:type :leaf)
|h $ {} (:at 1651510136641) (:by |rJG4IHzWf) (:text |-1) (:type :leaf)
|l $ {} (:at 1651510241267) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|o $ {} (:at 1651510141778) (:by |rJG4IHzWf) (:text |-1) (:type :leaf)
|q $ {} (:at 1651510242326) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|s $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|t $ {} (:at 1651510441321) (:by |rJG4IHzWf) (:text |-1) (:type :leaf)
|u $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|h $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:index) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|h $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|l $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|o $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|q $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |3) (:type :leaf)
|s $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|o $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:shader) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:vertex-source) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509503795) (:by |rJG4IHzWf) (:text |inline-shader) (:type :leaf)
|b $ {} (:at 1654861796336) (:by |rJG4IHzWf) (:text ||bending.vert) (:type :leaf)
|h $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:fragment-source) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509505868) (:by |rJG4IHzWf) (:text |inline-shader) (:type :leaf)
|b $ {} (:at 1654861798552) (:by |rJG4IHzWf) (:text ||bending.frag) (:type :leaf)
|p $ {} (:at 1651862687674) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651862690949) (:by |rJG4IHzWf) (:text |:draw-mode) (:type :leaf)
|b $ {} (:at 1651862694965) (:by |rJG4IHzWf) (:text |:triangles) (:type :leaf)
|q $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |:uniforms) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |js-object) (:type :leaf)
|h $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509608098) (:by |rJG4IHzWf) (:text |:n) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509606748) (:by |rJG4IHzWf) (:text |:n) (:type :leaf)
|b $ {} (:at 1651509489494) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
:ns $ {} (:at 1651509227822) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509227822) (:by |rJG4IHzWf) (:text |ns) (:type :leaf)
|b $ {} (:at 1651509227822) (:by |rJG4IHzWf) (:text |app.comp.bending) (:type :leaf)
|h $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |:require) (:type :leaf)
|b $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |phlox.core) (:type :leaf)
|b $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |g) (:type :leaf)
|b $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|h $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |rect) (:type :leaf)
|l $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |circle) (:type :leaf)
|o $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|q $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |container) (:type :leaf)
|s $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |graphics) (:type :leaf)
|t $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |create-list) (:type :leaf)
|u $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|v $ {} (:at 1651509475924) (:by |rJG4IHzWf) (:text |mesh) (:type :leaf)
|h $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |phlox.comp.button) (:type :leaf)
|b $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|l $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |phlox.comp.drag-point) (:type :leaf)
|b $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |comp-drag-point) (:type :leaf)
|o $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |respo-ui.core) (:type :leaf)
|b $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |:as) (:type :leaf)
|h $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |ui) (:type :leaf)
|q $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |memof.alias) (:type :leaf)
|b $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509260728) (:by |rJG4IHzWf) (:text |memof-call) (:type :leaf)
|s $ {} (:at 1651608138390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608138390) (:by |rJG4IHzWf) (:text |app.config) (:type :leaf)
|b $ {} (:at 1651608138390) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651608138390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608138390) (:by |rJG4IHzWf) (:text |inline-shader) (:type :leaf)
|app.comp.container $ {}
:defs $ {}
|comp-container $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1615450365814) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573662792335) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|t $ {} (:at 1574442738592) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1582367227989) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1574442742932) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1574442744071) (:by |rJG4IHzWf) (:text "|\"Store") (:type :leaf)
|r $ {} (:at 1574442745655) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|v $ {} (:at 1574442779990) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1574442779990) (:by |rJG4IHzWf) (:text |:tab) (:type :leaf)
|j $ {} (:at 1574442779990) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|v $ {} (:at 1583036824444) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1583036827332) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1583036827630) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036827827) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036828777) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1583036829493) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036830034) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1583036831664) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036832446) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|j $ {} (:at 1583036832651) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036833411) (:by |rJG4IHzWf) (:text |:states) (:type :leaf)
|j $ {} (:at 1583036834181) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|n $ {} (:at 1651861705164) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861706399) (:by |rJG4IHzWf) (:text |tab) (:type :leaf)
|b $ {} (:at 1651861854934) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651861901704) (:by |rJG4IHzWf) (:text |either) (:type :leaf)
|T $ {} (:at 1651861708338) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861708838) (:by |rJG4IHzWf) (:text |:tab) (:type :leaf)
|b $ {} (:at 1651861709479) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|b $ {} (:at 1655107926233) (:by |rJG4IHzWf) (:text |:kaleidoscope) (:type :leaf)
|T $ {} (:at 1574353986671) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1574353987962) (:by |rJG4IHzWf) (:text |container) (:type :leaf)
|L $ {} (:at 1574353988241) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1574353988566) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|n $ {} (:at 1651861733680) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651861735968) (:by |rJG4IHzWf) (:text |case-default) (:type :leaf)
|H $ {} (:at 1651861841668) (:by |rJG4IHzWf) (:text |tab) (:type :leaf)
|J $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|b $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|b $ {} (:at 1651861804885) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861805585) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|b $ {} (:at 1651891757164) (:by |rJG4IHzWf) (:text "|\"Unknown tab ") (:type :leaf)
|h $ {} (:at 1651861924837) (:by |rJG4IHzWf) (:text |tab) (:type :leaf)
|h $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|b $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|h $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|l $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|b $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|h $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|b $ {} (:at 1651891733467) (:by |rJG4IHzWf) (:text |32) (:type :leaf)
|l $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861800364) (:by |rJG4IHzWf) (:text |:font-family) (:type :leaf)
|b $ {} (:at 1651891711741) (:by |rJG4IHzWf) (:text "||Josefin Sans") (:type :leaf)
|o $ {} (:at 1651891737517) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651891737517) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|b $ {} (:at 1651891737517) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651891737517) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|b $ {} (:at 1651891741079) (:by |rJG4IHzWf) (:text |10) (:type :leaf)
|h $ {} (:at 1651891748933) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|l $ {} (:at 1651891737517) (:by |rJG4IHzWf) (:text |70) (:type :leaf)
|L $ {} (:at 1651861741935) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861744163) (:by |rJG4IHzWf) (:text |:moon) (:type :leaf)
|b $ {} (:at 1651861747277) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651861747277) (:by |rJG4IHzWf) (:text |comp-moon-demo) (:type :leaf)
|h $ {} (:at 1651861747277) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861747277) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|b $ {} (:at 1651861747277) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|h $ {} (:at 1651861747277) (:by |rJG4IHzWf) (:text |:moon) (:type :leaf)
|T $ {} (:at 1651861737862) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651861740641) (:by |rJG4IHzWf) (:text |:fake-3d) (:type :leaf)
|T $ {} (:at 1651509270272) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608096039) (:by |rJG4IHzWf) (:text |comp-fake-3d) (:type :leaf)
|b $ {} (:at 1651509319470) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509320376) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|b $ {} (:at 1651509321840) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|h $ {} (:at 1651608100274) (:by |rJG4IHzWf) (:text |:fake-3d) (:type :leaf)
|b $ {} (:at 1651863281905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651863286225) (:by |rJG4IHzWf) (:text |:isohypse) (:type :leaf)
|b $ {} (:at 1651863287807) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651863291856) (:by |rJG4IHzWf) (:text |comp-isohypse) (:type :leaf)
|b $ {} (:at 1651863294621) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651863295527) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|b $ {} (:at 1651863296275) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|h $ {} (:at 1651863297779) (:by |rJG4IHzWf) (:text |:isohypse) (:type :leaf)
|h $ {} (:at 1651863281905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651892083293) (:by |rJG4IHzWf) (:text |:star-trail) (:type :leaf)
|b $ {} (:at 1651863287807) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651892084470) (:by |rJG4IHzWf) (:text |comp-star-trail) (:type :leaf)
|b $ {} (:at 1651919016969) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651919016969) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|b $ {} (:at 1651919016969) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|h $ {} (:at 1651919019327) (:by |rJG4IHzWf) (:text |:star-trail) (:type :leaf)
|l $ {} (:at 1651863281905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651892089494) (:by |rJG4IHzWf) (:text |:star-link) (:type :leaf)
|b $ {} (:at 1651863287807) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651892094483) (:by |rJG4IHzWf) (:text |comp-star-link) (:type :leaf)
|o $ {} (:at 1652099875543) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1652099878272) (:by |rJG4IHzWf) (:text |:wind-ring) (:type :leaf)
|b $ {} (:at 1652099879074) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1652099883835) (:by |rJG4IHzWf) (:text |comp-wind-ring) (:type :leaf)
|b $ {} (:at 1654861681518) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1654861682362) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|T $ {} (:at 1652099963249) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|b $ {} (:at 1654861687754) (:by |rJG4IHzWf) (:text |:wind-ring) (:type :leaf)
|q $ {} (:at 1652099875543) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1654861549510) (:by |rJG4IHzWf) (:text |:bending) (:type :leaf)
|b $ {} (:at 1652099879074) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1654861552825) (:by |rJG4IHzWf) (:text |comp-bending) (:type :leaf)
|b $ {} (:at 1654861690774) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1654861691488) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|T $ {} (:at 1652099963249) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|b $ {} (:at 1654861693192) (:by |rJG4IHzWf) (:text |:bending) (:type :leaf)
|s $ {} (:at 1655068149965) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655068150525) (:by |rJG4IHzWf) (:text |:kaleidoscope) (:type :leaf)
|b $ {} (:at 1655068152584) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655068154582) (:by |rJG4IHzWf) (:text |comp-kaleidoscope) (:type :leaf)
|b $ {} (:at 1655068212893) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655068213594) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|b $ {} (:at 1655068214517) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|h $ {} (:at 1655068215153) (:by |rJG4IHzWf) (:text |:kaleidoscope) (:type :leaf)
|t $ {} (:at 1655068149965) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655438594631) (:by |rJG4IHzWf) (:text |:hyper-grid) (:type :leaf)
|b $ {} (:at 1655068152584) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655438603077) (:by |rJG4IHzWf) (:text |comp-hyper-grid) (:type :leaf)
|b $ {} (:at 1655068212893) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655068213594) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|b $ {} (:at 1655068214517) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|h $ {} (:at 1655438608343) (:by |rJG4IHzWf) (:text |:hyper-grid) (:type :leaf)
|q $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |comp-tabs) (:type :leaf)
|b $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |:moon) (:type :leaf)
|h $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text "|\"Moon") (:type :leaf)
|h $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |:fake-3d) (:type :leaf)
|h $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text "|\"Fake 3d") (:type :leaf)
|l $ {} (:at 1651863141616) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651863144870) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651863190194) (:by |rJG4IHzWf) (:text |:isohypse) (:type :leaf)
|h $ {} (:at 1651863194573) (:by |rJG4IHzWf) (:text "|\"Isohypse") (:type :leaf)
|o $ {} (:at 1651891661862) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651891662567) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651891671496) (:by |rJG4IHzWf) (:text |:star-link) (:type :leaf)
|h $ {} (:at 1651891675752) (:by |rJG4IHzWf) (:text "|\"Star Link") (:type :leaf)
|q $ {} (:at 1651891677225) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651891677724) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651891685543) (:by |rJG4IHzWf) (:text |:star-trail) (:type :leaf)
|h $ {} (:at 1651891690954) (:by |rJG4IHzWf) (:text "|\"Star Trail") (:type :leaf)
|s $ {} (:at 1651891677225) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651891677724) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1652099888182) (:by |rJG4IHzWf) (:text |:wind-ring) (:type :leaf)
|h $ {} (:at 1652099893663) (:by |rJG4IHzWf) (:text "|\"Wind Ring") (:type :leaf)
|t $ {} (:at 1651891677225) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651891677724) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1654861559814) (:by |rJG4IHzWf) (:text |:bending) (:type :leaf)
|h $ {} (:at 1654861564736) (:by |rJG4IHzWf) (:text "|\"Bending") (:type :leaf)
|u $ {} (:at 1651891677225) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651891677724) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1655068226786) (:by |rJG4IHzWf) (:text |:kaleidoscope) (:type :leaf)
|h $ {} (:at 1655068229906) (:by |rJG4IHzWf) (:text "|\"Kaleidoscope") (:type :leaf)
|v $ {} (:at 1651891677225) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651891677724) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1655438615030) (:by |rJG4IHzWf) (:text |:hyper-grid) (:type :leaf)
|h $ {} (:at 1655441825116) (:by |rJG4IHzWf) (:text "|\"Hyper Lens") (:type :leaf)
|h $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |tab) (:type :leaf)
|l $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|b $ {} (:at 1651861877323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861876937) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1655440724352) (:by |rJG4IHzWf) (:text |-448) (:type :leaf)
|h $ {} (:at 1651861886060) (:by |rJG4IHzWf) (:text |-300) (:type :leaf)
|o $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|b $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |t) (:type :leaf)
|b $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|h $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|b $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |:tab) (:type :leaf)
|h $ {} (:at 1651861869087) (:by |rJG4IHzWf) (:text |t) (:type :leaf)
:ns $ {} (:at 1573356292089) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573356292089) (:by |rJG4IHzWf) (:text |ns) (:type :leaf)
|j $ {} (:at 1573356292089) (:by |rJG4IHzWf) (:text |app.comp.container) (:type :leaf)
|r $ {} (:at 1573356347927) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573356351680) (:by |rJG4IHzWf) (:text |:require) (:type :leaf)
|j $ {} (:at 1573356351873) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1573356354451) (:by |rJG4IHzWf) (:text |phlox.core) (:type :leaf)
|r $ {} (:at 1573356355219) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1573356355436) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|s $ {} (:at 1581850032842) (:by |rJG4IHzWf) (:text |g) (:type :leaf)
|t $ {} (:at 1581003569723) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|v $ {} (:at 1573974176863) (:by |rJG4IHzWf) (:text |rect) (:type :leaf)
|x $ {} (:at 1573974179009) (:by |rJG4IHzWf) (:text |circle) (:type :leaf)
|y $ {} (:at 1573974179800) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|yT $ {} (:at 1573974254119) (:by |rJG4IHzWf) (:text |container) (:type :leaf)
|yb $ {} (:at 1574181633700) (:by |rJG4IHzWf) (:text |graphics) (:type :leaf)
|yj $ {} (:at 1574007057783) (:by |rJG4IHzWf) (:text |create-list) (:type :leaf)
|yr $ {} (:at 1584639017252) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|x $ {} (:at 1583034151993) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1583034161865) (:by |rJG4IHzWf) (:text |phlox.comp.button) (:type :leaf)
|r $ {} (:at 1583034163079) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1583034163311) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1583034313642) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|yT $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:text |phlox.comp.drag-point) (:type :leaf)
|r $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:text |comp-drag-point) (:type :leaf)
|yyT $ {} (:at 1587288593017) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1587288596975) (:by |rJG4IHzWf) (:text |respo-ui.core) (:type :leaf)
|r $ {} (:at 1587288597735) (:by |rJG4IHzWf) (:text |:as) (:type :leaf)
|v $ {} (:at 1587288598134) (:by |rJG4IHzWf) (:text |ui) (:type :leaf)
|yyj $ {} (:at 1612613233615) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1612613236216) (:by |rJG4IHzWf) (:text |memof.alias) (:type :leaf)
|r $ {} (:at 1612613237132) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1612613237369) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1612613239222) (:by |rJG4IHzWf) (:text |memof-call) (:type :leaf)
|z $ {} (:at 1651509279365) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509281953) (:by |rJG4IHzWf) (:text |app.comp.moon-demo) (:type :leaf)
|b $ {} (:at 1651509282818) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651509283031) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651509287020) (:by |rJG4IHzWf) (:text |comp-moon-demo) (:type :leaf)
|zD $ {} (:at 1651509279365) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608106814) (:by |rJG4IHzWf) (:text |app.comp.fake-3d) (:type :leaf)
|b $ {} (:at 1651509282818) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651509283031) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608112707) (:by |rJG4IHzWf) (:text |comp-fake-3d) (:type :leaf)
|zP $ {} (:at 1651861641202) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861644629) (:by |rJG4IHzWf) (:text |phlox.comp.tabs) (:type :leaf)
|b $ {} (:at 1651861645531) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651861645734) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651861646935) (:by |rJG4IHzWf) (:text |comp-tabs) (:type :leaf)
|zY $ {} (:at 1651863279860) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651863279860) (:by |rJG4IHzWf) (:text |app.comp.isohypse) (:type :leaf)
|b $ {} (:at 1651863279860) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651863279860) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651863279860) (:by |rJG4IHzWf) (:text |comp-isohypse) (:type :leaf)
|b $ {} (:at 1652099930656) (:by |rJG4IHzWf) (:text |comp-wind-ring) (:type :leaf)
|ze $ {} (:at 1651892070798) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651892070798) (:by |rJG4IHzWf) (:text |app.comp.star-trail) (:type :leaf)
|b $ {} (:at 1651892070798) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1651892070798) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651892070798) (:by |rJG4IHzWf) (:text |comp-star-trail) (:type :leaf)
|b $ {} (:at 1651892073923) (:by |rJG4IHzWf) (:text |comp-star-link) (:type :leaf)
|zj $ {} (:at 1654861568565) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1654861572171) (:by |rJG4IHzWf) (:text |app.comp.bending) (:type :leaf)
|b $ {} (:at 1654861573094) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1654861573433) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1654861576314) (:by |rJG4IHzWf) (:text |comp-bending) (:type :leaf)
|zn $ {} (:at 1655068156892) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655068158745) (:by |rJG4IHzWf) (:text |app.comp.kaleidoscope) (:type :leaf)
|b $ {} (:at 1655068159708) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1655068159917) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655068162809) (:by |rJG4IHzWf) (:text |comp-kaleidoscope) (:type :leaf)
|zq $ {} (:at 1655068156892) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655438581997) (:by |rJG4IHzWf) (:text |app.comp.hyper-grid) (:type :leaf)
|b $ {} (:at 1655068159708) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|h $ {} (:at 1655068159917) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1655438587819) (:by |rJG4IHzWf) (:text |comp-hyper-grid) (:type :leaf)
:proc $ {} (:at 1573356292089) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|app.comp.fake-3d $ {}
:configs $ {}
:defs $ {}
|comp-fake-3d $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|b $ {} (:at 1651608066394) (:by |rJG4IHzWf) (:text |comp-fake-3d) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|l $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:cursor) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |or) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:n) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |mesh) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651857705584) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|h $ {} (:at 1651857705817) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|l $ {} (:at 1651857705926) (:by |rJG4IHzWf) (:text |) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:geometry) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:attributes) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:id) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text ||aVertexPosition) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:size) (:type :leaf)
|b $ {} (:at 1651608391876) (:by |rJG4IHzWf) (:text |3) (:type :leaf)
|l $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:buffer) (:type :leaf)
|b $ {} (:at 1651608619030) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651608620133) (:by |rJG4IHzWf) (:text |concat) (:type :leaf)
|L $ {} (:at 1651608620923) (:by |rJG4IHzWf) (:text |&) (:type :leaf)
|T $ {} (:at 1651610880462) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651610881180) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|L $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651611579885) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|h $ {} (:at 1651611577494) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|l $ {} (:at 1651611777243) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|h $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651611581441) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|h $ {} (:at 1651611578269) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|l $ {} (:at 1651611775200) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|l $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651611582144) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|h $ {} (:at 1651611583289) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|l $ {} (:at 1651611771953) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|o $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651611585784) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|h $ {} (:at 1651611584312) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|l $ {} (:at 1651611773320) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|q $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651611586916) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|h $ {} (:at 1651611587874) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|l $ {} (:at 1651638167782) (:by |rJG4IHzWf) (:text |-80) (:type :leaf)
|s $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651611589770) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|h $ {} (:at 1651611588818) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|l $ {} (:at 1651638168886) (:by |rJG4IHzWf) (:text |-80) (:type :leaf)
|t $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651611590702) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|h $ {} (:at 1651611592114) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|l $ {} (:at 1651638169944) (:by |rJG4IHzWf) (:text |-80) (:type :leaf)
|u $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610881764) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|b $ {} (:at 1651611594521) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|h $ {} (:at 1651611595813) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|l $ {} (:at 1651638172150) (:by |rJG4IHzWf) (:text |-80) (:type :leaf)
|P $ {} (:at 1651610882559) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610886331) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|b $ {} (:at 1651610890912) (:by |rJG4IHzWf) (:text |move-x) (:type :leaf)
|R $ {} (:at 1651638429581) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651648375087) (:by |rJG4IHzWf) (:text |wo-log) (:type :leaf)
|T $ {} (:at 1651608876568) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651608878718) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|b $ {} (:at 1651608894381) (:by |rJG4IHzWf) (:text |transform-3d) (:type :leaf)
|b $ {} (:at 1651639866511) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651648372293) (:by |rJG4IHzWf) (:text |wo-log) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:index) (:type :leaf)
|b $ {} (:at 1651610448330) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651610449980) (:by |rJG4IHzWf) (:text |concat) (:type :leaf)
|L $ {} (:at 1651610451091) (:by |rJG4IHzWf) (:text |&) (:type :leaf)
|T $ {} (:at 1651610453153) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651857733717) (:by |rJG4IHzWf) (:text |[][]) (:type :leaf)
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651610789328) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|h $ {} (:at 1651610791096) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651610798420) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|h $ {} (:at 1651610798985) (:by |rJG4IHzWf) (:text |3) (:type :leaf)
|l $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651610803397) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|h $ {} (:at 1651610798985) (:by |rJG4IHzWf) (:text |3) (:type :leaf)
|s $ {} (:at 1651610817227) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651610818990) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|h $ {} (:at 1651610819662) (:by |rJG4IHzWf) (:text |4) (:type :leaf)
|t $ {} (:at 1651610817227) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|h $ {} (:at 1651610819662) (:by |rJG4IHzWf) (:text |4) (:type :leaf)
|l $ {} (:at 1651610839172) (:by |rJG4IHzWf) (:text |5) (:type :leaf)
|u $ {} (:at 1651610844212) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651610846331) (:by |rJG4IHzWf) (:text |5) (:type :leaf)
|h $ {} (:at 1651610846632) (:by |rJG4IHzWf) (:text |6) (:type :leaf)
|v $ {} (:at 1651610847447) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651610849234) (:by |rJG4IHzWf) (:text |6) (:type :leaf)
|h $ {} (:at 1651610849562) (:by |rJG4IHzWf) (:text |7) (:type :leaf)
|w $ {} (:at 1651610852691) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651610854197) (:by |rJG4IHzWf) (:text |4) (:type :leaf)
|h $ {} (:at 1651610854942) (:by |rJG4IHzWf) (:text |7) (:type :leaf)
|z $ {} (:at 1651611033958) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651611035451) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|h $ {} (:at 1651611036767) (:by |rJG4IHzWf) (:text |5) (:type :leaf)
|zD $ {} (:at 1651611038382) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651611039552) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|h $ {} (:at 1651611040070) (:by |rJG4IHzWf) (:text |6) (:type :leaf)
|zP $ {} (:at 1651611040589) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651611041823) (:by |rJG4IHzWf) (:text |3) (:type :leaf)
|h $ {} (:at 1651611042346) (:by |rJG4IHzWf) (:text |7) (:type :leaf)
|j $ {} (:at 1651608355817) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608359359) (:by |rJG4IHzWf) (:text |:draw-mode) (:type :leaf)
|b $ {} (:at 1651610782989) (:by |rJG4IHzWf) (:text |:line-strip) (:type :leaf)
|l $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:shader) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:vertex-source) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |inline-shader) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text ||fake-3d.vert) (:type :leaf)
|h $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:fragment-source) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |inline-shader) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text ||fake-3d.frag) (:type :leaf)
|o $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:uniforms) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |js-object) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:n) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |:n) (:type :leaf)
|b $ {} (:at 1651608061399) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|move-x $ {} (:at 1651610892548) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610893755) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|b $ {} (:at 1651610892548) (:by |rJG4IHzWf) (:text |move-x) (:type :leaf)
|h $ {} (:at 1651610892548) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610897837) (:by |rJG4IHzWf) (:text |point) (:type :leaf)
|l $ {} (:at 1651611117856) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651611118461) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|L $ {} (:at 1651611121116) (:by |rJG4IHzWf) (:text |point) (:type :leaf)
|P $ {} (:at 1651638810741) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651638811939) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|b $ {} (:at 1651638812902) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651638813299) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|b $ {} (:at 1651638814080) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651638817128) (:by |rJG4IHzWf) (:text |p) (:type :leaf)
|h $ {} (:at 1651638820303) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651638820969) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|b $ {} (:at 1651638822202) (:by |rJG4IHzWf) (:text |p) (:type :leaf)
|h $ {} (:at 1651857675614) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|T $ {} (:at 1651610898195) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610900678) (:by |rJG4IHzWf) (:text |update) (:type :leaf)
|h $ {} (:at 1651610901992) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|l $ {} (:at 1651610904435) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610904721) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|b $ {} (:at 1651610904977) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610905221) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|h $ {} (:at 1651610905811) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651647572018) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|b $ {} (:at 1651610907246) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|h $ {} (:at 1651647608869) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|X $ {} (:at 1651610898195) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610900678) (:by |rJG4IHzWf) (:text |update) (:type :leaf)
|h $ {} (:at 1651638989106) (:by |rJG4IHzWf) (:text |1) (:type :leaf)
|l $ {} (:at 1651610904435) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651610904721) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|b $ {} (:at 1651610904977) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651638990450) (:by |rJG4IHzWf) (:text |y) (:type :leaf)
|h $ {} (:at 1651610905811) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651639113057) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|b $ {} (:at 1651638991976) (:by |rJG4IHzWf) (:text |y) (:type :leaf)
|h $ {} (:at 1651647627388) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|b $ {} (:at 1651611124277) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651611125991) (:by |rJG4IHzWf) (:text |update) (:type :leaf)
|b $ {} (:at 1651611129010) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|h $ {} (:at 1651611130581) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651611130887) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|b $ {} (:at 1651611131188) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651611132205) (:by |rJG4IHzWf) (:text |z) (:type :leaf)
|h $ {} (:at 1651611132769) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651611304207) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|h $ {} (:at 1651611140619) (:by |rJG4IHzWf) (:text |z) (:type :leaf)
|l $ {} (:at 1651857656145) (:by |rJG4IHzWf) (:text |1200) (:type :leaf)
|screen-vec $ {} (:at 1651608973429) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608973429) (:by |rJG4IHzWf) (:text |def) (:type :leaf)
|b $ {} (:at 1651608973429) (:by |rJG4IHzWf) (:text |screen-vec) (:type :leaf)
|h $ {} (:at 1651608973429) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608975252) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|X $ {} (:at 1651857847065) (:by |rJG4IHzWf) (:text |120) (:type :leaf)
|Z $ {} (:at 1651857841910) (:by |rJG4IHzWf) (:text |50) (:type :leaf)
|b $ {} (:at 1651648404690) (:by |rJG4IHzWf) (:text |-600) (:type :leaf)
|square $ {} (:at 1651857538805) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857542474) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|b $ {} (:at 1651857538805) (:by |rJG4IHzWf) (:text |square) (:type :leaf)
|h $ {} (:at 1651857538805) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857544248) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|l $ {} (:at 1651857544648) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857548290) (:by |rJG4IHzWf) (:text |&*) (:type :leaf)
|b $ {} (:at 1651857545793) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|h $ {} (:at 1651857546308) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|sum-squares $ {} (:at 1651857551281) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857552396) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|b $ {} (:at 1651857551281) (:by |rJG4IHzWf) (:text |sum-squares) (:type :leaf)
|h $ {} (:at 1651857551281) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857556961) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|b $ {} (:at 1651857557273) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|l $ {} (:at 1651857560000) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857561855) (:by |rJG4IHzWf) (:text |&+) (:type :leaf)
|b $ {} (:at 1651857562410) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857563808) (:by |rJG4IHzWf) (:text |&*) (:type :leaf)
|b $ {} (:at 1651857564396) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|h $ {} (:at 1651857566397) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|h $ {} (:at 1651857562410) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857563808) (:by |rJG4IHzWf) (:text |&*) (:type :leaf)
|b $ {} (:at 1651857569383) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|h $ {} (:at 1651857570240) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|transform-3d $ {} (:at 1651608896555) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651608897952) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|b $ {} (:at 1651608896555) (:by |rJG4IHzWf) (:text |transform-3d) (:type :leaf)
|h $ {} (:at 1651608896555) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857533697) (:by |rJG4IHzWf) (:text |point) (:type :leaf)
|o $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|b $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|b $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1651857591599) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |look-distance) (:type :leaf)
|b $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |wo-log) (:type :leaf)
|b $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |new-lookat-point) (:type :leaf)
|h $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|b $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |look-distance) (:type :leaf)
|h $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |screen-vec) (:type :leaf)
|l $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |s) (:type :leaf)
|b $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1651857488390) (:by |rJG4IHzWf) (:text |noted) (:type :leaf)