-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
7635 lines (7635 loc) · 318 KB
/
package-lock.json
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
{
"name": "quadstore-comunica",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"workspaces": [
"spec",
"engine",
"examples",
"packages/immutable",
"packages/uuid"
],
"devDependencies": {
"@types/node": "^22.7.5",
"typescript": "^5.6.3"
}
},
"engine": {
"name": "quadstore-comunica",
"version": "4.5.0",
"license": "MIT",
"dependencies": {
"@rdfjs/types": "^1.1.2",
"sparqlalgebrajs": "^4.3.8",
"sparqljs": "^3.7.3"
},
"devDependencies": {
"@comunica/query-sparql-rdfjs-lite": "^4.0.1",
"json-loader": "^0.5.7",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"asynciterator": "^3.9.0",
"quadstore": "^13.1.0"
}
},
"examples": {
"version": "1.0.0",
"dependencies": {
"memory-level": "^1.0.0",
"quadstore": "13.2.3",
"rdf-data-factory": "^1.1.2",
"rdf-terms": "^1.11.0"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.1.tgz",
"integrity": "sha512-vXIT0nzZGX/+yMD5bx2VhTzc92H55tPoehh1BW/FZHOndWGFddrH3MAfdx39FRc7irABirW6EQaGxIJYV6CGuA==",
"engines": [
"node >= 0.2.0"
],
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@colors/colors": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
"integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
"dev": true,
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-4.0.1.tgz",
"integrity": "sha512-1ZTIhfofU+UfmFGhfJLW1ceELdUHYln9feaw59GAKLF1RIXd7q/VxGUgufyYL7bi3K6MvGHK3TiB1GMCM1dXKA==",
"dev": true,
"dependencies": {
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.10.0.tgz",
"integrity": "sha512-0puCWF+y24EDOOAUUVVbC+tOf4UV+LzEbqi8T5v25jcVGCXyTqfra+bDywfrcv3adrVp18jLCJ46ycaH5xhy9Q==",
"dev": true,
"dependencies": {
"@comunica/core": "^2.10.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/@comunica/core": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-2.10.0.tgz",
"integrity": "sha512-onsGs2iKHUPRxxMOdx42vdxslk8q9FQZdRjQtHJ6SGiCpJwIL9ciBgPIOl2RL2YfzXHemr/0umeNOppRDcWhJA==",
"dev": true,
"dependencies": {
"@comunica/types": "^2.10.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/@comunica/types": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-2.10.0.tgz",
"integrity": "sha512-1UjPGbZcYrapBjMGUZedrIGcn9rOLpEOlJo1ZkWddFUGTwndVg9d4BZnQw+UnQzXMcLJcdKt94Zns8iEmBqARw==",
"dev": true,
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/immutable": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz",
"integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==",
"dev": true
},
"node_modules/@comunica/actor-abstract-path": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-4.0.1.tgz",
"integrity": "sha512-1mHVqZlnKOzOkUfcdA+EhItfcuPeJdtqe7eQBVHiZoEB/Q8lRmKibBuONT2c/1qRwXfJI81E77Qr1rZbqUEzAA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-bindings-factory": "^4.0.1",
"@comunica/utils-query-operation": "^4.0.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.3.8"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-average": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-average/-/actor-bindings-aggregator-factory-average-4.0.1.tgz",
"integrity": "sha512-jU3q0oWP67MN8xeIQJGiyZXOh5zdrKgeDWhhfo7utRcSL79jZwed3PwcKaHfuGaqAyy+mPcga2lvWQrscsVauQ==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.1",
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-count": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-count/-/actor-bindings-aggregator-factory-count-4.0.1.tgz",
"integrity": "sha512-7TWrhTdVUm6iswFmTODzlCtTW7LDCrXoWmR4gtIcH1b7lkvhbv9ZU/FiTWQf1EomTQDrFPsFqZeuff+ACGdzvQ==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-group-concat": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-group-concat/-/actor-bindings-aggregator-factory-group-concat-4.0.1.tgz",
"integrity": "sha512-E5WY9POJTsy0KwmW3rr3GF2nnTcFo1lmnHbE4RTfxLR3Jn9WehYXdB2sNTUcD1J2J1KGHRGPvw866YSr6NZYmA==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-max": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-max/-/actor-bindings-aggregator-factory-max-4.0.1.tgz",
"integrity": "sha512-1xjf25CBA6FurmYJSpR1qVka5CQPOg3dmTOnoHw+7+YtbsQHxbvr+dFEZlcylziZXUTSWqdB8Sin2LfaPbCLTw==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-min": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-min/-/actor-bindings-aggregator-factory-min-4.0.1.tgz",
"integrity": "sha512-tO7C+LQQ+R/pTtvhrUMKe99UNNclzBnp+LF8h9b+Px980t+vutJBS/5UFp5D8uvq9uQsibXZVNtyfL6Kq+QhWA==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sample": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sample/-/actor-bindings-aggregator-factory-sample-4.0.1.tgz",
"integrity": "sha512-CKS5Hx7pKuKU+RoNr86gqpyBHtRCgycJfKrDn4ksiS9NNRtXvWTRVr0SRJ9SlJ6NSt7WSeCJzRMDZPA9o52MXw==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sum": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sum/-/actor-bindings-aggregator-factory-sum-4.0.1.tgz",
"integrity": "sha512-DPEjaY7Xzuu/ExDrzNHSi3t+9j07gCcQSeLrn3tTuG/ttOidQiOcmuuVafS3GuGzFZTWBHREg0doOmZlEcZJTQ==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.1",
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-wildcard-count": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-wildcard-count/-/actor-bindings-aggregator-factory-wildcard-count-4.0.1.tgz",
"integrity": "sha512-BW2bGc+wM8YvWYZ5H7UTA+Kqn0Mm80aSxETp2r3lXb1Wxmt/20ug3AC4hWN92/SlgJaXZQk2Aqrylza385ID5w==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"@rdfjs/types": "*",
"rdf-string": "^1.6.3"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-4.0.1.tgz",
"integrity": "sha512-zOz8sZz7cSp5c9yyZdRspuQobfJ+mYbQ43I/W3FqjUtWLr/o3fA4jpXNInjVoz1Ihi+xfasRQJWaNMS5rd27Ag==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-identify/-/actor-context-preprocess-query-source-identify-4.0.1.tgz",
"integrity": "sha512-43/xTj/HJL82RQXb1ooPSEDwdNw8iVcQq8pM+skInrWoxZ4lZpO9nhi8PIX0g+wzHLf3UqrJvHwSDZnvAzFZ2g==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.1",
"@comunica/bus-http-invalidate": "^4.0.1",
"@comunica/bus-query-source-identify": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"lru-cache": "^10.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-skolemize/-/actor-context-preprocess-query-source-skolemize-4.0.1.tgz",
"integrity": "sha512-S6w+WsChPmgn6c1rehr5Ekn+yhPI9Iuiayjsh9iaswHmWVQTx0D8ZR50KF86GKOd/mlnrjUzeSgt1QFXV68QZg==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-data-factory": "^4.0.1",
"@comunica/utils-metadata": "^4.0.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.8"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-4.0.1.tgz",
"integrity": "sha512-338zTszX24T+Mag66kqnIUha0IBIF0lwbFDvOvWheivpw08clbCmy18vvWpRLkfkwo3DMNcOzT6hIxA/Y6Qn/g==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-4.0.1.tgz",
"integrity": "sha512-foFY8mxtaf4y9/zNV6yYFXlynsjskAfGCQYGZ0IQO3TAvXPHq/IexmG1VC8tD7+FbFiFI0OY3MGn6cdjIH980Q==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-expression-evaluator-factory-default": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-expression-evaluator-factory-default/-/actor-expression-evaluator-factory-default-4.0.1.tgz",
"integrity": "sha512-Ergbw5le+0zbVCdPIGkqgFZT2dVWkZPAxwOmUiQtdmkZK3VS1Su6CLC8Q4FOJQygEs4u1vdrrhbc+mMU7f1M8w==",
"dev": true,
"dependencies": {
"@comunica/bus-expression-evaluator-factory": "^4.0.1",
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/bus-query-operation": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-bindings-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"@comunica/utils-query-operation": "^4.0.1",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-function-factory-expression-bnode": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bnode/-/actor-function-factory-expression-bnode-4.0.1.tgz",
"integrity": "sha512-OgyZjujCSRbJ0mR+Yeb9Sxr0IG9ltChZqpn05l+mbpoSYoRBPO+r0hd9Z+AEuGsRGcBA0zZGXVzIFINnmVcRqQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-data-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-bound": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bound/-/actor-function-factory-expression-bound-4.0.1.tgz",
"integrity": "sha512-O77Yheu1OKDD2yivwzS5zddmEekdrMDfLDr8nSm0Nu+A4P7LXcv1Yuvzu+YhJvD5GtKNo+/XVhqhK+vCBQte+A==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-coalesce": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-coalesce/-/actor-function-factory-expression-coalesce-4.0.1.tgz",
"integrity": "sha512-y1BVyFDVkJFykH/de14GaAAsfLngpaD+MqXB9pTzG7xidoGw0CjQ2pxP88NVp43LlOiRGpaNprKgE4cW/Ll3/g==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-concat": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-concat/-/actor-function-factory-expression-concat-4.0.1.tgz",
"integrity": "sha512-ZA/GzxEgGzHuBD9evaRmMsyhsDUG4rhccC+xLTuuSmI97qtHQ239Y0yRzXn5QF0UXGFAy47y9rtVpaOP1V3oEA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-extensions": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-extensions/-/actor-function-factory-expression-extensions-4.0.1.tgz",
"integrity": "sha512-w9XvrlJQqxWXg8IeKLImVXGHsBRtEcRlUergh4jytDK2RPY7pUd3lF/CVVXW+V8Tyw8b7pGwnlx76U910ainAQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/core": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"rdf-data-factory": "^1.1.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-if": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-if/-/actor-function-factory-expression-if-4.0.1.tgz",
"integrity": "sha512-lO8Vg+S+fb9c4hcSek+F0e2xn8CrjlUK8h+/DzMASBRNASBHgGhLUNQ8Ek7rddyaYfYhHJMmlLBIM62r9tTMwQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-in": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-in/-/actor-function-factory-expression-in-4.0.1.tgz",
"integrity": "sha512-H9R5ttaCRUceKPG7wgI40Ps6sUunbOQqYGxqrnIrxinLcjC2pQjGI3f+il5lNTbwszdv2nsdNfGjFDAb/tOEvw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-and": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-and/-/actor-function-factory-expression-logical-and-4.0.1.tgz",
"integrity": "sha512-lVHtbSKKbivVtfN2+WlwxiwHRMqlTojWLtJHwAXM2nqBm67/PCNSzDkxuxM4NRLHyYBU4uiak2b3+Hel+ERIrw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-or": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-or/-/actor-function-factory-expression-logical-or-4.0.1.tgz",
"integrity": "sha512-kAlyVdFfgr7hDY3KTodFNnwmfz2xSc8dXb7FLT7fEvGmhsICiNvJnbd6F9GFduFp/zUuM0hdBxI6rhjRRFvnVQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-not-in": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-not-in/-/actor-function-factory-expression-not-in-4.0.1.tgz",
"integrity": "sha512-hVq89SDJeGro44ViaF7GHH98hLx77iBzn7jFUllDuC2wmWiHt2vZQCf//B9Scr8W0CXgRZks+HV8O644pcMa4Q==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-expression-same-term": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-same-term/-/actor-function-factory-expression-same-term-4.0.1.tgz",
"integrity": "sha512-MtG8YWhA4Ey5vSuLObW5khiEs4ir4Cfd3v18OpzMPQMKq1jmZefo7CLGVM5RYfXFTlHiiyvbZnEaHizvtn2eEg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-abs": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-abs/-/actor-function-factory-term-abs-4.0.1.tgz",
"integrity": "sha512-SGFyp3M5oQr5TuG3Xx8w5si4pRNVt69lzaN1+a3O7+9Qvszw1zOazdi493JPHAFn+c1TuokjBfWpcwTrP282Aw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-addition": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-addition/-/actor-function-factory-term-addition-4.0.1.tgz",
"integrity": "sha512-NVIWALBQYAzSQDFhUYMw75zitzL1nA8sMrouqp45jYu7agaF+RaC6Mw1jSIQ0WSHFL6juBzUcTMW4QfNDbIPhw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-ceil": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-ceil/-/actor-function-factory-term-ceil-4.0.1.tgz",
"integrity": "sha512-Zae9kVMVlWmFFX3wMYQyccmnkBnCvS9JXsqzpTAsYylANUfj7VWLi7itmhbp2wwg8eB2BZBCwIDA/IqZUJTggQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-contains": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-contains/-/actor-function-factory-term-contains-4.0.1.tgz",
"integrity": "sha512-Xw3h0wj4Qnnume9HBPQ/KVUNpXnphYwDqIH6Nwr3OlqRDjpvqDAAdYFt68JvIz3dxUMF7TrHFcDxQu3KY0CvZA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-datatype": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-datatype/-/actor-function-factory-term-datatype-4.0.1.tgz",
"integrity": "sha512-7docVZ9oPQNu76ZCpPBHlfmoivwig2Ek7Cniny+yQ6dIJvIgRcGyiah9GxjCWn5pa69z5vpkBthgjefc1pGGKw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-day": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-day/-/actor-function-factory-term-day-4.0.1.tgz",
"integrity": "sha512-AtpHKbuWbnVvH0bbgz97Tmc3MtvrIAQ87+fQ3fWpCz6DNGf/UnL5KmgfvDQ8YGH/A2RSbCbfsjZ6d4jdSrob6w==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-division": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-division/-/actor-function-factory-term-division-4.0.1.tgz",
"integrity": "sha512-a/DYsT+DCMJuUaZN3eVqkp+cSKf2to1ByWoMt2GwJZ4DjH47e4Na1bXDezoU51vrynhUOdGKg5OsshyIFhWpZw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-encode-for-uri": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-encode-for-uri/-/actor-function-factory-term-encode-for-uri-4.0.1.tgz",
"integrity": "sha512-v+JG2IDgKutmbAuegZI67SJwaqWJQy3bN4zqaUg2I+kWzAXBogDVb/GRNThJdrB+awbar6LTVhcp+EqgZzxjOQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-equality": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-equality/-/actor-function-factory-term-equality-4.0.1.tgz",
"integrity": "sha512-jt0zG8avCbpIyfyvl7Bv++Ye5Qw6SrOhc7mdGovRwEwefxVJaqdNe3S6hYzBaqlDl8ZWJNAaqtIMxITrSuGufg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-floor": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-floor/-/actor-function-factory-term-floor-4.0.1.tgz",
"integrity": "sha512-gU+7QHqhawbz5l8LHGOhossFj+E1F8Qpl5Fih3meARV79/Q09wLtkvWmKMRyBxJtQjSYfJLSq1qKrS1aISrUSg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than/-/actor-function-factory-term-greater-than-4.0.1.tgz",
"integrity": "sha512-m2jUhunfoi9zHIHG/Jaek9qsIvUJgnzUIsEPImtS3lmwrhJxI0FoWrvej3kKXEyZL9+VDDD4eqQCflKEMn2Raw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than-equal": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than-equal/-/actor-function-factory-term-greater-than-equal-4.0.1.tgz",
"integrity": "sha512-OtKnPbrhKghb1xHYogSCf7r5R8X8c6G3fzd9/lIN6bjHUddGAY/cIyobkzeVHr96LczgaszxM2atkQZBOkRLpw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-hours": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-hours/-/actor-function-factory-term-hours-4.0.1.tgz",
"integrity": "sha512-xPyv5FDsOXomgXz3Lu5Ko4yYji771S4dj44BcCqaPDl2XOHSqLCHjRALnjF5wshBV+/NixGXjQnpzyiQ83M7QA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-inequality": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-inequality/-/actor-function-factory-term-inequality-4.0.1.tgz",
"integrity": "sha512-gVRPRgqtvAYaTuO8dy7tNRCS1yeZBX1Ti6Ci/TY8+GJmcn2rmbIA2rCXcc/c3t/fI71gap4sgaKYiR/vIzhYyg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-iri": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-iri/-/actor-function-factory-term-iri-4.0.1.tgz",
"integrity": "sha512-tsIVNg9yq11DJehH0f3HLQPk2I8hUyqirXs80eWU+nSNs9GNYvtBc6IIBLHp4Bn9+I4i+ak9FqIj9R//5CwZYA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"relative-to-absolute-iri": "^1.0.7"
}
},
"node_modules/@comunica/actor-function-factory-term-is-blank": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-blank/-/actor-function-factory-term-is-blank-4.0.1.tgz",
"integrity": "sha512-oTCG31HqdP6rtlagXC5Blnl/C+7Zhz3WNvzOzApJQXVVxCgUj7ycFq5+oxHEj9Xvntmj/05QWH9/RADR8mRFlw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-is-iri": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-iri/-/actor-function-factory-term-is-iri-4.0.1.tgz",
"integrity": "sha512-vvlWvX+ouG3SAQH80XW57vs4M1RHjfKDQoV3pKCwPt2SJe9kJo+s6qNxvWL+wJudbYn1L+Hq7Xe979o1kGxVPg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-is-literal": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-literal/-/actor-function-factory-term-is-literal-4.0.1.tgz",
"integrity": "sha512-ia0m6SwJZSL+7Qohcay56wG/3cjNadOiBlj6LYTnEALXcSkQo0Pxoqj/F6SP5MYJwKCYBFis+X1DIZ/ZKnTLgA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-is-numeric": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-numeric/-/actor-function-factory-term-is-numeric-4.0.1.tgz",
"integrity": "sha512-XdAEl4thJRH5EM6Y+trihR7Gkmz7djh/UmFXTN1DIhab+IVvderH3zz8AEGxZ306m+Z3QnPsTvk4MAbB/c37eQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-is-triple": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-triple/-/actor-function-factory-term-is-triple-4.0.1.tgz",
"integrity": "sha512-TsmmMfO/V6/UW9IVm2Xaofsui4iIPeJu3K5GDnwpXO7Wiu8lspDEN82kDAUCbbSrj4LhtOk0fKdrI/RryeQw7A==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-lang": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lang/-/actor-function-factory-term-lang-4.0.1.tgz",
"integrity": "sha512-7WXr0RDp63mhmBMNACkbb0oS4hW7oCrkC/rKQ2tvQk2H6pYl5xJHn39PFOF7KPDkZq40eIzDK3oZqBf/RrP8rw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-langmatches": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langmatches/-/actor-function-factory-term-langmatches-4.0.1.tgz",
"integrity": "sha512-X0tY14t0Nq0JStyqfmzT9dG8HqPAfZKdHF7m0xe0EPY70D00aGwawexG9kACVDV3J02GCI5UL/gTkCGOsswxOQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-lcase": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lcase/-/actor-function-factory-term-lcase-4.0.1.tgz",
"integrity": "sha512-7pBfmkHutbsalwSVSDu/Q2n8TlJZxUglcyktspUZnRnHD7uM+8pSTpBi/ztzZXJ38zzv61/0s6olXvGRfnMFOA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than/-/actor-function-factory-term-lesser-than-4.0.1.tgz",
"integrity": "sha512-/uiP1kfOCW2LUKdGM0E4faXFNcmcT0hlWPbmClyHyl9VuaXi21tGOpfYgg4UB+35dmBq0AdVY9qTciJ3gQVDuw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than-equal": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than-equal/-/actor-function-factory-term-lesser-than-equal-4.0.1.tgz",
"integrity": "sha512-NGjmsrpm2OvoUr6mmjunjS+is1L1O/UU7FeVJRYYC64YCRII2GNELwtlN//43exRXGpTzXrw+ghspP1MAw9JJA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-md5": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-md5/-/actor-function-factory-term-md5-4.0.1.tgz",
"integrity": "sha512-Y8mHf9dVLb2sHRY3+fFPQwNxs6e/WXYxcL25B8BLrcYXJscthewu3tCholjK2qH/CUkH3IF5VtFE0i+80wsRTA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"@types/spark-md5": "^3.0.1",
"spark-md5": "^3.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-minutes": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-minutes/-/actor-function-factory-term-minutes-4.0.1.tgz",
"integrity": "sha512-Wbz6Bpj2jZvoKF4jAFxbO2GVfeYf42USgRvdO4qrDlQiAgbZitok6ULAX04cQRJWs2WExsFdli6D+KcHJPVUVg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-month": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-month/-/actor-function-factory-term-month-4.0.1.tgz",
"integrity": "sha512-mXvoYLQK3y3/VecN697h2JD+nWwnnO4IDpZHbwwjnnMUBqV2oEMaluewyh88nW14joNM9zmxH/dJ2OCCpmFsXg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-multiplication": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-multiplication/-/actor-function-factory-term-multiplication-4.0.1.tgz",
"integrity": "sha512-nDuPzHunbnoczPnOxY2tOrM4O4I6qwaT/cFWNmZQXMs/9uRUo5PJtWn5avB0qPmsxyz59Tm0cOAqT+cXvBzo7w==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-not": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-not/-/actor-function-factory-term-not-4.0.1.tgz",
"integrity": "sha512-wF8b5fCkCG5fNjiiL/6q0w7OZ/slIvOQh2t7UYIQ3bNSwsuS08/30CzEA+iCBWsizoYorONA521GLSKK9Np1hw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-now": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-now/-/actor-function-factory-term-now-4.0.1.tgz",
"integrity": "sha512-XI7BRzajNmUwrN7aIgPigk/aFnZysQXafUPe11ub+nLWZ3LDP1Kz1MnisNafrmzPF/wpGgfka5ZZkAntDmPYzA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-object": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-object/-/actor-function-factory-term-object-4.0.1.tgz",
"integrity": "sha512-dEbqJg7wA1fF9f0nRVj0pjxhus0bdP/G5GYTc1Ney1meUZhXWOEivaPsGnBWfhOzuaAV4seJwb98vmdFiF8ijg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-predicate": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-predicate/-/actor-function-factory-term-predicate-4.0.1.tgz",
"integrity": "sha512-z3xlaW+nuOGbjsl2vfoCqtb8cdzviyplT1vpavgOdtjKaH94YfP6WT38lM6dL9YqKhiwFCOVm+P+neGHruTH1g==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-rand": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-rand/-/actor-function-factory-term-rand-4.0.1.tgz",
"integrity": "sha512-1/fm3At2EKQ/ulyDNvbCrHB2ED2gBKGVQ9dDxTH2jIf5CM1CeggbU1PoGc5TTckf0/2bjnJeK9ReRYcYtRUMSA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-regex": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-regex/-/actor-function-factory-term-regex-4.0.1.tgz",
"integrity": "sha512-n5uZCgipi71ToyS/zzfYz/CLbjZS+aIowBBVpvlN8CS/pbf2fzkVjuCc1HApRHv+Hoy9v6WjogCz7Jy4KVORNg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-replace": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-replace/-/actor-function-factory-term-replace-4.0.1.tgz",
"integrity": "sha512-pQJRLEzjmIlcIr4DzLIJX47/a1J99zft+D6IdGDzN96dQaKXgwKS7NdYUpeQivhialbh7M5Oe5UHHiGz8dqYgQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-round": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-round/-/actor-function-factory-term-round-4.0.1.tgz",
"integrity": "sha512-t4hN6TyEmudfQ60DNymOV5kr2wnLdCzu35nJi46zexaAScLn51ptwx8bFSj3ox8jJ7UIe78I3eQMU3Bo4YlfrQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-seconds": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-seconds/-/actor-function-factory-term-seconds-4.0.1.tgz",
"integrity": "sha512-BZKrvShElz2gwk8UBitrK87a93b1oMr0Zx4funqiuktIFVyBy/mAKIqzRV44+58t+OsHXNIQD8rpfSUgsARy1w==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-sha1": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha1/-/actor-function-factory-term-sha1-4.0.1.tgz",
"integrity": "sha512-PMKN6tDGTEQWWMfFCn1JJDzeTjqKErM8bvF0JFEzYyP4JWtEfBYsucQu89WssSGWUjqwJNkgLn4bYCvcnJsiwg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha256": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha256/-/actor-function-factory-term-sha256-4.0.1.tgz",
"integrity": "sha512-A7aSRS6PA7mgO3tYaD8r2cqKI1gMQ0aeRvDr+Gp5HWVnexuhQBzOkjg1bRNf55UHwrJXCLh8XNhFZRao7FWp+w==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha384": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha384/-/actor-function-factory-term-sha384-4.0.1.tgz",
"integrity": "sha512-HO6iyy3xA7fXDxmrCAaQtzMhadLLJYDJblvnFUtvt9Q5FuaNwcwFSS9zv69kf9rj2qobUN+qyu/p+Hi9/RwTkQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha512": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha512/-/actor-function-factory-term-sha512-4.0.1.tgz",
"integrity": "sha512-9TuZRBvCNl1xix4ZXF4ROuRpGuc68S42oaffvGt8g4qjDTDMzU6nqsTUDlsSqo7Oi2eTuqrHOLK0aVT42ItJkA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-str": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str/-/actor-function-factory-term-str-4.0.1.tgz",
"integrity": "sha512-fq1wayaox/BMgskt+SSphwtfy1iLRVNq1mCZwpjCC9qssG4y1gqMc4+bO4wkXpG5ikTbyW6Jl2LGSXvVgVIDcQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-str-after": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-after/-/actor-function-factory-term-str-after-4.0.1.tgz",
"integrity": "sha512-hQ6M8zaXr47jBxgPr5f6/aim5TmPej5ZNAZvxXLibTCjfEY/zk7jLdoy9T7AzcI9GL/mpdVJC8Q2gPwRLBYsmQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-str-before": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-before/-/actor-function-factory-term-str-before-4.0.1.tgz",
"integrity": "sha512-9XqzYuHSNJI5poNJULw3ytdO8XV9ba6tLLdY7R5YWkl0F6Q4IHATUSLxWt6Us7Cfd5tca4EhUlkMLXe5dvsBog==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-str-dt": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-dt/-/actor-function-factory-term-str-dt-4.0.1.tgz",
"integrity": "sha512-m+AvSThwgWPN5vxhA8x2NVeWdtNJMQB5iHthm6EkLpp3FoWGIUcPXIQgoxadRL2h8zfutcGDI6JMZs8c11AVqQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/context-entries": "^4.0.1",
"@comunica/types": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-str-ends": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-ends/-/actor-function-factory-term-str-ends-4.0.1.tgz",
"integrity": "sha512-IXBaV7r+vVJOx8NGZuFy9WX6Bu41tlvGKQR60Ss5EnEWF7C1r5BAhiU8yFVCPfFBgfwThP6yVYfFQX0jIrAGug==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-str-lang": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-lang/-/actor-function-factory-term-str-lang-4.0.1.tgz",
"integrity": "sha512-3iWAhKKe7DVnGLFTBqrJVbugMeclm3kGdIqTYCQDAUCyeYK2yCHRTkH00GOnyREeGwYq8sfqqBAMomQAn8+scQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-str-len": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-len/-/actor-function-factory-term-str-len-4.0.1.tgz",
"integrity": "sha512-W2zU+I98Q3cY25VX2ocG0thfdyhStwMt5Jfk8WzmzJb5VcfSO8raoNUuxv8pt2mnkA2oFVN1jDN3XP13l/JSeQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-str-starts": {
"version": "4.0.1",