forked from wanganni/yinshiyuan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtvbox18.json
1628 lines (1591 loc) · 94 KB
/
tvbox18.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"wallpaper": "https://picsum.photos/1080/",
"spider": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xyq.jar",
//"logo": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/爱心.gif",
//"logo": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/av.png",
"logo": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/美.gif",
//"logo": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/飞鱼.jpg",
"homeLogo": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/美.gif",
//"logo": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/开车.webp",
//"spider": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar",
//"spider": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/XBiubiuLA4.jar",
"sites": [
//type,0表达xml,1表达json,3表达jar内置json
//___
{"key":"csp_XYQHiker_stripchat直播","name": "🔞stripchat直播(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/stripchat直播.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_bongacams直播","name": "🔞bongacams直播(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/bongacams直播.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_直播大全","name": "🔞直播大全(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/直播大全.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_直播1","name": "🔞直播1(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/直播1.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_直播2","name": "🔞直播2(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": {"规则名": "直播1-XYQHiker",
"规则作者": "飞鱼",
"请求头参数": "手机",
"网页编码格式": "UTF-8",
"分类起始页码": "1",
"分类链接": "http://api.vipmisss.com:81/mf/jsonDancelife.txt",
"分类名称": "直播",
"分类名称替换词": "",
"分类截取模式": "0",
"分类列表数组规则": "zhubo",
"分类片单是否Jsoup写法": "1",
"分类片单标题": "title",
"分类片单链接": "address",
"分类片单图片": "img",
"分类片单副标题": "Number",
"分类片单链接加前缀": "",
"分类片单链接加后缀": "",
"链接是否直接播放": "1",
"分析MacPlayer": "0",
"是否开启手动嗅探": "1",
"手动嗅探视频链接关键词": ".m3u8#.mp4#flv#rtmp",
"手动嗅探视频链接过滤词": "baidu.com"
},"style": {"type": "rect","ratio": 1.6}},
{
"key": "艾蛋影视",
"name": "艾蛋影视",
"type": 1,
"api": "https://www.lovedan.net/api.php/provide/vod",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},
{
"key": "TVB云播",
"name": "TVB云播",
"type": 1,
"api": "http://www.tvyb10.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [ ]
}, {
"key": "最大资源",
"name": "最大",
"type": 1,
"api": "https://api.zuidapi.com/api.php/provide/vod/from/zuidam3u8/",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},
{
"key": "快车资源",
"name": "快车",
"type": 1,
"api": "https://caiji.kczyapi.com/api.php/provide/vod/?ac=list",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},{
"key": "奇虎资源",
"name": "奇虎",
"type": 1,
"api": "http://qihuzy1.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},{
"key": "华为吧资源",
"name": "华为吧",
"type": 1,
"api": "https://hw8.live/api.php/provide/vod/?ac=list",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},
{
"key": "vodimg资源",
"name": "vodimg",
"type": 1,
"api": "https://cj.vodimg.top/api.php/provide/vod/&type=2&mid=1",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},{
"key": "49资源",
"name": "49",
"type": 1,
"api": "https://49zy1.com/api.php/provide/vod/?ac=list",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},{
"key": "360资源",
"name": "360",
"type": 1,
"api": "https://360zy.com/api.php/provide/vod",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},
{
"key": "天空资源",
"name": "天空",
"type": 1,
"api": "https://api.tiankongapi.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},
{
"key": "暴风资源",
"name": "暴风",
"type": 1,
"api": "https://bfzyapi.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [ ]
},
{
"key": "乐视",
"name": "🈲 成人频道[乐视]",
"type": 1,
"api": "https://leshiapi.com/api.php/provide/vod/at/json/",
"searchable": 1,
"changeable": 1,
"categories": ['短剧',"伦理片","港台三级","韩国伦理","日本伦理","卡通动漫","其他伦理"]
},
{
"key": "量子",
"name": "🈲 成人频道[量子]",
"type": 0,//type=0api为xml,type=1api为json
"api": "http://lzizy8.com/api.php/provide/vod/from/lzm3u8/at/xml/",
"searchable": 1,
"changeable": 1,
"categories": [ ]//分类用用引号分类逗号分割
},
{
"key": "非凡",
"name": "🈲 成人频道[非凡]",
"type": 1,
"api": "http://ffzy3.tv/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": ['短剧','伦理片']
},
{
"key": "无尽",
"name": "🈲 成人频道[无尽]",
"type": 1,
"api": "https://api.wujinapi.me/api.php/provide/vod",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "ikun",
"name": "🈲 成人频道[ikun]",
"type": 1,
"api": "https://ikunzyapi.com/api.php/provide/vod",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "速播",
"name": "🈲 成人频道[速播]",
"type": 1,
"api": "https://subocaiji.com/api.php/provide/vod/from/subyun/at/json",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "极速",
"name": "🈲 成人频道[极速]",
"type": 1,
"api": "https://jszyapi.com/api.php/provide/vod",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "海外看",
"name": "海外看[高清采集]",
"type": 1,
"api": "https://haiwaikan.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
]
},
{
"key": "快看",
"name": "🈲 成人频道[快看]",
"type": 1,
"api": "https://kuaikan-api.com/api.php/provide/vod/from/kuaikan",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "快云",
"name": "🈲 成人频道[快云]",
"type": 1,
"api": "https://kuaiyun-api.com/api.php/provide/vod/from/kuaiyun/",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "樱花",
"name": "🈲 成人频道[樱花🌸]",
"type": 1,
"api": "https://m3u8.apiyhzy.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "sd",
"name": "🈲 成人频道[闪电]",
"type": 1,
"api": "https://sdzyapi.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"理论片"
]
},
{
"key": "百度",
"name": "🈲 成人频道[百度]",
"type": 1,
"api": "https://bdzy2.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "光速",
"name": "🈲 成人频道[光速]",
"type": 1,
"api": "https://api.guangsuapi.com/api.php/provide/vod",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "imdb",
"name": "🈲 成人频道[imdb]",
"type": 1,
"api": "https://api.imdb123.com/api.php/provide/vod/?ac=list",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "金鹰",
"name": "🈲 成人频道[金鹰]",
"type": 1,
"api": "https://jyzyapi.com/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "卧龙",
"name": "🈲 成人频道[卧龙]",
"type": 1,
"api": "https://collect.wolongzyw.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "豪华",
"name": "🈲 成人频道[豪华]",
"type": 1,
"api": "https://hhzyapi.com/api.php/provide/vod/from/hhm3u8?ac=list",
"searchable": 1,
"changeable": 1,
"categories": [
"伦理片"
]
},
{
"key": "啪啪啪",
"name": "🔞啪啪啪[采集]",
"type": 0,
"api": "https://www.vid02.com/api.php/provide/vod/at/xml",
"searchable": 1,
"changeable": 1,
"categories": []
},
{
"key": "91传媒",
"name": "🔞91传媒[采集]",
"type": 1,
"api": "http://www.91mcn.org/api.php/provide/vod",
"searchable": 1,
"changeable": 1,
"categories": []
},
{
"key": "奶香香",
"name": "🔞奶香香[采集]",
"type": 1,
"api": "https://naixxzy.com/api.php/provide/vod/from/naixx/",
"searchable": 1,
"changeable": 1,
"categories": [],"style": {"type": "rect","ratio": 1.6}
},
{
"key": "hav6.beauty",
"name": "🔞黄AV(采集)",
"type": 0,
"api": "https://www.pgxdy.com/api/xml.php",
"searchable": 1,
"recordable": 0,
"style": {
"type": "rect",
"ratio": 1.6
}
}
,
{
"key": "api.sexnguon.com",
"name": "🔞Sexnguon✈️",
"type": 1,
"api": "http://api.sexnguon.com/api.php/provide/vod/",
"searchable": 1,
"recordable": 0,
"style": {
"type": "rect",
"ratio": 1.6
}
},
{"key":"最色资源(采集)🔞","name":"🔞最色资源(采集)💯","type":1,"api":"https://zszyw.top/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"好色资源(采集)🔞","name":"🔞好色资源(采集)💯","type":1,"api":"https://haosezyw.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"麻豆视频49zp.cc(采集)🔞","name":"🔞麻豆视频49zp.cc(采集)💯","type":1,"api":"https://www.92nr.cc/api.php/provide/vod/","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"麻豆视频49zp.cc2(采集)🔞","name":"🔞麻豆视频49zp.cc2(采集)💯","type":1,"api":"http://www.34pf.cc/api.php/provide/vod/","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"麻豆视频49zp.cc3(采集)🔞","name":"🔞麻豆视频49zp.cc3(采集)💯","type":1,"api":"https://www.43kh.cc/api.php/provide/vod/","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"草帽(采集)🔞","name":"🔞草帽(采集)💯","type":1,"api":"https://wvw.cmzy.top/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"蜜桃资源(采集)🔞","name":"🔞蜜桃资源(采集)","type":1,"api":"https://mitaocj.com/api.php/provide/vod","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"蜜桃社(采集)🔞","name":"🔞蜜桃社(采集)💯","type":1,"api":"https://mitaoshe.cyou/api.php/provide/vod/","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"javday(采集)🔞","name":"🔞JAVday(采集)💯","type":1,"api":"https://javday.tv/api.php/provide/vod/","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"花都影视(采集)🔞","name":"🔞花都影视(采集)💯","type":1,"api":"https://vip.hdys1.com/api.php/provide/vod/","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"黄色仓库(采集)🔞","name":"🔞黄色仓库(采集)🔗💯","type":1,"api":"http://234444.xyz/api.php/provide/vod/","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{"key":"998资源(采集)🔞","name":"🔞998资源(采集)💯","type":1,"api":"https://api.998zy.com/api.php/provide/vod/at/json/","searchable":1,"quickSearch":1, "categories": [],"style": {"type": "rect","ratio": 1.6}},
{
"key": "zy018",
"name": "🔞黄瓜[采集]",
"type": 1,
"api": "https://www.zy018.com/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [],"style": {"type": "rect","ratio": 1.6}
},
{
"key": "秀人",
"name": "🔞秀人[采集]",
"type": 1,
"api": "https://xiuren.site/api.php/provide/vod/",
"searchable": 1,
"changeable": 1,
"categories": [],"style": {"type": "rect","ratio": 1.6}
},
{"key": "秘密公寓", "name": "🔞私房TV[采集]", "type": 1,"api": "https://ijh.14mmgy.cc/api.php/provide/vod/","searchable": 1,"changeable": 1,"categories": [],"style": {"type": "rect","ratio": 1.6} },
{"key":"csp_XYQHiker_hanimi1","name": "🔞Hanime1(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/hanime1.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_动漫后宫","name": "🔞动漫后宫(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/动漫后宫.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_jiedm","name": "🔞jiedmAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/jiedm.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_xtoons","name": "🔞Xtoons动漫(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/xtoons.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_动漫PRO","name": "🔞动漫PRO(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/动漫pro.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_ACG漫画网","name": "🔞ACG漫画网(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/acg漫画网.json","style": {"type": "rect","ratio": 1.33}},
{"key":"csp_XYQHiker_avbebe","name": "🔞AVbebe(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/avbebe.json","style": {"type": "rect","ratio": 1.33}},
{"key":"drpy_js_Missav","name":"Missav测试[js]","type":3,"api":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/js/apiv19drpy2.min.js","ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/js/Missav.js"},
{"key":"csp_XYQHiker_AV兄弟","name": "🔞AV兄弟(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/av兄弟.json","style": {"type": "rect","ratio": 1.8}},
{"key":"csp_XYQHiker_云老婆","name": "🔞云老婆(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/云老婆.json","style": {"type": "rect","ratio": 0.75}},
{"key":"csp_XYQHiker_亚色影库","name": "🔞亚色影库(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/亚色影库.json","style": {"type": "rect","ratio": 1.8}},
{"key":"csp_XYQHiker_17吃瓜","name": "🔞17吃瓜(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/17吃瓜.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_91吃瓜","name": "🔞91吃瓜(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/91吃瓜.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_18jav","name": "🔞18JAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/18jav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_黄色仓库","name": "🔞黄色仓库✈️🔗(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/黄色仓库.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_黄色仓库123","name": "🔞黄色仓库123✈️🔗(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/黄色仓库123.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_黄色仓库la","name": "🔞黄色仓库啦✈️🔗(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/黄色仓库啦.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_酷爱成人网>","name": "🔞酷爱成人网✈️(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/酷爱成人网.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_444咖啡","name": "🔞444咖啡(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/444咖啡.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_b影院","name": "🔞B影院(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/b影院.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_p影院","name": "🔞P影院(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/p影院.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_hohoj","name": "🔞HOHOJ(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/hohoj.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_麻豆社","name": "🔞麻豆社(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/麻豆社.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_xgroovy","name": "🔞xgroovy(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/xgroovy.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_私房TV","name": "🔞私房TV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/私房tv.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_asianssex","name": "🔞asianssex(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/asianssex.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_hdpornmovies","name": "🔞hdpornmovies(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/hdpornmovies.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_playav","name": "🔞playav(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/playav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_qinav","name": "🔞Qinav(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/qinav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_四虎","name": "🔞四虎🐅(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/4hu.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_91HD","name": "🔞91HD(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/91hd.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_有爱爱uaa","name": "🔞有爱爱uaa🔗(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/有爱爱.json","style": {"type": "rect","ratio": 1.75},"logo":"https://m.uaa.com/assets/logo-af49a8e2.svg"},
{"key":"csp_XYQHiker_javmunu","name": "🔞JAVMUNU🧲(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/javmunu.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_u9a9","name": "🔞U9A9🧲(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/u9a9.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_airav","name": "🔞AirAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/airav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_玩偶姐姐","name": "🔞玩偶姐姐(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/玩偶姐姐.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_ggjav","name": "🔞GGJAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/ggjav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_日日撸","name": "🔞日日撸(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/日日撸.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_中国性味","name": "🔞中国性味(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/中国性味.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_鉴黄师","name": "🔞鉴黄师(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/鉴黄师.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_正妹AV","name": "🔞正妹AV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/正妹av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_porn87","name": "🔞porn87(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/porn87.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_亚洲色吧","name": "🔞亚洲色吧(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/亚洲色吧.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_owoAV","name": "🔞OWOAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/owoav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_丽丽AV","name": "🔞丽丽AV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/丽丽av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_朱古力","name": "🔞朱古力(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/朱古力.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_好色TV","name": "🔞好色TV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/好色tv.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_javdb","name": "🔞JAVDB🧲(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/javdb.json"},
{"key":"csp_XYQHiker_紫色成人","name": "🔞紫色成人(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/紫色成人.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_xHamster","name": "🔞xHamster(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/xHamster.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_jav233","name": "🔞JAV233(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/jav233.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_台湾kiss","name": "🔞台湾kiss(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/台湾kiss.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_xvideos","name": "🔞Xvideos(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/xvideos.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_spankbang","name": "🔞spankbang(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/spankbang.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_pornhub","name": "🔞pornhub(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/pornhub.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_ppp","name": "🔞PPP(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/ppp.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_soporn","name": "🔞Soporn(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/soporn.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_avple","name": "🔞Avple(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/avple.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_supjav","name": "🔞SupJAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/supjav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_cableav","name": "🔞CableAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/cableav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_moav","name": "🔞MOAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/moav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_netflav","name": "🔞NETFLAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/netflav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_av6k","name": "🔞AV6K(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/av6k.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_苹果av","name": "🔞苹果AV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/苹果av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_weav","name": "🔞WEAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/weav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_javbus","name": "🔞🧲JAVBUS(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/javbus.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_麻豆视频91md","name": "🔞麻豆视频91md(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/麻豆视频91md.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_视色","name": "🔞视色(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/视色.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_kanav","name": "🔞KANAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/kanav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_色库TV","name": "🔞色库TV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/色库tv.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_5x社区","name": "🔞5x社区(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/5x社区.json","style": {"type": "rect","ratio": 1.6}},
{"key":"私密公寓(采集)","name":"🔞私密公寓(采集)","type":1,"api":"https://406mm.buzz/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"JAVDAYTV(采集)","name":"🔞JAVDAYTV(采集)","type":0,"api":"https://javday.tv/api.php/provide/vod/at/xml","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_私密公寓","name": "🔞私密公寓(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/私密公寓.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_MOTV","name": "🔞✈️MOTV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/motv.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_麻豆映画","name": "🔞麻豆映画(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/麻豆映画.json","style": {"type": "rect","ratio": 1.6}},
{"key":"SEAJAV(采集)","name":"🔞SEAJAV(采集)","type":1,"api":"https://chendana.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"JKUN(采集)","name":"🔞JKUN(采集)","type":1,"api":"https://jkunzyapi.com/api.php/provide/vod","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"皇冠(采集)","name":"🔞皇冠(采集)","type":1,"api":"https://hghhh.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"天美(采集)","name":"🔞天美✈️(采集)","type":1,"api":"https://tmav.art/api.php/provide/vod/","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}}, {"key":"狼友会(采集)","name":"🔞浪友会(采集)","type":1,"api":"https://api.lyhapi.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"速看(采集)","name":"🔞速看[无水印](采集)","type":0,"api":"https://ziyuan.skm3u8.com/api.php/ff/provide/vod/from/ffm3u8/at/xml","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"雪豹(采集)","name":"🔞雪豹(采集)","type":1,"api":"https://api.xbapi.cc/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"AIvin(采集)","name":"🔞AIvin[无水印](采集)","type":1,"api":"http://lbapiby.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}}, {"key":"免费情色(采集)","name":"🔞免费情色[无水印](采集)","type":0,"api":"https://www.movie567.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_红桃视频","name": "🔞红桃视频(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/红桃视频.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_小嫂子av","name": "🔞小嫂子AV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/小嫂子av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_热骚","name": "🔞热骚(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/热骚.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_ixxxj","name": "🔞IXXXJ(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/ixxxj.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_小丑撸","name": "🔞小丑🤡撸(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/小丑撸.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_麻豆集","name": "🔞麻豆集📚(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/麻豆集.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_麻豆区","name": "🔞麻豆区(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/麻豆区.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_麻豆影视","name": "🔞麻豆影视🕳️(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/麻豆影视.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_少女社","name": "🔞少女社(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/少女社.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_御姐诱惑","name": "🔞御姐诱惑(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/御姐诱惑.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_怡红院","name": "🔞怡红院(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/怡红院.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_missav.app","name": "🔞MissAV.app(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/missav.app.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_missav","name": "🔞MissAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/missav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_thisav","name": "🔞ThisAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/thisav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_njav.com","name": "🔞Njav.com(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/njav.com.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_njav","name": "🔞Njav(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/njav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_jable","name": "🔞Jable(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/jable.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_tktube","name": "🔞Tktube(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/tktube.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_杏吧视频","name": "🔞杏吧视频(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/杏吧视频.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_一起草","name": "🔞一起草(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/一起草.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_javffm","name": "🔞JAVFFM(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/javffm.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_dbro","name": "🔞D哥(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/dbro.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_170av","name": "🔞170av(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/170av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_youjizz","name": "🔞Youjizz(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/youjizz.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_ujizzcn","name": "🔞Ujizzcn(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/ujizzcn.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_pornlulu","name": "🔞PornLuLu(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/pornlulu.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_91porn_asia","name": "🔞91porn_asia(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/91porn_asia.json","style": {"type": "rect","ratio": 1.75}},
{"key":"csp_XYQHiker_91porny","name": "🔞九色(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/91porny.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_91porn","name": "🔞91porn(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/91porn.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_91porn永久官方","name": "🔞91porn永久官方(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/91porn永久.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_av淘宝","name": "🔞av淘宝(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/av淘宝.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_taiav","name": "TaiAv(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/taiav.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_nowavtv","name": "🔞NOWAVTV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/nowavtv.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_六九娱乐","name": "🔞六九娱乐(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/六九娱乐.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_sexsex","name": "🔞sexsex(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/sexsex.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_234av","name": "🔞234av高清(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/234av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_anyav","name": "🔞ANYAV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/anyavme.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_鲨鱼av","name": "🔞鲨鱼av(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/鲨鱼av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_18av","name": "🔞18AV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/18av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_javtsunami","name": "🔞javtsunami(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/javtsunami.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_肉视频🔞","name":"🔞肉视频x(XYQHiker)","type":3,"api":"csp_XYQHiker","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/rouvide.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_小湿妹av","name": "🔞小湿妹av(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/小湿妹av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_麻豆视频mao","name": "🔞麻豆视频mao(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/麻豆视频mao.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_banantv","name": "🔞BaNanTV(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/banantv.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_番号鸽","name": "🔞番号鸽(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/番号鸽.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_91在线视频","name": "🔞91在线视频(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/91在线视频.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_久久热","name": "🔞久久热(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/久久热.json","style": {"type": "rect","ratio": 1.6}},
{"key":"155资源🔞","name":"🔞155资源(切片)","type":1,"api":"https://155api.com/api.php/provide/vod/","searchable":1,"quickSearch":1,"style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_18jtv🔞","name":"🔞18j(XYQHiker)","type":3,"api":"csp_XYQHiker","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/18jtv.json","style": {"type": "rect","ratio": 1.6}},
//{"key":"csp_biubiu_麻豆村🔞","name":"🔞麻豆村(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/madoucun.json"},
{"key":"csp_XYQHiker_星空传媒","name":"🔞星空传媒(Xyqh)","type":3,"api":"csp_XYQHiker","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/星空传媒.json"},
{"key":"csp_xBPQ_精东影业","name":"🔞精东影业(XBPQ)","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"playerType":2,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar","ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/jdyyxxx.json"},
{"key":"csp_xBPQ_精东影视","name":"🔞精东影视(XBPQ)","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"playerType":2,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar","ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/jdyy1xxx.json"},
{"key":"csp_xBPQ_色最色x","name":"🔞色最色(XBPQ)","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"playerType":2,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar","ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/xpbq/色最色xbpq.json"},
{"key":"csp_XYQHiker_小黄书x","name":"🔞小黄书🔗(XYQH)","type":3,"api":"csp_XYQHiker","searchable":1,"quickSearch":1,"filterable":0,"playerType":2,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/小黄书.json"},
{"key":"csp_XYQHiker_水果派","name":"🔞水果派(XYQHiker)","type":3,"api":"csp_XYQHiker","searchable":1,"quickSearch":1,"filterable":0,"playerType":2,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/水果派.json"},
{"key":"csp_XYQHiker_爱上av","name": "🔞爱上av(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/爱上av.json","style": {"type": "rect","ratio": 1.6}},
{"key":"csp_XYQHiker_色最色","name": "🔞色最色(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/色最色.json"},
{"key":"csp_XYQHiker_300分类","name": "🔞300分类(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/300分类.json"},
{
"key": "csp_xBPQ_麻豆映画",
"name":"🔞麻豆映画(XBPQ)",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"playerType":2,
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar",
"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/yinghua.json"},
{"key":"csp_xBPQ_麻豆映画2","name":"🔞麻豆映画2(XBPQ)","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"playerType":2,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar","ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/mdyhxxx.json"},
{"key":"csp_xBPQ_搞aa","name":"🔞GAOAA(XBPQ)","type":3,"api":"csp_xBPQ","searchable":1,"quickSearch":1,"filterable":0,"playerType":2,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar","ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/gaoaaxxx.json"},
{
"key": "csp_xBPQ_右手",
"name":"🔞右手影院(XBPQ)",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar",
"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/yousxxx.json"},
{"key": "csp_xBPQ_床吧搜索", "name":"🔞床吧搜索(XBPQ)","type": 3,"api": "csp_xBPQ","searchable": 1,"quickSearch": 1,"filterable": 1,"playerType":2,"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar","ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/cbssxxx.json"},
{
"key": "csp_xBPQ_麻豆女优",
"name":"🔞麻豆女优(XBPQ)",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"playerType":2,
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar",
"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/madou1.json"},
{
"key": "csp_xBPQ_天天综合",
"name":"🔞天天综合(XBPQ)",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"playerType":2,
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar",
"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/ttzh.json"},
{
"key": "csp_xBPQ_bannan",
"name":"🔞bannan(XBPQ)",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"playerType":2,
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar",
"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/bananxxx.json"},
{
"key": "csp_xBPQ_香蕉",
"name":"🔞香蕉资源(XBPQ)",
"type": 3,
"api": "csp_xBPQ",
"searchable": 1,
"quickSearch": 1,
"filterable": 1,
"jar": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xbpq.jar",
"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/xiangj.json"},
// {"key":"csp_biubiu_mdxsp","name":"🥒mdxsp(XB)","type":3,"api":"csp_XBiubiu","searchable":1,"quickSearch":1,"filterable":0,"ext":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/18/mdxsp.json"},
{"key":"csp_XYQHiker_麻豆小视频","name": "🔞麻豆小视频(XYQHiker)","type": 3,"api": "csp_XYQHiker","searchable": 1,"quickSearch": 0,"filterable": 0,"ext": "https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/XYQHiker/mdxsp-xyqh.json"},
//-------------------------------------------
{"key":"奥斯卡资源","name":"🔞奥斯卡资源(切片)","type":1,"api":"https://aosikazy3.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"色鸭资源dao","name":"🔞色鸭资源dao(切片)","type":1,"api":"https://api.seyavod.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1},
{"key":"草溜资源","name":"🔞🌿草溜资源(切片)","type":1,"api":"https://www.caoliuzyw.net/api.php/provide/vod/at/json/","searchable":1,"quickSearch":1},
{"key":"黄色资源","name":"🔞黄色资源(切片)","type":1,"api":"http://hszy.vip/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"伊人资源","name":"🔞伊人资源(切片)","type":1,"api":"https://api.yrzy1.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"yellow字幕网资源","name":"🔞yellow字幕网资源(切片)","type":1,"api":"http://zmcjz.com/api","searchable":1,"quickSearch":1},
{"key":"猫🐱资源","name":"🔞色猫🐱资源(切片)","type":1,"api":"https://api.maozyapi.com/inc/apijson_vod.php","searchable":1,"quickSearch":1},
{"key":"黄瓜资源","name":"🔞黄瓜🥒资源(切片)","type":1,"api":"https://www.avre06.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1},
{"key":"KK资源","name":"🔞👍KK资源(切片)","type":1,"api":"https://kkzy.me/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"辣椒资源","name":"🔞辣椒资源(切片)","type":1,"api":"http://api.11bat.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"黄瓜1资源","name":"🔞黄瓜<倒>资源(切片)","type":1,"api":"https://www.avre06.com/api.php/Prodao/vod/?ac=list","searchable":1,"quickSearch":1},
{"key":"jkun资源","name":"🔞jkun资源(切片)","type":1,"api":"https://jkunzyapi.com/api.php/provide/vod?ac=list","searchable":1,"quickSearch":1},
{"key":"橘猫资源","name":"🔞🐱橘猫资源(切片)","type":1,"api":"https://to.to-long.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"极致资源","name":"🔞极致资源(切片)","type":1,"api":"https://jizhiapi.com/api.php/provide/vod/at/json/","searchable":1,"quickSearch":1},
{"key":"极品资源","name":"🔞极品资源(切片)","type":1,"api":"https://jpzy.me/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"电影资源","name":"🔞电影资源(切片)","type":1,"api":"https://www.dianyingcj.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1},
{"key":"快AV资源","name":"🔞快AV资源(切片)","type":1,"api":"http://kuaiavzy.com//api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"不卡资源","name":"🔞不卡资源(采集)","type":1,"api":"https://www.bukazyw.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1},
{"key":"滴滴资源","name":"🔞滴滴资源(切片)","type":1,"api":"https://didizy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"红袖资源","name":"🔞红袖资源(切片)","type":1,"api":"https://hongxiuzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"夜色资源","name":"🔞夜色资源(切片)","type":1,"api":"https://www.yszy03.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"好片资源","name":"🔞好片资源(切片)","type":1,"api":"https://haopianapi.com/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1},
{"key":"甜蜜资源","name":"🔞甜蜜资源(切片)","type":1,"api":"https://timizy10.cc/api.php/provide/vod/?ac=list","searchable":1,"quickSearch":1},
{"key":"91资源","name":"🔞91资源(采集)🛩","type":1,"api":"https://91zy.net/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"老色逼资源","name":"🔞老色逼资源(采集)","type":1,"api":"https://apilsbzy1.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"热狗🔞","name":"🔞热狗","type":1,"api":"https://regou.la/api.php/provide/vod","searchable":1,"quickSearch":1},
{"key":"麻豆传媒映画🔞","name":"🔞麻豆传媒映画","type":1,"api":"https://md101.tv/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*麻豆视频🔞","name":"🔞麻豆视频","type":1,"api":"https://madou.io/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*麻豆射区🔞","name":"🔞麻豆射区","type":1,"api":"http://madou.fit/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*老司机🔞","name":"🔞老司机","type":1,"api":"https://www.lsj.im/api.php/provide/vod","searchable":1,"quickSearch":1},
{"key":"*麻豆射区🔞","name":"🔞麻豆射区","type":1,"api":"http://madou.fit/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*麻豆啦🔞","name":"🔞麻豆啦","type":1,"api":"http://www.15767.me/api.php/provide/vod","searchable":1,"quickSearch":1},
{"key":"*麻豆区测试🔞","name":"*麻豆区测试🔞","type":1,"api":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/md111.json","searchable":1,"quickSearch":1},
{"key":"*性视界🔞","name":"🔞性视界","type":1,"api":"http://17188.cc/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*91麻豆x","name":"🔞91麻豆","type":1,"api":"https://91md.me/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*91麻豆2🔞","name":"🔞91麻豆2","type":1,"api":"http://www.9191md.me/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*91麻豆3x","name":"🔞91麻豆3","type":1,"api":"http://www.md91.cc/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*91麻豆4x","name":"🔞91麻豆4","type":1,"api":"http://www.36717.pw/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*91麻豆5🔞","name":"🔞91麻豆5","type":1,"api":"http://www.bt4.cc/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*91麻豆6x","name":"🔞91麻豆6","type":1,"api":"http://5151md.me/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"api":"csp_Hsck","ext":"https://www.javsee.men/","filterable":0,"key":"csp_Hsck","name":"黄色仓库(爬虫)","quickSearch":1,"searchable":1,"type":3,"jar":"https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/jar/xxx.jar"},
{"key":"*黄色资源🔞","name":"🔞黄色资源","type":1,"api":"http://hszy.vip/api.php/provide/vod","searchable":1,"quickSearch":1},
{"key":"*老司机资源🔞","name":"🔞老司机资源","type":1,"api":"https://www.lsjapi.com/home/cjapi/asd2g8/mc10/vod/json","searchable":1,"quickSearch":1},
{"key":"*玉兔资源🔞","name":"🔞玉兔资源","type":1,"api":"https://yutuzy10.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*免费短视频🔞","name":"🔞免费短视频","type":1,"api":"http://xoxozy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*AV集中营🔞","name":"🔞AV集中营","type":1,"api":"https://www.caiji22.com/home/cjapi/klp0/mc10/vod/json","searchable":1,"quickSearch":1},
{"key":"*森林资源🔞","name":"🔞森林资源","type":1,"api":"https://slapibf.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*水蜜桃🔞","name":"🔞水蜜桃","type":1,"api":"http://www.smt1.xyz/api.php/provide/vod","searchable":1,"quickSearch":1},
{"key":"*丝袜资源","name":"🔞丝袜资源","type":1,"api":"https://siwazyw.tv/api.php/provide/vod/at/json/","searchable":1,"quickSearch":1},
{"key":"*秀色资源","name":"*秀色资源","type":1,"api":"https://api.xiuseapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*探探资源","name":"*探探资源","type":1,"api":"https://apittzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*色猫资源","name":"*🔞🐱色猫资源","type":1,"api":"https://api.maozyapi.com/inc/apijson_vod.php","searchable":1,"quickSearch":1},
{"key":"*花魁资源","name":"*花魁资源","type":1,"api":"https://caiji.huakuiapi.com/inc/apijson_vod.php","searchable":1,"quickSearch":1},
{"key":"*葡萄资源","name":"*葡萄资源","type":1,"api":"https://caiji.putaozyw.net/inc/apijson_vod_dx.php","searchable":1,"quickSearch":1},
{"key":"*色窝资源","name":"*色窝资源","type":1,"api":"https://sewozyapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*淫窝资源","name":"*淫窝资源","type":1,"api":"https://api.yinwoapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*SB资源","name":"*SB资源","type":0,"api":"http://www.shabizy.com:777/inc/sea","searchable":1,"quickSearch":1},
{"key":"*色屌丝资源","name":"*色屌丝资源","type":0,"api":"http://sdszyapi.com/home/cjapi/asbb/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*小姐姐资源","name":"*小姐姐资源","type":0,"api":"https://xjjzyapi.com/home/cjapi/askl/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*52AVAV","name":"*52AVAV","type":0,"api":"https://52zyapi.com/home/cjapi/asda/mc10/vod/xml","searchable":1,"quickSearch":1},
//{"key":"*水帘洞资源","name":"*水帘洞资源","type":1,"api":"https://www.sldcaiji.com/home/cjapi/s6da/mc10/vod/json","searchable":1,"quickSearch":1},
{"key":"*我要啪啪","name":"*我要啪啪","type":0,"api":"http://www.caiji21.com/home/cjapi/klkl/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*AV集中淫","name":"*AV集中淫","type":0,"api":"https://www.caiji22.com/home/cjapi/klp0/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*夜夜撸资源","name":"*夜夜撸资源","type":0,"api":"https://www.caiji23.com/home/cjapi/kls6/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*大屌丝资源","name":"*大屌丝资源","type":0,"api":"http://www.caiji24.com/home/cjapi/p0d2/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*咪咪资源","name":"*咪咪资源","type":0,"api":"http://www.caiji25.com/home/cjapi/p0as/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*鲍鱼AV","name":"*鲍鱼AV","type":0,"api":"https://www.caiji26.com/cjapi/sda/vod/json/m3u8.html","searchable":1,"quickSearch":1},
{"key":"*精工厂资源","name":"*精工厂资源","type":0,"api":"https://jgczyapi.com/home/cjapi/kld2/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*点点娱乐","name":"*点点娱乐","type":0,"api":"https://xx55zyapi.com/home/cjapi/ascf/mc10/vod/xml","searchable":1,"quickSearch":1},
//{"key":"*淫人妻资源","name":"*淫人妻资源","type":1,"api":"http://www.yrqcaiji.com/home/cjapi/s6c7/mc10/vod/json","searchable":1,"quickSearch":1},
//{"key":"*小处女资源","name":"*小处女资源","type":1,"api":"http://xcncaiji.com/home/cjapi/s6bb/mc10/vod/json","searchable":1,"quickSearch":1},
{"key":"*大MM资源","name":"*大MM资源","type":0,"api":"https://www.dmmapi.com/home/cjapi/asd2c7/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*黄瓜TV资源","name":"*黄瓜TV资源","type":0,"api":"https://www.caiji10.com/home/cjapi/cfs6/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*快播盒子资源","name":"*快播盒子资源","type":0,"api":"https://www.caiji09.com/home/cjapi/cfp0/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*大香蕉资源","name":"*大香蕉资源","type":0,"api":"https://www.caiji08.com/home/cjapi/cfkl/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*日本AV在线","name":"*日本AV在线","type":0,"api":"https://www.caiji07.com/home/cjapi/cfcf/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*久久热在线","name":"*久久热在线","type":0,"api":"https://www.caiji06.com/home/cjapi/cfbb/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*青青草视频","name":"*青青草视频","type":0,"api":"https://www.caiji05.com/home/cjapi/cfda/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*麻豆视频","name":"*麻豆视频","type":0,"api":"https://www.caiji04.com/home/cjapi/cfc7/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*一本道资源","name":"*一本道资源","type":0,"api":"https://www.caiji03.com/home/cjapi/cfg8/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*草榴视频","name":"*草榴视频","type":0,"api":"https://www.caiji02.com/home/cjapi/cfas/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*亚洲成人在线","name":"*亚洲成人在线","type":0,"api":"https://www.caiji01.com/home/cjapi/cfd2/mc10/vod/xml","searchable":1,"quickSearch":1},
{"key":"*天噜啦资源","name":"*天噜啦资源","type":0,"api":"http://www.987caiji.com/api/max.php","searchable":1,"quickSearch":1},
{"key":"*99资源","name":"*99资源","type":1,"api":"http://99zy.pw/api.php/provide/vod/","searchable":1,"quickSearch":1},
//{"key":"*99资源吧","name":"*99资源吧","type":1,"api":"http://99zyba.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*酷豆资源","name":"*酷豆资源","type":1,"api":"https://kudouzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*酷豆2","name":"*酷豆2","type":1,"api":"https://api.kdapi.info/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*酷伦理","name":"*酷伦理","type":1,"api":"https://api.kudian70.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*影库资源","name":"*影库资源","type":1,"api":"https://api.ykapi.net/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*爱播资源","name":"*爱播资源","type":1,"api":"https://cj.apiabzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*美少女资源","name":"🔞美少女(采集)","type":0,"api":"https://www.msnii.com/api/xml.php","searchable":1,"quickSearch":1},
{"key":"*淫水机资源","name":"*淫水机资源","type":0,"api":"https://www.xrbsp.com/api/xml.php","searchable":1,"quickSearch":1},
{"key":"*香奶儿资源","name":"*香奶儿资源","type":0,"api":"https://www.gdlsp.com/api/xml.php","searchable":1,"quickSearch":1},
{"key":"*白嫖资源","name":"*白嫖资源","type":0,"api":"https://www.kxgav.com/api/xml.php","searchable":1,"quickSearch":1},
{"key":"*小湿妹资源","name":"*小湿妹资源","type":0,"api":"https://www.afasu.com/api/xml.php","searchable":1,"quickSearch":1},
{"key":"*大地资源","name":"*大地资源","type":0,"api":"http://ddkbo.com/api.php","searchable":1,"quickSearch":1},
{"key":"*CK资源","name":"*CK资源","type":1,"api":"http://www.feifei67.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*老鸭资源","name":"*🦆老鸭资源","type":1,"api":"http://lyzyz1.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*花椒资源","name":"*花椒资源","type":1,"api":"https://apihjzy.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*乐播资源","name":"*乐播资源","type":1,"api":"https://lbapi9.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*博天堂","name":"*🔞博天堂","type":0,"api":"http://bttcjz.com/inc/sapi.php","searchable":1,"quickSearch":1},
{"key":"*环亚资源","name":"*环亚资源","type":0,"api":"http://wmcj8.com/inc/sapi.php","searchable":1,"quickSearch":1},
{"key":"*AVZY6888资源","name":"*AVZY6888资源","type":1,"api":"http://m.7777688.com/inc/apijson.php","searchable":1,"quickSearch":1},
{"key":"*色色资源","name":"*色色资源","type":0,"api":"http://secj8.com/inc/sapi.php?ac=videolist","searchable":1,"quickSearch":1},
{"key":"*玖玖资源","name":"*玖玖资源","type":0,"api":"http://99zywcj.com/inc/sapi.php?ac=videolist","searchable":1,"quickSearch":1},
{"key":"*狼少年","name":"*狼少年","type":0,"api":"http://cjmygzy.com/inc/sapi.php?ac=videolist","searchable":1,"quickSearch":1},
{"key":"*佳丽资源","name":"*佳丽资源","type":1,"api":"http://www.jializyzapi.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*番号资源","name":"*番号资源","type":1,"api":"http://fhapi9.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*鲨鱼资源","name":"🔞鲨鱼(高清采集)","type":1,"api":"http://shayuzy1.com/api.php/provide/vod/","searchable":1,"quickSearch":1},
{"key":"*速度资源","name":"*速度资源","type":0,"api":"http://www.ggmmzy.com:9999/inc/xml","searchable":1,"quickSearch":1},
{"key": "zp098","name": "老鸭资源","type": 0,"api": "http://laoyazy.vip/api.php/provide/vod/at/xml","searchable": 1,"quickSearch": 1,"filterable": 0}
],
"lives": [
{
"group": "redirect",
"channels": [
{
"name": "redirect",
"urls": [
"proxy://do=live&type=txt&ext=https://mirror.ghproxy.com/https://raw.githubusercontent.com/wanganni/yinshiyuan/main/tv/做爱大全.txt"
]
}
]
}
],
"parses": [
{
"name": "解析聚合",
"type": 3,
"url": "Demo"
},
{
"name": "Json并发",
"type": 2,
"url": "Parallel"
},
{
"name": "Json轮询",
"type": 2,
"url": "Sequence"
},
{
"name": "飞捷",
"type": 1,
"url": "https://fjkkk.cn/toujiexisiquanjia.php?url=",
"ext": {
"flag": [
"qq",
"腾讯",
"letv",
"乐视",
"mgtv",
"芒果",
"youku",
"优酷",
"qiyi",
"iqiyi",
"爱奇艺",
"奇艺"
]
}
},
{
"name": "集象",
"type": 1,
"url": "http://110.42.2.115:880/analysis/json/?uid=2245&my=cdfhirsuwyEGIPU346&url=",
"ext": {
"flag": [
"qq",
"腾讯",
"qiyi",
"爱奇艺",
"奇艺",
"youku",
"优酷",
"sohu",
"搜狐",
"letv",
"乐视",
"mgtv",
"芒果",
"CL4K",
"renrenmi",
"ltnb",
"xigua"
]
}
},
{
"name": "急速1",
"type": 1,
"url": "https://www.daina.hk/api/?key=RXpzyrbMFYySN0sNps&url=",
"ext": {
"flag": [
"qq",
"腾讯",
"qiyi",
"爱奇艺",
"奇艺",
"youku",
"优酷",
"sohu",
"搜狐",
"letv",
"乐视",
"mgtv",
"芒果",
"CL4K",
"renrenmi",
"ltnb",
"xigua"
]
}
},
{
"name": "急速3",
"type": 1,
"url": "https://jx.parwix.com:4433/player/?url=",
"ext": {
"flag": [
"qq",
"腾讯",
"qiyi",
"爱奇艺",
"奇艺",
"youku",
"优酷",
"mgtv",
"芒果",
"letv",
"乐视",
"pptv",
"PPTV",
"sohu",
"bilibili",
"哔哩哔哩",
"哔哩"
]
}
},
{
"name": "VIP3",
"type": 1,
"url": "http://jifei.mrcy0.com/home/api?type=ys&uid=2752189&key=aefghtACLNRSZ01247&url=",
"ext": {
"flag": [
"qq",
"腾讯",
"letv",
"乐视",
"mgtv",
"芒果",
"youku",
"优酷",
"qiyi",
"iqiyi",
"爱奇艺",
"奇艺"
]
}
},
{
"name": "急速6",
"type": 1,
"url": "http://api.vip123kan.vip/?url=",
"ext": {
"flag": [
"youku",
"优酷",
"mgtv",
"芒果",
"qq",
"腾讯",
"qiyi",
"爱奇艺",
"qq",
"奇艺"
]
}
},
{
"name": "急速8",
"type": 1,
"url": "http://yaluan.520say.cn/home/api?type=ys&uid=65588&key=cdeghikortvAFGI078&url=",
"ext": {
"flag": [
"CL4K",
"饭后独播",
"芒果视频",
"youku",
"rx",
"ltnb",
"优酷",
"qiyi",
"爱奇艺",
"奇艺",
"renrenmi",
"qq",
"腾讯",
"腾讯视频",
"letv",
"乐视"
]
}
},
{
"name": "急速4",
"type": 1,
"url": "https://jf.96ym.cn/home/api?type=ys&uid=1319830&key=cefgnoprtvxyzBGKP6&url=",
"ext": {
"flag": [
"qq",
"腾讯",
"letv",
"乐视",
"mgtv",
"芒果",
"youku",
"优酷",
"qiyi",
"iqiyi",
"爱奇艺",
"奇艺"
]
}
},
{
"name": "急速5",
"type": 1,
"url": "http://ck.laobandq.com/3515240842.php?pltfrom=1100&url=",
"ext": {
"flag": [
"qq",
"腾讯",
"qiyi",
"爱奇艺",
"奇艺",
"youku",
"优酷",
"sohu",
"搜狐",
"letv",