-
Notifications
You must be signed in to change notification settings - Fork 16
/
data_by_artist.csv
We can't make this file beautiful and searchable because it's too large.
5855 lines (5855 loc) · 736 KB
/
data_by_artist.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
991
992
993
994
995
996
997
998
999
1000
artist_name,artist_id,danceability,energy,valence,tempo,loudness,mode,key,acousticness,instrumentalness,liveness,speechiness,duration_ms,popularity,count
Frank Sinatra,792507,0.384478451,0.238016728,0.36428824,110.1816983,-14.27114098,1,5,0.735648225,0.020854983,0.232105551,0.049614244,189179.9255,26.00438276,1369
Vladimir Horowitz,119107,0.343209611,0.118844275,0.22595087,94.90067854,-23.19341756,1,1,0.990070423,0.879507871,0.183812345,0.043359818,266541.1251,3.592377796,1207
Johnny Cash,816890,0.619803442,0.449381159,0.680662319,115.0377473,-11.59310417,1,10,0.685636884,0.022646551,0.242242663,0.098216123,162279.2672,26.61413043,1104
Billie Holiday,79016,0.57263653,0.201368037,0.498934429,109.9121717,-13.22596621,1,5,0.90849863,0.013063617,0.217726758,0.062431781,185131.453,15.62100457,1095
Bob Dylan,66915,0.512597985,0.477932051,0.5519337,126.1601493,-11.18432967,1,7,0.562566789,0.03421143,0.308977656,0.06453489,256713.4203,30.86080586,1092
The Rolling Stones,894465,0.524446377,0.719914976,0.655331787,123.7647169,-7.830264734,1,0,0.293788178,0.176137057,0.268443382,0.051439903,229705.9623,34.57391304,1035
The Beach Boys,41874,0.502944668,0.532130785,0.633956539,125.9920362,-9.925742455,1,9,0.398488245,0.115362907,0.191189235,0.043970624,148845.0946,27.95774648,994
Elvis Presley,180228,0.495843434,0.426307677,0.621249495,111.4894535,-12.8937303,1,0,0.741411858,0.05362297,0.247345859,0.058278485,156211.0354,33.39191919,990
Wolfgang Amadeus Mozart,26350,0.353346375,0.137869382,0.330528998,108.6043401,-20.17425693,1,7,0.961572495,0.508880787,0.188827825,0.068484861,329702.9243,8.936034115,938
Miles Davis,423829,0.460220602,0.308228565,0.417860185,113.5503819,-14.52661921,0,0,0.65571081,0.205073002,0.21976169,0.054571065,404023.4456,22.70023148,864
Ella Fitzgerald,184502,0.429264195,0.241637312,0.391095829,109.0629768,-13.24842526,1,0,0.832413673,0.005059539,0.213361761,0.060491889,213098.657,21.38122827,863
Dean Martin,813392,0.466482284,0.219624242,0.474845455,111.1737389,-14.47550583,1,7,0.866595571,0.025948981,0.179187762,0.043719231,160655.7145,19.28088578,858
Queen,858827,0.459114918,0.60251049,0.4334,116.6664371,-9.828904429,1,2,0.283186275,0.031742966,0.268521795,0.071037179,231867.1678,32.54778555,858
Lata Mangeshkar,132940,0.500360234,0.302660234,0.649,115.4179041,-12.30304561,1,1,0.945985965,0.262416525,0.208230643,0.08542538,214242.1953,4.088888889,855
Glenn Gould,803752,0.359996871,0.222202383,0.643841877,110.2414549,-22.1191444,1,7,0.980315283,0.866343671,0.139213117,0.047417329,191915.2335,18.58724428,831
The Beatles,754032,0.521975456,0.546826974,0.619659538,121.0747461,-9.682696233,1,0,0.360355932,0.051906132,0.223001337,0.053395018,174307.87,48.06075334,823
Fleetwood Mac,182900,0.577665829,0.517276131,0.607894221,123.283103,-11.97356533,1,9,0.359766385,0.130338418,0.243842211,0.041397739,240890.6935,34.87437186,796
Led Zeppelin,139026,0.42156213,0.688843195,0.505987574,118.8871657,-10.20231657,1,2,0.223537225,0.158420879,0.22633284,0.062070414,327086.2959,41.41715976,676
Bob Marley & the Wailers,69402,0.742844884,0.547612211,0.749334983,120.298637,-9.665752475,1,9,0.204243982,0.028482358,0.289808581,0.153062046,273496.7739,43.1320132,606
Nina Simone,411761,0.444465378,0.331484605,0.454504042,114.4809772,-13.37796134,1,9,0.779938278,0.03847298,0.290231986,0.058175747,233122.2689,28.67486819,569
Elton John,796734,0.523767606,0.586008451,0.53085,128.0431092,-9.655693662,1,0,0.350958617,0.011542424,0.222402641,0.04238081,278983.8732,38.0915493,568
Stevie Wonder,622805,0.558972376,0.525656354,0.615994475,113.8077606,-12.02628177,1,1,0.343211304,0.025125901,0.18320884,0.054625046,246756.512,34.48066298,543
Marvin Gaye,316834,0.541295203,0.557293358,0.649764576,116.1497196,-10.73299077,0,0,0.423244207,0.137062139,0.230760148,0.049913838,231409.1771,32.38560886,542
Leonard Bernstein,239859,0.323771904,0.211741155,0.238651756,105.1448743,-19.34347505,1,5,0.87542329,0.506012168,0.227327357,0.085401294,331077.6007,10.83918669,541
The Who,577627,0.472034749,0.723826255,0.503839768,127.2440116,-8.821011583,1,2,0.223891963,0.069391678,0.252487645,0.062551158,239976.7066,29.76833977,518
Willie Nelson,583959,0.562986408,0.374104078,0.498713786,115.3286777,-12.91758252,1,2,0.607378796,0.036486833,0.211956699,0.045695728,190564.066,31.80970874,515
Grateful Dead,988440,0.558651072,0.51783115,0.629833918,120.6570078,-12.06088889,1,9,0.437857817,0.134282647,0.327447953,0.045292008,337784.3119,32.39961014,513
John Coltrane,175553,0.460081028,0.356163241,0.432656126,116.3647688,-13.19754348,1,0,0.681216522,0.1455987,0.177910277,0.053308103,431693.1897,22.72727273,506
Thelonious Monk,490416,0.547653768,0.286609776,0.399822403,113.4160835,-14.32149287,1,5,0.818879837,0.497480118,0.143676986,0.059595316,294534.1202,18.48676171,491
Vicente Fernández,197424,0.468611452,0.399770961,0.57392229,116.0002904,-7.310529652,1,7,0.564035174,0.004577476,0.249567485,0.041898978,184993.9223,37.84458078,489
Oscar Peterson,489316,0.556848548,0.170209959,0.394861203,103.1299149,-19.70441494,1,0,0.928363071,0.766649263,0.124203527,0.0473639,211745.1452,14.7406639,482
Metallica,446509,0.361067227,0.903907563,0.339061765,125.0781345,-6.299273109,1,4,0.020060711,0.228038739,0.346835294,0.099903361,369913.1555,40.02941176,476
U2,219203,0.444403548,0.680154324,0.439485366,126.8481596,-9.94475388,1,8,0.123511885,0.128396536,0.30409867,0.045547894,265289.745,40.35698448,451
David Bowie,531986,0.497813004,0.595268161,0.547633632,122.769713,-11.26176906,1,0,0.254577359,0.076402439,0.208974888,0.059765695,242765.4619,41.72869955,446
Waylon Jennings,200791,0.597305618,0.491511461,0.638937978,114.4721011,-12.29962697,1,2,0.493005888,0.08540917,0.223470562,0.038269888,178821.5101,30.61797753,445
The Kinks,100160,0.547176471,0.707960181,0.675529864,122.030543,-8.109782805,1,7,0.296287014,0.022411033,0.183461538,0.055244344,186075.7285,29.97737557,442
Red Hot Chili Peppers,883318,0.547803653,0.82326484,0.509851142,117.0217306,-5.578041096,1,0,0.056689477,0.075691456,0.181637443,0.077571689,241409.3881,47.77625571,438
Javier SolÃs,216348,0.445315668,0.304842396,0.541974654,112.1560553,-11.51971889,1,0,0.820225806,0.002557258,0.250377419,0.036712212,168732.235,21.7235023,434
Aretha Franklin,927555,0.551486175,0.431235023,0.573806912,118.9340783,-10.75780415,1,0,0.604369677,0.00593847,0.259547696,0.060275576,217687.3664,30.86635945,434
Doris Day,189644,0.420640187,0.162301262,0.344906542,110.1250023,-15.27329206,1,0,0.876114486,0.008417077,0.197784813,0.04798785,170319.3925,13.86448598,428
George Strait,944084,0.624835681,0.484185446,0.563316901,122.6792113,-11.66871831,1,9,0.324950704,0.004746328,0.183237793,0.031178169,186386.8944,40.73943662,426
Van Morrison,307461,0.551522673,0.503299761,0.602200477,118.6375967,-11.26361337,1,7,0.400265994,0.025422724,0.229074224,0.056894033,275735.8735,34.97613365,419
Pink Floyd,346336,0.383257971,0.415595169,0.257658454,116.3254058,-15.17795169,1,7,0.38833553,0.299680868,0.353276812,0.059262802,313983.4928,45.28985507,414
Taylor Swift,472102,0.604399002,0.637630923,0.430920698,122.5748853,-6.077264339,1,7,0.179621172,0.000451794,0.154198504,0.052562594,239166.4414,57.159601,401
Sam Cooke,238115,0.463562025,0.451452911,0.60201519,113.2412253,-10.26968861,1,7,0.699296203,0.000255808,0.284136709,0.062101772,170138.6987,29.12911392,395
Billy Joel,85915,0.540984772,0.614515736,0.548052284,122.1437081,-9.268149746,1,0,0.366408325,0.02118912,0.258006599,0.058816497,260732.5457,40.14213198,394
Eric Clapton,187478,0.570606218,0.562859067,0.65373057,115.8703964,-11.2024456,1,7,0.35756916,0.15113145,0.344960881,0.052336269,271236.5907,36.01036269,386
Kiss,84209,0.501890052,0.857272251,0.55270733,129.668288,-6.994324607,1,1,0.170690924,0.073508203,0.340297382,0.081953927,226660.3298,35.87958115,382
Sarah Vaughan,204901,0.396687664,0.217473753,0.30104042,110.0801732,-13.60581627,1,10,0.869632546,0.000530908,0.231904987,0.049848294,192804.0682,15.3648294,381
John Williams,232480,0.271184392,0.176113545,0.174891534,103.9731587,-21.31712698,1,2,0.845084656,0.731911827,0.148706085,0.045877249,248382.4339,37.62169312,378
John Williams,1535255,0.271184392,0.176113545,0.174891534,103.9731587,-21.31712698,1,2,0.845084656,0.731911827,0.148706085,0.045877249,248382.4339,37.62169312,378
Talking Heads,131650,0.688538462,0.685092838,0.78321008,120.8723793,-9.406119363,1,2,0.146157695,0.118400668,0.279417772,0.049186472,260634.6472,36.22281167,377
Nat King Cole,317093,0.43465252,0.285111671,0.433865517,108.2423899,-13.58807427,1,0,0.78894695,0.077701568,0.178209019,0.05117374,164644.1565,24.41909814,377
Jimmy Buffett,350840,0.636127321,0.462122016,0.667419098,122.4274191,-13.3606313,1,7,0.371228806,0.009146047,0.186968435,0.043740318,226808.9204,34.4403183,377
Michael Jackson,467203,0.709715818,0.693224129,0.625393029,118.0909464,-7.211120643,1,11,0.255300434,0.045984616,0.196164879,0.069310456,265750.5737,48.61930295,373
Charles Mingus,9680,0.440409836,0.30293306,0.417417486,110.2909044,-15.56231148,1,5,0.691750273,0.238548155,0.220114208,0.063169399,393268.1066,16.63934426,366
The Cure,137390,0.576353591,0.699245912,0.571833149,129.6035055,-8.730930939,1,9,0.181891675,0.320825361,0.200335083,0.056762983,262027.8757,31.93646409,362
Genesis,199995,0.432175758,0.564746667,0.37555697,118.4097697,-11.26315758,1,7,0.254499173,0.105257869,0.25935697,0.04692,339852.897,30.45454545,330
Bill Evans Trio,781423,0.469152439,0.190610976,0.278113415,103.380061,-19.69291463,0,0,0.866676829,0.692688766,0.235028049,0.040917683,322456.4268,21.68292683,328
R.E.M.,325459,0.464802469,0.69312963,0.651211728,135.5778333,-9.491487654,1,2,0.142961451,0.113768794,0.180861111,0.041343827,230260.6481,36.84567901,324
Otis Redding,414251,0.630033951,0.396172531,0.625958642,128.8249722,-11.3287963,1,9,0.442303642,0.01453375,0.203656481,0.056233642,176261.0154,33.24691358,324
Bruce Springsteen,530745,0.466175,0.624289375,0.525870625,123.342775,-10.98615,1,5,0.236827075,0.022460991,0.399375,0.0514625,274719.1625,44.2,320
The Moody Blues,404434,0.366956113,0.489456426,0.406702194,114.1238527,-11.35815674,1,9,0.408954276,0.195887624,0.252684639,0.044727586,245753.6395,26.84952978,319
Asha Bhosle,615026,0.560216301,0.385200313,0.711097179,116.0947335,-10.55078997,1,3,0.917868339,0.170894864,0.227716928,0.165235423,234198.4044,4.990595611,319
Eagles,144847,0.528910256,0.547980769,0.563167949,115.7013846,-9.780705128,1,7,0.301341776,0.068530367,0.347826282,0.036770513,265786.4295,45.16666667,312
Peggy Lee,256349,0.580865385,0.232966346,0.514472436,115.5777372,-13.53125,1,7,0.808608974,0.017584907,0.176266346,0.051461859,166680.7212,18.95192308,312
Nirvana,355142,0.431448718,0.763891026,0.438763462,134.3521282,-8.324307692,1,1,0.107785083,0.107125463,0.179405769,0.061502564,213553.2564,46.11538462,312
Nirvana,357406,0.431448718,0.763891026,0.438763462,134.3521282,-8.324307692,1,1,0.107785083,0.107125463,0.179405769,0.061502564,213553.2564,46.11538462,312
Peggy Lee,467749,0.580865385,0.232966346,0.514472436,115.5777372,-13.53125,1,7,0.808608974,0.017584907,0.176266346,0.051461859,166680.7212,18.95192308,312
John Prine,814751,0.554326861,0.355010615,0.623508091,127.2847573,-15.7017055,1,7,0.558669903,0.004478615,0.216712945,0.039378964,208662.9935,35.54368932,309
Sonny Rollins,39656,0.532691558,0.382186364,0.587905844,113.6747565,-13.38235065,1,0,0.65249026,0.230452631,0.223808442,0.068841883,392076.5877,15.10714286,308
James Taylor,204386,0.605493506,0.340864286,0.509705195,111.0115909,-14.25425974,1,0,0.548295455,0.014883075,0.20443961,0.039788312,213511.9773,35.33116883,308
James Taylor,600069,0.605493506,0.340864286,0.509705195,111.0115909,-14.25425974,1,0,0.548295455,0.014883075,0.20443961,0.039788312,213511.9773,35.33116883,308
Chet Baker,94210,0.496606557,0.188885279,0.388791475,113.0094689,-15.80579016,1,0,0.901665574,0.444739584,0.153475082,0.045597377,242828.7246,23.94754098,305
Rush,203008,0.447393443,0.780438033,0.472221639,130.5766951,-9.191606557,1,2,0.091619336,0.097679931,0.334876066,0.052228852,353015.1246,35.96721311,305
Prince,361393,0.70057,0.549739333,0.624882,120.4341133,-12.22543333,1,1,0.199075553,0.062658519,0.221938,0.074522333,304491.34,41.02666667,300
AC/DC,574772,0.46912,0.850753333,0.495099333,128.7065667,-4.80952,1,9,0.030241769,0.227545577,0.291534,0.07204,263588.7333,48.84,300
Prince,1426748,0.70057,0.549739333,0.624882,120.4341133,-12.22543333,1,1,0.199075553,0.062658519,0.221938,0.074522333,304491.34,41.02666667,300
Prince,1589051,0.70057,0.549739333,0.624882,120.4341133,-12.22543333,1,1,0.199075553,0.062658519,0.221938,0.074522333,304491.34,41.02666667,300
Ramones,490004,0.433885135,0.881378378,0.730643243,161.842,-4.574844595,1,9,0.052094186,0.104842526,0.213824324,0.065688514,146842.2432,34.47972973,296
Neil Young,379125,0.511676871,0.397088776,0.494641497,126.1676871,-12.94232653,1,7,0.460808884,0.046175556,0.256286054,0.037686054,254191.5612,38.60544218,294
Julie London,247966,0.425232877,0.188913014,0.275021918,106.0867123,-14.6087911,1,10,0.815054795,0.006661404,0.164767808,0.047036986,156406.7842,21.18150685,292
Los Tigres del Norte,806336,0.753951724,0.518851724,0.893810345,123.4230414,-9.289872414,1,9,0.379285172,0.00015533,0.163390345,0.118936897,186968.8241,43.72068966,290
Stan Getz,742899,0.50130662,0.237281533,0.523630314,113.3128502,-16.69555401,1,5,0.87787108,0.313541324,0.163593031,0.047589547,305771.3937,21.55749129,287
Green Day,154544,0.403967972,0.898067616,0.656615658,138.0061352,-4.260135231,1,1,0.018499016,0.020254642,0.196684342,0.071501068,204988.3381,47.9252669,281
Marty Robbins,858710,0.578661922,0.339301779,0.547684698,114.5748007,-11.80440569,1,4,0.79980427,0.008368442,0.183820641,0.040553025,180774.1922,25.2455516,281
Bill Evans,61912,0.484232143,0.226041964,0.356796071,103.7140321,-17.88647857,1,0,0.879192857,0.63469645,0.1352225,0.0430875,310919.1286,25.90357143,280
Bill Evans,74005,0.484232143,0.226041964,0.356796071,103.7140321,-17.88647857,1,0,0.879192857,0.63469645,0.1352225,0.0430875,310919.1286,25.90357143,280
Bill Evans,764702,0.484232143,0.226041964,0.356796071,103.7140321,-17.88647857,1,0,0.879192857,0.63469645,0.1352225,0.0430875,310919.1286,25.90357143,280
Bee Gees,43714,0.558565056,0.510841636,0.597417844,107.1190781,-11.20418959,1,7,0.247673801,0.046172442,0.245669145,0.039677695,228251.3048,42.55390335,269
"Hank Williams, Jr.",117844,0.61872119,0.5316,0.650446097,116.3872454,-11.89030483,1,2,0.235157546,0.00091504,0.156217844,0.043622677,201087.342,35.99256506,269
Journey,291043,0.410356877,0.742483271,0.422063941,129.048171,-7.296828996,1,2,0.121833643,0.024602227,0.295605204,0.051767658,241786.7323,38.69144981,269
Depeche Mode,239921,0.614565543,0.686983521,0.605942697,122.395015,-10.61937828,1,0,0.242001491,0.22536953,0.219982397,0.040368539,266381.1536,34.65543071,267
Wings,956707,0.512932331,0.477409774,0.536397744,120.5492857,-12.24533835,1,2,0.316918767,0.052452587,0.322315789,0.047667669,244458.8421,34.92481203,266
Neil Diamond,864209,0.470415094,0.429215094,0.516642264,109.5706642,-13.32308302,1,9,0.412820747,0.04412927,0.22398566,0.043433208,205188.1509,35.5509434,265
Electric Light Orchestra,163229,0.49255303,0.56544697,0.532084848,122.037053,-9.983310606,1,9,0.450906288,0.06431968,0.265526515,0.040286364,247267.5,39.40909091,264
Aerosmith,604852,0.440015152,0.790477273,0.536305303,127.8730152,-7.660575758,1,9,0.078510877,0.033241413,0.263157576,0.04770303,266323.1364,40.34090909,264
Henry Mancini,678009,0.481968061,0.360790875,0.465709506,114.0843194,-13.68091635,1,0,0.775519392,0.495249366,0.140302662,0.036779468,166908.2662,19.7756654,263
Jackie Gleason,781399,0.207337643,0.261545247,0.136297338,97.0716692,-14.54041825,1,5,0.860669202,0.700557911,0.191253232,0.059745247,183971.2738,10.84030418,263
The Clash,75747,0.587847328,0.720984733,0.72319084,135.973084,-9.640061069,1,0,0.168645954,0.097506387,0.216041985,0.079187023,211560.8168,37.12977099,262
The Byrds,631774,0.469870229,0.57978626,0.662279389,120.5693893,-10.16083206,1,2,0.334328288,0.059134075,0.239381679,0.037782443,167257.4122,27.98473282,262
George Jones,944310,0.560083969,0.398629771,0.58990458,110.2770725,-11.88455725,1,7,0.600629771,0.006129247,0.211716412,0.038306489,165777.4046,28.71755725,262
B.B. King,59156,0.560192308,0.530993077,0.650284615,111.3493,-8.788769231,1,2,0.582336808,0.045337487,0.255784231,0.074404615,234464.7038,24.42692308,260
Sublime,486047,0.625940711,0.6366,0.602150198,110.4285455,-7.442711462,1,9,0.195147443,0.067418704,0.228813439,0.118516206,195151.7826,43.68379447,253
The Allman Brothers Band,745964,0.433880952,0.622920635,0.619611111,121.4961587,-11.12080952,1,2,0.331065,0.284138331,0.40630873,0.044062698,410198.1429,31.42857143,252
Dolly Parton,175286,0.576756,0.4114408,0.578124,114.726292,-11.248412,1,2,0.6101024,0.006576853,0.1782796,0.043718,181239.884,35.7,250
John Denver,811622,0.454088,0.3067312,0.501316,114.8428,-13.390004,1,7,0.6837224,0.00754684,0.2399684,0.053508,209270.52,35.256,250
Juan Gabriel,240252,0.55562753,0.417235628,0.654376518,125.6119393,-11.96406073,1,2,0.500041296,0.014073809,0.239296356,0.050465587,237622.5425,44.7611336,247
Santana,295756,0.497556911,0.64892439,0.616768293,125.7953374,-11.71621951,1,7,0.269571423,0.390385584,0.228116667,0.056142683,284211.4756,37.56097561,246
The Doors,114342,0.515804082,0.50487102,0.573706939,123.7465592,-12.87914286,1,9,0.387784653,0.072855605,0.261726531,0.089659592,218486.0531,43.51428571,245
The Weeknd,2674162,0.574808163,0.607873469,0.305189388,125.1252612,-7.230853061,0,0,0.271439469,0.010594388,0.201727755,0.086811429,273594.298,63.02040816,245
Dizzy Gillespie,162677,0.525371901,0.40945,0.580780992,119.0830909,-12.57143388,1,5,0.717049587,0.294046619,0.235383884,0.088381405,265951.4835,13.88429752,242
Judas Priest,246611,0.379957851,0.832305785,0.349302479,129.3976281,-5.981735537,1,9,0.035163908,0.048618117,0.315429752,0.080131405,262952.3967,36.91735537,242
The Isley Brothers,766893,0.579301653,0.593169421,0.696127273,122.516376,-9.67327686,1,11,0.477355934,0.020141207,0.22269876,0.066789256,252383.4835,31.68181818,242
The Smiths,899530,0.492231405,0.76953719,0.643503306,133.2931818,-7.345628099,1,4,0.108073433,0.073721497,0.249724793,0.046900826,225778.4132,46,242
ABBA,922728,0.575636364,0.647973554,0.667264463,121.8772314,-8.497115702,1,9,0.354483554,0.027731695,0.192939669,0.036741322,234265.7686,40.81818182,242
Creedence Clearwater Revival,131627,0.590091286,0.659186722,0.719427386,125.9987884,-9.559593361,1,2,0.123862098,0.130654605,0.247217427,0.045328216,217635.7137,45.26556017,241
Stevie Ray Vaughan,625739,0.433954167,0.637398333,0.622095833,126.1607708,-11.2536125,1,8,0.165813459,0.268776023,0.343759167,0.04970375,292606.725,37.94583333,240
Madonna,237205,0.691415254,0.668088136,0.6425,116.6145339,-9.514936441,1,0,0.221493466,0.050594032,0.136962288,0.047975424,286653.2542,47.44491525,236
Tom Waits,615119,0.541254237,0.337660424,0.454927966,113.1934915,-14.07751695,1,0,0.710422881,0.088132284,0.210289831,0.095911864,232713.3136,36.5,236
Madonna,1482685,0.691415254,0.668088136,0.6425,116.6145339,-9.514936441,1,0,0.221493466,0.050594032,0.136962288,0.047975424,286653.2542,47.44491525,236
John Mayer,239827,0.5866,0.535845957,0.4726,116.3503702,-8.77767234,1,7,0.385685957,0.041373221,0.278304681,0.038072766,263429.2426,56.14042553,235
Chris Brown,266063,0.660851064,0.640302128,0.486374468,116.2677149,-5.966251064,0,1,0.101892438,0.0000783,0.17256383,0.130031489,232704.4298,59.50638298,235
Alan Jackson,605375,0.631982833,0.532313305,0.581227468,124.435133,-9.479321888,1,7,0.324598712,0.004498584,0.169339914,0.03096309,210317.5708,44.73819742,233
Carmen Miranda,181694,0.707340517,0.321103448,0.839594828,115.7033448,-14.93200862,1,3,0.869590517,0.095969907,0.161414655,0.141951724,167915.9353,0.301724138,232
Chicago,110161,0.513408696,0.644233913,0.494073043,123.3195217,-8.142921739,1,0,0.255722709,0.118550492,0.184444348,0.052094783,257483.9565,35.57391304,230
Joni Mitchell,270491,0.530086957,0.281313043,0.44044087,112.3445217,-13.55567826,1,2,0.796693913,0.011046536,0.222925217,0.042878261,244066.1826,36.51304348,230
Bob Seger,72041,0.521458515,0.779864629,0.518900437,127.9662096,-5.713349345,1,9,0.165067231,0.026074295,0.360339738,0.067414847,261668.048,38.04366812,229
Phil Collins,337119,0.566262009,0.615571179,0.479417467,120.7830087,-8.933755459,1,5,0.322067834,0.077388281,0.215041048,0.044729694,262550.1616,44.75982533,229
Brian Eno,617196,0.315284279,0.261929956,0.233120961,104.0603712,-21.52916594,1,0,0.68806393,0.653108127,0.154937118,0.045024017,314970.1179,35.23580786,229
Frank Zappa,138699,0.471504425,0.626924779,0.581695575,123.9048274,-11.66858407,1,9,0.230758626,0.138717647,0.345417699,0.111336726,284193.5044,30.92920354,226
Los Bukis,833631,0.638044248,0.542433628,0.736513274,118.449469,-12.06022124,1,7,0.282396195,0.013567168,0.222712389,0.042180531,211483.4513,44.01769912,226
Antonio Aguilar,783909,0.560808889,0.404395556,0.841546667,137.4658844,-8.165377778,1,5,0.691512889,0.000230594,0.247951111,0.062758667,184324.8756,44.04,225
blink-182,757342,0.420121076,0.902973094,0.534625112,129.3624081,-5.954780269,1,11,0.018360797,0.022928452,0.280930045,0.083586099,181505.7803,48.65919283,223
Van Halen,260206,0.451810811,0.796585586,0.514382883,125.2862973,-8.482036036,1,8,0.130523054,0.062330957,0.183118018,0.068594595,232472.4234,43.05405405,222
Lefty Frizzell,190946,0.654932127,0.288664253,0.68859276,117.6458959,-12.64204525,1,4,0.746099548,0.005640214,0.161595023,0.035748416,162667.6154,9.954751131,221
Black Sabbath,771438,0.347427273,0.625708182,0.414307273,128.2412182,-11.72609091,1,9,0.137177332,0.152759764,0.195839091,0.051712727,319529.9545,35.67272727,220
Chuck Berry,120521,0.627401826,0.61643379,0.809753425,126.1924064,-10.25932877,1,0,0.683166301,0.120010244,0.192289498,0.061202283,157233.2922,29.72146119,219
The Dave Brubeck Quartet,142767,0.570415525,0.27113242,0.532666667,117.6735205,-16.47644292,0,5,0.785747032,0.371065711,0.235538813,0.045250685,337675.2831,21.21917808,219
Linda Ronstadt,686897,0.477657534,0.308821461,0.45413242,119.9540548,-13.23652968,1,0,0.550909836,0.008865686,0.162990868,0.035678082,196678.8356,32.51141553,219
Yes,685647,0.409238532,0.625788991,0.470899083,116.8221193,-9.560899083,1,9,0.228025596,0.148798197,0.245587156,0.053649541,411209.2936,33.33027523,218
Simon & Garfunkel,38936,0.449777778,0.365834259,0.498018519,114.6677593,-15.19071296,1,2,0.606558333,0.037404959,0.288266667,0.050705556,181690.0926,44.81481481,216
Kenny Chesney,68551,0.613157407,0.637194444,0.507143519,127.1594306,-7.817361111,1,7,0.201297407,0.002230684,0.185990741,0.039343519,238033.662,49.78703704,216
Luis Miguel,311680,0.501203704,0.621231481,0.479717593,123.2095278,-8.206787037,1,0,0.359390741,0.000567788,0.197405556,0.038814815,226163,52.2037037,216
Barbra Streisand,855531,0.364187963,0.295540278,0.295737037,107.0297824,-13.62372685,1,9,0.722081296,0.0166308,0.206386574,0.069607407,227347.9259,30.95833333,216
The Temptations,569685,0.595934884,0.551949767,0.731865116,118.6415814,-10.16135814,1,0,0.42869907,0.020458421,0.17908,0.043233953,220816.3302,30.53023256,215
Linkin Park,289599,0.551439252,0.852168224,0.471693925,120.2251636,-5.03721028,1,9,0.074499743,0.033996128,0.273914953,0.099327103,208277.8879,54.92523364,214
Jimi Hendrix,354105,0.424588785,0.716460748,0.53921028,120.2870935,-8.709448598,1,8,0.211139309,0.173331242,0.266326168,0.098659813,247888.3645,42.34579439,214
ZZ Top,690254,0.566728972,0.699850467,0.675056075,122.6733738,-9.818429907,1,7,0.15148215,0.100722457,0.220536449,0.055166355,223918.5421,39.76635514,214
Maria Callas,740576,0.297065421,0.167565654,0.151766355,96.50630374,-16.56410748,1,2,0.97478972,0.074306931,0.232441121,0.063324766,228590.9766,8.08411215,214
Alabama,936206,0.550579439,0.471923364,0.549300935,116.422229,-12.20866355,1,7,0.263359533,0.000867208,0.231711215,0.039712617,243665.3271,36.07009346,214
Beyoncé,761179,0.580650943,0.596632075,0.460196698,124.0665377,-7.239061321,1,1,0.201047075,0.009554293,0.209908019,0.156194811,248368.4858,58.78301887,212
Antônio Carlos Jobim,781837,0.494698113,0.259355189,0.459161321,119.6893726,-17.02258491,1,2,0.729386792,0.287882644,0.158024057,0.047637736,205532.1226,37.81603774,212
The Band,38490,0.550151659,0.624270142,0.632281517,119.2822607,-9.367265403,1,0,0.38096019,0.040830955,0.284981991,0.063416588,247693.8341,32.26066351,211
Def Leppard,193320,0.486759615,0.865259615,0.489104808,122.8731779,-6.698259615,1,2,0.017183523,0.103833115,0.259557692,0.055485096,278233.0673,39.3125,208
José Alfredo Jiménez,267411,0.475043269,0.296105769,0.654413462,122.2161875,-12.3570625,1,0,0.695934135,0.0000937,0.260779808,0.062475,163613.1779,31.00961538,208
Harry Belafonte,952794,0.52478744,0.292848309,0.559783575,113.9339807,-14.8793913,1,5,0.815231884,0.011536233,0.261300966,0.152251208,220073.7874,19.73429952,207
Steely Dan,11707,0.673582524,0.523514563,0.709961165,116.0482427,-11.61228155,1,2,0.31531767,0.020056033,0.144756311,0.041818447,273574.4272,40.23300971,206
James Brown,128099,0.715538835,0.575140777,0.718131068,111.606301,-9.943849515,1,0,0.397507767,0.08310238,0.215480583,0.111401456,278525.6699,33.38349515,206
The Ventures,921965,0.560135922,0.610757282,0.751562136,125.1061068,-11.8032233,1,9,0.601995728,0.685292369,0.213166019,0.038966019,138745.5146,17.6407767,206
Paul Simon,31685,0.584126829,0.415799024,0.537373659,110.3826341,-13.53254146,1,5,0.641811707,0.043405401,0.152079512,0.049347805,222674.4244,39.46829268,205
Charlie Chaplin,205627,0.389520976,0.300586244,0.364654634,107.2892537,-12.6744,1,6,0.80755122,0.613660817,0.323931707,0.117956098,230517.9122,1.775609756,205
Dinah Washington,260038,0.441668293,0.242009756,0.381358049,109.1384537,-13.11069756,1,0,0.829721951,0.027092565,0.211625854,0.053166341,206142.2878,18.05853659,205
Mariah Carey,262255,0.572691176,0.55995098,0.418808824,119.6576863,-8.089406863,1,7,0.354196961,0.00070136,0.176653431,0.054518627,253607.4657,47.94607843,204
Rihanna,367188,0.634357843,0.674759804,0.485110784,121.6196618,-5.754617647,1,1,0.150559049,0.004765474,0.166439216,0.08275,226613.8775,61.74019608,204
Daryl Hall & John Oates,674887,0.68064532,0.581857143,0.790817734,123.8199951,-10.28271921,1,5,0.273099409,0.021960217,0.125738916,0.04984532,240561.931,37.09852217,203
Iron Maiden,98465,0.294475248,0.914564356,0.419585149,125.8152673,-5.762019802,0,4,0.047060097,0.168419667,0.326350495,0.086731683,326300.5842,35.37623762,202
The Monkees,478603,0.52409901,0.62439604,0.681920792,119.0059307,-8.866534653,1,9,0.386422772,0.028989162,0.223984158,0.052805941,157683.6436,27.00990099,202
Lana Del Rey,2784799,0.424039604,0.549543564,0.259012871,115.4191733,-8.288321782,0,1,0.427010693,0.021374513,0.18324703,0.055330693,260325.6089,57.5990099,202
Charlie Parker,211758,0.492745,0.429547,0.6180575,117.15909,-10.88124,1,5,0.797565,0.182118386,0.232285,0.0780215,205420.01,16.97,200
Radiohead,326249,0.39239,0.55309,0.313472,115.79744,-10.1004,1,7,0.327631419,0.35020589,0.171157,0.048833,249518.33,54.07,200
Townes Van Zandt,744796,0.5351,0.251593,0.51026,113.09222,-17.03481,1,4,0.73524,0.013536275,0.292002,0.068615,205984.25,29.4,200
Ray Charles,46861,0.517291457,0.309996985,0.564341709,115.721402,-13.24347236,1,5,0.745327638,0.090994824,0.220852261,0.074835678,202785.3819,27.57286432,199
Wes Montgomery,248392,0.553686869,0.306805859,0.584666667,118.2245808,-17.24870707,0,0,0.830085859,0.443500939,0.25069596,0.044814646,298052.3081,22.6010101,198
Erroll Garner,206967,0.498622449,0.350762245,0.383732653,114.7005204,-15.59267347,1,5,0.913061224,0.810156531,0.447493878,0.076116327,239402.7041,10.13265306,196
George Harrison,209142,0.519632653,0.574337755,0.541394898,121.7292551,-10.37144898,1,4,0.346337847,0.097843306,0.196373469,0.035242857,245146.5408,38.08163265,196
Little Richard,824022,0.561571429,0.605826531,0.791214286,122.4199592,-8.870214286,1,0,0.53707551,0.010752696,0.197990816,0.074912245,168048.3776,27.29591837,196
Donovan,799053,0.543933333,0.369894359,0.540244103,116.2806205,-13.75712821,1,0,0.526343487,0.116383864,0.160233846,0.050106154,186215.1385,27.62051282,195
Donovan,1276114,0.543933333,0.369894359,0.540244103,116.2806205,-13.75712821,1,0,0.526343487,0.116383864,0.160233846,0.050106154,186215.1385,27.62051282,195
Lynyrd Skynyrd,170369,0.48242268,0.666371134,0.650270103,126.6334742,-9.825051546,1,7,0.220512004,0.035727221,0.343887629,0.048177835,317731.366,40.59278351,194
Ennio Morricone,798662,0.26099433,0.33283666,0.124628351,97.10174227,-14.17401546,1,2,0.811434021,0.741997357,0.146924742,0.049360309,158580.7732,32.43298969,194
One Direction,2766592,0.584391753,0.768134021,0.547463918,128.6486495,-4.549010309,1,2,0.102126451,1.80E-06,0.178460825,0.048473196,204715.1443,65.19587629,194
Jack Johnson,120010,0.734352332,0.44202487,0.56315544,117.6356114,-9.832020725,1,0,0.536486528,0.030076262,0.172395855,0.059130052,200673.4197,51.78238342,193
Fall Out Boy,170879,0.52846114,0.902502591,0.55653886,137.888544,-3.897917098,1,2,0.02231018,0.004561984,0.279496373,0.07301658,211516.7306,53.70466321,193
Martin Denny,311074,0.502569948,0.371630052,0.45386943,122.2556373,-14.66090155,1,7,0.621645389,0.266916479,0.165628497,0.04929171,154553.0155,13.73056995,193
Muddy Waters,608701,0.555658031,0.491476684,0.616145078,121.495171,-10.60855959,1,2,0.626019689,0.035343916,0.278860104,0.068819689,217967.4767,28.87564767,193
Jack Johnson,1416172,0.734352332,0.44202487,0.56315544,117.6356114,-9.832020725,1,0,0.536486528,0.030076262,0.172395855,0.059130052,200673.4197,51.78238342,193
"Earth, Wind & Fire",135273,0.600114583,0.640870833,0.687223958,118.1416719,-10.6011875,1,9,0.328317917,0.093426003,0.249018229,0.0509125,272575.8906,37.86979167,192
Duran Duran,128440,0.613602094,0.778418848,0.598305759,124.9991675,-8.551795812,1,9,0.110328618,0.025724921,0.189631414,0.065773298,272400.7592,38.23036649,191
Supertramp,33666,0.482861702,0.536840426,0.431481915,111.7793085,-10.9442234,1,5,0.445019149,0.025477096,0.284165957,0.045421277,316760.8404,42.72340426,188
Merle Haggard,410219,0.652374332,0.412470588,0.614502674,112.9729465,-12.6485615,1,2,0.515840642,0.016943263,0.184725668,0.043729412,185014.877,33.02139037,187
Slipknot,750742,0.379763441,0.936645161,0.277516129,121.3932581,-3.839666667,1,7,0.024292931,0.039000979,0.287122581,0.146345161,252585.5806,51.2688172,186
Sonny Boy Williamson I,1006782,0.585731183,0.172082796,0.721032258,103.8713548,-16.89024731,1,7,0.969526882,0.022521203,0.177643011,0.111977419,180223.2581,2.150537634,186
Lady Gaga,994823,0.659140541,0.750789189,0.529911351,120.8367297,-5.08752973,1,0,0.091457808,0.01341302,0.243072432,0.064160541,229122,57.93513514,185
Bad Religion,62823,0.342471739,0.941923913,0.577771739,145.0472283,-3.85698913,1,9,0.007854434,0.001465382,0.229978261,0.08433587,127601.0326,36.81521739,184
The Animals,751019,0.50751087,0.668782609,0.666641304,123.5558152,-6.950315217,1,5,0.334252283,0.064208093,0.211444565,0.043115217,198067.2609,26.48913043,184
REO Speedwagon,327735,0.461461538,0.780186813,0.643186813,126.3335165,-8.444010989,1,0,0.081400426,0.045466258,0.257320879,0.040826374,254946.9451,33.79120879,182
Roy Orbison,852007,0.476181319,0.473664835,0.597291209,113.2548297,-9.974554945,1,9,0.662681319,0.007966913,0.198232418,0.03309011,160620.7143,31.83516484,182
The Doobie Brothers,136871,0.594464088,0.572436464,0.79361326,125.2469834,-12.67553039,1,7,0.282333702,0.045442418,0.123897238,0.04189558,228679.1823,37.02209945,181
Little Feat,313284,0.522370166,0.59078453,0.673464088,124.466116,-11.15681215,1,7,0.273717238,0.071700983,0.402034254,0.060607182,248530.6133,31.40883978,181
Ozzy Osbourne,424244,0.38639779,0.834616575,0.392630939,124.671453,-6.221127072,1,1,0.070067464,0.017281204,0.317661878,0.066327072,294386.8453,43.13812155,181
Hank Williams,549797,0.598928177,0.270669613,0.650917127,127.0412652,-12.62264641,1,4,0.84410221,0.000779645,0.172200552,0.036300552,162464.442,30.85635359,181
Jethro Tull,850692,0.475422222,0.512533333,0.645966667,126.0265889,-11.74977778,1,5,0.286654778,0.072309898,0.195638889,0.065827778,294493.4,33.18888889,180
Rod Stewart,293896,0.538592179,0.583106145,0.539069274,123.3324078,-11.02353631,1,2,0.366305531,0.059761883,0.166667598,0.041012291,277578.095,43.45251397,179
Pearl Jam,37730,0.420348315,0.722865169,0.38778764,129.7993146,-7.652483146,1,7,0.14227474,0.057113188,0.191414607,0.048029213,254457.4607,50.61797753,178
Bad Company,75100,0.533067416,0.609438202,0.656662921,122.2999213,-9.759640449,1,7,0.284781348,0.040289225,0.184225843,0.034924719,274550.236,33.57303371,178
Bill Withers,78044,0.656606742,0.46014382,0.632725843,114.1249438,-12.3432809,1,4,0.470938202,0.070622794,0.204944944,0.062976404,256292.3708,41.87640449,178
Curtis Mayfield,144458,0.627808989,0.631876404,0.713977528,113.8927079,-9.025674157,0,1,0.343124719,0.093161067,0.187577528,0.098306742,279957.6404,31.06741573,178
Dave Matthews Band,961234,0.552359551,0.687877528,0.536295506,114.2780449,-8.27905618,1,2,0.243627371,0.021401498,0.278760674,0.045224719,338461.8876,43.05617978,178
Johnny Mathis,246885,0.285819209,0.36019887,0.279984181,104.8704915,-11.53729944,1,5,0.828519774,0.016709142,0.172067797,0.036220904,208032.0226,20.20903955,177
The Velvet Underground,840402,0.484079096,0.503375141,0.554967232,115.8864294,-11.81798305,1,2,0.340720337,0.16738794,0.193360452,0.042713559,264561.5989,35.92090395,177
Megadeth,406294,0.370767045,0.931278409,0.375813068,138.8467159,-5.060284091,1,11,0.002283242,0.285251532,0.185870455,0.136334091,260071.4943,42.88068182,176
Anita O'Day,479028,0.523528736,0.230475862,0.507505747,116.8961839,-14.43431609,1,7,0.826005747,0.00262595,0.171427011,0.06506954,184202.1264,14.1954023,174
Mina,492521,0.456942529,0.422803448,0.623243678,112.9673218,-11.23762069,1,0,0.686893103,0.010164499,0.204286207,0.042097701,159843.4598,6.586206897,174
Carpenters,51909,0.409244186,0.297027907,0.364406977,114.9146047,-14.03656977,1,9,0.653498837,0.00445174,0.141519767,0.039698837,210603.6047,39.44186047,172
Guns N' Roses,540883,0.412453488,0.871465116,0.372918605,124.6237674,-6.992976744,1,8,0.119759313,0.19856847,0.306940698,0.087881395,279246.314,48.95348837,172
Misfits,891063,0.360467836,0.912491228,0.319452047,141.7360585,-10.14238596,1,11,0.158937118,0.145802262,0.240439181,0.07408538,124724.7076,39.78362573,171
Mötley Crüe,500992,0.471,0.865964706,0.486822353,123.3003647,-5.864388235,1,0,0.03286194,0.10451767,0.234508235,0.063287059,237349.6118,44.64705882,170
John Lennon,232564,0.542982249,0.583302959,0.549985799,120.7217278,-10.4777929,1,9,0.383440225,0.092388352,0.207069822,0.054526036,227810.0947,42.43195266,169
Slayer,22124,0.333666667,0.968047619,0.192529762,114.7076071,-4.972904762,1,8,0.000541722,0.197283337,0.166671429,0.125594048,232370.7857,40.20238095,168
Sly & the Family Stone,33161,0.693214286,0.619440476,0.729607143,118.1007143,-11.50403571,1,0,0.337038095,0.107371468,0.24067619,0.075696429,235751.5714,32.32142857,168
Gordon Lightfoot,667794,0.549047619,0.356602381,0.539059524,108.8755,-14.45971429,1,4,0.633613095,0.013424973,0.148778571,0.032092857,207131.8929,33.02380952,168
Korn,112789,0.494311377,0.815669281,0.402083832,108.2311856,-6.538323353,1,9,0.02219709,0.184140159,0.26054012,0.093752695,244523.6168,48.21556886,167
Stan Kenton,743929,0.401862275,0.347137126,0.363217964,108.9679222,-11.59935329,1,8,0.791934132,0.422613995,0.145252695,0.050288024,206047.3533,5.401197605,167
Andy Williams,38466,0.315873494,0.307196386,0.376233735,107.680747,-13.33751205,1,0,0.791313253,0.016394031,0.206101205,0.033962048,171327.1747,26.84939759,166
Miles Davis Quintet,424302,0.511891566,0.420585542,0.464631325,111.2098675,-10.537,1,5,0.725036145,0.045943225,0.195448193,0.049359036,372874.4337,23.61445783,166
Los Panchos,354189,0.672642424,0.367781818,0.634739394,111.4100545,-11.78219394,1,9,0.852466667,0.013097463,0.195260606,0.042709697,162132.9879,25.08484848,165
Herbie Hancock,957296,0.557927273,0.54038303,0.588987879,115.9065394,-12.04449697,0,5,0.533856242,0.384499053,0.144253333,0.044969697,443613.8667,31.4,165
Tony Bennett,6334,0.397390244,0.298203659,0.377108537,108.3973476,-13.03987195,1,0,0.846573171,0.001800258,0.183692683,0.048523171,174528.8963,23.01829268,164
André Previn,30250,0.381089024,0.219510305,0.351395732,106.7855,-17.58964024,1,0,0.855957317,0.514718838,0.219059756,0.057865244,224121.0122,16.62804878,164
Bread,610706,0.495219512,0.408836585,0.525560976,122.3068049,-13.59512195,1,7,0.510562195,0.015232997,0.148123171,0.035369512,187115.3902,38.08536585,164
Justin Bieber,2165952,0.642417178,0.62509816,0.561784049,121.4686074,-6.114736196,1,0,0.242902221,0.004217137,0.163357055,0.082681595,215218.0675,65.3006135,163
Alice Cooper,5953,0.449234568,0.644407407,0.487765432,124.3140988,-11.34319753,1,9,0.182092593,0.055709736,0.275134568,0.059750617,244931.8519,35.77777778,162
Paul McCartney,29884,0.560372671,0.497068323,0.57536646,119.0231118,-11.32621118,1,9,0.388438845,0.135903509,0.242034783,0.047006211,217422.3665,39.55279503,161
Dave Brubeck,958533,0.55394375,0.24287,0.45751625,113.0608437,-17.7104125,1,5,0.81980375,0.403291158,0.2855825,0.044778125,318805.9563,20.95,160
David Allan Coe,629609,0.57178481,0.448006329,0.618436709,116.463443,-12.45871519,1,7,0.428697468,0.000313137,0.212301266,0.049805063,198849.9557,33.30379747,158
Herb Alpert & the Tijuana Brass,955773,0.635025316,0.452898734,0.624225316,120.7872658,-11.97463291,1,5,0.55003038,0.688068384,0.165403797,0.060910127,153715.9367,27.51898734,158
Daft Punk,667669,0.623264968,0.626898089,0.404098089,118.3038599,-10.83566242,1,1,0.230076544,0.543886435,0.194703822,0.095534395,265758.8217,53.12738854,157
Ariana Grande,2264745,0.628872611,0.608917197,0.459279618,115.9343312,-5.838248408,1,1,0.228658471,0.001027057,0.200320382,0.088202548,214368.6943,67.14012739,157
Smashing Pumpkins,36521,0.411435897,0.57264359,0.324791026,117.9909103,-10.3820641,1,8,0.108843333,0.633191692,0.162787179,0.039278205,271442.8462,44.65384615,156
Flatt & Scruggs,227527,0.55624359,0.481308974,0.796128205,124.322641,-11.10802564,1,8,0.558820513,0.26804828,0.229514103,0.03535,146539.8205,15.03846154,156
Scorpions,299471,0.400487179,0.689666667,0.438998718,120.5922564,-10.00946154,0,9,0.075591273,0.1616666,0.287097436,0.054664103,270657.3333,37.84615385,156
Modest Mouse,480086,0.507602564,0.679102564,0.534716667,130.1551282,-6.820269231,1,7,0.247771179,0.086646778,0.212207692,0.055907692,267607.2179,41.67948718,156
Styx,923033,0.398423077,0.511792051,0.429962821,126.7285769,-12.50494872,1,2,0.156273269,0.0073703,0.180866667,0.042382051,267119.4744,35.93589744,156
Thin Lizzy,590479,0.4718,0.667141935,0.605580645,128.3326,-12.50941935,1,1,0.1768396,0.103740462,0.269165161,0.072991613,257986.5484,30.11612903,155
Al Green,607448,0.69076129,0.412477419,0.665651613,111.6076581,-11.42483226,1,0,0.33180129,0.033688588,0.115193548,0.051914839,223099.2258,36.56129032,155
Coldplay,775877,0.442490323,0.593045161,0.234016774,126.8979161,-8.027219355,1,11,0.218018387,0.130123586,0.18259871,0.035403226,270685.4452,60.68387097,155
Emmylou Harris,159699,0.509616883,0.384093506,0.519357143,119.4091753,-12.13240909,1,10,0.540694805,0.011193659,0.182201299,0.035933766,215359.0714,35.74675325,154
Pete Seeger,266160,0.566084416,0.194963636,0.554519481,108.7207597,-17.94790909,1,9,0.930331169,0.05348025,0.181601299,0.103027273,138454.4416,10.67532468,154
Quincy Jones,378624,0.558350649,0.437483117,0.554672727,111.9336429,-13.08249351,1,9,0.627118182,0.172116039,0.193956494,0.13479026,249486.7338,27.83766234,154
Brooks & Dunn,522768,0.634668831,0.701935065,0.645798701,127.4980649,-7.025707792,1,9,0.19522513,0.000367927,0.225884416,0.035923377,223555.8117,44.25324675,154
Harry Nilsson,560208,0.513727273,0.317593506,0.512111688,116.0135325,-16.02384416,1,0,0.681226299,0.077553035,0.218841558,0.065438961,171655.0519,31.02597403,154
The Alan Parsons Project,1176481,0.56838961,0.519144156,0.432549351,116.9293247,-11.3931039,1,2,0.387851948,0.155853358,0.17807013,0.039053247,269049.4675,38.61038961,154
Ed Sheeran,2639628,0.660441558,0.503588312,0.508474026,103.4528117,-7.985337662,1,8,0.422231006,0.000238144,0.176191558,0.077593506,239815.7727,65.55194805,154
System of a Down,5501,0.40348366,0.883718954,0.434816993,131.6244902,-3.711464052,1,8,0.052216677,0.099134529,0.257163399,0.093573856,185339.6144,55.19607843,153
Marc Anthony,673486,0.551954248,0.751071895,0.655515033,115.9098693,-5.698326797,0,2,0.482889935,0.0000608,0.23350719,0.052426144,295912.8954,50.18954248,153
John Lee Hooker,815039,0.609960784,0.343172549,0.638470588,126.0839346,-15.35203268,1,10,0.676966013,0.034458686,0.154698039,0.087726797,203575.1765,22.0130719,153
Ahmad Jamal,127369,0.590065789,0.181911842,0.424178947,103.8165921,-18.89610526,1,0,0.840753947,0.811226316,0.2451,0.044946053,240780.3816,16.46052632,152
Sade,279337,0.658315789,0.458005263,0.594273684,115.9828947,-10.62157895,0,5,0.392552632,0.118072564,0.107364474,0.038523684,288191.1974,48.65789474,152
Five Finger Death Punch,640208,0.481710526,0.938552632,0.292678947,128.4285724,-4.121039474,0,11,0.002823245,0.001081971,0.1743875,0.108865789,221942.0461,51.17105263,152
Rage Against the Machine,863790,0.467394737,0.843802632,0.486657895,121.0198947,-5.906315789,1,7,0.054910908,0.024841448,0.277856579,0.146351316,275441.8816,50.98684211,152
The Offspring,472925,0.432370861,0.867320848,0.640245033,144.2565298,-4.754112583,1,0,0.037057651,0.004126335,0.198411921,0.076430464,206845.9007,49.88741722,151
"Peter, Paul and Mary",274321,0.520773333,0.200058667,0.4516,116.2567867,-18.05037333,1,9,0.720573333,0.028573164,0.156005333,0.042861333,185726.6267,28.69333333,150
The Platters,894335,0.4072,0.30428,0.401653333,96.06210667,-11.54213333,1,3,0.85456,0.000876734,0.180350667,0.031768,161032.1867,28.01333333,150
Bud Powell,640675,0.488348993,0.25231651,0.513014765,106.6433221,-17.1375302,1,5,0.861067114,0.625785655,0.157018792,0.041708054,201081.2617,9.953020134,149
Cocteau Twins,140499,0.387452703,0.625133108,0.356321622,126.6065473,-10.0947973,1,0,0.214943215,0.333582236,0.186608784,0.043183108,233628.223,36,148
Panic! At the Disco,318085,0.486297297,0.766945946,0.498685135,131.463723,-5.458891892,1,9,0.1368945,0.013746963,0.2227,0.082297973,198991.3514,59.83783784,148
Kate Bush,855423,0.513,0.35842027,0.461510811,113.9623784,-14.42024324,0,1,0.571078378,0.038372993,0.158040541,0.043332432,225230.5676,35.64864865,148
Ray Conniff,869487,0.489358108,0.397091892,0.595513514,113.0233514,-13.21737838,1,3,0.729391892,0.511760233,0.229910811,0.033051351,173831.6419,28.13513514,148
Blondie,44764,0.52347619,0.729136054,0.718761905,131.5621905,-7.790251701,1,2,0.129877918,0.028711252,0.160957823,0.045421769,220300.8231,36.74829932,147
Enya,988471,0.342759184,0.186654422,0.205145578,102.3759252,-19.03108844,1,1,0.861244898,0.569662667,0.112406803,0.038273469,205738.034,44.33333333,147
Leonard Cohen,71209,0.502849315,0.252806849,0.338917808,116.6012877,-15.8449863,1,9,0.729745205,0.027330727,0.149112329,0.038779452,268222.7945,41.83561644,146
Disturbed,175579,0.520109589,0.923726027,0.500126027,131.6752329,-4.05830137,1,8,0.023238479,0.049278978,0.138216438,0.08220274,243604.6164,51.69863014,146
Deep Purple,192382,0.454671233,0.66569863,0.553813699,124.4106027,-10.46408219,1,9,0.084764933,0.180022853,0.184389041,0.047750685,323164.9315,31.63013699,146
The Mothers of Invention,405522,0.455739726,0.554493151,0.585016438,120.3061918,-12.04026027,1,9,0.337188019,0.049926547,0.314760274,0.084950685,193700.4384,23.76712329,146
Marilyn Manson,825251,0.48660274,0.837479452,0.343227397,140.1150137,-6.695410959,1,9,0.014734102,0.112909666,0.300415068,0.088882192,249541.8904,46.09589041,146
Jefferson Airplane,840102,0.444945205,0.545520548,0.518932877,122.7880685,-11.37532877,1,2,0.340626027,0.062413739,0.217475342,0.041982192,229462.1233,31.43835616,146
Alice in Chains,7920,0.393777778,0.717402778,0.332725,115.3207778,-8.003597222,1,8,0.125846976,0.055106224,0.286019444,0.048015278,287894.8056,48.95833333,144
Foo Fighters,184043,0.4205,0.806819444,0.396284722,138.9890278,-6.028569444,1,4,0.081633258,0.11224967,0.220980556,0.053570833,247873.5139,54.31944444,144
Daddy Yankee,559405,0.7576875,0.814222222,0.731840278,114.7690417,-4.883076389,1,2,0.151910625,0.003293281,0.190216667,0.106913889,226751.7778,62.31944444,144
The Replacements,422405,0.441825175,0.78865035,0.565853147,136.8084476,-8.303692308,1,11,0.101632182,0.059061013,0.299746853,0.076928671,190129.8881,29.95804196,143
Julio Iglesias,102985,0.473661972,0.388387324,0.489043662,110.5062113,-14.18530986,1,2,0.517371831,0.001556029,0.226457746,0.04636338,227378.7746,39.46478873,142
Jackson Browne,130689,0.541964789,0.512359155,0.465704225,122.2875634,-10.0828662,1,7,0.381380282,0.017673546,0.210346479,0.037127465,275010.2746,39.5915493,142
Celia Cruz,186312,0.664330986,0.543964789,0.838295775,113.8691549,-8.928647887,1,0,0.623732394,0.028495522,0.184044366,0.064275352,226737.5845,29.02816901,142
Joy Division,290812,0.452084507,0.759478873,0.465829577,122.2850423,-8.145901408,1,9,0.056171679,0.463744924,0.255952113,0.062712676,241525.507,39.49295775,142
Gerry Mulligan,542549,0.551105634,0.238369014,0.554211268,115.7466479,-15.9505493,1,0,0.731380282,0.240257186,0.212066197,0.064647887,339305.0845,14.73239437,142
Arthur Lyman,607028,0.485084507,0.20210493,0.353525352,122.4359859,-23.04008451,1,0,0.631850704,0.433655085,0.138098592,0.05351831,171769.4085,12.46478873,142
Shakira,790797,0.724394366,0.689205634,0.625767606,120.3590493,-6.644007042,1,0,0.228166408,0.007968158,0.144857042,0.051866197,216691.5634,59.8943662,142
Louis Prima,272567,0.618893617,0.488574468,0.777255319,121.2782695,-10.41929078,1,5,0.601297872,0.023196021,0.290695035,0.165384397,184084.9645,24.09219858,141
Maroon 5,285232,0.65312766,0.724021277,0.566702128,119.509234,-5.442673759,1,1,0.129490156,0.0000109,0.216921277,0.057736879,220610.0496,55.43971631,141
Donna Summer,661524,0.702836879,0.631184397,0.747886525,124.9531915,-12.74405674,1,0,0.103058482,0.078657295,0.163247518,0.044621277,349623.1489,39.17021277,141
Tammy Wynette,136640,0.540557143,0.294128571,0.493485714,103.84255,-12.53253571,1,9,0.724814286,0.001129496,0.15862,0.032217143,162417.8643,28.03571429,140
Ray Price,409954,0.4563,0.34649,0.582014286,106.5220429,-11.65675714,1,10,0.797057143,0.017995002,0.180967143,0.035648571,179316.1857,19.11428571,140
Cannonball Adderley,548338,0.491507143,0.345440714,0.506775714,111.6529357,-11.19729286,1,5,0.767228571,0.267534231,0.185125714,0.041074286,276038.6286,17.42857143,140
Tim McGraw,592954,0.533042857,0.674635714,0.524821429,127.3668857,-6.916178571,1,7,0.225721714,9.60E-06,0.175943571,0.032600714,235671.0714,51.67857143,140
Steve Miller Band,36106,0.48642029,0.48707142,0.605291304,110.6768406,-13.6843913,1,9,0.367675246,0.134781111,0.261062319,0.053492754,216498.2319,38.47826087,138
Jerry Garcia,328288,0.598231884,0.50700029,0.614202899,111.9168478,-11.69172464,1,0,0.423578551,0.121856991,0.254013768,0.045371014,335233.9275,29.43478261,138
Jerry Lee Lewis,332141,0.506289855,0.676275362,0.751318841,115.9117971,-9.392550725,1,0,0.58142029,0.011823955,0.271314493,0.055530435,153289.942,24.47826087,138
Nine Inch Nails,351733,0.549188406,0.68878942,0.369568116,119.3685507,-10.0952029,1,0,0.120902314,0.396393294,0.257813043,0.05672029,278564.9275,42.79710145,138
Three Dog Night,925450,0.488956522,0.556710145,0.634666667,112.0678696,-12.74843478,1,7,0.305621029,0.033732416,0.20132029,0.042221739,212210.4058,30.55072464,138
Foreigner,987621,0.561434783,0.692478261,0.540097101,126.3294203,-7.283942029,1,9,0.151640522,0.015173209,0.167711594,0.041944928,237432.5507,37.26086957,138
Bon Jovi,69534,0.448649635,0.847277372,0.466248175,127.0906861,-4.643291971,1,2,0.055619009,0.006847907,0.200510949,0.046940876,291683.562,48.51824818,137
R. Kelly,319347,0.705729927,0.513510949,0.543544526,110.2536058,-7.472277372,0,1,0.267633285,0.000351571,0.134836496,0.079348905,279772.6277,42.51094891,137
The Mamas & the Papas,59293,0.538485294,0.493501471,0.617617647,111.4329412,-11.37513235,1,1,0.596777059,0.025681363,0.181323529,0.041491176,178925.3676,35.14705882,136
New Order,334193,0.582595588,0.855426471,0.749108824,126.3198088,-7.816183824,1,0,0.049405491,0.402680568,0.177680882,0.045274265,299453.9265,39.92647059,136
Yves Montand,695189,0.535544118,0.200407353,0.4728,116.5066765,-17.74894118,1,2,0.934235294,0.00999087,0.3284,0.193366176,184471.6029,4.632352941,136
Peter Gabriel,842802,0.567955882,0.552088235,0.432614706,113.2249706,-11.21311765,1,1,0.322280441,0.068407996,0.243264706,0.054375,322615.7059,30.17647059,136
New Order,1168958,0.582595588,0.855426471,0.749108824,126.3198088,-7.816183824,1,0,0.049405491,0.402680568,0.177680882,0.045274265,299453.9265,39.92647059,136
Erykah Badu,170770,0.673081481,0.47124,0.462318519,102.3109185,-9.807488889,0,11,0.199708741,0.073362772,0.267699259,0.145703704,299844.2593,46.55555556,135
The Everly Brothers,46699,0.534641791,0.415208955,0.632228358,116.0760746,-12.62967164,1,4,0.63158806,0.00023265,0.179647761,0.032080597,151269.7015,27.43283582,134
Blue Öyster Cult,61938,0.457208955,0.765253731,0.579925373,128.4184776,-8.411358209,1,9,0.116051343,0.0437616,0.253391045,0.046652239,261538.6119,35.47761194,134
The Kingston Trio,102050,0.56361194,0.373192537,0.627328358,125.8985522,-13.71270149,1,7,0.733447761,0.003622132,0.23031791,0.113774627,163555.8358,17.34328358,134
Luther Vandross,208076,0.579992481,0.463503759,0.480505263,109.2150677,-11.25602256,1,0,0.42798797,0.00231483,0.139928571,0.059458647,322330.6992,38.73684211,133
Usher,303506,0.70118797,0.617684211,0.558015038,116.0653008,-6.248285714,1,1,0.131410015,0.0000845,0.16475188,0.096994737,245071.2105,54.33082707,133
Maná,673621,0.648300752,0.794714286,0.689947368,126.7142256,-5.397661654,1,0,0.187653383,0.011110984,0.157453383,0.034933083,278374.1429,52.03759398,133
Janis Joplin,177060,0.465969697,0.521530303,0.531575758,125.4917576,-11.28751515,1,0,0.315120909,0.063005184,0.304156061,0.104445455,255327.5152,37.84848485,132
Ween,817754,0.612984848,0.564593939,0.622933333,125.9803182,-10.64154545,1,7,0.280896147,0.17410519,0.194018182,0.059845455,198848.5,37.5,132
Art Pepper,505047,0.610847328,0.327816794,0.647816794,123.0863893,-13.86477863,0,5,0.62921374,0.161744043,0.152171756,0.070391603,264358.1298,19.64122137,131
Soda Stereo,753507,0.5756,0.772923077,0.564112308,116.8749692,-6.618015385,1,4,0.135681417,0.139693162,0.281252308,0.043835385,267011.5538,49.96923077,130
Whitney Houston,820434,0.595461538,0.5419,0.443268462,117.0741231,-9.732146154,1,6,0.410909785,0.000717886,0.195238462,0.050478462,270807.5231,50.63846154,130
Patsy Cline,14651,0.506728682,0.196017829,0.531031008,111.412062,-15.83851938,1,7,0.859914729,0.0000343,0.197673643,0.036745736,157555.5116,30.15503876,129
Bobby Darin,70715,0.497573643,0.367049147,0.559651163,115.8182946,-12.16830233,1,5,0.712930233,0.002951216,0.19631938,0.053896899,159501.6977,24.6124031,129
Engelbert Humperdinck,98081,0.376844961,0.343665271,0.350410853,102.6744806,-13.42000775,1,2,0.743372093,0.072659884,0.18723876,0.037027907,191915.8062,25.84496124,129
Lou Reed,233066,0.502317829,0.592356589,0.579258915,122.9777054,-10.24725581,1,2,0.42715814,0.122662231,0.231949612,0.062217829,282416.2403,37.31007752,129
Mary J. Blige,376204,0.654178295,0.62855814,0.598193798,109.963,-7.403534884,0,11,0.201313589,0.013543038,0.176493798,0.120082946,278618.9767,47.00775194,129
Clifford Brown,789775,0.497728682,0.39916124,0.556262016,121.3394109,-12.38323256,1,0,0.771573643,0.233505226,0.323686047,0.069648062,335894.6279,16.51162791,129
Charles Aznavour,804476,0.422085271,0.420599225,0.531874419,110.495124,-9.670806202,0,5,0.68279845,0.010668199,0.215543411,0.056089922,187743.7519,34.97674419,129
Astrud Gilberto,931086,0.506875969,0.314117054,0.548496124,115.8474186,-15.99627132,1,7,0.708581395,0.013336678,0.228796899,0.064637984,169947.2636,33.73643411,129
Devo,249973,0.664078125,0.653921875,0.75640625,143.164,-11.804375,1,9,0.192261875,0.175563832,0.140648438,0.075101563,186947.25,30.640625,128
Dion,265456,0.46878125,0.441692188,0.636578125,114.6919062,-12.05592188,1,5,0.650764063,0.000619583,0.252729687,0.0582125,158569.6094,25.0625,128
My Chemical Romance,520545,0.394828125,0.855457813,0.361279687,132.9695781,-5.152921875,1,2,0.078788781,0.038856041,0.22030625,0.083542187,218597.9063,56.390625,128
Kenny Rogers,69986,0.555614173,0.382689764,0.51116378,129.7809213,-14.31811024,1,7,0.405725197,0.000669244,0.130058268,0.04666063,218222.2677,45.07086614,127
Motörhead,501407,0.322176378,0.918692913,0.308869291,131.6878819,-6.055047244,1,1,0.048816693,0.084532986,0.251269291,0.100710236,220435.189,40.5511811,127
José José,822874,0.44311811,0.424062992,0.385847244,118.205622,-11.44637795,1,9,0.627198425,0.004477773,0.207182677,0.036506299,227999.9921,46.5511811,127
Selena,4852,0.625611111,0.612563492,0.726801587,139.0079683,-9.07052381,1,10,0.28503681,0.00133005,0.209265079,0.063902381,232463.627,46.55555556,126
The Cars,61172,0.663587302,0.683904762,0.768047619,127.2689365,-9.657555556,1,4,0.108184921,0.07165179,0.170904762,0.03645873,237280.7302,39.9047619,126
Donald Byrd,149946,0.565404762,0.546190476,0.645452381,117.9818571,-10.28340476,1,0,0.596414286,0.26496339,0.178848413,0.049288889,409724.4365,22.07936508,126
Dire Straits,167517,0.594587302,0.581761905,0.602504762,123.0558571,-11.15095238,1,2,0.335987063,0.259147313,0.168433333,0.039953968,318946.7778,38.73015873,126
Jason Aldean,318882,0.53884127,0.734960317,0.492674603,137.0893413,-4.862706349,1,7,0.154340952,0.0000551,0.167595238,0.040268254,218984.9921,54.53174603,126
Cal Tjader,643549,0.600849206,0.358785714,0.6815,115.844,-17.21810317,1,8,0.826380952,0.438550306,0.153865079,0.046881746,210895.8889,15.58730159,126
Conway Twitty,780451,0.578134921,0.364142857,0.597471429,104.1181905,-13.947,1,9,0.558188889,0.008698944,0.158859524,0.044812698,178023.9048,32.1031746,126
Pixies,895136,0.515984127,0.651952381,0.598461905,127.7236825,-12.12728571,1,11,0.038891687,0.176966097,0.179415873,0.050269841,163482.5238,44.33333333,126
Soundgarden,1098,0.367032258,0.820403226,0.400422581,128.1628548,-7.03716129,1,9,0.017231421,0.174349475,0.184169355,0.052541935,281648.6613,41.70967742,124
The Jackson 5,83013,0.579209677,0.674419355,0.75066129,115.7695323,-8.683177419,1,8,0.36248371,0.012834778,0.279937097,0.050719355,203534.4194,36.96774194,124
Bonnie Raitt,96613,0.592653226,0.446872581,0.560677419,115.9969677,-11.76908871,1,5,0.506362903,0.014281185,0.163033871,0.040816129,233322.8548,33.48387097,124
Johnny Horton,198783,0.622935484,0.467596774,0.764854839,116.9849839,-13.03329032,1,4,0.667887097,0.0000202,0.209603226,0.05225,150689.6774,26.74193548,124
Queensrÿche,315339,0.456790323,0.892967742,0.258101613,120.8730968,-4.786370968,1,9,0.100152877,0.063593562,0.310880645,0.096562903,286294.4194,33.01612903,124
The Supremes,477875,0.585725806,0.60633871,0.731612903,123.2987419,-8.817129032,1,0,0.455708065,0.009334161,0.215622581,0.040716129,168091.5968,31.14516129,124
Avenged Sevenfold,691371,0.443709677,0.886822581,0.384601613,139.7347581,-5.143677419,1,2,0.011313763,0.022276884,0.195903226,0.062458065,350077.0806,53.59677419,124
Deftones,813946,0.350564516,0.830064842,0.291609677,116.9285161,-5.503951613,1,8,0.012466478,0.266237753,0.218714516,0.084512903,293407.9677,47.88709677,124
Lester Young,259529,0.554317073,0.274136585,0.632455285,124.2327236,-14.52349593,1,0,0.923081301,0.582432293,0.138591057,0.060864228,236909.2764,12.02439024,123
Eric Church,632233,0.591390244,0.673456911,0.627739837,113.5250732,-7.422138211,1,0,0.193643837,0.005059664,0.181405691,0.039795122,223260.6585,54.11382114,123
Kansas,303626,0.426803279,0.69042623,0.590245902,125.3202951,-7.51747541,1,9,0.129339984,0.026097966,0.255337705,0.052288525,302659.6393,33.47540984,122
Oingo Boingo,390532,0.635540984,0.770786885,0.785737705,138.1499672,-11.64832787,1,5,0.136585459,0.052287827,0.178747541,0.049885246,252309.3934,31.6557377,122
The Police,413524,0.599901639,0.687131148,0.65842623,140.055,-9.236114754,1,2,0.12691641,0.101092018,0.155963934,0.087540984,227773.0984,48.09836066,122
311,485135,0.618868852,0.820065574,0.616206557,132.5737541,-7.354754098,1,9,0.022413531,0.012122383,0.16602459,0.06582459,205666,40.32786885,122
Breaking Benjamin,934367,0.441040984,0.857204918,0.384360656,130.3479508,-4.681319672,1,0,0.011705877,0.070423751,0.140836885,0.060680328,222275.4836,51.52459016,122
Frank Ocean,2592086,0.572409836,0.464506557,0.394190164,115.6691803,-9.89645082,1,8,0.524300164,0.052166385,0.20849918,0.166994262,215738.9672,63.48360656,122
Janet Jackson,208774,0.713247934,0.698495868,0.605299174,112.0892231,-8.275198347,1,1,0.235995129,0.067151143,0.203502479,0.061090083,284686.6446,44.47107438,121
Mel Tormé,344275,0.389082645,0.219636364,0.367527273,108.633,-15.82895041,1,3,0.84214876,0.114586597,0.212729752,0.055561983,197247.7107,13.80165289,121
Akon,933458,0.733165289,0.649768595,0.566395041,115.6421405,-5.936661157,1,7,0.122592529,0.0000356,0.178047107,0.122991736,234696.9174,52.53719008,121
Cheap Trick,105354,0.471766667,0.786683333,0.565696667,138.9917833,-9.42205,1,9,0.08976605,0.116176915,0.342098333,0.050351667,243580.2667,34.28333333,120
John Mellencamp,224186,0.652408333,0.778316667,0.740241667,124.10225,-5.511641667,1,7,0.087279667,0.01167306,0.15995,0.047268333,233985.1667,39.35,120
Nelson Riddle,322027,0.38566,0.30237,0.412386667,100.223325,-14.327675,1,5,0.589316667,0.370310313,0.18026,0.035680833,173096.6583,15.13333333,120
Arctic Monkeys,325357,0.473083333,0.763683333,0.567573333,126.41255,-6.31705,1,11,0.075266888,0.046156517,0.182461667,0.061671667,201963.3667,53.05,120
Héctor Lavoe,565634,0.5891,0.676816667,0.783291667,109.0757833,-6.850116667,0,0,0.565718333,0.030577801,0.170643333,0.047115833,317869.2167,40.46666667,120
The Black Keys,755918,0.499383333,0.69005,0.514416667,123.3700167,-6.553266667,0,2,0.2794609,0.106545975,0.178861667,0.055551667,216048.85,50.86666667,120
Kool & the Gang,777210,0.69725,0.54425,0.73007,110.95605,-12.81015,1,11,0.220848,0.12471278,0.12769,0.062181667,275879.15,40.43333333,120
Childish Gambino,2487188,0.5872,0.549575,0.406210833,117.1818667,-9.457066667,1,0,0.230984783,0.074446862,0.188428333,0.14473,240067.525,58.525,120
Heart,671953,0.498142857,0.547463866,0.492304202,126.998,-12.62466387,1,9,0.237716538,0.0359245,0.211327731,0.042335294,257204.4034,37.28571429,119
Todd Rundgren,936425,0.478756303,0.566756303,0.590504202,121.1008824,-10.60028571,1,5,0.31141721,0.065573058,0.245403361,0.053906723,206724.3613,30.17647059,119
Joe Cocker,149515,0.483254237,0.560679661,0.558647458,116.9180847,-10.42349153,1,5,0.437970847,0.020571264,0.360515254,0.050971186,264404.3983,36.94067797,118
Toby Keith,510805,0.622652542,0.764135593,0.627542373,124.9899492,-5.476915254,1,7,0.263432203,0.001294363,0.212182203,0.042915254,214992.2797,48.97457627,118
Blossom Dearie,758601,0.566559322,0.144857627,0.403745763,107.0366949,-18.59032203,1,5,0.905423729,0.018494992,0.153310169,0.070194915,185540.1186,25.66101695,118
Keely Smith,495784,0.567478632,0.476709402,0.672897436,117.4033761,-9.410641026,1,7,0.667350427,0.007483394,0.270694017,0.120234188,181378.7179,17.25641026,117
Imagine Dragons,2040645,0.521760684,0.715290598,0.370360684,125.952735,-6.02691453,1,0,0.145981077,0.012033914,0.211565812,0.061509402,224018.7607,60.70940171,117
Tears for Fears,19892,0.516525862,0.724344828,0.50407931,115.1732845,-9.960577586,1,7,0.213023621,0.175965188,0.276750862,0.04212931,313665,41.37931034,116
Shinedown,28002,0.45,0.816034483,0.32787931,133.988069,-4.354655172,1,2,0.075394183,0.000839705,0.160889655,0.052627586,231293.6379,53.03448276,116
Joan Baez,69153,0.456862069,0.224581034,0.408593103,118.3232241,-15.20156897,1,11,0.744982759,0.000256092,0.228543103,0.046506897,228584.7759,30.27586207,116
Connie Francis,117064,0.40262069,0.333703448,0.434351724,105.6069483,-12.13389655,1,7,0.743931034,0.000218096,0.231441379,0.033281034,168870.3276,24.18965517,116
Godsmack,665860,0.439275862,0.8275,0.440948276,124.2478103,-5.804137931,1,7,0.024630589,0.052949744,0.178375862,0.067684483,252158.931,47.55172414,116
Tool,790820,0.387431034,0.614282759,0.273234483,122.0364483,-12.01501724,1,9,0.133414538,0.595634415,0.173818966,0.096360345,372470.2069,54.68965517,116
Tool,1340026,0.387431034,0.614282759,0.273234483,122.0364483,-12.01501724,1,9,0.133414538,0.595634415,0.173818966,0.096360345,372470.2069,54.68965517,116
Weezer,243008,0.460913043,0.798147826,0.507878261,122.3939043,-5.682504348,1,6,0.056866157,0.036569317,0.192233043,0.049226957,208761,48.03478261,115
Justin Timberlake,312890,0.680443478,0.636217391,0.570874783,110.0083826,-6.562695652,1,7,0.202713652,0.013019814,0.240909565,0.104457391,306265.6783,57.86086957,115
"Crosby, Stills & Nash",131581,0.548561404,0.324749123,0.454561404,118.7449825,-15.55135088,1,9,0.541607018,0.004443622,0.165675439,0.048475439,229983.5263,36.54385965,114
Elliott Smith,172167,0.511491228,0.350701754,0.362263158,119.7480877,-13.31933333,1,0,0.418869474,0.10484212,0.144670175,0.035347368,197222.6316,39.80701754,114
Loggins & Messina,277351,0.522421053,0.453105263,0.60145614,125.8471754,-12.56112281,1,9,0.416121053,0.08053317,0.198047368,0.045135088,269047.4386,28.64912281,114
Three Days Grace,490860,0.44922807,0.833982456,0.39375614,136.3212105,-4.671333333,1,2,0.016977351,9.37E-06,0.187719298,0.04585614,212924.386,54.45614035,114
Luke Bryan,502198,0.572710526,0.808508772,0.583807018,130.7774561,-4.224157895,1,8,0.138175,0.000866068,0.170204386,0.048623684,217632.5351,58.5,114
Buddy Holly,538677,0.586157895,0.557566667,0.732280702,120.7325088,-9.515403509,1,9,0.542531579,0.050560885,0.171764912,0.045585965,132186.9123,32.61403509,114
Glen Campbell,664378,0.464307018,0.47472807,0.543385965,118.825614,-10.58187719,1,7,0.401884737,0.00633441,0.178131579,0.04069386,176048.807,32.01754386,114
Incubus,772745,0.539315789,0.762666667,0.467935088,130.2439474,-6.534947368,1,9,0.074857814,0.099639031,0.177101754,0.052349123,242488.1754,49.29824561,114
Roxy Music,852855,0.544614035,0.705421053,0.569796491,118.6019825,-7.715245614,1,0,0.216935053,0.167443645,0.163277193,0.0507,270257.2105,39.21052632,114
Twenty One Pilots,2398414,0.645403509,0.618387719,0.465526316,119.1523158,-6.86477193,1,7,0.179091228,0.010101963,0.156761404,0.06205614,239889.3509,66.45614035,114
T-Pain,258000,0.640522124,0.671699115,0.472163717,122.393354,-5.84939823,1,7,0.08443177,2.19E-06,0.216567257,0.16830708,241436.2301,54.54867257,113
Florida Georgia Line,2942900,0.510132743,0.870132743,0.643318584,139.6733982,-4.017699115,1,10,0.117904018,0.000074,0.213202655,0.044258407,204642.1593,58.10619469,113
Keith Urban,81619,0.591419643,0.7104375,0.573428571,120.4862054,-6.487955357,1,2,0.205300714,0.0000831,0.1304375,0.039923214,246120.0089,52.07142857,112
Dan Fogelberg,166785,0.482196429,0.343414286,0.435557143,120.8675625,-15.74775,1,0,0.560175893,0.030425169,0.1423625,0.030708036,266712.7321,30.70535714,112
Queens of the Stone Age,376422,0.424464286,0.823739286,0.45555,130.985,-5.738803571,1,10,0.159498839,0.177569768,0.305364286,0.077723214,249217.2857,46.08928571,112
Etta James,806542,0.483473214,0.425535714,0.528741071,118.1669643,-10.03034821,1,5,0.658098214,0.001162186,0.301347321,0.045300893,199314.9911,32.41964286,112
Odetta,888730,0.526928571,0.292112679,0.543178571,116.3977768,-10.693,1,0,0.832635714,0.008226953,0.17405,0.07568125,198129.8393,15.51785714,112
Alfred Newman,2130,0.15533964,0.243640541,0.096440541,97.65805405,-16.16085586,1,7,0.67634955,0.692233333,0.193277477,0.036853153,196975.9009,1.369369369,111
The Strokes,568137,0.519657658,0.734900901,0.594836036,128.1388919,-5.616405405,1,0,0.11324842,0.378751521,0.157359459,0.039168468,217199.9009,56.27027027,111
Gorillaz,664770,0.662756757,0.683855856,0.617535135,124.7215225,-7.33545045,1,0,0.147936269,0.241152419,0.212394595,0.09426036,211653.4054,53.56756757,111
Katy Perry,859589,0.660198198,0.745810811,0.621234234,127.7628649,-5.031162162,1,5,0.094791117,0.0000334,0.201233333,0.053163063,218897.7568,62.09009009,111
Stevie Nicks,936190,0.566369369,0.650198198,0.517234234,120.4457928,-9.166540541,1,9,0.209684865,0.008803347,0.285661261,0.036727027,269707.1802,40.41441441,111
The 1975,2986022,0.556837838,0.684554955,0.448843243,120.5913333,-6.876810811,1,2,0.15750231,0.073348155,0.22103964,0.049974775,253301.8018,59.97297297,111
J.J. Cale,119651,0.716045455,0.360032727,0.7126,115.2510091,-16.80954545,1,0,0.502231818,0.376314869,0.127125455,0.045446364,176276.1364,40.24545455,110
Peter Tosh,328014,0.719827273,0.639854545,0.823681818,119.0115909,-8.387854545,1,7,0.116653091,0.014266679,0.127526364,0.134643636,288143.9636,35.36363636,110
Primus,359326,0.568018182,0.829745455,0.5686,123.8162727,-8.391036364,1,6,0.100184317,0.295284916,0.177807273,0.093767273,252886.5636,39.36363636,110
The Modern Jazz Quartet,567325,0.528672727,0.221469091,0.425125455,111.2710727,-16.47792727,1,0,0.811509091,0.154550568,0.121896364,0.045476364,282167.9636,17.47272727,110
Elvis Costello & the Attractions,798113,0.5554,0.670745455,0.714345455,132.7708727,-8.642818182,1,9,0.143548736,0.032281918,0.193078182,0.045181818,189608.9818,33.87272727,110
Nickelback,868616,0.532909091,0.876727273,0.567145455,138.4514909,-4.259909091,1,10,0.005508287,0.025469378,0.170309091,0.050543636,226774.8,54.83636364,110
Dionne Warwick,165011,0.567385321,0.404985321,0.531115596,116.1010275,-11.52942202,1,0,0.614710092,0.000107701,0.219550459,0.041212844,205930.1009,34.5412844,109
Serge Gainsbourg,174822,0.581601835,0.423816514,0.632091743,110.2940734,-14.03166055,1,0,0.432350409,0.068319503,0.163772477,0.074581651,168980.367,32.06422018,109
Camilo Sesto,540139,0.436944954,0.545788991,0.516677064,126.7318899,-8.553394495,1,0,0.563959633,0.007366387,0.189280734,0.046926606,226603.7248,42.71559633,109
Britney Spears,628467,0.728706422,0.762623853,0.721743119,114.9560826,-4.966724771,1,5,0.156519009,0.003121384,0.222036697,0.065950459,223534.9358,56.87155963,109
Bernard Herrmann,760240,0.252216514,0.185723853,0.138727523,96.69163303,-19.89424771,1,10,0.778807339,0.574640367,0.155899083,0.046021101,114659.8165,9.357798165,109
"Crosby, Stills, Nash & Young",130036,0.479055556,0.400838889,0.482666667,129.0835741,-14.02657407,1,7,0.512882222,0.017500989,0.425975926,0.067798148,260686.1852,40.77777778,108
Ted Nugent,749970,0.397166667,0.867537037,0.491592593,141.4401296,-8.328388889,1,9,0.098776667,0.228751501,0.467283333,0.086559259,305340.0741,30.48148148,108
The O'Jays,892771,0.591888889,0.59887037,0.6575,120.0388704,-9.511814815,1,0,0.352253704,0.000103968,0.32175,0.064672222,314768.4259,35.37037037,108
A Day to Remember,938798,0.400111111,0.918740741,0.454703704,144.3046296,-4.435851852,1,0,0.025386785,0.0000873,0.286644444,0.112564815,207685.9259,53.09259259,108
Cake,943827,0.647222222,0.621388889,0.773240741,115.6665185,-8.768981481,1,9,0.148590741,0.05987363,0.16057037,0.051114815,209229.1111,44.61111111,108
Tame Impala,2014409,0.495055556,0.779537037,0.475459259,125.2349259,-5.549074074,1,0,0.166599926,0.189533676,0.1968,0.054822222,260542.4815,57.62962963,108
The Chordettes,763551,0.456149533,0.116798131,0.231829907,106.7635234,-16.58885047,1,5,0.92111215,0.000357626,0.196205607,0.052953271,142148.5047,13.99065421,107
Dwight Yoakam,791483,0.608336449,0.653168224,0.675121495,131.0743645,-8.862878505,1,9,0.204796056,0.042398868,0.137323364,0.041945794,208897.3551,38.24299065,107
RocÃo Dúrcal,831708,0.544635514,0.366943925,0.606943925,124.1530561,-11.30930841,1,9,0.579,0.000735517,0.240109346,0.038864486,212282.9439,46.04672897,107
Pantera,5441,0.366698113,0.870509434,0.365315094,117.8079245,-7.920226415,1,2,0.024014137,0.176179311,0.208890566,0.088554717,287169.2075,48.62264151,106
Carmen McRae,185948,0.521622642,0.229442642,0.361924528,105.9107547,-12.36192453,1,7,0.774867925,0.000316273,0.216011321,0.053688679,191804.0755,14.03773585,106
Chaka Khan,802302,0.635179245,0.625632075,0.679113208,111.2903962,-9.916867925,1,4,0.351169811,0.024538395,0.152293396,0.058732075,263914.4057,38.53773585,106
Jim Croce,848034,0.612132075,0.469569811,0.759773585,127.1396226,-13.47318868,1,4,0.63510566,0.002194696,0.160430189,0.069067925,177937.2642,38.58490566,106
Andrew Lloyd Webber,3595,0.398714286,0.301437429,0.283802857,108.1452286,-15.16359048,1,5,0.697226686,0.039885627,0.229507619,0.096053333,259727.6952,37.44761905,105
America,19297,0.549114286,0.403217143,0.505184762,117.8216286,-13.61007619,1,7,0.474607619,0.026921365,0.129619048,0.036629524,208571.6952,39.53333333,105
Funkadelic,187581,0.514638095,0.76207619,0.620685714,113.5187238,-8.413838095,1,2,0.196084038,0.112182283,0.209191429,0.082051429,298651.4571,33.31428571,105
George Benson,201760,0.64127619,0.477942857,0.646857143,109.0897714,-12.77061905,1,0,0.517819048,0.267479364,0.139990476,0.048068571,293502.3048,38.27619048,105
The Charlie Daniels Band,207644,0.567914286,0.602019048,0.715914286,121.9593905,-11.84855238,1,9,0.249187238,0.041942678,0.185626667,0.044479048,239216.5429,32.91428571,105
J Balvin,2385504,0.75212381,0.725419048,0.656257143,124.8643143,-4.849952381,0,11,0.137885714,0.009048336,0.172227619,0.14337619,216297.6762,67.87619048,105
The Marshall Tucker Band,52382,0.464057692,0.692961538,0.639096154,119.2753462,-7.204653846,1,7,0.181905788,0.064347522,0.1968,0.041657692,313573.3462,31.69230769,104
Kings of Leon,97384,0.462730769,0.7315,0.432730769,126.2015769,-6.438519231,1,9,0.078502077,0.071402287,0.173117308,0.049332692,223689.7308,55.67307692,104
Crazy Horse,130932,0.449557692,0.559425,0.469673077,120.5073846,-11.06559615,1,7,0.298516731,0.030710403,0.397067308,0.038194231,303968.8269,37.80769231,104
The Cramps,137580,0.480076923,0.849307692,0.482580769,131.2664423,-8.403692308,1,9,0.133354113,0.266775455,0.287255769,0.081126923,186759.6154,32.38461538,104
Howlin' Wolf,276085,0.590278846,0.462913462,0.732153846,122.7399423,-13.112,1,2,0.576192308,0.031833414,0.180871154,0.0486875,194144.3558,29.99038462,104
Julie Andrews,314113,0.434682692,0.267264423,0.4407375,105.6979135,-14.99336538,1,5,0.838548077,0.000115526,0.245924038,0.115074038,200629.4231,27.15384615,104
Bobby Vinton,766066,0.366307692,0.260151923,0.400961538,95.90490385,-12.58390385,1,10,0.783115385,0.0000662,0.204144231,0.030084615,158432.7692,29.51923077,104
Buffalo Springfield,939567,0.529865385,0.433373077,0.602807692,119.0981154,-13.59665385,1,9,0.48855,0.091612717,0.177769231,0.047317308,186123.2692,32.38461538,104
Shania Twain,161808,0.639883495,0.677825243,0.695514563,122.0255631,-6.701106796,1,10,0.239851456,0.000012,0.209124272,0.040403883,229184.7767,50.04854369,103
Paramore,366681,0.512679612,0.823902913,0.511456311,140.7635437,-4.552126214,1,2,0.068824008,0.001183458,0.167405825,0.056724272,219264.5922,55.99029126,103
Nancy Wilson,368367,0.502834951,0.270135922,0.388528155,108.4447864,-13.40641748,1,8,0.779349515,0.053891309,0.161227184,0.043800971,184425.3883,17.44660194,103
Randy Newman,394806,0.486640777,0.271790291,0.373634951,116.6497087,-14.85181553,1,2,0.714669903,0.139238669,0.143180583,0.034456311,170522.6699,33.45631068,103
Diana Ross,594665,0.563456311,0.613027184,0.591912621,114.1388252,-9.060737864,1,5,0.359102136,0.012127369,0.209197087,0.050187379,260406.1748,39.62135922,103
Willie Colón,686577,0.62761165,0.671378641,0.829,109.5577476,-7.553446602,1,0,0.597854369,0.027526761,0.183336893,0.054463107,326291.4757,41.63106796,103
Kris Kristofferson,774588,0.566368932,0.353582524,0.524471845,104.1688447,-14.79328155,1,0,0.541522136,0.017462739,0.18295534,0.043872816,208897.6117,37.02912621,103
Demi Lovato,996127,0.54592233,0.678873786,0.474106796,131.9000485,-5.474631068,1,8,0.170941631,0.0000136,0.179707767,0.060513592,208488.9223,60.49514563,103
Dixie Chicks,162487,0.588254902,0.54977451,0.493039216,129.3178431,-7.238058824,1,2,0.346602941,0.000766397,0.20022549,0.035772549,243739.0392,49.37254902,102
Love,314600,0.542215686,0.560605882,0.584015686,119.2413725,-11.66760784,1,9,0.305582941,0.047125,0.129447059,0.047482353,193175.7843,30.74509804,102
Rammstein,333648,0.586294118,0.837019608,0.45757451,125.4356667,-5.672156863,1,2,0.008489166,0.196492987,0.19135098,0.056443137,250904.5882,48.7254902,102
Tito Puente,607283,0.605078431,0.745039216,0.808382353,113.6656765,-7.909990196,1,7,0.676411917,0.275935572,0.152272549,0.053179412,206784.4216,18.6372549,102
Barry Manilow,18977,0.39362,0.4553,0.382344,119.98928,-10.11066,1,0,0.484604,0.003863334,0.151946,0.038636,239079.22,37.36,100
Bo Diddley,55128,0.65625,0.580796,0.70601,113.60839,-12.22289,1,1,0.461112,0.022897492,0.162061,0.057821,181205.85,23.96,100
Eddie Money,141838,0.5916,0.687,0.69018,119.18464,-9.94636,1,2,0.1299068,0.003660544,0.141598,0.038306,229577.62,33.02,100
Earl Scruggs,153519,0.56285,0.37286,0.71245,122.34926,-12.03174,1,5,0.652832,0.052018448,0.237272,0.039225,153582.88,10.38,100
Muse,514563,0.399828,0.7541,0.316606,128.26934,-6.35466,1,2,0.123523445,0.092190171,0.181468,0.053812,271095.3,54.7,100
Stone Temple Pilots,626463,0.40888,0.7923,0.390898,136.21682,-7.59472,1,7,0.085184476,0.037864561,0.218406,0.055258,259619.5,45.7,100
Tommy Makem,936946,0.6213,0.3400304,0.62264,113.81462,-14.366,1,0,0.87524,0.030416575,0.328518,0.194572,155184.92,16.44,100
Teddy Pendergrass,20278,0.589232323,0.539676768,0.614040404,117.9411717,-11.32150505,1,2,0.367410505,0.0040544,0.23059697,0.054517172,313497.8788,33.87878788,99
Kenny Loggins,81832,0.548363636,0.516385859,0.571292929,133.0665152,-12.51020202,1,7,0.338690303,0.015191203,0.184162626,0.0431,265167.2323,40.4040404,99
Donny Hathaway,182360,0.495929293,0.407854545,0.471810101,104.1735556,-12.54432323,1,1,0.582373737,0.037557351,0.36609899,0.046342424,288423.2929,36.31313131,99
Sergio Mendes & Brasil '66,5056,0.592163265,0.43155102,0.715318367,117.1099796,-15.19569388,1,0,0.591987755,0.003934753,0.146306122,0.045767347,182718.0612,31.28571429,98
Tennessee Ernie Ford,20403,0.640071429,0.389346939,0.672471429,129.7547959,-11.52771429,1,7,0.72155102,0.015302047,0.153610204,0.101104082,168525.449,21.13265306,98
Bad Brains,75264,0.382644898,0.770597571,0.338120408,124.1292449,-12.23969388,1,7,0.045680251,0.281680286,0.251481633,0.095210204,144627.6939,33.32653061,98
The Jordanaires,87113,0.471061224,0.161767347,0.52122449,109.5682653,-17.6522449,1,10,0.851326531,0.0000582,0.17557551,0.044420408,151050.898,29.51020408,98
Parliament,129775,0.677663265,0.648897959,0.783632653,112.5054388,-11.74694898,0,9,0.264497959,0.036045624,0.253822449,0.113446939,322031.5714,32.26530612,98
Tom Lehrer,611877,0.561693878,0.428836735,0.653612245,112.4273673,-14.7944898,1,0,0.922632653,3.09E-07,0.642483673,0.669955102,178254.6327,16.81632653,98
XTC,678339,0.604204082,0.734265306,0.679,128.821898,-7.570204082,1,7,0.147377184,0.011945087,0.224846939,0.043553061,235638.2449,33.46938776,98
Siouxsie and the Banshees,748222,0.464795918,0.781326531,0.427165306,129.5389388,-7.498306122,1,7,0.109586633,0.160730121,0.234334694,0.062930612,256197.3265,36.18367347,98
Dead Kennedys,786613,0.318836735,0.938795918,0.489795918,138.281,-4.925367347,1,2,0.153032492,0.051513809,0.266091837,0.136369388,192925.3265,36.67346939,98
The White Stripes,921710,0.442183673,0.7049,0.455367347,114.3020816,-6.339428571,1,9,0.376392857,0.1125299,0.186087755,0.108834694,180871.7959,43.65306122,98
George Winston,945269,0.383102041,0.16693251,0.200440816,124.5448776,-19.13438776,1,4,0.983163265,0.867846939,0.112853061,0.060840816,256398.8367,33.67346939,98
Céline Dion,186185,0.438804124,0.47514433,0.250635052,120.6412887,-9.187123711,1,1,0.469909485,0.001197468,0.175553608,0.036498969,269380.0928,52.80412371,97
Reba McEntire,409968,0.55742268,0.431973196,0.418307216,122.4233402,-10.85853608,1,2,0.410213402,1.65E-06,0.126925773,0.036350515,219734,39.57731959,97
Rascal Flatts,868174,0.530773196,0.72571134,0.441742268,122.2394021,-5.308268041,1,2,0.210048454,0.0000138,0.163564948,0.038331959,241142.1443,51.29896907,97
Bruno Mars,1032082,0.668536082,0.667752577,0.601639175,116.6134639,-5.831515464,1,5,0.255614742,0.000270476,0.16053299,0.076158763,221561.7629,67.18556701,97
The Guess Who,61480,0.50575,0.594916667,0.631166667,116.7058333,-10.63685417,1,9,0.345,0.013604882,0.259077083,0.040170833,240544.1667,33.60416667,96
The Impressions,82013,0.5456875,0.45075,0.650708333,116.4536458,-10.17397917,1,1,0.624460417,0.009846863,0.188508333,0.0517625,162338.0417,24.04166667,96
Black Flag,91650,0.3365625,0.73925,0.303572917,121.6647292,-13.732,1,11,0.237498813,0.209610856,0.371583333,0.101354167,183791.9792,32.25,96
Jackie Wilson,108826,0.568729167,0.540041667,0.750854167,120.1548958,-8.092541667,1,5,0.5874625,0.0000246,0.235227083,0.059220833,157157.7917,24.47916667,96
Pat Benatar,158309,0.595708333,0.6110625,0.654416667,129.3462083,-11.1476875,1,4,0.141979375,0.009725519,0.163866667,0.042702083,238324.9375,35.35416667,96
Phish,333464,0.478604167,0.6455625,0.55104375,119.9055833,-10.06795833,1,7,0.283512063,0.152852119,0.259039583,0.049179167,327917.7708,36.45833333,96
Roy Acuff,848784,0.63225,0.2968125,0.696833333,128.6778542,-12.21058333,1,9,0.9146875,0.070544136,0.213772917,0.048816667,168553.5625,6.708333333,96
Canned Heat,946137,0.587958333,0.442020833,0.6681875,121.5365833,-13.464375,1,9,0.471724625,0.086328302,0.163039583,0.080585417,231585.8125,32.33333333,96
Barry White,149044,0.605473684,0.526652632,0.648663158,104.9973263,-11.67394737,0,7,0.124805796,0.088838408,0.142774737,0.046409474,308291.5895,41.2,95
Frankie Ruiz,169578,0.712284211,0.735978947,0.913821053,101.8154947,-7.293852632,1,7,0.408528421,0.000167029,0.170528421,0.042609474,291340.0421,41.27368421,95
Rick James,366164,0.694926316,0.753494737,0.778263158,118.0650632,-7.513715789,1,7,0.203197053,0.005267975,0.166765263,0.07938,305465.4632,33.68421053,95
Brad Paisley,610880,0.538842105,0.676042105,0.515894737,123.5591474,-7.191705263,1,9,0.269933474,0.0034405,0.212347368,0.036472632,255381.4947,50.66315789,95
June Carter Cash,838300,0.612894737,0.451402105,0.686652632,118.3841474,-10.68135789,1,0,0.572107789,0.000798344,0.257195789,0.057630526,163207.0526,20.94736842,95
Rise Against,175992,0.401234043,0.925148936,0.460191489,139.2195745,-3.684680851,0,1,0.036162868,0.01262139,0.155644681,0.082785106,215771.8723,50.12765957,94
Randy Travis,396676,0.606648936,0.435087234,0.545989362,120.5429149,-11.42855319,1,2,0.30926383,0.000169811,0.159676596,0.03258617,199922.4681,40.38297872,94
Sting,522377,0.573787234,0.493397872,0.521553191,112.2236383,-13.70865957,0,7,0.344208936,0.052299789,0.160487234,0.039759574,279706.7447,44.46808511,94
Leon Russell,816387,0.573904255,0.465604255,0.682089362,117.1830532,-13.2046383,1,5,0.476859574,0.025576148,0.217419149,0.04021383,217479.5106,27.82978723,94
5 Seconds of Summer,3185359,0.546755319,0.807755319,0.531,137.1530957,-4.401457447,1,2,0.059827234,0.0000111,0.177270213,0.083253191,197841.2447,61.92553191,94
Luke Combs,3462371,0.540234043,0.711808511,0.545691489,127.6866064,-5.938957447,1,6,0.177352979,0.0000133,0.18817234,0.043234043,211615.6277,67.25531915,94
Aventura,54982,0.797397849,0.597709677,0.868236559,129.5653656,-8.336849462,0,0,0.385927215,0.005046551,0.191864516,0.050008602,264802.1183,56.60215054,93
Kenny G,68934,0.478086022,0.403133333,0.298229032,118.3699355,-11.39906452,1,7,0.275361656,0.270834904,0.127210753,0.039695699,280026.5161,38.23655914,93
Mario Lanza,228714,0.264645161,0.339053763,0.272951613,100.4168495,-10.71567742,1,3,0.950795699,0.015991994,0.24186129,0.038409677,187818.7849,1.946236559,93
John Barry,327765,0.177890323,0.159752688,0.086217204,96.58065591,-19.64253763,1,0,0.736876774,0.804524731,0.136378495,0.039225806,191849,32.83870968,93
Rosemary Clooney,345734,0.513193548,0.277655914,0.510039785,113.3762903,-12.76005376,1,10,0.88316129,0.020883669,0.237124731,0.059719355,168474.7312,16.02150538,93
INXS,768321,0.588096774,0.763709677,0.584483871,123.9270215,-7.273580645,1,9,0.043285871,0.125981824,0.199148387,0.045641935,214415.129,36.98924731,93
Stephen Stills,21744,0.509021739,0.590086957,0.519543478,120.7688261,-11.10997826,1,9,0.237928283,0.057963381,0.199823913,0.051256522,234059.9348,30.56521739,92
Cher,107090,0.535576087,0.579152174,0.538652174,135.2709239,-11.0061413,1,0,0.312181087,0.000204791,0.200163043,0.04061087,211456.4783,40.06521739,92
Carole King,174557,0.571326087,0.401641304,0.58201087,123.4801957,-11.92751087,1,0,0.569841304,0.036504399,0.128247826,0.034416304,209686.4674,41.15217391,92
The Meters,402872,0.68126087,0.592108696,0.770869565,120.0057609,-12.78202174,1,0,0.21991687,0.403288111,0.145706522,0.086278261,221828.0652,34.26086957,92
They Might Be Giants,493327,0.630695652,0.665043478,0.722282609,122.4287174,-9.392478261,1,7,0.25277913,0.029301517,0.177930435,0.088536957,144408.6957,34.43478261,92
Death Cab for Cutie,812711,0.528826087,0.593495652,0.437334783,119.5941957,-9.230456522,1,9,0.273490761,0.088348729,0.141402174,0.041447826,251928.7609,45.86956522,92
Liberación,822913,0.629163043,0.665195652,0.72073913,112.3436087,-7.567923913,1,0,0.278858696,0.00099203,0.166847826,0.041427174,196031.4457,43.36956522,92
Brenda Lee,934069,0.561565217,0.361913043,0.565695652,110.0129565,-9.488521739,1,8,0.675,0.000347152,0.195317391,0.045002174,161988.9565,27.08695652,92
T. Rex,5882,0.4868,0.645177778,0.625531111,124.127,-9.779422222,1,9,0.202630578,0.039433535,0.22992,0.116082222,219589.4,31.62222222,90
Toto,6320,0.576622222,0.537691111,0.595286667,113.5943333,-13.45128889,1,11,0.161665578,0.128489467,0.16795,0.037507778,266158.6778,45.44444444,90
Traffic,12472,0.457,0.568555556,0.622244444,121.9265778,-12.19224444,1,2,0.28593486,0.059683383,0.212395556,0.052564444,303499.8889,30.44444444,90
Smokey Robinson & the Miracles,35021,0.515888889,0.501355556,0.738622222,120.6314667,-10.76817778,1,2,0.433506667,7.93E-06,0.198251111,0.033402222,175573.3556,31.95555556,90
Blake Shelton,46814,0.559177778,0.710888889,0.541866667,125.2293667,-5.748222222,1,7,0.156805333,0.000450891,0.19315,0.037528889,218003.7444,55.26666667,90
The Lovin' Spoonful,52900,0.562755556,0.542531111,0.691551111,119.2738889,-9.856177778,1,0,0.416880244,0.066378512,0.18472,0.040382222,153347.2889,26.95555556,90
Kid Rock,88180,0.602355556,0.853433333,0.581955556,130.0717222,-4.358933333,1,7,0.053075556,0.008429751,0.26276,0.115333333,286308.3556,47.44444444,90
NOFX,317545,0.420866667,0.882066667,0.533444444,126.3443556,-7.106533333,1,0,0.023064607,0.037520184,0.237664444,0.082264444,152491.2667,44.11111111,90
Backstreet Boys,765595,0.643977778,0.710266667,0.556,116.0115778,-5.718777778,0,10,0.148584644,8.95E-06,0.178131111,0.037657778,234265.7556,53.08888889,90
Commodores,766094,0.625311111,0.522731111,0.57824,119.5907111,-11.79622222,1,1,0.317516889,0.059429816,0.11514,0.04772,279832.3778,38.62222222,90
Christina Aguilera,780258,0.594433333,0.623088889,0.445655556,122.4977111,-5.896166667,1,8,0.303541689,0.000838617,0.225476667,0.096767778,232162.5444,53.95555556,90
El Gran Combo de Puerto Rico,789514,0.690533333,0.672755556,0.914511111,105.8829111,-6.306088889,0,0,0.5822,0.014384383,0.146491111,0.045151111,266711.5778,40.44444444,90
Warren Zevon,816900,0.611266667,0.540955556,0.655044444,111.8705333,-10.97077778,1,9,0.330962222,0.030002137,0.123237778,0.036753333,202314.0667,34.75555556,90
Huey Lewis & the News,829122,0.604755556,0.688711111,0.809511111,126.2643778,-9.901311111,1,2,0.114847089,0.001847389,0.194548889,0.0361,232718.4667,37.57777778,90
Kehlani,3226468,0.617788889,0.566777778,0.465051111,115.7220111,-6.330555556,0,1,0.299916889,7.20E-06,0.145056667,0.132666667,200416.3889,64.67777778,90
UB40,181376,0.777606742,0.49188764,0.866438202,115.8712135,-12.79646067,1,2,0.082734831,0.083506431,0.106269663,0.062949438,244178.1685,45.68539326,89
Don Omar,187907,0.721235955,0.782247191,0.697977528,116.780573,-5.910775281,0,1,0.164575798,0.004981376,0.22285618,0.129947191,236295.382,53.11235955,89
The Killers,670226,0.488146067,0.805988764,0.385193258,130.0532247,-5.320438202,1,1,0.075501575,0.031942453,0.17908764,0.056913483,242946.8652,57.12359551,89
Social Distortion,38302,0.338818182,0.940477273,0.43135,153.40925,-6.453022727,1,1,0.015493124,0.029941225,0.220177273,0.063263636,231376.0682,38.38636364,88
Kraftwerk,104714,0.605931818,0.575386364,0.438106818,114.1270909,-12.80656818,1,1,0.323929182,0.599986591,0.213431818,0.077456818,309439.7045,36.11363636,88
Dusty Springfield,159214,0.483454545,0.569136364,0.645545455,114.1485909,-8.95875,1,5,0.467460682,0.000574941,0.192931818,0.039061364,179633.6364,29.59090909,88
Howard Shore,278644,0.167840909,0.144465455,0.082321591,102.0078182,-21.02959091,1,2,0.860943182,0.760812449,0.130215909,0.042225,255100,48.30681818,88
Ratt,340152,0.576931818,0.880818182,0.551818182,123.1238636,-9.15225,1,8,0.003765155,0.058035936,0.189413636,0.043261364,230014.8409,37.97727273,88
Mary Wells,384675,0.588068182,0.478272727,0.760454545,122.3993182,-10.35561364,1,0,0.591727273,0.005303797,0.252168182,0.03855,159108.1591,24.81818182,88
Brenton Wood,617568,0.694704545,0.498113636,0.816886364,124.2793636,-8.534113636,1,5,0.520056818,0.000445042,0.139743182,0.052084091,149914.8409,36.59090909,88
Joe Walsh,808214,0.538545455,0.432634318,0.486127273,111.6509773,-14.50986364,1,9,0.218796364,0.162285938,0.187852273,0.042154545,264085.7727,33.18181818,88
Hans Zimmer,961427,0.279240909,0.278170455,0.106203409,114.5977159,-18.10318182,0,2,0.508507273,0.798358009,0.15605,0.041559091,270263.3864,51.65909091,88
Travis Tritt,15318,0.556241379,0.629241379,0.544057471,118.9815632,-7.208977011,1,7,0.247734483,0.000339236,0.232071264,0.031873563,224987.5862,43.67816092,87
Lionel Richie,243474,0.637873563,0.440983908,0.522305747,110.6174598,-12.39954023,1,1,0.293111034,0.006470839,0.118606897,0.035527586,290219.5287,42.4137931,87
Anthrax,490952,0.347586207,0.904436782,0.297154023,129.0758046,-10.5983908,1,11,0.00971449,0.107637974,0.204951724,0.097937931,301213.5862,37.56321839,87
Woody Guthrie,577531,0.584045977,0.195167816,0.63063908,120.0252644,-14.4547931,1,2,0.961885057,0.103312022,0.149356322,0.07796092,173585.5632,14.97701149,87
Jhené Aiko,2739175,0.569724138,0.506206897,0.40014023,107.5746897,-8.965,0,1,0.399042759,0.010113838,0.163954023,0.162105747,235575.7701,61.18390805,87
Lorde,3085111,0.605896552,0.466045977,0.250206897,112.6986207,-9.136678161,1,1,0.35543954,0.045265781,0.141524138,0.073163218,220959.023,58.3908046,87
Bill Cosby,70534,0.560069767,0.605488372,0.514095349,94.95195349,-13.74572093,1,10,0.876648837,0.000302093,0.772725581,0.87695814,213009.6977,14.34883721,86
Indigo Girls,103484,0.51472093,0.497883721,0.541976744,110.1009535,-9.144139535,1,9,0.492734884,0.002106844,0.207397674,0.032883721,265245.2326,35.13953488,86
Trey Songz,128143,0.643639535,0.640523256,0.451102326,118.8258023,-6.333337209,1,11,0.14175614,0.0000116,0.243918605,0.117465116,234352.5349,53.56976744,86
Lesley Gore,208582,0.517604651,0.422627907,0.649,119.0688605,-11.10044186,1,7,0.668706977,0.001187905,0.31075814,0.037709302,140491.4651,27.65116279,86
Walter Wanderley,230478,0.58872093,0.532590698,0.708232558,117.3227442,-12.98239535,0,7,0.590504651,0.322973601,0.147804651,0.042153488,169675.3721,28.51162791,86
Jerry Reed,334644,0.632709302,0.652948837,0.750534884,111.0687674,-11.32889535,1,7,0.556802326,0.202136615,0.208539535,0.103525581,159110.5581,33.10465116,86
Oasis,393345,0.318551163,0.798255814,0.287806977,125.148186,-4.932255814,1,2,0.10308426,0.089689261,0.286353488,0.052130233,292438.2558,42.86046512,86
Caifanes,639621,0.563627907,0.691906977,0.506690698,133.3437674,-9.70944186,1,2,0.278050465,0.025337672,0.204246512,0.041765116,257650.5349,50.39534884,86
Gladys Knight & the Pips,667169,0.574348837,0.506860465,0.635465116,116.3691395,-11.20093023,1,0,0.375625581,0.027103638,0.253790698,0.045993023,224793.814,34.53488372,86
Bert Kaempfert,748088,0.54,0.377604651,0.551906977,107.3270233,-11.3234186,1,5,0.630490698,0.673498414,0.137611628,0.034255814,164767.7674,18.37209302,86
Sonic Youth,755156,0.328837209,0.810197674,0.284295349,141.6951628,-9.176918605,1,7,0.091881186,0.429667907,0.204523256,0.060360465,296084.2674,38.18604651,86
Oasis,1426593,0.318551163,0.798255814,0.287806977,125.148186,-4.932255814,1,2,0.10308426,0.089689261,0.286353488,0.052130233,292438.2558,42.86046512,86
P!nk,1878899,0.618732558,0.733651163,0.528302326,118.9718488,-5.137406977,1,7,0.103996314,0.000744471,0.171455814,0.065036047,227038.1512,60.23255814,86
Sonny Stitt,44290,0.545388235,0.3824,0.575282353,123.5075529,-12.06549412,0,7,0.611717647,0.09584682,0.150390588,0.047150588,359256.5882,17.15294118,85
Dr. John,205180,0.649941176,0.524,0.754576471,111.8378588,-12.78389412,1,5,0.418984,0.04976291,0.170378824,0.064425882,227307.8588,34.27058824,85
Jonas Brothers,548397,0.594482353,0.7572,0.6162,119.3368118,-5.009235294,1,4,0.054360736,0.00011095,0.192778824,0.060690588,191023.5176,58.27058824,85
The Spinners,578141,0.613376471,0.566070588,0.720694118,134.2294824,-10.16001176,1,9,0.499776471,0.001242079,0.165072941,0.062234118,239140.3294,36.2,85
Ben Webster,793227,0.5462,0.197629412,0.431776471,107.9152118,-15.51181176,1,7,0.879070588,0.297976546,0.161005882,0.055477647,272647.8353,23.95294118,85
Harry James,950571,0.455729412,0.239918824,0.466437647,109.8420235,-12.94051765,1,10,0.925035294,0.37204673,0.279851765,0.053012941,179393.4118,15.37647059,85
Bobby Bare,66429,0.575880952,0.370333333,0.687761905,112.5544048,-13.50266667,1,2,0.69297619,0.000492952,0.306671429,0.03897381,184511.7619,30.66666667,84
The Hollies,87985,0.53897619,0.658071429,0.657928571,126.5912857,-8.802952381,1,9,0.284859524,0.00058459,0.216928571,0.048302381,196733.8333,33.95238095,84
Boz Scaggs,96964,0.561404762,0.5575,0.559311905,121.2715476,-9.66452381,1,7,0.308785714,0.024666183,0.217971429,0.038092857,271625.6429,36.85714286,84
Minutemen,474482,0.567857143,0.655142857,0.7015,127.2903095,-11.99995238,1,7,0.136984002,0.243869408,0.155797619,0.10777619,105644.4048,29.83333333,84
The Yardbirds,489303,0.480547619,0.638416667,0.647690476,123.3670833,-10.6359881,1,0,0.213876571,0.169364208,0.181680952,0.057213095,170852.75,27.4047619,84
Adele,503460,0.564595238,0.500642857,0.373130952,121.2531667,-7.034880952,1,0,0.438869524,0.002624017,0.130888095,0.052583333,249647.5238,60.47619048,84
The Stylistics,567624,0.567452381,0.507190476,0.61252381,121.9296905,-9.131404762,0,7,0.63147619,0.003480974,0.217447619,0.034316667,229530.9048,32.19047619,84
OneRepublic,656541,0.558964286,0.702535714,0.409888095,121.4860595,-6.386952381,1,2,0.182506357,0.000322546,0.183858333,0.048597619,218914.7143,57.27380952,84
Gloria Estefan,664817,0.643761905,0.607880952,0.630845238,118.1437857,-9.599214286,1,5,0.351454286,0.004842796,0.121613095,0.044409524,247405.5714,39.07142857,84
Carrie Underwood,861252,0.510642857,0.751392857,0.406240476,126.8279881,-3.705071429,1,5,0.224714048,2.63E-06,0.138035714,0.052865476,227848.0595,54.16666667,84
Nico,868306,0.422857143,0.403978571,0.385411905,116.2023095,-13.57192857,1,7,0.497807714,0.268924226,0.104697619,0.046447619,254962.7857,34.9047619,84
Counting Crows,128495,0.487048193,0.647506024,0.459720482,119.4485422,-7.279409639,1,0,0.342596867,0.006461116,0.195103614,0.044101205,264463.0241,45.78313253,83
Frankie Laine,142178,0.502674699,0.304662651,0.557289157,123.0359277,-13.97527711,1,2,0.821325301,0.000485486,0.225857831,0.048695181,161347.3614,19.85542169,83
Carly Simon,147635,0.552927711,0.425614458,0.527108434,116.8369759,-13.52471084,1,0,0.469246506,0.000954917,0.162263855,0.032433735,239410.1687,37.31325301,83
War,191947,0.658373494,0.577698795,0.696154217,122.4506265,-11.14737349,1,9,0.268954217,0.086941494,0.172310843,0.070028916,327195.7831,34.12048193,83
Don Williams,196248,0.639843373,0.297,0.590228916,116.7208916,-17.80268675,1,7,0.649759036,0.046986222,0.110840964,0.034159036,190578.1325,37.19277108,83
George Michael,545074,0.603590361,0.505918072,0.461436145,111.1265904,-11.45021687,1,5,0.242931229,0.04376591,0.18439759,0.047316867,314792.4096,50.25301205,83
Keith Sweat,767016,0.65553012,0.542373494,0.56113253,124.6956386,-10.44490361,0,11,0.148346892,0.006029987,0.161983133,0.051938554,301120.0482,37.81927711,83
Slightly Stoopid,20729,0.678804878,0.677439024,0.691353659,112.6505976,-6.625658537,1,7,0.204097512,0.181109204,0.241090244,0.07114878,220207.878,47.31707317,82
Chris LeDoux,107466,0.614146341,0.485,0.659121951,114.2009634,-12.43737805,1,0,0.336889512,0.000265853,0.166673171,0.050729268,195482.7195,31.64634146,82
Johnnie Taylor,198162,0.645780488,0.486634146,0.649219512,124.3909268,-10.44458537,1,0,0.391370732,0.000424438,0.166168293,0.052465854,242467.6098,30.04878049,82
Descendents,206407,0.359170732,0.837146341,0.602707317,138.9721951,-9.855414634,1,7,0.058325028,0.051423468,0.25407561,0.066465854,127432.5366,36.95121951,82
Dick Haymes,253457,0.318768293,0.241758537,0.247065854,95.54917073,-13.27507317,1,0,0.956243902,0.28820993,0.236281707,0.047885366,179862.2317,4.317073171,82
Poison,355616,0.503390244,0.893390244,0.523390244,137.2176098,-3.677097561,1,6,0.07294561,0.019806332,0.244073171,0.060873171,231781,40.70731707,82
Nate Dogg,373592,0.791378049,0.687121951,0.641170732,104.9195,-5.325426829,1,1,0.147479268,0.00785296,0.188486585,0.202554878,248190.8293,53.42682927,82
Rainbow,391933,0.421390244,0.799170732,0.543160976,126.6850244,-8.981170732,0,7,0.155685297,0.088673773,0.327356098,0.053307317,290922.6098,38.90243902,82
Sweet,536275,0.490487805,0.462797561,0.55445122,116.5088049,-11.76873171,1,4,0.484763659,0.044813257,0.169884146,0.055932927,203787.6341,26.57317073,82
Sun Ra,924232,0.480463415,0.357997561,0.460536585,114.4353902,-13.20380488,1,5,0.636904878,0.156425464,0.180802439,0.05567561,268575.6341,16.36585366,82
Alanis Morissette,932665,0.475707317,0.66447561,0.364665854,118.6451707,-7.825085366,1,4,0.169636585,0.000575816,0.278857317,0.069006098,260181.2561,49.01219512,82
Hozier,3144637,0.489695122,0.467707317,0.321660976,115.4972561,-7.866365854,1,0,0.487568293,0.036472973,0.14087561,0.041841463,247837.2439,58.47560976,82
Nancy Sinatra,366407,0.523728395,0.482945679,0.52545679,131.533963,-10.26140741,1,9,0.592523457,0.010142637,0.127787654,0.055718519,174970.4938,35.41975309,81
Avril Lavigne,762885,0.516209877,0.825234568,0.492407407,139.0458765,-4.203407407,1,7,0.020673323,0.010522745,0.242530864,0.058575309,216565.3457,58.54320988,81
Mumford & Sons,1072350,0.419246914,0.538246914,0.271355556,120.3693333,-9.20354321,1,2,0.190016469,0.064469749,0.18644321,0.039624691,249526.4938,53.07407407,81
Ty Dolla $ign,2659130,0.689604938,0.592333333,0.4794,120.1848765,-6.659888889,1,1,0.144971111,0.000359715,0.204565432,0.122688889,222611.7778,65.97530864,81
Steppenwolf,22928,0.4956375,0.59435,0.6514875,124.099825,-13.2892375,1,9,0.229646,0.12992839,0.238975,0.045965,244767.85,30.2875,80
Keith Whitley,81561,0.66375,0.3632,0.454075,109.884725,-13.3644625,1,4,0.5652525,0.017108902,0.136685,0.03059,208281.9,36.3,80
Dokken,141681,0.46685,0.805875,0.3879725,129.77615,-9.60965,0,6,0.03628698,0.037638083,0.2505675,0.061575,256734.1,34.975,80
Ben E. King,164594,0.54725,0.429525,0.705175,125.832425,-11.72185,1,0,0.617925,0.001653323,0.222985,0.0401225,155058.1,27.775,80
Hombres G,220403,0.638825,0.7025,0.62655,139.784125,-8.2615,1,9,0.183150899,0.070297716,0.1386875,0.046535,222394.425,48.525,80
Lee Morgan,226380,0.513225,0.44707,0.5738,122.850175,-11.488175,1,8,0.729575,0.320889351,0.12613,0.0490025,435065.975,19.675,80
Toots & the Maytals,790988,0.7326,0.445475,0.83975,120.502275,-12.78775,1,0,0.4335,0.049558528,0.13793,0.0936025,219623.65,39.225,80
UFO,809999,0.396575,0.7605,0.4331175,131.384875,-7.045775,1,9,0.049249345,0.067063865,0.374835,0.06318,276421,32.4,80
Roberta Flack,290072,0.443164557,0.267937975,0.308225316,115.5878228,-15.61341772,1,8,0.69943038,0.026574225,0.135479747,0.038362025,299196.6582,37.15189873,79
Limp Bizkit,290502,0.505924051,0.816810127,0.433556962,107.5967089,-5.898126582,1,6,0.083513899,0.030256683,0.25658481,0.134172152,261684.1646,52.59493671,79
Marco Antonio SolÃs,669511,0.565962025,0.512367089,0.44863038,113.9863038,-7.574278481,1,9,0.328248101,0.002670922,0.173253165,0.032013924,244232.4557,53.37974684,79
Norah Jones,884686,0.602392405,0.233901266,0.412513924,109.0103544,-12.74453165,1,0,0.796334177,0.02031557,0.116648101,0.038055696,202263.3924,54.94936709,79
Florence + the Machine,2124046,0.482658228,0.732,0.297774684,122.3398734,-5.416658228,1,9,0.174980886,0.006084667,0.181093671,0.062997468,240537.5696,49.24050633,79
Bobby Womack,64509,0.561307692,0.58,0.674448718,117.8999487,-10.25889744,1,11,0.373751846,0.02478673,0.176238462,0.047328205,239313.3462,34.26923077,78
The Gap Band,73383,0.687692308,0.553487179,0.706179487,106.8636154,-12.54861538,1,4,0.224958462,0.039022661,0.245002564,0.052051282,328484.7436,34.15384615,78
Pat Metheny Group,178654,0.442102564,0.371165385,0.417951282,111.5844615,-17.66676923,1,7,0.705792308,0.612211128,0.195576923,0.034253846,367884.1026,34.66666667,78
Françoise Hardy,186594,0.507230769,0.423358974,0.625769231,114.3300256,-10.45115385,1,7,0.679538462,0.020698047,0.148728205,0.035558974,158109.8205,34.30769231,78
Jerry Vale,338887,0.264371795,0.284766667,0.251035897,97.78305128,-12.74365385,1,0,0.853076923,0.000602338,0.196284615,0.032329487,176713.4615,24.85897436,78
Ray Barretto,341422,0.633782051,0.605333333,0.852089744,112.2497692,-9.459576923,0,7,0.545010455,0.112843927,0.109779487,0.057326923,264956.3462,29.16666667,78
No Doubt,341672,0.573807692,0.753064103,0.664230769,131.283,-6.309051282,1,4,0.130542051,0.001699119,0.232489744,0.051987179,249150.2308,43.46153846,78
*NSYNC,516929,0.642051282,0.719320513,0.615128205,114.6852179,-6.030692308,1,0,0.156757538,0.003624652,0.217423077,0.067155128,237077.5128,45.79487179,78
The Stooges,562304,0.385820513,0.764435897,0.450233333,122.5384103,-7.061025641,1,2,0.010889067,0.204486192,0.227441026,0.063141026,266561.8205,35.33333333,78
The Staple Singers,577235,0.584512821,0.464230769,0.644076923,112.2470256,-12.12833333,1,10,0.541246154,0.021046396,0.147651282,0.051992308,205737.2821,27.58974359,78
Suicidal Tendencies,579839,0.366512821,0.873846154,0.500669231,115.9964615,-9.598205128,1,9,0.007216133,0.013355798,0.175315385,0.091405128,217245.6154,35.97435897,78
Paul Anka,745915,0.468564103,0.423717949,0.551333333,112.0097308,-10.78351282,1,7,0.64025641,0.000592614,0.274684615,0.046165385,180583.3974,36.35897436,78
Skillet,749571,0.47574359,0.901512821,0.460615385,144.9343846,-3.477461538,1,0,0.030030051,0.000128093,0.230110256,0.061920513,220371.7436,54.97435897,78
The Cranberries,784814,0.428717949,0.564269231,0.365623077,127.1964615,-10.50530769,1,7,0.139773718,0.019892817,0.192253846,0.034574359,228636.9487,50.76923077,78
John Legend,814387,0.547448718,0.589320513,0.4362,112.8047821,-7.106358974,1,8,0.372033474,0.0000251,0.207873077,0.086073077,248941.0641,57.78205128,78
Kelly Clarkson,86927,0.541675325,0.727428571,0.434324675,128.5415325,-5.077090909,1,9,0.147754779,0.002688035,0.165651948,0.048985714,227802.8571,54.79220779,77
Ronnie Milsap,334740,0.577818182,0.441155844,0.516961039,117.4748831,-11.24809091,1,7,0.412441558,0.001166548,0.157644156,0.030197403,213880.3247,34.84415584,77
Pretenders,492331,0.565844156,0.744961039,0.67954026,134.2733247,-8.363857143,1,7,0.123790208,0.115682591,0.189888312,0.045227273,238109.8701,34.7012987,77
Margaret Whiting,571845,0.407753247,0.168257143,0.367750649,99.86844156,-13.27919481,1,3,0.83538961,0.001428089,0.202707792,0.037866234,171226.987,15.03896104,77
Miklós Rózsa,583723,0.277441558,0.221579221,0.216868831,102.6241299,-17.80744156,1,0,0.844246753,0.801615065,0.228054545,0.043820779,148114.974,11.7012987,77
Ana Gabriel,749671,0.555181818,0.410911688,0.476480519,115.7495974,-9.849792208,1,2,0.446719481,0.0000825,0.185611688,0.036318182,233302.0519,50.72727273,77
Wisin & Yandel,1824831,0.746857143,0.769701299,0.584051948,106.2863377,-5.670376623,0,11,0.206325857,0.0000434,0.246450649,0.125753247,225627.0779,53.8961039,77
Jon Bellion,3006966,0.622064935,0.546662338,0.525441558,117.2822338,-6.658935065,1,0,0.293102597,0.000091,0.148125974,0.135783117,213312.7662,55.28571429,77
Teena Marie,18258,0.544552632,0.649921053,0.540244737,118.6579474,-8.510710526,1,9,0.339639474,0.000962403,0.171202632,0.056821053,354707.7895,32.10526316,76
Cream,112462,0.436184211,0.560394737,0.572026316,124.1875526,-13.13510526,1,7,0.267302289,0.115986232,0.287992105,0.044347368,276187.1053,38.97368421,76
Echo & the Bunnymen,145128,0.493815789,0.788394737,0.623447368,128.7448158,-8.576105263,1,7,0.140405858,0.020061426,0.212726316,0.051063158,246990.0789,32.76315789,76
Dexter Gordon,208404,0.503368421,0.362060526,0.549994737,115.5423553,-12.09436842,1,5,0.747394737,0.237021689,0.16095,0.048798684,421629.3158,23.46052632,76
Jeff Beck,240865,0.479618421,0.645605263,0.597828947,116.2567368,-10.04055263,1,0,0.247126579,0.388926995,0.155757895,0.061339474,273635.8158,30.78947368,76
Robin Williams,287860,0.562342105,0.635763158,0.274444737,96.60728947,-17.56134211,1,1,0.849552632,0.0000278,0.823763158,0.901868421,210916.4737,23.60526316,76
Peter Frampton,320845,0.519947368,0.7105,0.496855263,110.4290132,-7.186236842,1,2,0.170804132,0.057201432,0.578989474,0.037068421,321065.3553,33.94736842,76
Los Lobos,354733,0.567868421,0.560447368,0.789973684,137.9990526,-11.98789474,1,0,0.300468421,0.002385702,0.174047368,0.053444737,178912.6579,37.15789474,76
The Pogues,489876,0.482013158,0.636710526,0.579002632,131.5724737,-11.96052632,1,7,0.214462605,0.038252526,0.189,0.042622368,216874.8684,38.67105263,76
Missy Elliott,502371,0.803723684,0.617736842,0.641328947,112.65075,-8.091631579,0,1,0.186275263,0.010647124,0.180269737,0.201410526,246533.9737,50.36842105,76
Tina Turner,597309,0.677842105,0.680184211,0.684763158,115.5492632,-8.403921053,1,8,0.187288158,0.006659633,0.132805263,0.050065789,269834.7895,48.60526316,76
Albert King,617844,0.621789474,0.377271053,0.636355263,124.3692105,-13.81543421,1,0,0.346628947,0.154330263,0.175721053,0.052540789,246934.6447,28.10526316,76
Wire,672910,0.535421053,0.731315789,0.669973684,127.4270526,-8.383657895,1,2,0.309564658,0.244265043,0.19815,0.047647368,138962.8158,32.60526316,76
Steel Pulse,745584,0.789368421,0.537868421,0.854026316,127.9245263,-10.88594737,0,10,0.072201316,0.001370637,0.210452632,0.125718421,260163.0789,34.34210526,76
Ne-Yo,846634,0.628302632,0.712789474,0.551907895,123.8170263,-5.895092105,1,5,0.190856974,0.000559778,0.216951316,0.127057895,237325.0526,53.38157895,76
Alicia Keys,5307,0.557973333,0.570813333,0.437706667,113.809,-7.058173333,1,4,0.379597333,0.007126781,0.169730667,0.108034667,250148.52,59.37333333,75
Faith No More,134729,0.4914,0.834933333,0.446866667,124.0795467,-8.03992,0,9,0.038774893,0.065276288,0.165002667,0.076693333,260994.8533,44.56,75
Various Artists,258947,0.468037333,0.346737333,0.452349333,114.82316,-15.43744,1,2,0.717593747,0.203456279,0.219190667,0.113542667,225301.3733,21.8,75
Ritchie Valens,279141,0.55756,0.536944,0.6958,117.5035467,-10.57273333,1,5,0.792453333,0.136525376,0.261404,0.104613333,141265.7733,30.13333333,75
Art Blakey & the Jazz Messengers,597266,0.514746667,0.457226667,0.545546667,114.7927333,-12.08456,0,5,0.583826667,0.10948498,0.203164,0.059462667,431949.48,17.14666667,75
Amy Winehouse,627026,0.62284,0.612346667,0.524613333,108.6849733,-6.222973333,0,9,0.297700533,0.002213234,0.164565333,0.081266667,216853.0667,52.73333333,75
Enrique Iglesias,737886,0.634853333,0.698906667,0.51792,119.2750667,-5.86648,1,9,0.263618533,0.000158916,0.115673333,0.047873333,235327.8533,55.26666667,75
Kenny Burrell,68780,0.558,0.290745946,0.505094595,111.5451216,-17.07775676,1,5,0.75980027,0.464858809,0.279172973,0.050381081,310074.0405,22.64864865,74
Boston,79960,0.363648649,0.579505405,0.380145946,121.0042973,-11.53645946,1,2,0.165971811,0.119973859,0.162472973,0.042181081,255780.8919,43.86486486,74
Cisco Houston,112540,0.583756757,0.089467568,0.590405405,115.869,-21.34089189,1,2,0.966216216,0.080913168,0.114024324,0.123124324,133941.7027,4.810810811,74
Staind,178799,0.45872973,0.717964865,0.277089189,122.9121622,-5.286540541,1,6,0.078031546,0.075408049,0.174613514,0.062318919,257418.6757,45.13513514,74
Matchbox Twenty,383889,0.478594595,0.755297297,0.538837838,118.3636486,-6.271567568,1,7,0.089738459,0.0000659,0.253318919,0.044337838,236732.7568,49.08108108,74
The Shirelles,418981,0.552405405,0.444648649,0.686378378,121.6376486,-9.713,1,7,0.626297297,0.0000596,0.256143243,0.037881081,146781.2432,25.56756757,74
The Statler Brothers,578031,0.631702703,0.445945946,0.733581081,109.7152027,-12.03354054,1,8,0.606905405,0.000399616,0.232102703,0.059437838,162876.8108,29.16216216,74
The Avett Brothers,755152,0.513972973,0.405324324,0.399713514,124.6736216,-8.790243243,1,7,0.570778378,0.00503712,0.157416216,0.044935135,245073.5135,46.83783784,74
Jane's Addiction,806829,0.408081081,0.753532432,0.391145946,119.8498108,-9.582216216,1,9,0.123108927,0.092061142,0.375459459,0.07187027,292608.973,38,74
Jeremih,1545319,0.651351351,0.553891892,0.391804054,122.4070676,-7.062351351,1,6,0.234867081,0.001390219,0.143375676,0.147318919,233009.4459,60.62162162,74
Loretta Lynn,234325,0.616191781,0.435353425,0.727767123,117.7249452,-10.29226027,1,1,0.67659863,0.000987824,0.142868493,0.042436986,152107.1781,32.68493151,73
Jimmy Cliff,295276,0.738534247,0.537328767,0.811808219,121.3276712,-11.25368493,1,1,0.216763014,0.001976041,0.154113699,0.064261644,237915.8767,37.09589041,73
Miley Cyrus,551762,0.568616438,0.735849315,0.447863014,132.0877397,-5.179520548,1,10,0.094380329,0.0000824,0.170552055,0.063982192,223135.3562,58.36986301,73
Lola Flores,656420,0.553136986,0.529205479,0.808082192,118.6557397,-8.230753425,1,6,0.760958904,0.00053051,0.192986301,0.121706849,163200.3425,0.410958904,73
Giuseppe di Stefano,731975,0.31860274,0.205865753,0.199134247,104.7450274,-16.3669589,1,2,0.976315068,0.054977048,0.294519178,0.073182192,221694.6301,5.068493151,73
Clint Black,792370,0.626958904,0.536890411,0.562547945,117.2245342,-10.0770137,1,9,0.319684932,0.000495637,0.225569863,0.032824658,204850.3425,38.05479452,73
Miguel,2570457,0.585232877,0.598712329,0.390589041,113.5016712,-6.909849315,1,0,0.241168438,0.000260107,0.239441096,0.119679452,223784.2055,60.31506849,73
Tesla,29808,0.409888889,0.726777778,0.374211111,116.5088333,-9.136805556,1,9,0.087419361,0.009707923,0.308297222,0.049680556,299321.1111,36.58333333,72
Paul Desmond,69348,0.520666667,0.166211111,0.461430556,114.5906667,-20.03406944,0,5,0.866277778,0.274745023,0.119452778,0.043266667,303400.1667,24.97222222,72
Billy Idol,70800,0.570819444,0.794638889,0.602111111,136.0995972,-6.812541667,1,9,0.048055199,0.019701405,0.2304,0.047116667,278528.4722,42.70833333,72
The Intruders,82955,0.4205,0.521694444,0.616777778,133.4910278,-10.27602778,1,0,0.448175,0.002109281,0.37465,0.039208333,211243.3333,25.02777778,72
James Gang,85776,0.505777778,0.618166667,0.559583333,112.3039722,-11.07202778,1,2,0.186625194,0.32627339,0.186486111,0.048388889,271976.5278,27.80555556,72
The Damned,138520,0.345166667,0.859111111,0.422527778,140.4640278,-8.866055556,1,2,0.046483896,0.064404798,0.262247222,0.084183333,195620.0556,30.05555556,72
Phil Ochs,333634,0.55675,0.2481,0.508333333,118.0496111,-14.18786111,1,6,0.700605556,3.10E-06,0.188386111,0.077241667,208465.2222,21.66666667,72
Rancid,335747,0.450916667,0.949166667,0.692916667,155.3803611,-5.236027778,1,0,0.028253551,0.001881019,0.273019444,0.082872222,154370.6111,43.25,72
Ornette Coleman,484396,0.538222222,0.228663889,0.4825,104.7127222,-17.247,1,0,0.43775,0.231902194,0.178786111,0.073308333,342764.7778,17.91666667,72
The Wailers,487012,0.682083333,0.583388889,0.767361111,110.8265833,-9.861777778,1,10,0.389347222,0.074283276,0.302538889,0.181386111,273267.8611,35.61111111,72
Creed,782768,0.397583333,0.791166667,0.285858333,134.1612778,-5.466861111,1,2,0.00437705,0.002371144,0.171877778,0.042066667,285287.0278,48.86111111,72
Joe Diffie,787960,0.647666667,0.687833333,0.647166667,129.9042917,-7.914972222,1,7,0.290003889,0.000187717,0.207836111,0.036311111,217658.4861,40.93055556,72
Men at Work,873085,0.616,0.694111111,0.71325,132.3154444,-7.798111111,1,4,0.139381111,0.015386805,0.147136111,0.043605556,242687,40.38888889,72
The Pointer Sisters,894847,0.700111111,0.725527778,0.818555556,127.0663611,-9.17125,1,5,0.129383333,0.004129978,0.236838889,0.075275,273687.3333,40.08333333,72
Otis Rush,894956,0.494805556,0.552361111,0.612694444,121.7007778,-8.563583333,1,9,0.740290556,0.061297577,0.244025,0.046211111,196796.9167,13.55555556,72
The Wailers,923432,0.682083333,0.583388889,0.767361111,110.8265833,-9.861777778,1,10,0.389347222,0.074283276,0.302538889,0.181386111,273267.8611,35.61111111,72
Creed,1059293,0.397583333,0.791166667,0.285858333,134.1612778,-5.466861111,1,2,0.00437705,0.002371144,0.171877778,0.042066667,285287.0278,48.86111111,72
The Lumineers,2873356,0.600777778,0.480472222,0.367119444,116.8132778,-9.492972222,1,0,0.651583333,0.033159849,0.132397222,0.034183333,204508.25,55.02777778,72
D'Angelo,134600,0.72,0.459957746,0.552084507,91.99608451,-9.869042254,1,1,0.330925634,0.102828992,0.216977465,0.196157746,324121.169,48.77464789,71
Pet Shop Boys,260212,0.625901408,0.855140845,0.619174648,119.1972113,-6.488267606,1,0,0.089355239,0.116886434,0.225870423,0.040928169,319497.8732,42.85915493,71
Miranda Lambert,503242,0.529267606,0.697760563,0.488464789,130.6246056,-5.489422535,1,0,0.190450704,0.000815134,0.171849296,0.038907042,219751.1549,52.74647887,71
Bring Me the Horizon,537414,0.352492958,0.89128169,0.222723944,131.8824507,-4.396704225,0,7,0.02122309,0.012720994,0.282166197,0.111053521,261060.1408,54.05633803,71
Alejandro Fernández,617613,0.550971831,0.428338028,0.502704225,120.615338,-9.183985915,1,10,0.603042254,0.000128684,0.195670423,0.041214085,222543.2817,48.78873239,71
Vampire Weekend,662416,0.62443662,0.657633803,0.686253521,136.6712113,-7.155788732,1,11,0.243245521,0.067399669,0.153374648,0.094277465,211421.6056,50.78873239,71
Grant Green,738855,0.585901408,0.42095493,0.538312676,118.3715352,-13.269,1,8,0.812323944,0.430326479,0.137332394,0.044323944,433908.5775,22.1971831,71
Björk,769444,0.512309859,0.497608451,0.28911831,125.1322817,-12.09709859,1,1,0.286628217,0.069027646,0.153538028,0.054150704,275441.8732,37.83098592,71
Selena Gomez,996096,0.690422535,0.688126761,0.512656338,106.3009155,-5.461521127,0,7,0.147159437,0.002311721,0.171822535,0.090439437,199922.8451,65.69014085,71
Sam Smith,2509942,0.541591549,0.456225352,0.331740845,105.6777746,-7.830492958,1,4,0.515147042,0.005960549,0.158698592,0.057243662,211880.1408,65.25352113,71
Billie Eilish,3475903,0.620577465,0.35304507,0.259249296,119.7491972,-11.93050704,0,4,0.627382535,0.097906548,0.17143662,0.135860563,201757.3803,77.50704225,71
Chayanne,52062,0.573714286,0.648228571,0.504027143,132.9957,-7.921371429,1,0,0.276090286,0.003309445,0.154832857,0.044432857,249530.7429,55.4,70
King Crimson,76057,0.330857143,0.303031429,0.258934286,115.2218857,-18.44631429,0,4,0.3425954,0.2821047,0.171651429,0.045791429,451034.4,35.68571429,70
Cyndi Lauper,122754,0.6442,0.663142857,0.641805714,123.3248286,-8.935714286,1,6,0.267700829,0.004405417,0.223108571,0.038391429,235666.7143,45.17142857,70
Sammy Hagar,297702,0.495114286,0.669828571,0.616457143,134.7152571,-10.8908,1,9,0.047711857,0.006808701,0.193708571,0.045174286,255030.0857,32.57142857,70
Neil Sedaka,330575,0.559485714,0.641,0.807114286,114.8077714,-6.878085714,1,8,0.589771429,0.000313703,0.219868571,0.036085714,160678.0857,31.57142857,70
Hollywood Undead,334216,0.598771429,0.852828571,0.5704,126.3299714,-5.061628571,1,7,0.029144286,0.000290371,0.256222857,0.081028571,213880.8571,53.02857143,70
The Psychedelic Furs,418662,0.507914286,0.754342857,0.628828571,130.0727143,-9.308714286,1,2,0.063469251,0.075214499,0.167217143,0.04978,256449.5143,36.34285714,70
Orchestral Manoeuvres in the Dark,481057,0.621657143,0.701971429,0.721857143,129.1452571,-9.643971429,1,9,0.138274343,0.229462812,0.193211429,0.036891429,230005.2571,41.14285714,70
Minnie Riperton,500889,0.5141,0.463528571,0.527942857,114.7802857,-10.77695714,1,9,0.605954286,0.035098547,0.17468,0.05912,241770.8143,33.67142857,70
Brand New,517607,0.4478,0.689857143,0.360428571,132.2782857,-6.080657143,1,8,0.169310037,0.044851934,0.158548571,0.069937143,252806.8286,44.97142857,70
Gipsy Kings,555695,0.593842857,0.732457143,0.685014286,109.6851,-9.857342857,0,6,0.59115,0.165584255,0.17077,0.052341429,233390.1286,35.44285714,70
Zapp,596451,0.769257143,0.657257143,0.748457143,109.9818286,-10.44037143,1,0,0.259562857,0.032407415,0.201877143,0.089574286,311912.1429,37.4,70
Eddie Cochran,793988,0.590885714,0.554342857,0.740871429,116.9882286,-10.6858,1,7,0.439165714,0.057296855,0.19206,0.065225714,127693.0571,25.62857143,70
W.A.S.P.,815090,0.312,0.8772,0.368097143,135.1822571,-7.058828571,1,1,0.016044812,0.115282318,0.269677143,0.069557143,261508.3429,37.85714286,70
New Edition,865016,0.6856,0.540542857,0.665937143,113.9130857,-12.5736,0,5,0.275268571,0.006155979,0.205462857,0.049605714,279046.2571,36.85714286,70
Violent Femmes,922200,0.565171429,0.574285714,0.724857143,117.3864,-11.01868571,1,2,0.225545429,0.011006285,0.178351429,0.076165714,217122.3143,36.91428571,70
Johnny Paycheck,251375,0.663304348,0.441623188,0.657594203,118.2441739,-12.9945942,1,7,0.455344928,0.010692727,0.175834783,0.045607246,186968.4638,31.94202899,69
Tom Petty,612716,0.576333333,0.640217391,0.607710145,118.5101304,-9.531217391,1,2,0.156915536,0.036673788,0.201562319,0.032226087,233366.4203,49.2173913,69
George Shearing,642664,0.564898551,0.134742029,0.465249275,111.3952174,-20.39410145,1,8,0.956637681,0.650151515,0.119982609,0.040724638,175544.3043,11.72463768,69
Bon Iver,663645,0.461318841,0.312133333,0.230226087,115.5365942,-14.02291304,1,9,0.803128696,0.251052744,0.16596087,0.06524058,240444.2899,57.08695652,69
Taj Mahal,790604,0.614855072,0.42415942,0.679744928,129.0146232,-12.40894203,1,7,0.435585507,0.07071146,0.167831884,0.088552174,247781.0725,31.86956522,69
Survivor,39637,0.636558824,0.621705882,0.589382353,123.0598824,-11.00785294,1,7,0.350570588,0.000104429,0.15185,0.034758824,244954.0588,40.73529412,68
Chevelle,91549,0.431794118,0.874029412,0.321644118,125.1619118,-4.361911765,1,1,0.00100133,0.038730293,0.189429412,0.078173529,240707.3824,46.67647059,68
Boyz II Men,96379,0.596470588,0.469929412,0.452558824,111.5448382,-10.40854412,1,1,0.330156765,0.0000432,0.171364706,0.041619118,263581,45.79411765,68
Carl Perkins,102781,0.581617647,0.681147059,0.774705882,117.733,-9.245382353,1,4,0.512203529,0.025035884,0.320123529,0.097320588,161231.4706,22.52941176,68
Ricky Van Shelton,207127,0.598441176,0.446794118,0.538323529,110.8943824,-10.74541176,1,7,0.486352941,0.000216246,0.161102941,0.028905882,193031.8235,29.44117647,68
Wham!,246960,0.724,0.637088235,0.765411765,117.3046765,-11.61808824,1,2,0.232007353,0.039911366,0.212211765,0.051629412,300906.2647,44.64705882,68
Pharrell Williams,275757,0.762794118,0.70175,0.672220588,106.0807794,-5.936705882,1,1,0.137011765,0.000667388,0.118923529,0.170098529,252542.6324,54.25,68
Sam & Dave,282709,0.672,0.400958824,0.699470588,114.4771176,-11.93144118,1,10,0.395114706,0.033328321,0.163173529,0.04785,163718.7353,30.55882353,68
The Specials,482334,0.670558824,0.706147059,0.884588235,124.7256765,-8.479647059,1,0,0.082325353,0.078802079,0.258861765,0.070829412,204150.5588,38.11764706,68
Aphex Twin,493848,0.518823529,0.482578882,0.313238235,120.4654118,-16.75282353,0,10,0.557027324,0.839708824,0.135026471,0.068538235,332770.3824,45.35294118,68
Wilson Pickett,677781,0.635705882,0.543735294,0.790176471,122.8711471,-10.85097059,1,0,0.234949412,0.015227621,0.171070588,0.050635294,169909,35.17647059,68
Patti Smith,747445,0.454529412,0.656735294,0.497676471,127.3866471,-9.088823529,1,9,0.272360294,0.00533797,0.222176471,0.108711765,278101.1471,38.38235294,68
Sia,753742,0.526808824,0.702044118,0.396220588,132.0499412,-5.365044118,0,9,0.135110882,0.068608268,0.165795588,0.086286765,241006.1029,63.69117647,68
Carl Perkins,792953,0.581617647,0.681147059,0.774705882,117.733,-9.245382353,1,4,0.512203529,0.025035884,0.320123529,0.097320588,161231.4706,22.52941176,68
Dierks Bentley,825883,0.547161765,0.737426471,0.526617647,127.1541618,-5.898691176,1,5,0.161289912,0.00711339,0.199789706,0.042667647,222355.4118,53.08823529,68
Michael Bublé,885569,0.523779412,0.478573529,0.46485,126.2184265,-7.779558824,1,2,0.532129412,0.001008285,0.183164706,0.038877941,220720.8235,55.41176471,68
Tanya Tucker,13384,0.58719403,0.450492537,0.584746269,103.1448209,-11.77585075,1,10,0.51940597,5.75E-06,0.162319403,0.041074627,199723.9104,35.28358209,67
Wilco,254215,0.52558209,0.553695522,0.515964179,113.3958358,-9.459343284,1,2,0.401427761,0.073977424,0.175349254,0.034229851,261770.7313,43.64179104,67
Art Farmer,502199,0.521835821,0.259438806,0.530707463,120.2403284,-14.53486567,0,7,0.869656716,0.463092415,0.129738806,0.045632836,336182.4179,17.55223881,67
Jerry Jeff Walker,845468,0.537970149,0.430940299,0.648880597,126.8019701,-13.79685075,1,7,0.36634597,0.070804087,0.196391045,0.043620896,257778.7761,28.79104478,67
The Black Crowes,48566,0.456333333,0.807575758,0.5128,135.9784545,-5.024848485,1,4,0.038826394,0.002719314,0.217472727,0.058478788,291524.0606,43.3030303,66
The Drifters,118544,0.582575758,0.40730303,0.749515152,119.0397273,-10.96278788,1,7,0.62230303,0.0000118,0.197584848,0.043824242,150848.0909,34.72727273,66
Fela Kuti,138833,0.678848485,0.766712121,0.72469697,112.9286515,-7.597227273,0,10,0.255606061,0.158242152,0.205315152,0.100416667,902051.8788,26.25757576,66
The Cult,139908,0.476242424,0.81369697,0.47369697,127.0154242,-8.196151515,1,7,0.010419106,0.342741494,0.199569697,0.053618182,284673.5152,38.39393939,66
James Horner,150530,0.171872727,0.115375758,0.056583333,111.6183333,-25.24071212,1,7,0.700965606,0.783948152,0.118134848,0.042418182,292367.8788,42.75757576,66
Fiona Apple,169795,0.531787879,0.463181818,0.407727273,124.2947576,-10.57209091,1,0,0.466732424,0.014615497,0.163,0.049018182,269930.4242,47.51515152,66
Don McLean,179205,0.460151515,0.288821212,0.433848485,109.1791818,-15.292,1,7,0.719242424,0.027434199,0.212127273,0.0373,240635.2727,40.18181818,66
Lee Hazlewood,237517,0.458742424,0.480393939,0.520887879,129.851303,-11.05668182,1,9,0.522742424,0.068890871,0.16890303,0.040242424,200015.0758,29.90909091,66
Hootie & the Blowfish,262794,0.46530303,0.724454545,0.571575758,125.0894848,-6.77569697,1,7,0.189994848,0.000187163,0.214148485,0.0369,237223.1212,42.45454545,66
Dio,263937,0.419787879,0.837909091,0.429545455,122.5327273,-9.532151515,0,9,0.031594173,0.1284171,0.18269697,0.064772727,293620.4242,34.87878788,66
Lester Flatt,269172,0.567742424,0.391030303,0.757166667,124.2273636,-11.61127273,1,8,0.674681818,0.054457539,0.227145455,0.037413636,151203.3939,10.09090909,66
Perry Como,315336,0.439606061,0.24770303,0.402912121,105.2386818,-14.76562121,1,8,0.843045455,0.080917976,0.199415152,0.045507576,175062.803,32.42424242,66
Max Roach,396372,0.44630303,0.435587879,0.531272727,116.4099848,-13.14530303,1,5,0.586842424,0.263095829,0.221909091,0.047477273,409268.1667,16.90909091,66
Ministry,420133,0.581333333,0.823575758,0.475818182,130.5561515,-10.58021212,1,0,0.044602401,0.278677377,0.321636364,0.050178788,303381.3939,33.36363636,66
The Pied Pipers,483334,0.572075758,0.277893939,0.570918182,110.6009091,-10.88456061,1,0,0.876257576,0.033138128,0.248859091,0.049436364,177488.8333,14.01515152,66
Morrissey,597094,0.537424242,0.735242424,0.580130303,122.0992424,-7.323090909,1,2,0.16649103,0.060233209,0.198545455,0.036072727,219312.0909,32.66666667,66
Can,645612,0.549969697,0.660212121,0.489884848,122.997,-11.19121212,1,2,0.167009485,0.42477303,0.183127273,0.050487879,482236.8788,26.48484848,66
Wynton Kelly,684253,0.548060606,0.249881818,0.418931818,121.3077727,-16.57381818,0,5,0.738757576,0.455237489,0.173742424,0.043710606,310295.8485,14.96969697,66
The Association,753963,0.524151515,0.48730303,0.624545455,120.011697,-11.45242424,1,5,0.475736364,0.018070855,0.173151515,0.035206061,172750.6364,27,66
Fugazi,798606,0.433151515,0.735424242,0.456,121.4202121,-8.550090909,1,9,0.070362615,0.359559182,0.245236364,0.070751515,178133.7879,37.12121212,66
June Christy,837592,0.41780303,0.202986364,0.345033333,114.4553636,-11.66759091,1,9,0.833757576,0.017510322,0.154322727,0.04454697,182887.5,11.36363636,66
Percy Sledge,838195,0.525969697,0.272969697,0.458090909,110.2196061,-13.34548485,1,11,0.449633333,0.007696638,0.175124242,0.032069697,174383.7576,28.84848485,66
Vangelis,840000,0.282093939,0.197912121,0.087366667,104.8052121,-19.94793939,1,2,0.546260061,0.564778594,0.196372727,0.036975758,339164.3636,42.3030303,66
Cameo,944349,0.771,0.58730303,0.785,107.5478788,-10.78666667,1,7,0.134872424,0.029341095,0.133581818,0.078878788,300770.5152,34.27272727,66
X,960690,0.507363636,0.77630303,0.716,123.2552727,-6.467090909,1,9,0.09315,0.062806185,0.201484848,0.038739394,196728.9091,26.54545455,66
X,1908947,0.507363636,0.77630303,0.716,123.2552727,-6.467090909,1,9,0.09315,0.062806185,0.201484848,0.038739394,196728.9091,26.54545455,66
Romeo Santos,2367865,0.758151515,0.727378788,0.771242424,124.7172879,-4.984787879,0,11,0.412831818,5.69E-07,0.20514697,0.066110606,237906.2424,65.77272727,66
Sister Rosetta Tharpe,13511,0.545461538,0.597830769,0.662738462,121.5192308,-5.896830769,1,0,0.767387692,0.015600261,0.175796923,0.068027692,163275.6769,13.23076923,65
Elvis Costello,58549,0.631307692,0.5964,0.724784615,126.6694,-9.395584615,1,4,0.234415385,0.007277625,0.186953846,0.065646154,179690.8308,34.70769231,65
Sheryl Crow,80780,0.620061538,0.612230769,0.617953846,120.6952,-8.381969231,1,4,0.206586154,0.013853338,0.159252308,0.037881538,255395.4462,45.6,65
Kirk Franklin,83095,0.595507692,0.696230769,0.486923077,109.4074769,-6.87,1,0,0.219747692,0.000117612,0.36694,0.114789231,312707.1692,46.61538462,65
Jennifer Lopez,317865,0.718815385,0.777923077,0.64,109.0455231,-5.318323077,0,10,0.119049538,0.011515023,0.198869231,0.102386154,239648.5692,53.27692308,65
Michael Bolton,387720,0.525369231,0.498984615,0.344473846,124.4680308,-10.49952308,1,10,0.256119692,7.77E-06,0.157333846,0.038110769,260501.5846,47.52307692,65
The Miracles,503668,0.516307692,0.608430769,0.711892308,117.7511385,-7.268215385,1,7,0.661298462,0.000838966,0.304690769,0.03726,180477.3385,23.10769231,65
Caetano Veloso,639397,0.513292308,0.345221538,0.58,115.0863538,-14.65812308,1,9,0.544803077,0.029343249,0.208821538,0.071718462,215734.8,35.03076923,65
Cage the Elephant,1061166,0.509123077,0.8192,0.517775385,129.5095538,-4.404692308,1,2,0.057417237,0.011150838,0.214046154,0.055692308,211001.9846,56.56923077,65
Kygo,3314964,0.629630769,0.616569231,0.385967692,111.7934615,-7.440615385,1,0,0.280833846,0.046083219,0.137303077,0.062498462,235171.5846,67.84615385,65
Chubby Checker,116984,0.6258125,0.7066875,0.89421875,124.2797813,-6.47975,1,8,0.255559656,0.027102684,0.1833625,0.05318125,150928.6875,25.75,64
Beck,124492,0.65553125,0.64465625,0.57365625,115.3189063,-7.95028125,1,1,0.142647813,0.161339409,0.206740625,0.069078125,238806.9375,47.125,64
Joan Jett & the Blackhearts,135054,0.4933125,0.83003125,0.65634375,136.8522813,-7.06828125,1,11,0.119554563,0.014128248,0.23539375,0.081059375,190093.7188,36.65625,64
Fats Domino,137494,0.54246875,0.53184375,0.851875,113.2084375,-10.50796875,1,11,0.582859688,0.060869034,0.163584375,0.047225,141682.9063,32.9375,64
David Guetta,213561,0.64471875,0.777296875,0.504890625,125.9789063,-4.063453125,0,11,0.081741772,0.026294869,0.215115625,0.072195313,210823.1719,56.640625,64
Whitesnake,251595,0.40753125,0.8040625,0.389375,120.6841563,-8.29871875,1,9,0.05693575,0.001431523,0.17724375,0.057884375,277851.2188,32.875,64
Nick Drake,336783,0.5320625,0.226071875,0.450221875,118.8142188,-17.9283125,1,8,0.71074375,0.460869369,0.1217125,0.043525,210802.125,48.15625,64
Nobuo Uematsu,431669,0.4032375,0.469590625,0.40510625,133.7849062,-12.88428125,1,9,0.447432864,0.755665625,0.1749625,0.044909375,197193.7188,39.59375,64
Air Supply,508443,0.4448125,0.4343125,0.2826875,121.8859687,-10.80796875,1,5,0.46984375,0.001627888,0.208190625,0.03083125,252678.4063,50.34375,64
Harry Chapin,554963,0.5180625,0.41665625,0.464625,112.0976563,-13.3606875,1,7,0.56728125,0.003585628,0.4164,0.064365625,336322,30.375,64
Seether,625731,0.497265625,0.84828125,0.43774375,140.8195156,-4.37090625,1,8,0.004050909,0.047030462,0.130271875,0.0476625,238064.2031,52.265625,64
Gil Scott-Heron,658346,0.64834375,0.4453125,0.7576875,121.479125,-14.41496875,1,0,0.58884375,0.006812119,0.18765625,0.138825,253070.9063,34.3125,64
Eddie Palmieri,172612,0.615587302,0.635577778,0.795269841,116.565873,-9.257873016,1,7,0.655634921,0.279914907,0.188495238,0.05128254,311819.1111,25.85714286,63
Joe Jackson,784732,0.614269841,0.645396825,0.717365079,131.1698571,-8.856095238,1,7,0.146623927,0.031207107,0.17188254,0.040298413,235101,35.34920635,63
Pepe Aguilar,836103,0.459873016,0.389333333,0.478142857,128.3211587,-7.586555556,1,4,0.680333333,0.00321802,0.199793651,0.034009524,217006.254,53.15873016,63
Jim Reeves,903609,0.468634921,0.225488889,0.414857143,99.42207937,-15.80220635,1,9,0.829095238,0.059362766,0.163847619,0.031534921,153825.9365,33.80952381,63
"Grover Washington, Jr.",944206,0.611920635,0.447057143,0.616568254,112.4042857,-12.98801587,0,10,0.379651992,0.329937724,0.101177778,0.055274603,393222.8095,33.68253968,63
The Louvin Brothers,45057,0.595129032,0.292883871,0.675258065,122.3467419,-11.11554839,1,9,0.698935484,8.16E-07,0.162496774,0.03253871,160411.5806,15.5483871,62
Blind Melon,50251,0.42083871,0.649322581,0.553677419,112.3524516,-7.532064516,1,7,0.326525806,0.012514795,0.176406452,0.037725806,231952.7097,41.61290323,62
Don Henley,184091,0.604548387,0.569322581,0.580874194,117.8432581,-10.99377419,1,4,0.305727097,0.000427422,0.189964516,0.032577419,281026.7419,38.77419355,62
Harold Budd,186927,0.208503226,0.103079355,0.10908871,93.50179032,-26.72153226,1,0,0.897129032,0.795094839,0.121440323,0.040317742,319309.7097,36.58064516,62
Little River Band,219655,0.537612903,0.549774194,0.491032258,118.4161935,-9.583774194,1,7,0.288051613,0.007150721,0.141780645,0.042935484,287719.3226,37.12903226,62
Jim Hall,286483,0.5035,0.102835484,0.302267742,107.0399677,-21.79783871,0,0,0.972483871,0.891147177,0.128112903,0.053372581,368543.6129,29.0483871,62
Sum 41,585574,0.401032258,0.90783871,0.515032258,151.3772903,-4.783,1,8,0.002191955,0.005034661,0.217929032,0.099558065,191893.3548,51.16129032,62
Al Jarreau,606283,0.653290323,0.483387097,0.658548387,114.9741935,-13.97793548,1,2,0.334116129,0.003511272,0.197393548,0.051929032,275091.6452,36.90322581,62
Harold Melvin & the Blue Notes,665957,0.531274194,0.590064516,0.589629032,112.1555,-10.67053226,1,0,0.348009677,0.000133669,0.239127419,0.054651613,335507.2258,37.37096774,62
Mose Allison,927627,0.643354839,0.206132258,0.591806452,110.4173871,-17.50903226,1,8,0.881758065,0.279961494,0.135270968,0.056580645,185648.1935,20.16129032,62
Dua Lipa,3426731,0.695306452,0.695596774,0.572112903,115.9414032,-4.887854839,0,7,0.137901589,0.013132843,0.212793548,0.078066129,210906.7419,73.24193548,62
Silvio RodrÃguez,37794,0.560377049,0.18244918,0.388344262,113.6463607,-15.59845902,1,7,0.845819672,0.009617925,0.129337705,0.091042623,229400.2295,50.93442623,61
Babyface,61226,0.667704918,0.557409836,0.507688525,116.7111148,-8.602721311,1,6,0.246022951,0.017433481,0.16242459,0.048978689,286298.0164,41.26229508,61
Insane Clown Posse,79959,0.776016393,0.791737705,0.585409836,133.1565902,-5.784262295,1,1,0.05400623,0.037407896,0.416436066,0.282406557,272256.3443,40.03278689,61
Destiny's Child,210991,0.669721311,0.635622951,0.611868852,111.9726393,-5.228868852,0,1,0.181451082,0.008972132,0.188257377,0.169265574,248328.7541,52.09836066,61
Sean Paul,264350,0.754163934,0.735803279,0.715639344,113.572082,-5.102295082,1,1,0.145771115,2.01E-06,0.177862295,0.179372131,227814,56.21311475,61
Ricky Martin,359026,0.582196721,0.762229508,0.57015082,122.0162131,-6.368147541,1,11,0.191532787,0.000195929,0.243993443,0.064267213,261727.2295,56.80327869,61
Tom Jones,609396,0.422311475,0.518360656,0.546295082,114.7374262,-10.94144262,1,4,0.475429508,0.00059044,0.246259016,0.062881967,189803.918,41.96721311,61
Earl Thomas Conley,789721,0.665377049,0.43342623,0.516557377,113.5807705,-12.42862295,1,7,0.42335541,0.000500938,0.16692623,0.028727869,210599.1311,30.45901639,61
Eric Dolphy,800100,0.472918033,0.381306557,0.463963934,106.854377,-13.24965574,1,0,0.74652459,0.381672787,0.272806557,0.073990164,455669.2131,16.18032787,61
Nicky Jam,867980,0.742409836,0.739737705,0.721672131,133.3423443,-4.999819672,0,10,0.213640984,0.0000498,0.16085082,0.11104918,236868.5246,65.75409836,61
Tito Rodriguez,932299,0.551311475,0.517065574,0.708704918,106.3791967,-8.842409836,1,7,0.723278689,0.120428921,0.196537705,0.05827377,189563.4098,19.24590164,61
Chris Young,1379627,0.558852459,0.683459016,0.493721311,117.1877869,-5.309065574,1,7,0.306218967,0.000147227,0.157098361,0.036585246,197498.2459,54.01639344,61
Tracy Chapman,16281,0.6435,0.345993333,0.5144,117.6129333,-13.6476,1,9,0.43357,0.001975876,0.161863333,0.051203333,254204.0333,50.6,60
Triumph,32401,0.375333333,0.7298,0.437166667,125.3486667,-7.327833333,1,9,0.15919664,0.100247444,0.161216667,0.05146,288651.9333,29.9,60
Steve Winwood,45313,0.646716667,0.632216667,0.737666667,122.3106333,-10.60983333,1,2,0.28629,0.05875069,0.224406667,0.037145,313826.6167,40.05,60
Faces,58372,0.523166667,0.6737,0.6685,122.9702333,-8.5848,1,2,0.361943333,0.107808478,0.171583333,0.051696667,241542.6667,35.73333333,60
"Bobby ""Blue"" Bland",81194,0.525833333,0.34864,0.6158,130.8759333,-16.00693333,0,5,0.531373333,0.199472748,0.31612,0.057216667,255417.3333,27.76666667,60
Robert Palmer,93632,0.672133333,0.552583333,0.8602,110.7374,-13.66436667,1,2,0.276408667,0.083810492,0.12096,0.049481667,259884.6667,38.68333333,60
Ismael Rivera,108446,0.618483333,0.612886667,0.89185,111.9760333,-8.377866667,1,2,0.619333333,0.015140329,0.205096667,0.069975,246983.9833,31.86666667,60
Tammi Terrell,164093,0.597733333,0.5188,0.693233333,124.8984333,-10.979,1,10,0.246287667,0.000175277,0.151356667,0.042416667,165804.2,34.36666667,60
Ry Cooder,175708,0.588483333,0.351150333,0.60745,119.6093333,-16.3447,1,4,0.4841,0.124868305,0.15607,0.067031667,256291.25,37.26666667,60
Erasure,184811,0.630433333,0.7368,0.666633333,120.4610667,-11.00473333,1,0,0.093929333,0.010357222,0.17909,0.03293,227428,36,60
Gal Costa,191699,0.524266667,0.326803333,0.5729,109.1656,-16.61505,1,7,0.609366667,0.019022617,0.221391667,0.06142,190036.2167,36.3,60
John Fahey,223054,0.3796,0.4262,0.388563333,110.8342333,-11.327,1,11,0.707366667,0.809266667,0.140286667,0.0402,211527.5667,23.16666667,60
Merle Travis,246022,0.591766667,0.29144,0.673833333,135.2083333,-12.88213333,1,9,0.825,0.391028609,0.162583333,0.078016667,153734.7,12.2,60
Mecano,403454,0.652566667,0.625033333,0.665773333,122.9129,-7.7512,1,9,0.433546667,0.029472853,0.12886,0.049623333,248941.8333,44.4,60
The Righteous Brothers,424296,0.380366667,0.3415,0.467933333,105.7699667,-14.81013333,1,7,0.588966667,0.011925098,0.215536667,0.037303333,172964.8333,30.63333333,60
Tommy James & the Shondells,520975,0.5535,0.5324,0.713066667,119.7797,-11.24326667,1,11,0.293273333,0.014465872,0.19573,0.058076667,189436.1333,34.33333333,60
Dave Van Ronk,528221,0.539266667,0.110505333,0.41947,115.3997,-18.15903333,1,9,0.9062,0.022192434,0.15623,0.060456667,195962.2,20.23333333,60
Helen Merrill,568368,0.3636,0.144253333,0.270233333,113.4131,-17.45323333,0,2,0.896433333,0.00952159,0.172396667,0.040296667,219060.9333,15.1,60
Herman's Hermits,575051,0.590333333,0.603633333,0.7876,123.9015,-8.080066667,1,0,0.375023333,0.024005558,0.21684,0.038746667,148462.5667,26.63333333,60
The Zombies,582313,0.488066667,0.602766667,0.5924,121.8298333,-6.947666667,1,9,0.53719,0.074487947,0.18695,0.038416667,162989.3667,40.83333333,60
AFI,589630,0.3928,0.8801,0.4476,126.5737,-5.163633333,0,4,0.034671297,0.037569924,0.2168,0.082703333,190969.7,42.86666667,60
Burt Bacharach,642542,0.488566667,0.30053,0.44124,102.9257333,-14.9141,1,7,0.54885,0.449330711,0.153586667,0.044841667,190471.8667,31.4,60
Keith Emerson,765900,0.390366667,0.496433333,0.500796667,131.5036667,-13.30496667,1,7,0.214010667,0.224067094,0.228736667,0.048663333,341505.4333,34,60
Lamb of God,781350,0.352433333,0.9733,0.211246667,114.243,-3.4795,1,2,0.001197656,0.18485364,0.245986667,0.138713333,263212.6667,46.53333333,60
Quiet Riot,859868,0.439533333,0.8579,0.498133333,127.8801,-7.360966667,1,2,0.094372033,0.04989489,0.207393333,0.077786667,260175.9,36.33333333,60
Third Eye Blind,926237,0.532266667,0.739166667,0.510066667,118.5350333,-6.712966667,1,7,0.038173563,0.004100601,0.169103333,0.03749,248054.2333,46.7,60
Toni Braxton,935330,0.672733333,0.582133333,0.517,112.8943,-7.597866667,1,2,0.220649,0.000111692,0.16969,0.048243333,276528.4,46.4,60
Ellie Goulding,1596642,0.562316667,0.62515,0.465233333,126.5385833,-6.755433333,1,8,0.297929167,0.02722233,0.16731,0.050925,214662.1333,49.33333333,60
Shawn Mendes,3276902,0.614466667,0.602883333,0.53185,122.6437,-6.38635,1,10,0.321609667,1.98E-06,0.130418333,0.076721667,203160.25,69.63333333,60
Bobby Vee,77732,0.506745763,0.363355932,0.641576271,109.6096102,-11.80472881,1,7,0.730559322,4.39E-06,0.169837288,0.037191525,143895,25.62711864,59
Meat Loaf,339624,0.446050847,0.718864407,0.513101695,128.3599322,-8.239186441,1,2,0.373305085,0.003594972,0.249284746,0.058786441,390179.1356,39.05084746,59
A Perfect Circle,479149,0.519525424,0.622520339,0.256277966,124.4771017,-9.76320339,1,6,0.109087908,0.296638305,0.135864407,0.055608475,251080.3898,49.13559322,59
Smokey Robinson,821571,0.518186441,0.516949153,0.599915254,130.9638644,-9.057237288,1,0,0.500877966,0.016261392,0.168735593,0.04800678,277459.2203,35.66101695,59
Robin Trower,831381,0.475220339,0.590677966,0.522338983,114.0822542,-10.83786441,0,4,0.149167593,0.074574692,0.158671186,0.050837288,268950.9492,28.54237288,59
Jill Scott,845662,0.661084746,0.497945763,0.466874576,112.6238983,-9.092627119,0,1,0.2796,0.028900631,0.194610169,0.166754237,262345.2881,43.79661017,59
Tory Lanez,2775792,0.686881356,0.612745763,0.329632203,129.6472373,-7.056813559,0,6,0.081903525,0.0000324,0.177108475,0.155838983,196217.2203,67.72881356,59
Papa Roach,7731,0.513068966,0.903724138,0.434034483,109.0815172,-4.313517241,1,2,0.028246393,0.001236236,0.208555172,0.076941379,209431.5517,54.62068966,58
Solomon Burke,31067,0.601655172,0.448448276,0.718689655,120.7297586,-11.34451724,1,5,0.632417241,0.0000524,0.185306897,0.044455172,171859.2759,31.51724138,58
The Flamingos,55304,0.418344828,0.326517241,0.409551724,116.5152759,-13.22827586,1,3,0.801206897,0.002168264,0.163675862,0.0326,170016.9655,16.93103448,58
Faith Hill,162269,0.533741379,0.601551724,0.4769,132.7423448,-7.696017241,1,7,0.300544828,0.0000118,0.172596552,0.032668966,224760.7414,48.37931034,58
Del Shannon,194018,0.496275862,0.596310345,0.718310345,119.8548966,-7.705517241,1,1,0.236851034,0.032168696,0.242696552,0.042575862,139090.6207,22.96551724,58
The Flying Burrito Brothers,194703,0.479862069,0.525862069,0.656689655,115.5122414,-12.49296552,1,2,0.229768483,0.15175124,0.183075862,0.032562069,207191.6897,31.4137931,58
Johnny Hartman,212612,0.443,0.145086207,0.324827586,113.1235517,-17.4082069,1,10,0.918206897,0.031621331,0.1152,0.039137931,220648.5517,18.51724138,58
John Hartford,221603,0.546413793,0.361158621,0.626,121.7494483,-15.16624138,1,7,0.707275862,0.117393621,0.174541379,0.078672414,178876.3448,27.75862069,58
Rob Zombie,235169,0.532672414,0.912603448,0.385051724,120.1089138,-5.497724138,1,0,0.067246834,0.141447113,0.279193103,0.0871,222411.3103,45.96551724,58
Widespread Panic,257141,0.435275862,0.756603448,0.628275862,121.4487586,-9.23262069,1,7,0.094242828,0.135234424,0.280668966,0.039084483,354594.9828,38.03448276,58
Rubén Blades,296024,0.612413793,0.583810345,0.766603448,108.7617586,-9.199362069,0,9,0.571189655,0.005306974,0.16057069,0.064184483,364003,40.56896552,58
Mazzy Star,401287,0.434275862,0.320165517,0.261331034,130.0844828,-13.86744828,1,7,0.388980655,0.156205617,0.128217241,0.038165517,264413.3448,42.96551724,58
The Whispers,482787,0.701275862,0.599517241,0.765293103,113.7332931,-9.051793103,0,0,0.202216724,0.018653823,0.110660345,0.056331034,317507.7931,30.0862069,58
Tom T. Hall,515628,0.588448276,0.411896552,0.800862069,126.8093103,-14.70427586,1,7,0.692172414,0.00821427,0.211989655,0.039955172,173536.1034,34.13793103,58
The Turtles,564239,0.476689655,0.54862069,0.642862069,127.6364483,-10.56424138,1,7,0.387531034,0.037843476,0.167813793,0.039872414,148598.5172,29.79310345,58
Leontyne Price,591857,0.350482759,0.212032759,0.323151724,109.5950517,-19.67608621,1,5,0.98537931,0.057873902,0.356886207,0.131244828,153688.0345,2.586206897,58
Brownie McGhee,630882,0.684827586,0.354068966,0.685206897,109.1496897,-10.91686207,1,4,0.906068966,0.160501342,0.162,0.073727586,179388.5172,3.310344828,58
Daniel Johnston,674263,0.534793103,0.314458621,0.513272414,106.7633103,-14.77482759,1,0,0.914862069,0.460857951,0.201613793,0.213306897,178145.5862,31.62068966,58
João Gilberto,785283,0.489482759,0.217637931,0.478448276,118.4592759,-19.85891379,1,5,0.830310345,0.252693845,0.302917241,0.05627069,258646.8103,38.74137931,58
Jay & the Americans,809058,0.528896552,0.535413793,0.661172414,117.4759655,-10.67558621,1,0,0.591089655,0.00266083,0.298644828,0.041151724,161302.931,24.27586207,58
Maxwell,866491,0.617965517,0.479448276,0.465486207,106.139069,-9.975689655,1,7,0.346744828,0.056077933,0.211965517,0.071748276,302114.4828,43.82758621,58
Molly Hatchet,923384,0.496862069,0.787448276,0.735310345,133.0157241,-9.252206897,1,7,0.13229731,0.149223847,0.240089655,0.041224138,256874.069,31.34482759,58
Jeremy Soule,2596970,0.156741379,0.120196552,0.065327586,91.08937931,-23.37958621,0,4,0.932241379,0.901689655,0.106624138,0.041717241,308659.0345,50.4137931,58
Steve Earle,34249,0.547263158,0.565070175,0.682368421,136.0274561,-12.70905263,1,7,0.197326947,0.032350001,0.136008772,0.038077193,217626.193,37.64912281,57
John Anderson,218994,0.633912281,0.497647368,0.679701754,127.4512632,-12.97412281,1,9,0.361554386,0.00828606,0.158915789,0.034794737,190553.0526,35.61403509,57
Marisela,231013,0.656666667,0.377052632,0.56722807,126.1870351,-14.37754386,1,4,0.634526316,0.000168201,0.154368421,0.034592982,222502.4035,46.47368421,57
Jimmy Dean,352992,0.605175439,0.423926316,0.636087719,116.0509825,-13.87196491,1,2,0.653578947,0.0000719,0.141557895,0.119684211,172494.9123,20.87719298,57
Gil Evans,551815,0.356185965,0.194491228,0.279019298,100.1329825,-18.32392982,0,9,0.74757193,0.458688641,0.172768421,0.042450877,339610.0702,17.29824561,57
Dave Stewart,575695,0.650105263,0.691719298,0.613052632,122.7894912,-8.156508772,1,0,0.128511491,0.01658448,0.225070175,0.044903509,272294.4912,42.24561404,57
Annie Lennox,585249,0.592649123,0.587491228,0.497698246,121.239807,-9.091982456,1,0,0.238907281,0.008196236,0.196740351,0.039903509,275002.4737,47.38596491,57
Brandy,608945,0.670491228,0.554017544,0.559052632,117.0805263,-6.330192982,0,7,0.242884035,0.003291502,0.234726316,0.073401754,266944.3684,48.35087719,57
White Zombie,820115,0.53,0.894526316,0.393659649,129.1938772,-7.822614035,1,1,0.000452768,0.328330035,0.272817544,0.081698246,278285.6842,39.1754386,57
Avicii,2393596,0.575526316,0.801754386,0.461122807,125.2160526,-4.877421053,1,2,0.062005649,0.147839576,0.182012281,0.047540351,235584.9649,57.22807018,57
Sonny Clark,36934,0.528214286,0.344978571,0.573964286,118.4310714,-14.51346429,1,5,0.851535714,0.403907848,0.182442857,0.046953571,408360.5714,15.03571429,56
"Blood, Sweat & Tears",46925,0.439821429,0.488785714,0.494596429,100.0807857,-10.83,1,7,0.447775,0.125460867,0.313792857,0.061182143,255639.0714,29.85714286,56
Natalie Cole,74195,0.492714286,0.383403571,0.416421429,113.1411964,-12.522875,1,8,0.61885,0.004963117,0.172467857,0.050492857,236702.1607,42,56
Billy Squier,84814,0.459178571,0.769535714,0.643285714,117.0054286,-6.276785714,1,9,0.1647775,0.002675115,0.213671429,0.058542857,243010.25,35.89285714,56
Coheed and Cambria,105030,0.428714286,0.882321429,0.484357143,139.0252857,-5.365142857,1,11,0.038913357,0.000275494,0.203892857,0.126003571,317816.6786,44.28571429,56
Bauhaus,154998,0.479678571,0.640607143,0.467939286,134.9508929,-11.80028571,1,0,0.073933643,0.134593386,0.231771429,0.076239286,258383.3214,33.82142857,56
Emmanuel,194380,0.599321429,0.502785714,0.562714286,125.245,-12.06775,0,2,0.363296429,0.000148466,0.198796429,0.044714286,259770.1071,47.78571429,56
John Coltrane Quartet,216294,0.442714286,0.35875,0.358107143,103.36225,-12.30064286,0,5,0.735071429,0.099871656,0.157196429,0.041967857,379002.4286,24.64285714,56
Dion & the Belmonts,263852,0.423357143,0.427714286,0.525392857,123.2821786,-8.130714286,1,2,0.760857143,0.000184184,0.173425,0.032342857,149111.0357,27.28571429,56
Jerry Rivera,337404,0.704892857,0.614571429,0.810928571,120.3755714,-8.550107143,1,0,0.542607143,0.006015158,0.095257143,0.049728571,271565.8929,50.07142857,56
Night Ranger,347148,0.50425,0.661571429,0.513285714,131.56675,-12.4435,1,6,0.094737214,0.000243494,0.149314286,0.039625,260311.8929,33.5,56
The Marvelettes,376608,0.639214286,0.628035714,0.834107143,128.3561429,-6.148107143,1,0,0.585604286,0.001230164,0.255114286,0.036121429,155465.6429,24.21428571,56
The Outfield,475650,0.527142857,0.669714286,0.517903571,125.4225714,-11.47785714,1,4,0.125696429,0.013671678,0.190992857,0.049739286,238863.8929,40.14285714,56
The Pretty Things,489676,0.444035714,0.620464286,0.573214286,120.4052857,-11.18567857,1,2,0.281719964,0.094788963,0.263842857,0.050632143,187668.9643,26.5,56
The Used,577358,0.400571429,0.865285714,0.364607143,139.0381071,-5.426464286,1,7,0.029964661,0.017674218,0.295717857,0.114389286,204937.1429,47.10714286,56
Hüsker Dü,639053,0.317235714,0.888035714,0.382,137.4703571,-11.20917857,1,7,0.047193125,0.168019932,0.267575,0.076257143,184212.4286,31.17857143,56
Pavement,752314,0.461642857,0.642392857,0.426667857,118.6976071,-8.586357143,1,9,0.148889969,0.134847132,0.140617857,0.035714286,208153.2143,40.89285714,56
Chris Isaak,775323,0.546607143,0.528714286,0.485714286,129.6490714,-12.55578571,1,9,0.259104429,0.101629236,0.156142857,0.036285714,206462.3929,39.35714286,56
Bullet for My Valentine,865403,0.333357143,0.915321429,0.355314286,127.1786071,-3.74025,1,2,0.028916311,0.000905928,0.184682143,0.090021429,271240.5357,46.96428571,56
The Human League,895443,0.669,0.588271429,0.632107143,117.1475,-9.643892857,1,0,0.138211964,0.07512798,0.158110714,0.052832143,265654.25,37.82142857,56
My Bloody Valentine,937003,0.250653571,0.717071429,0.304521429,126.2101429,-11.81482143,1,6,0.0892626,0.746642857,0.263082143,0.057660714,235943.8929,34.21428571,56
Danzig,957085,0.463535714,0.65025,0.280925,134.8992143,-10.05417857,1,4,0.031707286,0.085373461,0.186564286,0.064839286,265072.3571,40.67857143,56
Mulatu Astatke,1784311,0.567785714,0.410107143,0.648892857,116.1006786,-13.16053571,1,3,0.736357143,0.472742682,0.153753571,0.058857143,239658.2857,34.71428571,56
Mac DeMarco,2872922,0.560642857,0.626071429,0.59775,117.8270357,-8.006678571,1,1,0.257826179,0.195992797,0.197817857,0.050071429,184585.0357,57.5,56
The Dubliners,143494,0.512490909,0.598254545,0.737763636,121.4120545,-8.855363636,1,7,0.802298182,0.054767197,0.537738182,0.194429091,174838.9818,31.6,55
New Kids on the Block,390477,0.671290909,0.557654545,0.682818182,122.2419818,-12.0184,1,0,0.137934909,0.000213733,0.146425455,0.044052727,254497.7636,38.58181818,55
Gilberto Santa Rosa,548020,0.651163636,0.695963636,0.801145455,128.0770545,-7.531490909,1,8,0.525218182,0.000219237,0.171985455,0.050605455,296571.2182,50.47272727,55
Daughtry,567153,0.445327273,0.823927273,0.355418182,135.6218909,-3.747563636,1,3,0.030745491,1.82E-06,0.160018182,0.041952727,234922.5273,51.87272727,55
Talk Talk,790814,0.502872727,0.485434545,0.451549091,111.5199455,-13.45127273,1,9,0.298903298,0.236538804,0.172734545,0.035829091,357570.8545,41.96363636,55
Sarah McLachlan,834108,0.489527273,0.42676,0.324430909,118.0402364,-10.39789091,1,9,0.546704545,0.009446905,0.132090909,0.032783636,249631.4909,43.38181818,55
3 Doors Down,923323,0.503,0.792672727,0.445181818,128.8442,-5.679090909,1,7,0.038478175,0.006129951,0.157850909,0.037990909,232900.1091,49.72727273,55
112,1055285,0.666072727,0.520436364,0.5328,116.8437636,-8.024036364,1,0,0.158393818,0.000143672,0.143212727,0.097623636,274580.8545,48.32727273,55
Audioslave,40743,0.452222222,0.759888889,0.435518519,106.6218889,-4.572074074,1,9,0.050878426,0.005662914,0.181933333,0.044840741,272839.037,53.51851852,54
The Andrews Sisters,43499,0.654444444,0.323651852,0.739425926,138.4919259,-11.72301852,1,3,0.791722222,0.0000572,0.156122222,0.12792963,172411.7963,25.81481481,54
Bette Midler,53739,0.440333333,0.383637037,0.385196296,120.3521481,-13.62096296,1,10,0.682087778,0.037901022,0.309225926,0.060933333,206343.7037,38.81481481,54
Bachman-Turner Overdrive,62002,0.505888889,0.635555556,0.723814815,129.2413333,-12.08844444,1,2,0.053447093,0.07465364,0.206492593,0.0441,265229.6667,35.81481481,54
Billy Currington,81739,0.644444444,0.721592593,0.599407407,119.6334444,-4.364740741,1,5,0.191687037,0.0000676,0.144840741,0.034011111,214275.5556,54.77777778,54
Pat Boone,131681,0.49262963,0.341755556,0.575259259,123.9943333,-12.24044444,1,10,0.727111111,0.005088739,0.179962963,0.042122222,150710.1852,27.81481481,54
Barenaked Ladies,139089,0.548462963,0.770111111,0.683740741,132.8342778,-7.410518519,1,7,0.162864556,0.003588594,0.266731481,0.052816667,225187.4444,44.38888889,54
Taking Back Sunday,158656,0.412185185,0.852925926,0.458,125.4330741,-5.060777778,1,7,0.016013889,4.32E-06,0.21077037,0.078225926,215736.2222,45.96296296,54
Lenny Kravitz,200074,0.610888889,0.619962963,0.618888889,125.3750741,-9.137777778,1,2,0.115850374,0.036500949,0.190003704,0.056596296,262977.2593,51.74074074,54
Johnny Rivers,203639,0.501148148,0.496888889,0.701,116.2783704,-12.61437037,1,0,0.474003704,0.002862287,0.390674074,0.044281481,204789.7778,33,54
Diamond Rio,254827,0.620111111,0.544481481,0.481444444,133.8392222,-7.986185185,1,0,0.510244444,6.54E-07,0.184696296,0.033511111,211561.963,39.22222222,54
Operation Ivy,471355,0.420037037,0.932518519,0.753037037,123.6101481,-4.602703704,1,2,0.131598148,0.043487229,0.228918519,0.106896296,112873.1111,38.22222222,54
Burl Ives,536754,0.657796296,0.220988889,0.661574074,114.3007037,-14.25992593,1,0,0.801259259,0.000097,0.133007407,0.082855556,140700.6296,21.14814815,54
Mitch Miller,577261,0.301851852,0.41287037,0.301877778,92.23622222,-12.11985185,1,8,0.86662963,0.578305889,0.192018519,0.035438889,193363.4444,13.16666667,54
Alejandro Sanz,619388,0.543833333,0.629495185,0.435648148,124.1732593,-6.731314815,1,2,0.428592593,0.015744406,0.187581481,0.045433333,262785.2037,47.77777778,54
Grand Funk Railroad,659517,0.473703704,0.786333333,0.556185185,123.1548519,-6.575962963,1,7,0.127187481,0.081861644,0.199874074,0.078007407,330393.1852,34.88888889,54
Yanni,687933,0.306444444,0.28677037,0.149303704,122.4954444,-17.52022222,1,0,0.824555556,0.732409556,0.340937037,0.037740741,305238.4815,38.51851852,54
Sepultura,741746,0.384777778,0.93937037,0.212255556,113.2995926,-6.149555556,1,11,0.00572504,0.095639481,0.175140741,0.120740741,259139.2593,42.51851852,54
Squeeze,790732,0.614296296,0.652296296,0.78462963,131.3714444,-11.45307407,1,9,0.140374815,0.014756186,0.154337037,0.044296296,222318.5926,36.96296296,54
Freddie Hubbard,798326,0.458555556,0.328418519,0.42137037,118.4789259,-14.20422222,0,9,0.680385185,0.463974278,0.1692,0.043725926,401908.1481,25.11111111,54
Skrillex,2365087,0.599611111,0.884388889,0.397853704,136.7076296,-3.517962963,1,5,0.042232148,0.026245085,0.24062037,0.167794444,249955.2963,57.90740741,54
Glass Animals,2984484,0.618907407,0.502518519,0.373696296,126.844463,-9.469462963,0,1,0.296568778,0.042602646,0.164103704,0.051588889,251207.4815,57.85185185,54
Trace Adkins,12180,0.564018868,0.768849057,0.582528302,119.0063585,-5.652811321,1,7,0.156672075,0.005547624,0.198683019,0.042571698,229296.3396,50.24528302,53
Cornelio Reyna,120067,0.602301887,0.407339623,0.748339623,112.8563962,-7.226698113,1,8,0.649509434,0.007606299,0.118837736,0.047315094,173752.6981,41.67924528,53
Gregory Isaacs,160848,0.837981132,0.355018868,0.868981132,110.3376038,-13.10803774,1,7,0.162813962,0.117486931,0.100539623,0.179950943,256551.8302,38.1509434,53
Vince Guaraldi,201678,0.506075472,0.340683019,0.614343396,112.8906981,-17.11573585,1,9,0.737113208,0.599612226,0.165332075,0.034677358,234910.9057,18.28301887,53
Judy Collins,294923,0.389018868,0.197837736,0.301207547,105.4109623,-12.86701887,1,10,0.850188679,0.000212578,0.207030189,0.046196226,214664.3208,27.1509434,53
Massive Attack,378288,0.661075472,0.513377358,0.450581132,123.8298302,-12.016,0,9,0.114692075,0.442103623,0.137588679,0.069292453,320403.1321,50.26415094,53
Olivia Newton-John,473554,0.619622642,0.479660377,0.519320755,122.2824906,-11.60630189,1,2,0.313526415,0.002313777,0.164539623,0.044230189,221173.5472,40.77358491,53
Stephen Sondheim,691807,0.446358491,0.340818868,0.379316981,107.8366792,-13.03728302,1,1,0.852886792,0.003057468,0.274001887,0.093981132,248728.0377,26.1509434,53
Gene Kelly,802791,0.325150943,0.212409434,0.341632075,101.9851132,-15.55820755,1,0,0.873301887,0.068869135,0.190939623,0.05354717,223359.434,18.16981132,53
Camila Cabello,3392996,0.621792453,0.581396226,0.420588679,109.7312453,-5.668358491,0,0,0.263212453,0.002427752,0.148,0.086937736,204084.2453,71.50943396,53
Tower of Power,13393,0.610730769,0.640961538,0.785115385,126.4972308,-10.21857692,1,0,0.310630769,0.072028656,0.141823077,0.073911538,254430.6923,31.84615385,52
Patti LaBelle,17748,0.572942308,0.523153846,0.485611538,115.7338462,-10.231,1,0,0.443230769,0.001026096,0.200565385,0.047967308,300714.9808,37.57692308,52
Amy Grant,24944,0.539730769,0.549461538,0.429530769,121.7096154,-8.274153846,1,6,0.410297308,0.000187662,0.132484615,0.037034615,249673.5385,36.03846154,52
Sonny & Cher,42993,0.568423077,0.617346154,0.596384615,119.5063462,-8.782,1,6,0.319461538,0.00054096,0.131623077,0.035019231,181721.0385,31.19230769,52
Badfinger,64303,0.534269231,0.539115385,0.502884615,108.9038462,-9.200192308,1,0,0.239687923,0.0015517,0.159546154,0.032680769,205255.9231,33.61538462,52
The Four Freshmen,71336,0.4435,0.206676923,0.348196154,100.0719231,-13.15407692,1,7,0.852653846,0.000793536,0.154684615,0.042646154,163352.9231,10.46153846,52
Kesha,80358,0.699076923,0.762519231,0.633903846,126.0359038,-4.424980769,1,1,0.060972746,0.003227293,0.173673077,0.081242308,205827.6731,60.78846154,52
The Ink Spots,82831,0.475596154,0.212530769,0.359903846,90.84086538,-15.06025,1,5,0.938634615,0.100898699,0.173880769,0.038642308,185540.6346,25.76923077,52
The Jam,84053,0.4815,0.693884615,0.760346154,144.8287692,-10.16453846,1,9,0.078720538,0.02362399,0.149323077,0.062392308,178489.3462,41.42307692,52
Eartha Kitt,162930,0.478153846,0.251615385,0.4395,108.5495,-11.48426923,1,9,0.862384615,0.009523463,0.200473077,0.052480769,175890.3077,19.53846154,52
Jason Mraz,221059,0.594326923,0.559365385,0.555265385,122.2069231,-8.046519231,1,7,0.358042308,0.000268565,0.221519231,0.048726923,242887.5962,54.76923077,52
Death,228323,0.280692308,0.925615385,0.226815385,107.5200769,-6.482346154,1,7,0.000259423,0.289719615,0.159226923,0.126769231,298886.1538,38.73076923,52
Michael Franks,392299,0.675346154,0.365430769,0.611769231,116.9091538,-16.39834615,1,2,0.489392308,0.052960354,0.105523077,0.048526923,257521.5769,36.73076923,52
The Shins,419102,0.559153846,0.602692308,0.501769231,123.5655769,-7.725192308,1,2,0.283812115,0.036839098,0.128046154,0.035292308,215392.3462,48.03846154,52
Moby,477116,0.556911538,0.606057692,0.385671154,101.7423269,-8.720384615,1,7,0.177650435,0.3868011,0.164744231,0.048469231,243918.1538,44.46153846,52
Anne Murray,490549,0.524384615,0.413769231,0.427880769,110.8844231,-10.70434615,1,9,0.405121154,0.000320905,0.125296154,0.029503846,195976.8846,41.88461538,52
Mindless Self Indulgence,495547,0.646230769,0.823076923,0.684038462,133.2825385,-6.508384615,1,11,0.033464962,0.031256233,0.263273077,0.120311538,157637.4615,45.46153846,52
The Modern Lovers,570825,0.570769231,0.625884615,0.700653846,128.9914615,-10.05311538,1,9,0.289330031,0.059992105,0.147942308,0.062273077,225674.3077,36.26923077,52
Al Bowlly,608166,0.466134615,0.080140385,0.309673077,107.3989808,-19.46369231,1,7,0.976942308,0.089807366,0.137992308,0.062203846,190002.4423,7.057692308,52
Heatwave,667622,0.600269231,0.449653846,0.599807692,109.2236538,-13.79123077,0,2,0.297907692,0.050820688,0.163661538,0.042503846,284862.1154,33.26923077,52
The Go-Go's,766385,0.537423077,0.835730769,0.798269231,146.1012692,-8.371115385,1,2,0.122138731,0.009472061,0.125173077,0.042426923,192385.6923,35.46153846,52
Dropkick Murphys,804431,0.324773077,0.900307692,0.483065385,125.2904231,-3.434884615,1,3,0.039228681,0.051878757,0.224126923,0.076238462,200682.4615,47.73076923,52
Montgomery Gentry,926108,0.584538462,0.752538462,0.535076923,124.5018077,-6.693730769,1,7,0.080615769,0.000118415,0.203111538,0.036869231,236481.4615,46,52
Iggy Pop,926548,0.4565,0.751730769,0.547884615,126.6920769,-7.647769231,1,0,0.122930769,0.143682978,0.225223077,0.046115385,267430.1154,41.65384615,52
Enrique Guzmán,987481,0.382576923,0.403807692,0.527461538,106.4375769,-10.26438462,1,4,0.675615385,0.000555518,0.288015385,0.033884615,158940.9615,32.73076923,52
Death,1043986,0.280692308,0.925615385,0.226815385,107.5200769,-6.482346154,1,7,0.000259423,0.289719615,0.159226923,0.126769231,298886.1538,38.73076923,52
Asking Alexandria,1590871,0.329961538,0.947615385,0.192788462,130.6067692,-3.471807692,0,2,0.004432834,0.016312064,0.333326923,0.140296154,232765.1923,52,52
Bidu Sayão,1950198,0.361153846,0.130944231,0.183448077,98.21269231,-17.02042308,1,0,0.978711538,0.020739911,0.139334615,0.052340385,197864.4038,0.538461538,52
Harry Styles,2854537,0.541461538,0.586769231,0.406896154,114.687,-6.386923077,1,5,0.268815577,0.016808884,0.156207692,0.035888462,238180.2308,77.03846154,52
Iron and Wine,85038,0.552941176,0.342372549,0.466509804,113.3860784,-12.03192157,1,2,0.726607843,0.400460063,0.139352941,0.03314902,263415.8627,49.60784314,51
Joe,101895,0.691,0.575392157,0.567333333,108.6716863,-6.586470588,0,6,0.201217647,0.000355384,0.169252941,0.098886275,267257,49.31372549,51
Jagged Edge,125506,0.714058824,0.591941176,0.607843137,114.9389216,-7.16327451,1,1,0.290893922,1.61E-06,0.188611765,0.117531373,260995.8824,45.45098039,51
Freddie King,186734,0.617764706,0.467019608,0.718411765,123.6660196,-11.76654902,1,2,0.410941176,0.037846914,0.153362745,0.043278431,214080,33.60784314,51
Vic Damone,205254,0.338176471,0.332619608,0.317258824,106.3516471,-12.34235294,1,10,0.849941176,0.00101655,0.237003922,0.041519608,174112.3529,16.47058824,51
Ricky Skaggs,320761,0.59627451,0.567176471,0.781980392,130.9481373,-10.4404902,1,7,0.197639216,0.001984432,0.220103922,0.030552941,197004.902,31.47058824,51
Michael Hurley,394449,0.580058824,0.201509804,0.471117647,104.1787843,-16.43056863,1,2,0.894019608,0.105935688,0.14974902,0.038621569,229458.3137,24.17647059,51
Milt Jackson,489845,0.524921569,0.269870588,0.507,117.8042745,-16.56135294,1,0,0.82445098,0.190690501,0.137752941,0.044109804,352197.5882,14.76470588,51
Alvin & the Chipmunks,744969,0.687764706,0.483686275,0.755117647,128.7211765,-7.702411765,1,0,0.743470588,0.013483285,0.282839216,0.100556863,123297.7255,12.2745098,51
The Clancy Brothers,781094,0.627137255,0.378902353,0.626686275,113.9226471,-13.77601961,1,0,0.863941176,0.029220093,0.336760784,0.205652941,153408.7451,18.15686275,51
Wanda Jackson,814606,0.581196078,0.689529412,0.818588235,126.0766471,-6.274803922,1,7,0.668905882,0.000119601,0.158647059,0.048452941,145428.5294,18.90196078,51
The Oak Ridge Boys,887348,0.618862745,0.45627451,0.747764706,116.8848431,-15.67541176,1,2,0.242080941,0.004371411,0.148727451,0.042294118,182567.2745,34.25490196,51
Skid Row,26367,0.42904,0.82016,0.49496,125.85832,-8.78152,1,7,0.004917202,0.031965103,0.215784,0.0511,234924.84,46.4,50