-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsom_covers.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 318 should actually have 9 columns, instead of 8 in line 317.
990 lines (990 loc) · 58.3 KB
/
tsom_covers.csv
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
Artist,Title,ArtistGenre,CoverType,Year,spotify,bandcamp,soundcloud,youtube
Dreadful Shadows,1959,Unspecified,Metal,2021,1,0,0,1
Mac,1959,Unspecified,Straight,2020,0,0,0,1
Mad Shad,1959,Unspecified,Acoustic,2011,0,0,0,1
madsmith,1959,Unspecified,Alternative,2016,0,0,0,1
Maryann Giselle Alienfairy,1959,Unspecified,Straight,2020,0,0,0,1
Rhee Diculous,1959,Unspecified,Straight,2018,0,0,0,1
Richie Santoro,1959,Unspecified,Straight,2019,0,0,0,1
Tony Santucci,1959,Unspecified,Straight,2017,0,0,0,1
Wojtek Tokarz,1959,Unspecified,Alternative,2017,0,0,0,1
Botchandango,1959,Goth,Straight,2012,0,0,1,0
Marek Krukowski,1959,Unspecified,Alternative,2014,0,0,1,0
metallordgeneral,1959,Unspecified,Straight,2020,0,0,1,0
Mj Moonbow Aka Tinman,1959,Ambient,Electronic,2018,0,0,1,0
Nmacog,1959,Goth,Straight,2012,0,0,1,0
The Court Of Sybaris,A Rock And A Hard Place,Unspecified,Straight,2014,1,1,1,1
Cursed Moon,A Rock And A Hard Place,Metal,Straight,2017,0,0,0,1
Temple of Mercy,A Rock And A Hard Place,Unspecified,Straight,2020,0,0,0,1
The Sisters of Murphy,A Rock And A Hard Place,Goth,Straight,2015,0,0,0,1
Some Happy Medium,A Rock And A Hard Place,Goth,Straight,2020,0,1,0,0
Lymon Willis,Adrenochrome,Unspecified,Acoustic,2016,0,0,0,1
Brad Salyn,Adrenochrome,Unspecified,Straight,2019,0,0,1,0
Julius Seizure,Adrenochrome,Post Punk,Straight,2021,0,0,1,0
Nmacog,Adrenochrome,Goth,Straight,2016,0,0,1,0
Razielpanic,Adrenochrome,Goth,Straight,2013,0,0,1,0
Baby Shitters,Adrenochrome,Punk,Straight,2020,0,1,0,0
Ego Likeness,Afterhours,Unspecified,Electronic,2014,0,0,0,1
Eleven Shadows,Afterhours,Darkwave,Straight,2013,0,0,0,1
Shadowplay,Afterhours,Unspecified,Straight,2010,0,0,0,1
Supersuckers,Afterhours,Unspecified,Straight,2014,0,0,0,1
The Hall Of Souls,Afterhours,Goth,Metal,2014,0,0,0,1
Puppetxeno,Afterhours,Alternative,Acoustic,2020,0,0,1,0
Barafoetida,Alice,Goth,Electronic,2019,0,1,1,1
Obscura Nova,Alice,Electronic,Electronic,2015,0,1,1,1
Johnnie Ha Ha,Alice,Unspecified,Straight,2020,0,0,1,1
Pitch Fork,Alice,Unspecified,Straight,2016,0,0,1,1
Sonikelectrik,Alice,Rock,Straight,2022,0,0,1,1
T.N.V ( The Negative Visions ),Alice,Unspecified,Straight,2015,0,0,1,1
Ultrawest,Alice,Unspecified,Straight,2016,0,0,1,1
Urban Citizen,Alice,Electronic,Electronic,2018,0,0,1,1
Daeonia,Alice,Goth,Straight,2013,1,1,0,1
Aïboforcen,Alice,EBM,Electronic,1995,0,1,0,1
The Prophetess,Alice,Unspecified,Straight,2007,1,0,0,1
The Shroud,Alice,Unspecified,Acoustic,2007,1,0,0,1
80 Trolls,Alice,Unspecified,Straight,2016,0,0,0,1
Astraea Invade,Alice,Goth,Straight,2013,0,0,0,1
Axxon,Alice,Industrial,Industrial,2008,0,0,0,1
Cairns Chaos,Alice,Unspecified,Acoustic,2021,0,0,0,1
Cellulloide,Alice,Electronic,Electronic,2013,0,0,0,1
Clan Of Xymox,Alice,Unspecified,Straight,2012,0,0,0,1
Culpa,Alice,Unspecified,Metal,2018,0,0,0,1
Das Holz,Alice,Unspecified,Metal,2009,0,0,0,1
Dawn,Alice,Unspecified,Straight,2006,0,0,0,1
Dead Sea Surfers,Alice,Unspecified,Straight,2009,0,0,0,1
Deviate Ladies,Alice,Unspecified,Straight,1993,0,0,0,1
Double Deck Cwb,Alice,Unspecified,Straight,2019,0,0,0,1
Ghost Weller,Alice,Unspecified,Straight,2010,0,0,0,1
Giants Causeway,Alice,Unspecified,Straight,1998,0,0,0,1
Gravitational Pull,Alice,Unspecified,Straight,2021,0,0,0,1
Grey Gallows,Alice,Darkwave,Straight,2018,0,0,0,1
I.R.L.,Alice,Unspecified,Straight,2017,0,0,0,1
In Isolation,Alice,Unspecified,Straight,2018,0,0,0,1
Inovercy,Alice,Unspecified,Straight,2018,0,0,0,1
Interior Deus,Alice,Goth,Straight,2014,0,0,0,1
Janela Circular,Alice,Unspecified,Straight,2019,0,0,0,1
Kargalar,Alice,Unspecified,Straight,2012,0,0,0,1
KillZone,Alice,Unspecified,Straight,2017,0,0,0,1
Krematoria,Alice,Metal,Metal,2010,0,0,0,1
Luc chablaix,Alice,Unspecified,Acoustic,2021,0,0,0,1
Luna Sombría,Alice,Unspecified,Straight,2020,0,0,0,1
Martin Seffi,Alice,Unspecified,Acoustic,2017,0,0,0,1
Martyr Whore,Alice,Unspecified,Alternative,2022,0,0,0,1
Moving Units,Alice,Post Punk,Straight,2021,0,0,0,1
New Zero God,Alice,Unspecified,Straight,2017,0,0,0,1
patriksvlog,Alice,Unspecified,Electronic,2019,0,0,0,1
Police des Moeurs,Alice,Unspecified,Electronic,2019,0,0,0,1
PRIMITIVE KNOT,Alice,Unspecified,Straight,2020,0,0,0,1
Project Mayhem,Alice,Unspecified,Straight,2011,0,0,0,1
pureCure,Alice,Unspecified,Straight,2019,0,0,0,1
Real Under,Alice,Unspecified,Straight,2012,0,0,0,1
Roger Ambroos,Alice,Acoustic,Acoustic,2021,0,0,0,1
Sacred Hearts Music,Alice,Unspecified,Straight,2020,0,0,0,1
Screen Wipers,Alice,Unspecified,Straight,2001,0,0,0,1
Seelenblind,Alice,Unspecified,Straight,2007,0,0,0,1
Shadows of The Night,Alice,Unspecified,Straight,2007,0,0,0,1
Street Pharmacist,Alice,Electronic,Electronic,2022,0,0,0,1
Superchunk,Alice,Unspecified,Straight,2020,0,0,0,1
TENEBRAS SEX,Alice,Unspecified,Straight,2014,0,0,0,1
The Illusion Fades,Alice,Unspecified,Straight,2013,0,0,0,1
The Limit Club,Alice,Psychobilly,Straight,2008,0,0,0,1
The Marching Men,Alice,Goth,Straight,2012,0,0,0,1
The Mistress of Jersey,Alice,Goth,Straight,2021,0,0,0,1
The Poisoned Hearts,Alice,Unspecified,Straight,2017,0,0,0,1
The Ritz,Alice,Unspecified,Straight,2014,0,0,0,1
The Spider Jam,Alice,Unspecified,Alternative,2013,0,0,0,1
The Visionary Heads,Alice,Unspecified,Straight,2013,0,0,0,1
Thiago Paulice,Alice,Unspecified,Straight,2016,0,0,0,1
Tom Smith,Alice,Unspecified,Electronic,2015,0,0,0,1
ToneCandle,Alice,Unspecified,Straight,2008,0,0,0,1
WeirdWolves,Alice,Acoustic,Acoustic,2020,0,0,0,1
El Pedro Vidrio,Alice,Electronic,Electronic,2014,0,1,1,0
Ghosthole,Alice,Goth,Electronic,2015,0,1,1,0
Acid Flowers,Alice,Unspecified,Straight,2021,0,0,1,0
Artmosfear,Alice,Unspecified,Straight,2018,0,0,1,0
Atramentous,Alice,Alternative,Straight,2021,0,0,1,0
Björn,Alice,Rock,Straight,2019,0,0,1,0
Blackstone Sophomore,Alice,Goth,Straight,2015,0,0,1,0
Blumenhofen,Alice,Goth,Straight,2021,0,0,1,0
Botchandango,Alice,Goth,Straight,2012,0,0,1,0
Christian Jungblut,Alice,Goth,Straight,2019,0,0,1,0
De Bosrandsessies,Alice,Unspecified,Straight,2017,0,0,1,0
Doktor Toast,Alice,Unspecified,Electronic,2015,0,0,1,0
Hdx,Alice,Synth,Electronic,2013,0,0,1,0
Just J,Alice,Alternative,Straight,2021,0,0,1,0
Leandro Chacon,Alice,Unspecified,Electronic,2015,0,0,1,0
Neinmensch,Alice,Industrial,Industrial,2015,0,0,1,0
Nickynutz,Alice,Darkwave,Electronic,2022,0,0,1,0
Nmacog,Alice,Goth,Straight,2012,0,0,1,0
Paresis,Alice,Industrial,Electronic,2011,0,0,1,0
Peggy Yggep,Alice,Alternative,Alternative,2018,0,0,1,0
PuppetXeno,Alice,Alternative,Metal,2021,0,0,1,0
Simon Dreams In Violet,Alice,Rock,Straight,2020,0,0,1,0
Still Forever,Alice,Unspecified,Electronic,2019,0,0,1,0
The Way Of All Flesh,Alice,Goth,Straight,2013,0,0,1,0
UtterSpace,Alice,Synth,Electronic,2018,0,0,1,0
Croix Noire,Alice,Post Punk,Straight,2018,0,1,0,0
You Will Have Tribulation,Alice,Electronic,Electronic,2022,0,1,0,0
Liturgy Of Decay,Amphetamine Logic,Goth,Metal,2017,0,1,1,1
SKurL,Amphetamine Logic,Metal,Metal,2020,0,0,1,1
Crudeness,Amphetamine Logic,Unspecified,Straight,2000,1,0,0,1
ASP,Amphetamine Logic,Unspecified,Electronic,2010,0,0,0,1
Delphine Coma,Amphetamine Logic,Unspecified,Straight,2021,0,0,0,1
Mosquito,Amphetamine Logic,Unspecified,Straight,2018,0,0,0,1
The Mistress of Jersey,Amphetamine Logic,Unspecified,Straight,2021,0,0,0,1
Michael Vakili,Amphetamine Logic,Metal,Metal,2021,0,0,1,0
Novelty,Amphetamine Logic,Synth,Electronic,2019,0,0,1,0
Youth Against Christ,Amphetamine Logic,Metal,Darkwave,2017,0,1,0,0
Nmacog,Anaconda,Goth,Straight,2012,0,0,1,1
The Black Riders Cult,Anaconda,Goth,Metal,2016,0,0,1,1
This Vale Of Tears,Anaconda,Unspecified,Straight,2000,1,0,0,1
Random Parade,Anaconda,Unspecified,Alternative,2019,0,0,0,1
Botchandango,Anaconda,Goth,Straight,2012,0,0,1,0
Tobias Forsner/leftydrake,Arms,Unspecified,Straight,2012,0,0,1,1
Brad Salyn,Arms,Unspecified,Straight,2019,0,0,1,0
OP-3R470r,Black Planet,Electronic,Electronic,2022,0,1,0,1
Automatic Head Detonator,Black Planet,Unspecified,Industrial,2007,1,0,0,1
Arcamen,Black Planet,Unspecified,Straight,2019,0,0,0,1
David E. Williams,Black Planet,Unspecified,Straight,2015,0,0,0,1
EngeldesTodes,Black Planet,Acoustic,Acoustic,2015,0,0,0,1
European Ghost,Black Planet,Unspecified,Straight,2021,0,0,0,1
Eye of judgement,Black Planet,Unspecified,Metal,2011,0,0,0,1
Genocidio,Black Planet,Unspecified,Metal,1996,0,0,0,1
Philippe Ceuppens,Black Planet,EBM,Electronic,2016,0,0,0,1
Reptile House,Black Planet,Unspecified,Straight,2019,0,0,0,1
Roger Fingle,Black Planet,Unspecified,Straight,2021,0,0,0,1
Schwarz Weiß,Black Planet,Metal,Metal,2015,0,0,0,1
The Temple Of Mercy,Black Planet,Goth,Straight,2019,0,0,0,1
Trwoga,Black Planet,Unspecified,Metal,2019,0,0,0,1
Vladdymoose,Black Planet,Unspecified,Electronic,2016,0,0,0,1
Warren Suicide,Black Planet,Unspecified,Alternative,2011,0,0,0,1
WriteMeetRazor,Black Planet,Unspecified,Metal,2019,0,0,0,1
Merry's Funeral,Black Planet,Post Punk,Straight,2018,0,1,1,0
Ignevs Templvm,Black Planet,Rock,Straight,2017,0,0,1,0
Killtocure,Black Planet,Electronic,Electronic,2021,0,0,1,0
Python Blue,Black Planet,Synth,Electronic,2018,0,0,1,0
Ragayna,Black Planet,Metal,Metal,2020,0,0,1,0
Black Light District,Black Planet,Goth,Straight,2020,0,1,0,0
Contempt Media Collective,Black Planet,Grindcore,Grindcore,2018,0,1,0,0
Tobias Forsner/leftydrake,Black Sail,Unspecified,Straight,2021,0,0,1,1
Mr.Psychosound,Blood Money,Electronic,Electronic,2016,0,0,1,0
Nmacog,Blood Money,Goth,Straight,2014,0,0,1,0
The Last Dance,Body And Soul,Post-punk,Straight,2007,1,0,0,1
8bit Goth,Body And Soul,Electronic,Electronic,2021,0,0,0,1
Body And Soul,Body And Soul,Unspecified,Straight,2012,0,0,0,1
Crash and burn,Body And Soul,Unspecified,Straight,2019,0,0,0,1
Funhouse,Body And Soul,Unspecified,Straight,2019,0,0,0,1
La Momie,Body And Soul,Unspecified,Straight,2021,0,0,0,1
Lucifer In Heaven,Body And Soul,Unspecified,Straight,2021,0,0,0,1
Rin Whitestag,Body And Soul,Unspecified,Straight,2015,0,0,0,1
The Transparent Nudes,Body And Soul,Alternative,Straight,2021,0,0,0,1
Agent Double,Body And Soul,Unspecified,Straight,2018,0,1,1,0
Reichsfeind,Body And Soul,Unspecified,Electronic,2014,0,0,1,0
Chris Shape,Body Electric,Electronic,Electronic,2021,0,0,1,1
Canis Lupus,Body Electric,Unspecified,Straight,2012,0,0,0,1
Dark Digital,Body Electric,Electronic,Electronic,2011,0,0,0,1
Faunamok,Body Electric,Unspecified,Straight,2012,0,0,0,1
Girls Under Glass,Body Electric,Unspecified,Straight,2011,0,0,0,1
Herr Noatún,Body Electric,Unspecified,Metal,2018,0,0,0,1
Jan Doyle Band,Body Electric,Unspecified,Electronic,2021,0,0,0,1
joebar5th,Body Electric,Unspecified,Straight,2008,0,0,0,1
Lox Amarelo,Body Electric,Unspecified,Straight,2018,0,0,0,1
Moving Units,Body Electric,Unspecified,Straight,2021,0,0,0,1
Subterfuge,Body Electric,Goth,Straight,2010,0,0,0,1
talvidroidi,Body Electric,Unspecified,Electronic,2018,0,0,0,1
The Marching Men,Body Electric,Goth,Straight,2012,0,0,0,1
Then Comes Silence,Body Electric,Unspecified,Straight,2021,0,0,0,1
tooSpeed,Body Electric,Unspecified,Straight,2013,0,0,0,1
El Pedro Vidrio,Body Electric,Electronic,Electronic,2014,0,1,1,0
Voluntas,Body Electric,Post Punk,Straight,2015,0,1,1,0
Brad Salyn,Body Electric,Unspecified,Straight,2019,0,0,1,0
Johnnie Ha Ha,Body Electric,Unspecified,Straight,2021,0,0,1,0
Noatún,Body Electric,Techno,Darkwave,2018,0,0,1,0
DennyZ,Body Electric,Dark,Darkwave,2003,0,1,0,0
Brest,Burn,Unspecified,Straight,2013,0,0,0,1
Deathtrippers,Burn,Unspecified,Straight,2021,0,0,0,1
Falcon Doom,Burn,Unspecified,Straight,2016,0,0,0,1
Lucifer In Heaven,Burn,Unspecified,Straight,2021,0,0,0,1
The Vulture Man,Burn,Electronic,Electronic,2014,0,0,0,1
El Pedro Vidrio,Burn,Electronic,Electronic,2014,0,1,1,0
Blumenhofen,Burn,Goth,Straight,2021,0,0,1,0
David Algov,Burn,Goth,Straight,2019,0,0,1,0
Draw Japan,Burn,Goth,Straight,2013,0,0,1,0
Marciodet Navarro,Burn,Unspecified,Straight,2013,0,0,1,0
Nmacog,Burn,Goth,Straight,2021,0,0,1,0
Templvm,Burn,Electronic,Electronic,2020,0,0,1,0
Faith And The Muse,Bury Me Deep,Darkwave,Straight,2007,1,0,0,1
Begotten,Bury Me Deep,Unspecified,Straight,2013,0,0,0,1
Faith and disease,Bury Me Deep,Unspecified,Straight,2008,0,0,0,1
The Garden Of Delight,Bury Me Deep,Unspecified,Alternative,2010,0,0,0,1
Gabriel Husek and Tobias Forsner,But Genevieve,Unspecified,Straight,2020,0,0,0,1
Raudive,Colours,Unspecified,Straight,2022,0,0,0,1
Saibot216,Colours,Unspecified,Electronic,2015,0,0,1,0
Devoured By Flowers,Colours,Darkwave,Straight,2020,0,1,0,0
Brad Salyn,Come Together,Unspecified,Straight,2019,0,0,1,0
Markus von Eldritch,Crash And Burn,Unspecified,Straight,2019,0,0,0,1
Brad Salyn,Crash And Burn,Unspecified,Straight,2019,0,0,1,0
Landing Kraft,Detonation Boulevard,Unspecified,Straight,2022,0,0,0,1
madsmith,Detonation Boulevard,Unspecified,Straight,2016,0,0,0,1
Marek Krukowski,Detonation Boulevard,Unspecified,Metal,2014,0,0,1,0
The Lust,Doctor Jeep,Metal,Metal,2019,0,1,1,1
Arcanics,Doctor Jeep,Alternative,Straight,2015,0,0,1,1
Monstergod,Dominion,Electronic,Electronic,2008,0,1,0,1
Arcamen,Dominion,Unspecified,Straight,2019,0,0,0,1
Babylon Will Fall,Dominion,Unspecified,Straight,2020,0,0,0,1
Bilic Mob,Dominion,Unspecified,Straight,2021,0,0,0,1
dsi76,Dominion,Unspecified,Straight,2021,0,0,0,1
Graeme Young,Dominion,Acoustic,Acoustic,2017,0,0,0,1
jasonhansmc1,Dominion,Acoustic,Acoustic,2012,0,0,0,1
Livewire625,Dominion,Unspecified,Straight,2015,0,0,0,1
Machia & Velli,Dominion,Unspecified,Electronic,2018,0,0,0,1
madsmith,Dominion,Unspecified,Straight,2020,0,0,0,1
Os Desconhecidos,Dominion,Unspecified,Straight,2016,0,0,0,1
Synthsound1,Dominion,Electronic,Electronic,2011,0,0,0,1
The Insomnia Night,Dominion,Acoustic,Acoustic,2020,0,0,0,1
Zia Zeitgeist,Dominion,Unspecified,Alternative,2018,0,0,0,1
Alternate View,Dominion,Unspecified,Straight,2021,0,0,1,0
Black Horizon,Dominion,Rock,Metal,2020,0,0,1,0
Brad Salyn,Dominion,Unspecified,Straight,2019,0,0,1,0
Callivan Furts,Dominion,Hip Hop,Hip Hop,2020,0,0,1,0
Gom Pilote,Dominion,Alternative,Straight,2018,0,0,1,0
Information Society,Dominion,Synth,Electronic,2016,0,0,1,0
Jack,Dominion,Unspecified,Straight,2017,0,0,1,0
Junior Kain,Dominion,Unspecified,Electronic,2019,0,0,1,0
Mighty,Dominion,Electronic,Electronic,2018,0,0,1,0
Nemius,Dominion,Alternative,Straight,2017,0,0,1,0
Python Blue,Dominion,Darkwave,Straight,2021,0,0,1,0
RADDAH,Dominion,Electronic,Electronic,2021,0,0,1,0
This Second Skin,Dominion,Unspecified,Straight,2016,0,0,1,0
Chiptune Planet,Driven Like The Snow,Electronic,Electronic,2015,0,0,0,1
confusedstill,Driven Like The Snow,Unspecified,Straight,2010,0,0,0,1
Cryocon,Driven Like The Snow,Electronic,Electronic,2016,0,0,0,1
cwb,Driven Like The Snow,Unspecified,Straight,2017,0,0,0,1
CZarny Piotr,Driven Like The Snow,Unspecified,Straight,2010,0,0,0,1
Floodlands,Driven Like The Snow,Goth,Straight,2017,0,0,0,1
Magdariel Sirannon,Driven Like The Snow,Unspecified,Straight,2019,0,0,0,1
STRANGER DREAMS & MANUFACTURA,Driven Like The Snow,Unspecified,Straight,2021,0,0,0,1
Will Meyer,Driven Like The Snow,Acoustic,Acoustic,2017,0,0,0,1
Botchandango,Driven Like The Snow,Goth,Straight,2012,0,0,1,0
Meatgrinder,Driven Like The Snow,Rock,Metal,2022,0,0,1,0
Mystery Girl,Driven Like The Snow,Darkwave,Darkwave,2018,0,0,1,0
Nmacog,Driven Like The Snow,Goth,Straight,2012,0,0,1,0
Open Wound,Driven Like The Snow,Electronic,Electronic,2020,0,0,1,0
Paradise Disowned,Driven Like The Snow,Unspecified,Electronic,2021,0,0,1,0
VegaClaw,Driven Like The Snow,Unspecified,Electronic,2021,0,0,1,0
Rat Diatribe,Driven Like The Snow,Ambient,Electronic,2019,0,1,0,0
Amorphous,"Finland Red, Egypt White",Electronic,Straight,2021,0,0,1,1
Dr8Ball,"Finland Red, Egypt White",Electronic,Hip Hop,2014,0,0,1,0
Ancient Drive,First And Last And Always,Metal,Metal,2000,0,0,1,1
Never Mind,First And Last And Always,Metal,Straight,1997,0,0,1,1
Kitsch a la Cova,First And Last And Always,Alternative,Straight,2015,0,1,0,1
Still Patient?,First And Last And Always,Goth,Straight,2000,1,0,0,1
The Prophetess,First And Last And Always,Unspecified,Straight,2014,1,0,0,1
8bit Goth,First And Last And Always,Electronic,Electronic,2020,0,0,0,1
Brandon Blair Music,First And Last And Always,Folk,Acoustic,2019,0,0,0,1
Cesar Broothaerts,First And Last And Always,Unspecified,Electronic,2010,0,0,0,1
Darkside Cowboys,First And Last And Always,Unspecified,Metal,2014,0,0,0,1
Dawn Of Oblivion,First And Last And Always,Goth,Straight,2014,0,0,0,1
Dusk,First And Last And Always,Unspecified,Straight,2017,0,0,0,1
Ending the Vicious Cycle,First And Last And Always,Unspecified,Straight,2012,0,0,0,1
Feotus,First And Last And Always,Unspecified,Alternative,2011,0,0,0,1
Gas Attack,First And Last And Always,Unspecified,Metal,2010,0,0,0,1
Lilly E. Gray,First And Last And Always,Unspecified,Alternative,2021,0,0,0,1
Oleg Menshikov,First And Last And Always,Unspecified,Straight,2015,0,0,0,1
The Marching Men,First And Last And Always,Goth,Straight,2011,0,0,0,1
The Transparent Nudes,First And Last And Always,Unspecified,Straight,2021,0,0,0,1
D1433,First And Last And Always,Goth,Metal,2012,0,0,1,0
Kamora_Prod,First And Last And Always,Synth,Electronic,2014,0,0,1,0
Mac Mccaughan,First And Last And Always,Unspecified,Acoustic,2015,0,0,1,0
PROJECT ZERO,First And Last And Always,Darkwave,Darkwave,2016,0,0,1,0
Robert Godfrey,First And Last And Always,Goth,Straight,2019,0,0,1,0
Süt,First And Last And Always,Industrial,Industrial,2016,0,0,1,0
Tobias Forsner/Iamthelastdinosaur,First And Last And Always,Alternative,Acoustic,2020,0,0,1,0
Toby A. Rider,First And Last And Always,Goth,Straight,2013,0,0,1,0
Ufx Project,First And Last And Always,Synth,Electronic,2014,0,0,1,0
Whispers In The Shadow,Fix,Darkwave,Darkwave,2000,1,0,0,1
HøRD/Volcan,Fix,Unspecified,Straight,2013,0,0,0,1
Il Giardino Violetto,Fix,Unspecified,Metal,2017,0,0,0,1
Project Shadowkind,Fix,LoFi,LoFi,2017,0,0,0,1
T.N.V ( The Negative Visions ),Fix,Unspecified,Straight,1992,0,0,0,1
Botchandango,Fix,Goth,Straight,2012,0,0,1,0
Fey,Fix,Black Metal,Metal,2015,0,0,1,0
Nmacog,Fix,Goth,Straight,2012,0,0,1,0
The Sons Of Carbon,Fix,Alternative,Straight,2018,0,0,1,0
Música das Cinzas,Fix,Dark,Darkwave,2021,0,1,0,0
Maman Küsters,Flood I,Unspecified,Straight,2021,0,1,0,1
SEBASTIEN FAITS DIVERS & HIV+,Flood II,Unspecified,Straight,2021,0,1,0,1
Nmacog,Flood II,Goth,Straight,2017,0,0,1,0
vkgoeswild,Flood II,Unspecified,Acoustic,0,0,0,1
On The Floor,Floorshow,Goth,Darkwave,2000,1,0,1,1
Sonikelectrik,Floorshow,Rock,Straight,2021,0,0,1,1
Cadaverous Condition,Floorshow,Doom Metal,Straight,2021,1,0,0,1
CZarny Piotr,Floorshow,Unspecified,Straight,2019,0,0,0,1
GENETIC VORTEX,Floorshow,Unspecified,Straight,2009,0,0,0,1
Headtrip Inc,Floorshow,Unspecified,Industrial,2019,0,0,0,1
KARA CEPHE,Floorshow,Unspecified,Straight,2014,0,0,0,1
TRS,Floorshow,Unspecified,Straight,2016,0,0,0,1
Zombie Thirteen,Floorshow,Unspecified,Straight,2021,0,0,0,1
Anandamite,Floorshow,Trance,Electronic,2020,0,0,1,0
Kara Cephe / Black Front,Floorshow,Rock,Straight,2015,0,0,1,0
Paranoid Android Band,Floorshow,Darkwave,Darkwave,2013,0,0,1,0
S.G.C,Floorshow,Rock,Straight,2017,0,0,1,0
Jan Doyle Band,Giving Ground,Electronic,Straight,2017,0,0,1,1
Confrontational,Giving Ground,Unspecified,Straight,2015,0,0,1,0
Reptyle,Giving Ground,Unspecified,Straight,2000,1,0,0,1
A WEDDING ANNIVERSARY,Giving Ground,Unspecified,Straight,2021,0,0,0,1
Arcamen,Giving Ground,Unspecified,Straight,2019,0,0,0,1
Dollysplit,Giving Ground,Unspecified,Acoustic,2013,0,0,0,1
Floodlands,Giving Ground,Goth,Straight,2017,0,0,0,1
Lost,Giving Ground,Unspecified,Alternative,2009,0,0,0,1
TRS,Giving Ground,Unspecified,Alternative,2015,0,0,0,1
Artmosfear,Giving Ground,Goth,Straight,2018,0,0,1,0
Letranger,Giving Ground,Electronic,Electronic,2017,0,0,1,0
S.G.C,Giving Ground,Rock,Alternative,2016,0,0,1,0
Toby's Red Sock,Giving Ground,Unspecified,Alternative,2016,0,0,1,0
Götterdämmerung,Good Things,Goth,Straight,2020,0,1,0,1
The Sisters Of Murphy,Good Things,Goth,Straight,2017,0,0,0,1
aimsetc,Good Things,Acoustic,Acoustic,2014,0,0,1,0
Alanm,Good Things,Rock,Straight,2020,0,0,1,0
Many Splintered Thing,Good Things,Goth,Straight,2012,0,0,1,0
Nocebo,Heartland,Unspecified,Alternative,2021,0,1,1,1
Frown,Heartland,Unspecified,Metal,2021,1,0,0,1
Malaise,Heartland,Unspecified,Straight,2000,1,0,0,1
Kiss the anus of a black cat,Heartland,Unspecified,Acoustic,2013,0,0,0,1
Lymon Willis,Heartland,Acoustic,Acoustic,2015,0,0,0,1
Morte Psíquica,Heartland,Unspecified,Alternative,2015,0,0,0,1
Paranoid Android,Heartland,Darkwave,Electronic,2018,0,0,0,1
Pitchfork,Heartland,Unspecified,Straight,2015,0,0,0,1
POSLEDNJE MORE,Heartland,Unspecified,Alternative,2020,0,0,0,1
Roger Ambroos,Heartland,Acoustic,Acoustic,2021,0,0,0,1
Steinheim,Heartland,Unspecified,Metal,2021,0,0,0,1
Taake,Heartland,Unspecified,Metal,2020,0,0,0,1
Victor Marais,Heartland,Acoustic,Acoustic,2019,0,0,0,1
El Pedro Vidrio,Heartland,Electronic,Electronic,2014,0,1,1,0
Unto Ashes,Heartland,Alternative,Acoustic,2014,0,1,1,0
Botchandango,Heartland,Goth,Straight,2012,0,0,1,0
Dan Butler,Heartland,Goth,Straight,2015,0,0,1,0
Nmacog,Heartland,Goth,Straight,2012,0,0,1,0
Push Button Press,I Have Slept With All The Girls In Berlin,Post Punk,Straight,2018,0,0,1,1
Tobias Forsner/leftydrake,I Have Slept With All The Girls In Berlin,Unspecified,Straight,2009,0,0,1,1
Brad Salyn,I Have Slept With All The Girls In Berlin,Unspecified,Straight,2019,0,0,1,0
Fwuffy Da Destwoyah,I Was Wrong,Rock,Punk,2015,0,0,1,1
New Zero God,I Was Wrong,Rock,Straight,2013,0,0,1,1
Alienation's Verge,I Was Wrong,Unspecified,Straight,2015,0,0,0,1
Chiptune Planet,I Was Wrong,Electronic,Electronic,2015,0,0,0,1
Edward Grayclaws,I Was Wrong,Unspecified,Acoustic,2016,0,0,0,1
Evelyn Harford,I Was Wrong,Acoustic,Acoustic,2013,0,0,0,1
Ky Andrew,I Was Wrong,Unspecified,Straight,2017,0,0,0,1
Marcelo Rivera,I Was Wrong,Unspecified,Straight,2019,0,0,0,1
MyDyingHorse,I Was Wrong,Unspecified,Acoustic,2011,0,0,0,1
Raven,I Was Wrong,Unspecified,Straight,2012,0,0,0,1
sidheog & madz cover,I Was Wrong,Unspecified,Straight,2019,0,0,0,1
William Barbosa,I Was Wrong,Unspecified,Acoustic,2014,0,0,0,1
~Lesser~,I Was Wrong,Acoustic,Acoustic,2016,0,0,1,0
Blumenhofen,I Was Wrong,Goth,Straight,2021,0,0,1,0
Peter 'CZarny' Taylor,Jihad,Alternative,Alternative,2020,0,0,1,1
Beyond The Wall Of Sleep,Kiss the Carpet,Unspecified,Industrial,2000,1,0,0,1
INHK,Kiss The Carpet,Alternative,Darkwave,2020,0,0,1,0
SpeculativePrimitivism,Kiss The Carpet,Unspecified,Straight,2016,0,0,1,0
Visitor Information,Kiss The Carpet,Goth,Punk,2017,0,0,1,0
Carpathian Sunrise,Lights,Doom Metal,Metal,2019,0,0,0,1
Factheory,Lights,Rock,Straight,2016,0,0,0,1
Forgotten Rain,Lights,Unspecified,Alternative,2016,0,0,0,1
Halo,Lights,Unspecified,Metal,2013,0,0,0,1
vero,Lights,Unspecified,Alternative,2021,0,0,0,1
Nmacog,Lights,Goth,Straight,2016,0,0,1,0
DSTR,"Lucretia, My Reflection",Electronic,Electronic,2010,1,0,1,1
Anni,"Lucretia, My Reflection",Unspecified,Acoustic,0,0,0,1
Alkaline Trio,"Lucretia, My Reflection",Alternative,Straight,2011,0,0,1,1
Dirge For The Dreadful,"Lucretia, My Reflection",Metal,Metal,2017,0,0,1,1
InDreamS,"Lucretia, My Reflection",Unspecified,Electronic,2013,0,0,1,1
Misfit Trauma Queen,"Lucretia, My Reflection",Electronic,Electronic,2021,0,0,1,1
Mountain Goats,"Lucretia, My Reflection",Unspecified,Alternative,2018,0,0,1,1
Paul Arcadius,"Lucretia, My Reflection",Electronic,Electronic,2013,0,0,1,1
The Black Kites,"Lucretia, My Reflection",Rock,Straight,2008,0,0,1,1
The Disingenuöus,"Lucretia, My Reflection",Metal,Metal,2021,0,0,1,1
The Emile Emilie,"Lucretia, My Reflection",Unspecified,Electronic,2015,0,0,1,1
The Noctambulant,"Lucretia, My Reflection",Metal,Metal,2022,0,0,1,1
Tim Starlight,"Lucretia, My Reflection",Unspecified,Straight,2020,0,0,1,1
Das Kelzer,"Lucretia, My Reflection",Post Punk,Straight,2019,0,1,0,1
Dominion,"Lucretia, My Reflection",Rock,Metal,2020,0,1,0,1
KINGDOM,"Lucretia, My Reflection",Black Metal,Metal,2021,0,1,0,1
Black Light Burns,"Lucretia, My Reflection",Industrial,Straight,2008,1,0,0,1
Dan Swanö,"Lucretia, My Reflection",Unspecified,Straight,2021,1,0,0,1
Gothic Sex,"Lucretia, My Reflection",Goth,Straight,2000,1,0,0,1
Kreator,"Lucretia, My Reflection",Metal,Metal,2008,1,0,0,1
Love Like Blood,"Lucretia, My Reflection",Unspecified,Straight,2001,1,0,0,1
Parralox,"Lucretia, My Reflection",Electronic,Electronic,2019,1,0,0,1
Vampire Lust,"Lucretia, My Reflection",Unspecified,Electronic,2007,1,0,0,1
Warrel Dane,"Lucretia, My Reflection",Metal,Metal,2008,1,0,0,1
AJ Schwed,"Lucretia, My Reflection",Unspecified,Straight,2019,0,0,0,1
Álgida,"Lucretia, My Reflection",Unspecified,Straight,2011,0,0,0,1
Aureah,"Lucretia, My Reflection",Unspecified,Straight,2013,0,0,0,1
Banda Control 80,"Lucretia, My Reflection",Unspecified,Straight,2012,0,0,0,1
Bazza Bingo,"Lucretia, My Reflection",Unspecified,Straight,2018,0,0,0,1
Bitcevsky park,"Lucretia, My Reflection",Unspecified,Straight,2021,0,0,0,1
Black Juju Inc,"Lucretia, My Reflection",Unspecified,Straight,2017,0,0,0,1
BlackEnd,"Lucretia, My Reflection",Unspecified,Metal,2012,0,0,0,1
Bruno Garcez,"Lucretia, My Reflection",Unspecified,Metal,2021,0,0,0,1
Chris Ellis,"Lucretia, My Reflection",Country,Acoustic,2011,0,0,0,1
D. Henrique,"Lucretia, My Reflection",Acoustic,Acoustic,2019,0,0,0,1
David Lomax,"Lucretia, My Reflection",Unspecified,Electronic,2021,0,0,0,1
Destroid,"Lucretia, My Reflection",Unspecified,Electronic,2012,0,0,0,1
Divine Shade,"Lucretia, My Reflection",Unspecified,Metal,2019,0,0,0,1
DOMINION & SORROW CHURCH,"Lucretia, My Reflection",Unspecified,Straight,2013,0,0,0,1
doopelganger,"Lucretia, My Reflection",Unspecified,Straight,2018,0,0,0,1
Double Deck,"Lucretia, My Reflection",Unspecified,Straight,2018,0,0,0,1
Factheory,"Lucretia, My Reflection",Unspecified,Straight,2016,0,0,0,1
Gravitational Pull,"Lucretia, My Reflection",Unspecified,Straight,2021,0,0,0,1
House of Leaves,"Lucretia, My Reflection",Unspecified,Straight,2016,0,0,0,1
J3REMY EX,"Lucretia, My Reflection",Dub,Electronic,2011,0,0,0,1
Kacper Rice,"Lucretia, My Reflection",Unspecified,Straight,2021,0,0,0,1
Killer Star,"Lucretia, My Reflection",Unspecified,Electronic,2011,0,0,0,1
Ladderclimber,"Lucretia, My Reflection",Unspecified,Electronic,2009,0,0,0,1
Los Estafadores,"Lucretia, My Reflection",Unspecified,Straight,2010,0,0,0,1
madsmith,"Lucretia, My Reflection",Unspecified,Straight,2020,0,0,0,1
Marika Kivi & Ksusha Ohio,"Lucretia, My Reflection",Unspecified,Straight,2015,0,0,0,1
Marili Andre,"Lucretia, My Reflection",Unspecified,Straight,2019,0,0,0,1
Mark Morriss,"Lucretia, My Reflection",Jazz,Alternative,2015,0,0,0,1
Max Dorsey,"Lucretia, My Reflection",Unspecified,Alternative,2022,0,0,0,1
Mayday,"Lucretia, My Reflection",Unspecified,Straight,2012,0,0,0,1
Opioids,"Lucretia, My Reflection",Unspecified,Straight,2014,0,0,0,1
Os Desconhecidos,"Lucretia, My Reflection",Unspecified,Straight,2015,0,0,0,1
Overcast Rain,"Lucretia, My Reflection",Unspecified,Straight,2016,0,0,0,1
Paul Lawson-Tyers,"Lucretia, My Reflection",Acoustic,Acoustic,2020,0,0,0,1
Pier Caramel,"Lucretia, My Reflection",Unspecified,Straight,2021,0,0,0,1
Projekt80,"Lucretia, My Reflection",Unspecified,Straight,2014,0,0,0,1
Retaliation,"Lucretia, My Reflection",Metal,Metal,2017,0,0,0,1
Revrndmel,"Lucretia, My Reflection",Electronic,Electronic,2018,0,0,0,1
Ritual,"Lucretia, My Reflection",Unspecified,Alternative,2014,0,0,0,1
RocksOnTheRoad,"Lucretia, My Reflection",Unspecified,Straight,2019,0,0,0,1
salomedia77,"Lucretia, My Reflection",Unspecified,Straight,2017,0,0,0,1
Sebastian HAFF feat. Laurent,"Lucretia, My Reflection",Acoustic,Country,2020,0,0,0,1
SUBWAY SWITCH,"Lucretia, My Reflection",Unspecified,Straight,2014,0,0,0,1
Surrey_Grin,"Lucretia, My Reflection",Acoustic,Acoustic,2019,0,0,0,1
TERROR SUBURBANO,"Lucretia, My Reflection",Unspecified,Straight,2020,0,0,0,1
The Band That Drips Blood,"Lucretia, My Reflection",Goth,Straight,2021,0,0,0,1
The Bonecollectors,"Lucretia, My Reflection",Psychobilly,Country,2013,0,0,0,1
The Mutated Noddys,"Lucretia, My Reflection",Unspecified,Punk,2013,0,0,0,1
The Thirsty Coffin,"Lucretia, My Reflection",Unspecified,Straight,2011,0,0,0,1
Tudor Lupascu,"Lucretia, My Reflection",Unspecified,Straight,2020,0,0,0,1
Voodoo Sharks,"Lucretia, My Reflection",Unspecified,Straight,2020,0,0,0,1
Zombie Thirteen,"Lucretia, My Reflection",Unspecified,Straight,2021,0,0,0,1
Bathead,"Lucretia, My Reflection",Darkwave,Electronic,2018,0,1,1,0
Corretja,"Lucretia, My Reflection",Metal,Metal,2019,0,1,1,0
Nomads,"Lucretia, My Reflection",Metal,Metal,2016,0,1,1,0
Adam Hansen,"Lucretia, My Reflection",Unspecified,Straight,2017,0,0,1,0
Airetikos,"Lucretia, My Reflection",Electronic,Electronic,2021,0,0,1,0
Alpha Quadrant,"Lucretia, My Reflection",Electronic,Electronic,2021,0,0,1,0
Am_808,"Lucretia, My Reflection",Alternative,Straight,2021,0,0,1,0
Andrew Grant-Weeks2,"Lucretia, My Reflection",Rock,Straight,2017,0,0,1,0
As Devils Do,"Lucretia, My Reflection",EDM,Darkwave,2016,0,0,1,0
Attasalina,"Lucretia, My Reflection",Alternative,Alternative,2013,0,0,1,0
Beaucrat,"Lucretia, My Reflection",Post Punk,Straight,2012,0,0,1,0
Billy,"Lucretia, My Reflection",Rock,Straight,2021,0,0,1,0
Blood Debt,"Lucretia, My Reflection",Goth,Straight,2016,0,0,1,0
Bloody Russians,"Lucretia, My Reflection",Goth,Straight,2016,0,0,1,0
Botchandango,"Lucretia, My Reflection",Goth,Straight,2012,0,0,1,0
brokenbirthday,"Lucretia, My Reflection",Electronic,Electronic,2019,0,0,1,0
Casino of Aeneas,"Lucretia, My Reflection",Alternative,Straight,2017,0,0,1,0
Ceasar Flores,"Lucretia, My Reflection",Electronic,Electronic,1995,0,0,1,0
Cellars,"Lucretia, My Reflection",Darkwave,Electronic,2015,0,0,1,0
ControlFreak ,"Lucretia, My Reflection",Goth,Straight,2013,0,0,1,0
Dark Alley,"Lucretia, My Reflection",Unspecified,Electronic,2019,0,0,1,0
Death and Cigarettes,"Lucretia, My Reflection",Punk,Straight,2013,0,0,1,0
deifius,"Lucretia, My Reflection",Unspecified,Acoustic,2013,0,0,1,0
DENTRO DE TUS PESADILLAS,"Lucretia, My Reflection",Psychobilly,Country,2016,0,0,1,0
Dogs of Verona,"Lucretia, My Reflection",Goth,Straight,2013,0,0,1,0
douglaseven23,"Lucretia, My Reflection",Acoustic,Acoustic,2012,0,0,1,0
Dryland Goth Rock,"Lucretia, My Reflection",Rock,Straight,2019,0,0,1,0
Eric Krupitzer,"Lucretia, My Reflection",Unspecified,Straight,2021,0,0,1,0
Fault,"Lucretia, My Reflection",Unspecified,Acoustic,2013,0,0,1,0
FOLD,"Lucretia, My Reflection",Electronic,Electronic,2021,0,0,1,0
Hard Rock Zombie,"Lucretia, My Reflection",Unspecified,Straight,2013,0,0,1,0
Illogical_Format,"Lucretia, My Reflection",Electronic,Electronic,2021,0,0,1,0
InfernalMaschine,"Lucretia, My Reflection",Synth,Electronic,2013,0,0,1,0
Into The Trees,"Lucretia, My Reflection",Post Punk,Straight,2020,0,0,1,0
J. Glass,"Lucretia, My Reflection",Darkwave,Darkwave,2016,0,0,1,0
Jgstephens,"Lucretia, My Reflection",Unspecified,Electronic,2013,0,0,1,0
Jim Duplex,"Lucretia, My Reflection",Goth,Straight,2021,0,0,1,0
John - Mcginto,"Lucretia, My Reflection",Alternative,Darkwave,2017,0,0,1,0
Johnny Monster,"Lucretia, My Reflection",Unspecified,Straight,2014,0,0,1,0
Keffle_Records,"Lucretia, My Reflection",Rock,Straight,2014,0,0,1,0
knixx,"Lucretia, My Reflection",Metal,Metal,2021,0,0,1,0
Konstantins Jaunzems,"Lucretia, My Reflection",Rock,Straight,2016,0,0,1,0
Lonely Blue Recordings,"Lucretia, My Reflection",Electronic,Electronic,2016,0,0,1,0
Lutz R. Bierend,"Lucretia, My Reflection",Unspecified,Straight,2015,0,0,1,0
Machinery Of Desire,"Lucretia, My Reflection",Acoustic,Acoustic,2014,0,0,1,0
MECHnoPHILE,"Lucretia, My Reflection",Industrial,Electronic,2013,0,0,1,0
Moon Sound Malabar,"Lucretia, My Reflection",Alternative,Alternative,2017,0,0,1,0
Nmacog,"Lucretia, My Reflection",Goth,Straight,2012,0,0,1,0
NOCONTROLLER,"Lucretia, My Reflection",Unspecified,Straight,2021,0,0,1,0
noiseonport,"Lucretia, My Reflection",World,Electronic,2021,0,0,1,0
Nullsaurus IS MOVING!,"Lucretia, My Reflection",Unspecified,Straight,2017,0,0,1,0
Patrick Scott,"Lucretia, My Reflection",House,Electronic,2005,0,0,1,0
paulboutin,"Lucretia, My Reflection",Rock,Straight,2020,0,0,1,0
Pedro Damian 1,"Lucretia, My Reflection",Alternative,Alternative,2017,0,0,1,0
Phoenix Elm,"Lucretia, My Reflection",Alternative,Electronic,2021,0,0,1,0
Revrndmel&The Dead Lights,"Lucretia, My Reflection",Alternative,Straight,2018,0,0,1,0
sade/alienor,"Lucretia, My Reflection",Electronic,Electronic,2013,0,0,1,0
Sam Grun,"Lucretia, My Reflection",Electronic,Electronic,2013,0,0,1,0
Simon Phoenix 1978,"Lucretia, My Reflection",Synth,Electronic,2016,0,0,1,0
smothermachinemusic,"Lucretia, My Reflection",Alternative,Straight,2014,0,0,1,0
The Last Tsar,"Lucretia, My Reflection",Rock,Metal,2020,0,0,1,0
TheSexCripples,"Lucretia, My Reflection",Goth,Straight,2020,0,0,1,0
thetannhausergate,"Lucretia, My Reflection",Darkwave,Straight,2012,0,0,1,0
This Damn Age,"Lucretia, My Reflection",Unspecified,Darkwave,2015,0,0,1,0
Trancesistor,"Lucretia, My Reflection",Unspecified,Straight,2013,0,0,1,0
user4481301,"Lucretia, My Reflection",Alternative,Straight,2012,0,0,1,0
Vesper Valen,"Lucretia, My Reflection",Electronic,Electronic,2021,0,0,1,0
Villain,"Lucretia, My Reflection",Industrial,Straight,2016,0,0,1,0
wiltedleaves,"Lucretia, My Reflection",Unspecified,Straight,2013,0,0,1,0
Castration Proclamation,"Lucretia, My Reflection",Punk,Straight,2017,0,1,0,0
FODEEGY,"Lucretia, My Reflection",Electronic,Electronic,2015,0,1,0,0
For The Sake Of Tapes,"Lucretia, My Reflection",Alternative,Straight,2017,0,1,0,0
Huszar,"Lucretia, My Reflection",Black Metal,Metal,2017,0,1,0,0
Manchester String Quartet,"Lucretia, My Reflection",Alternative,Acoustic,2017,0,1,0,0
Spacewaves,"Lucretia, My Reflection",Rock,Straight,2019,0,1,0,0
Stahlnebel & BlackSelket,"Lucretia, My Reflection",Electronic,Electronic,2019,0,1,0,0
Tomb Of Nick Cave,"Lucretia, My Reflection",Rock,Straight,2020,0,1,0,0
Konqistador,"Lucretia, My Reflection",Darkwave,Darkwave,2017,1,0,0,0
Stigmata,Marian,Goth,Straight,2012,0,1,1,1
My Diarrhoea,Marian,Unspecified,Electronic,2019,0,0,1,1
Selfishshadows,Marian,Goth,Straight,2021,0,0,1,1
System Of A Down,Marian,Unspecified,Metal,2012,0,0,1,1
Zulmet,Marian,Black Metal,Metal,2019,0,0,1,1
Симптом,Marian,Goth,Straight,2017,0,0,1,1
Austere Moon ,Marian,Goth,Straight,2020,0,1,0,1
Dim Aura,Marian,Black Metal,Metal,2017,0,1,0,1
Mittel Kontrast,Marian,Unspecified,Alternative,2015,0,1,0,1
Columbia Obstruction Box,Marian,Goth,Straight,2021,1,0,0,1
Flesh Of My Flesh,Marian,Unspecified,Straight,2007,1,0,0,1
REAL:DEAD:LOVE,Marian,Unspecified,Straight,2014,1,0,0,1
Scooter,Marian,Electronic,Electronic,2009,1,0,0,1
5 GENERAIS,Marian,Goth,Straight,2020,0,0,0,1
Astraea Invade,Marian,Goth,Straight,2013,0,0,0,1
Beschreibung,Marian,Acoustic,Acoustic,2015,0,0,0,1
Black Planet,Marian,Unspecified,Straight,2019,0,0,0,1
Cadaverous Condition,Marian,Unspecified,Metal,1993,0,0,0,1
Charles J. Hin,Marian,Unspecified,Alternative,2020,0,0,0,1
Double Dare,Marian,Unspecified,Acoustic,2017,0,0,0,1
Edith Crash,Marian,Acoustic,Acoustic,2016,0,0,0,1
ESKIL SIMONSSON,Marian,Electronic,Electronic,2018,0,0,0,1
Fall,Marian,Unspecified,Straight,2019,0,0,0,1
Guillotine Dream,Marian,Unspecified,Straight,2019,0,0,0,1
HOTEL NOIR,Marian,Unspecified,Straight,2017,0,0,0,1
Illumini X,Marian,Unspecified,Straight,2015,0,0,0,1
Jenny Jenny,Marian,Unspecified,Acoustic,2020,0,0,0,1
Karmanaut,Marian,Unspecified,Straight,2010,0,0,0,1
Mantus,Marian,Unspecified,Straight,2013,0,0,0,1
Mr. Fastenseatbelts,Marian,Unspecified,Alternative,2019,0,0,0,1
nick spear,Marian,Acoustic,Acoustic,2020,0,0,0,1
Oren Pildus,Marian,Unspecified,Metal,2019,0,0,0,1
Panazee,Marian,Unspecified,Straight,2012,0,0,0,1
Paranoid Android,Marian,Electronic,Electronic,2018,0,0,0,1
POESIE NOIRE,Marian,Unspecified,Straight,2020,0,0,0,1
Reborlucion,Marian,Unspecified,Straight,2011,0,0,0,1
Reptile House,Marian,Unspecified,Straight,2019,0,0,0,1
Roger Ambroos,Marian,Acoustic,Acoustic,2020,0,0,0,1
sławek szczepański,Marian,Unspecified,Straight,2012,0,0,0,1
Soul In Isolation,Marian,Unspecified,Straight,2010,0,0,0,1
The Andersons,Marian,Unspecified,Straight,2020,0,0,0,1
The Escape,Marian,Acoustic,Acoustic,2016,0,0,0,1
The Mission,Marian,Unspecified,Straight,2020,0,0,0,1
Uranium Orchids,Marian,Unspecified,Straight,2020,0,0,0,1
WAKE,Marian,Unspecified,Straight,2011,0,0,0,1
Yağmur,Marian,Unspecified,Alternative,2015,0,0,0,1
Zombie Thirteen,Marian,Unspecified,Straight,2021,0,0,0,1
▲Bstr▲Cktbl▲Ck,Marian,EDM,Electronic,2021,0,0,1,0
Ann,Marian,Acoustic,Acoustic,2018,0,0,1,0
Atypic,Marian,Unspecified,Acoustic,2016,0,0,1,0
Belle Mystère,Marian,Goth,Straight,2012,0,0,1,0
Hdx,Marian,Synth,Electronic,2015,0,0,1,0
Inês Viegas,Marian,Unspecified,Acoustic,2020,0,0,1,0
Into The Trees,Marian,Post Punk,Straight,2020,0,0,1,0
Johnnie Ha Ha,Marian,Unspecified,Straight,2021,0,0,1,0
Mr. Filler's Monologues,Marian,Electronic,Electronic,2015,0,0,1,0
Nmacog,Marian,Goth,Straight,2015,0,0,1,0
Orbs/Farah,Marian,Alternative,Straight,2021,0,0,1,0
Reverend Chris,Marian,Unspecified,Straight,2021,0,0,1,0
Sid Briggs,Marian,Rock,Acoustic,2020,0,0,1,0
Tecnoman Sf,Marian,Electronic,Electronic,2012,0,0,1,0
The carnage visors,Marian,Alternative,Straight,2022,0,0,1,0
ThePops,Marian,Unspecified,Alternative,2016,0,0,1,0
theRAME,Marian,Goth,Electronic,2015,0,0,1,0
Western Sect,Marian,Goth,Darkwave,2013,0,0,1,0
Worldofabaddon,Marian,Unspecified,Metal,2014,0,0,1,0
John Trap,Marian,Alternative,Acoustic,2007,0,1,0,0
Kalmankantaja,Marian,Dark,Darkwave,2021,0,1,0,0
Symptom,Marian,Rock,Straight,2017,0,1,0,0
V.A. Bolivia Goth,Marian,Rock,Straight,2015,0,1,0,0
Nouvelle Vague,Marian,Brazilian Pop,Acoustic,2004,1,0,0,0
Manos Kountouris,More,Unspecified,Metal,2014,0,0,1,1
Atrocity,More,Metal,Metal,2021,1,0,0,1
Nevergreen,More,Unspecified,Metal,2014,1,0,0,1
One,More,Unspecified,Straight,2000,1,0,0,1
Antonis Panagakos,More,Unspecified,Straight,2018,0,0,0,1
Babalith,More,Electronic,Electronic,2012,0,0,0,1
BLIND PASSENGER,More,Unspecified,Straight,2018,0,0,0,1
Cycle & Ana Curra,More,Unspecified,Straight,2015,0,0,0,1
Gregorian,More,Unspecified,Straight,2015,0,0,0,1
Really Ross,More,Acoustic,Acoustic,2009,0,0,0,1
Shaman,More,Unspecified,Metal,2017,0,0,0,1
Brad Salyn,More,Unspecified,Straight,2019,0,0,1,0
Carnal,More,Unspecified,Metal,2014,0,0,1,0
Dave Prescott,More,EDM,Electronic,2019,0,0,1,0
Lilly E. Gray,More,Goth,Straight,2021,0,0,1,0
Lukascollision,More,Folk,Acoustic,2011,0,0,1,0
steve-griffiths,More,Goth,Straight,2015,0,0,1,0
Tenebras Sex,More,Rock,Straight,2021,0,0,1,0
Meat Loaf,More,Rock,Straight,2016,1,0,0,0
Unwoman,More,Steampunk,Acoustic,2016,1,0,0,0
A Pregnant Light,Mother Russia,Metal,Metal,2021,0,1,0,0
Candy Apple Black,Never Land,Electronic,Straight,2020,0,1,1,1
The Long Losts,Never Land,Rock,Straight,2017,0,1,1,1
Heirs,Never Land,Unspecified,Straight,2011,1,0,0,1
Lizard Smile,Never Land,Unspecified,Electronic,2000,1,0,0,1
djstauby,Never Land,Electronic,Electronic,2019,0,0,0,1
Zombie Thirteen,Never Land,Unspecified,Straight,2021,0,0,0,1
Solitary Debate,Never Land,Ambient,Straight,2012,0,1,1,0
Adam Colegrove Personal,Never Land,Goth,Straight,2014,0,0,1,0
Python Blue,Never Land,Unspecified,Straight,2021,0,0,1,0
Thee Charitable Trusts,Never Land,Rock,Straight,2021,0,0,1,0
Ahráyeph,Never Land,Goth,Straight,2016,0,1,0,0
Sleepmask,Nine While Nine,Goth,Straight,2010,1,1,1,1
Jan Doyle Band,Nine While Nine,Unspecified,Electronic,2021,0,0,1,1
The Beauty of Gemina,Nine While Nine,Goth,Straight,2020,1,0,0,1
Arcamen,Nine While Nine,Unspecified,Straight,2019,0,0,0,1
Conscious Grooves,Nine While Nine,Unspecified,Straight,2018,0,0,0,1
David Bayne and Phasade,Nine While Nine,Electronic,Electronic,2014,0,0,0,1
falsequilibrium,Nine While Nine,Unspecified,Acoustic,2012,0,0,0,1
Josephine Alley,Nine While Nine,Unspecified,Alternative,2021,0,0,0,1
KILL SHELTER & ANTIPOLE,Nine While Nine,Unspecified,Straight,2021,0,0,0,1
Klang Lawine,Nine While Nine,Unspecified,Straight,2013,0,0,0,1
Temple of Mercy,Nine While Nine,Goth,Straight,2018,0,0,0,1
Utolsó Hullám,Nine While Nine,Unspecified,Straight,2021,0,0,0,1
Zombie Thirteen,Nine While Nine,Unspecified,Straight,2021,0,0,0,1
Botchandango,Nine While Nine,Goth,Straight,2012,0,0,1,0
Elknight,Nine While Nine,Rock,Straight,2016,0,0,1,0
Moritz Kraft,Nine While Nine,Unspecified,Metal,2013,0,0,1,0
Nmacog,Nine While Nine,Goth,Straight,2012,0,0,1,0
Cradle Of Filth,No Time To Cry,Metal,Metal,2001,1,1,1,1
Little Dead Bertha,No Time To Cry,Metal,Metal,2018,0,1,0,1
Angelic Deceptions,No Time To Cry,Unspecified,Metal,2020,0,0,0,1
Black Planet,No Time To Cry,Unspecified,Straight,2018,0,0,0,1
BlackRain,No Time To Cry,Metal,Metal,2011,0,0,0,1
D.D.T.,No Time To Cry,Metal,Metal,2011,0,0,0,1
Dark Door,No Time To Cry,Electronic,Electronic,2020,0,0,0,1
Ghostwood,No Time To Cry,Unspecified,Straight,2015,0,0,0,1
Labores Somnium,No Time To Cry,Unspecified,Electronic,2014,0,0,0,1
Luiz Negrinho,No Time To Cry,Acoustic,Acoustic,2011,0,0,0,1
madsmith,No Time To Cry,Unspecified,Straight,2016,0,0,0,1
Orion Syria,No Time To Cry,Unspecified,Metal,2012,0,0,0,1
RAYBURNWORLD,No Time To Cry,Electronic,Electronic,2021,0,0,0,1
Sinápsis,No Time To Cry,Unspecified,Metal,2019,0,0,0,1
SONS OF NEVERLAND,No Time To Cry,Unspecified,Straight,2012,0,0,0,1
Stoynov666,No Time To Cry,Acoustic,Acoustic,2017,0,0,0,1
The Temple Of Mercy,No Time To Cry,Goth,Straight,2019,0,0,0,1
Tishina Project,No Time To Cry,Unspecified,Straight,2012,0,0,0,1
Umbra Et Imago,No Time To Cry,Unspecified,Metal,2012,0,0,0,1
Denis95490,No Time To Cry,Alternative,Alternative,2019,0,0,1,0
Goat Fetus,No Time To Cry,Metal,Metal,2021,0,0,1,0
Kinkyluvin,No Time To Cry,Unspecified,Electronic,2015,0,0,1,0
Nick Maatjes,No Time To Cry,Unspecified,Acoustic,2021,0,0,1,0
Seraf,No Time To Cry,Metal,Metal,2018,0,0,1,0
Sixpounder,No Time To Cry,Metal,Metal,2021,0,0,1,0
The Project Mendes,No Time To Cry,EBM,Electronic,2015,0,0,1,0
Unbeauty Indonesia,No Time To Cry,Metal,Metal,2020,0,0,1,0
Rat Diatribe,No Time To Cry,Ambient,Electronic,2020,0,1,0,0
Dusk,On The Wire,Unspecified,Electronic,2017,0,0,0,1
Swesor Bhrater,On The Wire,Unspecified,Alternative,2021,0,0,0,1
Ворочарак,On The Wire,Metal,Metal,2019,0,0,0,1
Brad Salyn,On The Wire,Unspecified,Straight,2019,0,0,1,0
Years Of Denial,Poison Door,Unspecified,Straight,2021,0,0,1,1
Morbid Poetry,Poison Door,Unspecified,Straight,2000,1,0,0,1
Bay Laurel,Poison Door,Unspecified,Straight,2015,0,0,0,1
Black Planet,Poison Door,Unspecified,Straight,2018,0,0,0,1
Ghost Dance,Poison Door,Unspecified,Straight,2008,0,0,0,1
Motten,Poison Door,Darkwave,Straight,2019,0,0,0,1
The Sisters Of Murphy,Poison Door,Goth,Straight,2018,0,0,0,1
Blumenhofen,Poison Door,Goth,Straight,2021,0,0,1,0
Dawn of Elysium,Poison Door,Alternative,Straight,2022,0,0,1,0
Mr.Psychosound,Poison Door,Electronic,Electronic,2016,0,0,1,0
OrLoK,Possession,Unspecified,Electronic,2010,0,0,0,1
The Insomnia Night,Possession,Unspecified,Alternative,2018,0,0,0,1
The Temple of Mercy,Possession,Goth,Straight,2021,0,0,0,1
Nocebo,Rain From Heaven,Unspecified,Alternative,2020,0,1,1,1
M Lewis,Rain From Heaven,Unspecified,Straight,2015,0,0,0,1
HeavenlyCreatures,Rain From Heaven,Goth,Straight,2012,0,0,1,0
Gravitational Pull,Ribbons,Unspecified,Straight,2021,0,0,0,1
T.N.V ( The Negative Visions ),Ribbons,Unspecified,Straight,2015,0,0,0,1
The Arkham Rebellion,Ribbons,Unspecified,Straight,2016,0,0,0,1
Brad Salyn,Ribbons,Rock,Straight,2019,0,0,1,0
Cyberactive,Ribbons,Alternative,Alternative,2020,0,0,1,0
Marek Krukowski,Ribbons,Unspecified,Metal,2014,0,0,1,0
Brad Salyn,Romeo Down,Unspecified,Straight,2019,0,0,1,0
Tobias Forsner/leftydrake,Show Me,Unspecified,Metal,2021,0,0,1,1
Liturgy Of Decay,Some Kind Of Stranger,Goth,Metal,2017,0,1,1,1
Andy McQuade,Some Kind Of Stranger,Alternative,Acoustic,2017,1,0,1,1
The Faces Of Sarah,Some Kind Of Stranger,Alternative,Acoustic,2013,1,1,0,1
The Elizabeth Dane,Some Kind Of Stranger,Unspecified,Straight,2000,1,0,0,1
The Mist Of Avalon,Some Kind Of Stranger,Unspecified,Straight,2000,1,0,0,1
3IB,Some Kind Of Stranger,Unspecified,Acoustic,2022,0,0,0,1
Ghosting,Some Kind Of Stranger,Unspecified,Straight,2001,0,0,0,1
joebar5th,Some Kind Of Stranger,Unspecified,Straight,2008,0,0,0,1
Syria,Some Kind Of Stranger,Unspecified,Alternative,2021,0,0,0,1
Xrist Off,Some Kind Of Stranger,Unspecified,Acoustic,2011,0,0,0,1
Brad Salyn,Some Kind Of Stranger,Rock,Straight,2019,0,0,1,0
Dreary Racket,Some Kind Of Stranger,Rock,Straight,2021,0,0,1,0
G S Pearce,Some Kind Of Stranger,Unspecified,Straight,2014,0,0,1,0
Mind Flayer,Some Kind Of Stranger,Acoustic,Acoustic,2020,0,0,1,0
Mist Of Avalon,Some Kind Of Stranger,Metal,Metal,2000,0,0,1,0
P-CZ,Some Kind Of Stranger,Unspecified,Straight,2015,0,0,1,0
The Brothers of Tyranny,Some Kind Of Stranger,Electronic,Electronic,2013,0,0,1,0
Unwoman,Some Kind Of Stranger,Steampunk,Acoustic,2011,1,0,0,0
Satellitesongs,Something Fast,Unspecified,Acoustic,2021,0,0,1,1
AFigureOfDisguise,Something Fast,Unspecified,Straight,2019,0,0,0,1
Anton Albertse,Something Fast,Unspecified,Straight,2013,0,0,0,1
Funky Right Hand,Something Fast,Unspecified,Straight,2017,0,0,0,1
Gaazi,Something Fast,Unspecified,Straight,2018,0,0,0,1
Johnette Napolitano,Something Fast,Unspecified,Straight,2013,0,0,0,1
Mágoa Nocturna,Something Fast,Unspecified,Straight,2020,0,0,0,1
Marcel Bartholo,Something Fast,Unspecified,Straight,2017,0,0,0,1
Marion Arnett,Something Fast,Unspecified,Straight,2017,0,0,0,1
Mystify,Something Fast,Unspecified,Straight,2015,0,0,0,1
Page 12,Something Fast,Unspecified,Straight,2022,0,0,0,1
qhnilingus,Something Fast,Unspecified,Straight,2016,0,0,0,1
Skaldir feat. Goreminister,Something Fast,Unspecified,Straight,2016,0,0,0,1
Snow Storm,Something Fast,Unspecified,Metal,2013,0,0,0,1
Something Fast,Something Fast,Unspecified,Straight,2017,0,0,0,1
Temple of Mercy,Something Fast,Unspecified,Straight,2018,0,0,0,1
Terminal Choice,Something Fast,Unspecified,Straight,2008,0,0,0,1
V/Terpan,Something Fast,Unspecified,Straight,2020,0,0,0,1
ZeitZoigen,Something Fast,Unspecified,Straight,2011,0,0,0,1
~Lesser~,Something Fast,Acoustic,Acoustic,2014,0,0,1,0
Cemeterysiren,Something Fast,Acoustic,Acoustic,2021,0,0,1,0
G. Neves,Something Fast,Goth,Acoustic,2015,0,0,1,0
James Marc Florance,Something Fast,Unspecified,Acoustic,2020,0,0,1,0
Alex Meehan,Still,Unspecified,Straight,2012,0,0,1,0
Brad Salyn,Still,Unspecified,Straight,2019,0,0,1,0
ARF,Summer,Unspecified,Straight,2007,0,0,0,1
Dollysplit,Summer,Unspecified,Straight,2014,0,0,0,1
Blumenhofen,Summer,Goth,Straight,2021,0,0,1,0
Brad Salyn,Summer,Rock,Straight,2019,0,0,1,0
Ahráyeph,Summer,Goth,Straight,2016,0,1,0,0
Johnnie Ha Ha,Temple Of Love,Unspecified,Straight,2022,0,0,1,1
Paranoid Android,Temple Of Love,Unspecified,Electronic,2015,0,0,1,1
Mekrokiev,Temple Of Love,Unspecified,Straight,2012,0,1,0,1
Crematory,Temple Of Love,Goth,Straight,2021,1,0,0,1
Deadlock,Temple Of Love,Unspecified,Straight,2021,1,0,0,1
Haunted Echo,Temple Of Love,Unspecified,Industrial,2016,1,0,0,1
Johnny Hollow,Temple Of Love,Unspecified,Darkwave,2014,1,0,0,1
Mr Irish Bastard,Temple Of Love,Folk Punk,Punk,2006,1,0,0,1
Technova,Temple Of Love,Techo,Electronic,2009,1,0,0,1
Aion,Temple Of Love,Unspecified,Straight,1997,0,0,0,1
Black Sky,Temple Of Love,Unspecified,Straight,2017,0,0,0,1
Caroline Salmona,Temple Of Love,Acoustic,Acoustic,2021,0,0,0,1
Cella' Door,Temple Of Love,Unspecified,Alternative,2013,0,0,0,1
Creaming Jesus,Temple Of Love,Unspecified,Punk,2015,0,0,0,1
Danny McEvoy,Temple Of Love,Unspecified,Acoustic,2016,0,0,0,1
Demetrios,Temple Of Love,Unspecified,Darkwave,2018,0,0,0,1
DJ Priamos,Temple Of Love,Electronic,Electronic,2012,0,0,0,1
Dominion,Temple Of Love,Goth,Straight,2012,0,0,0,1
Double Deck Cwb,Temple Of Love,Unspecified,Straight,2018,0,0,0,1
dzsi666,Temple Of Love,Acoustic,Acoustic,2020,0,0,0,1
Eoin Whitehead,Temple Of Love,Acoustic,Acoustic,2021,0,0,0,1
Leaf,Temple Of Love,Unspecified,Metal,2010,0,0,0,1
Mac,Temple Of Love,Acoustic,Acoustic,2020,0,0,0,1
madsmith,Temple Of Love,Unspecified,Straight,2020,0,0,0,1
Midas,Temple Of Love,Unspecified,Straight,2019,0,0,0,1
Milking The Goatmachine,Temple Of Love,Black Metal,Metal,2014,0,0,0,1
New Zero God,Temple Of Love,Unspecified,Straight,2013,0,0,0,1
screwthestatusquo,Temple Of Love,Acoustic,Acoustic,2009,0,0,0,1
Swayin Ease,Temple Of Love,Unspecified,Alternative,1991,0,0,0,1
Temple of Mercy,Temple Of Love,Goth,Straight,2019,0,0,0,1
Thanassis Bard,Temple Of Love,Unspecified,Straight,2015,0,0,0,1
The Art Of Pain,Temple Of Love,Unspecified,Metal,2009,0,0,0,1
The Bus Station Loonies,Temple Of Love,Unspecified,Reggae,2020,0,0,0,1
The FAKE,Temple Of Love,Unspecified,Straight,2016,0,0,0,1
The Mistress of Jersey,Temple Of Love,Goth,Straight,2021,0,0,0,1
The Visionary Heads,Temple Of Love,Unspecified,Straight,2013,0,0,0,1
TOMAHAWK,Temple Of Love,Unspecified,Straight,2021,0,0,0,1
Tudor Lupascu,Temple Of Love,Unspecified,Alternative,2017,0,0,0,1
Valium,Temple Of Love,Metal,Metal,2010,0,0,0,1
Yohualli,Temple Of Love,Electronic,Electronic,2018,0,0,0,1
Black Glitters,Temple Of Love,Goth,Straight,2019,0,0,1,0
Brad Salyn,Temple Of Love,Unspecified,Straight,2019,0,0,1,0
Des Teufels Sohn,Temple Of Love,Synth,Electronic,2017,0,0,1,0
Occidentaldawn,Temple Of Love,Electronic,Electronic,2015,0,0,1,0
Prophet1,Temple Of Love,Goth,Straight,2011,0,0,1,0
Ruinednation,Temple Of Love,Unspecified,Electronic,2011,0,0,1,0
sonofJNEBO,Temple Of Love,Alternative,Alternative,2020,0,0,1,0
Spiderlegs,Temple Of Love,Goth,Metal,2022,0,0,1,0
sromusik,Temple Of Love,Goth,Acoustic,2013,0,0,1,0
The Psychedelics,Temple Of Love,Rock,Straight,2018,0,0,1,0
This Second Skin,Temple Of Love,Unspecified,Metal,2016,0,0,1,0
UtterSpace,Temple Of Love,Synth,Electronic,2018,0,0,1,0
Vortex Riseandreverberate,Temple Of Love,Unspecified,Straight,2011,0,0,1,0
Wulf Acidrug,Temple Of Love,Metal,Metal,2021,0,0,1,0
Ciretose Sire,Temple Of Love,Unspecified,Straight,2012,0,1,0,0
Eald,Temple Of Love,Black Metal,Metal,2014,0,1,0,0
Kaoskraft,Temple Of Love,Black Metal,Metal,2021,0,1,0,0
Reizstrom,Temple Of Love,Electronic,Electronic,2013,0,1,0,0
Killus,Temple Of Love,Metal,Metal,2011,1,0,0,0
Sonikelectrik,The Damage Done,Rock,Darkwave,2022,0,0,1,1
Ariel Pink,The Damage Done,Unspecified,Straight,2011,0,0,0,1
The Sisters Of Murphy,The Damage Done,Goth,Straight,2017,0,0,0,1
Alanm,The Damage Done,Techno,Electronic,2020,0,0,1,0
Lambchop,This Corrosion,Country,Country,2002,1,0,1,1
Maryslim,This Corrosion,Unspecified,Metal,2007,1,0,1,1
Unheilig,This Corrosion,Unspecified,Electronic,2015,0,0,1,1
Godhead,This Corrosion,Industrial,Industrial,2007,1,0,0,1
Konqistador,This Corrosion,Darkwave,Darkwave,2017,1,0,0,1
B6,This Corrosion,Unspecified,Acoustic,2011,0,0,0,1
Bosshoss,This Corrosion,Country,Country,2010,0,0,0,1
buyer II,This Corrosion,Acoustic,Acoustic,2019,0,0,0,1
Carrion,This Corrosion,Unspecified,Metal,2012,0,0,0,1
CHARCOALCITY,This Corrosion,Unspecified,Metal,2018,0,0,0,1
Danny McEvoy,This Corrosion,Acoustic,Acoustic,2021,0,0,0,1
Death Rose,This Corrosion,Unspecified,Metal,2017,0,0,0,1
dEk101,This Corrosion,Unspecified,Straight,2021,0,0,0,1
Dragon Heart Studio,This Corrosion,Unspecified,Alternative,2016,0,0,0,1
Emerald Mind,This Corrosion,Unspecified,Metal,2018,0,0,0,1
Hey Now HEY NOW NOW,This Corrosion,Unspecified,Straight,2016,0,0,0,1
In Extremo,This Corrosion,Unspecified,Metal,2009,0,0,0,1
KT6 Vocal Group,This Corrosion,Vocal,Vocal,2018,0,0,0,1
Lisa Cuthbert,This Corrosion,Acoustic,Acoustic,2014,0,0,0,1
madfoot,This Corrosion,Acoustic,Acoustic,2015,0,0,0,1
madsmith,This Corrosion,Unspecified,Straight,2020,0,0,0,1
Pharaoh Sol,This Corrosion,Alternative,Alternative,2015,0,0,0,1
Seattle School of Rock,This Corrosion,Unspecified,Alternative,2014,0,0,0,1
Sexy Kill Device,This Corrosion,Punk,Metal,2013,0,0,0,1
SKD,This Corrosion,Unspecified,Metal,2011,0,0,0,1
SPEED-iD,This Corrosion,Unspecified,Metal,2017,0,0,0,1
stephan schäfer,This Corrosion,Acoustic,Acoustic,2017,0,0,0,1
Super Sweet Music,This Corrosion,Acoustic,Acoustic,2019,0,0,0,1
Temple of Mercy,This Corrosion,Goth,Straight,2019,0,0,0,1
The Hourglass,This Corrosion,Unspecified,Metal,2015,0,0,0,1
The Illusion Fades,This Corrosion,Unspecified,Metal,2013,0,0,0,1
The Phenomenal Handclap Band & Diane Birch,This Corrosion,Unspecified,Jazz,2021,0,0,0,1
Vanessa Laurin,This Corrosion,Unspecified,Acoustic,2013,0,0,0,1
YakumO_YoshikI,This Corrosion,Unspecified,Metal,2016,0,0,0,1
Osiris Saline,This Corrosion,Rock,Alternative,2018,0,1,1,0
Excursia,This Corrosion,Metal,Metal,2017,1,0,1,0
Anathēma_Latēly,This Corrosion,Rock,Straight,2019,0,0,1,0
Brad Salyn,This Corrosion,Unspecified,Straight,2019,0,0,1,0
Covered In Flies,This Corrosion,Unspecified,Straight,2021,0,0,1,0
GD Luxxe,This Corrosion,Unspecified,Electronic,2014,0,0,1,0
gnarlyswine,This Corrosion,Unspecified,Straight,2011,0,0,1,0
Infest8,This Corrosion,Electronic,Electronic,2017,0,0,1,0
Joe Kazschwehrov ,This Corrosion,Unspecified,Acoustic,2018,0,0,1,0
La Belle Damned,This Corrosion,Goth,Metal,2016,0,0,1,0
Megan Lowe 1,This Corrosion,Rock,Alternative,2016,0,0,1,0
Memphis Grange Recordings,This Corrosion,Rock,Metal,2020,0,0,1,0
Powerful Kramler,This Corrosion,Unspecified,Straight,2014,0,0,1,0
Powers of Ten,This Corrosion,Unspecified,Straight,2021,0,0,1,0
resume,This Corrosion,Metal,Straight,2019,0,0,1,0
Sol Eyoka,This Corrosion,Goth,Acoustic,2015,0,0,1,0
"Steve Lieberman, The Gangsta Rabbi",This Corrosion,Unspecified,Industrial,2021,0,0,1,0
The Ghost Within & Kris Head,This Corrosion,Unspecified,Metal,2013,0,0,1,0
The Sleep Ritual,This Corrosion,Goth,Straight,2012,0,0,1,0
My Despair,This Corrosion,Darkwave,Straight,2019,0,1,0,0
Diane Birch,This Corrosion,Soul,Soul,2010,1,0,0,0
Excursia,This Corrosion,Metal,Metal,2017,1,0,0,0
Gary Brown,This Corrosion,Pop,Unknown,2018,1,0,0,0
New Tribute Kings,This Corrosion,Unspecified,Straight,2014,1,0,0,0
Chiptune Planet,Torch,Electronic,Electronic,2015,0,0,0,1
God Funk City,Torch,Unspecified,Alternative,2020,0,0,0,1
Red King,Torch,Unspecified,Alternative,2015,0,0,0,1
Rock Fantasma,Torch,Unspecified,Straight,2013,0,0,0,1
Adam Colegrove Personal,Torch,Goth,Straight,2014,0,0,1,0
Paranoid Android,Train,Unspecified,Straight,2016,0,0,1,1
Burning Gates,Train,Goth,Straight,2000,1,0,0,1
luke anthony,Train,Unspecified,Alternative,2015,0,0,0,1
Brad Salyn,Train,Unspecified,Straight,2019,0,0,1,0
The Council Of Days,Train,Goth,Straight,2014,0,0,1,0
Marcel Bartholo,Under The Gun,Unspecified,Acoustic,2016,0,0,0,1
Marcony,Under The Gun,Unspecified,Alternative,2019,0,0,0,1
Dave Prescott,Under The Gun,Electronic,Electronic,2019,0,0,1,0
The Brothers of Tyranny,Under The Gun,Electronic,Electronic,2013,0,0,1,0
Industrial Park,Valentine,Post Punk,Straight,2012,0,1,1,1
The House Of Usher,Valentine,Goth,Straight,2000,1,0,0,1
Halo,Valentine,Unspecified,Straight,2020,0,0,0,1
JADEaD,Valentine,Unspecified,Alternative,2014,0,0,0,1
Blumenhofen,Valentine,Goth,Straight,2021,0,0,1,0
Botchandango,Valentine,Goth,Straight,2012,0,0,1,0
Jandoyleband,Valentine,Darkwave,Darkwave,2015,0,0,1,0
Nmacog,Valentine,Goth,Straight,2012,0,0,1,0
Hybrid Spirits,Vision Thing,Alternative,Straight,2019,0,0,1,1
Alan Robert,Vision Thing,Unspecified,Straight,2021,0,0,0,1
Brian Larsen,Vision Thing,Unspecified,Straight,2021,0,0,0,1
DYSLEXIC FUDGICLE,Vision Thing,Unspecified,Straight,2012,0,0,0,1
Left of the Dial,Vision Thing,Unspecified,Straight,2016,0,0,0,1
madsmith,Vision Thing,Unspecified,Straight,2016,0,0,0,1
Prong,Vision Thing,Unspecified,Straight,2018,0,0,0,1
Sweet Noise,Vision Thing,Unspecified,Metal,2011,0,0,0,1
Transgression Zero,Vision Thing,Unspecified,Straight,2021,0,0,0,1
Wedding In Hades,Vision Thing,Unspecified,Metal,2010,0,0,0,1
Zombie Thirteen,Vision Thing,Unspecified,Straight,2021,0,0,0,1
Joe Crud,Vision Thing,Unspecified,Punk,2016,0,0,1,0
Lethal Dance,Vision Thing,Metal,Metal,2014,0,0,1,0
Skinjob,Vision Thing,Electronic,Electronic,2017,0,0,1,0
The Psychedelics,Vision Thing,Rock,Straight,2017,0,0,1,0
Tom Rattler,Vision Thing,Unspecified,Metal,2017,0,0,1,0
Microwaved,Vision Thing,Industrial,Industrial,2014,0,1,0,0
Kindred Spirits,Vision Thing,Unspecified,Darkwave,2005,1,0,0,0
Paradise Lost,Walk Away,Metal,Metal,2020,1,0,0,1
Shamefaces,Walk Away,Unspecified,Straight,2007,1,0,0,1
CWB Geraçao,Walk Away,Unspecified,Straight,2016,0,0,0,1
luke anthony,Walk Away,Unspecified,Straight,2015,0,0,0,1
Made Of Pain,Walk Away,Unspecified,Metal,2015,0,0,0,1
madsmith,Walk Away,Unspecified,Straight,2020,0,0,0,1
Multinational Polytechnic Corp,Walk Away,Unspecified,Electronic,2010,0,0,0,1
Nursery Rhymes,Walk Away,Unspecified,Straight,2020,0,0,0,1
Plastique Noir,Walk Away,Unspecified,Straight,2018,0,0,0,1
Rin Whitestag,Walk Away,Unspecified,Straight,2015,0,0,0,1
ROCKIN' PARTY,Walk Away,Unspecified,Straight,2008,0,0,0,1
The Guests,Walk Away,Unspecified,Straight,2011,0,0,0,1
Two Hands,Walk Away,Electronic,Electronic,2012,0,0,0,1
Vena Valley,Walk Away,Unspecified,Metal,2016,0,0,0,1
Carnival Star,Walk Away,Goth,Straight,2014,0,1,1,0
Botchandango,Walk Away,Goth,Straight,2013,0,0,1,0
Dave Prescott,Walk Away,Rock,Electronic,2019,0,0,1,0
Interstitial,Walk Away,Goth,Darkwave,2012,0,0,1,0
Brad Salyn,War On Drugs,Unspecified,Straight,2019,0,0,1,0
David Mawtus,"We Are The Same, Susanne",Unspecified,Electronic,2016,0,0,0,1
Never Mind,"We Are The Same, Susanne",Unspecified,Alternative,2012,0,0,0,1
Strangel,"We Are The Same, Susanne",Unspecified,Alternative,2008,0,0,0,1
T.N.V ( The Negative Visions ),"We Are The Same, Susanne",Unspecified,Straight,2014,0,0,0,1
Zombie Thirteen,"We Are The Same, Susanne",Unspecified,Straight,2021,0,0,0,1
Brad Salyn,"We Are The Same, Susanne",Rock,Straight,2019,0,0,1,0
Chdotcom,"We Are The Same, Susanne",Metal,Straight,2015,0,0,1,0
Layne Lyre,"We Are The Same, Susanne",Goth,Straight,2021,0,0,1,0
Never Mind,"We Are The Same, Susanne",Goth,Straight,2020,0,0,1,0
Oli Dee,"We Are The Same, Susanne",Rock,Alternative,2021,0,0,1,0
The Brothers of Tyranny,"We Are The Same, Susanne",Electronic,Electronic,2013,0,0,1,0
STELLAR CORPSES,When You Don't See Me,Unspecified,Straight,2016,0,0,1,1
8bit Goth,When You Don't See Me,Electronic,Electronic,2020,0,0,0,1
Aire,When You Don't See Me,Unspecified,Alternative,2010,0,0,0,1
atombuzz,When You Don't See Me,Unspecified,Straight,1996,0,0,0,1
Chiptune Planet,When You Don't See Me,Electronic,Electronic,2015,0,0,0,1
Demongrad,When You Don't See Me,Unspecified,Acoustic,2013,0,0,0,1
Dystopia of Truth,When You Don't See Me,Unspecified,Alternative,2020,0,0,0,1
Gravitational Pull,When You Don't See Me,Unspecified,Straight,2021,0,0,0,1
Illumini X,When You Don't See Me,Unspecified,Darkwave,2015,0,0,0,1
Lesbian Bed Death,When You Don't See Me,Unspecified,Metal,2014,0,0,0,1
Mark Wilkins,When You Don't See Me,Acoustic,Acoustic,2019,0,0,0,1
RAVEN SAID,When You Don't See Me,Unspecified,Straight,2017,0,0,0,1
Stevie Perez,When You Don't See Me,Acoustic,Acoustic,2017,0,0,0,1
TENEBRAS SEX,When You Don't See Me,Unspecified,Straight,2020,0,0,0,1
The Special Guests,When You Don't See Me,Unspecified,Straight,2019,0,0,0,1
Ислам Шахабов,When You Don't See Me,Acoustic,Acoustic,2017,0,0,0,1
Edbd,When You Don't See Me,Metal,Alternative,2020,0,1,1,0
Ariel-Agusto,When You Don't See Me,Goth,Straight,2013,0,0,1,0
John Waitz,When You Don't See Me,Rock,Acoustic,2018,0,0,1,0
kriskarter,When You Don't See Me,Experemental,Darkwave,2016,0,0,1,0
Moment24,When You Don't See Me,Alternative,Straight,2022,0,0,1,0
Samedy,When You Don't See Me,Goth,Straight,2013,0,0,1,0
Brad Salyn,Will I Dream?,Unspecified,Straight,2019,0,0,1,0
Tenebras Sex,You Could Be The One,Rock,Straight,2020,0,0,1,1
The Sisters Of Murphy,You Could Be The One,Goth,Straight,2016,0,0,0,1