-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathduoc2.txt
1153 lines (1152 loc) · 51.3 KB
/
duoc2.txt
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
{
"urls":[
{
"name":"推荐AG影视",
"url":"https://agit.ai/xiaowei233333/looo/raw/branch/master/666/lioo.json"
},
{
"name":"推荐HL影视",
"url":"https://jihulab.com/mml/tttk/-/raw/master/666/uuu.json"
},
{
"name":"推荐JS影视",
"url":"https://agit.ai/xiaowei233333/g2024/raw/branch/master/js.json"
},
{
"name":"推荐云盘影视",
"url":"https://agit.ai/xiaowei233333/2022/raw/branch/main/云盘/api.json"
},{
"name":"推荐动漫影视",
"url":"https://agit.ai/xiaowei233333/2022/raw/branch/main/动漫/api.json"
},{
"name":"推荐AP影视",
"url":"https://agit.ai/xiaowei233333/2022/raw/branch/main/影视/api.json"
},{
"name":"推荐教育影视",
"url":"https://agit.ai/xiaowei233333/2022/raw/branch/main/教育/api.json"
},{
"name":"推荐文艺影视",
"url":"https://agit.ai/xiaowei233333/2022/raw/branch/main/文艺/api.json"
},{
"name":"推荐直播影视",
"url":"https://agit.ai/xiaowei233333/2022/raw/branch/main/直播/api.json"
},{
"name":"推荐磁力影视",
"url":"https://agit.ai/xiaowei233333/2022/raw/branch/main/磁力/api.json"
},{
"name":"推荐体育影视",
"url":"https://agit.ai/xiaowei233333/2022/raw/branch/main/%e4%bd%93%e8%82%b2/api.json"
},
{
"name":"🦊极狐影视🦊",
"url":"https://jihulab.com/mml/looo/-/raw/master/666/lioo.json"
},
{
"name":"🐼熊猫丨荷城茶秀🐼",
"url":"http://rihou.vip:88/荷城茶秀"
},
{
"name":"🐼熊猫丨荷城茶秀备用🐼",
"url":"https://agit.ai/XiaoYiChaHang/xxzb/raw/branch/master/hccx.json"
},
{
"name":"🐼熊猫丨饭太硬🐼",
"url":"http://饭太硬.top/tv"
},
{
"name":"🐼熊猫丨小米暴脾气🐼",
"url":"http://xhww.fun:63/小米/DEMO.json"
},
{
"name":"🐼熊猫丨道长🐼",
"url":"https://raw.gitmirror.com/yw88075/tvbox/main/dr/js.json"
},
{
"name":"🐼熊猫丨影视仓🐼",
"url":"https://weixine.net/ysc.json"
},
{
"name":"🐼熊猫丨饭佬备份🐼",
"url":"http://fan.xxooo.cf/tv"
},
{
"name":"🐼熊猫丨菜妮丝🐼",
"url":"https://tvbox.cainisi.cf"
},
{
"name":"🐼熊猫丨俊宇🐼",
"url":"http://home.jundie.top:81/top98.json"
},
{
"name":"🐼熊猫丨吾爱🐼",
"url":"http://52bsj.vip:98/wuai"
},
{
"name":"🐼熊猫丨巧技🐼",
"url":"http://pandown.pro/tvbox/tvbox.json"
},
{
"name":"🐼熊猫丨欧歌🐼",
"url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&xl=4"
},
{
"name":"🐼熊猫丨运输车🐼",
"url":"http://weixine.link:33/"
},
{
"name":"🐼熊猫丨魔饭🐼",
"url":"https://pastebin.com/raw/5NHaxyGR"
},
{
"name":"🐼熊猫丨夜猫子少儿🐼",
"url":"https://download.kstore.space/download/3313/app/ymshaoer.txt"
},
{
"name":"🐼熊猫丨高天流水🐼",
"url":"https://ghproxy.com/https://raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"
},
{
"name":"🐼熊猫丨影音天堂🐼",
"url":"https://jihulab.com/dimaston1/4k/-/raw/main/tongyong.json"
},
{
"name":"🐼熊猫丨南风🐼",
"url":"https://agit.ai/Yoursmile7/TVBox/raw/branch/master/XC.json"
},
{
"name":"🐼熊猫丨心魔🐼",
"url":"https://jihulab.com/yw88075/tvbox/-/raw/main/dr/js.json"
},
{
"name":"🐼熊猫丨二哈🐼",
"url":"https://codeberg.org/jgfx/2hacc/raw/branch/main/tvbox.json"
},
{
"name":"🐼熊猫丨云星🐼",
"url":"http://itvbox.cc/tvbox/云星日记/1.m3u8"
},
{
"name":"🐼熊猫丨阿里采集🐼",
"url":"https://ghproxy.net/https://raw.githubusercontent.com/yydfys/yydf/main/阿里/ali.json"
},
{
"name":"🐼熊猫丨4K视界🐼",
"url":"https://tudouaa1.oss-cn-beijing.aliyuncs.com/api/api.json"
},
{
"name":"🐼熊猫丨分享者🐼",
"url":"https://agit.ai/66666/mao/raw/branch/master/00/000.m3u8"
},
{
"name":"🐼熊猫丨ABC🐼",
"url":"https://agit.ai/n/b/raw/branch/a/b/c.json"
},
{
"name":"🐼熊猫丨神仙心动提供🐼",
"url":"https://jihulab.com/shenxianyingshi/sxys/-/raw/main/sx.json"
},
{
"name":"🐼熊猫丨不良帅🐼",
"url":"https://notabug.org/qizhen15800/My9394/raw/master/ProfessionalEdition.m3u8"
},
{
"name":"🐼熊猫丨业余🐼",
"url":"https://raw.gitmirror.com/yydfys/yydf/main/yydf/yydf.json"
},
{
"name":"🐼熊猫丨Z1🐼",
"url":"https://agit.ai/mmmgit/tvbox/raw/branch/main/zzz1.json"
},
{"name":"🐯精简👙","url":"https://agit.ai/ddx/TVBox/raw/branch/master/t4.json"},
{"name":"🐯跑马👙","url":"https://agit.ai/ddx/TVBox/raw/branch/master/m.json"},
{"name":"🐼肥猫👙","url":"http://我不是.肥猫.love:63/接口禁止贩卖"},
{"name":"未知源👙","url":"https://wds.ecsxs.com/230989.json"},
{"url":"https://agit.ai/30215429/TVBox/raw/branch/master/sft.txt","name":"⚜️爽翻天主线路"},
{"url":"http://itvbox.cc/sft/sft.m3u8","name":"⚜️爽翻天备用线路"},
{"url":"http://itvbox.cc/tvbox/云星日记/1.m3u8","name":"⚜️云星家庭线路"},
{"url":"http://我不是.肥猫.love:63/接口禁止贩卖","name":"⚜️肥猫Panda线路"},
{"url":"http://饭太硬.top/tv","name":"⚜️饭太硬线路"},
{"url":"http://xhww.fun:63/小米/DEMO.json","name":"⚜️小米线路"},
{"url":"http://刚刚.live/猫","name":"⚜️刚刚线路"},
{"url":"https://ghproxy.net/https://raw.githubusercontent.com//yydfys/yydf/main/XYQTVBox/xyq.json","name":"⚜️香雅情1线路"},
{"url":"https://jihulab.com/oAI/D/-/raw/master/XYQ.json","name":"⚜️香雅晴2线路"},
{"url":"https://tvbox.cainisi.cf","name":"⚜️菜尼丝线路"},
{"url":"https://agit.ai/Yoursmile7/TVBox/raw/branch/master/XC.json","name":"⚜️南风线路"},
{"url":"https://神器每日推送.tk/pz.json","name":"⚜️神器线路"},
{"url":"http://52bsj.vip:98/wuai","name":"⚜️吾爱1线路"},
{"url":"http://suo.im/9iyzB","name":"⚜️吾爱2线路"},
{"url":"http://yydsys.top/duo","name":"⚜️多多家庭线路"},
{"url":"http://52bsj.vip:81/api/v3/file/get/29899/box2.json?sign=3cVyKZQr3lFAwdB3HK-A7h33e0MnmG6lLB9oWlvSNnM%3D%3A0","name":"⚜️月光线路1"},
{"url":"http://52bsj.vip:98/cl","name":"⚜️月光线路2"},
{"url":"http://home.jundie.top:81/top98.json","name":"⚜️俊宇线路"},
{"url":"http://369936.xyz/web119","name":"⚜️春风影视线路"},
{"url":"https://ghproxy.com/raw.githubusercontent.com/FongMi/CatVodSpider/main/json/config.json","name":"⚜️蜂蜜线路"},
{"url":"https://raw.liucn.cc/box/m.json","name":"⚜️老刘备线路"},
{"url":"https://s2.pub/cally","name":"⚜️cally线路"},
{"url":"https://agit.ai/66666/mao/raw/branch/master/00/000.m3u8","name":"⚜️分享者1线路"},
{"url":"https://agit.ai/n/b/raw/branch/a/b/c.json","name":"⚜️分享者2线路"},
{"url":"https://notabug.org/qizhen15800/My9394/raw/master/ProfessionalEdition.m3u8","name":"⚜️不良帅线路"},
{"url":"https://agit.ai/mmmgit/tvbox/raw/branch/main/zzz1.json","name":"⚜️叁Z线路"},
{"url":"http://home.jundie.top:81/TVBox/yosakoi.json","name":"⚜️军碟线路"},
{"url":"https://dybz.store/dybz","name":"⚜️大眼仔线路"},
{"url":"https://ghproxy.net/https://raw.githubusercontent.com/tuji-2015/miao/main/TVBox/tvbox.json","name":"⚜️喵影视线路"},
{"url":"http://pandown.pro/tvbox/tvbox.json","name":"⚜️雨滴线路"},
{"url":"http://lltv8.top/","name":"⚜️猎狼线路"},
{"url":"https://agit.ai/lcx/11/raw/branch/master/12","name":"⚜️刘慈欣线路"},
{"url":"http://ysc.weixine.net:33/","name":"⚜️运输车线路"},
{"url":"http://8.210.232.168/xc.json","name":"⚜️玉玉线路"},
{"url":"https://raw.gitmirror.com/yydfys/yydf/main/yydf/yydf.json","name":"⚜️业余线路"},
{"url":"https://pan.shangui.cc/f/4LBAF0/ali.json","name":"⚜️业余阿里线路"},
{"url":"https://pan.shangui.cc/f/mPecb/%E9%87%87%E9%9B%86.json","name":"⚜️业余采集线路"},
{"url":"https://pan.shangui.cc/f/8VDbIo/%E5%B0%91%E5%84%BF%E9%A2%91%E9%81%93.json","name":"⚜️业余少儿线路"},
{"url":"http://rihou.cc:99/荷城茶秀","name":"⚜️荷城茶秀线路"},
{"url":"https://agit.ai/relax/adcc/raw/branch/master/tvbox.json","name":"⚜️巧技线路"},
{"url":"http://124.220.63.232/关注码上放生/时光机","name":"⚜️时光机线路"},
{"url":"http://tv.nxog.top/m/111.php?ou=公众号欧歌app&mz=index2&jar=index2&123&b=欧歌","name":"⚜️讴歌家庭线路"},
{"url":"http://tv.nxog.top/m/111.php?ou=公众号欧歌app&mz=a3&jar=a3&b=欧歌","name":"⚜️讴歌学习线路"},
{"url":"https://pastebin.com/raw/5NHaxyGR","name":"⚜️道长1线路"},
{"url":"https://raw.gitmirror.com/yw88075/tvbox/main/dr/js.json","name":"⚜️道长2线路"},
{"url":"http://rihou.vip:61/天天开心","name":"⚜️日后线路"},
{"url":"https://download.kstore.space/download/2883/1022tv.json","name":"⚜️魔改源线路"},
{"url":"https://download.kstore.space/download/2863/01.txt","name":"⚜️潇洒线路"},
{"url":"https://www.lianyingtv.com/fast/fast","name":"⚜️恋影线路"},
{"url":"http://rihou.vip:666/心动","name":"⚜️心动线路"},
{"url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=index2&xl=&jar=index2","name":"⚜️星河科技线路"},
{"url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=a3&jar=a3&b=白嫖小蚂蚁","name":"⚜️蚂蚁哔哩线路"},
{"url":"http://1.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=index2&jar=index2&123&b=白嫖小蚂蚁","name":"⚜️蚂蚁家庭线路"},
{"url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=all&jar=all&b=白嫖小蚂蚁","name":"⚜️蚂蚁阿里线路"},
{"url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=py&jar=py&b=白嫖小蚂蚁","name":"⚜️蚂蚁py线路"},
{"url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=index2&jar=index2&321&b=白嫖小蚂蚁","name":"⚜️蚂蚁推荐线路"},
{"url":"http://jxym.ygx888.com/vip/api.json","name":"⚜️星视界线路"},
{"url":"https://agit.ai/376242575/zzh/raw/branch/master/txt/影视.txt","name":"⚜️人人影视线路"},
{"url":"http://9xi4o.tk/0725.json","name":"⚜️4K云盘线路"},
{"url":"https://hutool.ml/tang","name":"⚜️唐三线路"},
{"url":"https://gh-proxy.com/https://raw.githubusercontent.com/wnddwc/daiweichun/main/waynfifdwj.json","name":"⚜️民间大佬线路"},
{"url":"http://cdn.qiaoji8.com/tvbox.json","name":"⚜️爱音乐线路"},
{"url":"https://jihulab.com/zhulr7765/tvbox/-/raw/main/tv.txt?ref_type=heads","name":"⚜️视频资源线路"},
{"url":"https://jihulab.com/clear1/yingmi/-/raw/main/xh.txt","name":"⚜️影迷蓝光线路"},
{"url":"https://agit.ai/kvymin/TV/raw/branch/master/Box.json","name":"⚜️Box线路线路"},
{"url":"https://jihulab.com/yw88075/tvbox/-/raw/main/dr/js.json","name":"⚜️心魔js线路"},
{"url":"https://agit.ai/Jonwall/Box/raw/branch/a/T20.json","name":"⚜️胡二刀线路"},
{"url":"https://codeberg.org/jgfx/box88/raw/branch/master/jg.txt","name":"⚜️JG精选线路"},
{"url":"https://dxawi.github.io/0/0.json","name":"⚜️零线路线路"},
{"url":"https://agit.ai/hu/hcr/raw/branch/master/py3.txt","name":"⚜️未知线路1"},
{"url":"https://out.zxglife.top/down.php/5da920895444ba485dde96b5425b8a67.txt","name":"⚜️未知线路2"},
{"url":"https://ghproxy.com/https://raw.githubusercontent.com/liu673cn/box/main/m.json","name":"⚜️未知线路3"},
{"url":"https://agit.ai/xx03253/xxu/raw/branch/main/xxtv.json","name":"⚜️未知线路4"},
{"url":"http://52bsj.vip:81/api/v3/file/get/41063/bili.json?sign=TxuApYZt6bNl9TzI7vObItW34UnATQ4RQxABAEwHst4%3D%3A0","name":"⚜️哔哩娱乐线路"},
{"url":"https://agit.ai/376242575/zzh/raw/branch/master/txt/%e6%95%99%e8%82%b2%ef%b9%a0%e6%95%99%e7%a8%8b.txt","name":"⚜️儿童学习线路"},
{"name":"☪️民间大佬线路","url":"https://gh-proxy.com/https://raw.githubusercontent.com/wnddwc/daiweichun/main/waynfifdwj.json"},
{"name":"☪️爱音乐线路","url":"http://cdn.qiaoji8.com/tvbox.json"},
{"name":"☪️视频资源线路","url":"https://jihulab.com/zhulr7765/tvbox/-/raw/main/tv.txt?ref_type=heads"},
{"name":"☪️蓝光线路线路","url":"https://jihulab.com/clear1/yingmi/-/raw/main/xh.txt"},
{"name":"☪️Box线路线路","url":"https://agit.ai/kvymin/TV/raw/branch/master/Box.json"},
{"name":"☪️心魔js线路","url":"https://jihulab.com/yw88075/tvbox/-/raw/main/dr/js.json"},
{"name":"☪️胡二刀线路","url":"https://agit.ai/Jonwall/Box/raw/branch/a/T20.json"},
{"name":"☪️JG精选线路","url":"https://codeberg.org/jgfx/box88/raw/branch/master/jg.txt"},
{"name":"☪️零线路线路","url":"https://dxawi.github.io/0/0.json"},
{"name":"☪️未知线路","url":"https://agit.ai/hu/hcr/raw/branch/master/py3.txt"},
{"name":"☪️哔哩娱乐线路","url":"http://52bsj.vip:81/api/v3/file/get/41063/bili.json?sign=TxuApYZt6bNl9TzI7vObItW34UnATQ4RQxABAEwHst4%3D%3A0"},
{"name":"☪️日后线路","url":"http://rihou.vip:61/天天开心"},
{"name":"☪️魔改源线路","url":"https://download.kstore.space/download/2883/1022tv.json"},
{"name":"☪️恋影线路","url":"https://www.lianyingtv.com/fast/fast"},
{"name":"☪️心动线路","url":"http://rihou.vip:666/心动"},
{"name":"星河科技线路","url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=index2&xl=&jar=index2"},
{"name":"☪️蚂蚁哔哩线路","url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=a3&jar=a3&b=白嫖小蚂蚁"},
{"name":"☪️蚂蚁家庭线路","url":"http://1.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=index2&jar=index2&123&b=白嫖小蚂蚁"},
{"name":"☪️蚂蚁阿里线路","url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=all&jar=all&b=白嫖小蚂蚁"},
{"name":"☪️蚂蚁py线路","url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=py&jar=py&b=白嫖小蚂蚁"},
{"name":"☪️蚂蚁推荐线路","url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=index2&jar=index2&321&b=白嫖小蚂蚁"},
{"url":"http://9xi4o.tk/0725.json","name":"☪️4K云盘线路"},
{"url":"https://hutool.ml/tang","name":"☪️唐三线路"},
{"url":"https://agit.ai/30215429/TVBox/raw/branch/master/sft.txt","name":"☪️爽翻天主线路"},
{"name":"☃️讴歌学习","url":"http://tv.nxog.top/m/111.php?ou=公众号欧歌app&mz=a3&jar=a3&b=欧歌"},
{"name":"🌹恒星资料网","url":"https://codeberg.org/hengxing/hx/raw/branch/main/zxxl.txt"},
{"name":"🚖夜猫子新","url":"https://download.kstore.space/download/3313/app/ymzn"},
{"name":"💕全部4k资源","url":"https://codeberg.org/hengxing/hx/raw/branch/main/qb4k.txt"},
{"name":"💗时光机","url":"https://ghproxy.com/https://raw.githubusercontent.com/xmbjm/xmbjm/main/xmbjm.json"},
{"name":"💗锦哥","url":"http://jin.锦哥哥.love"},
{"name":"🐈影音天堂4k","url":"https://jihulab.com/dimaston1/4k/-/raw/main/tongyong.json"},
{"name":"👍肥猫4k","url":"http://我不是.肥猫.love:63/接口禁止贩卖"},
{"name":"🚡阿里精品","url":"http://yydsys.top/duo/ali"},
{"name":"🚖影探4k","url":"http://www.lyyytv.cn/yt/yt.json"},
{"name":"💗4k","url":"https://ghproxy.com/https://raw.githubusercontent.com/pdscxz/TV/main/video/tv4k.json"},
{"name":"😍短剧大全","url":"http://wp.anxwl.cn/view.php/16789475e9f1d205409131129d2b1162.jpg"},
{"name":"✍️阿里专线","url":"https://yydsys.top/duo/ali"},
{"name":"💔温酒待侯","url":"https://download.kstore.space/download/4907/jcsq/fx.json"},
{"name":"🧡业余主线","url":"http://111.67.195.139/yydf/yyff.json"},
{"name":"💙群新荟萃","url":"https://ghproxy.net/https://raw.githubusercontent.com/yydfys/yydf/main/yydf/yydf.json"},
{"name":"👅非凡","url":"https://codeberg.org/jgfx/dym/raw/branch/master/master825.json"},
{"name":"🉑跑得快","url":"https://weixine.net/ysc.json"},
{"name":"🎾小米","url":"http://xhww.fun:63/小米/DEMO.json"},
{"name":"🌵小盒酷玩","url":"http://小盒酷玩.fun:66/禁止贩卖"},
{"name":"🍓魔改线路","url":"https://download.kstore.space/download/2883/%E5%BD%B1%E8%A7%86%E4%BB%93.txt"},
{"name":"🏵️77影视","url":"http://tvboxx.com.cn/tvbox/tv.json"},
{"name":"⚽金榜影视","url":"https://wds.ecsxs.com:443/230989.json"},
{"name":"🌺泥巴","url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/0827.json"},
{"name":"🌺香雅情","url":"https://raw.gitmirror.com/yw88075/tvbox/main/XYQTVBox/XYQTVBox.json"},
{"name":"🌼圈圈","url":"https://ghproxy.com/https://raw.githubusercontent.com/PizazzGY/TVBox/main/api2.json"},
{"name":"☃️蚂蚁接口","url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"},
{"name":"🏆荷城茶秀","url":"https://agit.ai/XiaoYiChaHang/xxzb/raw/branch/master/hccx.json"},
{"name":"💛心动","url":"https://jihulab.com/yw88075/tvbox/-/raw/main/yw.json"},
{"name":"🥝蜂蜜","url":"https://ghproxy.com/https://raw.githubusercontent.com/PizazzGY/TVBox_warehouse/main/影视/api.json"},
{"name":"💞多多","url":"https://yydsys.top/duo"},
{"name":"🍚饭太硬","url":"http://饭太硬.top/tv"},
{"name":"🚒运输车","url":"https://pan.shangui.cc/f/mPecb/%E9%87%87%E9%9B%86.json"},
{"name":"🐼肥猫","url":"http://我不是.肥猫.love:63/接口禁止贩卖"},
{"name":"🌨高天流云JS","url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"},
{"name":"💦4k给力","url":"http://xxxoo.shop"},
{"name":"🛵恒星资料网","url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=index2&xl=&jar=index2"},
{"name":"🎈民间大佬","url":"https://gh-proxy.com/https://raw.githubusercontent.com/wnddwc/daiweichun/main/waynfifdwj.json"},
{"name":"🛵爱音乐","url":"http://cdn.qiaoji8.com/tvbox.json"},
{"name":"🉑资源","url":"https://jihulab.com/zhulr7765/tvbox/-/raw/main/tv.txt?ref_type=heads"},
{"name":"🉑玉玉","url":"http://8.210.232.168/xc.json"},
{"name":"🐼蚂蚁哔哩","url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&mz=a3&jar=a3&b=白嫖小蚂蚁"},
{"name":"👁️蓝光","url":"https://jihulab.com/clear1/yingmi/-/raw/main/xh.txt"},
{"name":"✍️时光机","url":"http://124.220.63.232/关注码上放生/时光机"},
{"name":"🌹小米👙","url":"http://xhww.fun:63/小米/DEMO.json"},
{"name":"🌼夜魔👙","url":"https://download.kstore.space/download/3313/mao/ymz"},
{"name":"☃️蚂蚁👙","url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"},
{"name":"🏆荷城👙","url":"https://raw.iqiq.io/XiaoYiChaHang/tvbox/main/ysj.json"},
{"name":"💛唐三👙","url":"https://gh.t4tv.hz.cz/newtang.bmp"},
{"name":"💞多多👙","url":"https://yydsys.top/duo"},
{"name":"🍚太硬👙","url":"http://饭太硬.top/tv"},
{"name":"🚒运输👙","url":"https://cf.weixine.net/ysc.json"},
{"name":"🌙胖鸭👙","url":"https://agit.ai/cyl518/yl/raw/branch/master/ml.json"},
{"name":"🌒霜晖👙","url":"https://raw.iqiq.io/lm317379829/PyramidStore/pyramid/py.json"},
{"name":"🌃月光👙JS","url":"https://jihulab.com/ygbh1/box/-/raw/main/JS/js.json"},
{"name":"🌨高天👙JS","url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"},
{"name":"🖥不好打开运输👙","url":"https://weixine.net/ysc.json"},
{"name":"💝恋影👙","url":"https://www.lianyingtv.com/fast/fast"},
{"name":"🌿刺桐👙","url":"https://gitee.com/ghzyw/cttv/raw/cttv-iptv/json/cttv2.json"},
{"name":"熊猫不叫猫🐼","url":"https://ghproxy.com/https://raw.githubusercontent.com/xmbjm/shiguang/main/shiguangdx.json"},
{"name":"🦋拾光趣乐屋","url":"https://raw.gitmirror.com/xmbjm/shiguang/main/shiguangdx.json"},
{"name":"🦋荷城茶秀备用","url":"https://agit.ai/XiaoYiChaHang/xxzb/raw/branch/master/hccx.json"},
{"name":"🐝多多","url":"http://yydsys.top/duo"},
{"name":"🐴多多阿里","url":"http://yydsys.top/duo/ali"},
{"name":"🦎饭太硬","url":"http://饭太硬.top/tv"},
{"name":"🦀小米暴脾气","url":"http://xhww.fun:63/小米/DEMO.json"},
{"name":"🦋肥猫","url":"http://我不是.肥猫.love:63/接口禁止贩卖"},
{"name":"🦀肥猫通用线","url":"http://刚刚.live/猫"},
{"name":"🐡肥猫影视专用线","url":"http://肥猫.love"},
{"name":"🦀道长","url":"https://raw.gitmirror.com/yw88075/tvbox/main/dr/js.json"},
{"name":"🐍月光宝盒","url":"https://jihulab.com/ygbh1/box/-/raw/main/月光宝盒"},
{"name":"🐗月光宝盒影视","url":"https://jihulab.com/ygbh1/box/-/raw/main/ys.json"},
{"name":"🐬月光宝盒JS","url":"https://jihulab.com/ygbh1/box/-/raw/main/JS/js.json"},
{"name":"🐍高天流云JS","url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"},
{"name":"🐬影视仓","url":"https://weixine.net/ysc.json"},
{"name":"🦑码上放生","url":"https://www.bestpvp.site/关注码上放生/时光机"},
{"name":"🦕饭佬备份","url":"http://fan.xxooo.cf/tv"},
{"name":"🐟菜妮丝","url":"https://tvbox.cainisi.cf"},
{"name":"🎄俊宇","url":"http://home.jundie.top:81/top98.json"},
{"name":"🐿吾爱","url":"http://52bsj.vip:98/wuai"},
{"name":"🐲巧技","url":"http://pandown.pro/tvbox/tvbox.json"},
{"name":"🦔欧歌","url":"http://tv.nxog.top/m/111.php?ou=%E6%AC%A7%E6%AD%8C&xl=4"},
{"name":"🐑运输车","url":"http://weixine.link:33/"},
{"name":"🐁魔饭","url":"https://pastebin.com/raw/5NHaxyGR"},
{"name":"🧛♀️夜猫子少儿","url":"https://download.kstore.space/download/3313/app/ymshaoer.txt"},
{"name":"👯高天流水","url":"https://ghproxy.com/https://raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"},
{"name":"👨👩👧👦影音天堂","url":"https://jihulab.com/dimaston1/4k/-/raw/main/tongyong.json"},
{"name":"🧤南风","url":"https://agit.ai/Yoursmile7/TVBox/raw/branch/master/XC.json"},
{"name":"👜心魔","url":"https://jihulab.com/yw88075/tvbox/-/raw/main/dr/js.json"},
{"name":"🐶二哈","url":"https://codeberg.org/jgfx/2hacc/raw/branch/main/tvbox.json"},
{"name":"🦊云星","url":"http://itvbox.cc/tvbox/云星日记/1.m3u8"},
{"name":"🐙阿里采集","url":"https://ghproxy.net/https://raw.githubusercontent.com/yydfys/yydf/main/阿里/ali.json"},
{"name":"🙉4K视界","url":"https://tudouaa1.oss-cn-beijing.aliyuncs.com/api/api.json"},
{"name":"🐺分享者","url":"https://agit.ai/66666/mao/raw/branch/master/00/000.m3u8"},
{"name":"🦆ABC","url":"https://agit.ai/n/b/raw/branch/a/b/c.json"},
{"name":"🐌神仙心动提供","url":"https://jihulab.com/shenxianyingshi/sxys/-/raw/main/sx.json"},
{"name":"🐬不良帅","url":"https://notabug.org/qizhen15800/My9394/raw/master/ProfessionalEdition.m3u8"},
{"name":"🐳业余","url":"https://raw.gitmirror.com/yydfys/yydf/main/yydf/yydf.json"},
{"name":"🌼菜妮丝👙","url":"https://tvbox.cainisi.cf"},
{"name":"🌼云星👙","url":"https://itvbox.cc/tvbox/云星日记/1.m3u8"},
{"name":"🌼春风👙","url":"https://369936.xyz/web119"},
{"name":"🍀俊宇👙","url":"http://home.jundie.top:81/top98.json"},
{"name":"🍃吾爱👙","url":"http://52bsj.vip:98/wuai"},
{"name":"💦巧技👙","url":"http://pandown.pro/tvbox/tvbox.json"},
{"name":"📿神器👙","url":"https://神器每日推送.tk/pz.json"},
{"name":"🔘精选👙","url":"https://codeberg.org/jgfx/box88/raw/branch/master/jg.txt"},
{"name":"🍭甜蜜👙","url":"https://raw.iqiq.io/kebedd69/TVbox-interface/main/甜蜜.json"},
{"name":"☪夕晨👙","url":"https://calendre.top/TVBox/YXHC.json"},
{"name":"🐾喵影👙","url":"https://hk1.monika.love/tuji-2015/miao/main/TVBox/tvbox.json"},
{"name":"🐯宝真👙","url":"https://agit.ai/sejinan/app/raw/branch/box/hua"},
{"name":"🦊warnig👙","url":"https://agit.ai/wifi/ts/raw/branch/master/210.bmp"},
{"name":"🦏楞牛👙","url":"http://tv.lengniuge.ga/yingshi"},
{"name":"🦉夜猫👙","url":"https://d.looks.wang/我爱夜猫子"},
{"name":"🦉少儿频道👙","url":"https://d.looks.wang/夜猫子少儿频道"},
{"name":"🌪南风👙","url":"https://agit.ai/Yoursmile7/TVBox/raw/branch/master/XC.json"},
{"name":"🎀元兴👙","url":"https://freed.yuanhsing.cf/TVBox/meowcf.json"},
{"name":"🐕二哈👙","url":"https://codeberg.org/jgfx/2hacc/raw/branch/main/tvbox.json"},
{"name":"🌿乱世👙","url":"http://www.dmtv.ml/mao/single.json"},
{"name":"🏡潇洒👙","url":"https://la.kstore.space/download/2863/01.txt"},
{"name":"✨精简👙","url":"https://codeberg.org/jgfx/TVBox2/raw/branch/master/Json/jgpro.json"},
{"name":"🅱yoisk👙","url":"https://raw.iqiq.io/Yosakoii/Yosakoii.github.io/main/2023.json"},
{"url":"http://tv.nxog.top/m/333.php?ou=公众号欧歌app&mz=index2&jar=index2&123&b=欧歌","name":"📢欧歌家庭线路1📢"},
{"url":"http://tv.nxog.top/m/333.php?ou=公众号欧歌app&mz=all&jar=all&b=欧歌","name":"💚阿里4k-token线路2💚"},
{"url":"http://tv.nxog.top/m/333.php?ou=公众号欧歌app&mz=a3&jar=a3&b=欧歌","name":"💖欧歌学习集合线路3💖"},
{"url":"http://tv.nxog.top/m/333.php?ou=公众号欧歌app&mz=index2&jar=index2&321&b=欧歌","name":"👇下面欧歌收集网络线路👇"},
{"url":"https://la.kstore.space/download/2863/01.txt","name":"🌟萧洒🌟"},
{"url":"https://ghproxy.com/raw.githubusercontent.com/lm317379829/PyramidStore/pyramid/py.json","name":"🌟霜辉月明🌟"},
{"url":"http://home.jundie.top:81/top98.json","name":"🌟俊佬🌟"},
{"url":"http://饭太硬.top/tv","name":"🌟饭太硬🌟"},
{"url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/0828.json","name":"🌟唐三🌟"},
{"url":"http://8.210.232.168/xc.json","name":"🌟玉玉🌟"},
{"url":"http://xhww.fun:63/小米/DEMO.json","name":"🌟小米🌟"},
{"url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/XYQ.json","name":"🌟香雅情🌟"},
{"url":"https://tvbox.cainisi.cf","name":"🌟菜妮丝🌟"},
{"url":"https://yydsys.top/duo","name":"🌟多多🌟"},
{"url":"https://ghproxy.com/https://raw.githubusercontent.com/PizazzGY/TVBox/main/api.json","name":"🌟盘盘🌟"},
{"url":"http://weixine.link:33/","name":"🌟运输车主线🌟"},
{"url":"http://我不是.肥猫.love:63/","name":"🌟肥猫🌟"},
{"url":"https://agit.ai/Yoursmile7/TVBox/raw/branch/master/XC.json","name":"🌟南风🌟"},
{"url":"https://agit.ai/895322156/Q/raw/branch/master/TV/jy.txt","name":"🌟教育专线🌟"},
{"url":"http://52bsj.vip:98/wuai","name":"🌟吾爱线路🌟"},
{"url":"https://jihulab.com/ygbh1/box/-/raw/main/月光宝盒","name":"🌟月光宝盒🌟"},
{"url":"https://pastebin.com/raw/5NHaxyGR","name":"🌟道长🌟"},
{"url":"https://agit.ai/66666/mao/raw/branch/master/00/000.m3u8","name":"🌟分享者🌟"},
{"url":"https://ghproxy.com/https://raw.githubusercontent.com/PizazzGY/TVBox/main/api.json","name":"🌟盘盘🌟"},
{"url":"https://agit.ai/guot54/ygbh/raw/branch/master/prox.json","name":"🌟54sex🌟"},
{"url":"https://nicheng.oss-cn-chengdu.aliyuncs.com/nc/nc6.json","name":"🌟拟城影视🌟"},
{"url":"http://111.67.195.139/yydf/yyff.json","name":"🌟业余打发🌟"},
{"url":"https://szyyds.cn/tv/x.json","name":"🌟小马🌟"},
{"url":"http://rihou.cc:88/荷城茶秀","name":"🌟荷城茶秀🌟"},
{"url":"https://agit.ai/sejinan/app/raw/branch/box/yu","name":"🌟于氏影业🌟"},
{"url":"https://freed.yuanhsing.cf/TVBox/meowcf.json","name":"🌟元兴🌟"},
{"url":"http://www.lyyytv.cn/yt/yt.json","name":"🌟影探🌟"},
{"url":"https://ghproxy.com/https://raw.githubusercontent.com/newenergy2000/TVBox/main/tv4k.json","name":"🌟爱TV吧🌟"},
{"url":"http://tv.nxog.top/m/333.php?ou=公众号欧歌app&mz=index2&jar=index2&123&b=欧歌","name":"📢欧歌收集不分排名📢"},
{"name":"👭人人👙","url":"https://agit.ai/376242575/zzh/raw/branch/master/txt/影视.txt"},
{"name":"💖️多多观影","url":"http://yydsys.top/duo"},
{"name":"🦉夜猫接口","url":"https://download.kstore.space/download/3313/app/ymzn"},
{"name":"🎎最全短剧","url":"https://agit.ai/hu/hcr/raw/branch/master/短剧.json"},
{"name":"🍭阿里专线","url":"http://yydsys.top/duo/ali"
},
{
"name":"🛰时光机源",
"url":"https://ghproxy.liuzhicong.com/https://raw.githubusercontent.com/bestpvp/tm/main/source/stable/master_stable_github_1.json"},
{
"name":"🍚饭太硬好",
"url":"http://饭太硬.top/tv"
},
{
"name":"💠小重楼楼",
"url":"https://agit.ai/hu/hcr/raw/branch/master/10086.json"
},
{
"name":"🍇玉玉接口",
"url":"http://8.210.232.168/xc.json"
},
{
"name":"🍑业余打发",
"url":"http://111.67.195.139/yydf/yyffjk.json"
},
{
"name":"🥃业余打發",
"url":"http://ftp6587948.host121.sanfengyun.cn/yydf/yydfjk.json"
},
{
"name":"🕵道长接口",
"url":"https://raw.gitmirror.com/yw88075/tvbox/main/dr/js.json"
},
{
"name":"🚒运输车车",
"url":"https://cf.weixine.net/ysc.json"
},
{
"name":"🥘集多影视",
"url":"http://52bsj.vip:81/api/v3/file/get/172217/jjys.json?sign=2ItQtrL0BaXJQ8G9tHrLDKu9DHelzT7u7zCJ3f1v8jo%3D%3A0"
},
{
"name":"💧高山流水",
"url":"https://gh-proxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/XYQ.json"
},
{
"name":"🍟去看4⭕️k",
"url":"https://codeberg.org/hengxing/hx/raw/branch/main/qb4k.txt"
},
{
"name":"💦小桥流水",
"url":"https://gh-proxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"
},
{
"url":"https://agit.ai/376242575/line1/raw/branch/master/line1.json",
"name":"🧛♂️人人资源"
},
{
"url":"http://biu.alwaysdata.net/box.json",
"name":"🦊牛大佬源"
},
{
"url":"https://agit.ai/sejinan/app/raw/branch/box/1.m3u8",
"name":"🐻沃影主站"
},
{
"url":"http://刚刚.live/猫",
"name":"🐼肥猫接口"
},
{
"name":"🌿春溢天下",
"url":"https://wds.ecsxs.com/230989.json"
},
{
"name":"🍀春盈接口",
"url":"http://wp.anxwl.cn/down.php/245a89be183aeddb85d1501ed5eb3260.json"
},
{
"name":"🍄cat满接口",
"url":"http://122.51.37.23/man/cally4.xx.json "
},
{
"name":"🎁月光宝盒",
"url":"https://agit.ai/guot54/ygbh/raw/branch/master/pro%e5%8e%9f.json"
},
{
"name":"🥣小米接口",
"url":"http://xhww.fun:63/小米/DEMO.json"
},
{
"name":"🐺猎狼影视",
"url":"https://www.lltv8.top"
},
{
"name":"☔️缘聚缘散",
"url":"https://agit.ai/alanchaotang/if/raw/branch/main/X.json"},
{
"name":"🌰精品商铺",
"url":"http://xxxoo.shop"
},
{
"name":"🌪海风线路",
"url":"https://agit.ai/haifeng2777/TVB/raw/branch/master/TVBOX/00.json"
},
{
"name":"🌪海风爱腾",
"url":"https://agit.ai/haifeng2777/TVB/raw/branch/master/TVBOX/8.json"
},
{
"name":"🎯徐哥影视",
"url":"https://agit.ai/hu/hcr/raw/branch/master/xu.json"
},
{
"name":"👮锦哥影视",
"url":"http://jin.锦哥哥.love"
},
{
"name":"🏄🏻abc影视",
"url":"https://agit.ai/n/b/raw/branch/a/b/c.json"
},
{
"name":"🛠非凡工具",
"url":"https://codeberg.org/jgfx/dym/raw/branch/master/master825.json"
},
{
"name":"🌴CatT4口",
"url":"https://agit.ai/ddx/TVBox/raw/branch/master/t4.json"
},
{
"name":"🌿Cat接口",
"url":"https://agit.ai/ddx/TVBox/raw/branch/master/catbox.json"
},
{
"name":"🌹爱TV接口",
"url":"https://ghproxy.com/https://raw.githubusercontent.com/pdscxz/TV/main/video/tv4k.json"
},
{"name":"🥙妃天影视","url":"https://jihulab.com/moyuer/jk/-/raw/main/moyu.json"},
{"name":"🏁速度搜索","url":"http://52bsj.vip:81/api/v3/file/get/172234/%E6%98%9F%E6%98%9F%E5%BD%B1%E8%A7%86%E4%BB%93%E5%BA%93%E5%86%85%E5%AE%B9.txt?sign=qZLVlqUfttYuVJdIw75KcAdx_ZzeZSJgKdmcba48U3U%3D%3A0"},
{
"name":"🌈盐枭接口",
"url":"https://9xi4o.tk/tvbox.json"
},
{
"name":"🛀🏻影音天堂",
"url":"https://www.ywsj.cf/upload/2023/10/yyzq4k.json"
},
{
"name":"❣️壹梦梦壹",
"url":"http://qrh.yimkj.cn/ym/壹梦.json"
},
{
"name":"🥃荷城茶秀",
"url":"http://rihou.cc:88/荷城茶秀"
},
{
"name":"🍭徐徐影视",
"url":"http://xutv.hz.cz/tv/xu106.txt"
},
{
"name":"🍱栩栩如生",
"url":"https://download.kstore.space/download/4907/jcsq/fx.json"
},
{
"name":"🎁小盒酷玩",
"url":"http://小盒酷玩.fun:66/禁止贩卖"
},
{
"name":"🏩源来享家",
"url":"https://box.000913.xyz/230924"
},
{
"name":"🐝蜂窝接口",
"url":"https://ghproxy.net/https://raw.githubusercontent.com/xiaolinshao/linshao/main/1.json"
},
{
"name":"❤️艾艾接口",
"url":"http://cdn.qiaoji8.com/tvbox.json"
},
{
"name":"🌼菜妮丝姐",
"url":"https://tvbox.cainisi.cf"
},
{
"name":"🍃吾爱接口",
"url":"http://52bsj.vip:98/wuai"
},
{
"name":"💦巧技接口",
"url":"http://pandown.pro/tvbox/tvbox.json"
},
{
"name":"📿神器推送",
"url":"https://神器每日推送.tk/pz.json"
},
{
"name":"🍑水蜜桃桃",
"url":"http://shixiong.alwaysdata.net/m.json"
},
{
"name":"🥗圆周率π",
"url":"https://jihulab.com/zhulr7765/tvbox/-/raw/main/tv.txt?ref_type=heads"
},
{
"name":"🌹香雅情缘",
"url":"https://ghproxy.net/https://raw.githubusercontent.com//yydfys/yydf/main/XYQTVBox/xyq.json"
},
{
"name":"🔘精选接口",
"url":"https://codeberg.org/jgfx/box88/raw/branch/master/jg.txt"
},
{
"name":"🎏分享者源",
"url":"https://agit.ai/66666/mao/raw/branch/master/00/000.m3u8"
},
{
"name":"🦋潇洒线路",
"url":"https://la.kstore.space/download/2863/01.txt"
},
{
"name":"🐕二哈接口",
"url":"https://codeberg.org/jgfx/2hacc/raw/branch/main/tvbox.json"
},
{
"name":"✨精简接口",
"url":"https://codeberg.org/jgfx/TVBox2/raw/branch/master/Json/jgpro.json"
},
{
"name":"💎TTF接口",
"url":"https://agit.ai/Doudou/TVbox/raw/branch/master/intf/intf_1.json"
},
{
"name":"🌮于氏影业",
"url":"https://agit.ai/sejinan/app/raw/branch/box/yu"
},
{
"name":"🎀熊猫接口",
"url":"https://s2.pub/xmbjmxdc"
},
{
"name":"🎪影影四科",
"url":"http://www.lyyytv.cn/yt/yt.json"
},
{
"name":"📮好人接口",
"url":"https://xhdwc.tk/0"
},
{
"name":"🌹乐享接口",
"url":"https://agit.ai/tsparkour/nmys/raw/branch/master/qt/lxys.json"
},
{
"name":"💛猫技接口",
"url":"https://agit.ai/ddx/nmys/raw/branch/master/feimao.json"
},
{
"url":"https://notabug.org/qizhen15800/My9394/raw/master/ProfessionalEdition.m3u8",
"name":"📌量帅接口"
},
{
"url":"https://agit.ai/376242575/zzh/raw/branch/master/美食.txt",
"name":"🍔美食专线"
},
{
"url":"https://agit.ai/895322156/Q/raw/branch/master/TV/jy.txt",
"name":"📕教育专线"
},
{
"url":"http://52bsj.vip:81/api/v3/file/get/41063/bili.json?sign=TxuApYZt6bNl9TzI7vObItW34UnATQ4RQxABAEwHst4%3D%3A0",
"name":"⏰学习接口"
},
{
"name":"🌹星河科技园",
"url":"https://agit.ai/ddx/TVBox/raw/branch/master/t4.json"
},
{
"name":"😁天天开心",
"url":"http://rihou.vip:61/天天开心"
},
{
"name":"😘肥猫姐姐",
"url":"http://我不是.肥猫.love:63/接口禁止贩卖"
},
{
"name":"🤣玩偶网盘",
"url":"https://ghproxy.com/raw.githubusercontent.com/FongMi/CatVodSpider/main/json/config.json"
},
{
"name":"🥱短剧14场",
"url":"https://biu.codered.cloud/wp-content/uploads/2023/11/你的短剧接口.bmp"
},
{
"name":"🤐网盘接口",
"url":"https://jihulab.com/jinenge/tvbox/-/raw/main/1.json"
},
{
"name":"🌝新接口源",
"url":"https://gh-proxy.com/https://raw.githubusercontent.com/wnddwc/daiweichun/main/waynfifdwj.json"
},
{
"name":"🤔磁力推送",
"url":"http://wp.anxwl.cn/down.php/fa01c979a11ec455e25635e3ef86bf9b.txt"
},
{
"name":"🐸听书听歌",
"url":"https://gitee.com/ywjtv/ywjtv/raw/master/听歌听书.json"
},
{
"name":"🐞4k大全",
"url":"https://codeberg.org/hengxing/hx/raw/branch/main/qb4k.txt"
},
{
"name":"🐔人人影视",
"url":"https://agit.ai/376242575/line1/raw/branch/master/line1.json"
},
{
"name":"🐊超级多源",
"url":"http://biu.alwaysdata.net/box.json"
},
{
"name":"🦉窝影主站",
"url":"https://agit.ai/sejinan/app/raw/branch/box/1.m3u8"
},
{
"name":"🐥大卫来袭",
"url":"https://xhdwc.tk/0"
},
{
"name":"🐤满接口源",
"url":"http://122.51.37.23/man/cally4.xx.json"
},
{
"name":"🥦于士影业",
"url":"https://agit.ai/sejinan/app/raw/branch/box/yu"
},
{
"name":"🥟猫技技术",
"url":"https://agit.ai/ddx/TVBox/raw/branch/master/m.json"
},
{
"name":"🥒分享者源",
"url":"https://agit.ai/767820774/mao666/raw/branch/master/00/000.m3u8"
},
{
"name":"🥚骚零大全",
"url":"https://xhdwc.tk/0"
},
{
"name":"🍄缘聚缘散",
"url":"https://agit.ai/alanchaotang/if/raw/branch/main/X.json"
},
{
"name":"🥦精品线路",
"url":"http://xxxoo.shop"
},
{
"name":"🌹短剧",
"url":"https://pan.shangui.cc/f/X23qsd/%E7%9F%AD%E5%89%A7%E5%A4%A7%E8%B5%9B.txt"
},
{
"name":"🍌海风线路",
"url":"https://agit.ai/haifeng2777/TVB/raw/branch/master/TVBOX/00.json"
},
{
"name":"⚽短剧大全",
"url":"https://pan.shangui.cc/f/8Qybfo/ssjyz.txt"
},
{
"name":"🚵海风爱腾",
"url":"https://agit.ai/haifeng2777/TVB/raw/branch/master/TVBOX/8.json"
},
{
"name":"🏊abc",
"url":"https://agit.ai/n/b/raw/branch/a/b/c.json"
},
{
"name":"🏊玉玉",
"url":"http://8.210.232.168/xc.json"
},
{
"name":"🏑靖哥影视",
"url":"http://jin.锦哥哥.love"
},
{
"name":"⚾4k完美",
"url":"http://111.67.195.139/tvboxvip.json"
},
{
"name":"🌹宝盒接口",
"url":"https://agit.ai/guot54/ygbh/raw/branch/master/PRO.json"
},
{
"name":"🍉cat接口",
"url":"https://agit.ai/ddx/TVBox/raw/branch/master/catbox.json"
},
{
"name":"🍄妃天影视",
"url":"https://jihulab.com/moyuer/jk/-/raw/main/moyu.json"
},
{
"name":"🥦速度搜索",
"url":"http://52bsj.vip:81/api/v3/file/get/172234/%E6%98%9F%E6%98%9F%E5%BD%B1%E8%A7%86%E4%BB%93%E5%BA%93%E5%86%85%E5%AE%B9.txt?sign=qZLVlqUfttYuVJdIw75KcAdx_ZzeZSJgKdmcba48U3U%3D%3A0"
},
{
"name":"🌽盐削接口",
"url":"https://9xi4o.tk/tvbox.json"
},
{
"name":"🍋壹梦接口",
"url":"http://qrh.yimkj.cn/ym/壹梦.json"
},
{
"name":"🍈徐徐接口",
"url":"http://xutv.hz.cz/tv/xu106.txt"
},
{
"name":"🍇爱爱音乐",
"url":"http://cdn.qiaoji8.com/tvbox.json"
},
{
"name":"🌶️水蜜桃味",
"url":"http://shixiong.alwaysdata.net/m.json"
},
{
"name":"🍔圆周率",
"url":"https://jihulab.com/zhulr7765/tvbox/-/raw/main/tv.txt?ref_type=heads"
},
{
"name":"👅精选线路",
"url":"https://codeberg.org/jgfx/box88/raw/branch/master/jg.txt"
},
{
"name":"🖤TT线路",
"url":"https://agit.ai/Doudou/TVbox/raw/branch/master/intf/intf_1.json"
},
{
"name":"❣️影影四科",
"url":"http://www.lyyytv.cn/yt/yt.json"
},
{
"name":"⛄好人接口",
"url":"https://xhdwc.tk/0"
},
{
"name":"🎃歌手MV",
"url":"https://notabug.org/qizhen15800/My9394/raw/master/ProfessionalEdition.m3u8"
},
{
"name":"💕运输车VIP💕",
"url":"http://svip.weixine.net:88/uploads/itvbox/svip.json"
},
{
"name":"💕全部4k资源",
"url":"https://codeberg.org/hengxing/hx/raw/branch/main/qb4k.txt"
},
{
"name":"💕4K视界💕",
"url":"https://tudouaa1.oss-cn-beijing.aliyuncs.com/api/apix.json"
},
{
"name":"🐟今晚摸鱼🐟",
"url":"https://jihulab.com/moyuer/jk/-/raw/main/moyu.json"
},
{
"name":"🐈影音天堂4k",
"url":"https://jihulab.com/dimaston1/4k/-/raw/main/tongyong.json"
},
{
"name":"👍肥猫4k",
"url":"http://我不是.肥猫.love:63/接口禁止贩卖"
},
{
"name":"魔改雨落分享",
"url":"http://api.山西焦煤.net/tvbox/1.xml"
},
{
"name":"🚖影探4k",
"url":"http://www.lyyytv.cn/yt/yt.json"
},
{
"name":"💗4k",
"url":"https://ghproxy.com/https://raw.githubusercontent.com/pdscxz/TV/main/video/tv4k.json"
},
{
"name":"💕壹梦在线💕",
"url":"http://qrh.yimkj.cn/ym/壹梦.json"
},
{
"name":"✍️阿里专线",
"url":"https://yydsys.top/duo/ali"
},
{
"name":"💔温酒待侯",
"url":"https://download.kstore.space/download/4907/jcsq/fx.json"
},
{
"name":"🧡业余主线",
"url":"http://111.67.195.139/yydf/yyff.json"
},
{
"name":"💙群新荟萃",
"url":"https://ghproxy.net/https://raw.githubusercontent.com/yydfys/yydf/main/yydf/yydf.json"
},
{
"name":"👅非凡",
"url":"https://codeberg.org/jgfx/dym/raw/branch/master/master825.json"
},
{
"name":"🉑跑得快",
"url":"https://weixine.net/ysc.json"
},
{
"name":"🎾小米",
"url":"http://xhww.fun:63/小米/DEMO.json"
},
{
"name":"🌵小盒酷玩",
"url":"http://小盒酷玩.fun:66/禁止贩卖"
},
{
"name":"🍓魔改线路",
"url":"https://download.kstore.space/download/2883/%E5%BD%B1%E8%A7%86%E4%BB%93.txt"
},
{
"name":"🏵️77影视",
"url":"http://tvboxx.com.cn/tvbox/tv.json"
},
{
"name":"⚽金榜影视",
"url":"https://wds.ecsxs.com:443/230989.json"
},
{
"name":"🌺泥巴",
"url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/0827.json"
},
{
"name":"🌺香雅情",
"url":"https://raw.gitmirror.com/yw88075/tvbox/main/XYQTVBox/XYQTVBox.json"
},
{
"name":"🌼圈圈",
"url":"https://ghproxy.com/https://raw.githubusercontent.com/PizazzGY/TVBox/main/api2.json"
},
{
"name":"☃️蚂蚁接口",
"url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"
},
{
"name":"🏆荷城茶秀",
"url":"https://agit.ai/XiaoYiChaHang/xxzb/raw/branch/master/hccx.json"
},
{
"name":"💛心动",
"url":"https://jihulab.com/yw88075/tvbox/-/raw/main/yw.json"
},
{
"name":"🥝蜂蜜",
"url":"https://ghproxy.com/https://raw.githubusercontent.com/PizazzGY/TVBox_warehouse/main/影视/api.json"
},
{
"name":"💞多多",
"url":"https://yydsys.top/duo"
},
{
"name":"🍚饭太硬",
"url":"http://饭太硬.top/tv"
},
{
"name":"🚒运输车",
"url":"https://pan.shangui.cc/f/mPecb/%E9%87%87%E9%9B%86.json"
},
{
"name":"🐼肥猫",
"url":"http://我不是.肥猫.love:63/接口禁止贩卖"
},
{
"name":"🌨高天流云JS",
"url":"https://ghproxy.com/raw.githubusercontent.com/gaotianliuyun/gao/master/js.json"
},
{
"name":"💦4k给力",
"url":"http://xxxoo.shop"
},