-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupstream-lkg.json
More file actions
1057 lines (1057 loc) · 65.4 KB
/
Copy pathupstream-lkg.json
File metadata and controls
1057 lines (1057 loc) · 65.4 KB
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
{
"schema_version": 1,
"description": "Last two syntactically complete snapshots per upstream. Current published bundles remain the functional runtime fallback when an upstream is unavailable or corrupt.",
"sources": {
"gowaru": {
"generations": [
{
"captured_at": "2026-08-17T16:19:08+00:00",
"manifest_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/manifest.json",
"manifest_sha256": "873f4b3558b9424030858d333f07d803ba433d628d124ffa46daf53743abd4b8",
"manifest_file": "gowaru-873f4b3558b94240.json",
"declared": 23,
"providers": {
"anime-ultime": {
"sha256": "667e5fba43cdd8840b4625ce13ae71cd2d4bdea3d668297a5a845c21b0e0399f",
"file": "667e5fba43cdd8840b4625ce13ae71cd2d4bdea3d668297a5a845c21b0e0399f.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/anime-ultime.js",
"bytes": 291089
},
"anime-sama": {
"sha256": "8a8be4b37545ad4dc2e163e1f4476ff4e128a99691389ecbe3e6901aafbe0ea3",
"file": "8a8be4b37545ad4dc2e163e1f4476ff4e128a99691389ecbe3e6901aafbe0ea3.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/anime-sama.js",
"bytes": 289905
},
"animesama-co": {
"sha256": "1ab9fb1cec10acffb9d1e4a59f04ed1b18e20c5cef7632d63e0336c24a89eabe",
"file": "1ab9fb1cec10acffb9d1e4a59f04ed1b18e20c5cef7632d63e0336c24a89eabe.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animesama-co.js",
"bytes": 294974
},
"animesultra": {
"sha256": "a2e813f6167a7f619db6f6e505fbe368c59044e6dce3a14fa0751e0748d4bc8d",
"file": "a2e813f6167a7f619db6f6e505fbe368c59044e6dce3a14fa0751e0748d4bc8d.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animesultra.js",
"bytes": 294279
},
"animevostfr": {
"sha256": "9db362a48297eabbbbbf658a2aef5ea3084a9df09c64436f5b8b36e09b576619",
"file": "9db362a48297eabbbbbf658a2aef5ea3084a9df09c64436f5b8b36e09b576619.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animevostfr.js",
"bytes": 293963
},
"animoflix": {
"sha256": "4c2f6637886f64ebf5de1bf26ac51d947640b196122207edc561e515d57370f4",
"file": "4c2f6637886f64ebf5de1bf26ac51d947640b196122207edc561e515d57370f4.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/animoflix.js",
"bytes": 297840
},
"coflix": {
"sha256": "5e60b3b7c16a1013c1b7d2c05ea21deae0e43977f7c29e4e36c4e4439e7a581c",
"file": "5e60b3b7c16a1013c1b7d2c05ea21deae0e43977f7c29e4e36c4e4439e7a581c.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/coflix.js",
"bytes": 293588
},
"dulourd": {
"sha256": "e62064b45a10a505612be560f20cbd39ad34be7fa69c4fcafe51d9714f72aa05",
"file": "e62064b45a10a505612be560f20cbd39ad34be7fa69c4fcafe51d9714f72aa05.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/dulourd.js",
"bytes": 290342
},
"flemmix": {
"sha256": "e9ab3933199a83511b39fb0392411c2ea478071f77baecc66fca2fe28432095d",
"file": "e9ab3933199a83511b39fb0392411c2ea478071f77baecc66fca2fe28432095d.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/flemmix.js",
"bytes": 294852
},
"french-manga": {
"sha256": "03358fc46a1850a950007441d1e9410d63fa18bd2b20ca2238b4b62baa5b6682",
"file": "03358fc46a1850a950007441d1e9410d63fa18bd2b20ca2238b4b62baa5b6682.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/french-manga.js",
"bytes": 296815
},
"voiranime-homes": {
"sha256": "349fcae9fefac1123f155ece222e4789e277c83c249fb7d7a6964eeb709da908",
"file": "349fcae9fefac1123f155ece222e4789e277c83c249fb7d7a6964eeb709da908.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime-homes.js",
"bytes": 296614
},
"frenchstream": {
"sha256": "2c1837a3000d08140a84f68769c804315a0e6395739f4d84b18b0cf93df23a4c",
"file": "2c1837a3000d08140a84f68769c804315a0e6395739f4d84b18b0cf93df23a4c.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/frenchstream.js",
"bytes": 297638
},
"movix": {
"sha256": "84c238d709658061acae138864ed54a023ab9a5c458fef1466aef84a0852a802",
"file": "84c238d709658061acae138864ed54a023ab9a5c458fef1466aef84a0852a802.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/movix.js",
"bytes": 284092
},
"mugiwarastream": {
"sha256": "01be002c28d0e160b59ae64a6d27e9a6f002db14bff071b47c58c43b40f5754e",
"file": "01be002c28d0e160b59ae64a6d27e9a6f002db14bff071b47c58c43b40f5754e.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/mugiwarastream.js",
"bytes": 293619
},
"sekai": {
"sha256": "0e28c37dfc872ff53b807b22053d3a58a5d0bd97f9a2dd6f1d15e8fd1d20c34f",
"file": "0e28c37dfc872ff53b807b22053d3a58a5d0bd97f9a2dd6f1d15e8fd1d20c34f.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/sekai.js",
"bytes": 272629
},
"voiranime": {
"sha256": "d29f91dc106efd746198692f9e7608fa9a5e2ed922e253158a5ac8fcd4426c80",
"file": "d29f91dc106efd746198692f9e7608fa9a5e2ed922e253158a5ac8fcd4426c80.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime.js",
"bytes": 298457
},
"voiranime-rip": {
"sha256": "cbf14d7c8fe2e76ed4aabc6a0dfa3677e3c0059fe6f6b1ac8d600065a7f4c359",
"file": "cbf14d7c8fe2e76ed4aabc6a0dfa3677e3c0059fe6f6b1ac8d600065a7f4c359.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/voiranime-rip.js",
"bytes": 298147
},
"vostfree": {
"sha256": "d8e0de49215c6ea2ac55e5f2bbc8c1c8c4b0da761436e8ba656ffd9033ded843",
"file": "d8e0de49215c6ea2ac55e5f2bbc8c1c8c4b0da761436e8ba656ffd9033ded843.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/vostfree.js",
"bytes": 291670
},
"nakios": {
"sha256": "0a32e94f712ecb4baf1d71869f41658ae43196447220434ba692e1d990237132",
"file": "0a32e94f712ecb4baf1d71869f41658ae43196447220434ba692e1d990237132.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/nakios.js",
"bytes": 17032
},
"papadustream": {
"sha256": "3fcf49618b0401cdb95e845ab94e7d5855161c2f4ecd36a108685302c4aaa8fb",
"file": "3fcf49618b0401cdb95e845ab94e7d5855161c2f4ecd36a108685302c4aaa8fb.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/papadustream.js",
"bytes": 263498
},
"wookafr": {
"sha256": "eab1cf4e750e28dc3acf1b5b59d6a38ff0cd1abe07ae0272fae478daa2321f75",
"file": "eab1cf4e750e28dc3acf1b5b59d6a38ff0cd1abe07ae0272fae478daa2321f75.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/wookafr.js",
"bytes": 299191
},
"streamzo": {
"sha256": "18c3688c2dc26c877a9302916b19b0dad5537dbac06954496627907c59920b22",
"file": "18c3688c2dc26c877a9302916b19b0dad5537dbac06954496627907c59920b22.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/streamzo.js",
"bytes": 289079
},
"waveanime": {
"sha256": "1a87a44dbbfb3bc6e7757c401eb0730e994f8661a8cc3b77741c3b36ba522c90",
"file": "1a87a44dbbfb3bc6e7757c401eb0730e994f8661a8cc3b77741c3b36ba522c90.js",
"provider_url": "https://raw.githubusercontent.com/Gowaru/gowaru-nuvio-providers/refs/heads/main/providers/waveanime.js",
"bytes": 268105
}
}
}
]
},
"aio": {
"generations": [
{
"captured_at": "2026-08-17T16:20:20+00:00",
"manifest_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/manifest.json",
"manifest_sha256": "a95aedc03a62a0c8fa3eb1e37d6e21b942e7786fa52f33085f258a81cad9a68d",
"manifest_file": "aio-a95aedc03a62a0c8.json",
"declared": 61,
"providers": {
"allanime": {
"sha256": "25fb224e2ac0575055aca1dfce4263bc069780b99d86433692f770289971c3ce",
"file": "25fb224e2ac0575055aca1dfce4263bc069780b99d86433692f770289971c3ce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allanime.js",
"bytes": 19281
},
"4khdhub": {
"sha256": "e64aea603b3c3786a9f03e2a7b5dbee7e5666918a0ad606aeec87469ffafc4ec",
"file": "e64aea603b3c3786a9f03e2a7b5dbee7e5666918a0ad606aeec87469ffafc4ec.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/4khdhub.js",
"bytes": 28636
},
"1shows": {
"sha256": "9d8e329755b00a42b1c05cd06a764a2993e1874f67b3b4e2a96b25894d62ceba",
"file": "9d8e329755b00a42b1c05cd06a764a2993e1874f67b3b4e2a96b25894d62ceba.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/1shows.js",
"bytes": 53816
},
"allwish": {
"sha256": "647edc750491af2165d0d8ab9d49e799c87e5d6e7571728e63582936589562a8",
"file": "647edc750491af2165d0d8ab9d49e799c87e5d6e7571728e63582936589562a8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allwish.js",
"bytes": 28681
},
"animekai": {
"sha256": "15ea49f3f86be417b8f03e6395b8d0a6a0a1c5eedc2d133520cb627e2840be3d",
"file": "15ea49f3f86be417b8f03e6395b8d0a6a0a1c5eedc2d133520cb627e2840be3d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animekai.js",
"bytes": 24779
},
"anikototv": {
"sha256": "4b75a13ad9f3a9e7c067e8cbd18a66830cce4ad0d7e75ed28eca66cf1ed32b5d",
"file": "4b75a13ad9f3a9e7c067e8cbd18a66830cce4ad0d7e75ed28eca66cf1ed32b5d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anikototv.js",
"bytes": 20172
},
"anidb": {
"sha256": "60ec5bba1e6d0052b9fa495ddaeec23841a43dcaee18158db5f222e055c0c209",
"file": "60ec5bba1e6d0052b9fa495ddaeec23841a43dcaee18158db5f222e055c0c209.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anidb.js",
"bytes": 14671
},
"animepahe": {
"sha256": "a1f38e1819d61f9efd91648372ead67ce805c1ffd9f46acdff136d83a9e0715e",
"file": "a1f38e1819d61f9efd91648372ead67ce805c1ffd9f46acdff136d83a9e0715e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animepahe.js",
"bytes": 16707
},
"animesalt": {
"sha256": "2e732f8baa25726b09d0716455e930142527c7e7b3dce981be6a2ba115c463e5",
"file": "2e732f8baa25726b09d0716455e930142527c7e7b3dce981be6a2ba115c463e5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animesalt.js",
"bytes": 16095
},
"animetsu": {
"sha256": "243edd8c76b0995a72e02ba6ff7ca47add6063b1d471ebe378d3d6842bd8cadb",
"file": "243edd8c76b0995a72e02ba6ff7ca47add6063b1d471ebe378d3d6842bd8cadb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animetsu.js",
"bytes": 22545
},
"animeworld": {
"sha256": "bb241938cc73484976226c98bf2412cc53ab5205843627e6bb3fa7eaa73e61d4",
"file": "bb241938cc73484976226c98bf2412cc53ab5205843627e6bb3fa7eaa73e61d4.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animeworld.js",
"bytes": 11372
},
"anime-sama": {
"sha256": "264b604bab0dedf5f1b50cd0b165ecb50fffb516c6cb8eca50ba07c0bcbec995",
"file": "264b604bab0dedf5f1b50cd0b165ecb50fffb516c6cb8eca50ba07c0bcbec995.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anime-sama.js",
"bytes": 274214
},
"allmovieland": {
"sha256": "0b4533ed32c82b28813b97fe9deb44d97d1f1884adf1a8208d231967347ae3ce",
"file": "0b4533ed32c82b28813b97fe9deb44d97d1f1884adf1a8208d231967347ae3ce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allmovieland.js",
"bytes": 14517
},
"animezey": {
"sha256": "46e83c8d710830679b7f17eacb03e014fc4195237cd423fe63254862549f24ff",
"file": "46e83c8d710830679b7f17eacb03e014fc4195237cd423fe63254862549f24ff.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animezey.js",
"bytes": 47785
},
"desiflix": {
"sha256": "89d80b0ac5aac7e946680f35f3fa7ba4859e2a9e9ab42ef8a811b51518e63cac",
"file": "89d80b0ac5aac7e946680f35f3fa7ba4859e2a9e9ab42ef8a811b51518e63cac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/desiflix.js",
"bytes": 14501
},
"castle": {
"sha256": "1b23fb0b7740e707fb2e3c5f6f69ca51c4bb4fc6afc8f1ae851af22e3f66bb89",
"file": "1b23fb0b7740e707fb2e3c5f6f69ca51c4bb4fc6afc8f1ae851af22e3f66bb89.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/castle.js",
"bytes": 23481
},
"Cineby": {
"sha256": "06a14293c93a83d3060684e042e7087031463c775717f8b5f1dfeaa0ba30d429",
"file": "06a14293c93a83d3060684e042e7087031463c775717f8b5f1dfeaa0ba30d429.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cineby.js",
"bytes": 19736
},
"cinefreak": {
"sha256": "422d7f2fc6c51ea3d4f77596382cd817b1d482997c46ff7509b6ce11b205404d",
"file": "422d7f2fc6c51ea3d4f77596382cd817b1d482997c46ff7509b6ce11b205404d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cinefreak.js",
"bytes": 30268
},
"moonflix": {
"sha256": "e4928ad7affd0f9d417fee3c3f90bcaf0f37ed2c577ab52dd391a6cd1635f12f",
"file": "e4928ad7affd0f9d417fee3c3f90bcaf0f37ed2c577ab52dd391a6cd1635f12f.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moonflix.js",
"bytes": 13234
},
"cinemacity": {
"sha256": "faccc37938836b50acc6a8862e14b818a086289b63ba9c6d18d654ca933d8aac",
"file": "faccc37938836b50acc6a8862e14b818a086289b63ba9c6d18d654ca933d8aac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cinemacity.js",
"bytes": 49155
},
"ctgmovies": {
"sha256": "29128d8b2dac99a3ae3ff8e771ccbe14598efab021981b02867c7f3f7fc0e6c4",
"file": "29128d8b2dac99a3ae3ff8e771ccbe14598efab021981b02867c7f3f7fc0e6c4.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/ctgmovies.js",
"bytes": 24938
},
"dooflix": {
"sha256": "2691befa44f5d8d8f30c1711021a9fb0fdfe09a90f5640dd97ede5670f3dca5a",
"file": "2691befa44f5d8d8f30c1711021a9fb0fdfe09a90f5640dd97ede5670f3dca5a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/dooflix.js",
"bytes": 6343
},
"einthusan": {
"sha256": "34adb013fbac73ba3688f9bcc93e6418e28aeda1433dd04eb50cdec9cb6a82c8",
"file": "34adb013fbac73ba3688f9bcc93e6418e28aeda1433dd04eb50cdec9cb6a82c8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/einthusan.js",
"bytes": 18635
},
"fibwatch": {
"sha256": "283284e818443cd3ef98ca58aaf0b2c594ecd61219881cb2561baf6c37e545e9",
"file": "283284e818443cd3ef98ca58aaf0b2c594ecd61219881cb2561baf6c37e545e9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/fibwatch.js",
"bytes": 13955
},
"goated": {
"sha256": "b4966c7fd78842d59085fe197bc89ddbbc6c23c9a0f9c5ba6b114eedb7673f00",
"file": "b4966c7fd78842d59085fe197bc89ddbbc6c23c9a0f9c5ba6b114eedb7673f00.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/goated.js",
"bytes": 21628
},
"gramcinema": {
"sha256": "03865cdddc4b4ae9e8155e1ccdf691b725ede65a9d86b3f4ca9b4943eed9d0bb",
"file": "03865cdddc4b4ae9e8155e1ccdf691b725ede65a9d86b3f4ca9b4943eed9d0bb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/gramcinema.js",
"bytes": 17002
},
"hdghartv": {
"sha256": "8f6931a418a437f64d697f6eafdc27b8c2408cefd9accc5c7e7d9810871ed81a",
"file": "8f6931a418a437f64d697f6eafdc27b8c2408cefd9accc5c7e7d9810871ed81a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hdghartv.js",
"bytes": 10347
},
"hdhub4u": {
"sha256": "35f3a66b3ff1e7d73fca85955920bb134d2e14f74e12a8ceb362782f06ae8c48",
"file": "35f3a66b3ff1e7d73fca85955920bb134d2e14f74e12a8ceb362782f06ae8c48.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hdhub4u.js",
"bytes": 45252
},
"hianime": {
"sha256": "11124b38985b9780ad49e040b5d30a7143bc9541e27c7e314e70d9778a227af9",
"file": "11124b38985b9780ad49e040b5d30a7143bc9541e27c7e314e70d9778a227af9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hianime.js",
"bytes": 16871
},
"hindmoviez": {
"sha256": "86b8c3a4dff3c98c05db88eb075936b2f4ec00d504b967f1150bdfbd6fa620ac",
"file": "86b8c3a4dff3c98c05db88eb075936b2f4ec00d504b967f1150bdfbd6fa620ac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hindmoviez.js",
"bytes": 30964
},
"kurage": {
"sha256": "668797edb270c5fed931b08e0c92ca6693420041838f3b8ef49e28ddb1e7e463",
"file": "668797edb270c5fed931b08e0c92ca6693420041838f3b8ef49e28ddb1e7e463.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/kurage.js",
"bytes": 16396
},
"moviebox": {
"sha256": "f19ec5a037e53220e1457e6db0cb9abee1d2f9f299c594dddefb14df7822c847",
"file": "f19ec5a037e53220e1457e6db0cb9abee1d2f9f299c594dddefb14df7822c847.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moviebox.js",
"bytes": 9668
},
"movieblast": {
"sha256": "d3b04a5ee1a13fed77192b5226d46001508fe321fa747f0c519d0c23d5b1a974",
"file": "d3b04a5ee1a13fed77192b5226d46001508fe321fa747f0c519d0c23d5b1a974.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movieblast.js",
"bytes": 13423
},
"moviesdrive": {
"sha256": "27a986268c9948edf86b5d9150493dcb8f6263fcad3c260f93403bc9348cb8fc",
"file": "27a986268c9948edf86b5d9150493dcb8f6263fcad3c260f93403bc9348cb8fc.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moviesdrive.js",
"bytes": 27011
},
"movieshunt": {
"sha256": "6796beaa02d57e69cb033eec47a14a3b74782a0d08bcfd260421f10d4041392e",
"file": "6796beaa02d57e69cb033eec47a14a3b74782a0d08bcfd260421f10d4041392e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movieshunt.js",
"bytes": 34626
},
"movies4u": {
"sha256": "bc4308578b53310c050c71b8e1835e0e0068300bd19a7826eba0e394d62bfbdd",
"file": "bc4308578b53310c050c71b8e1835e0e0068300bd19a7826eba0e394d62bfbdd.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movies4u.js",
"bytes": 30685
},
"movix": {
"sha256": "7b658f1f8d1456986d235a9aadee3cad314fb9ba7ddd907978e16a14b6054e74",
"file": "7b658f1f8d1456986d235a9aadee3cad314fb9ba7ddd907978e16a14b6054e74.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movix.js",
"bytes": 13379
},
"nakios": {
"sha256": "450b43a5eaebb8b3f3710fcf393271f5d739df9e0967d1f175d36b4fae17c8da",
"file": "450b43a5eaebb8b3f3710fcf393271f5d739df9e0967d1f175d36b4fae17c8da.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/nakios.js",
"bytes": 10282
},
"netmirror": {
"sha256": "5cc8283a945c663ea55e049931f22c3f9afdeb3ff38e564899dc5359d40600c1",
"file": "5cc8283a945c663ea55e049931f22c3f9afdeb3ff38e564899dc5359d40600c1.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/netmirror.js",
"bytes": 18274
},
"persianstremio": {
"sha256": "04c8664fd3977a3279fc262be15e2dde88b409e79eb27cc2ae0d1c0b1056b7f9",
"file": "04c8664fd3977a3279fc262be15e2dde88b409e79eb27cc2ae0d1c0b1056b7f9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/persianstremio.js",
"bytes": 12643
},
"peachify": {
"sha256": "0f9f52a4c69bebe4c843c0b3ae06a410d3688569316446f45877ad964c316499",
"file": "0f9f52a4c69bebe4c843c0b3ae06a410d3688569316446f45877ad964c316499.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/peachify.js",
"bytes": 720713
},
"playimdb": {
"sha256": "e00e7b0d65b15622e0b6bcdce3ccc92d6226853197962348ced4af47343f07ab",
"file": "e00e7b0d65b15622e0b6bcdce3ccc92d6226853197962348ced4af47343f07ab.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/playimdb.js",
"bytes": 11841
},
"purstream": {
"sha256": "02173d75d873826f33e7bd45bb1c7973e557845548a8634b3ed1a5161c89abb8",
"file": "02173d75d873826f33e7bd45bb1c7973e557845548a8634b3ed1a5161c89abb8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/purstream.js",
"bytes": 15917
},
"showbox": {
"sha256": "b90ce3c9aceca167d9f97d57ba2487029b0dd75e61abc4d7e8ad1dd97864a1d5",
"file": "b90ce3c9aceca167d9f97d57ba2487029b0dd75e61abc4d7e8ad1dd97864a1d5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/showbox.js",
"bytes": 27232
},
"topcartoons": {
"sha256": "df33f490a73779f40b29ad612863fd4b192768567338a2171289fe5316e40ef6",
"file": "df33f490a73779f40b29ad612863fd4b192768567338a2171289fe5316e40ef6.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/topcartoons.js",
"bytes": 6234
},
"vidrock": {
"sha256": "9513cf00755eb1b6bbeb570f9524fde4c6eeffd7ea61d28ff3f7a9882a692f0a",
"file": "9513cf00755eb1b6bbeb570f9524fde4c6eeffd7ea61d28ff3f7a9882a692f0a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidrock.js",
"bytes": 21377
},
"uhdmovies": {
"sha256": "fcb661e3daad58a862e0a4d17811604a212f5c3c44c0df3756ddfbcfed272527",
"file": "fcb661e3daad58a862e0a4d17811604a212f5c3c44c0df3756ddfbcfed272527.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/uhdmovies.js",
"bytes": 23772
},
"vegamovies": {
"sha256": "0641a31d6068d8d2f3e5ca5d734494b24f69b89d6a5d027ae1a7b5eee1953d1a",
"file": "0641a31d6068d8d2f3e5ca5d734494b24f69b89d6a5d027ae1a7b5eee1953d1a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vegamovies.js",
"bytes": 50278
},
"vidlink": {
"sha256": "bedc41b8caf7e7cb371b5b96bb949970278c8a51b83847eaa64f46ca0317c521",
"file": "bedc41b8caf7e7cb371b5b96bb949970278c8a51b83847eaa64f46ca0317c521.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidlink.js",
"bytes": 14409
},
"videasy": {
"sha256": "8fb7fbc12e23d28185927a5a7f47fa65874ff0d1b1f3e01f4dbf9813c4fc7862",
"file": "8fb7fbc12e23d28185927a5a7f47fa65874ff0d1b1f3e01f4dbf9813c4fc7862.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/videasy.js",
"bytes": 23259
},
"vidsrc": {
"sha256": "c83b23943f9783f2b57008fac62f5fd2a05fea0c826f4b1ca74d53198152b286",
"file": "c83b23943f9783f2b57008fac62f5fd2a05fea0c826f4b1ca74d53198152b286.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidsrc.js",
"bytes": 21623
},
"vixsrc": {
"sha256": "b38a464f826f7ea87fee2c4e483ccbe9d5925e8a89a678a816b77873245611eb",
"file": "b38a464f826f7ea87fee2c4e483ccbe9d5925e8a89a678a816b77873245611eb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vixsrc.js",
"bytes": 1083944
},
"vidfast": {
"sha256": "9750c41a72fe7978d81eabd1b3704529cac0c13a7830a1d608afec5c892271cd",
"file": "9750c41a72fe7978d81eabd1b3704529cac0c13a7830a1d608afec5c892271cd.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidfast.js",
"bytes": 12862
},
"vidlove": {
"sha256": "a8516b7fcc81ce7013b51f3be9a905de9defe34d654e52c01d0a944dbb624a89",
"file": "a8516b7fcc81ce7013b51f3be9a905de9defe34d654e52c01d0a944dbb624a89.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidlove.js",
"bytes": 12758
},
"xpass": {
"sha256": "ad02f9faf8385c8857123ccb2931aa171f219a43c822daef32822ce1a834dbe5",
"file": "ad02f9faf8385c8857123ccb2931aa171f219a43c822daef32822ce1a834dbe5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/xpass.js",
"bytes": 8150
},
"zinkmovies": {
"sha256": "5989f97be6cce82a382e7dc29b8bc8e4c0441146fb994cf1950607fe5cae8bce",
"file": "5989f97be6cce82a382e7dc29b8bc8e4c0441146fb994cf1950607fe5cae8bce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/zinkmovies.js",
"bytes": 28416
},
"onlykdrama": {
"sha256": "f96d16c8b4e067394dd41f41a7fbc1a5bb1c3179c5198d35faaaa627e3cac02e",
"file": "f96d16c8b4e067394dd41f41a7fbc1a5bb1c3179c5198d35faaaa627e3cac02e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/onlykdrama.js",
"bytes": 19899
},
"kisskh": {
"sha256": "81b0afffb337390782cace12c5d657c6aa42765d05f5da986022284a99bafb98",
"file": "81b0afffb337390782cace12c5d657c6aa42765d05f5da986022284a99bafb98.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/kisskh.js",
"bytes": 22854
}
}
},
{
"captured_at": "2026-08-11T10:48:28+00:00",
"manifest_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/manifest.json",
"manifest_sha256": "f76bf79c0226dd8e7ce6a377c5fd823e70616d546a7ab11c70b08babe8e1c861",
"manifest_file": "aio-f76bf79c0226dd8e.json",
"declared": 61,
"providers": {
"allanime": {
"sha256": "25fb224e2ac0575055aca1dfce4263bc069780b99d86433692f770289971c3ce",
"file": "25fb224e2ac0575055aca1dfce4263bc069780b99d86433692f770289971c3ce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allanime.js",
"bytes": 19281
},
"4khdhub": {
"sha256": "e64aea603b3c3786a9f03e2a7b5dbee7e5666918a0ad606aeec87469ffafc4ec",
"file": "e64aea603b3c3786a9f03e2a7b5dbee7e5666918a0ad606aeec87469ffafc4ec.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/4khdhub.js",
"bytes": 28636
},
"1shows": {
"sha256": "9d8e329755b00a42b1c05cd06a764a2993e1874f67b3b4e2a96b25894d62ceba",
"file": "9d8e329755b00a42b1c05cd06a764a2993e1874f67b3b4e2a96b25894d62ceba.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/1shows.js",
"bytes": 53816
},
"allwish": {
"sha256": "647edc750491af2165d0d8ab9d49e799c87e5d6e7571728e63582936589562a8",
"file": "647edc750491af2165d0d8ab9d49e799c87e5d6e7571728e63582936589562a8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allwish.js",
"bytes": 28681
},
"animekai": {
"sha256": "15ea49f3f86be417b8f03e6395b8d0a6a0a1c5eedc2d133520cb627e2840be3d",
"file": "15ea49f3f86be417b8f03e6395b8d0a6a0a1c5eedc2d133520cb627e2840be3d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animekai.js",
"bytes": 24779
},
"anikototv": {
"sha256": "4b75a13ad9f3a9e7c067e8cbd18a66830cce4ad0d7e75ed28eca66cf1ed32b5d",
"file": "4b75a13ad9f3a9e7c067e8cbd18a66830cce4ad0d7e75ed28eca66cf1ed32b5d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anikototv.js",
"bytes": 20172
},
"anidb": {
"sha256": "60ec5bba1e6d0052b9fa495ddaeec23841a43dcaee18158db5f222e055c0c209",
"file": "60ec5bba1e6d0052b9fa495ddaeec23841a43dcaee18158db5f222e055c0c209.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anidb.js",
"bytes": 14671
},
"animepahe": {
"sha256": "a1f38e1819d61f9efd91648372ead67ce805c1ffd9f46acdff136d83a9e0715e",
"file": "a1f38e1819d61f9efd91648372ead67ce805c1ffd9f46acdff136d83a9e0715e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animepahe.js",
"bytes": 16707
},
"animesalt": {
"sha256": "2e732f8baa25726b09d0716455e930142527c7e7b3dce981be6a2ba115c463e5",
"file": "2e732f8baa25726b09d0716455e930142527c7e7b3dce981be6a2ba115c463e5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animesalt.js",
"bytes": 16095
},
"animetsu": {
"sha256": "243edd8c76b0995a72e02ba6ff7ca47add6063b1d471ebe378d3d6842bd8cadb",
"file": "243edd8c76b0995a72e02ba6ff7ca47add6063b1d471ebe378d3d6842bd8cadb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animetsu.js",
"bytes": 22545
},
"animeworld": {
"sha256": "bba8152dfabeba85879015ad2b313022784dcd07560d07a1b3fed152d703c4e8",
"file": "bba8152dfabeba85879015ad2b313022784dcd07560d07a1b3fed152d703c4e8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animeworld.js",
"bytes": 7620
},
"anime-sama": {
"sha256": "264b604bab0dedf5f1b50cd0b165ecb50fffb516c6cb8eca50ba07c0bcbec995",
"file": "264b604bab0dedf5f1b50cd0b165ecb50fffb516c6cb8eca50ba07c0bcbec995.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/anime-sama.js",
"bytes": 274214
},
"allmovieland": {
"sha256": "0b4533ed32c82b28813b97fe9deb44d97d1f1884adf1a8208d231967347ae3ce",
"file": "0b4533ed32c82b28813b97fe9deb44d97d1f1884adf1a8208d231967347ae3ce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/allmovieland.js",
"bytes": 14517
},
"animezey": {
"sha256": "46e83c8d710830679b7f17eacb03e014fc4195237cd423fe63254862549f24ff",
"file": "46e83c8d710830679b7f17eacb03e014fc4195237cd423fe63254862549f24ff.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/animezey.js",
"bytes": 47785
},
"desiflix": {
"sha256": "89d80b0ac5aac7e946680f35f3fa7ba4859e2a9e9ab42ef8a811b51518e63cac",
"file": "89d80b0ac5aac7e946680f35f3fa7ba4859e2a9e9ab42ef8a811b51518e63cac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/desiflix.js",
"bytes": 14501
},
"castle": {
"sha256": "1b23fb0b7740e707fb2e3c5f6f69ca51c4bb4fc6afc8f1ae851af22e3f66bb89",
"file": "1b23fb0b7740e707fb2e3c5f6f69ca51c4bb4fc6afc8f1ae851af22e3f66bb89.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/castle.js",
"bytes": 23481
},
"Cineby": {
"sha256": "06a14293c93a83d3060684e042e7087031463c775717f8b5f1dfeaa0ba30d429",
"file": "06a14293c93a83d3060684e042e7087031463c775717f8b5f1dfeaa0ba30d429.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cineby.js",
"bytes": 19736
},
"cinefreak": {
"sha256": "422d7f2fc6c51ea3d4f77596382cd817b1d482997c46ff7509b6ce11b205404d",
"file": "422d7f2fc6c51ea3d4f77596382cd817b1d482997c46ff7509b6ce11b205404d.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cinefreak.js",
"bytes": 30268
},
"moonflix": {
"sha256": "e4928ad7affd0f9d417fee3c3f90bcaf0f37ed2c577ab52dd391a6cd1635f12f",
"file": "e4928ad7affd0f9d417fee3c3f90bcaf0f37ed2c577ab52dd391a6cd1635f12f.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moonflix.js",
"bytes": 13234
},
"cinemacity": {
"sha256": "e97516075e2f0d47042ab2cfef717d615a79ff6a4f44ff4667c75b027fc1a0fc",
"file": "e97516075e2f0d47042ab2cfef717d615a79ff6a4f44ff4667c75b027fc1a0fc.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/cinemacity.js",
"bytes": 44968
},
"ctgmovies": {
"sha256": "29128d8b2dac99a3ae3ff8e771ccbe14598efab021981b02867c7f3f7fc0e6c4",
"file": "29128d8b2dac99a3ae3ff8e771ccbe14598efab021981b02867c7f3f7fc0e6c4.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/ctgmovies.js",
"bytes": 24938
},
"dooflix": {
"sha256": "2691befa44f5d8d8f30c1711021a9fb0fdfe09a90f5640dd97ede5670f3dca5a",
"file": "2691befa44f5d8d8f30c1711021a9fb0fdfe09a90f5640dd97ede5670f3dca5a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/dooflix.js",
"bytes": 6343
},
"einthusan": {
"sha256": "34adb013fbac73ba3688f9bcc93e6418e28aeda1433dd04eb50cdec9cb6a82c8",
"file": "34adb013fbac73ba3688f9bcc93e6418e28aeda1433dd04eb50cdec9cb6a82c8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/einthusan.js",
"bytes": 18635
},
"fibwatch": {
"sha256": "283284e818443cd3ef98ca58aaf0b2c594ecd61219881cb2561baf6c37e545e9",
"file": "283284e818443cd3ef98ca58aaf0b2c594ecd61219881cb2561baf6c37e545e9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/fibwatch.js",
"bytes": 13955
},
"goated": {
"sha256": "b4966c7fd78842d59085fe197bc89ddbbc6c23c9a0f9c5ba6b114eedb7673f00",
"file": "b4966c7fd78842d59085fe197bc89ddbbc6c23c9a0f9c5ba6b114eedb7673f00.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/goated.js",
"bytes": 21628
},
"gramcinema": {
"sha256": "03865cdddc4b4ae9e8155e1ccdf691b725ede65a9d86b3f4ca9b4943eed9d0bb",
"file": "03865cdddc4b4ae9e8155e1ccdf691b725ede65a9d86b3f4ca9b4943eed9d0bb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/gramcinema.js",
"bytes": 17002
},
"hdghartv": {
"sha256": "8f6931a418a437f64d697f6eafdc27b8c2408cefd9accc5c7e7d9810871ed81a",
"file": "8f6931a418a437f64d697f6eafdc27b8c2408cefd9accc5c7e7d9810871ed81a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hdghartv.js",
"bytes": 10347
},
"hdhub4u": {
"sha256": "35f3a66b3ff1e7d73fca85955920bb134d2e14f74e12a8ceb362782f06ae8c48",
"file": "35f3a66b3ff1e7d73fca85955920bb134d2e14f74e12a8ceb362782f06ae8c48.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hdhub4u.js",
"bytes": 45252
},
"hianime": {
"sha256": "11124b38985b9780ad49e040b5d30a7143bc9541e27c7e314e70d9778a227af9",
"file": "11124b38985b9780ad49e040b5d30a7143bc9541e27c7e314e70d9778a227af9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hianime.js",
"bytes": 16871
},
"hindmoviez": {
"sha256": "86b8c3a4dff3c98c05db88eb075936b2f4ec00d504b967f1150bdfbd6fa620ac",
"file": "86b8c3a4dff3c98c05db88eb075936b2f4ec00d504b967f1150bdfbd6fa620ac.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/hindmoviez.js",
"bytes": 30964
},
"kurage": {
"sha256": "668797edb270c5fed931b08e0c92ca6693420041838f3b8ef49e28ddb1e7e463",
"file": "668797edb270c5fed931b08e0c92ca6693420041838f3b8ef49e28ddb1e7e463.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/kurage.js",
"bytes": 16396
},
"moviebox": {
"sha256": "f19ec5a037e53220e1457e6db0cb9abee1d2f9f299c594dddefb14df7822c847",
"file": "f19ec5a037e53220e1457e6db0cb9abee1d2f9f299c594dddefb14df7822c847.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moviebox.js",
"bytes": 9668
},
"movieblast": {
"sha256": "d3b04a5ee1a13fed77192b5226d46001508fe321fa747f0c519d0c23d5b1a974",
"file": "d3b04a5ee1a13fed77192b5226d46001508fe321fa747f0c519d0c23d5b1a974.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movieblast.js",
"bytes": 13423
},
"moviesdrive": {
"sha256": "27a986268c9948edf86b5d9150493dcb8f6263fcad3c260f93403bc9348cb8fc",
"file": "27a986268c9948edf86b5d9150493dcb8f6263fcad3c260f93403bc9348cb8fc.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/moviesdrive.js",
"bytes": 27011
},
"movieshunt": {
"sha256": "6796beaa02d57e69cb033eec47a14a3b74782a0d08bcfd260421f10d4041392e",
"file": "6796beaa02d57e69cb033eec47a14a3b74782a0d08bcfd260421f10d4041392e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movieshunt.js",
"bytes": 34626
},
"movies4u": {
"sha256": "bc4308578b53310c050c71b8e1835e0e0068300bd19a7826eba0e394d62bfbdd",
"file": "bc4308578b53310c050c71b8e1835e0e0068300bd19a7826eba0e394d62bfbdd.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movies4u.js",
"bytes": 30685
},
"movix": {
"sha256": "7b658f1f8d1456986d235a9aadee3cad314fb9ba7ddd907978e16a14b6054e74",
"file": "7b658f1f8d1456986d235a9aadee3cad314fb9ba7ddd907978e16a14b6054e74.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/movix.js",
"bytes": 13379
},
"nakios": {
"sha256": "450b43a5eaebb8b3f3710fcf393271f5d739df9e0967d1f175d36b4fae17c8da",
"file": "450b43a5eaebb8b3f3710fcf393271f5d739df9e0967d1f175d36b4fae17c8da.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/nakios.js",
"bytes": 10282
},
"netmirror": {
"sha256": "5cc8283a945c663ea55e049931f22c3f9afdeb3ff38e564899dc5359d40600c1",
"file": "5cc8283a945c663ea55e049931f22c3f9afdeb3ff38e564899dc5359d40600c1.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/netmirror.js",
"bytes": 18274
},
"persianstremio": {
"sha256": "04c8664fd3977a3279fc262be15e2dde88b409e79eb27cc2ae0d1c0b1056b7f9",
"file": "04c8664fd3977a3279fc262be15e2dde88b409e79eb27cc2ae0d1c0b1056b7f9.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/persianstremio.js",
"bytes": 12643
},
"peachify": {
"sha256": "0f9f52a4c69bebe4c843c0b3ae06a410d3688569316446f45877ad964c316499",
"file": "0f9f52a4c69bebe4c843c0b3ae06a410d3688569316446f45877ad964c316499.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/peachify.js",
"bytes": 720713
},
"playimdb": {
"sha256": "e00e7b0d65b15622e0b6bcdce3ccc92d6226853197962348ced4af47343f07ab",
"file": "e00e7b0d65b15622e0b6bcdce3ccc92d6226853197962348ced4af47343f07ab.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/playimdb.js",
"bytes": 11841
},
"purstream": {
"sha256": "02173d75d873826f33e7bd45bb1c7973e557845548a8634b3ed1a5161c89abb8",
"file": "02173d75d873826f33e7bd45bb1c7973e557845548a8634b3ed1a5161c89abb8.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/purstream.js",
"bytes": 15917
},
"showbox": {
"sha256": "b90ce3c9aceca167d9f97d57ba2487029b0dd75e61abc4d7e8ad1dd97864a1d5",
"file": "b90ce3c9aceca167d9f97d57ba2487029b0dd75e61abc4d7e8ad1dd97864a1d5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/showbox.js",
"bytes": 27232
},
"topcartoons": {
"sha256": "df33f490a73779f40b29ad612863fd4b192768567338a2171289fe5316e40ef6",
"file": "df33f490a73779f40b29ad612863fd4b192768567338a2171289fe5316e40ef6.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/topcartoons.js",
"bytes": 6234
},
"vidrock": {
"sha256": "f679614bf1f955dcfea633d527e9ce40b56768ec3ff32648a651f565c121b70c",
"file": "f679614bf1f955dcfea633d527e9ce40b56768ec3ff32648a651f565c121b70c.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidrock.js",
"bytes": 17622
},
"uhdmovies": {
"sha256": "69b4277574bf29bd898305b9043988f725ad30914e86a803c1d951ac4e556e6b",
"file": "69b4277574bf29bd898305b9043988f725ad30914e86a803c1d951ac4e556e6b.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/uhdmovies.js",
"bytes": 34024
},
"vegamovies": {
"sha256": "0641a31d6068d8d2f3e5ca5d734494b24f69b89d6a5d027ae1a7b5eee1953d1a",
"file": "0641a31d6068d8d2f3e5ca5d734494b24f69b89d6a5d027ae1a7b5eee1953d1a.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vegamovies.js",
"bytes": 50278
},
"vidlink": {
"sha256": "bedc41b8caf7e7cb371b5b96bb949970278c8a51b83847eaa64f46ca0317c521",
"file": "bedc41b8caf7e7cb371b5b96bb949970278c8a51b83847eaa64f46ca0317c521.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidlink.js",
"bytes": 14409
},
"videasy": {
"sha256": "8fb7fbc12e23d28185927a5a7f47fa65874ff0d1b1f3e01f4dbf9813c4fc7862",
"file": "8fb7fbc12e23d28185927a5a7f47fa65874ff0d1b1f3e01f4dbf9813c4fc7862.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/videasy.js",
"bytes": 23259
},
"vidsrc": {
"sha256": "c83b23943f9783f2b57008fac62f5fd2a05fea0c826f4b1ca74d53198152b286",
"file": "c83b23943f9783f2b57008fac62f5fd2a05fea0c826f4b1ca74d53198152b286.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidsrc.js",
"bytes": 21623
},
"vixsrc": {
"sha256": "b38a464f826f7ea87fee2c4e483ccbe9d5925e8a89a678a816b77873245611eb",
"file": "b38a464f826f7ea87fee2c4e483ccbe9d5925e8a89a678a816b77873245611eb.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vixsrc.js",
"bytes": 1083944
},
"vidfast": {
"sha256": "9750c41a72fe7978d81eabd1b3704529cac0c13a7830a1d608afec5c892271cd",
"file": "9750c41a72fe7978d81eabd1b3704529cac0c13a7830a1d608afec5c892271cd.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidfast.js",
"bytes": 12862
},
"vidlove": {
"sha256": "a8516b7fcc81ce7013b51f3be9a905de9defe34d654e52c01d0a944dbb624a89",
"file": "a8516b7fcc81ce7013b51f3be9a905de9defe34d654e52c01d0a944dbb624a89.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/vidlove.js",
"bytes": 12758
},
"xpass": {
"sha256": "ad02f9faf8385c8857123ccb2931aa171f219a43c822daef32822ce1a834dbe5",
"file": "ad02f9faf8385c8857123ccb2931aa171f219a43c822daef32822ce1a834dbe5.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/xpass.js",
"bytes": 8150
},
"zinkmovies": {
"sha256": "5989f97be6cce82a382e7dc29b8bc8e4c0441146fb994cf1950607fe5cae8bce",
"file": "5989f97be6cce82a382e7dc29b8bc8e4c0441146fb994cf1950607fe5cae8bce.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/zinkmovies.js",
"bytes": 28416
},
"onlykdrama": {
"sha256": "f96d16c8b4e067394dd41f41a7fbc1a5bb1c3179c5198d35faaaa627e3cac02e",
"file": "f96d16c8b4e067394dd41f41a7fbc1a5bb1c3179c5198d35faaaa627e3cac02e.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/onlykdrama.js",
"bytes": 19899
},
"kisskh": {
"sha256": "81b0afffb337390782cace12c5d657c6aa42765d05f5da986022284a99bafb98",
"file": "81b0afffb337390782cace12c5d657c6aa42765d05f5da986022284a99bafb98.js",
"provider_url": "https://raw.githubusercontent.com/NuvioPlugin/All-in-One-Nuvio/refs/heads/main/providers/kisskh.js",
"bytes": 22854
}
}
}
]
},
"yoru": {
"generations": [
{
"captured_at": "2026-08-17T16:20:40+00:00",
"manifest_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/manifest.json",
"manifest_sha256": "2b8f1aaaf1f3dd861af11c6b15a8c2078f301e011531fd329142f14bb363e939",
"manifest_file": "yoru-2b8f1aaaf1f3dd86.json",
"declared": 29,
"providers": {
"4khdhub": {
"sha256": "65e7dabe9629f1185c046e156941f6cf05312e9c52996c70c24a6b6ddc075a9c",
"file": "65e7dabe9629f1185c046e156941f6cf05312e9c52996c70c24a6b6ddc075a9c.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/4khdhub.js",
"bytes": 15572
},
"animepahe": {
"sha256": "3b567b1e8e83d64777b617ee9323f411dab1474c700864058c4444e4f52cf842",
"file": "3b567b1e8e83d64777b617ee9323f411dab1474c700864058c4444e4f52cf842.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/animepahe.js",
"bytes": 19173
},
"uhdmovies": {
"sha256": "910588acb9a44abb569391dc61643aead09fef349f00887740bb9fa5889bd36e",
"file": "910588acb9a44abb569391dc61643aead09fef349f00887740bb9fa5889bd36e.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/uhdmovies.js",
"bytes": 16022
},
"moviesmod": {
"sha256": "98aeea26aa4511affc468b897dc050ca1d481684fcf712693fb8b1928f7135f8",
"file": "98aeea26aa4511affc468b897dc050ca1d481684fcf712693fb8b1928f7135f8.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/moviesmod.js",
"bytes": 13881
},
"netmirror": {
"sha256": "30c207564c1b85bc0fd01bfc9a4741727593c535b9b13c2702b2c0453326b8f8",
"file": "30c207564c1b85bc0fd01bfc9a4741727593c535b9b13c2702b2c0453326b8f8.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/netmirror.js",
"bytes": 10531
},
"streamflix": {
"sha256": "a9e7deb56fd5b3c93458e01fe7d32a764ee1defe3e88759dcb68f448006ded31",
"file": "a9e7deb56fd5b3c93458e01fe7d32a764ee1defe3e88759dcb68f448006ded31.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/streamflix.js",
"bytes": 16201
},
"moviebox": {
"sha256": "5b3d2c649dc4b5c223e70dd0e0d74fb544f15f99019864d44502dded2c6928d4",
"file": "5b3d2c649dc4b5c223e70dd0e0d74fb544f15f99019864d44502dded2c6928d4.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/moviebox.js",
"bytes": 18767
},
"vixsrc": {
"sha256": "c91c43aedb5b489c07a030766fd22550cf8773fce6845f21f4a20c7398efeb94",
"file": "c91c43aedb5b489c07a030766fd22550cf8773fce6845f21f4a20c7398efeb94.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/vixsrc.js",
"bytes": 8706
},
"dvdplay": {
"sha256": "d67399b8f3d221dea530132cbaafc95777469e1f12fed665b7c2d90f5823e195",
"file": "d67399b8f3d221dea530132cbaafc95777469e1f12fed665b7c2d90f5823e195.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/dvdplay.js",
"bytes": 43491
},
"yflix": {
"sha256": "ca1223b5ee78c12b0cbca6f208e977a14ab78d699893f6225aac04f8b60f8a94",
"file": "ca1223b5ee78c12b0cbca6f208e977a14ab78d699893f6225aac04f8b60f8a94.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/yflix.js",
"bytes": 13334
},
"videasy": {
"sha256": "3e554771641bd6208cd763c6ee6aa12a06ad858a52d7430cd43571fa9cde068d",
"file": "3e554771641bd6208cd763c6ee6aa12a06ad858a52d7430cd43571fa9cde068d.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/videasy.js",
"bytes": 22336
},
"mallumv": {
"sha256": "bd2eb51b581fbc1ff781565964f2b0c6246dec4f80f8033e251b00910ecf6677",
"file": "bd2eb51b581fbc1ff781565964f2b0c6246dec4f80f8033e251b00910ecf6677.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/mallumv.js",
"bytes": 53353
},
"vidlink": {
"sha256": "00389aa68899e4924186a24741e3b0a00cebb12486bf3e91fda6ff47311ae8ea",
"file": "00389aa68899e4924186a24741e3b0a00cebb12486bf3e91fda6ff47311ae8ea.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/vidlink.js",
"bytes": 16304
},
"vidnest": {
"sha256": "25135c174b05435d6dc8fe5216eb78b836150646ed15a7da65e8e85d70bd1c98",
"file": "25135c174b05435d6dc8fe5216eb78b836150646ed15a7da65e8e85d70bd1c98.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/vidnest.js",
"bytes": 21506
},
"vidnest-anime": {
"sha256": "7613343c5da60daeafe3be8882b3a7636c0ff4db3e62f22831a715f0d01e7b27",
"file": "7613343c5da60daeafe3be8882b3a7636c0ff4db3e62f22831a715f0d01e7b27.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/vidnest-anime.js",
"bytes": 21525
},
"cinevibe": {
"sha256": "e1549e3093c7b378c12ea2227c07090f6a50376e139979446e2a96f27e3e119a",
"file": "e1549e3093c7b378c12ea2227c07090f6a50376e139979446e2a96f27e3e119a.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/cinevibe.js",
"bytes": 16086
},
"cinemacity": {
"sha256": "e3a5ca37785b04610a23a44a509dabf134c9154a35dd91d3070f3766029b5792",
"file": "e3a5ca37785b04610a23a44a509dabf134c9154a35dd91d3070f3766029b5792.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/cinemacity.js",
"bytes": 11848
},
"castle": {
"sha256": "43c70c0cad61e4f16fe3d114a87045d6aeb71047dda1d104f31d055a129ce135",
"file": "43c70c0cad61e4f16fe3d114a87045d6aeb71047dda1d104f31d055a129ce135.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/castle.js",
"bytes": 19511
},
"showbox": {
"sha256": "95a080c30f77d7dd9f7bd151d0d4f976164328cd1ce61cecad330199e91c2683",
"file": "95a080c30f77d7dd9f7bd151d0d4f976164328cd1ce61cecad330199e91c2683.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/showbox.js",
"bytes": 15968
},
"hdhub4u": {
"sha256": "9c1149723e462761700eb5f67d19271225bbf29d2c4670d60314b77361a98c21",
"file": "9c1149723e462761700eb5f67d19271225bbf29d2c4670d60314b77361a98c21.js",
"provider_url": "https://raw.githubusercontent.com/yoruix/nuvio-providers/refs/heads/main/providers/hdhub4u.js",