-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsert_subcategories.sql
8823 lines (8823 loc) · 193 KB
/
insert_subcategories.sql
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
insert into lemondb.subcategories (text) values
("!K7"),
("+180 Records"),
("10 Easy Lessons"),
("10 Percent"),
("100 Beats"),
("100 Out of 99 Productions"),
("100% Educational Videos"),
("101 Distribution"),
("108 Media"),
("10T Records"),
("117 Records"),
("11:24 Design"),
("12 Pound Productions"),
("13th Planet Records"),
("14,000 Ft. Production"),
("1428 Films"),
("17 North Parade"),
("1917 Records"),
("1984 Productions"),
("1x1 Music"),
("2 Degrees Productions"),
("2 Entertain Video"),
("20-20-20"),
("2121 Productions"),
("215 Records"),
("21st Century Blues"),
("21st Century UK"),
("221 Films"),
("24 Ore Cultura"),
("2450 Visual Entertainment"),
("2B1 Records"),
("2K Records"),
("2K Sounds"),
("2L"),
("2nd Life Film Production"),
("2nd Star Films"),
("2RS Studios"),
("3 Squares"),
("3 Vision Entertainment"),
("30 Degrees South"),
("300 Entertainment"),
("303 Recordings"),
("310 Films"),
("335 Records"),
("33rd Street Records"),
("343 Industries"),
("360 Awareness"),
("360 Sound And Vision"),
("3:16 Studios"),
("3CG Records"),
("3D"),
("3D Circus"),
("3D Garage"),
("3dMaxMedia"),
("3u Records"),
("4 West Records"),
("4 Winds"),
("40 Ounce Entertainment"),
("404 Music Group"),
("411 Video"),
("4235 Productions"),
("428 Entertainment"),
("429 Records"),
("456 Enterprises"),
("482 Music"),
("4AD Records"),
("4Digital Media"),
("4Tay"),
("4th & Goal Films"),
("4th Row Films"),
("4th Street Films"),
("5 Continents Editions"),
("5 Points Pictures"),
("5 Rue Christine"),
("5.1 Entertainment"),
("511 Films"),
("555 Productions"),
("567 Records"),
("5Points Publishing"),
("5th Epoch Press"),
("601 Records"),
("6minor Films"),
("7 Arts"),
("7d Media"),
("9 Story Enterprises"),
("903 Music"),
("905 Studios"),
("A & C Black"),
("A Bosa Take Two Production"),
("A K Peters"),
("A Million $ Worth Of Memories"),
("A Squared"),
("A Video Presence.Com"),
("A Williams Entertainment"),
("A Wrench In The Works"),
("A&B in Motion"),
("A&E Video"),
("A&M"),
("A-Films"),
("A-List Publishing"),
("A.D. Vision"),
("A.R.E. Press"),
("A.S.A.P."),
("A2Z Entertainment"),
("A2ZCDS"),
("A440 Entertainment"),
("A440 Records"),
("A55 Films"),
("AA Publishing"),
("AAHPERD"),
("AAO Music"),
("AAOS"),
("AAPG"),
("AAPT"),
("Aarhus Universitetsforlags"),
("Abacus Records"),
("Abbeville Press"),
("ABC Classics"),
("ABC Entertainment"),
("ABC Family"),
("ABC Monsters"),
("ABC News"),
("ABC Records UK"),
("Abilene Christian Univ. Press"),
("Abingdon Press"),
("Abkco Music & Records"),
("Ablaze Publishing Company"),
("Ablist Productions"),
("Abracadaver UK"),
("Abraham & Marcel Entertainment"),
("Abrams ComicArts"),
("Absolute UK"),
("Abstract Logix"),
("Abstract Records"),
("Abstract Sounds Books"),
("Absurda"),
("Abundant Harvest"),
("Abundo Press"),
("Abyssmal Entertainment"),
("AC Comics"),
("Acacia"),
("Acad. Performing Arts Prague"),
("Academic Internet Publishers"),
("Academic Press"),
("Academy Chicago Publishers"),
("Acadia Records"),
("Acanthus Publishing"),
("Accel Music"),
("Accent Cinema"),
("Accent On Music"),
("Accentus"),
("Access Instructional Media"),
("Accords Croises"),
("Ace Records"),
("ACER"),
("Acetate Records"),
("Acme DVD Works"),
("Acme Recordings"),
("Acony Records"),
("Acople Records"),
("Acordes Concert"),
("Acorn Media"),
("Acousence Records"),
("Acoustic Traditions"),
("Acoustica Folk Academy"),
("Acqua"),
("Acres U.S.A."),
("Actar D"),
("ActarBirkhauser"),
("Actes Sud"),
("Action Cat"),
("Action Film & Video"),
("Action Slate"),
("Activate"),
("Active Entertainment"),
("Acton Institute"),
("Acuarela Records"),
("AcuTab Publications"),
("Ad Hoc Records"),
("Ad Noiseam Records"),
("AD Productions"),
("Adam & Eve"),
("Adams Media"),
("Add One Creative"),
("Addison-Wesley"),
("Addison-Wesley Professional"),
("Adirondack Pictures"),
("Adlabs Film Limited"),
("Adness"),
("Adobe Press"),
("Adopt Films"),
("adoptvideo.com"),
("AdoraPet"),
("Adrenaline Music Group"),
("ADTR Records"),
("Adult Source Media"),
("ADV Manga"),
("Advance Publishing"),
("Adventure Crossing"),
("Adventure Eye"),
("Adventure Music"),
("Aeg Digital"),
("AEON"),
("Aero Space Records"),
("Aerobics Woman"),
("AEsir Holdings"),
("Aesthetic VideoSource"),
("AFA Entertainment"),
("AFAA Studio"),
("Afchron.com"),
("Affinity Lodge"),
("Affluent Recording"),
("Affluent Records"),
("AFM Records"),
("Afrasia Productions"),
("African Book Collective"),
("After Dark Films"),
("After Hours Cinema"),
("Aftermath Entertainment"),
("Agape Media"),
("Agents Entertainment"),
("Agnes Etherington Art Centre"),
("Agog Films Productions"),
("Agonia Records"),
("Aguilar"),
("aha! Chinese"),
("Ahi Nama Music"),
("Ahora Records"),
("Ahsahta Press"),
("Ai Weiwei Studio"),
("AIAA"),
("AIG Group"),
("AIMS Multimedia"),
("Ainm Music"),
("Air Bud Entertainment"),
("Airbrush Action"),
("Aircraft Films"),
("Airline Records"),
("Ais"),
("AIX Records"),
("AJW-Chi"),
("AK Press"),
("Akarma"),
("ALA"),
("Alaska Video Publishing"),
("Alba Records"),
("Albany Records"),
("Albert Whitman & Company"),
("Alchemy"),
("Alchemy Works"),
("Alden Films"),
("Alebrije Home Entertainment"),
("Aleho"),
("Aleph Records"),
("Alex Peterson Company"),
("Alex. Graham Bell Assn Deaf"),
("Alexander Institute"),
("Alexander Street Press"),
("Alfa Matrix"),
("Alfred A. Knopf"),
("Alfred Publishing"),
("Alia Vox"),
("Alianza Editorial"),
("Alibi"),
("Alica Way Entertainment"),
("Alice In Arms Productions"),
("Alice Knows What To Do"),
("Alive Mind"),
("Alkey Records"),
("All Aboard"),
("All Access"),
("All Channel Films"),
("All Day"),
("All Game Entertainment"),
("All In One Workouts"),
("All In Productions"),
("All Pro Sports Video"),
("All Saints Records"),
("All Stars"),
("All-In-One Workout Series"),
("Allan Ondash"),
("Allegro"),
("Allemandi"),
("Alliance Atlantis"),
("Alliance Entertainment"),
("Alliance Motion Pictures"),
("Allied Artists"),
("Allied Artists Entertainment"),
("Allied Horror"),
("Allied Vaughn"),
("Alligator Records"),
("Allumination FilmWorks"),
("Alluvial Filmworks"),
("Allyn & Bacon"),
("Alma Latina"),
("Alma Records"),
("Almost"),
("Aloha Honu"),
("Alpha 7 Ministries"),
("Alpha Books"),
("Alpha Centauri"),
("Alpha Omega"),
("Alpha Productions"),
("Alpha Video"),
("AltaMira Press"),
("Altamira Press"),
("Alte Media"),
("Altercation Records"),
("Alternative Comics"),
("Alternative Distr. Alliance"),
("Alternative Tentacles"),
("Altitude Digital"),
("Alucard UK"),
("Alula"),
("AM Productions"),
("AMA Verlag"),
("Amadeus Pictures"),
("Amadeus Press"),
("Amado"),
("Amalgam"),
("Amalgamated Records"),
("Amazing Facts"),
("Amazon Records UK"),
("Amazon Studios"),
("Amazons Product"),
("Ambassador International"),
("Amber Cafe Records"),
("Amber Lotus"),
("Ambiance Visuals"),
("Ambienta"),
("Ambrose Video"),
("Ambrosia Productions"),
("Ambush Reality"),
("Amen-Ta Productions"),
("Amer. Academy of Ophthalmology"),
("Amer. Academy of Pediatrics"),
("Amer. Phytopathological Soc."),
("Amer. School of Classical ..."),
("Amereon Ltd."),
("America's Test Kitchen"),
("American Alliance of Museums"),
("American Animation Studios"),
("American Antitrust Institute"),
("American Bar Association"),
("American Bible Society"),
("American Chemical Society"),
("American Cinema"),
("American College of Surgeons"),
("American Council on Exercise"),
("American Geophysical Union"),
("American Girl"),
("American Gramaphone"),
("American Heart Association"),
("American Herro Productions"),
("American Home Treasures"),
("American Hotel & Motel Assoc."),
("American Institute of Physics"),
("American Mathematical Society"),
("American Medical Association"),
("American Meteorological Soc."),
("American Music"),
("American Planning Association"),
("American Pop Classics"),
("American Production Services"),
("American Psychiatric Pub."),
("American Psychological Assoc."),
("American Public Health Assn."),
("American Quilter's Society"),
("American Recordings"),
("American Showplace Music"),
("American Soc. of Health-System"),
("American Software"),
("American Sports Legends"),
("American Technical Publishers"),
("American Tiger"),
("American Treasure"),
("American University in Cairo"),
("American Water Works Assoc."),
("Americas Group"),
("AmericaTheBeautiful.Com"),
("Ameson"),
("AMG Films"),
("AMG Publishers"),
("Amherst Media"),
("Amick Holzman Company"),
("Amiga"),
("Amigo Films"),
("Amimal Empire"),
("AMMP Records"),
("Amor Records"),
("Amovie Company"),
("Amphion Productions"),
("AMS"),
("AMSCO Music"),
("Amsco Music"),
("Amsterdam Univ. Press"),
("Amulet"),
("Amuse Soft"),
("AN Entertainment"),
("Anachron America"),
("Analekta"),
("Analytical Software"),
("Anamaria Records"),
("Ananda-Amrita Dance Creations"),
("Anaya Multimedia"),
("Anchor Bay"),
("Anchor Bay / Starz"),
("Anchor Bay Entertainment UK"),
("Anchor Media Group"),
("ANconnect"),
("Ancora Productions"),
("And More Bears"),
("AND1"),
("Andante"),
("Anderson Digital"),
("Anderson Merchandisers"),
("Andray Lee Shamanic"),
("Andre Deutsch"),
("Andrews McMeel Publishing"),
("Andrews University Press"),
("Angel Air"),
("Angel City Media"),
("Angel Eyes Productions"),
("Angel Records"),
("Angel War"),
("Angel Wishes"),
("Angela Kilmartin"),
("Angela Patchell Books"),
("Anglican House"),
("Angling Exploration Group"),
("Angora Films"),
("Angry Pen"),
("Angry Penguin"),
("Animal Atlas"),
("Animal Band"),
("Animal Planet"),
("Animal Wow"),
("Animals Healing"),
("Animation Entertainment"),
("Animatus Studio"),
("Anime 18"),
("Anime Hotshots"),
("Anime Works"),
("AnimEigo"),
("Animeigo"),
("AnimeWho"),
("Animusic"),
("Aniplex"),
("Annie's Attic"),
("Annual"),
("Anomalous Entertainment"),
("ANR Records"),
("ANS Records"),
("Anshan Publishing"),
("Answers In Genesis"),
("Anthem Pictures"),
("Anthem Records"),
("Anthracite Films"),
("Anti Records"),
("Anticipate Records"),
("Antidote International Films"),
("Antique Collectors Club"),
("Antiquities Research"),
("Antler King Records"),
("Antoine Music"),
("Anton Pictures"),
("Anup Research & Multimedia LP"),
("Anvil Media Limited"),
("Apace Music"),
("Apache Records"),
("Aperture"),
("Aphilliates"),
("Apodaca Records"),
("Apogee"),
("Apollo"),
("Apologetics Group"),
("Apologetics Press"),
("Applause Books"),
("Apple-Eye Productions"),
("Applebush"),
("Applesauce Press"),
("Appleseed Records"),
("Apprehensive Films"),
("Apress"),
("April Enterprises"),
("April First Productions"),
("APSIS Music"),
("Aqua Vista Productions"),
("Aquapio Films"),
("Aquarius Health Care Media"),
("Aquarius International"),
("Aquila Polonicapub"),
("Aquinnah Records"),
("Arab Film Distribution"),
("Arbor Records"),
("Arbors Records"),
("ARC"),
("ARC Entertainment"),
("ARC Music"),
("Arcanum Entertainment"),
("Arcata Arts"),
("Archaeopress"),
("Archangel Productions"),
("Archer Records"),
("Archie Ball"),
("Archives BBS"),
("Archstone Distribution"),
("Arclights Records"),
("Arctic Music"),
("Arctic Poppy"),
("Arcturus Publishing"),
("ARD Video"),
("Ardennes Productions"),
("Ardent Records"),
("Ardent Studios"),
("Ardenti Films"),
("Ardustry"),
("Arena Music"),
("Arete Communications"),
("Arhoolie"),
("Ariel Rivas Music"),
("Aries Music Entertainment"),
("Ariola"),
("Arista Records"),
("Arizona State Museum"),
("Ariztical Entertainment"),
("Ark 21"),
("Arkadia Records"),
("Arkano Books"),
("Arkivia Books"),
("Armada Entertainment"),
("Armenian Music Center"),
("Armoury Records"),
("Arnoldsche"),
("Arrested Youth Records"),
("ARRIS"),
("Arrow"),
("Arrow Records"),
("Arsen Productions"),
("ARSIS Audio"),
("Art Blume"),
("Art Greenhaw"),
("Art Institute of Chicago"),
("Art Mattan"),
("Art Of Groove"),
("Art Of Life Records"),
("Art of Screaming"),
("Art With Mrs. Smith"),
("Arte"),
("Arte Verum"),
("Artech House"),
("Artemis"),
("ArtEZ Press"),
("Artful Records"),
("Arthaus Musik"),
("ArtHouse Corporation"),
("Artic Records"),
("Artificial Eye"),
("Artisan"),
("Artist First"),
("Artist Garage Records"),
("Artist One-Stop"),
("artisteXclusive"),
("Artistic Video"),
("ArtistPro"),
("Artistry Music"),
("Artists Addiction Records"),
("Artists Den Records"),
("Artists House"),
("Artists of Life Music & Films"),
("ArtistsInResidence"),
("ArtMolds Productions"),
("ARTPIX"),
("ArtPower"),
("Arts Alliance America"),
("Arts Council"),
("Arts Music"),
("artsee fartsee"),
("ArtsmagicDVD"),
("Artsploitation"),
("Artvamp"),
("Arvinius Forlag"),
("As Is"),
("ASCD"),
("Ascension Digital"),
("Ascension Press"),
("Ascent Releasing"),
("Ashgate Publishing"),
("Ashley Mark Publishing"),
("Ashmont Records"),
("ASHRAE"),
("Asia Pulp Cinema"),
("Asia Vision"),
("AsiaDiva"),
("Asian Crush"),
("Asian Man Records"),
("Asian Media Rights"),
("Asiaview Entertainment"),
("AsIs"),
("AskTheInternetTherapist"),
("ASME"),
("ASOR"),
("Aspatore"),
("Aspecialthing"),
("Aspect Magazine"),
("Aspen Publishers"),
("Asphodel"),
("Aspiron Records"),
("ASPRS"),
("Aspyr Media"),
("ASQ Press"),
("ASS Studios"),
("Assateague Explorer"),
("Assn. for Prof. in infection"),
("Assn. Supervision & Curriculum"),
("Assouline"),
("ASTD"),
("Asthmatic Kitty"),
("Astralwerks"),
("Asylum"),
("Asylum Home Entertainment"),
("Asylum Records"),
("At Peace Media"),
("ATA Productions"),
("ATA-Memphis"),
("Atavistic"),
("ATC Records"),
("Athelstan Productions"),
("Athena"),
("Athletic Model Guild"),
("Athletic Motion"),
("athleticBaby"),
("Atlanta International"),
("Atlantic Cruising Club"),
("Atlantic Publishing Company"),
("Atlantic Records"),
("Atlas Worldwide"),
("ATMA Classique"),
("Atmospherex"),
("Atmospheriques"),
("ATO Records"),
("Atoll Imports"),
("Atopia"),
("Atracao Fonografica"),
("Atria Books"),
("Attacca"),
("Attack Attack Records"),
("Attack Entertainment"),
("Attack Media"),
("Attack Records And Filmworks"),
("Attic Tan Records"),
("Auckland University Press"),
("Audio Fidelity"),
("Audio Research"),
("Audio Visual Fidelity"),
("Audio-Forum"),
("Audiomax"),
("Audiovisual"),
("Audium Entertainment"),
("Auerbach Publications"),
("Augment Image Studios"),
("Augsburg Fortress Press"),
("AUM Fidelity"),
("Aura Records"),
("Aural Music"),
("Aurelian Arts"),
("AURO 3D"),
("Aurora Picture Show"),
("Aurora Records"),
("Auryn"),
("Australian Fishing Network"),
("Autentico"),
("Auteur Productions"),
("Authentic UK"),
("Authentic USA"),
("Authorhouse"),
("Autism Asperger Publishing"),
("Autism Movement Therapy"),
("Auto-B-Good"),
("AutoDesk Press"),
("Autonomedia"),
("Autonomy Pictures"),
("Autostream FIlms"),
("AutoTrain.net"),
("AV Box"),
("AV Cafe"),
("AVA"),
("Ava Ava Ava"),
("Avabella"),
("Avalanche"),
("Avalon Records"),
("Avalon Travel Publications"),
("Avanti"),
("Avatar Press"),
("Avatar Records"),
("Avenet Images"),
("Avenue One"),
("Average Joe's Entertainment"),
("Avex"),
("AVH San Luis SRL"),
("Aviation Cinemas Releasing"),
("Aviation Supplies & Academics"),
("Avid"),
("Avid Ideas"),
("Avie Records"),
("Avista Music Group"),
("Avo Sessions"),
("Awake Productions"),
("Award Films International"),
("Awareness"),
("Awe Struck E-Books"),
("Awesome and Modest"),
("Awesome Documentaries"),
("AWOL Records"),
("Axios Press"),
("Axis"),
("AYVA Music"),
("AZ Films LLC"),
("Azimuth Editions"),
("Aztext Press"),
("Azuli Choice House"),
("Azur Corporation"),
("Azure"),
("B&H Publishing"),
("B-Core Records"),
("B-Dub"),
("B-Gram Records"),
("B.A.S.I.X. Record"),
("B/Fore Productions"),
("B:Mo Holy Productions"),
("Babe"),
("Babination Productions"),
("Baby Abuelita Productions"),
("Baby BumbleBee"),
("Baby Goes Pro"),
("Baby Hands Productions"),
("Baby Inklings"),
("Baby Prodigy"),
("Baby Signs"),
("Baby Songbird Company"),
("Baby Tata"),
("BabyFirstTV"),
("Babygrande Records"),
("BabyWorks Films"),
("Back 40 Productions"),
("Back Door Productions"),
("Back In The Bronx"),
("Back On Black"),
("Back Porch"),
("Backbeat Books"),
("Backcountry"),
("Backdoor Records"),
("Bad Boy Records"),
("Bad Diet"),
("Bad Dog Records"),
("Bad Seed Ltd."),
("Bagdassarian Productions"),
("Bain Street Productions"),
("Baker & Taylor"),
("Baker & Taylor Entertainment"),
("Baker Publishing Group"),
("Baking Sota Films"),
("Balance Arts Partner"),
("Balance Studios"),
("Balboa"),
("Bald Eagle Media"),
("Balfour Books"),
("Ballantine"),
("BallBoy Productions"),
("Ballet Body"),
("Ballet Ovations"),
("Balocity"),
("Bamba"),
("Banco Popular"),
("Bandai Entertainment"),
("Bandai Visual"),
("Bandwagon Filmworks"),
("Bang On!"),
("Banjo Teacher"),
("BanjoDad Records"),
("Bantam Dell"),
("Bantam Films"),
("Bar None Records"),
("Barak Records"),
("BarBarrick Music"),
("Barbes Records"),
("Barcelona Publishers"),
("Barclay"),
("Bardo"),
("Bark Films"),
("Barrel Entertainment"),
("Barron's Educational"),
("Barros Records"),
("Barsuk Records"),
("Basement Records"),
("Basin Street Records"),
("Bassfilms"),
("Basss Recordings"),
("Basta Records"),
("Bat Conservation International"),
("Battleaxe Records"),
("Bauer Martinez Studios"),
("Baundi"),
("Baxter & Friends"),
("Bayside Distribution"),
("BayView Films"),
("Bayview Films"),
("Bazooka"),
("BBC Active"),
("BBC Home Video"),
("BBC Opus Arte"),
("BBCLife"),
("BBF Media"),
("BBP Records"),
("BCD Music Group"),
("BCH Fulfillment & Distribution"),
("BCI Eclipse / Brentwood"),
("BCI Media"),
("BCI Music"),
("BCI Video HD"),
("Beach Lloyd Publishers"),
("Beacon Hill Press"),
("Bealeave Films"),
("Bear Family"),
("Beat Dawg Film"),
("Beat Of India"),
("Beat The Odds"),
("Beauty Media"),
("BEC Recordings"),
("Because"),
("Beckman Visual Productions"),
("Bedford / St. Martin's"),
("Bedrock Video Productions"),
("Bedroom Community"),
("Beechwood"),
("Beer City Records"),
("Beethoven Found"),
("Beggars Banquet"),
("Begui Records"),
("Behave Yourself!"),
("Behavioral Tech"),
("Behind Enemy Lines"),
("Being"),
("Bel Canto Society"),
("BelAir Classiques"),
("Belgium Rhythm & Blues"),
("Believe Music"),
("Believe!"),
("Bell Canyon"),
("Bell Video Productions"),
("Bell, Book & Camera"),
("Bella Musica"),
("Bellamy Brothers"),
("Belle & Blade"),
("Belle Plain Studios"),
("BellyJelly Music"),
("Belmondo"),
("Belvedere"),
("Belville Concrete Productions"),
("Ben Milot"),
("Ben Salz Production"),
("Bench Movies"),
("Benetone Hillin Entertainment"),
("Benevolent Blues"),
("Benjamin/Cummings"),
("Benjimovies.Com"),
("Bennett & Hastings"),
("Bennett Marine Video"),
("Bennett Media Worldwide"),
("Bennett-Watt Media"),
("Bent Pyramid Production"),
("Bent Sprocket Productions"),
("Benteli Verlags AG"),
("Benten Films"),
("Benz Street"),
("Berean Call"),
("Berklee Press"),
("Berkley Publishing"),
("Berlin Classics"),
("Berliner Philharmoniker"),
("Berlitz"),
("Bern One Entertainment"),
("Bernan"),
("Berserker Rage"),
("Bert Smets Productions"),
("BEST Life Media"),
("Best Of The Block"),
("Beta-Lactam Ring Records"),
("Bethany House"),
("Better Birdwatching"),
("Better Business Bureau"),
("Better Life Media"),
("Better Living"),
("Better Looking Records"),
("BetterSexThroughYoga.com"),
("BetterSexThroughYogaForGayMen"),
("Betterway Books"),
("Betty Dodson"),
("Beverley Woods Productions"),
("Beverly Hills Video"),
("Beverly Wilshire"),
("Beyond Records"),
("Beyond Words Publishing"),
("BFD"),
("BFI"),
("BFS Entertainment"),
("BG Records"),
("BHM Productions"),
("Bieler Bros. Records"),
("Bifocal Media"),
("Bifrost Distribution"),
("Big Air Studios"),
("Big Apple"),
("Big Bang Productions"),
("Big Bite Entertainment"),
("Big Biting Pig Productions"),
("Big Brother"),
("Big Cat Records"),
("Big City Swing"),
("Big Comfy Couch"),
("Big Country Entertainment"),
("Big Dada"),
("Big Eye Music"),
("Big Fish Entertainment"),
("Big Fuddez Records"),
("Big Game"),
("Big House Kids"),
("Big Idea"),
("Big Kids Productions"),
("Big Legal Mess Records"),
("Big Machine Records"),
("Big Noise Films"),
("Big On Kids Entertainment"),
("Big Picture Media"),
("Big Records"),
("Big Ring Films"),
("Big Round Records"),
("Big Screen Entertainment"),
("Big Ten"),
("Big Tyme Records"),
("Big V Entertainment"),
("Big Vin Records"),
("Big Vision"),
("Big World Pictures"),
("Big3 Records"),
("BigDikFactory Productions"),
("Bigger Picture Group"),
("BigStar.TV"),
("Bilingual Fun"),
("Bilingual Press"),
("Bill Zebub"),
("Billiards Press"),
("Billingsgate Media"),
("Billy Bob's Texas"),
("Billy Jack Enterprises"),
("Billy Molls Adventures"),
("Binary Research Institute"),
("Binghi Mon"),
("Bio-Tide Films"),
("Biographical Research"),
("Biography Software"),
("Birch Tree Entertainment"),
("Bird Rock Entertainment"),
("Bird Street Books"),
("Birdman Records"),
("Birkhauser"),
("BIS"),
("Biscoito Fino"),
("Bishop Museum Press"),
("Bismeaux Records"),
("BisonHead"),
("Bite Size Video"),
("Bittersweet"),
("Bitzcore Records"),
("Bizarre Planet"),
("BKE Films"),
("BKN"),
("Black & Tan"),
("Black & White"),
("Black Angels Inc."),
("Black Armor"),
("Black Bear Records"),
("Black Belt Communications"),
("Black Classics Press"),
("Black Cougar"),
("Black Dog & Leventhal"),
("Black Dog Publishing"),
("Black Fire Music"),
("Black Hen Music"),
("Black Hole"),
("Black Horizon"),
("Black Ivory"),
("Black Lodge"),
("Black Lotus"),
("Black Mark Records"),
("Black Market Records"),
("Black Meadow Productions"),
("Black Mine"),
("Black Pearl Records"),